*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
:root{
    --main-color: #fb5b21;
    --main-bg: #333;
}
html{
    scroll-behavior: smooth;
}
body{
    font-family: 'Cairo', sans-serif;
}
ul{
    padding: 0;
    margin: 0;
    list-style-type: none;
}
a{
    text-decoration: none;
}
.container{
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}
/* Small  =>> Mobiles */
@media (min-width: 576px){
    .container{
        width: 540px;
    }
}
/* Medium  =>> LapTop */
@media (min-width: 768px){
    .container{
        width: 720px;
    }
}
/* Large  =>> Desktops */
@media (min-width: 992px){
    .container{
        width: 960px;
    }
}
/* Large Screens */
@media (min-width: 1200px){
    .container{
        width: 1140px;
    }
}
/* Start Header */
.header{
    background-color: var(--main-bg);
}
.header .container .link{
    display: flex;
    align-items: center;
}
.header .container .link .bar{
    font-weight: 900;
    color: white;
    font-size: 35px;
    cursor: pointer;
    display: none;
    transition: .4s;
}
.header .container .link .links li a{
    padding: 0 15px;
}
@media(max-width: 991px){
    .header .container .link .bar{
        display: block;
    }
    .header .container .link .links{
        display: none;
    }
    .header .container .link .links.show{
        display: block;
        position: absolute;
        background-color: #333333e6;
        top: 100%;
        left: 0;
        z-index: 10;
        width: 100%;
    }
    .header .container .link .links li a{
        width: 100%;
        display: block;
        padding: 20px;
        border-bottom: 1px solid white;
    }
    .header .container .link .links li a:hover{
        padding-left: 35px;
    }
}
.header .container .link .bar:hover,
.header .container .link .links li a:hover,
.header .container .link .links li .active{
    color: var(--main-color);
}
.header .container .link .links .pagelist{
    display: none;
}
.header .container .link .links .pagelist.show{
    display: block;
}
.header .container .links #pages{
    cursor: pointer;
}
.header .container .links .pagelist .test{
    z-index: 2;
    position: absolute;
}
.header .container .link .links .pagelist li a{
    margin-top: 10px;
    display: block;
}
.header .container .link span a{
    display: block;
}
/* End Header */
/* Start Land */
.land{
    background-image: url(../images/carousel-1.jpg);
    background-size: cover;
    height: 100vh;
    z-index: 1;
}
.land::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3333334d;
    z-index: -1;
}
.land .left{
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    font-size: 30px;
    cursor: pointer;
    z-index: 2;
}
.land .text{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.land .text h1{
    font-weight: 900;
    font-size: 40px;
}
.land .text a.active,
.land .text a:hover{
    background-color: var(--main-color);
    color: white;
}
.land .right{
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    font-size: 30px;
    cursor: pointer;
    z-index: 2;
}
.land .left:hover,
.land .right:hover{
    color: var(--main-color);
}
.land .goUp{
    width: 50px;
    height: 50px;
    background-color: var(--main-color);
    font-size: 30px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    position: fixed;
    right: -50px;
    bottom: 20px;
    transition: .4s;
}
.goUp.show{
    right: 20px;
}
/* End Land */
/* Start About */
.about{
    padding: 60px 0;
}
.about .container{
    overflow: hidden;
}
.about .container .image{
    float: left;
    width: 48%;
}
.about .container .info{
    float: right;
    width: 48%;
}
.about .container .info .artc{
    background-color: var(--main-bg);
    padding: 25px;
}
.about .container .info .artc span{
    display: inline-block;
    cursor: pointer;
}
@media (max-width: 1199px){
    .about .container{
        overflow: visible;
    }
    .about .container .image,
    .about .container .info{
        float: none;
        width: 100%;
    }
}
/* End About */
/* Start Flat */
.flat{
    padding: 60px 0;
    background-color: var(--main-bg);
}
.flat .container{
    grid-template-columns: repeat(auto-fill , minmax(300px , 1fr));
}
.flat .container .box{
    background-color: #f4f5f8;
    /* height: 300px; */
}
.flat .container .box > i{
    font-size: 50px;
    padding: 20px 0;
}
.flat .container .box h3{
    font-size: 25px;
    font-weight: 900;
}
.flat .container .box span{
    cursor: pointer;
    margin-bottom: 20px;
}
.flat > a{
    width: fit-content;
    margin: auto;
}
/* End Flat */
/* Start Classes */
.classes{
    padding: 60px 0;
}
.classes .container .days{
    width: fit-content;
    margin: auto;
    border-radius: 50px;
    overflow: hidden;
    background-color: var(--main-bg);
    flex-wrap: wrap;
}
@media(max-width: 991px){
    .classes .container .days{
        padding: 15px;
    }
}
.classes .container .days li{
    cursor: pointer;
    border-radius: 50px;
}
.classes .container .days li.active{
    background-color: var(--main-color);
}
.classes .container .content{
    grid-template-columns: repeat(auto-fill , minmax(250px , 1fr));
}
.classes .container .content .box{
    background-color: var(--main-bg);
}
.classes .container .content .box span{
    margin-top: 25px;
    display: block;
}
.classes .container .content .box p{
    margin-bottom: 25px;
}
/* End Classes */
/* Start Counter */
.counter{
    padding: 60px 0;
    background-color: var(--main-bg);
    min-height: 300px;
}
.counter .container{
    grid-template-columns: repeat(auto-fill , minmax(250px , 1fr));
}
.counter .container .box .ic{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 30px;
}
.counter .container .box .text .count{
    font-size: 30px;
}
/* End Counter */
/* Start Team */
.team{
    padding: 60px 0;
}
.team .container .content{
    grid-template-columns: repeat(auto-fill , minmax(300px , 1fr));
}
.team .container .content .box::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: #333333cc;
    transition: .4s;
    transform: translate(-50% , -50%);
}
.team .container .content .box:hover:before{
    width: 100%;
    height: 100%;
}
.team .container .content .box .info{
    background-color: #333333e6;
    bottom: 0;
}
.team .container .content .box .social{
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
}
.team .container .content .box .social i{
    color: #333;
    width: 50px;
    height: 50px;
    display: inline-flex;
    cursor: pointer;
    border-radius: 50%;
}
.team .container .content .box:hover .social{
    display: block;
}
/* End Team */
/* Start Testimonial */
.testimonial{
    min-height: 600px;
    background-color: var(--main-bg);
}
.testimonial .image{
    width: 48%;
    margin-right: 4%;
}
.testimonial .image img{
    object-fit: cover;
}
.testimonial > .text{
    width: 48%;
    padding: 50px 20px;
}
@media (max-width: 991px){
    .testimonial{
        flex-direction: column;
    }
    .testimonial .image,
    .testimonial > .text{
        width: 100%;
    }
}
.testimonial .text .quote .clint img{
    width: 85px;
    border-radius: 50%;
}
.testimonial .text .quote .clint .text{
    margin: 50px 0;
}
.testimonial .text .quote .arrow i{
    width: 40px;
    height: 40px;
    display: inline-flex;
    border-radius: 50%;
    cursor: pointer;
    transition: .4s;
}
.testimonial .text .quote .arrow i:hover{
    color: var(--main-bg);
}
/* End Testimonial */
/* Start Blog */
.blog{
    padding: 60px 0;
}
.blog .container .content{
    grid-template-columns: repeat(auto-fill , minmax(300px , 1fr));
}
.blog .container .content .box{
    background-color: var(--main-bg);
}
.blog .container .content .box .image{
    overflow: hidden;
}
.blog .container .content .box:hover img{
    transform: scale(1.1);
}
.blog .container .content .box .info .date{
    border-right: 1px solid white;
}
/* End Blog */
/* Start Footer */
.footer{
    /* padding: 60px 0; */
    background-color: var(--main-bg);
}
.footer .container{
    grid-template-columns: repeat(auto-fill , minmax(250px , 1fr));
}
.footer .container .one{
    padding: 60px 0;
}
.footer .container .one .social i{
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
}
.footer .container .one .social i:hover{
    color: var(--main-bg);
}
.footer .container .two{
    padding: 60px 0;
}
.footer .container .two ul li::before,
.footer .container .three ul li::before{
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--main-color);
}

.footer .container .two ul li a:hover,
.footer .container .three ul li a:hover{
    color: white;
}
.footer .container .three{
    padding: 60px 0;
}
.footer .container .four{
    padding: 60px 0;
}
.footer .container .four form input{
    border: 1px solid #ddd;
    outline: none;
    width: 85%;
}
.footer .container .four form input[type="submit"]{
    background-color: var(--main-bg);
    cursor: pointer;
}
/* End Footer */