@charset "utf-8";

/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* font-family: "Poppins", serif; */

@font-face {
    font-family: 'CabinetGrotesk-Black';
    src: url('../fonts/CabinetGrotesk-Black.woff2') format('woff2'),
        url('../fonts/CabinetGrotesk-Black.woff') format('woff'),
        url('../fonts/CabinetGrotesk-Black.ttf') format('truetype');
    font-weight: 900;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'CabinetGrotesk-Bold';
    src: url('../fonts/CabinetGrotesk-Bold.woff2') format('woff2'),
        url('../fonts/CabinetGrotesk-Bold.woff') format('woff'),
        url('../fonts/CabinetGrotesk-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}

/* 	-----------------------------------------------------
    ------------------- General Styles ------------------
    ----------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #FFFFFF !important;
    font-family: "Poppins", serif;
    color: #63696D;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 100%;
    overflow-x: hidden;
}

a {
    outline: none;
    outline-style: none;
    outline-width: 0;
    color: #63696D;
    text-decoration: none !important;
}

a:hover,
a:active,
a:focus {
    outline: none;
    outline-style: none;
    outline-width: 0;
    color: #0089F8;
    text-decoration: none;
}

.clearfix:before,
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    overflow: hidden;
}

.clearfix:after {
    clear: both
}

.clearfix {
    zoom: 1
}

[contenteditable="true"]:focus {
    outline: none;
}

*:focus {
    outline: none;
}

img {
    margin: 0;
    padding: 0;
    outline-style: none;
    outline-width: 0;
    max-width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 1426px;
    padding: 0 30px;
}

@media only screen and (max-width:760px) {
    .container {
        padding: 0 20px;
    }

    .sub-heading {
        font-size: 16px;
    }
}

/* 	-----------------------------------------------------
    -------------------- Header Styles ------------------
    ----------------------------------------------------- */
.header-section {
    margin: 0;
    padding: 25px 0;
    width: 100%;
    background-color: #FFFFFF;
    border: 1px solid #EFEFEF;
    transition: all .4s ease-in-out;
}

.header-section.sticky {
    padding: 15px 0;
    width: 100%;
    background-color: #FFFFFF;
    position: fixed;
    top: 0;
    z-index: 999;
    transition: all .4s ease-in-out;
}

.header-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-section .container figure {
    margin: 0;
    padding: 0;
    height: 54px;
}

.header-section .container figure img,
.header-section .container figure a {
    margin: 0;
    padding: 0;
    height: 54px;
}

.header-section .container aside {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-section .container aside .menu {
    margin: 0;
    padding: 0;
}

.menu-bar {
    list-style: none;
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 9;
    width: 280px;
    height: 100%;
    background-color: #FFFFFF;
    opacity: 0;
    transition: 0.4s;
    padding: 20px;
}

.menu-bar.show {
    left: 0;
    opacity: 1;
    box-shadow: 0px 10px 25px -3px #00000026;
}

.menu-bar li {
    line-height: 1;
    margin-bottom: 15px;
}

.menu-bar li:last-child {
    margin-bottom: 0;
}

.menu-bar li a {
    font-family: "Poppins", serif;
    font-size: 18px;
    line-height: 50px;
    font-weight: 400;
    color: #7E8D99;
    display: block;
}

.menu-bar.show li a {
    color: #7E8D99;
}

.menu-bar.show li a.active {
    color: #0089F8;
    font-weight: 600;
}

.menu-bar.show li a svg path {
    fill: #7E8D99;
}

.dropDown-list {
    position: relative;
}

.dropDown-list a.active {
    color: #7E8D99;
}

.dropDown-list a span svg {
    width: 12px;
}

.dropDown-list a span svg path {
    transition: 0.4s;
}

.dropDown-list a.active span svg path {
    fill: #7E8D99;
}

.dropDown-list a.active span svg {
    transform: rotate(180deg);
}

.dropDown_menu {
    display: none;
    position: relative;
    box-shadow: 0px 4px 44px 0px #00000026;
    list-style: none;
}

.menu-bar.show .dropDown_menu {
    box-shadow: none;
    padding: 15px;
}

.dropDown_menu li {
    line-height: 1;
    margin-top: 15px;
    margin-bottom: 0;
}

.dropDown_menu li a {
    position: relative;
    font-size: 18px;
    line-height: 1;
    color: #7E8D99;
    padding: 5px 0;
    white-space: nowrap;
    display: block;
}

.toggle-btn {
    border: none;
    outline: none;
    background: transparent;
    width: 30px;
    height: 30px;
    font-size: 24px;
    padding: 0;
    color: #0089F8;
    position: absolute;
    right: 20px;
    top: 30px;
}

@media (min-width: 768px) {
    .menu-bar {
        width: 300px;
    }
}

@media (min-width: 1023px) {
    .toggle-btn {
        display: none;
    }

    .menu-bar {
        position: relative;
        top: unset;
        left: unset;
        width: unset;
        opacity: 1;
        background: transparent;
        display: flex;
        gap: 45px;
        padding: 0;
        list-style: none;
    }

    .menu-bar li {
        margin-bottom: 0;
    }

    .menu-bar li a:hover {
        color: #7E8D99;
    }

    .menu-bar li a.active {
        color: #0089F8;
        font-weight: 600;
    }

    .dropDown-list a.active {
        color: #7E8D99;
    }

    .dropDown-list a.active span svg path,
    .dropDown-list a:hover span svg path {
        fill: #7E8D99;
    }

    .dropDown_menu {
        list-style: none;
        position: absolute;
        top: 30px;
        left: 0;
        z-index: 999;
        min-width: 130px;
        background: #0089F8;
        border-radius: 3px;
        padding: 15px;
    }

    .dropDown_menu li {
        margin-top: 0;
        margin-bottom: 18px;
    }

    .dropDown_menu li a:hover {
        color: #7E8D99;
    }
}

@media only screen and (max-width:760px) {
    .menu-bar li a {
        line-height: 1 !important;
        padding: 15px 20px;
    }

    .header-section {
        padding: 15px 0;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .menu-bar li a {
        line-height: 1 !important;
        padding: 15px 20px;
    }

    .toggle-btn {
        right: 30px;
    }

    .header-section {
        padding: 15px 0;
    }
}

@media only screen and (min-width:1024px) and (max-width:1170px) {
    .menu-bar {
        gap: 25px;
    }
}

.menu-bar li.contact a {
    padding: 0 40px;
    background: #0089F8;
    border-radius: 54px;
    font-weight: 600;
    color: #FFFFFF;
    transition: .5s;
}

.menu-bar li.contact a:hover {
    box-shadow: inset 0 0 20px rgba(0, 37, 99, 0.5), 0 0 20px rgba(0, 37, 99, 0.2);
    outline-color: rgba(0, 37, 99, 0);
    outline-offset: 15px;
    transition: .5s;
}

@media only screen and (max-width:760px) {
    .menu-bar li.contact a {
        padding: 15px 20px;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .menu-bar li.contact a {
        padding: 15px 20px;
    }
}

/* 	-----------------------------------------------------
    -------------------- Banner Styles ------------------
    ----------------------------------------------------- */
.banner-section {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 50px 0;
}

.banner-section::before {
    content: "";
    width: 630px;
    height: 630px;
    background: linear-gradient(180deg, #EFF8FF 0%, rgba(239, 248, 255, 0) 100%);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.banner-section h6 {
    font-family: "Poppins", serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
    color: #000000;
    padding: 0;
}

.banner-section h1 {
    margin-top: 20px;
    font-family: 'CabinetGrotesk-Black' !important;
    font-weight: 900;
    font-size: 70px;
    line-height: 1.1;
    text-align: center;
    color: #0089F8;
    text-transform: uppercase;
}

.banner-section h1 span {
    font-size: 44px;
    color: #002563;
    display: block;
}

.banner-section figure {
    margin: -55px 0 0 0;
    padding: 0;
}

.banner-section .btn-group {
    margin-top: -180px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    height: 150px;
}

.banner-section .btn-group .btn-01,
.banner-section .btn-group .btn-02 {
    width: 100%;
}

@media only screen and (max-width:760px) {
    .banner-section {
        padding: 30px 0;
    }

    .banner-section::before {
        width: 330px;
        height: 330px;
    }

    .banner-section h6 {
        font-size: 16px;
    }

    .banner-section h1 {
        margin-top: 10px;
        font-size: 40px;
    }

    .banner-section h1 span {
        font-size: 24px;
    }

    .banner-section figure {
        margin: -40px 0 0 0;
        padding: 0;
    }

    .banner-section .btn-group {
        margin-top: -150px;
        height: 110px;
    }
}

/* 	-----------------------------------------------------
    ------------------- Content Styles ------------------
    ----------------------------------------------------- */
.content-section {
    min-height: 400px;
}

.content-section h1,
.content-section h2,
.content-section h3,
.content-section h4,
.content-section h5,
.content-section h6 {
    font-family: 'CabinetGrotesk-Black' !important;
    font-weight: 900;
    line-height: 1.2;
    color: #002563;
    padding: 10px 0;
}

.content-section h1 {
    font-size: 54px;
}

.content-section h2 {
    font-size: 40px;
}

.content-section h2 span {
    color: #0089F8;
}

.content-section h3 {
    font-size: 32px;
}

.content-section h4 {
    font-size: 26px;
}

.content-section h5 {
    font-size: 22px;
}

.content-section h6 {
    font-size: 18px;
}

.content-section p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #63696D;
    padding: 10px 0;
}

.content-section ul {
    margin: 0;
    padding: 0 0 0 15px;
    list-style: disc;
}

.content-section ul li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #63696D;
    margin: 5px 0;
}

.content-section ul ul {
    list-style: circle;
}

.content-section ol {
    margin: 0;
    padding: 0 0 0 18px;
    list-style: decimal;
}

.content-section ol li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #63696D;
    margin: 5px 0;
}

.content-section ol ol {
    list-style: lower-roman;
}

.btn-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.btn-01 a {
    display: inline-block;
    margin: 15px 0;
    padding: 15px 40px;
    width: auto;
    height: auto;
    background-color: #FFFFFF;
    border: 1px solid #7BC4FF;
    border-radius: 50px;
    font-family: "Poppins", serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #0089F8 !important;
    text-align: center;
    cursor: pointer;
    transition: .5s;
}

.btn-01 a:hover {
    box-shadow: inset 0 0 20px rgba(0, 137, 248, 0.5), 0 0 20px rgba(0, 137, 248, 0.2);
    outline-color: rgba(0, 37, 99, 0);
    outline-offset: 15px;
    transition: .5s;
}

.btn-02 a {
    display: inline-block;
    margin: 15px 0;
    padding: 15px 40px;
    width: auto;
    height: auto;
    background-color: #0089F8;
    border: none;
    border-radius: 50px;
    font-family: "Poppins", serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #FFFFFF !important;
    text-align: center;
    cursor: pointer;
    transition: .5s;
}

.btn-02 a:hover {
    box-shadow: inset 0 0 20px rgba(0, 37, 99, 0.5), 0 0 20px rgba(0, 37, 99, 0.2);
    outline-color: rgba(0, 37, 99, 0);
    outline-offset: 15px;
    transition: .5s;
}

@media only screen and (max-width:760px) {
    .content-section h1 {
        font-size: 30px;
    }

    .content-section h2 {
        font-size: 24px;
    }

    .content-section h3 {
        font-size: 22px;
    }

    .content-section h4 {
        font-size: 20px;
    }

    .content-section h5 {
        font-size: 18px;
    }

    .content-section h6 {
        font-size: 16px;
    }

    .content-section p {
        font-size: 14px;
    }

    .content-section ul li {
        font-size: 14px;
    }

    .content-section ol li {
        font-size: 14px;
    }

    .btn-01 a,
    .btn-02 a {
        margin: 5px 0;
        padding: 10px 20px;
        font-size: 16px;
    }
}

.sub-heading {
    font-family: "Poppins", serif !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 1.33em !important;
    color: #002563 !important;
    padding: 0 !important;
}

.welcome-section {
    padding: 50px 0 0 0;
    text-align: center;
}

.welcome-section h5 {
    font-family: "Poppins", serif !important;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0;
}

.welcome-section h5 span {
    color: #0089F8;
}

.welcome-section p {
    margin: 0 auto;
    max-width: 960px;
}

@media only screen and (max-width:760px) {
    .welcome-section {
        padding: 30px 0 0 0;
    }
}

.recent-works-section {
    padding: 100px 0 0 0;
}

.recent-works-section section {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.recent-works-section .work-box {
    width: 25%;
    background: linear-gradient(180deg, #F4FAFF 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid #DBE0E9;
    border-radius: 30px;
    transition: .5s;
}

.recent-works-section .work-box:hover {
    transform: translate(0, -70px);
}

.recent-works-section .work-box figure {
    padding: 20px 20px 0 20px;
    border-bottom: 1px solid #DBE0E9;
    max-height: 250px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.recent-works-section .work-box figure img {
    border-radius: 20px 20px 0 0;
}

.recent-works-section .work-box article {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
}

.recent-works-section .work-box article .text {
    width: calc(100% - 80px);
}

.recent-works-section .work-box article .text h6 {
    font-family: "Poppins", serif !important;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    padding: 0;
}

.recent-works-section .work-box article .text p {
    font-size: 14px;
    padding: 10px 0 0 0;
}

.recent-works-section .work-box article .link a {
    width: 66px;
    height: 66px;
    background-color: transparent;
    border: 1px solid #D1D9E4;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.recent-works-section .work-box:hover article {
    flex-wrap: wrap;
    justify-content: center;
    transition: .5s;
}

.recent-works-section .work-box:hover article .text {
    width: 100%;
    text-align: center;
    transition: .5s;
}

.recent-works-section .work-box:hover article .link a {
    background-color: #0089F8;
    transition: .5s;
}

.recent-works-section .work-box:hover article .link a img {
    filter: brightness(0) invert(1);
}

@media only screen and (max-width:760px) {
    .recent-works-section {
        padding: 30px 0;
    }

    .recent-works-section section {
        margin-top: 15px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .recent-works-section .work-box {
        width: 100%;
    }

    .recent-works-section .work-box:hover {
        transform: translate(0, 0);
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .recent-works-section section {
        flex-wrap: wrap;
    }

    .recent-works-section .work-box {
        width: 48%;
    }
}

@media only screen and (min-width:1024px) and (max-width:1366px) {}

.we-offering-section {
    padding: 100px 0;
}

.our-services-section {
    padding: 100px 0;
    background: #FCFEFF;
}

.clients-testimonials-section {
    padding: 100px 0;
}

.why-choose-section {
    padding: 100px 0;
}

.our-clients-section {
    padding: 100px 0;
    background: #FCFEFF;
}


@media only screen and (max-width:760px) {}

@media only screen and (min-width:761px) and (max-width:1023px) {}

@media only screen and (min-width:1024px) and (max-width:1366px) {}

.work-together-section {
    padding: 100px 0;
}

/* 	-----------------------------------------------------
    -------------------- Footer Styles ------------------
    ----------------------------------------------------- */
.footer-section {
    padding: 30px 0 0 0;
    background: #005AA3;
}

.footer-section .top-panel {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-section .top-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

.footer-section .top-panel ul li {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0%;
    color: #FFFFFF;
}

.footer-section .top-panel ul li a {
    color: #DEF0FF;
    transition: all .4s ease-in-out;
    display: inline-block;
    position: relative;
}

.footer-section .top-panel ul li a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    border-radius: 5px;
    height: 0.05em;
    bottom: 0;
    left: 0;
    background: currentcolor;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.footer-section .top-panel ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.footer-section .bot-panel {
    padding: 20px 0;
    border-top: 1px solid #85ACCA;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-section .bot-panel p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #FFFFFF;
}

.footer-section .bot-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.footer-section .bot-panel ul li a {
    width: 30px;
    height: 30px;
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    font-size: 16px;
    color: #005AA3;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.footer-section .bot-panel ul li a:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.footer-section .bot-panel ul li a:hover {
    color: #FFFFFF;
}

.footer-section .bot-panel ul li a:hover:before {
    top: 0;
}

.footer-section .bot-panel ul li:nth-child(1) a:before {
    background: #3b5999;
}

.footer-section .bot-panel ul li:nth-child(2) a:before {
    background: #55acee;
}

.footer-section .bot-panel ul li:nth-child(3) a:before {
    background: #0077b5;
}

.footer-section .bot-panel ul li:nth-child(4) a:before {
    background: #C21975;
}

@media only screen and (max-width:760px) {
    .footer-section {
        padding: 15px 0 0 0;
    }

    .footer-section .top-panel {
        padding: 15px 0 20px 0;
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-section .top-panel figure {
        width: 100%;
        text-align: center;
    }

    .footer-section .top-panel ul {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-section .top-panel ul li {
        font-size: 16px;
        line-height: 1;
    }

    .footer-section .bot-panel {
        flex-wrap: wrap-reverse;
        gap: 15px;
    }

    .footer-section .bot-panel p {
        width: 100%;
        text-align: center;
    }

    .footer-section .bot-panel ul {
        justify-content: center;
        width: 100%;
    }
}

@media only screen and (min-width:761px) and (max-width:1023px) {
    .footer-section .top-panel ul {
        gap: 15px;
    }

    .footer-section .top-panel ul li {
        font-size: 16px;
    }
}

/* 	-----------------------------------------------------
    ------------------ Go to top Styles -----------------
    ----------------------------------------------------- */
.cd-top {
    display: inline-block;
    height: 54px;
    width: 54px;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 999;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: #002563 url(../fonts/cd-top-arrow.svg) no-repeat center;
    border-radius: 50%;
    box-shadow: 0px 10px 25px -3px #00000040;
    visibility: hidden;
    opacity: 1;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
}

.cd-top.cd-is-visible,
.cd-top.cd-fade-out,
.no-touch .cd-top:hover {
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
}

.cd-top.cd-is-visible {
    visibility: visible;
    opacity: 1;
}

.cd-top.cd-fade-out {
    opacity: 1;
}

.no-touch .cd-top:hover {
    opacity: 1;
}

@media only screen and (max-width:1170px) {
    .cd-top {
        display: none;
    }
}

/* 10.02.25 */
.offering-section-wrap {
    display: flex;
    flex-wrap: wrap;
}

.offering-section-image {
    position: relative;
    width: 42.62%;
    /* padding-right: 105px; */
}

.offering-section-image .main-img {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 105px);
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.offering-section-image .experience-logo {
    position: absolute;
    top: 185px;
    right: 0;
}

.offering-section-details {
    width: calc(100% - 42.62%);
    padding-left: 40px;
    margin: 24px 0;
}

.offering-section-details h2 {
    padding: 0;
}

.offering-section-details h6.sub-text {
    display: block;
    font-family: "Poppins", serif !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    line-height: 24px !important;
    text-transform: uppercase !important;
    color: #0089F8 !important;
}

.offering-section-details p {
    padding: 0 0 10px 0;
}

.offering-section-details p strong {
    font-weight: 500;
    color: #3C3C3C;
}

@media (max-width: 1199px) {
    .we-offering-section {
        padding: 60px 0;
    }

    .offering-section-wrap {
        flex-direction: column-reverse;
        gap: 20px 0;
    }

    .offering-section-image {
        width: 100%;
        padding-right: 80px;
    }

    .offering-section-image .main-img {
        position: relative;
        top: unset;
        left: unset;
        width: 100%;
    }

    .offering-section-image .experience-logo {
        top: 90px;
        max-width: 180px;
    }

    .offering-section-details {
        width: 100%;
        text-align: center;
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .we-offering-section {
        padding: 30px 0;
    }

    .offering-section-image {
        padding-right: 40px;
    }

    .offering-section-image .experience-logo {
        top: 50px;
        max-width: 115px;
    }
}

.services-title {
    text-align: center;
}

.services-title h2 {
    padding: 0;
}

.services-title p {
    max-width: 1000px;
    margin: 0 auto;
    padding: 12px 0 40px 0;
}

.our-services-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.our-services-col {
    display: flex;
    flex-direction: column;
    gap: 64px 0;
    width: 20%;
    margin-right: -24px;
}

.services-details {
    text-align: center;
    max-width: 240px;
}

.services-details h5 {
    font-size: 22px;
    line-height: 1.2272727272727273em;
    font-weight: 700;
    color: #0089F8;
    font-family: 'CabinetGrotesk-Bold' !important;
    padding: 0;
}

.services-details p {
    line-height: 20px;
    padding: 10px 0 16px 0;
}

.services-details a {
    display: inline-flex;
    align-items: center;
    position: relative;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: #63696D;
    transition: 0.4s;
}

.services-details a:hover {
    color: #0089F8;
}

.services-details a::after {
    position: relative;
    content: "";
    top: 0;
    right: 0;
    display: inline-block;
    width: 15px;
    height: 10px;
    background: url(../images/btn-before-arrow.svg) no-repeat center center / cover;
    transition: 0.4s;
    margin-left: 8px;
}

.services-details a:hover::after {
    filter: invert(62%) sepia(61%) saturate(6612%) hue-rotate(184deg) brightness(92%) contrast(113%);
}

.services-icon {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    width: 263px;
    height: 263px;
    background: url(../images/service-shape-blue.webp) no-repeat center center / cover;
}

.services-icon::before {
    position: absolute;
    content: "";
    top: -44px;
    left: calc(50% - 16px);
    transform: translate(-50%, 0);
    width: 5px;
    height: 86px;
    background: url(../images/dot-line-light.webp) no-repeat center center / cover;
}

.services-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 210px;
    height: 210px;
    background: linear-gradient(45deg, #EBEAEA 0.01%, #FFFFFF 99.99%);
    border-radius: 50%;
    padding: 7px;
    margin: 0 0 11px 11px;
}

.services-icon figure {
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border: 1px solid #A2D5FF;
    box-shadow: -30px 54px 25px rgba(0, 0, 0, 0.01), -17px 30px 21px rgba(0, 0, 0, 0.05), -8px 13px 15px rgba(0, 0, 0, 0.09), -2px 3px 8px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.our-services-col:nth-child(2n) {
    flex-direction: column-reverse;
    gap: 62px 0;
    margin: 0;
}

.our-services-col:nth-child(2n) .services-icon {
    align-items: flex-start;
    justify-content: center;
    width: 295px;
    height: 263px;
    background: url(../images/service-shape-dark-blue.webp) no-repeat center center / cover;
}

.our-services-col:nth-child(2n) .services-icon::before {
    top: unset;
    left: 50%;
    bottom: -44px;
    background: url(../images/dot-line-dark.webp) no-repeat center center / cover;
}

.our-services-col:nth-child(2n) .services-icon-wrap {
    margin: 11px 0 0 0;
}

.our-services-col:nth-child(2n) .services-details {
    margin: 0 0 0 auto;
}

.our-services-col:nth-child(2n) .services-details h5 {
    color: #002563;
}

.our-services-col:nth-child(3) {
    gap: 63px 0;
    margin-left: 8px;
}

.our-services-col:nth-child(3) .services-icon {
    justify-content: center;
    width: 295px;
    height: 263px;
    background: url(../images/service-shape-blue-double.webp) no-repeat center center / cover;
}

.our-services-col:nth-child(3) .services-icon::before {
    left: 50%;
}

.our-services-col:nth-child(3) .services-icon-wrap {
    margin: 0 0 11px 0;
}

.our-services-col:nth-child(3) .services-details {
    margin: 0 auto;
}

.our-services-col:nth-child(4) {
    margin: 0 0 0 24px;
}

.our-services-col:nth-child(4) .services-icon {
    margin: 0 0 0 7px;
}

.our-services-col:last-child {
    gap: 83px 0;
    margin-right: -4px;
    margin-left: 15px;
}

.our-services-col:last-child .services-icon {
    justify-content: flex-end;
    background: url(../images/service-shape-blue-angel-left.webp) no-repeat center center / cover;
}

.our-services-col:last-child .services-icon::before {
    left: calc(50% + 16px);
}

.our-services-col:last-child .services-icon-wrap {
    margin: 0 11px 11px 0;
}

.our-services-col:last-child .services-details {
    margin: 0 10px 0 auto;
}

@media (max-width: 1024px) {
    .our-services-section {
        padding: 60px 0;
    }

    .our-services-wrap {
        gap: 30px 0;
    }

    .our-services-col {
        width: 33.33%;
        flex-direction: column-reverse !important;
        gap: 105px 0;
        margin: 0 !important;
    }

    .services-icon {
        align-items: center;
        justify-content: center;
        width: 100% !important;
        height: 100% !important;
        background: transparent !important;
        margin: 0 !important;
    }

    .services-icon-wrap {
        width: 150px;
        height: 150px;
        margin: 0 !important;
    }

    .services-icon figure {
        width: 100%;
        height: 100%;
    }

    .services-icon figure img {
        max-width: 45px;
    }

    .services-icon::before {
        top: unset !important;
        left: 50%;
        bottom: -90px;
        transform: rotate(180deg);
    }

    .our-services-col:nth-child(2n) {
        gap: 105px 0;
    }

    .our-services-col:nth-child(2n) .services-icon::before {
        bottom: -90px;
        transform: rotate(0);
    }

    .our-services-col:nth-child(3) {
        gap: 105px 0;
    }

    .our-services-col:last-child .services-icon {
        justify-content: center;
    }

    .our-services-col:last-child .services-icon::before {
        left: 50%;
    }

    .services-details {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .our-services-section {
        padding: 30px 0;
    }

    .our-services-wrap {
        gap: 20px 0;
    }

    .our-services-col {
        width: 100%;
        gap: 60px 0;
    }

    .our-services-col:nth-child(2n) {
        gap: 60px 0;
    }

    .our-services-col:nth-child(3) {
        gap: 60px 0;
    }

    .services-icon-wrap {
        width: 100px;
        height: 100px;
    }

    .services-icon::before {
        bottom: -54px;
        width: 3px;
        height: 50px;
    }

    .services-icon figure img {
        max-width: 38px;
    }

    .our-services-col:nth-child(2n) .services-icon::before {
        bottom: -54px;
    }

    .services-details {
        max-width: 100%;
    }

    .services-details p {
        min-height: unset;
    }
}

.testimonials-title {
    text-align: center;
}

.testimonials-title h2 {
    padding: 0 0 40px 0;
}

.js-testimonials-slider {
    padding-bottom: 25px;
}

.js-testimonials-slider .slick-list::before,
.js-testimonials-slider .slick-list::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    z-index: 1;
    width: 17.2%;
    height: 100%;
    background: linear-gradient(91.56deg, #FFFFFF 9.07%, rgba(255, 255, 255, 0) 99.01%);
}

.js-testimonials-slider .slick-list::after {
    left: unset;
    right: 0;
    background: linear-gradient(91.56deg, #FFFFFF 9.07%, rgba(255, 255, 255, 0) 99.01%);
    transform: matrix(-1, 0, 0, 1, 0, 0);
}

.testimonials-slider-col {
    display: block !important;
    padding: 0 10px;
}

.testimonials-slider-col a {
    display: block;
}

.testimonials-slider-col img {
    width: 100%;
    min-height: 217px;
    max-height: 217px;
    border-radius: 20px;
}

@media (max-width: 1440px) {
    .testimonials-slider-col img {
        min-height: 170px;
    }
}

@media (max-width: 10214px) {
    .clients-testimonials-section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .clients-testimonials-section {
        padding: 30px 0;
    }

    .testimonials-title h2 {
        padding: 0 0 20px 0;
    }

    .js-testimonials-slider .slick-list {
        padding-right: 100px !important;
    }

    .testimonials-slider-col img {
        min-height: 192px;
    }
}

.choose-section-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.choose-section-details {
    width: calc(100% - 50.74%);
    padding-right: 75px;
}

.choose-section-title h2 {
    padding: 0;
}

.choose-section-title p {
    padding: 10px 0 30px 0;
}

.choose-section-details ul {
    list-style: none;
    padding-left: 0;
}

.choose-section-details ul li {
    margin: 0 0 20px 0;
}

.choose-section-details ul li:last-child {
    margin: 0;
}

.choose-section-details ul li h5 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 10px;
    font-size: 20px;
    line-height: 1.25em;
    font-weight: 700;
    font-family: 'CabinetGrotesk-Bold' !important;
    color: #000000;
    padding: 0;
}

.choose-section-details ul li p {
    padding: 7px 0 0 40px;
}

.choose-section-details .btn-02 a {
    margin: 30px 0 0 0;
}

.choose-section-image {
    position: relative;
    width: 50.74%;
}

.choose-section-image::before {
    position: absolute;
    content: "";
    top: -40px;
    right: -40px;
    z-index: -1;
    width: 145px;
    height: 122px;
    background: url(../images/choose-us-dot-shape.webp) no-repeat center center / cover;
}

.choose-section-image img {
    width: 100%;
    border-radius: 20px;
}

@media (max-width: 1024px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .choose-section-wrap {
        gap: 30px 0;
    }

    .choose-section-details {
        width: 100%;
        text-align: center;
        padding: 0 40px;
    }

    .choose-section-details ul li h5 {
        justify-content: center;
    }

    .choose-section-image {
        width: 100%;
        padding-right: 60px;
    }

    .choose-section-image::before {
        right: 0;
    }

    .choose-section-image img {
        height: 500px;
        object-fit: cover;
    }
}

@media (max-width: 767px) {
    .why-choose-section {
        padding: 30px 0;
    }

    .choose-section-title p {
        padding: 10px 0 22px 0;
    }

    .choose-section-wrap {
        gap: 40px 0;
    }

    .choose-section-details {
        padding: 0;
    }

    .choose-section-details ul li h5 {
        font-size: 18px;
    }

    .choose-section-details .btn-02 a {
        margin: 22px 0 0 0;
    }

    .choose-section-image {
        padding-right: 30px;
    }

    .choose-section-image::before {
        top: -25px;
        width: 92px;
        height: 80px;
    }

    .choose-section-image img {
        height: 270px;
    }
}


.our-clients-section {
    background: #FCFEFF;
}

.our-clients-section h2 {
    text-align: center;
    padding: 0 0 40px 0;
}

.clients-logo-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -32.5px;
}

.clients-logo-col {
    width: 16.66%;
    padding: 0 32.5px;
}

@media (max-width: 1400px) {
    .clients-logo-wrap {
        margin: 0 -15px;
    }

    .clients-logo-col {
        padding: 0 15px;
    }
}

@media (max-width: 1024px) {
    .clients-logo-wrap {
        gap: 30px 0;
    }

    .clients-logo-col {
        width: 33.33%;
    }
}

@media (max-width: 767px) {
    .our-clients-section {
        padding: 50px 0;
    }

    .our-clients-section h2 {
        padding: 0 0 20px 0;
    }

    .clients-logo-col {
        width: 50%;
    }
}


.work-together-section {
    background: #FCFCFC;
    border-block: 1px solid #D3EBFE;
    padding: 100px 0;
}

.work-together-wrap {
    display: flex;
    flex-wrap: wrap;
}

.work-together-image {
    width: 50%;
    padding-right: 30px;
}

.work-together-image .together-image-bg {
    position: relative;
    z-index: 1;
    padding: 71px 80px 71px 0;
}

.work-together-image .together-image-bg::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    z-index: -1;
    width: calc(100% - 58px);
    height: 100%;
    background: url(../images/work-together-image-bg.webp) no-repeat right center / cover;
}

.work-together-image .together-image-bg::after {
    position: absolute;
    content: "";
    top: 118px;
    right: 20px;
    width: 200px;
    height: 200px;
    background: url(../images/experence-year-tag.webp) no-repeat center center / cover;
}

.work-together-image img {
    display: block;
    width: 100%;
    height: 517px;
    object-fit: cover;
    object-position: right;
    border-radius: 0 300px 300px 0;
}

.work-together-form {
    width: 50%;
    padding-left: 40px;
    margin-top: 45px;
}

.work-form-title h2 {
    padding: 0;
}

.work-form-title p {
    padding: 12px 0 32px 0;
}

.form-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 0;
}

.form-input-col {
    width: 100%;
}

.form-input-col p {
    padding: 0;
}

.form-input-col input,
.form-input-col textarea {
    width: 100%;
    height: 70px;
    background: #FFFFFF;
    border: 1px solid #E2F2FF;
    border-radius: 20px;
    transition: 0.4s;
    padding: 0 0 0 40px;
}

.form-input-col textarea {
    display: block;
    height: 155px;
    padding: 23px 0 0 40px;
}

.form-input-col input::placeholder,
.form-input-col textarea::placeholder {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #858585;
}

.form-input-col input:focus,
.form-input-col textarea:focus {
    border-color: #0089F8;
}

.submit-field {
    margin-top: 40px;
	position: relative;
}

.submit-field p {
    padding: 0;
}

.submit-field input[type="submit"] {
    border: none;
    outline: none;
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    color: #FFFFFF;
    background: #0089F8;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.4s;
    padding: 16px 40px;
}

.submit-field input[type="submit"]:hover {
    background: #002563;
}

@media (max-width: 1024px) {
    .work-together-section {
        background: #FCFCFC;
        border: 1px solid #D3EBFE;
        padding: 50px 0 20px 0;
    }

    .work-together-section .container {
        min-width: unset;
        padding: 0 30px;
    }

    .work-together-wrap {
        flex-direction: column-reverse;
        gap: 40px 0;
    }

    .work-together-image {
        width: 100%;
        padding-right: 0;
        margin-left: -30px;
    }

    .work-together-image .together-image-bg {
        padding: 55px 70px 60px 0;
    }

    .work-together-image img {
        height: 400px;
    }

    .work-together-image .together-image-bg::before {
        width: calc(100% - 240px);
    }

    .work-together-image .together-image-bg::after {
        right: 50px;
        width: 150px;
        height: 150px;
    }

    .work-together-form {
        width: 100%;
        padding-left: 0;
        margin-top: 0;
    }

    .work-form-title {
        text-align: center;
    }

    .form-input-col input,
    .form-input-col textarea {
        height: 64px;
        padding: 0 0 0 30px;
    }

    .form-input-col textarea {
        height: 135px;
        padding: 20px 0 0 30px;
    }

    .form-input-col input::placeholder,
    .form-input-col textarea::placeholder {
        font-size: 14px;
        line-height: 18px;
    }

    .submit-field {
        margin-top: 25px;
    }
}

@media (max-width: 767px) {
    .work-together-section {
        margin: 30px 0 20px 0;
    }

    .work-together-section .container {
        padding: 0 20px;
    }

    .work-form-title h2 {
        padding: 0 0 25px 0;
    }

    .form-input-col input,
    .form-input-col textarea {
        height: 52px;
        border-radius: 15px;
        padding: 0 0 0 20px;
    }

    .form-input-col textarea {
        height: 115px;
        padding: 15px 0 0 20px;
    }

    .submit-field {
        text-align: center;
        margin-top: 20px;
    }

    .work-together-image {
        width: calc(100% + 20px);
        margin-left: -20px;
    }

    .work-together-image img {
        height: 270px;
    }

    .work-together-image .together-image-bg {
        padding: 40px 40px 40px 0;
    }

    .work-together-image .together-image-bg::before {
        width: calc(100% - 37px);
    }

    .work-together-image .together-image-bg::after {
        top: 65px;
        right: 15px;
        width: 100px;
        height: 100px;
    }
}


/* inner banner style */
.banner-section.inner-banner {
    padding: 80px 0 130px 0;
}

.banner-section.inner-banner::before {
    width: 173px;
    height: 173px;
}

.banner-section.inner-banner h1 {
    padding: 0;
    margin: 0;
}

.banner-section.inner-banner h1 span {
    font-size: unset;
    display: inline-block;
}

.welcome-section.inner-pages {
    padding: 0;
    margin-top: -110px;
}

.welcome-section.inner-pages .btn-group {
    justify-content: center;
}


ul.offering-listing {
    list-style: none;
    padding: 30px 0;
}

ul.offering-listing li {
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #63696D;
    padding-left: 25px;
    margin: 0 0 10px 0;
}

ul.offering-listing li:last-child {
    margin-bottom: 0;
}

ul.offering-listing li::before {
    position: absolute;
    content: "";
    top: 4px;
    left: 0;
    width: 15px;
    height: 15px;
    background: url(../images/check-icon.svg) no-repeat center center / cover;
}

.percent-progress {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.progress-col {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}


.progressbar {
    display: inline-block;
    width: 72px;
}

.circle {
    width: 100%;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.circle canvas {
    width: 72px !important;
    height: 72px !important;
    vertical-align: middle;
}

.circle div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    font-family: 'CabinetGrotesk-Bold' !important;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
}

.circle strong i {
    font-style: normal;
    font-size: 0.6em;
    font-weight: normal;
}

.progress-col h5 {
    font-size: 20px;
    line-height: 25px;
    font-weight: 700;
    color: #002563;
    font-family: 'CabinetGrotesk-Bold' !important;
    padding: 0;
}

.offering-section-wrap.with-tabs {
    flex-direction: row-reverse;
    padding-top: 120px;
}

.offering-section-wrap.with-tabs .offering-section-image {
    width: 43.35%;
    padding-right: 0;
    padding-left: 115px;
}

.offering-section-wrap.with-tabs .offering-section-image .main-img {
    width: calc(100% - 115px);
    left: unset;
    right: 0;
}

.offering-section-wrap.with-tabs .offering-section-details {
    width: calc(100% - 43.35%);
    padding-left: 0;
    padding-right: 84px;
    margin: 75px 0;
}

ul.tabs-nav {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 444px;
    border-bottom: 1px solid #DAE5F8;
    margin: 40px 0 20px 0;
}

ul.tabs-nav li {
    position: relative;
    font-family: 'CabinetGrotesk-Bold' !important;
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    color: #B6B7B8;
    transition: all .3s ease-in-out;
    cursor: pointer;
    padding-bottom: 11px;
    margin: 0;
}

ul.tabs-nav li::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #0089F8;
    transition: 0.3s;
}

ul.tabs-nav li.inactive,
ul.tabs-nav li:hover {
    color: #0089F8;
}

ul.tabs-nav li.inactive::before {
    height: 3px;
}

.tabs-content {
    width: 100%;
}

.tabs-content p {
    padding: 0;
}

.tabs-content .offering-listing {
    max-width: 504px;
    column-count: 2;
    padding: 30px 0 0 0;
}

.tabs-content:not(:first-of-type) {
    display: none
}

.percent-progress.dark-bg {
    position: absolute;
    bottom: 52px;
    left: 0;
    width: 100%;
    background: #002563;
    border-radius: 20px;
    flex-direction: column;
    gap: 20px;
    max-width: 234px;
    padding: 30px;
}

.percent-progress.dark-bg .progressbar {
    width: 49px;
}

.percent-progress.dark-bg .circle div {
    font-size: 0;
}

.percent-progress.dark-bg .circle div::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 11px;
    height: 11px;
    background: url(../images/up-arrow-icon.svg) no-repeat center center / cover;
}

.percent-progress.dark-bg .circle canvas {
    width: 50px !important;
    height: 50px !important;
}

.percent-progress.dark-bg .progress-col h5 {
    font-size: 16px;
    color: #FFFFFF;
}

.percent-progress.dark-bg .progress-col h5 span {
    display: block;
}

@media (max-width: 1023px) {
    .circle canvas {
        width: 72px !important;
        height: 72px !important;
    }

    ul.offering-listing {
        text-align: left;
    }

    .offering-section-wrap.with-tabs {
        flex-direction: column-reverse;
        gap: 40px 0;
        padding-top: 80px;
    }

    .offering-section-wrap.with-tabs .offering-section-image {
        width: 100%;
        padding-left: 0;
        padding-right: 80px;
    }

    .offering-section-wrap.with-tabs .offering-section-image .main-img {
        width: 100%;
    }

    .percent-progress.dark-bg {
        left: unset;
        right: 0;
    }

    .percent-progress.dark-bg .circle canvas {
        width: 49px !important;
        height: 49px !important;
    }

    .offering-section-wrap.with-tabs .offering-section-details {
        width: 100%;
        margin: 0;
        padding-right: 0;
    }

    ul.tabs-nav {
        margin: 40px auto 20px auto;
    }

    ul.tabs-nav li {
        font-size: 18px;
    }

    .tabs-content p {
        text-align: left;
    }
}

@media (max-width: 767px) {
    ul.offering-listing {
        padding: 10px 0 20px 0;
    }

    .percent-progress {
        gap: 15px 0;
    }

    .offering-section-wrap.with-tabs {
        padding-top: 50px;
    }

    ul.tabs-nav {
        margin: 25px auto 20px auto;
    }

    ul.tabs-nav li {
        font-size: 16px;
    }

    .offering-section-wrap.with-tabs .offering-section-image {
        padding-right: 0;
    }

    .percent-progress.dark-bg {
        bottom: 30px;
        max-width: 180px;
        padding: 15px;
    }

    .percent-progress.dark-bg .progressbar {
        width: 42px;
    }

    .percent-progress.dark-bg .circle canvas {
        width: 42px !important;
        height: 42px !important;
    }

    .percent-progress.dark-bg .progress-col h5 {
        font-size: 13px;
        line-height: 16px;
    }
}


.banner-section.inner-banner.inner-banner--normal {
    padding: 70px 0 20px 0;
}

.banner-section.inner-banner.inner-banner--normal h1 {
    padding: 0 0 25px 0;
}

.business-section {
    padding: 100px 0;
}

.business-section h2 {
    text-align: center;
    padding: 0;
}

.scrollspy-list {
    position: sticky;
    top: 86px;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    background: #FFFFFF;
    transition: 03s linear;
    padding: 40px 0;
}

.scrollspy-list a.list-group-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5em;
    color: #0089F8;
    background: #FFFFFF;
    border: 1px solid #7BC4FF;
    border-radius: 35px;
    transition: 0.4s;
    padding: 6px 16px 6px 6px;
}

.scrollspy-list a.list-group-item.active,
.scrollspy-list a.list-group-item:hover {
    background: #0089F8;
    border-color: #0089F8;
    color: #FFFFFF;
}

.scrollspy-list a.list-group-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #F3F9FE;
    border-radius: 50%;
}

.scrollspy-list a.list-group-item.active span {
    background: #FFFFFF;
}

.scrollspy-item-panel {
    margin-bottom: 40px;
}

.scrollspy-item-panel:last-child {
    margin-bottom: 0;
}

.scrollspy-panel-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.scrollspy-item-panel:nth-child(even) .scrollspy-panel-wrap {
    flex-direction: row-reverse;
}

.scrollspy-image-col {
    width: 45.32%;
}

.scrollspy-image-col img {
    display: block;
    width: 100%;
    border-radius: 20px;
}

.scrollspy-text-col {
    width: calc(100% - 45.32%);
    padding-left: 40px;
}

.scrollspy-item-panel:nth-child(even) .scrollspy-text-col {
    padding-left: 0;
    padding-right: 40px;
}

.scrollspy-text-col h4 {
    font-family: 'CabinetGrotesk-Bold' !important;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.25em;
    color: #002563;
    padding: 0;
}

.scrollspy-text-col h4 span {
    color: #0089F8;
}

.scrollspy-text-col .color-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    color: #0089F8;
    margin: 12px 0;
}

.scrollspy-text-col p {
    padding: 0 0 12px 0;
}

.scrollspy-text-col p:last-of-type {
    padding-bottom: 0;
}

.scrollspy-text-col .btn-01 a {
    margin: 40px 0 0 0;
}

@media (max-width: 1024px) {
    .scrollspy-list {
        gap: 8px;
        padding: 30px 0;
    }

    .scrollspy-list a.list-group-item {
        gap: 5px;
        font-size: 16px;
        padding: 5px 10px 5px 5px;
    }

    .scrollspy-list a.list-group-item span {
        width: 25px;
        height: 25px;
    }

    .scrollspy-list a.list-group-item span img {
        max-width: 15px;
    }

    .scrollspy-panel-wrap {
        gap: 30px 0;
    }

    .scrollspy-item-panel {
        margin-bottom: 25px;
    }

    .scrollspy-image-col {
        width: 100%;
    }

    .scrollspy-image-col img {
        height: 350px;
        object-fit: cover;
    }

    .scrollspy-text-col {
        width: 100%;
        padding-left: 0;
        padding-right: 0 !important;
    }
}

@media (max-width: 767px) {
    .business-section {
        padding: 60px 0;
    }

    .scrollspy-list {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 20px 0;
        margin-bottom: 25px;
    }

    .scrollspy-list::-webkit-scrollbar-track {
        border-radius: 10px;
        background-color: #F3F9FE;
    }

    .scrollspy-list::-webkit-scrollbar {
        width: 6px;
        height: 6px;
        background-color: #F3F9FE;
    }

    .scrollspy-list::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background-color: #0089F8;
    }

    .scrollspy-list a.list-group-item {
        font-size: 15px;
    }

    .scrollspy-image-col img {
        height: auto;
    }
}


.contact-us-area {
    padding: 0 0 100px 0;
}

.contact-form-col {
    width: 100%;
    background: #FDFDFE;
    border: 1px solid #D3EBFE;
    border-radius: 20px;
    padding: 50px 36px 50px 50px;
}

.contact-form-title h2 {
    font-weight: 500;
    font-family: 'CabinetGrotesk-Bold';
    color: #002563;
    padding: 0;
}

.contact-form-title p {
    padding: 10px 0 25px 0;
}

.contact-us-area .form-input-col {
    padding-bottom: 30px;
}

.contact-us-area input,
.contact-us-area textarea {
    width: 100%;
    height: 60px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #D0E0EC;
    border-radius: 0;
    transition: 0.4s;
    padding: 0 50px 0 0;
}

.contact-us-area textarea {
    display: block;
    height: 150px;
    padding: 0;
    margin-top: 15px;
    overflow: auto;
    resize: none;
}

.contact-us-area input::placeholder,
.contact-us-area textarea::placeholder {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #858585;
}

.contact-us-area input:focus,
.contact-us-area textarea:focus {
    border-color: #0089F8;
}

.contact-us-area input[type="text"] {
    background: url(../images/input-name.png) no-repeat right;
}

.contact-us-area input[type="email"] {
    background: url(../images/input-email.png) no-repeat right;
}

.contact-us-area textarea {
    background: url(../images/input-massage.png) no-repeat right top;
}

.flex-end {
    display: flex;
    justify-content: flex-end;
}

.contact-us-area input[type="submit"] {
    border: none;
    outline: none;
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    color: #FFFFFF;
    background: #0089F8;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.4s;
    padding: 0 60px;
    width: auto;
}

.contact-us-area input[type="submit"]:hover {
    box-shadow: inset 0 0 20px rgba(0, 37, 99, 0.5), 0 0 20px rgba(0, 37, 99, 0.2);
    outline-color: rgba(0, 37, 99, 0);
    outline-offset: 15px;
    transition: .5s;
}

@media (max-width: 767px) {
    .contact-us-area {
        padding: 0 0 60px 0;
    }

    .contact-title {
        text-align: center;
    }

    .contact-title p {
        padding: 10px 0 22px 0;
    }

    .contact-detl-wrap {
        gap: 15px 0;
    }

    .contact-detl-col {
        width: 100%;
    }

    .contact-form-col {
        padding: 35px 15px 30px 15px;
    }

    .contact-form-title {
        text-align: center;
    }
}


.banner-section.testi-banner {
    padding: 60px 0 120px 0;
}

.banner-section.testi-banner::before {
    width: 173px;
    height: 173px;
    top: unset;
    bottom: 30px;
    transform: translate(-50%, 0);
}

.banner-section.testi-banner h1 {
    padding: 30px 0 0 0;
}

.clients-success {
    padding: 0 0 120px 0;
}

.clients-success h2 {
    padding: 0 0 40px 0;
}

.clients-success-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 0;
    margin: 0 -10px;
}

.clients-success-col {
    width: 25%;
    padding: 0 10px;
}

.clients-success-col a {
    display: block;
}

.clients-success-col img {
    display: block;
    width: 100%;
    border-radius: 20px;
}

@media (max-width: 1024px) {
    .clients-success {
        padding: 0 0 0 0;
    }

    .clients-success h2 {
        padding: 0 0 30px 0;
    }

    .clients-success-col {
        width: 33.33%;
    }
}

@media (max-width: 767px) {
    .banner-section.testi-banner {
        padding: 60px 0 80px 0;
    }

    .clients-success h2 {
        padding: 0 0 20px 0;
    }

    .clients-success-col {
        width: 50%;
    }
}


.block-post-image img {
    display: block;
    width: 100%;
    height: 442px;
    object-fit: cover;
    border-radius: 16px;
}

.block-post-details {
    margin-top: 32px;
}

.block-post-date {
    display: flex;
    align-items: center;
    gap: 0 8px;
}

.block-post-date img {
    display: block;
}

.block-post-date p {
    font-size: 18px;
    line-height: 1.777em;
    color: #969292;
    padding: 0;
}

.block-post-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.block-post-text {
    width: calc(100% - 180px);
    padding-right: 20px;
    margin-top: 20px;
}

.block-post-text h5 {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25em;
    color: #002563;
    font-family: 'CabinetGrotesk-Bold' !important;
    padding: 0;
}

.block-post-text p {
    padding: 12px 0 0 0;
}

.block-post-btn {
    width: 180px;
}

.block-post-btn a {
    margin: 0;
}

.letest-news {
    padding: 120px 0;
}

.letest-news-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 0;
    margin: 0 -10px;
}

.letest-news-col {
    width: 33.33%;
    padding: 0 10px;
}

.letest-news-inner {
    background: #FBFBFB;
    border-radius: 24px;
    padding: 8px 8px 40px 8px;
}

.letest-news-image img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 20px;
}

.letest-news-details {
    padding: 0 16px;
    margin-top: 40px;
}

.letest-news-details h4 {
    font-size: 24px;
    line-height: 1.25em;
    font-weight: 700;
    color: #002563;
    font-family: 'CabinetGrotesk-Bold' !important;
    padding: 12px 0;
}

.letest-news-details p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    padding: 0;
}

.letest-news-details.expand p {
    -webkit-line-clamp: unset;
}

.letest-news-details .btn-01 a {
    margin: 24px 0 0 0;
}

@media (max-width: 1024px) {
    .letest-news {
        padding: 90px 0;
    }

    .block-post-image img {
        height: 270px;
    }

    .block-post-flex {
        flex-direction: column;
    }

    .block-post-text {
        width: 100%;
        padding-right: 0;
    }

    .block-post-btn {
        width: 100%;
        margin-top: 20px;
    }

    .letest-news-col {
        width: 50%;
    }

    .letest-news-image img {
        height: 250px;
    }

    .letest-news-details h4 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .letest-news {
        padding: 45px 0;
    }

    .block-post-image img {
        height: auto;
    }

    .letest-news-col {
        width: 100%;
    }

    .letest-news-details {
        margin-top: 20px;
        padding: 0 10px;
    }

    .block-post-date p {
        font-size: 16px;
    }
}

div.tnp-subscription,
form.tnp-subscription,
form.tnp-profile {
    margin: 0 !important;
}

.tnp-subscription label,
.tnp-profile label {
    display: none !important;
}

.tnp-subscription div.tnp-field,
.tnp-profile div.tnp-field {
    margin: 0 !important;
}

.wpcf7-spinner {
    margin: 0 !important;
    position: absolute !important;
    top: 50%;
    margin-top: -12px !important;
}