@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
    padding: 0; margin: 0;
    box-sizing: border-box; text-transform: capitalize;
    transition: .4s linear;
    outline: none; border: none; text-decoration: none;
    text-transform: unset!important;
    font-family: 'outfit', sans-serif;
}

:root{
    --main-color: linear-gradient(90deg,#0382C9, #08B4CC);;
    --black-color: #1b1b1b;
    --dark-black-color: #000212;
    --white-color: #fff;
    --gray-color: gray;
    --light-gray: #e5e5e5;
    --box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    --font1: font-family: 'poppins', sans-serif;
    --surface-color: #fff;
    --curve: 40;
}


html{
    font-size: 65.5%;
    scroll-behavior: smooth;
    transition: .10s all;
}

body{
    overflow-x: hidden;
    background: var(--white-color);
}

a{
    text-decoration: none!important;
}

::-webkit-scrollbar{
    width: .6rem;
}

::-webkit-scrollbar-track{
    background: var(--white-color);
}

::-webkit-scrollbar-thumb{
    background: #F4F5F6;
}

/*Start header*/

/*.top-header{
    background: linear-gradient(90deg,#0382C9, #08B4CC);
    height: 50px; padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-header .top-header-social-media{
    display: flex; align-items: center;
    gap: 1.5rem;
}

.top-header .top-header-social-media i{
    color: var(--white-color); font-size: 1.6rem;
}

.top-header .top-header-headline a{
    font-size: 1.4rem; color: var(--white-color);
    letter-spacing: .3px; font-weight: 500;
}*/

/*Top header*/
.top-header{
    display: flex; justify-content: space-between; align-items: center;
    height: 50px;
    width: 100%;
    padding: 1rem 5%;
    background: var(--main-color);
}

.top-header-call a{
    font-size: 1.4rem;
    color: var(--white-color);
    text-decoration: none;
    display: flex; align-items: center;
}

.top-header-email a{
    font-size: 1.4rem;
    color: var(--white-color);
    text-decoration: none;
    display: flex; align-items: center;
}

.top-header-map a{
    font-size: 1.4rem;
    color: var(--white-color);
    text-decoration: none;
    display: flex; align-items: center;
}

.top-header-social{
    display: flex;
    align-items: center;
}

.top-header-social a{
    font-size: 1.4rem;
    color: #333;
    text-decoration: none;
    display: flex; align-items: center;
}

.top-header-call a ion-icon{
    /*background: linear-gradient(-90deg,#7114EF, #1475F7)!important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;*/
    padding: 0.5rem;
    color: var(--white-color);
    margin: 0 .5rem;
    border-radius: 50%;
}

.top-header-social a ion-icon {
    background: #ffffff1f;
    padding: 0.8rem;
    color: #fff;
    margin: 0 .5rem;
    border-radius: 4px;
}

.top-header-email a ion-icon{
    /*background: linear-gradient(-90deg,#7114EF, #1475F7)!important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0.5rem;*/
    color: var(--white-color);
    margin: 0 .5rem;
    border-radius: 50%;
}

.top-header-map a ion-icon{
    /*background: linear-gradient(-90deg,#7114EF, #1475F7)!important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0.5rem;*/
    color: var(--white-color);
    margin: 0 .5rem;
    border-radius: 50%;
}

/*End top header*/

ul{
    list-style: none;
    margin:0;
    padding:0;
}

a{
    text-decoration: none;
}

.container{
    max-width: 100%;
    width: 100%;
    /*position: fixed;
    top: 0;
    right: 0;*/
}

.header{
    background: #141D38;
    width: 100%;
    left:0;
    top:0;
    position: relative;
    z-index: 99;
    padding: 0 4%;
}

.header.black{
    background: #141D38;
    transition: .5s all;
    position: fixed; top: 0;
    left: 0; transform-origin: top;
    opacity: 1;
}

.header-main{
    display: flex;
    width: 100%!important;
    justify-content: space-between;
    background-color: transparent;
    align-items: center;
    padding: 16px 0;
    border-radius: 4px;
    height: 80px;
}

.header .logo{
    padding: 0;
}

.header .logo img {
    height: 80px;
    position: absolute;
    top: 0;
    left: 0;
}

.header .nav-menu{
    padding: 0 15px;
}

.header .menu > .menu-item{
    display: inline-block;
    margin-left: 20px;
    position: relative;
}

.header .menu > .menu-item > a{
    display: block;
    padding: 12px 0;
    font-size: 1.4rem;
    color: var(--white-color);
    font-family: 'outfit', sans-serif;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.header .menu > .menu-item > a:hover{
    color: var(--blue-color);
}

.header .menu > .menu-item > a .fa-angle-down{
    display: inline-block;
    height: 12px;
    width: 12px;
    position: relative;
    margin-left:5px; 
    pointer-events: none;
}

.header .menu > .menu-item > a .fa-angle-down:before,
.header .menu > .menu-item > a .fa-angle-down:after{
    content:'';
    position: absolute;
    box-sizing: border-box;
    left: 50%;
    top:50%;
    background-color: var(--white-color);
    height: 2px;
    width: 100%;
    transform: translate(-50%,-50%);
    transition: all 0.3s ease;
}

.header .menu > .menu-item:hover > a .fa-angle-down:before,
.header .menu > .menu-item:hover > a .fa-angle-down:after{
   background-color: var(--white-color);
}

.header .menu > .menu-item > a .fa-angle-down:after{
   transform: translate(-50%,-50%) rotate(-90deg);  
}

.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a{
    letter-spacing: 1px;
}

.header .menu > .menu-item > .sub-menu{
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    width: 220px;
    position: absolute;
    left:0;
    top:100%;
    background-color: var(--white-color);
    padding: 10px 0;
    border-top: 3px solid var(--light-gray);
    transform: translateY(10px);
    transition: all 0.3s ease;
    opacity:0;
    border-radius: 8px;
    visibility: hidden;
}

.menu{
    margin: 0 1.4rem;
}

@media(min-width: 992px){
.header .menu > .menu-item-has-children:hover > .sub-menu{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
 }
 .header .menu > .menu-item-has-children:hover > a .fa-angle-down:after{
    transform: translate(-50%,-50%) rotate(0deg);       
 }
}

.header .menu > .menu-item > .sub-menu > .menu-item{
    display: block;
}

.header .menu > .menu-item > .sub-menu > .menu-item > a{
    display: block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color);
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.header .open-nav-menu {
    height: 50px;
    background: var(--main-color);
    border-radius: 7px;
    width: 50px;
    margin-right: 15px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header .open-nav-menu span{
    display: block;
    height: 3px;
    width: 24px;
    background-color: #fff;
    position: relative;
}

.header .open-nav-menu span:before,
.header .open-nav-menu span:after{
    content: '';
    position: absolute;
    left:0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    box-sizing: border-box;
}

.header .open-nav-menu span:before{
    top:-7px;
}

.header .open-nav-menu span:after{
    top:7px;
}

.header .close-nav-menu {
    height: 40px;
    width: 40px;    
    cursor: pointer;
    display: none;
    background: var(--main-color);
    align-items: center;
    justify-content: center;
    margin: 0 0 15px 11px;
    cursor: pointer;
    align-items: center;
    border-radius: 4px;
    justify-content: center;
}

.header .close-nav-menu img{
    width: 16px;
}

.header .menu-overlay{
    position: fixed;
    z-index: 999;
    background-color: rgba(0,0,0,0.5);
    left:0;
    top:0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    opacity:0;
    transition: all 0.3s ease;
}

.nav-btn a{
    border-radius: 4px;
    background: var(--white-color);
    color: var(--black-color);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    padding: .6rem 1.8rem;
    transition: .5s all;
    height: 45px;
    font-family: 'outfit', sans-serif;
    font-size: 1.4rem; font-weight: 500;
}

.nav-btn-fix a{
    border-radius: 4px;
    background: linear-gradient(90deg, #4931DB, #8159E6);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: .6rem 1.8rem;
    transition: .5s all;
    height: 45px;
    font-family: 'outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    right: 20px;
    position: fixed;
    bottom: 20px;
    z-index: 1111;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    display: none;
}

.nav-btn a:hover{
    background: transparent;
    color: var(--white-color);
}

.flex-menu{
    display: flex;
    align-items: center;
}

.login-none{
    display: none!important;
}

#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--main-color);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;

}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 18px;
    top: 15px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background:rgb(26, 177, 232);
}
#return-to-top:hover i {
    color: #fff;
    top: 5px;
}

.hide {
  transform: scale(0, 0);
}

.ripple-6 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.ripple-1, .ripple-2, .ripple-3, .ripple-4, .ripple-5, .ripple-6 {
    height: 100px;
    width: 100px;
    position: absolute;
    right: 0;
    top: 0;
    background-color: transparent;
    border-radius: 50%;
    -webkit-animation: heroripple 8s linear infinite;
    animation: heroripple 8s linear infinite;
}

.ripple-1 {
    -webkit-animation-delay: 5s;
    animation-delay: 1s;
    border: 1.2px solid #0382C9;
}

.ripple-2 {
    -webkit-animation-delay: 5s;
    animation-delay: 2s;
    border: 1.2px solid #0382C9;
}

.ripple-3 {
    -webkit-animation-delay: 5s;
    animation-delay: 3s;
    border: 1.2px solid #0382C9;
}

.ripple-4 {
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
    border: 1.2px solid #0382C9;
}

.ripple-5 {
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
    border: 1.2px solid #0382C9;
}

@keyframes heroripple{
    0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 0.2;
}

100% {
    opacity: 0;
    -webkit-transform: scale(4);
    transform: scale(4);
}
}
/*End navbar*/

/*Start home section*/
.home-section{
    padding: 1rem 5%; padding-bottom: 0!important;
    width: 100%; 
    position: relative; overflow: hidden;
    background: url(../img/home-bg.jpg);
    background-size: cover!important; background-position: center!important;
}

.home-section .row{
    display: flex; align-items: center;
}

.home-img img{
    width: 100%;
    height: auto;
}

/*Video section part*/
.video-section-content{
    max-width: 600px;
    width: 100%;
}

.video-section-content h4{
    font-size: 2.6rem;
    color: var(--white-color);
    font-weight: 700;
    margin: 0;
}

.video-section-content p{
    color: var(--white-color);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: .3px;
    line-height: 1.6;
}

.video-play-design a{
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    color: #333;
}

.wrappers {
    position: absolute;
    width: 85px;
    height: 85px;
    top: 0;
    transform: translate(-50%, -50%);
    margin: 0 auto;
}

 .wrappers .circles {
     width: 85px;
     height: 85px;
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     border-radius: 50%;
     background: var(--main-color);
     margin: auto;
     transform: scale(1, 1);
}

 .wrappers .circles2 {
     width: 95px;
     height: 95px;
     position: absolute;
     top: 0;
     left: -5.5px;
     right: 0;
     bottom: 0;
     border-radius: 50%;
     background: #0489c921;
     margin: auto;
     transform: scale(1, 1);
}

 .wrappers .circles.pulse {
     animation-timing-function: ease;
     animation: pulse 2s infinite;
     background-color: #0489c921;
}

 .wrappers .circles2.pulse {
     animation-timing-function: ease;
     animation: pulse 3s infinite;
     background-color: #0489c921;
}

.circles{
    display: flex;
    align-items: center;
    justify-content: center;
}

.circles img{
    width: 45px!important;
}

 @keyframes pulse {
     0% {
         transform: scale(1, 1);
    }
     25% {
         transform: scale(1, 1);
    }
     50% {
         transform: scale(1.2, 1.2);
    }
     100% {
         transform: scale(1, 1);
    }
}
 
.video-play-design{
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/*.......2*/
.wrapper {
     position: relative;
     width: 45px;
     height: 45px;
     margin: 0 auto;
}
 .wrapper .circle {
     width: 45px;
     height: 45px;
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     border-radius: 50%;
     background: var(--main-color);
     margin: auto;
     transform: scale(1, 1);
}
 .wrapper .circle.pulse {
     animation-timing-function: ease;
     animation: pulse 2s infinite;
     background: #048cca26;
}
 .wrapper svg {
     fill: #fff;
     stroke: #fff;
     stroke-linejoin: round;
     stroke-width: 5;
     transition: all 0.3s;
}
 .wrapper svg:hover {
     cursor: pointer;
     fill: #fff;
     stroke: #fff;
     transform: scale(1.2, 1.2);
}
 @keyframes pulse {
     0% {
         transform: scale(1, 1);
    }
     25% {
         transform: scale(1, 1);
    }
     50% {
         transform: scale(1.2, 1.2);
    }
     100% {
         transform: scale(1, 1);
    }
}
 
.video-play-design{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-section-buttons{
    display: flex;
    align-items: center;
    gap: 1.5rem; margin-top: 2rem;
}

.Readmore{
  padding: 0 2.5rem;
  height: 50px;
 border: unset;
 border-radius: 4px;
 color: #fff;
 display: flex; align-items: center; justify-content: center;
 z-index: 1; max-width: 160px;
 background: var(--main-color);
 position: relative;
 font-weight: 500;
 font-size: 1.6rem;
 transition: all 250ms;
 overflow: hidden;
}

.Readmore::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 height: 100%;
 width: 0;
 border-radius: 4px;
 background-color: #141D38;
 z-index: -1;
 -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
 box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
 transition: all 250ms
}

.Readmore:hover {
 color: #fff;
}

.Readmore:hover::before {
 width: 100%;
}

.home-content h5{
    font-size: 1.8rem;
    background: var(--main-color);
    margin: 0; font-weight: 700;
    color: transparent;
    -webkit-background-clip: text!important;
    -webkit-text-fill-color: transparent;
}

.home-content h1{
    color: #141D38;
    font-size: 6.2rem;
    font-weight: 700;
    margin: 0; padding: 1.5rem 0;
}

.home-content p{
    color: #737887;
    font-size: 1.4rem;
    margin: 0; 
}

.home-shape-img{
    width: 50%;
    left: 0;
    top: 0px;
    position: absolute;
    animation: jumpAni 7s linear infinite;
}

@keyframes jumpAni{
    0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
/*End home section*/

/*Start escrow-section*/
.escrow-section{
    padding: 6rem 5%;
}

.escrow-section .row{
    padding: 2.2rem 2rem;
    background: #f1fbff;
    border-radius: 12px;
    margin-top: 3rem;
}

.escrow-section .row1{
    padding: 0;
    margin: 0; background: var(--white-color);
}

.escrow-section-heading{
    display: flex; align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; gap: 1.5rem;
}

.escrow-section-heading h2{
    color: #141D38;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
}

.escrow-section-heading .escrow-section-heading-btn{
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.6rem; font-weight: 500;
    border-radius: 4px;
    color: var(--white-color);
    background: #141D38;
    font-weight: 500; padding: 1.2rem 2rem;
    transition: all 250ms;
}

.escrow-box{
    background: var(--white-color);
    text-align: center;
    width: 100%; min-height: 230px;
    align-items: center;
    gap: 1.5rem; margin-bottom: 1.5rem;
    padding:  1rem 2rem; border-radius: 6px;
    box-shadow: 0px 10px 15px rgba(8, 14, 28, 0.06);
}

.escrow-box img{
    width: 55px;
    margin-top: 2rem;
}

.escrow-box .escrow-box-icon{
    padding: 1.4rem 0;
}

.escrow-box .escrow-box-icon h4{
    margin: 0;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--dark-black-color);
}

.escrow-box .escrow-box-icon p {
    color: #737887;
    font-size: 1.6rem;
    margin: 0; padding: .5rem 0;
    font-weight: 300;
}

.escrow-section-heading .offcanvas-header {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1.2px dashed var(--light-gray);
}

.escrow-section-heading #offcanvasRightLabel{
    font-size: 2rem; margin: 0;
    font-weight: 500;
    color: var(--dark-black-color);
}
/*End escrow-section*/

/*Start castler section*/
.castler-section{
    padding: 6rem 5%;
    background: #f1fbff;
}

.castler-box{
    background: var(--white-color);
    border: 1.2px solid #cee0e5;
    padding: 2rem; margin-bottom: 1.4rem;
    border-radius: 12px;
    box-shadow: 0px 10px 15px rgba(8, 14, 28, 0.06);
}

.castler-box h4{
    margin: 0;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5;
    padding: 1.5rem 0;
}

.castler-box img{
    width: 100%;
}

.castler-box-footer{
    padding: 2rem 0;
}

.castler-box-footer img{
    height: 20px; width: auto;
}
/*End castler section*/

/*Start about section*/
.about-section{
    padding: 6rem 5%;
    position: relative;
}

.about-section-shape {
    width: 300px;
    position: absolute;
    top: 50%;
    right: -51px;
    opacity: .4;
}
.about-img img{
    width: 95%;
    display: block; margin: auto;
    border-radius: 10px;
}

.about-content h5 {
    font-size: 1.6rem;
    background: var(--main-color);
    margin: 0;
    font-weight: 600;
    color: transparent;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    display: flex; align-items: center; gap: 1rem;
}

.about-content h5 img{
    width: 23px;
}

.about-content h2{
    color: #141D38;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0; padding: 2.5rem 0;
}

.about-content p{
    color: #737887;
    font-size: 1.6rem;
    margin: 0; font-weight: 300;
}

.about-content-mission{
    padding: 2.5rem 0;
}

.about-content-mission .mission{
    color: #141D38;
    font-size: 1.6rem;
    margin: 0; padding: .6rem 0;
    display: flex; align-items: center; gap: .6rem;
}

.about-content-mission .mission i{
    color: #0382c9; font-size: 2rem;
}
/*End about section*/

/*Start client section*/
.client-section{
    padding: 6rem 5%;
    background: url(../img/client-section-bg.jpg);
    background-size: cover; background-position: center;
    width: 100%; height: auto; background-attachment: fixed;
    position: relative;
}

.client-box{
    text-align: center;
}

.client-box:hover img{
    transform:rotateY(180deg);
}

.client-box img{
    width: 120px;
}

.client-box h4{
    font-size: 3rem;
    font-weight: 700;
    color: var(--white-color);
    margin: 0; padding: .6rem 0;
}

.client-box p{
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--white-color);
    margin: 0;
}

/*..................*/
/*Circle animation*/
.box{
    width: 100%;
    overflow-x: hidden;
}
.box div{
    position: absolute;
    width: 30px;
    height: 30px;
    opacity: .5;
    background-color: #ffffff4d;
    z-index: 8;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.8);
}

.box div:nth-child(1){
    top: 12%;
    left: 50%;
    animation: animate 10s linear infinite;
}

.box div:nth-child(2){
    top: 70%;
    left: 50%;
    animation: animate 7s linear infinite;
}

.box div:nth-child(3){
    top: 17%;
    left: 6%;
    animation: animate 9s linear infinite;
}

.box div:nth-child(4){
    top: 20%;
    left: 60%;
    animation: animate 10s linear infinite;
}

.box div:nth-child(5){
    top: 67%;
    left: 10%;
    animation: animate 6s linear infinite;
}

.box div:nth-child(6){
    top: 80%;
    left: 70%;
    animation: animate 12s linear infinite;
}

.box div:nth-child(7){
    top: 60%;
    left: 80%;
    animation: animate 15s linear infinite;
}

.box div:nth-child(8){
    top: 32%;
    left: 25%;
    animation: animate 16s linear infinite;
}

.box div:nth-child(9){
    top: 90%;
    left: 25%;
    animation: animate 9s linear infinite;
}

.box div:nth-child(10){
    top: 20%;
    left: 80%;
    animation: animate 12s linear infinite;
}

@keyframes animate{
    0%{
        transform: scale(0) translateY(0) rotate(0);
        opacity: .5;
    }

    100%{
        transform: scale(1.3) translateY(-90px) rotate(360deg);
        opacity: .5;
        z-index: -1;
    }
}
/*End client section*/

/*Start technology section*/
.technology-section{
/*    background: #f0f1f2;*/
    padding: 6rem 5%;
}

.technology-section-heading{
    display: flex; align-items: center;
    justify-content: space-between;
    padding-bottom: 5rem;
}

.technology-section-heading-1 h5{
    font-size: 1.6rem;
    background: var(--main-color);
    margin: 0;
    font-weight: 600;
    color: transparent;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.technology-section-heading-1 h2{
    color: #141D38;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    max-width: 600px;
    padding: 1rem 0;
}

.technology-section-heading-1 h2 span{
    color: transparent;
    -webkit-background-clip: text!important;
    -webkit-text-fill-color: transparent;
    background: var(--main-color);
}

.technology-section-heading .Readmore{
    max-width: 180px;
}

.technology-box{
    border-radius: 8px;
    box-shadow: 0px 10px 15px rgba(8, 14, 28, 0.06);
    margin: 0 1.2rem; margin-bottom: 2rem;
}

.technology-box:hover .technology-box-content{
    background: #0382C9;
    background: url(../img/technology-card-bg.jpg);
    background-size: cover; background-position: center;
    border-bottom-right-radius: 8px; border-bottom-left-radius: 8px;
}

.technology-box:hover .technology-box-img-part-icon{
    background: #0382C9;
}

.technology-box:hover .technology-box-img-part-icon img{
    filter: brightness(100);
}

.technology-box:hover .technology-box-content h4{
    color: var(--white-color);
}

.technology-box:hover .technology-box-content p{
    color: var(--white-color);
}

.technology-box .technology-box-img-part img{
    width: 100%; height: auto; border-top-right-radius: 8px; border-top-left-radius: 8px;
}

.technology-box-img-part{
    position: relative;
}

.technology-box-img-part-icon {
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-color);
    border-radius: 10px;
    position: absolute;
    bottom: -85px;
    transform: translate(-50%, -50%);
    left: 16.6%; border-top-left-radius: 0;
}

.technology-box-img-part .technology-box-img-part-icon img{
    width: 45px; height: auto; border-radius: 0!important;
}

.technology-box-content{
    padding: 2rem; padding-bottom: 3rem;
    text-align: center;
}

.technology-box-content h4{
    margin: 0; margin-top: 3.2rem;
    font-size: 2.1rem; padding-bottom: 1rem;
}

.technology-box-content p{
    margin: 0; color: #737887;
    font-size: 1.4rem; line-height: 1.5;
}
/*End technology section*/

/*Start review section*/
.review-section{
    padding: 4rem 5%;
    width: 100%;
    background: url(../img/review-section-bg.jpg);
    background-size: cover!important; background-position: center!important;
}

.section-heading{
    text-align: center;
    padding-bottom: 3rem;
}

.section-heading h5{
    font-size: 1.6rem;
    background: var(--main-color);
    margin: 0;
    font-weight: 600;
    color: transparent;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 1rem; justify-content: center;
}

.section-heading h2{
    color: #141D38;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 auto;
    max-width: 600px;
    padding: 1rem 0;
}

.section-heading h2 span{
    color: transparent;
    -webkit-background-clip: text!important;
    -webkit-text-fill-color: transparent;
    background: var(--main-color);
}


.review-box{
    background: var(--white-color);
    position: relative;
    display: flex;
    border-radius: 8px;
    align-items: start;
    gap: 2.5rem;
    padding: 1.4rem 2rem;
    box-shadow: 0px 6px 15px rgba(8, 14, 28, 0.06);
    margin: 0 1.4rem;
}

.review-box img{
    width: 160px; height: auto;
    border-radius: 10px;
}

.review-box .review-box-content p{
    color: #737887;
    font-size: 1.4rem; margin: 0;
    border-bottom: 1px solid #E2E8FA;
    padding-bottom: 1rem; line-height: 1.6;
}

.review-box-content-footer .review-box-content-footer-flex1{padding: 1rem 0;}

.review-box-content-footer .review-box-content-footer-flex1 h4{
    font-size: 2.2rem; font-weight: 600; color: #141D38;
    margin: 0; padding: .8rem 0;
}

.review-box-content-footer .review-box-content-footer-flex1 p{
    font-size: 1.4rem; color: #737887;
    margin: 0;
}

.review-box-content-footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-box-content-footer-rating i{
    font-size: 1.4rem; color: #0382C9;
}

.review-box-content-footer-flex1 p{
    border: none!important;
}
/*End review section*/

/*Start quetion section*/
.question-section{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 5%;
  width: 100%; height: auto;
  background: #f2f6ff;
}

.question-section .row h2{
  text-align: center;
  padding: 0;
}

.question-section .row p{
  padding-bottom: 2rem;
  text-align: center;
}

.accordion-flush .accordion-item .accordion-button {
    font-size: 1.4rem;
    color: #333;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    margin: 1rem auto;
    outline: none;
    padding: 1.5rem;
    background: transparent;
    border: 1px solid lightgray;
}

.accordion-item{
  border: none!important;
}

.accordion-body {
    line-height: 1.7;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1.4rem;
}

.accordion-button::after{
  background-image: url(../img/plus-icon.svg);
  transform: scale(1.4);
}

.accordion-button:not(.collapsed)::after{
  background-image: url(../img/remove-plus.svg);
  transform: scale(1.4);
}
/*End question section*/

/*Start frequently-section*/
.frequently-section{
/*    padding: 4rem 5%;*/
    width: 100%;
    background: #f2f6ff;
    padding-left: 5%!important;
}

.frequently-box{
    padding: 4rem 0;
}

.frequently-box h2{
    color: #141D38;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 auto;
    max-width: 600px;
/*    padding: 1rem 0;*/
}

.frequently-box h2 span{
    color: transparent;
    -webkit-background-clip: text!important;
    -webkit-text-fill-color: transparent;
    background: var(--main-color);
}

.frequently-box h5{
    font-size: 1.6rem;
    background: var(--main-color);
    margin: 0;
    font-weight: 600;
    color: transparent;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.frequently-box p{
    color: #737887;
    padding: 10px 0;
    font-size: 1.4rem;
    padding-bottom: 1rem;
    line-height: 1.6;
}

.accordion-item{
    color: #fff;
}

.accordion-button{
    background-color: #fff;
    border-radius: 0;
/*    border: 1px solid #e5e5e5; */
    transition: all .5s ease;
    color: #333;
    font-size: 16px;
    margin: 1rem 0;
    padding: 1.2rem 2rem;
    box-shadow: none!important;
    outline: none!important;

}

.accordion-button::after{
    background: url(../img/plus-icon.svg);
}

.accordion-body{
    padding: 2rem;
    background: #ffff;
}

.accordion-button:not(.collapsed){
    color: #333;
    border: none!important;
    box-shadow: none!important;
    outline: none!important;
    background: #fff;
/*    border: 1px solid #e5e5e5!important;*/
}

.frequently-img{
    width: 100%;
    height: auto;
}

.frequently-img img{
    width: 100%;
    display: block;
    margin: auto;
}

.accordion-body p{
    font-size: 1.4rem!important;
    line-height: 1.5;
    line-height: 1.7;
    color: #333;
}
/*End frequently-section*/

/*Start mission section*/
.mission-section{
    background: url(../img/feature-bg.jpg);
    background-size: cover; background-position: center;
    padding: 4rem 5%; padding-bottom:  0rem;
    width: 100%; height: auto;
/*    display: flex; align-items: center;*/
/*    background: linear-gradient(#ffffffeb, #fff), url(../img/mission-section-bg.jpg);*/
/*    background-size: cover; background-position: center; background-attachment: fixed;*/
}

.mission-section .row h2{
    font-size: 5rem;
    font-weight: 600;
    color: var(--black-color);
    margin: 0; 
}

.mission-section .row h2 span{
    background-clip: text!important;
    -webkit-background-clip: text!important;
    color: transparent!important;
    background: var(--main-color);
}

.mission-section .row p{
    font-size: 1.6rem;
    color: var(--black-color);
    margin: 0; 
    padding: 1rem 0; font-weight: 500;
    padding-bottom: 6rem;
}

.mission-section-card-inner{
    background: -webkit-linear-gradient(left, transparent, #fff);
    text-align: center;
    padding: 47px 70px;
/*    height: 100%; */
    margin-bottom: 8rem;
    display: flex; align-items: center;
    justify-content: center; flex-direction: column;
    position: relative;
/*    backdrop-filter: blur(2px);*/
/*    background: var(--white-color);*/
}

.mission-section-card-inner:hover .arrow img{
    transform: rotate(90deg);
}


/*.mission-section-card-inner img{
    width: 100px; height: auto;
    position: absolute;
    left: 50%; top: 0;
    transform: translate(-50%, -50%);
}
*/
.mission-section-card-inner h4{
    margin: 0;
    margin-top: 1.6rem;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--black-color);
}

.mission-section-card-inner p{
    color: var(--black-color)!important;
    font-size: 1.6rem!important; font-weight: 300!important;
    line-height: 1.6!important; margin: 0!important; padding: 1rem 0!important;
}

.arrow img{
    width: 40px;
    position: static;
    transform: translate(0);
    margin-top: 1rem;
}

.mission-section-card-inner-count{
    position: absolute;
    font-size: 5rem;
    font-weight: 800;
    color: #f2f6ff;
    top: 8px;
    right: 21px;
}
/*End mission section*/

/*Start footer*/

.footer {
    padding: 4rem 5%;
    background:  #141D38;
}

.footer_section img{
    height: 5rem;
}

.footer-icons a{
    background: #fff;
    padding: .8rem;
    font-size: 1.4rem;
    border-radius: 5px;
    text-decoration: none;
    color: #101114;
    margin: 0 .3rem;
}

.footer-icons a:hover{
    background: #fff;
    color: #101114;
}

.footer-icons .orange{
    background: #fff;
}

.footer_section ul li a{
    text-decoration: none;
}

.footer_section ul li a i{
    color: #101114
    font-size: 1.3rem;
    margin: 0 .5rem;
}

.footer_section ul li a:hover{
    letter-spacing: 1px;
    padding-bottom: .4rem;
}

.footer_section p{
    color: #fff;
    font-size: 1.2rem;
    padding: 1rem 0;
    line-height: 1.6;
}

.footer_section h4,
.social_media h4 {
    color:#fff;
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 20px;
}

.footer_section h4::after,
.social_media h4::after {
    content: "";
    display: block;
    height: 2px;
    width: 40px;
    background: #fff;
    margin-top: 20px;
}


.footer_section ul{
    margin: 0;
    padding: 0;
    list-style: none;
}


.footer_section ul li a{
    color: #fff;
    transition: all .3s ease 0s;
    line-height: 36px;
    font-size: 1.3rem;
    text-transform: capitalize;
}

.footer_section ul li a:hover {
    border-bottom: 1px solid var(--main-color);
    padding-bottom: .2rem;
        ransition: .4s all;
}

.footer_section_contact ul li {
    color: #fff;
}

.search form {
    width: 100%;
    position: relative;
    display: flex;
    margin-bottom: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.contact_input {
    width: 100%;
    border: none;
    padding: 0 0 0 15px;
    height: 60px;
    border-radius: 5px 0 0 5px;
    outline: none;
    color: #999;
    font-size: 16px;
}


.submit_button {
    width: 70px;
    height: 60px;
    font-size: 20px;
    border: none;
    background: #fff;
    text-align: center;
    color: #a129a5;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.new{
    display: block!important;
}

.social_media ul{
    display: flex;
}

.social_media ul li {
    text-align: center;
    line-height: 50px;
    font-size: 16px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--main-color);
    background-color: var(--black-color);
    transition: all .5s ease;
    margin: 0 .8rem;
    list-style: none;
}

.social_media ul li:hover {
    border: 1px solid var(--main-color);
    background-color: transparent;
}

.social_media ul li a {
    font-weight: 100;
    color: #fff;
    text-decoration: none;
}

.footer-address div a{
    text-decoration: none;
    color: var(--gray-color);
    font-size: 1.4rem;
}

.second-footer{
    background: var(--main-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4%;
    border-top: 1px solid var(--gray-color);
}

.second-footer .heading-1 a{
    color: #fff;
    font-size: 1.3rem;
    text-decoration: none;
}

.second-footer .heading-2 a{
    color: #fff;
    font-size: 1.3rem;
    text-decoration: none;
}

.second-footer .heading-1 a b{
    color: var(--orange-color);
}
/*End footer*/

/*Service page ui*/
.service-section-home{
    width: 100%;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: linear-gradient(90deg,#141d38bf, #141d38bf), url(../img/service-page-bg.jpg);
    animation: zoomin 30s ease-in infinite;
    background-size: cover; background-position: center!important;
}

@keyframes zoomin{
    0% {
    background-size: 100%;
}
50% {
    background-size: 150%;
}
100% {
    background-size: 100%;
}
}

.service-section-home h2{
    font-size: 6rem;
    font-weight: 700;
    color: var(--white-color);
    margin: 0;
}

.service-section-home .service-section-home-pegination{
    margin-top: 1rem; display: flex; align-items: center; gap: 1.5rem;
}

.service-section-home .service-section-home-pegination a{
    font-size: 1.6rem;
    font-weight: 500;
    color: #ffffff75;
}

.service-section-home .service-section-home-pegination a:hover{
    color: var(--white-color);
}

.service-section-home .service-section-home-pegination .s-active{
    color: var(--white-color);
}

.service-section-work{
    padding: 4rem 5%;
}
/*End service page ui*/

/*Start menu section*/
.service-section-work .box-containers .ServicePage-box{
    padding: 40px;
    position: relative;
    z-index: 2;
    box-shadow: 0px 10px 30px rgba(8, 14, 28, 0.06);
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out; margin-bottom: 2rem;
}

.service-section-work .box-containers .ServicePage-box:before{
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    background: #0382c9;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s;
}

.service-section-work .box-containers .ServicePage-box:hover:before{
    transform: scaleY(1);
    transform-origin: right;
    border-radius: 10px;
    transition: transform 0.6s;
    color: black;
}

.service-section-work .box-containers .ServicePage-box img{
    width: 40px;
    z-index: 1;
    position: absolute;
    top: 46%;
    left: 46%;
    transform: translate(-50%,-50%);
}

.ServicePage-box:hover .ServicePage-box-img{
    background: var(--white-color);
}

.ServicePage-box-img{
    position: relative;
    display: flex; align-items: center; justify-content: center;
    width: 100px; height: 100px;
    background: #e2f1fa;
    clip-path: path("M4.76563 19.2144C-2.32686 32.07 -1.20075 48.6639 6.14105 61.3767C16.4024 79.1459 38.9816 89.016 58.6174 83.4451C78.2532 77.8741 92.5688 56.7417 89.6127 36.3982C84.2306 -0.647078 23.3991 -14.559 4.76563 19.2144Z");
}

.ServicePage-box-img .ServicePage-box-img-dots1{
    width: 17px;
    height: 17px;
    background: #0382c9;
    border-radius: 50%;
    position: absolute;
    top: 0px;
    z-index: 111;
    right: 29px;
}

.ServicePage-box-img .ServicePage-box-img-dots2 {
    width: 12px;
    height: 12px;
    background: #0382c9;
    border-radius: 50%;
    position: absolute;
    bottom: 20px;
    z-index: 111;
    left: 11px;
}

.service-section-work .box-containers .ServicePage-box:hover h3{
    transform: scale(1.2);
}


.service-section-work .box-containers .ServicePage-box a{
    position: relative;
    z-index: 1;
}

.service-box-counter{
    position: absolute;
    top: 20px;
    right: 50px;
    font-size: 8rem;
    font-weight: 800;
    color: #e2f0fa;
    opacity: 0.4;
}

.service-section-work .box-containers .ServicePage-box h4{
    font-size: 2.2rem; font-weight: 600;
    color: #141d38; margin: 0;
    position: 1.5rem 0;
    position: relative; z-index: 111;
}

.service-section-work .box-containers .ServicePage-box:hover h4{
    color: var(--white-color); z-index: 1111;
}

.service-section-work .box-containers .ServicePage-box:hover p{
    color: var(--white-color); z-index: 1111;
}

.service-section-work .box-containers .ServicePage-box:hover .ServicePage-box-main-dots1{
    background: var(--white-color);
}

.service-section-work .box-containers .ServicePage-box:hover .ServicePage-box-main-dots2{
    background: var(--white-color);
}

.service-section-work .box-containers .ServicePage-box p{
    color: #737887;
    font-size: 1.6rem;
    margin-top: 1rem;
    position: relative; z-index: 111;
}

.ServicePage-box-main-dots1{
    width: 80px; height: 80px;
    border-radius: 50%;
    background: #0382c9;
    position: absolute;
    bottom: 0; right: -35px;
}

.ServicePage-box-main-dots2{
    width: 80px; height: 80px;
    border-radius: 50%;
    background: #0382c9;
    position: absolute;
    bottom: -38px; right: 0px;
    opacity: .2;
}

/*End menu section*/

/*Start about page design*/
.about-page-section{
    padding: 4rem 5%;
}

.about-page-section-img img{
    width: 100%;
}

.about-page-section-content h2 {
    color: #141D38;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    padding: 2.5rem 0;
}

.about-page-section-certificate-part{
    display: flex; align-items: center;
    gap: 2rem; padding: 3rem 0;
}

.about-page-section-certificate-part-flex{
    display: flex; align-items: center; gap: 1rem;
}

.about-page-section-certificate-part-flex img{
    width: 45px;
}

.about-page-section-certificate-part-flex-content h3{
    color: #141D38!important;
    font-size: 1.8rem; font-weight: 600;
    background-clip: unset; margin: 0;
    padding-bottom: .4rem;
}


.about-page-section-certificate-part-flex-content h6{
    color: #737887;
    font-size: 1.6rem;
    margin: 0; font-weight: 300;
}
/*End about page design*/

/*Start Contact Page Design*/
/*Start contact section*/
.contact-section{
    padding: 4rem 5%;
    min-height: 100vh;
    background-color: #f6f6ff;
}   
.contact-box-inner{
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 6px;
    margin: 1rem auto;
    border: 1px solid #c9c3c36b;
}

.contact-box-inner img{
    width: 50px;
}

.contact-box-inner .contact-box-icon-text{
    padding: 1rem 2rem;
}

.contact-box-icon-text h4{
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    color: #333;
    font-family: 'lato', sans-serif;
}

.contact-box-icon-text p{
    font-size: 1.4rem;
    color: gray;
    padding: .2rem 0;
}


.contact-section .contact-box{
    margin-top: 8rem;
}

/*Form*/

.contact-section form{
    background-color: #fff;
    padding: 4rem 3rem;
}

.contact-section .row form h2{
  font-size: 3rem;
  color: var(--black-color);
  font-weight: 700!important;
  padding: 1rem 0;
}

textarea{
    width: 100%;
    resize: none;
    background-color: transparent;
    padding: 1.4rem;
    border-radius: 3px;
    border: 1px solid #c9c3c36b;
    outline: none;
    color: #444444;
    font-size: 1.2rem;
    margin: 1.3rem auto;
}

.submit-btn input{
    font-size: 1.4rem;
    color: #fff;
    background: var(--main-color);
    border-radius: 5px;
    padding: 1rem 2rem;
}

.contact-img{
    position: relative;
}

.contact-img .contact-img-text{
    background: #00a0b1c4;
    padding: 2rem;
    width: 300px;
    position: absolute;
    bottom: 15px;
    right: 0;
}

.contact-img img{
    width: 90%;
    margin: auto;
    display: block;
    height: auto;
}

/* ...........*/
.input-groups{
    position: relative;
    width: 100%;
    margin: 1rem auto;
}

.input-groups select{
    width: 100%;
    background-color: transparent;
    padding: 1.4rem;
    border-radius: 3px;
    border: 1px solid #c9c3c36b;
    outline: none;
    color: #444444!important;
    font-size: 1.2rem;
    height: 50px;
    transition: .5s all;
}

.input-groups input{
    width: 100%;
    background-color: transparent;
    padding: 1.4rem;
    border-radius: 3px;
    border: 1px solid #c9c3c36b;
    outline: none;
    color: #444444;
    font-size: 1.2rem;
    height: 50px;
    transition: .5s all;
}

.input-groups span{
    position: absolute;
    left: .3rem;
    top: .4rem;
    padding: 10px;
    font-size: 1.4rem;
    pointer-events: none;
    color: #999999;
}

textarea::placeholder{
    color: #999999;
}

.input-groups input:valid ~ span,
.input-groups input:focus ~ span{
    color: var(--main-color);
    font-size: 1.2rem;
    padding: 0 10px;
    background-color: #fff;
    transform: translateX(6px) translateY(-7px);
}

.input-groups input:focus{
    border: 1px solid #0382C9;
}

.contact-img-text p{
    font-size: 1.4rem;
    color: var(--white-color);
    padding: .5rem 0; font-weight: 300;
    margin: 0;
}

.contact-img-text-line{
    width: 100%;
    height: 1px;
    background: #ffffff54;
    margin: 1rem 0;
}

.contact-img-text h4{
    color: var(--white-color);
    margin: 0; padding: 1rem 0;
    font-size: 2rem; font-weight: 500;
}

.contact-img-text a{
    display: flex; align-items: center;
    gap: 1rem;
    color: var(--white-color);
    font-size: 1.4rem;
}

.contact-form-detail-box{
    background: var(--main-color);
    border-radius: 6px;
    padding: 2rem;
    height: 100%;
}

.contact-form-detail-box .contact-form-detail-box-heading{
    text-align: center;
}

.contact-form-detail-box .contact-form-detail-box-heading img{
    width: 80px; height: auto;
}

.contact-form-detail-box .contact-form-detail-box-heading h4{
    color: var(--white-color); font-size: 2rem;
    font-weight: 600; margin: 0; padding: 1rem;
}

.contact-form-detail-box-main{
    margin-top: 2rem;
}

.contact-form-detail-box-main a{
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    border-radius: 4px;
    height: 50px;
    margin-bottom: 1.5rem;
    text-transform: initial;
    background: #ffffff1f;
    font-size: 1.4rem;
    color: var(--white-color);
    letter-spacing: .4px;
}

.contact-form-detail-box-main i{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
    color: #0382C9;
    border-radius: 4px 0 0 4px;
    background: var(--white-color);
}
/*End contact section*/

/*Start project section*/
.project-section{
    padding: 4rem 5%;
}

.project-card{
    border-radius: 12px; margin-bottom: 1.6rem;
    box-shadow: 0px 10px 15px rgba(8, 14, 28, 0.06);
}

.project-card img{
    border-radius: 12px 12px 0 0;
    width: 100%;
}

.project-card-content{
    padding: 2rem;
}

.project-card-content .project-card-content-header{
    display: flex; align-items: center; justify-content: space-between;
}

.project-card-content .project-card-content-header h4{
    margin: 0; font-weight: 600; color: var(--dark-black-color);
    font-size: 2.8rem;
}

.project-card-content .project-card-content-header img{
    width: 60px; border-radius: 50%; padding: .7rem; border: 1px solid var(--light-gray);
}

.project-card-content p{
    color: var(--gray-color);
    font-size: 1.4rem;
    border-top: .8px solid var(--light-gray);
    line-height: 1.6; font-weight: 300;
    margin: 0; padding: 1.5rem 0;
    margin-top: 1.5rem;
}

.project-section .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    font-size: 1.8rem;
    background-color: transparent;
    color: var(--dark-black-color);
    font-weight: 600; background: linear-gradient(45deg, #fff, #e8fcff);
    border: 1px solid #d0efff;
}

.project-section .nav-pills{
    column-gap: 2rem; row-gap: 1rem;
    flex-wrap: nowrap; overflow-x: auto;
}

.project-section .nav-pills .nav-link {
    font-size: 1.8rem;
    background-color: transparent;
    color: var(--dark-black-color);
    font-weight: 600;
    border: 1px solid rgba(0, 2, 41, 0.08);
    border-radius: 14px;
    height: 75px;
    display: flex;
    margin: 10px 0;
    align-items: center; gap: 1.5rem;
    padding: 0 1.5rem; white-space: nowrap;
}

.nav-pills .nav-link img{
    width: 50px;
}

.appTechno-box-img{
    width: 80px; height: 80px;
    background: orangered;
    display: flex; align-items: center; justify-content: center;
    border-radius: 71% 29% 43% 57% / 30% 30% 70% 70% ; margin: auto;  border-radius: 50%;
}

.appTechno-box{
    padding: 2rem;
    box-shadow: 0px 10px 15px rgba(8, 14, 28, 0.06);
    border-radius: 12px; text-align: center; margin-bottom: 1.5rem;
}

.appTechno-box-img img{
    width: 36px;
}

.appTechno-box h4{
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-black-color);
    padding: 1.4rem 0;
}
/*End project section*/

/*Start blog page */
.blog-section{
    padding: 4rem 5%;
}

.blog-card{
    box-shadow: 0px 6px 15px rgba(8, 14, 28, 0.06);
    border-radius: 6px; margin-bottom: 3rem;
}

.blog-card img{
    width: 100%;
    border-radius: 6px 6px 0 0;
}

.blog-card-content{
    padding: 2.5rem 1.5rem;
}

.blog-card-content .blog-head-timing-flex{
    display: flex; align-items: center; gap: 2.5rem;
}

.blog-card-content .blog-head-timing-flex a{
    display: flex; align-items: center;
    gap: .7rem; font-size: 1.4rem;
    color: #737887; font-weight: 400;
}

.blog-card-content .blog-head-timing-flex a ion-icon{
    color: #0382c9;
}

.blog-card-content h4{
    font-size: 3rem;
    font-weight: 500;
    color: var(--dark-black-color);
    margin: 0; padding: 1.5rem 0;
}

.blog-card-content p{
    font-size: 1.6rem; letter-spacing: .3px;
    color: var(--gray-color);
    margin: 0; line-height: 1.6;
    padding-bottom: 1.5rem; font-weight: 300;
}

.blog-searchbar{
    padding: 35px 20px;
    border-radius: 4px;
    background: #f2f6ff;
    margin-bottom: 2rem;
}

.blog-searchbar .blog-searchbar-inputBox{
    display: flex; align-items: center;
}

.blog-searchbar-inputBox input{
    width: 100%;
    max-width: 100%;
    border: 1px solid rgb(214 223 243);
    background: var(--white-color);
    font-size: 1.4rem; height: 45px; line-height: 45px;
    padding: 1.5rem;
}

.blog-searchbar-inputBox label{
    background: var(--main-color);
    width: 55px; height: 45px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem; color: var(--white-color);
    cursor: pointer;
}

.blog-category-box{
    padding: 35px 20px;
    border-radius: 4px;
    background: #f2f6ff;
    margin-bottom: 2rem;
}

.blog-category-box h4{
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0; padding-bottom: 1.5rem;
}

.blog-category-box a{
    display: flex; align-items: center; justify-content: space-between;
    background-color: var(--white-color);
    margin: 0 0 10px 0;
    padding: 1.5rem;
    height: 55px;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.313;
    color: var(--gray-color);
    border-radius: 4px;
}

.blog-category-box a ion-icon{
    color: #0382C9;
}

.blog-category-box a:hover{
    background: var(--main-color);
    color: var(--white-color);
}

.blog-category-box a:hover ion-icon{
    color: var(--white-color);
}

.blog-recent-post-box{
    padding: 35px 20px;
    border-radius: 4px;
    background: #f2f6ff;
}

.blog-recent-post-box h4{
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0; padding-bottom: 1.5rem;
}

.blog-recent-post-box-card{
    display: flex!important; align-items: start;
    gap: 1.5rem; margin-bottom: 2.5rem;
}

.blog-recent-post-box-card a{
    display: block!important;
}

.blog-recent-post-box-card img{
    width: 80px; max-width: 100%;
    border-radius: 4px;
}

.blog-recent-post-box-card h6{
    font-size: 1.4rem;
    color: var(--dark-black-color);
    line-height: 1.5;
    margin: 0; padding-bottom: .4rem;
}

.blog-recent-post-box-card a{
    font-size: 1.3rem;
    color: var(--gray-color);
    display: flex; align-items: center; gap: .4rem;
}

.blog-recent-post-box-card a ion-icon{
    font-size: 1.4rem;
    color: #0382C9;
}

.blog-card-img-part-img{
    padding: 2rem 0;
}

.blog-card-img-part-img img{
    width: 100%; border-radius: 6px;
}
/*End blog page */

/*Media quaries*/
@media screen and (max-width: 991px){
html{
    font-size: 55%;
}

.header .menu-overlay.active{
    visibility: visible;
    opacity: 1;
}

.header .nav-menu{
    position: fixed;
    right: -280px;
    visibility: hidden;
    width: 280px;
    height: 100%;
    top:0;
    overflow-y: auto;
    background-color: var(--white-color);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.5s ease;
}
.header .nav-menu.open{
    visibility: visible;
    right: 0px;
}
.header .menu > .menu-item{
    display: block;
    margin:0;
}
.header .menu > .menu-item-has-children > a{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .menu > .menu-item > a{
    color: var(--black-color);
    padding: 12px 15px;
    border-bottom: 1px solid var(--light-gray);
}
.header .menu > .menu-item:first-child > a{
    border-top: 1px solid #333333;  
}
.header .menu > .menu-item > a .fa-angle-down:before, 
.header .menu > .menu-item > a .fa-angle-down:after{
    background-color: #ffffff;
}
.header .menu > .menu-item-has-children.active > a .fa-angle-down:after{
    transform: translate(-50%,-50%) rotate(0deg);
}
.header .menu > .menu-item > .sub-menu{
    width: 100%;
    position: relative;
    opacity: 1;
    visibility: visible;
    border:none;
    background-color: transparent;
    box-shadow: none;
    transform: translateY(0px);
    padding: 0px;
    left: auto;
    top:auto;
    max-height: 0;
    overflow: hidden;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a{
    padding: 12px 45px;
    font-size: 1.6rem;
    color: var(--black-color);
    border-bottom: 1px solid #333333;
}
.header .close-nav-menu,
.header .open-nav-menu{
    display: flex;
}

.header .search-form{
    width: 90%;
    right: 2rem;
}


}

@media screen and (max-width: 991px){ 
    .review-box{
        flex-direction: column;
    }

    .review-box img{
        width: 90px;
    }
}

@media screen and (max-width: 768px){
    .none{
        display: none;
    }

    .header .logo img{
        height: 55px;
    }

    .header-main{
        height: 55px;
    }

    .header .open-nav-menu{
        height: 40px; width: 40px;
    }

    .header .open-nav-menu span {
        height: 2px;
        width: 22px;
    }

    .home-section .row{
        margin-top: 4rem;
    }

    .escrow-box{
        min-height: auto;
    }
}

@media screen and (max-width: 650px){ 
    .home-content h1{
        font-size: 5rem;
    }

    .about-content{
        margin-top: 4rem;
    }

    .client-box img{
        width: 80px;
        margin-top: 1rem;
    }

    .technology-section-heading{
        flex-wrap: wrap;
        gap: 1.4rem;
    }

    .Readmore{
        height: 42px;
    }

    .about-page-section-certificate-part{
        flex-wrap: wrap;
        gap: 2rem;
    }

    .about-page-section-certificate-part-flex img{
        width: 40px;
    }

    .about-section-shape{
        display: none;
    }

    .about-img img{
        width: 100%;
        margin-top: 2rem;
    }

    .nav-pills .nav-link img {
        width: 35px;
    }

    .project-section .nav-pills .nav-link.active, .nav-pills .show>.nav-link{
        font-size: 1.6rem;
    }

    .project-section .nav-pills .nav-link{
        height: 60px;
    }

    .appTechno-box-img{
        width: 60px; height: 60px;
    }

    .appTechno-box-img img{
        width: 24px;
    }
}

@media screen and (max-width: 450px){
html{
    font-size: 50%;
}

}

