@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

@import url('https://cdnjs.cloudflare.com/ajax/libs/material-design-iconic-font/2.2.0/css/material-design-iconic-font.min.css');

@font-face {
    font-family: 'GothamBlack';
    src: url('../fonts/GothamBlack.eot');
    src: url('../fonts/GothamBlack.eot') format('embedded-opentype'),
         url('../fonts/GothamBlack.woff2') format('woff2'),
         url('../fonts/GothamBlack.woff') format('woff'),
         url('../fonts/GothamBlack.ttf') format('truetype'),
         url('../fonts/GothamBlack.svg#GothamBlack') format('svg');
}

@font-face {
    font-family: 'GothamMedium';
    src: url('../fonts/GothamMedium.eot');
    src: url('../fonts/GothamMedium.eot') format('embedded-opentype'),
         url('../fonts/GothamMedium.woff2') format('woff2'),
         url('../fonts/GothamMedium.woff') format('woff'),
         url('../fonts/GothamMedium.ttf') format('truetype'),
         url('../fonts/GothamMedium.svg#GothamMedium') format('svg');
}

@font-face {
    font-family: 'GothamBook';
    src: url('../fonts/GothamBook.eot');
    src: url('../fonts/GothamBook.eot') format('embedded-opentype'),
         url('../fonts/GothamBook.woff2') format('woff2'),
         url('../fonts/GothamBook.woff') format('woff'),
         url('../fonts/GothamBook.ttf') format('truetype'),
         url('../fonts/GothamBook.svg#GothamBook') format('svg');
}

* {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-decoration: none;
    outline: none;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    position: relative;
    font-family: 'GothamBook';
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-family: 'GothamMedium';
}

p {
    font-size: 16px;
    font-weight: 400;
    padding: 0;
    margin: 0;
    font-family: 'GothamBook';
    color: #000000;
}

img {
    max-width: 100%;
    border: none;
    object-fit: cover;
}

figure {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    transition: none;
    outline: none !important;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

ul li {
    padding: 0;
    margin: 0;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.card, .card-header, .card-body, .card-footer {
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
}

.p-80 {
    padding: 80px 0;
}

.btn {
    padding: 10px 16px;
    border-radius: 10px !important;
    outline: none;
    border: 1px solid;
}

.btn-primary {
    border-color: #6CA6DA;
    background-color: #6CA6DA;
    color: #ffffff;
    box-shadow: 0 0 10px 2px rgb(255 212 34 / 15%);
}

.btn-primary:hover, .btn-primary:focus {
    border-color: #1C3353;
    background-color: #1C3353;
    color: #ffffff;
    box-shadow: none;
}

.btn-secondary {
    border-color: #1C3353;
    background-color: #1C3353;
    color: #ffffff;
    box-shadow: 0 0 10px 2px rgb(255 212 34 / 15%);
}

.btn-secondary:hover, .btn-secondary:focus {
    border-color: #6CA6DA;
    background-color: #6CA6DA;
    color: #ffffff;
    box-shadow: none;
}

.btn-outline-primary {
    border-color: #1C3353;
    color: #1C3353;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: #1C3353;
    border-color: #1C3353;
    color: #ffffff;
}
/*menu CSS
--------------------------------------------------------------------------------------------------*/
.menu {
    margin-right: 32px;
}

.menu ul {
    margin: 0;
    padding: 0;
    font-size: 0;
}

.menu ul li {
    display: inline-block;
    padding: 0;
    list-style-type: none;
    position: relative;
    vertical-align: middle;
    margin-right: 45px;
}

.menu ul li.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/line.png);
    transform: translateY(-10px);
}

.menu ul li ul li {
    margin-right: 0;
}

.menu ul li span {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 10px;
}

.menu ul li span::after {
    content: '\f107';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-family: FontAwesome;
    font-size: 12px;
    color: #ffffff;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu ul li:hover span::after {
    color: #fcab1f;
}

.menu ul li:last-child {
    margin-right: 0;
}

.menu ul li a {
    color: #000000;
    font-size: 17px;
    text-transform: capitalize;
    display: block;
    padding: 40px 0px;
    position: relative;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.menu ul li a::after {
    content: '';
}

.menu ul li a:hover, .menu ul li.active a {
    color: #1C3353;
}

.menu ul li.active a {
    font-family: 'GothamMedium';
}

.headarea.innerheader .menu ul li a:after {
    background: #000;
}

.menu ul li a span {
    display: inline-block;
    vertical-align: 0px;
    margin-left: 6px;
    font-size: 10px;
}

.menu ul li.active a:after {
    width: 100%;
}

.menu ul li:hover ul li a:hover {
    color: #fff;
    background-color: #000000;
}

.menu ul li ul {
    width: 240px;
    position: absolute;
    top: calc(100% + 30px);
    left: 0;
    z-index: 2;
    background-color: #fcab1f;
    text-align: left;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 15px rgb(0 0 0 / 3%);
}

.menu ul ul li:first-child:before {
    display: none;
}

.menu ul ul li:after {
    display: none;
}

.menu ul li:last-child ul {
    width: 220px;
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    z-index: 2;
    background-color: #ffffff;
    box-shadow: 0px 5px 14px rgb(0 0 0 / 2%);
    text-align: left;
}

.menu ul li ul li a {
    font-size: 14px;
    text-transform: none;
    padding: 12px 15px;
    color: #000;
    line-height: 20px;
    font-weight: 500;
    transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -khtml-transition: all ease-in-out 0.5s;
    display: block;
    margin: 0;
}

.menu ul li ul li ul {
    top: 10px;
    left: 149px;
}

.menu ul li ul li span {
    right: 7px;
    top: 12px;
}

.menu ul li a:hover.menu ul li ul {
    display: block;
}

.menu ul li ul li {
    display: block;
    padding: 0;
    border-bottom: solid 1px rgb(255 255 255 / 7%);
    border-right: none;
}

.menu ul li ul li:last-child {
    border: none;
}

.menuButton {
    width: 40px;
    height: 35px;
    padding: 5px;
    float: right;
    display: none;
}

.menuButton span {
    width: 100%;
    height: 3px;
    background: #6ca6da;
    margin-bottom: 6px;
    float: left;
    transition: all 0.3s ease-in-out 0s;
}

.menuButton span:last-child {
    margin-bottom: 0;
}

@media (min-width:991.98px) {
    .menu ul {
        display: block!important;
    }

    .menu ul li:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
}

@media (max-width:991.98px) {
    .menuButton {
        display: block;
        margin-left: 15px;
        cursor: pointer;
    }

    .menu ul li span {
        background: url(../images/menu_arrow.png) center center no-repeat;
        cursor: pointer;
        width: 15px;
        height: 15px;
        position: absolute;
        right: 15px;
        top: 20px;
        z-index: 99;
    }

    .menu ul li:hover span {
        background: url(../images/menu_arrow_hover.png) center center no-repeat;
    }

    .arrow_change span:nth-child(2) {
        display: none;
    }

    .arrow_change span:first-child {
        position: relative;
        top: 9px;
        transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }

    .arrow_change span:last-child {
        position: relative;
        top: 1px;
        transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
    }

    .menuBar {
        padding: 15px 0;
    }

    .menu {
        padding: 5px 0;
    }

    .menu ul {
        display: none;
        background-color: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 99;
    }

    .menu ul li a {
        color: #071731;
        display: block;
        width: 100%;
        font-size: 14px;
    }

    .menu ul li ul {
        display: none;
        background-color: #e1e1e1;
        position: relative;
        top: 5px;
        left: 0;
        width: 100%;
        z-index: 1;
        padding: 0;
        visibility: initial;
        opacity: 1;
    }

    .menu ul li:last-child ul {
        display: none;
        background-color: #e1e1e1;
        position: relative;
        top: 5px;
        left: 0;
        width: 100%;
        z-index: 1;
    }

    .menu ul li {
        display: block;
        padding: 10px 15px 10px 15px;
        border-top: 1px solid #cccccc54;
        text-align: left;
        position: relative;
    }

    .menu ul li span {
        position: absolute;
        right: 30px;
        z-index: 99;
        cursor: pointer;
        top: 12px;
        text-align: center;
    }

    .menu ul li ul li ul {
        top: 0;
        left: 0;
    }

    .menu ul li ul li a {
        font-size: 12px;
        text-transform: none;
        background-color: #e1e1e1;
        padding: 8px 12px;
        color: #000;
    }
}
/*-- header area start --*/
.header-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding-top: 8px;
}

.header-body {
    background-color: #ffffff;
    padding: 0 32px;
    border-radius: 12px;
}

.header-area .logo {
    width: 100%;
    max-width: 170px;
}

.header-area .logo img {
    width: 100%;
    object-fit: contain;
}

.header-area.fix {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0;
    background-color: #ffffff;
    transition: all 0.5s ease-out;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
/*-- banner area start --*/
.banner-area {
    height: 780px;
    position: relative;
    background-color: #1C3353;
    display: flex;
    align-items: end;
}

.banner-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(../images/bannerbgshape.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.06;
}

.banner-heading {
    padding-bottom: 0;
    text-align: center;
    width: 100%;
    max-width: 910px;
    margin: 0 auto;
}

.banner-heading h1 {
    color: #ffffff;
    font-size: 55px;
    line-height: 1.1;
    margin: 0 0 16px;
}

.banner-heading p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.5;
}

.banner-body-area img {
    object-fit: contain;
    height: 390px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.banner-body-area {
    position: relative;
}

.banner-body-area h2 {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 150px;
    line-height: 150px;
    font-family: 'GothamBlack';
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(-90px);
    background: #ffffff;
    background: -webkit-linear-gradient(180deg, rgb(255 255 255 / 68%) 0%, rgba(28, 51, 83, 0) 75%);
    background: -moz-linear-gradient(180deg, rgb(255 255 255 / 68%) 0%, rgba(28, 51, 83, 0) 75%);
    background: linear-gradient(180deg, rgb(255 255 255 / 68%) 0%, rgba(28, 51, 83, 0) 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/*-- banner area stop --*/
/*-- client area start --*/
.client-area {
    padding: 24px 0 0;
}

.client-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding-bottom: 20px;
}

.client-body-area {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
          /* MUST */
    width: max-content;
         /* MUST */
    will-change: transform;
}

.clent-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    margin-right: 0;
    flex: 0 0 auto;
}

.clent-box img {
    height: 38px;
    object-fit: contain;
}
/*-- client area stop --*/
/*-- whoareawe area start --*/
.whoareawe-area .whoareawe-imgBox {
    position: relative;
    padding: 16px;
}

.whoareawe-area .whoareawe-imgBox img {
    width: 100%;
    object-fit: cover;
    position: relative;
}

.whoareawe-area .whoareawe-imgBox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 370px;
    height: 100%;
    clip-path: polygon(0 0, 30% 0, 100% 100%, 0% 100%);
    background-color: #6CA6DA;
}
/*-- whoareawe area stop --*/
/*-- webtext start --*/
.WebText .tag {
    text-transform: uppercase;
    color: #1C3353;
    font-size: 18px;
    line-height: 1.2;
    margin: 0 0 10px;
}

.WebText h1, .WebText h2, .WebText h3 {
    color: #000000;
    font-size: 34px;
    line-height: 1.2;
    margin: 0 0 16px;
}
.WebText h5{
	color: #000000;
    font-size: 34px;
    line-height: 1.2;
    margin: 0 0 16px;
}
.WebText p {
    color: #000000;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.WebText ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.WebText ul li {
    font-size: 16px;
    font-family: 'GothamMedium';
    line-height: 1.5;
    color: #000000;
    margin: 0 0 16px;
    background-image: url(../images/check-icon.png);
    background-position: left;
    background-size: 4%;
    background-repeat: no-repeat;
    padding-left: 34px;
}

.WebText ul li:last-child {
    margin: 0;
}

.WebText.whoareawe-content {
    padding-left: 32px;
}

.WebText.whoareawe-content ul {
    margin-bottom: 32px;
}
/*-- webtext stop --*/
/*-- howWeWork area start --*/
.howWeWork-area .WebText {
    width: 100%;
    padding-right: 100px;
}

.howWeWorkBox {
    width: 100%;
    padding: 24px 32px;
    border-radius: 20px;
    background-color: #ffffff;
    box-shadow: 0 9px 20px rgb(0 0 0 / 10%);
    position: relative;
}

.howWeWorkBox h4 {
    color: #000000;
    font-size: 20px;
    line-height: 1.2;
    margin: 0 0 10px;
}

.howWeWorkBox p {
    color: #000000;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.howWeWorkBox .icon {
    position: relative;
    margin-bottom: 30px;
}

.howWeWorkBox .icon::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ADD3F5;
    background: -webkit-linear-gradient(170deg, rgba(173, 211, 245, 1) 0%, rgba(173, 211, 245, 0) 100%);
    background: -moz-linear-gradient(170deg, rgba(173, 211, 245, 1) 0%, rgba(173, 211, 245, 0) 100%);
    background: linear-gradient(170deg, rgba(173, 211, 245, 1) 0%, rgba(173, 211, 245, 0) 100%);
    transform: translate(-12px, 12px);
}

.howWeWorkBox .icon img {
    width: auto;
    height: 50px;
    object-fit: contain;
    position: relative;
}

.howWeWork-list-box {
    position: relative;
}

.howWeWork-list-box:last-child::before {
    content: '';
    position: absolute;
    background-image: url(../images/howWeWork-shape.png);
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    transform: translateX(-65px);
}

.howWeWork-list-box .WebText .btn {
    margin-top: 20px;
}

.howWeWork-area .howWeWorkBoxListBox:first-child {
    padding-top: 24px;
}

.howWeWork-area .howWeWorkBoxListBox:last-child {
    padding-top: 0;
    margin-top: -5px;
}
/*-- howWeWork area stop --*/
/*-- service area start --*/
.service-area .WebText {
    width: 100%;
    max-width: 715px;
    margin: 0 auto 40px;
    text-align: center;
}

.service-card .img-box {
    overflow: hidden;
    display: flex;
    border-radius: 20px;
    position: relative;
}

.service-card .img-box img {
    width: 100%;
    object-fit: cover;
}

.service-card .service-box-body {
    padding: 20px 16px 0;
}

.service-card .service-box-body h4 {
    color: #000000;
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 10px;
}

.service-card .service-box-body p {
    color: #000000;
    font-size: 16px;
    line-height: 1.5;
}

.service-card .img-box .learn-text {
    background-color: #1C3353;
    position: absolute;
    bottom: 0;
    left: 0;
    color: #ffffff;
    padding: 10px 55px 10px 15px;
    transform: translate(25px, -20px);
    border-radius: 10px;
    background-image: url(../images/arrow-right.png);
    background-repeat: no-repeat;
    background-position: 90% 18px;
    background-size: 15%;
    transition: all 0.5s ease-out;
}

.service-card:hover .img-box .learn-text {
    opacity: 0;
}

.service-card .img-box .icon {
    width: 100%;
    max-width: 112px;
    height: 112px;
    border-radius: 50%;
    background-color: rgb(255 255 255 / 87%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 30px;
    box-shadow: 0 0 0 10px rgb(255 255 255 / 20%);
    transform: translateY(145%);
    opacity: 0;
    transition: all 0.5s ease-out;
}

.service-card:hover .img-box .icon {
    opacity: 1;
}

.service-card .img-box .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-area .owl-dots {
    display: flex;
    flex-wrap: wrap;
}

.service-area .owl-dots .owl-dot {
    width: 100%;
    max-width: 28%;
    height: 1.5px;
    background-color: #D9D9D9;
    border: none;
    transition: all 0.5s ease-out;
}

.service-area .owl-dots .owl-dot.active {
    background-color: #1C3353;
}

.service-carousel {
    position: relative;
    padding-bottom: 50px;
}

.service-carousel .owl-nav {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0;
    transform: translate(-30px, 30px);
}

.service-carousel .owl-nav .owl-prev span, .service-carousel .owl-nav .owl-next span {
    display: none;
}

.service-carousel .owl-nav .owl-prev, .service-carousel .owl-nav .owl-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid #000000 !important;
    position: relative;
    transition: all 0.5s ease-out;
}

.service-carousel .owl-nav .owl-prev:hover, .service-carousel .owl-nav .owl-next:hover {
    border-color: #6CA6DA !important;
    background-color: #6CA6DA;
}

.service-carousel .owl-nav .owl-prev::before, .service-carousel .owl-nav .owl-next::before {
    content: "\f060";
    position: absolute;
    inset: 0;
    color: #000000;
    transition: all 0.5s ease-out;
    font-size: 18px;
    font-family: FontAwesome;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-carousel .owl-nav .owl-next::before {
    content: "\f061";
}

.service-carousel .owl-nav .owl-prev:hover::before, .service-carousel .owl-nav .owl-next:hover::before {
    color: #ffffff;
}
/*-- service area stop --*/
/*-- whychooseus area start --*/
.whychooseus-area {
    background: #ADD3F5;
    background: -webkit-linear-gradient(160deg, rgba(173, 211, 245, 1) 0%, rgba(255, 255, 255, 1) 100%);
    background: -moz-linear-gradient(160deg, rgba(173, 211, 245, 1) 0%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(160deg, rgba(173, 211, 245, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.whychooseus-area .WebText {
    width: 100%;
    max-width: 620px;
    margin-bottom: 40px;
}

.whychooseus-area .whychooseus {
    height: 619px;
    position: relative;
}

.whychooseus-area .whychooseus img {
    width: 100%;
    object-fit: cover;
}

.whychooseus-area .whychooseus .link {
    width: 100%;
    max-width: 216px;
    font-size: 36px;
    display: inline-block;
    text-decoration: underline;
    color: #000000;
    line-height: 1.5;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(-80px, -30px);
}

.whychooseus-area .whychooseus .link span {
    position: relative;
    display: block;
}

.whychooseus-area .whychooseus .link span::before {
    content: "\f061";
    position: absolute;
    bottom: 0;
    right: 0;
    font-family: FontAwesome;
    font-size: 25px;
    transform: translate(35px, -10px) rotate(-45deg);
}

.whychooseus-area .whychooseus .link:hover {
    color: #6CA6DA;
}

.whychooseus-cardbox {
    padding: 25px;
    border-radius: 20px;
    background-color: #ffffff;
    margin-bottom: 20px;
}

.whychooseus-cardbox .icon {
    width: 100%;
    max-width: 52px;
    height: 61px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/why-choose-us-icon-shape.png);
    padding: 6px 14px 14px;
    margin-bottom: 12px;
}

.whychooseus-cardbox .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.whychooseus-cardbox h4 {
    color: #000000;
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.whychooseus-cardbox p {
    font-size: 15px;
    line-height: 1.5;
}
/*-- whychooseus area stop --*/
/*-- industriestype area start --*/
.industriestype-area {
    position: relative;
}

.industriestype-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 1120px;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    background-image: url(../images/transparent-map.png);
    transform: translateY(35px);
}

.industriestype-area .container {
    position: relative;
}

.industriestype-area .WebText {
    text-align: center;
    margin-bottom: 45px;
}

.industriestype-cardBox {
    position: relative;
}

.industriestype-cardBox .icon {
    width: 100%;
    max-width: 110px;
    height: 110px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgb(0 0 0 / 12%);
    background-color: #ffffff;
    padding: 30px;
    border-radius: 50%;
    transition: all 0.5s ease-out;
    margin: 0 auto 30px;
    position: relative;
}

.industriestype-cardBox .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.industriestype-cardBox h5 {
    color: #000000;
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 16px;
}

.industriestype-cardBox p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.industriestype-cardBox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    border-top: 1px dashed #999898;
    transform: translateY(65px);
}

.industriestype-cardBox:hover .icon {
    background-color: #1C3353;
}

.industriestype-cardBox:hover .icon img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(182deg) brightness(104%) contrast(101%);
}
/*-- industriestype area stop --*/
/*-- testimonial area start --*/
.testimonial-area .WebText {
    text-align: center;
    width: 100%;
    max-width: 705px;
    margin: 0 auto 45px;
}

.testimonial-box {
    background-color: #F7F8F3;
    border: 1px solid #E2D7D7;
    padding: 25px;
    border-radius: 20px;
    width: 100%;
    max-width: 575px;
    position: relative;
    overflow: hidden;
    margin-right: 16px;
    margin-bottom: 16px;
}

.testimonial-box p {
    color: #000000;
    font-size: 20px;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-box h6 {
    color: #000000;
    font-size: 16px;
    line-height: 1.2;
}

.testimonial-box .media-admin {
    margin-bottom: 25px;
}

.testimonial-box .media-admin .media-icon {
    overflow: hidden;
    width: 66px;
    height: 66px;
}

.testimonial-box .media-admin .media-icon img {
    width: 100%;
    object-fit: cover;
}

.testimonial-box .media-admin .media-body {
    padding-left: 16px;
}

.testimonial-box .media-admin .media-body h4 {
    font-size: 22px;
    color: #000000;
    line-height: 1.2;
    margin: 0 0 8px;
}

.testimonial-box .media-admin .media-body .star {
    color: #000000;
    font-size: 12px;
}

.testimonial-box .img {
    position: absolute;
    inset: 0;
    transition: all 0.5s ease-out;
    opacity: 0;
}

.testimonial-box:hover .img {
    opacity: 0;
}
/*-- testimonial area stop --*/
/*-- requestaquote area start --*/
.requestaquote-area {
    padding: 90px 0 40px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/requestaquote-img1.jpg);
}

.requestaquote {
    padding: 35px;
    background-color: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    position: relative;
}

.requestaquote h4 {
    color: #000000;
    font-size: 36px;
    line-height: 1.2;
    margin: 0 0 24px;
}

.requestaquote .form-control {
    padding: 0;
    height: 55px;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #8F8D8D;
    color: #000000;
    font-size: 17px;
}

.requestaquote .form-control:focus {
    box-shadow: none;
}

.requestaquote .form-control::placeholder {
    color: #000000;
    font-size: 17px;
}

.requestaquote .form-group {
    position: relative;
    margin: 0 0 20px;
}

.requestaquote .form-group img {
    position: absolute;
    top: 0;
    right: 0;
    height: 20px;
    object-fit: contain;
    transform: translateY(17px);
}

.requestaquote textarea.form-control {
    height: 100px;
    resize: none;
}

.requestaquote .box {
    background-color: #fdfdfd;
  width: 100%;
  max-width: 160px;
  height: 160px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  box-shadow: 0 0 0 15px rgb(255 255 255 / 50%);
  transform: translate(40px, -45px);
  text-align: center;
  padding: 5px;
  display: flex;
  align-items: center;
}

.requestaquote .box span {
    color: #000000;
    font-size: 14px;
}

.requestaquote .box h6 {
    color: #1C3353;
    font-size: 22px;
    line-height: 20px;
    margin: 0 0 0;
    padding: 5px 0;
}

.requestaquote .box a {
    color: #000000;
    font-size: 14px;
    font-family: 'GothamMedium';
    line-height: 1.2;
}

.requestaquote .box a:hover {
    color: #6CA6DA;
}
/*-- requestaquote area stop --*/
/*-- footer area start --*/
.footer-logo {
    width: 100%;
    max-width: 188px;
    margin: 0 auto 30px;
}

.footer-logo img {
    width: 100%;
    object-fit: cover;
}

.footer-body {
    padding: 60px 0;
}

.footer-social ul li {
    display: inline-block;
    margin-right: 2px;
}

.footer-social ul li:last-child {
    margin-right: 0;
}

.footer-social ul li a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000000;
    color: #000000;
    margin-right: 5px;
    font-size: 20px;
    font-weight: normal;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: border-color 0.4s ease;
}

.footer-social ul li a::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #000000;
    border-radius: 6px;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.footer-social ul li a:hover::before {
    transform: scale(1);
}

.footer-social ul li a:hover {
    border-color: transparent;
    color: #ffffff;
}

.footer-social ul {
    display: flex;
    justify-content: center;
}

.footer h6 {
    color: #000000;
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 15px;
}

.footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer ul li {
    position: relative;
    background-size: 3%;
    background-repeat: no-repeat;
    background-position: left;
    background-image: url(../images/arrow.png);
    padding-left: 13px;
    margin: 0 0 15px;
}

.footer ul li:last-child {
    margin: 0;
}

.footer ul li a {
    color: #000000;
    font-size: 17px;
}

.footer .footer-address {
    margin-bottom: 16px;
}

.footer .footer-address h5 {
    color: #1C3353;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 5px;
}

.footer .footer-address a {
    color: #000000;
    font-size: 17px;
    word-break: break-all;
}

.copyright {
    padding: 16px 0;
    text-align: center;
    background-color: #1C3353;
}

.copyright p {
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
}
/*-- footer area stop --*/
/*-- innerFeatures area start --*/
.innerFeatures-area .WebText {
    width: 100%;
    max-width: 715px;
    margin: 0 auto 110px;
    text-align: center;
}

.innerFeaturesBox {
    background-color: #ffffff;
    border: 10px solid #ffffff;
    padding: 75px 16px 30px;
    position: relative;
    border-top: 0;
    transition: all 0.5s ease-out;
}

.innerFeaturesBox:hover {
    background-color: #EDF5FD;
}

.innerFeaturesBox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 22%;
    height: 1px;
    background-color: #000000;
    transform: translate(-8px, -8px);
}

.innerFeaturesBox::after {
    content: '';
    position: absolute;
    border-left: 1px solid #000000;
    border-bottom: 1px solid #000000;
    left: 0;
    bottom: 0;
    transform: translate(-9px, 10px);
    width: 104%;
    height: 106%;
}

.innerFeaturesBox span {
    color: #6CA6DA;
    font-size: 30px;
    line-height: 1.5;
    display: block;
    margin-bottom: 12px;
    transition: all 0.5s ease-out;
}

.innerFeaturesBox:hover span {
    color: #1C3353;
}

.innerFeaturesBox h4 {
    color: #000000;
    font-size: 22px;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.innerFeaturesBox h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 65px;
    height: 2px;
    background-color: #6CA6DA;
    transition: all 0.5s ease-out;
}

.innerFeaturesBox:hover h4::after {
    background-color: #1C3353;
}

.innerFeaturesBox p {
    color: #000000;
    font-size: 14px;
    line-height: 1.5;
}

.innerFeaturesBox .icon {
    width: 100%;
    max-width: 106px;
    height: 106px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #6CA6DA;
    padding: 25px;
    border: 2px solid #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(50px, -60px);
    transition: all 0.5s ease-out;
}

.innerFeaturesBox:hover .icon {
    background-color: #1C3353;
}

.innerFeaturesBox .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*-- innerFeatures area stop --*/
/* ======================================================================= */
    /*  services_ban start */
/* ======================================================================= */
.services_ban {
    width: 100%;
    max-width: 1920px;
    height: 450px;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.services_ban:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000059;
}

.services_ban .banner-heading {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    font-size: 18px;
}

.breadcrumb a {
    color: #fff;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.services_ban .banner-heading h1 {
    margin: 85px 0 10px;
}

/* ======================================================================= */
    /*  we_provide start */
/* ======================================================================= */
.we_provide {
    width: 100%;
    padding-bottom: 240px;
}

.we_provide_right {
    width: 90%;
    margin-left: auto;
    position: relative;
}

.image-layout {
    position: relative;
    width: 100%;
    margin-left: auto;
}

.card {
    position: absolute;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-large {
    width: 300px;
    height: 340px;
    top: 0;
    left: 7%;
}

.card-right {
    width: 300px;
    height: 300px;
    top: 120px;
    right: 0;
}

.card-small {
    width: 250px;
    height: 200px;
    bottom: -560px;
    left: 100px;
}

.service-card {
    margin-bottom: 15px;
}

/* ======================================================================= */
    /*  the_backbone start */
/* ======================================================================= */
.the_backbone {
    width: 100%;
}

.backbone_left {
    width: 100%;
}

.backbone_left .backbone-box {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.backbone_left .backbone-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.backbone_left .smallimg {
    height: 220px;
}

.backbone_left .bigimg {
    height: 420px;
}

.backbone_left .backbone-box:hover img {
    transform: scale(1.08);
}

.backbone_left .backbone-box {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.backbone_left .gap-4 {
    gap: 1.2rem!important;
}

.backbone_left .WebText {
    margin-top: 35px;
}

.bluebox {
    width: 100%;
    background-color: #6CA6DA;
    padding: 15px;
    border-radius: 15px;
    margin: 35px 0;
}

.bluebox_pic {
    height: 350px;
    position: relative;
    display: flex;
    border-radius: 15px;
    overflow: hidden;
}

.bluebox_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.bluebox h4 {
    color: #fff;
    font-size: 34px;
    margin-bottom: 15px;
}

.bluebox p {
    color: #fff;
}

.accordion { margin-left: auto; width: 100%; margin-top: 35px;}
.accordion-item { border: none; margin: 0 0 15px; background-color: transparent; }
.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed { border-bottom-right-radius: 0; border-bottom-left-radius: 0; }
.accordion-item:first-of-type>.accordion-header .accordion-button { border-top-left-radius: 0; border-top-right-radius: 0; }
.accordion-item:first-of-type { border-top-left-radius: 0; border-top-right-radius: 0; }
.accordion-item:last-of-type { border-bottom-right-radius: 0; border-bottom-left-radius: 0; }
.accordion-button:not(.collapsed) { box-shadow: none; color: var(--black); background-color: transparent; }
.accordion-button {
    align-items: center;
    gap: 5px;
    padding: 15px;
    font-size: 19px;
    color: #000;
    font-weight: 500;
    box-shadow: 0px 0px 5px 0px #ddd;
}

.accordion-button span { color: #6CA6DA; margin-right: 5px; }
.accordion-body { padding: 0 15px 15px 15px; display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.accordion-body p { width: 100%; margin: 0 auto; padding: 10px; }
.accordion-button::after { background-color: #ececec; padding: 4px; border-radius: 50%; width: 30px; height: 30px; background-position: 8px 8px; background-size: 15px; }
.accordion-button:not(.collapsed)::after { background-color: #6CA6DA; }
.accordion-item { border-radius: 0px; overflow: hidden; border: 1px solid #C9C9C9 !important; border-radius: 12px; background-color: #fff; box-shadow: 0 9px 20px rgb(0 0 0 / 10%);}
.accordion-item:first-of-type { border-top-left-radius: 12px; border-top-right-radius: 12px; }
.accordion-item:last-of-type { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; }
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 8h12' stroke='%23000000' stroke-width='2'/%3E%3Cpath d='M8 2v12' stroke='%23000000' stroke-width='2'/%3E%3C/svg%3E");
    transform: none;
    background-size: 15px;
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 8h12' stroke='%23ffffff' stroke-width='2'/%3E%3C/svg%3E");
}

.backbone_right {
    width: 100%;
    position: sticky;
    top: 110px;
}

.categories_box {
    width: 100%;
    background-color: #fff;
    padding: 16px;
    border-radius: 15px;
    box-shadow: 0 9px 20px rgb(0 0 0 / 10%);
    margin-bottom: 16px;
}

.categories_box h5 {
    font-size: 22px;
    color: #000000;
    font-weight: 500;
    padding-left: 0px;
    margin-bottom: 8px;
    position: relative;
}

.categories_box h5::before {
    content: "";
    position: absolute;
    left: -15px;
    height: 100%;
    width: 3px;
    background-color: #6ca6da;
}

.categories_box_card {
    width: 100%;
    padding: 0px;
}

.categories_box_card ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.categories_box_card ul li {
    width: 100%;
}

.categories_box_card ul li a {
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #000;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 8px;
    margin-top: 10px;
    text-decoration: none;
    background-color: #F6F7F8;
    box-shadow: inset 0px 4px 4px 0 rgb(0 0 0 / 10%);
    transition: 0.3s;
}

.categories_box_card ul li a:hover {
    color: #fff;
    background-color: #6CA6DA;
    box-shadow: none;
}

.categories_box_card .fa-arrow-right {
    margin-right: 10px;
    font-size: 14px;
}

@media (min-width: 992px) {
    .services_details .col-lg-8 {
        flex: 0 0 auto;
        width: 73%;
    }

    .services_details .col-lg-4 {
        flex: 0 0 auto;
        width: 27%;
    }
}

.categories_box_card .active {
/*     background-color: #6CA6DA; */
    color: #fff;
}

.support_cardimg {
    width: 100%;
    border-radius: 15px;
    position: relative;
    height: 230px;
    display: flex;
    overflow: hidden;
}

.support_cardimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support_card {
    width: 85%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
}

.support_icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgb(255 255 255 / 87%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 10px rgb(255 255 255 / 20%);
    transition: all 0.5s ease-out;
}

.support_icon img {
    max-width: 22px;
    object-fit: contain;
}

.support_card h5 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.support_card h5 span {
    font-size: 17px;
    font-weight: 400;
}

.support_card h6 {
    font-size: 17px;
    color: #fff;
    font-weight: 400;
    margin: 25px 0 5px 0;
}

.support_card h6 a {
    color: #fff;
}

.support_card p {
    color: #fff;
}

/* ======================================================================= */
    /*  industries_sec start */
/* ======================================================================= */
.industries_sec {
    width: 100%;
}

.industries_gridBox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 75px;
    margin-bottom: 100px;
}

.industries_pic {
    height: 555px;
    flex-basis: 50%;
    flex-shrink: 0;
    display: flex;
    position: relative;
    border-radius: 31px;
    overflow: hidden;
    z-index: 1;
}

.industries_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industries_pic:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: top;
    background-image: url(../images/shape.jpg);
    mix-blend-mode: screen;
    border-radius: 25px;
}

.itemOrder .itemList:nth-of-type(2n) .industries_pic {
    order: 2;
}

.itemOrder .itemList:nth-of-type(2n) .WebText {
    order: 1;
}
/* ======================================================================= */
    /* contact_us start */
/* ======================================================================= */
.contact_us { width: 100%; background-color: var(--white); }

.contact_left { width: 100%; }
.contactbox {
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 1px 10px rgb(0 0 0 / 10%);
    background-color: #fff;
    position: relative;
    z-index: 1;
}
.contactleft { width: 98%; padding: 50px 30px 50px 60px; }
.contact_us p {  margin-bottom: 10px; }
.contactleft .form-group { margin-bottom: 15px; }
.contactleft .form-group label { margin-bottom: 5px; color: #000; font-weight: 500; font-size: 15px; }
.contactleft .form-control, .contactleft .form-select { font-size: 17px; font-weight: 400; height: 52px; border: 1px solid #ced4da; border-radius: 10px; padding: 5px 15px; }
.contactleft textarea.form-control { min-height: 130px; resize: none; padding: 15px !important; }
.contactleft .form-control:focus, .contactleft .form-select:focus { box-shadow: none; border-color: #1C3353; }
.contact_us .btn01 {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    border: 1px solid #1C3353;
    background-color: #1C3353;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: 0.6s;
    padding: 10px 15px;
    border-radius: 12px;
    transition: 0.6s;
}

.contact_us .btn01:hover {
    border-color: #6CA6DA;
    background-color: #6CA6DA;
}
/**/
.contactright { background-color: #1C3353; height: 100%; padding: 60px 40px; border-radius: 0 20px 20px 0; }
.contactright h4 {
    font-size: 32px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 25px;
}
.contactright p { margin-bottom: 25px; color: #000; }
.contactright .counter { border-bottom: 1px solid #6381aa; margin-bottom: 15px; padding: 15px; }
.contactright .counter img { max-width: 22px; filter: brightness(0) saturate(100%) invert(14%) sepia(23%) saturate(6589%) hue-rotate(214deg) brightness(99%) contrast(93%); }
.contactright .counter:last-child { border-bottom: none; }
.contactright .counter-img { width: 50px; height: 50px; background-color: #fff; border-radius: 50%; text-align: center; justify-content: center; margin-right: 15px; display: flex; align-items: center; font-size: 20px; color: #000; }
.contactright .counter-body h5 {
    font-size: 18px;
    color: #6CA6DA;
    font-weight: 400;
    margin-bottom: 5px;
}
.contactright .counter-body h6, .contactright .counter-body h6 a {font-family: 'GothamBook';  font-size: 18px; font-weight: 400; color: #fff; line-height: normal; }
.contact_btm { margin-top: 30px; padding-top: 20px; }
.contact_btm h5 { font-size: 18px; color: #fff; }

.contactright .footer-social {
    display: flex;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    margin-top: 25px;
}
.contactright .footer-social li { margin: 0px 4px; width: auto !important; }
.contactright .footer-social li a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    color: #fff;
    margin-right: 5px;
    font-size: 20px;
    font-weight: normal;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: border-color 0.4s ease;
}
/*.contactright .footer-social li a:before { display: none; }*/
.contactright .footer-social li a:hover { background-color: #6CA6DA; color: #fff !important; border-color: #6CA6DA; }
/**/
.map {
    width: 100%;
    margin-top: -150px;
}
.maparea iframe { width: 100%; height: 700px; border: none; line-height: 0; }
/* ======================================================================= */
    /*  team_sec start */
/* ======================================================================= */
.team-area {
    width: 100%;
}
.team-area .WebText {
    width: 50%;
    margin: 0 auto 40px;
}
.team-area .imgBoxx {
    overflow: hidden;
    height: 425px;
    border-radius: 50em;
    display: flex;
    margin-bottom: 16px;
    position: relative;
}
.team-area .imgBoxx img {
    width: 100%;
    object-fit: cover;
    transition: 0.6s;
}
.imgBoxx img:hover {
    transform: scale(1.1);
}
.team-area h6 {
    font-family: 'GothamMedium';
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--black);
    text-align: center;
}
.team-area .title3 {
    width: 65%;
    margin: 0 auto;
}
.team-area .small, .team-area small {
    font-size: 15px;
    text-align: center;
    display: block;
    margin-top: 5px;
}
./* ======================================================================= */
    /*  mission_sec start */
/* ======================================================================= */
.mission_sec {
    width: 100%;
}
.mission_sec_pic {
    width: 80%;
    margin-left: auto;
    height: 550px;
    position: relative;
    display: flex;
    overflow: hidden;
}
.mission_sec_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}
.progress-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 35px;
}
.progress-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.circle-svg {
    width: 130px;
    height: 130px;
}
.track {
    fill: none;
    stroke: #D9DDE6;
    stroke-width: 9;
    stroke-linecap: round;
}
.bar {
    fill: none;
    stroke: #1B3A6B;
    stroke-width: 9;
    stroke-linecap: round;
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    transform-origin: center;
    transform: rotate(-90deg);
}
.bar.animated {
    animation: fillArc 1.4s cubic-bezier(0.4,0,0.2,1) forwards;
}
.label-text {
    font-size: 13px;
    font-weight: 500;
    fill: #222;
    text-anchor: middle;
    dominant-baseline: middle;
}
@keyframes fillArc {
    from {
        stroke-dashoffset: 314;
    }

    to {
        stroke-dashoffset: var(--target-offset);
    }
}
./* ======================================================================= */
    /*  faqsec start */
/* ======================================================================= */
.faqsec {
    width: 100%;
}
.faqsec .WebText {
    width: 58%;
    margin: 0 auto 40px;
}
.faqsec .accordion {
    width: 85%;
    margin: 0 auto;
}
.footer-body .row div:nth-child(3) .footer ul li {
    background-size: 2%;
}
.star li{ display:inline-block;}
/*-- service details new css start --*/
.labourCard {
    position: relative;
    width: 100%;
    color: #000000;
    font-size: 20px;
    font-family: 'GothamMedium';
    line-height: 1.5;
    box-shadow: 0 4px 10px rgb(0 0 0 / 5%);
    border-radius: 20px;
    padding: 25px;
    padding-left: 67px;
    display: flex;
    align-items: center;
}
.labourCard::before {
    content: '\f00c';
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #6CA6DA;
    left: 0;
    top: 0;
    transform: translate(22px, 40px);
    font-size: 12px;
    font-family: FontAwesome;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.WebText.labourarea {
    margin-bottom: 60px;
}
.leading-business-area img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 35px;
}
.leading-business-area h4 {
    color: var(--black);
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 40px;
}
.leading-business-media .media-icon {
    width: 100%;
    max-width: 112px;
    height: 118px;
    border-radius: 20px;
    background-color: rgb(108 166 218 / 10%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
}
.leading-business-media .media-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 0;
    border-radius: 0;
}
.leading-business-media .media-body{
    padding-left: 20px;
}
.leading-business-media .media-body h4{
    color: var(--black);
    font-size: 26px;
    line-height: 1.2;
    margin: 0 0 8px;
}
.leading-business-media .media-body p{
    color: var(--black);
    font-size: 18px;
    line-height: 1.5;
    margin: 0 0 8px;
}
.leading-business-media .media-body p:last-child{
    margin: 0;
}
.leading-business-media{
    margin-bottom: 24px;
}
.leading-business-media:last-child{
    margin-bottom: 0;
}
.breadcrumb-item+.breadcrumb-item {
    color: #ffffff;
}
/*-- service details new css stop --*/