@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    transition: all 0.4s ease-in-out;
    font-family: "Montserrat", sans-serif;
}

/* NAVIGATION----------------START---------------HERE---------------- */

nav{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

nav .nav-bar{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

nav .nav-active-item{
    margin: 0 20px;
}

nav .nav-active-link{
    color: #FFF;
    padding: 4px 0;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

nav .nav-active-link::before{
    content: "";
    background: #F98A3C;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(0);
    transform-origin: center;
    transition: all 0.5s ease-in-out;
}

nav .nav-active-link:hover::before{
    transform: scale(1);
}

nav .nav-active-item.active .nav-active-link::before{
    content: "";
    background: #F98A3C;
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(1);
}

nav .nav-active-item.active .nav-active-link{
    color: #F98A3C;
}

nav .nav-active-link:hover{
    color: #F98A3C;
}

nav  .nav-hide-btn,.nav-show-btn{
    display: none;
}

@media only screen and (max-width: 992px){
    nav .nav-active-item{
        margin: 0 15px;
    }
}
@media only screen and (max-width: 767px){
    nav .nav-bar{
        display: block;
        width: 300px;
        height: 100vh;
        position: fixed;
        top: 0;
        left: -100%;
        background: #5776B6;
        z-index: 2;
        transition: all 0.5s ease-in-out;
    }
    nav .nav-active-item{
        margin: 30px 20px;
    }
    nav .nav-hide{
        width: 50px;
        aspect-ratio: 1/1;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #F98A3C;
        color: #FFF;
        border-radius: 100px;
        font-size: 20px;
        text-decoration: none;
        margin: 15px 15px 50px auto;
    }
    nav .nav-hide-btn,.nav-show-btn{
        display: block;
    }
}

/* NAVIGATION----------------EDNS---------------HERE---------------- */

/* BANNER----------------START---------------HERE---------------- */

.video{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.banner{
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.banner h1{
    font-size: 70px;
    font-weight: 800;
}

.bttn{
    text-decoration-color: #F98A3C;
    text-decoration-line: line-through;
}

.bttn i{
    transform: rotate(-40deg);
    color: #F98A3C;
    font-size: 25px;
}

.bttn:hover i{
    transform: rotate(0);
}

@media only screen and (max-width: 1200px){
    .banner h1{
        font-size: 55px;
    }
    .banner h1 img{
        width: 220px !important;
    }
    .banner p{
        font-size: 20px !important;
    }
}
@media only screen and (max-width: 992px){
    .banner h1{
        font-size: 40px;
    }
    .banner h1 img{
        width: 180px !important;
    }
    .banner p{
        font-size: 16px !important;
    }
}
@media only screen and (max-width: 767px){
    .banner h1{
        font-size: 35px;
        width: 65%;
    }
    .banner h1 img{
        width: 140px !important;
    }
    .banner p{
        width: 65%;
        font-size: 14px !important;
    }
}

/* BANNER----------------EDNS---------------HERE---------------- */

/* ABOUT----------------START---------------HERE---------------- */

@media only screen and (max-width: 1200px){
    .about h1{
        font-size: 35px;
    }
}
@media only screen and (max-width: 992px){
    .about h1{
        font-size: 25px;
    }
    .about P{
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px){
    .about h1{
        font-size: 23px;
    }
    .about .about-content{
        text-align: center;
        margin: 20px 0;
    }
    .about img{
        height: 250px !important;
    }
}

/* ABOUT----------------EDNS---------------HERE---------------- */

/* WHAT----------------START---------------HERE---------------- */

.what .what-content{
    background: #5776B6;
    padding: 30px;
    height: 370px;
    border-radius: 10px;
}

.what ul li::marker{
    color: #F98A3C;
}

@media only screen and (max-width: 1200px){
    .what p{
        font-size: 14px !important;
    }   
}
@media only screen and (max-width: 767px){
    .what .what-content{
        height: auto;
    }
    .what .what-title,.work .work-title,.insight .insi-title{
        text-align: center;
    }
}

/* WHAT----------------EDNS---------------HERE---------------- */

/* WORK----------------START---------------HERE---------------- */

.work .overflow-hidden{
    border-radius: 10px;
}

/* WORK----------------EDNS---------------HERE---------------- */

/* TESTIMONIAL----------------START---------------HERE---------------- */

.testimonial{
    background: #F98A3C;
    padding: 100px 0;
}

.testimonial .test-content{
    background: #FFF;
    border-radius: 10px;
    padding: 20px;
}

.testimonial .img{
    width: 70px;
    aspect-ratio: 1/1;
    display: flex;
    background: #F98A3C;
    border-radius: 10px;
}

.testimonial i{
    color: rgb(255, 208, 0);
    margin-right: 5px;
}

@media  only screen and (max-width: 767px){
    .testimonial p{
        font-size: 14px;
    }
}

/* TESTIMONIAL----------------EDNS---------------HERE---------------- */

/* INSIGHT----------------STTART---------------HERE---------------- */

.insight{
    background: #F8F9FA;
    padding: 100px 0;
}

.insight h6{
    border: 1px solid #000;
    border-radius: 100px;
    padding: 10px;
}

.insight .insi-bttn{
    width: 50px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    background: #F98A3C;
    color: #FFF;
    border-radius: 100px;
    font-size: 20px;
    transform: rotate(-40deg);
}

.insight .img{
    opacity: 0;
    visibility: hidden;
}

.insight .row:hover .insi-bttn{
    background: #5776B6;
}

.insight .row:hover .img{
    opacity: 1;
    visibility: visible;
}

@media only screen and (max-width: 992px){
    .insight h4{
        font-size: 18px;
    }
    .insight .img{
        width: 80px !important;
    }
}
@media only screen and (max-width: 992px){
    .insight .insi-content{
        margin: 10px 0!important;
        text-align: center;
    }
    .insight .insi-bttn{
        margin: 0 auto;
    }
}

/* INSIGHT----------------EDNS---------------HERE---------------- */

/* FOOOTER----------------START---------------HERE---------------- */

.footer{
    background: #2E55A5;
    padding: 100px 0 60px 0;
}

.footer h1{
    font-size: 65px;
    font-weight: 800;
}

.footer h2{
    font-size: 45px;
    font-weight: 400;
}

.footer .icn{
    width: 50px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF;
    border-radius: 100px;
    color: #F98A3C;    
    margin-right: 8px;
    text-decoration: none;
    font-size: 20px;
}

@media only screen and (max-width: 992px){
    .footer h1{
        font-size: 50px;
    }
    .footer h2{
        font-size: 30px;
    }
    .footer p{
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px){
    .footer h1{
        font-size: 40px;
    }
    .footer h2{
        font-size: 25px;
    }
    .footer .footer-content{
        margin: 15px 0;
    }
    .footer .img,.footer .icns{
        justify-content: start !important;
    }
}

/* FOOOTER----------------EDNS---------------HERE---------------- */

/* ABOUT-----------------PAGE----------------START---------------HERE---------------- */

/* BANNER_2----------------STRAT---------------HERE---------------- */

.banner-2{
    background: #2E55A5;
    width: 100%;
    padding: 200px 0 100px 0;
}

.banner-2 h1{
    font-size: 50px;
}

/* BANNER_2----------------EDNS---------------HERE---------------- */

/* CONTACT----------------START---------------HERE---------------- */

.contact #name{
    width: 100%;
    height: 45px;
    padding: 0 10px;
    border: 1px solid #7a7a7a;
    margin-bottom: 20px;
    border-radius: 5px;
}

.contact #name:focus{
    outline: none;
}

@media only screen and (max-width: 767px){
    .contact .contact-content{
        margin: 20px 0 !important;
        text-align: center;
    }
}

/* CONTACT----------------EDNS---------------HERE---------------- */

/* ABOUT-----------------PAGE----------------EDNS---------------HERE---------------- */