@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;
}

.hero{
    background-color: #f8f7fc;
}

.hero-section{
    max-width: 1366px;
    height: 90vh;
    display: flex;
    align-items: center;
    margin: 0 auto;
    padding: 0 5rem;
    justify-content: space-between;
}

.hero-section .content{
    padding-right: 90px;
}

.hero-section .content h4{
    color: #6e0aef;
    padding-bottom: 10px;
}

.hero-section .content h1{
    font-size: 42px;
    color: #4e547e;
    padding-bottom: 3px;
}

.hero-section .content p{
    font-size: 20px;
}

.hero-section .btn{
    width: 14rem;
    margin-top: 2rem;
    border-radius: 0.5rem;
    outline: none;
    border: none;
    padding: 0.75rem 1.5rem;
    background-color: #6e0aef;
    cursor: pointer;
}

.hero-section .btn:hover{
    background-color: #7532cc;
}

.hero-section .btn a{
    text-decoration: none;
    color: white;
    font-size: 1.4rem;
}

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;
}

.info{
    background-color: #f8f7fc;
}

.info h3{
    text-align: right;
    font-size: 30px;
    color: #4e547e;
}

.info p{
    text-align: right;
    font-size: 20px;

}

.heor{
    background-color: #f8f8f8;
    overflow: hidden;
}

.container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 65px auto;
}

.hero-content h2{
    text-align: right;
    padding-right: 40px;
}

.hero-content p{
    text-align: right;
    padding-right: 40px;
    padding-bottom: 30px;
}

@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: flex;
        flex-direction: column;
    }

    .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;
    }
}