@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Tajawal", sans-serif;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 5rem;
}

nav .fa-bars{
    display: none;
}

nav .logo{
    display: flex;
    align-items: center;
}

nav .logo img{
    width: 90px;
    padding-top: 10px;
    padding-bottom: 10px;
}

nav .nav-items{
    display: flex;
    list-style-type: none;
}

nav .nav-items .nav-item{
    padding: 0 1rem;
}

nav .nav-link{
    text-decoration: none;
    color: #4e547e;
    font-size: 1.4rem;
    transition: 0.5s;
}

nav .nav-link:hover{
    color: #6e0aef;
}

.body2{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.body2 .contact h1{
    font-size: 40px;
    color: #4e547e;
    text-align: center;
    margin-bottom: 10px;
}

.body2 .contact form{
    width: 600px;
    text-align: center;
}

form .input-box{
    display: flex;
    justify-content: space-between;    
}

.input-box .input-field{
    width: 45.5%;    
}

.field .item{
    width: 100%;
    padding: 18px;
    background: transparent;
    border: 2px solid #777;
    outline: none;
    border-radius: 6px;
    font-size: 16px;
    color: rgba(24, 24, 24, 0.645);
    margin: 12px 0;
}

.field .item::placeholder{
    color: rgba(0, 0, 0, 0.386);
}

form button{
    width: 14rem;
    margin-top: 2rem;
    border-radius: 0.5rem;
    outline: none;
    border: none;
    padding: 0.75rem 1.5rem;
    background-color: #6e0aef;
    cursor: pointer;
    font-size: 24px;
    margin-bottom: 40px;
}

form button:hover{
    box-shadow: none;
}

.field .error-txt{
    font-size: 14.5px;
    color: #d93025;
    text-align: right;
    margin: -5px 0 10px; 
    display: none;   
}

form .textarea-field .error-txt{
    margin-top: -10px;
}

.field.error .item{
    border-color: #d93025;
}

.field.error .error-txt{
    display: block;
}

footer{
    background-color: #606063;
    color: #fff;
}

.footer-info{
    width: 90%;
    margin: 0 auto;
    display: flex;
    padding: 50px 0;
}

.footer-info .footer-width{
    padding: 0 15px;
}

.footer-info h2{
    margin-bottom: 20px;
}

.about , .contact{
    width: 40%;
}

.link{
    width: 20%;
}

.link ul il a{
    margin-bottom: 15px;
    font-size: 20px;
    display: block;
}

.link ul il a:hover{
    color: #000;
}

.contact ul il{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact ul il span{
    margin-right: 15px;
}

footer ul li{
    list-style-type: none;
}

footer a{
    text-decoration: none;
    transition: 0.5s;
    color: #fff;
}

@media screen and (max-width:992px){
    .about , .contact {
        width: 35%;
    }

    .link{
        width: 30%;
    }

    .container1 {
        height: 100%;
        padding-bottom: 30px;
    }
}

@media screen and (max-width:767px){
    .about , .contact , .link{
        width: 100%;
        margin-bottom: 30px;
    }

    .footer-info{
        flex-direction: column;
    }

    .container1 {
        height: 100%;
        padding-bottom: 30px;
    }
}

@media (max-width:1000px){
    * {
        text-align: center;
    }

    .hero img{
        display: none;
    }

    .counter-up h4{
        margin-top: 30px;
    }

    .features-section .qualities{
        flex-wrap: wrap;

    }

    .hero .hero-section .content{
        padding-right: 0;
    }

    .container{
        display: none;
    }

    .container .swiper .swiper-wrapper .swiper-slide .image{
        display: none;
    }

    .container .swiper .swiper-wrapper .swiper-slide .text{
        padding: 0;
        text-align: center;
    }

    .container .swiper .swiper-wrapper .swiper-slide .text h1{
        font-size: 40px;
    }
}

@media (max-width:1132px){
    .counter-up h4{
        padding-top: 60px;
    }
}

@media (max-width:1246px){
    .counter-up h4{
        padding-top: 60px;
    }
}

@media (max-width:645px){
    nav .fa-bars{
        display: block;
        font-size: 28px;
        color: #6e0aef;
    }

    nav .nav-items{
        position: absolute;
        left: 0;
        top: 18vh;
        flex-direction: column;
        width: 100%;
        background-color: #6e0aef;
        padding: 2rem 0;
        display: none;
        cursor: pointer;
    }

    nav .nav-items.active{
        display: flex;
    }

    nav .nav-items .nav-item{
        margin: 0.5rem 0;
    }

    nav .nav-items .nav-item a{
        color: #fff;
    }
}

@media ( max-width:600px ){
    .input-box{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .textarea-field{
        width: auto;
        align-items: center;
    }

    .field .error-txt{
        text-align: center;
    }

    form{
        width: auto !important;
    }

    .body2 .contact{
        align-items: center;
    }

    .body2{
        align-items: center;
    }
}

