*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --white:#ffffff;
    --black:#000000;
    --blue100:#3B38EB;
    --blue200:#3A37EB;
    --heading:#111A2E;
    --content:#6F737B;
    --gray:#949494;
    --gray100:#FFFFFFBF;
    --border-color:#C4C4C40A; 
}
.container{
    max-width: 100%;
    margin: auto;
}
.row{
    display: flex;
    flex-wrap: wrap;
}
a{
    text-decoration: none;
}
ul,ol{
    list-style: none;
}
img{
    max-width: 100%;
}
.justify-content{
    justify-content: center;
}
.justify-content-between{
    justify-content: space-between;
}
.justify-content-center{
    justify-content: center;
}
.justify-content-end{
    justify-content: end;
}
.align-items {
    align-items: center;
} 
.text-center {
    text-align: center;
}
.col-1{
    width: 8.3333%;
    padding: 15px;
}
.col-2{
    width: 16.6666%;
    padding: 15px;
}
.col-3{
    width: 25%;
    padding: 15px;
}
.col-4{
    width: 33.33%;
    padding: 15px;
}
.col-5{
    width: 41.66%;
    padding: 15px;
}
.col-6{
    width: 50%;
    padding: 15px;
}
.col-7{
    width: 58.3333%;
    padding: 15px;
}
.col-8{
    width: 66.6666%;
    padding: 15px;
}
.col-9{
    width: 75%;
    padding: 15px;
}
.col-10{
    width: 83.3333%;
    padding: 15px;
}
.col-11{
    width: 91.6666%;
    padding: 15px;
}
.col-12{
    width: 100%;
    padding: 15px;
}
.col-xs-1{width: 8.3333%;}
.col-xs-2{width: 16.6666%;}
.col-xs-3{width: 25%;}
.col-xs-4{width: 33.3333%;}
.col-xs-5{width: 41.6666%;}
.col-xs-6{width: 50%;}
.col-xs-7{width: 58.3333%;}
.col-xs-8{width: 66.6666%;}
.col-xs-9{width: 75%;}
.col-xs-10{width: 83.3333%;}
.col-xs-11{width: 91.6666%;}
.col-xs-12{width: 100%;}

.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xxl-1,.col-xxl-2,.col-xxl-3,.col-xxl-4,.col-xxl-5,.col-xxl-6,.col-xxl-7,.col-xxl-8,.col-xxl-9,.col-xxl-10,.col-xxl-11,.col-xxl-12{
    padding: 15px;
}
.padding-100{
    padding: 100px 0px;
}
.dm{
    font-family: 'DM Sans';
}
.urbanist{
    font-family: 'Urbanist';
}
.border-right{
    border-right: 1px solid rgba(128, 128, 128, 0.363);
}
.text-white{
    color: var(--white);
}

/* header  */
header{
    padding: 15px;
    position: fixed;
    width: 100%;
    /* background-color: var(--white); */
    z-index: 9999;
}
header nav > ul > li > a{
    text-transform: capitalize;
    padding: 0px 15px;
    color: var(--content);
}
header nav ul li a{
    transition: all 0.5s;
}
header nav ul li a:hover{
    color: var(--content);
}
header .active{
    color: var(--blue100);
}
header nav ul li a i{
    padding-left:6px;
}
header nav ul li a:hover{
    color: var(--blue100);
}
header nav{
    display: none;
}
header .megamenu{
    position: absolute;
    width: 700px;
    background-color: var(--heading);
    top: 80px;
    border-radius: 0px 0px 10px 10px;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    transform: scaleY(0);
    transform-origin: top;
}
header nav ul li:hover .megamenu , header nav ul li:hover .dropdown{
    opacity: 1;
    transform-origin: top;
    visibility: visible;
    transform: scaleY(1);
    
}
header .megamenu ol li a{
    color: var(--white);
    padding: 10px 0px;
    display: inline-block;
}
header .megamenu ol li a:hover{
    color: var(--gray100);
}
header .megamenu ol h3{
    color: var(--white);
}
header .dropdown{
    position: absolute;
    padding: 10px 30px 10px 0px;
    background-color: var(--heading);
    border-radius: 0px 0px 10px 10px;
    top: 80px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    transform: scaleY(0);
    transform-origin:top ;
}
header .dropdown::after{
    width: 20px;
    height: 20px;
    background-color: var(--heading);
    position: absolute;
    content: "";
    transform: rotate(45deg);
    top:-5px;
    left :10%;
}
header .dropdown ol li a{
    color: var(--white);
    padding: 10px 20px 10px 10px;
    display: inline-block;

}
header .dropdown ol li a:hover{
    color: var(--gray100);
}
header .megamenu.home{
    width: 600px;
}
/* header .toggle{
    display: inline-block;
} */
header .toggle-1{
    display: none;
}
.btn{
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    color: var(--blue100);
    z-index: 1;
    overflow: hidden;
    transition: all 0.5s;
}
.btn::after{
    position: absolute;
    content: "";
    width: 0%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background-color: var(--blue200);
    transition: all 0.5s;
}
.btn::before{
    position: absolute;
    content: "";
    width: 0%;
    height: 100%;
    right: 0;
    top: 0;
    z-index: -1;
    background-color: var(--blue200);
    transition: all 0.5s;
}
.btn:hover::after , .btn:hover::before{
    width: 50%;
}
.btn a{
    transition: all 0.5s;
    color: var(--blue100);
}
.btn:hover a{
    color: var(--white);
}
/* banner  */
.order-1{
    order: 1;
}
.order-2{
    order: -1;
}
.banner-bg{
    background-image: url(../img/bg-image-1.jpg);
    background-repeat: no-repeat;
    position: relative;
}
.banner-bg .banner-img1{
    position: absolute;
    top: -30%;
    left: -25%;
    animation: corner 4s infinite ;
}
@keyframes corner{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.2);
        transform: translate3d(1);
    }
    100%{
        transform: scale(1);
    }
}
.banner-bg .banner-img2{
    position: absolute;
    top: 60%;
    left: 5%;
    animation: img2 5s infinite ;
}
@keyframes img2 {
    0%{
        top: 60%;
    }
    50%{
        top: 63%;
    }
    100%{
        top: 60%;
    }
}
.banner-bg .banner-img3{
    position: absolute;
    bottom: -10%;
    left: 0%;
    animation: img3 5s infinite ;
}
@keyframes img3 {
    0%{
        left: 0%;
    }
    50%{
        left: 5%;
        bottom: -5%;
    }
    100%{
        left: 0%;
    }
}
.banner-bg .banner-img4{
    position: absolute;
    bottom: 20%;
    left: 10%;
    animation: img4 5s infinite ;
}
@keyframes img4 {
    0%{
        bottom: 20%;
    }
    50%{
        bottom: 22%;
    }
    100%{
        bottom: 20%;
    }
}
.banner-bg .banner-img5{
    position: absolute;
    bottom: 20%;
    right: -10%;
}
.banner-bg .banner-img6{
    position: absolute;
    top: 20%;
    left: 40%;
    animation: img6 5s infinite;
}
@keyframes img6 {
    0%{
        top: 20%;
    }
    50%{
        top: 25%;
    }
    100%{
        top: 20%;
    }
}
.banner-content{
    margin-top: 100px;
}
.banner-content h3{
    padding: 10px 29px;
    background-color: #3b38eb0d;
    display: inline-block;
    border: 1px solid #3b38eb1f;
    border-radius: 8px;
    font-size: 14px;
    color: var(--blue100);
}
.banner-content h2{
    margin: 30px 0px 24px;
    font-size: 30px;
    font-weight: 700;
}
.banner-content p{
    margin-bottom: 40px;
    font-size: 18px;
    display: none;
}
.banner-btn .btn{
    padding: 18px 29px;
    border-radius: 10px;
    border: none;
    background-color: var(--blue200);
}
.banner-btn .btn::after , .banner-btn .btn::before{
    background-color: var(--heading);
}
.banner-btn .btn a{
    color: var(--white);
}
.banner-btn i{
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 100%;
    font-size: 20px;
    margin: 0px 20px;
    background-color: var(--white);
    text-align: center;
    color: var(--blue100);
    position: relative;
}
.banner-btn i::before{
    content: "";
    position: absolute;
    border: 1px solid #a096f8;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
    right: 0;
    animation: waves 3s ease-in-out infinite;
}
@keyframes waves {
    0%{
        transform: scale(1);
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100%{
        transform: scale(2);
        opacity: 0;
    }
}
/* common heading  */

.common-heading h4{
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--blue100);
    font-weight: 600;
    letter-spacing: 1px;
}
.common-heading h2{
    font-size: 16px;
    margin-bottom: 18px;
    font-size: 48px;
    color: var(--heading);
}
section{
    overflow: hidden;
}
/* work section  */

.work-bg{
    overflow: hidden;
    background-color: #f7f7f7;
}
.work .work-box{
    background-image: url(../img/processs-bg.png);
    background-repeat: no-repeat;
    background-size: cover;

}
.work-box svg{
    margin:80px 0px 25px;
    background-color: #EFEFFE;
    width: 80px;
    height: 80px;
    padding: 20px;
    border-radius: 100%;
}
.work-box h5{
    font-size: 25px;
    padding-bottom: 10px;
}
.work-box p{
    font-size: 16px;
    padding-bottom: 30px;
}


/* counter  */
.counter-bg{
    background-image: url(../img/01-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}
.counter h2{
    font-size: 60px;
    font-family: 'Urbanist';
    font-weight: 700;
    color: var(--white);
}
.counter p{
    font-size: 18px;
    font-family: 'DM Sans';
    font-weight: 700;
    color: var(--white);
}


/* about  */
.about p{
    margin-bottom: 26px;
}
.about-content .btn{
    background-color: var(--blue200);
}
.about-content .btn a{
    color: var(--white);
}
.about-content .btn::after , .about-content .btn::before{
    background-color: var(--heading);
}
/* service section  */
.service{
    position: relative;
}
.service .service-image1{
    position: absolute;
    top: 100px;
    left: 0;
}
.service .service-image2{
    position: absolute;
    top: 0;
    right: 0;
}
.service .service-box{ 
    background-color: var(--white);
    border-radius: 25px;
    padding: 50px;
    transition: all 0.5s;
}
.service .service-box:hover{
    transform: translateY(-15px);
}
.service-box svg{
    padding-bottom: 10px;
}
.service-box h5{
    font-size: 24px;
    font-weight: 700;
}
.service-box p{
    color: #6f737b;
    font-size: 16px;
    margin: 10px 0;
}
.service-box a{
    font-size: 16px;
    font-weight: 700;
}

/* form  */
.form{
    padding: 40px 10px;
    background-color: var(--white);
    border-radius: 25px;
    position: relative;
}
.form .form-img1{
    position: absolute;
    width: 40px;
    height: 40px;
    top:25%;
    left: 10%;
}
.form .form-img{
    position: absolute;
    top:30%;
    left: -5%;
}
.form-mail i ,.form-call i{
    padding: 20px;
    background-color: var(--blue100);
    border-radius: 100%;
    color: white;
    margin-right: 15px;
    font-size: 20px;
}
.form-content input , .form-content textarea{
    width: 100%;
    border: 1px solid #E8EAF0;
    border-radius: 10px;
    padding: 14px 25px;
    margin: 11px 0px;
}
.form .pb{
    margin-bottom: 24px;
    color: var(--gray);
}
.form-mail{
    margin-bottom: 10px;
}
.form-mail p , .form-call p{
    font-size: 16px;
    font-weight: 500;
    padding: 4px 0px 0px 0px;
    color: var(--content);
}
.form-mail a , .form-call a{
    font-size: 20px;
    font-weight: 700;
    color: var(--heading);
}
.form-mail a:hover , .form-call a:hover{
    color: var(--blue100);
}
.form-content input:focus , .form-content textarea:focus{
    outline-color: var(--blue100);
}
.form-content label{
    font-size: 16px;
    font-weight: 600;
}

.form .btn{
    background-color: var(--blue200);
    width: 100%;
    padding: 15px 0px;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 700;
}
.form .btn a{
    color: var(--white);
}
.form .btn::after , .form .btn::before{
    background-color: var(--heading);
}
/* team  */

.team .team-img{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.team-info{
    position: absolute;
    background-color: rgba(255, 255, 255, 0.700);
    width: 300px;
    height: 300px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: scale(0);
    /* transform-origin: top; */
    transition: all 0.5s;
}
.team .team-img:hover .team-info{
    transform: scale(1);
}
.team-info h3{
    font-size: 24px;
    color: var(--heading);
    cursor: pointer;
    transition: all 0.5s;
}
.team-info h3:hover{
    color: var(--blue100);
}
.team-info h5{
    color: var(--content);
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
}
.team-info i{
    background-color: #e6e6e6;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    margin: 10px 10px;
    transition: all 0.5s;
}
.team-info i:hover{
    background-color: var(--blue100);
    color: var(--white);
}

/* portfolio */
.portfolio{
    position: relative;
}
.portfolio-list{
    align-self: center;
}
.portfolio .port-img{
    position: absolute;
    bottom: 30%;
    left: -10%;
}
.portfolio .port-img2{
    position: absolute;
    bottom: 0;
    left: 80%;
}
.portfolio .common-heading h4 , .portfolio .common-heading h2{
    color: var(--white);
}
.portfolio-box{
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
}
.portfolio-img{
    overflow: hidden;
}
.portfolio-box img{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    transition: all 0.5s;
}
.portfolio-box img:hover{
    transform: scale(1.2);
}
.portfolio-list .active{
    color: var(--blue100);
}
.portfolio-list li a{
    margin: 0px 25px 0px 0px;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.portfolio-box .portfolio-info{
    padding: 50px;
    overflow: hidden;
}
.portfolio-info p{
    font-size:16px ;
    font-weight: 500;
    color: var(--content);
}
.portfolio-info h3{
    font-size: 30px;
    font-weight: 700;
    padding: 10px 0;
    transition: all 0.5s;
}
.portfolio-info h3:hover{
    color: var(--blue100);
}
.portfolio-info a{
    font-size: 16px;
    font-weight: 600;
    color: var(--blue100);
}

/* review */

.review .review-overlay{
    background-color: #f7f7f7;
    width: 80%;
    margin: auto;
}
.review .review-box{
    padding: 30px;
    background-color: var(--white);
    border-radius: 20px;
}
.review-box p{
    font-size: 20px;
    color: var(--content);
    line-height: 35px;
    margin-bottom: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e9ecf1;
}
.review-icon i{
    color: var(--blue100);
}
.review-box .review-info{
    margin-left: 20px;
}
.review-box .review-info h3{
    font-size: 22px;
    font-weight: 700;
}
.review-info h6{
    font-size: 18px;
    color: var(--content);
}
.review-img{
    margin-top: 20px;
}

/* blog  */

.blog .blog-box{
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0px 2px 20px rgba(24,16,16,.09);
}
.blog-box img{
    border-radius: 15px;
}
.blog-box h3{
    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin: 20px 0px;
    padding: 0 0 15px;
    border-bottom: 1px solid #e8e8e8;
    transition: all 0.5s;
}
.blog-box h3:hover{
    color: var(--blue100);
}
.blog-box i{
    color: var(--blue100);
}
.blog-box p{
    margin: 0px 20px 0px 5px;
    font-size: 16px;
}

/* action  */
.action{
    background-image: url(../img/04.webp);
    background-size: cover;
    position: relative;
    padding: 200px 0;
}
.action .overlay{
    position: absolute;
    background-color: #3b38ebcd;
    width: 100%;
    height: 100%;
    top: 0;
}
.action .action-content{
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 120px;
}
.action-content h4{
    font-style: 16px ;
    font-weight: 600;
    line-height: 16px;
    margin-bottom: 18px;
}
.action-content h2{
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    margin-bottom: 15px;
}
.action-content button{
    padding: 15px 30px;
    border-radius: 10px;
    border: none;
    color: var(--blue100);
    font-size: 16px;
    font-weight: 700;
}

/* footer  */
footer{
    background-image: url(../img/bg-7.webp);
    background-size: cover;
    background-repeat: no-repeat;
}
footer .footer-logo{
    width: 160px;
    height: 46px;
    margin-bottom: 20px;
}
.footer-content p{
    margin-bottom: 26px;
    font-size: 18px;
    color: #949494;
}
.footer-icon i{
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #292929;
    color: var(--white);
    transition: all 0.5s;
}
.footer-icon i:hover{
    background-color: var(--blue100);
}
.footer-info h3{
    font-size: 22px;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-info ul li a{
    font-size: 18px;
    color: #949494;
    font-weight: 500;
    padding: 10px 0px;
    display: block;
    transition: all 0.5s;
}
.footer-info ul li a:hover{
    color: var(--white);
}
.footer-bottom{
    padding: 50px 0;
}
.footer-bottom .justify-content-between{
    justify-content: center;
    text-align: center;
    display: block;
}
.footer-bottom .copyright{
    padding: 20px 0px;
}
.footer-bottom p{
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
}
.footer-bottom a{
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    padding-right: 10px;
    transition: all 0.5s;
}
.footer-bottom a:hover{
    color: #949494;
}
.footer-bottom span{
    color: #949494;
}