@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --Midnight-Navy: #0C0821;
    --Dark-Navy: #1C124F;
    --Natural-Gray: #DADAE0;
    --transition: all 0.5s ease-in-out;
    --Dark-Gradient: linear-gradient(116deg, #1C124F 25.39%, #0C0821 107.23%);
    --Main-Turquoise: #0ACFB1;
    --Light-Turkoise: #CFF5EF;
    --Base-Gray: #615E70;
    --GreenBackground: #F6FAF5;
    --Light-Gray: #C0BFC6;
}

body {
    margin: 0;
    padding: 0;
    color: var(--Midnight-Navy);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    font-style: normal;
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    background-color: #F6FAF5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

h1,
h2 {
    font-size: 54px;
    line-height: 62px;
    color: var(--Dark-Navy);
}

img {
    display: block;
}

.flx-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flx-center {
    align-items: center;
    display: flex;
    justify-content: center;
}

.gap-20 {
    gap: 20px;
}

.gap-16 {
    gap: 16px;
}

p {
    margin-bottom: 32px;
}

p:last-child {
    margin-bottom: 0;
}

.plain-link {
    color: var(--Base-Gray);
    font-size: 18px;
    line-height: normal;
    text-decoration: none;
    position: relative;
    padding-right: 15px;
}

.plain-link:after {
    content: '';
    background-image: url(../images/arrow.svg);
    width: 9px;
    height: 8px;
    display: block;
    position: absolute;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s ease-in-out;
}

.plain-link:hover:after {
    right: -5px;
}

.main-btn span,
.main-btn {
    background-color: var(--Light-Turkoise);
    padding: 10px 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 36px;
    gap: 3px;
    text-decoration: none;
    border-radius: 13px;
    color: var(--Dark-Navy);
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
}

.main-btn-large {
    width: 171.106px;
    height: 43.771px;
    padding: 10px 6px;
}

.outline-btn {
    display: flex;
    min-width: 112px;
    height: 36px;
    padding: 10px 4px;
    justify-content: center;
    align-items: center;
    gap: 3px;
    border-radius: 13px;
    border: 1px solid #0ACFB1;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: #fff;
    text-decoration: none;
}

.green-btn {
    display: inline-flex;
    width: 112px;
    height: 36px;
    justify-content: center;
    align-items: center;
    gap: 3px;
    border-radius: 13px;
    background: var(--Deep-Green, #035C59);
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    line-height: 26px;
    position: relative;
    z-index: 0;
    border: 2px solid transparent;
    /* for hover effect */
    transition: all 0.6s ease;
}

.green-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(303deg,
            #9FECE0 16.91%,
            #0ACFB1 49.14%,
            #035C59 97.7%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    width: 113px;
    height: 37px;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
}

/* Show gradient border on hover */
.green-btn:hover::before {
    opacity: 1;
}

.green-btn.is-active::before {
    opacity: 1;
}

.container-custom {
    max-width: 1340px;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: content-box;
}

header {
    position: fixed;
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
    z-index: 11;
    padding: 17px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    transition: all 0.2s;
}


header .container-custom {
    width: 100%;
}

.h-inner nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 16px;
}

.h-inner nav ul a {
    font-size: 14px;
    text-decoration: none;
    color: var(--Natural-Gray);
}

.inner-page-header .h-inner nav ul a {
    color: var(--Midnight-Navy);
}

.inner-page-header .outline-btn {
    border: 1px solid var(--Dark-Navy, #1C124F);
    color: var(--Midnight-Navy, #0C0821);
}

.h-logo a {
    display: block;
    aspect-ratio: 113.00/39.96;
}

.h-logo a img {
    height: 39.961px;
    object-fit: contain;
    width: 113px;
    aspect-ratio: 113.00/39.96;
}

.home-banner {
    position: relative;
    height: calc(100vh - 130px);
    background: var(--Dark-Gradient);
}

.home-banner .banner-overlay {
    background-image: url(../images/banner-overlay.png);
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 10;
    pointer-events: none;
    opacity: 0.9;
}

.banner-inner {
    height: 100%;
    position: relative;
}

.bi-right {
    display: flex;
    gap: 16px;
    position: absolute;
    right: 20px;
}

.banner-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

.banner-slider {
    height: calc(100vh - 130px);
    overflow: hidden;
}

.banner-slider .swiper-slide {
    height: auto;
    /* This is the most important line */
    display: flex;
    flex-direction: column;
}

.bs-slide-box img {
    display: block;
    width: 100%;
    height: auto;
    /* Maintains image aspect ratio */
}

.bi-content {
    max-width: 601px;
    position: relative;
    z-index: 10;
}

.bi-content h2,
.bi-content h1 {
    color: var(--Main-Turquoise);
    font-weight: 600;
    font-size: 62px;
    line-height: 68px;
    letter-spacing: 0;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.bi-content h2 span,
.bi-content h1 span {
    font-weight: 400;
    display: block;
}

.bi-content p {
    color: var(--Light-Turkoise);
    max-width: 445px;
}

.bs-slide-box {}

.bssb-top {
    width: 142.217px;
    height: 53px;
    margin: 0 auto;
    padding-top: 28px;
}

.bssb-top .bssb-logo {
    width: 59px;
    height: 19px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.bssb-top h4 {
    text-align: center;
    font-size: 12px;
    line-height: 20px;
    color: #CFF5EF;
    margin: 0;
}


.ip-inner {
    padding-top: 88px
}

.ip-inner h4 {
    text-align: center;
    line-height: 28px;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--Midnight-Navy);
}

.ip-boxes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 60px;
}

.ip-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ip-box .ipb-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ip-box .ipb-lottie {}

.ip-box h2 {
    font-size: 42px;
    color: var(--Dark-Navy);
    font-weight: 600;
    line-height: 50px;
    margin-bottom: 0;
    letter-spacing: 1.2px;
}

.ip-box h2 span {
    display: block;
    font-weight: 400;
    letter-spacing: normal;
}

.ip-box p {
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
    color: var(--Base-Gray, #615E70);
}

.our-approach {
    background-color: var(--Dark-Navy);
    padding-top: 88px;
    padding-bottom: 120px;
}

.oa-inner {
    align-items: flex-start;
}

.oa-left {
    max-width: 605px;
}

.oa-left .section-heading {
    padding-bottom: 14px;
}

.oa-left .section-heading .small-title {
    color: var(--GreenBackground, #F6FAF5);
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.oal-content {
    padding-bottom: 23px;
}

.oa-left .section-heading h2 {
    font-size: 54px;
    color: var(--Light-Turkoise, #CFF5EF);
    line-height: 62px;
    font-weight: 600;
    letter-spacing: 2px;
}

.oa-left .section-heading h2 span {
    display: block;
    font-weight: 400;
}

.oa-left p {
    color: var(--GreenBackground, #F6FAF5);
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 16px;
}

.oa-left .section-heading .small-title {
    font-size: 20px;
}

.oa-right {
    width: 663.696px;
    height: 442.464px;
    aspect-ratio: 663.70 / 442.46;
    display: flex;
    align-items: center;
    justify-content: end;
}

.oa-right .oa-img {
    width: 604.186px;
    height: 391px;
    border-radius: 8px 72px;
    background: #D9D9D9;
    overflow: hidden;
}

.oa-right .oa-img img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    transform: scale(1.1) translateX(-0px) translateY(-6px);
}

.our-companies {
    padding-top: 88px;
    position: relative;
    background: linear-gradient(359deg, rgba(69, 84, 191, 0.43) -52.76%, rgba(98, 197, 182, 0.17) 19.81%, rgba(246, 250, 245, 0.08) 75.96%);
}

.our-companies h2,
.our-companies p {
    text-align: center;
}

.our-companies h2 {
    background: linear-gradient(107deg, #1C124F 25.58%, #32208C 87.62%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    font-size: 56px;
    line-height: 64px;
    letter-spacing: 2px;
}

.our-companies p {
    font-size: 24px;
    line-height: 32px;
}

.companies-slider {
    position: relative;

    height: 100%;
    padding-bottom: 120px;
    max-width: 1468px;
    margin: auto;
    margin-top: 100px;
    /* padding-left: 370px; */
    /* padding-right: 207px; */
}

.our-companies:before,
.our-companies:after {
    content: '';
    background: linear-gradient(270deg, #F6FAF5 0%, rgba(234, 246, 240, 0.25) 100%);
    filter: blur(14.5px);
    width: 145px;
    position: absolute;
    height: 100%;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
}

.our-companies:after {
    right: 0;
}

.our-companies:before {
    transform: translateY(-50%) scale(-1);
}

.companies-slider:before {
    left: -30px;
    transform: translateY(-50%) scaleX(-1);
}

.our-companies {
    overflow: hidden;
}

.page-template-template-home .our-companies .container-custom {
    position: relative;
    z-index: 9999;
}

.companies-slider .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
}

.companies-slider1 {
    width: 100%;
    margin-bottom: 60px;
    padding-top: 50px;
}

.companies-slider .swiper-slide {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.latest-news {
    padding-top: 86px;
    padding-bottom: 140px;
}

.ln-heading {
    margin-bottom: 102px;
}

.ln-heading h2 {
    background: linear-gradient(107deg, #1C124F 25.58%, #32208C 87.62%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
    font-size: 60px;
    line-height: 72px;
}

.news-slider {
    width: 100%;
}

.news-slide {

    /* background: linear-gradient(274deg, #0ACFB1 4.37%, #035C59 97.56%);
    display: flex;
    justify-content: center;
    align-items: end; */
    border-radius: 102px 6px;
    overflow: hidden;
    transition: all 0.6s;
}


.news-slide img {
    object-fit: cover;
    width: 322.589px;
    height: 460.558px;
    /* border-radius: 102px 6px; */
    display: block;
    margin: auto;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    border-radius: 64px 4px 4px 4px;
}

/*.news-slide:hover img {*/
/*transform: scale(1) translateY(-30px);*/
/*object-position: top;*/
/*}*/


.news-slide {
    position: relative;
}

.news-slide::after {
    content: '';
    width: 100%;
    height: 302.737px;
    /* border-radius: 0 0 102px 6px; */
    background: linear-gradient(180deg, rgba(246, 250, 245, 0.00) -13.11%, rgba(28, 18, 79, 0.60) 63.63%, rgba(28, 18, 79, 0.80) 84.22%);
    display: flex;
    align-items: end;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0.00) -4.32%, rgba(28, 18, 79, 0.80) 55.21%, #0C0821 94.32%);
    mix-blend-mode: darken;
    filter: blur(4px);
}


.news-slide-inner {
    position: absolute;
    z-index: 99;
    bottom: 0;
    padding-bottom: 10px;
    left: 0;
    right: 0;
}

/* .news-slide.reverse-radius::after {
    border-radius: 6px 102px;
} */

.latest-news .swiper-slide {
    transition: all 0.3s;
}

.latest-news .swiper-slide .news-slide:hover {
    transform: translateY(-10px);

}

.news-slide.reverse-radius,
.news-slide.reverse-radius .news-slide-inner {
    /* border-radius: 6px 102px; */
    border-radius: 64px 4px 4px 4px;
}

.news-slide-inner p,
.news-slide p {
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    text-align: center;
    color: #fff;
    max-width: 100%;
    margin: 0 auto;
    width: calc(100% - 10px);
    margin-bottom: 19.85px;
    padding: 0 10px;
}

.banner-inner-page {
    padding-top: 169px;
    padding-bottom: 32px;
}

.banner-inner-page h1,
.banner-inner-page p {
    text-align: center;
    margin: 0;
    color: var(--Dark-Navy);
}

.inner-banner-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}

.banner-inner-page p {
    max-width: 567px;
    margin: 0 auto;
}

.banner-inner-page p.desig {
    font-size: 24px;
    line-height: 32px;
}

.banner-inner-page h1 {
    font-weight: 600;
}

.banner-with-heading {
    position: relative;
}

.banner-with-heading .bwh-bg {
    background: linear-gradient(7deg, rgba(69, 84, 191, 0.51) -27.72%, rgba(98, 197, 182, 0.17) 29.02%, rgba(246, 250, 245, 0.08) 72.92%);
    position: absolute;
    width: 100%;
    height: calc(100% - 61px);
    max-height: 616px;
    z-index: -1;
    margin-top: 120px;
}

.bwh-content {
    display: flex;
    justify-content: start;
    gap: 141px;
}

.bwh-img {
    width: 630px;
    height: 425.04px;
    border-radius: 64px 8px 8px 8px;
    background: #D9D9D9;
    overflow: hidden;
}

.bwh-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bwh-right p {
    font-size: 30px;
    font-weight: 600;
    line-height: 42px;
    max-width: 512px;
    color: var(--Midnight-Navy);
    padding-top: 60px;
}

.bwh-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 20px;
    padding-top: 3px;
    padding-bottom: 11px;
}

.bwh-social a {
    display: flex;
    width: 32px;
    height: 32px;
    border: solid 1px var(--Dark-Navy);
    align-items: center;
    justify-content: center;
    border-radius: 99px;
}

.bwh-social a img {
    filter: brightness(0) saturate(100%) invert(10%) sepia(23%) saturate(6158%) hue-rotate(238deg) brightness(94%) contrast(106%);
}

.team-outer {
    background-image: url(../images/team-gradient.png);
    background-repeat: no-repeat;
    background-position: top center;
    margin-top: 24px;
    background-size: 100% 2096px;
}

.team-grids {
    display: flex;
    flex-wrap: wrap;
    gap: 0 68px;
    max-width: 1282px;
    margin: 0 auto;
    padding-top: 47px;
}

.team-box {
    margin-bottom: 41px;
}

.team-thumb {
    /* max-width: 382px; */
    overflow: hidden;
    /* aspect-ratio: 96 / 65; */
    /* height: 260px; */
    /* background: #D9D9D9; */
    border-radius: 64px 8px 8px 8px;
    max-width: 375px;
    height: 253px;
    width: 100%;
}

.team-thumb img {
    display: block;
    object-fit: cover;
    object-position: center;
    width: 100%;

}

.tb-content {
    padding-top: 20px;
    text-align: center;
}

.tb-content h3 {
    margin: 0;
    font-size: 20px;
    line-height: 28px;
    color: var(--Dark-Navy);
}

.tb-content p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: var(--Base-Gray);
    margin: 0;
}

.team-content-area {
    padding-top: 147px;
    padding-bottom: 295px;
    position: relative;
    overflow-x: clip;
}

.team-content-area .team-wave {
    background-image: url(../images/team-wave.png);
    width: 100%;
    height: 533px;
    background-repeat: no-repeat;
    background-position: 40% 60%;
    position: absolute;
    z-index: -1;
    background-size: cover;
    top: 50%;
    transform: translateY(-56.5%) rotate(-7deg);
}

.tca-inner {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 152px;
}

.tcai-img {
    max-width: 425px;
    height: 263.793px;
    border-radius: 64px 8px;
    background: #D9D9D9;
    overflow: hidden;
}

.tcai-img img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.tca-content-inner {
    max-width: 558px;
}

.tca-content-inner p {
    margin-bottom: 14px;
}

.tca-content-inner strong {
    font-weight: 600;
    font-size: 26px;
    line-height: 36px;
    color: var(--Dark-Navy);

}

.tca-content-inner p:last-child {
    margin-bottom: 0;
}


.team-advisors {
    overflow: hidden;
    padding-bottom: 80px;
}

.team-advisors h2 {
    text-align: center;
    margin-bottom: 38px;
}

.advisors-bg {
    background: linear-gradient(7deg, rgba(69, 84, 191, 0.34) -27.72%, rgba(98, 197, 182, 0.17) 29.02%, rgba(246, 250, 245, 0.08) 72.92%);
    opacity: 0.3;
    position: absolute;
    width: 100vw;
    height: calc(100% - 202px);
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    top: 0;
}

.advisors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0 189px;
    padding-top: 46px;
    max-width: 1128px;
    margin: 0 auto;
    position: relative;
}

.advisor-box {
    margin-bottom: 44px;
}

.advisor-box .advisor-thunb {
    width: 250px;
    height: 250px;
    aspect-ratio: 1/1;
    border-radius: 8px 8px 8px 64px;
    background: #D9D9D9;
    overflow: hidden;
    margin-bottom: 24px;
}

.advisor-box .advisor-thunb img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.advisor-box h4 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    color: var(--Dark-Navy);
    text-align: center;
}

.pl-inner {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 19.5px 16.96px;
    flex-wrap: wrap;
    padding-top: 66px;
    padding-bottom: 75px;
}

.pl-box {
    width: 174.043px;
    height: 153.496px;
    border-radius: 22px;
    background: var(--White-green-Gradient, linear-gradient(25deg, #F8FBFA 0.79%, #FFF 82.78%));
    box-shadow: 0 4px 10px 0 rgba(97, 94, 112, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 1s;
}

.pl-box img {
    height: auto;
    max-width: calc(100% - 60px);
    transition: all 1s;
}

.pl-box:hover img {
    transform: scale(1.05);
}

.pd-bg {
    width: 1637px;
    height: 1.2px;
    background: linear-gradient(99deg, rgba(10, 207, 177, 0.50) 0%, rgba(28, 18, 79, 0.50) 32.58%, rgba(10, 207, 177, 0.50) 62.72%, rgba(246, 250, 245, 0.50) 83.08%);
    margin-top: 90px;
}

.pd-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.pd-right {
    width: 412px;
}

.pd-inner h4 {
    text-transform: uppercase;
    color: var(--Base-Gray);
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 34px;
    font-size: 20px;
}

.story-content {
    max-width: 668px;
    color: var(--Midnight-Navy);
}

.pd-articles {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pd-article-box {}

.pd-article-box a {
    text-decoration: none;
    max-width: 337px;
    display: inline-block;
}

.pd-article-box h5 {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: var(--Dark-Navy);
    margin-bottom: 22px;
}

.pd-article-box span {
    font-size: 14px;
    line-height: 24px;
    color: var(--Base-Gray);
}

.pdab-bg {
    background: linear-gradient(99deg, rgba(10, 207, 177, 0.50) 0%, rgba(28, 18, 79, 0.50) 32.58%, rgba(10, 207, 177, 0.50) 62.72%, rgba(246, 250, 245, 0.50) 83.08%);
    height: 1.1px;
    margin-top: 18px;
    margin-left: -25px;
    width: 520px;
}

.worker-data {
    padding-top: 65px;
}

.worker-data .pd-right {
    width: auto;
    max-width: none;
}

.worker-data .pd-inner {
    align-items: center;
}

.worker-data .worker-circle {
    margin-top: 20px;
}

.company-banner {
    padding-top: 169px;
}

.company-banner .container-custom {
    position: relative;
}

.compnay-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cbc-bg {
    width: 634px;
    height: 571px;
    border-radius: 72px 8px;
    opacity: 0.14;
    background: linear-gradient(180deg, #035C59 0%, #F6FAF5 100%);
    position: absolute;
    left: 20px;
    top: 0;
    z-index: -1;
}

.cbc-img {
    width: 883px;
    height: 571.435px;
    overflow: hidden;
    border-radius: 8px 72px;
    /* background: #D9D9D9; */
}

.cbc-img img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.cbc-left {
    margin: auto;
}

.cbc-logo {
    padding-left: 0;
    padding-right: 0;
}


.compnay-info-outer {
    padding-top: 105px;
}

.ci-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.ci-left {
    width: 408px;
    overflow: hidden;
}

.ci-right {
    max-width: 863px;
}

.ci-left label {
    display: block;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 26px;
}

.cil-bg {
    width: 528px;
    height: 1px;
    background: linear-gradient(105deg, rgba(10, 207, 177, 0.35) 0.52%, rgba(255, 255, 255, 0.70) 101.72%);
    margin-top: 29px;
    margin-bottom: 20px;
}

.cil-section {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
}

.cil-section strong {
    font-weight: 600;
    display: block;
}

.cil-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.cil-section ul li {}

.cli-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 86px;
}

.clis-box {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.clis-box strong {}

.cil-section p {}

.cil-section a {
    text-decoration: none;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: #035C59;
}

.impact-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--Base-Gray);
    padding-top: 10px;
}

.impact-ct {
    letter-spacing: -0.32px;
    line-height: 24px;
    font-size: 16px;
    font-family: "DM Mono", monospace;
}

.impact-text p {
    margin: 0;
}

.company-ceo {
    padding-top: 111px;
}

.cco-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 1160px;
    margin: auto;
}

.cco-bg {
    width: 121%;
    height: 1px;
    background: linear-gradient(99deg, rgba(10, 207, 177, 0.50) 0%, rgba(28, 18, 79, 0.50) 32.58%, rgba(10, 207, 177, 0.50) 62.72%, rgba(246, 250, 245, 0.50) 83.08%);
    margin-top: 113px;
    padding: 0;
}

.cco-right {
    max-width: 879px;
    font-size: 30px;
    line-height: 42px;
    font-weight: 700;
    color: var(--Base-Gray);
    padding-top: 100px;
}

.cco-right span {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.cco-img {
    width: 356px;
    height: 382px;
    background-image: url("../images/img-frame.png");
    position: relative;
}

.cco-img .img-frame {
    width: 311px;
    height: 311px;
    overflow: hidden;
    border-radius: 311px;
    position: absolute;
    bottom: 0;
}

.cco-img .img-frame img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    height: 100%;
    /*transform: scale(1.6) translate(-11px, 71px);*/
}


.portfolio-banner {
    padding-top: 139px;
}

.potfolio-nav {
    display: flex;
    align-items: center;
    gap: 56px;
}

.potfolio-nav a:not(.green-btn) {

    text-decoration: none;
    color: var(--Dark-Navy, #1C124F);
    font-size: 16px;
    line-height: normal;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.potfolio-nav a:not(.green-btn):after {
    content: '';
    background-image: url(../images/chevron-down.svg);
    display: inline-block;
    width: 14px;
    height: 14px;
    background-size: cover;
    transform: rotate(0deg);
    transition: all 0.3s ease-in-out;
    margin-top: 4px;
}

.potfolio-nav a.active-cat-nav:not(.green-btn):after {
    transform: rotate(180deg);
}

.potfolio-nav a:not(.green-btn):before,
.porofolio-nav-dropdown a:before {
    content: '';
    width: 4px;
    height: 4px;
    background-color: var(--Dark-Navy);
    border-radius: 9999px;
    display: inline-block;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.porofolio-nav-dropdown ul li a.is-active::before,
.porofolio-nav-dropdown a:before {
    background-color: var(--Base-Gray);
}

.porofolio-nav-dropdown ul li a.is-active::before,
.potfolio-nav a:not(.green-btn):hover:before,
.porofolio-nav-dropdown a:hover:before {
    opacity: 1;
}

.pbn-bg {
    height: 1.2px;
    background: linear-gradient(99deg, rgba(10, 207, 177, 0.50) 0%, rgba(28, 18, 79, 0.50) 32.58%, rgba(10, 207, 177, 0.50) 62.72%, rgba(246, 250, 245, 0.50) 83.08%);
    margin-top: 32px;
    width: 1619px;
}

.pbnd-bg {
    height: 1px;
    background: linear-gradient(105deg, rgba(10, 207, 177, 0.35) 0.52%, rgba(255, 255, 255, 0.70) 101.72%);
    margin-top: 25px;
    opacity: 0;
    filter: blur(2px);
    transition: opacity 0.45s ease, filter 0.45s ease;
}

.porofolio-nav-dropdown-opened .pbnd-bg {
    opacity: 1;
    filter: blur(0);
}

.porofolio-nav-dropdown {
    padding-top: 23px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}

.porofolio-nav-dropdown.porofolio-nav-dropdown-opened {
    opacity: 1;
    visibility: visible;
}

.porofolio-nav-dropdown ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-flex;
    align-items: center;
    justify-content: start;
    gap: 54px;
}

.porofolio-nav-dropdown a {
    font-size: 16px;
    text-decoration: none;
    color: var(--Base-Gray);
    font-weight: 500;
    line-height: 26px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transform: translateX(0);
    transition: all 1s;
}

.page-template-template-portfolio .porofolio-nav-dropdown a:hover {
    transform: translateX(5px);
}


.porofolio-nav-dropdown a:hover:before {
    opacity: 1;
}

.portfolio-grids-outer {
    padding-top: 34px;
}

.portfolio-box {
    height: 361px;
    width: 431px;
    border-radius: 64px 8px 8px 8px;
    background: rgba(3, 92, 89, 0.14);
    box-shadow: 0 4px 16px 0 rgba(207, 230, 225, 0.30) inset;
    position: relative;
    overflow: hidden;
    pointer-events: all;
}

.portfolio-box::before {
    content: '';
    border-radius: 0 0 8px 8px;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0.00) 13.16%, rgba(1, 41, 39, 0.65) 102.42%);
    mix-blend-mode: multiply;
    width: 100%;
    height: 120px;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 1s;
    z-index: 1;
    pointer-events: none;
}

.portfolio-box:hover::before {
    opacity: 1;
    visibility: visible;
}

.portfolio-box .acquired-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 0;
    z-index: 1;
    padding-bottom: 13px;
    transition: all 1s;
}


.portfolio-box:hover .acquired-by {
    opacity: 0;
    visibility: hidden;
}

.portfolio-box .acquired-by p {
    margin: 0;

    /* Body */
    font-family: "DM Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    background: var(--White-green-Gradient, linear-gradient(25deg, #F8FBFA 0.79%, #FFF 82.78%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portfolio-box .acquired-by img {
    width: 74px;
    height: 37px;
    aspect-ratio: 2/1;
    object-fit: contain;
}

.portfolio-box::after {
    content: '';
    /* border-radius: 8px 64px 8px 8px; */
    opacity: 0.2;
    background: var(--Deep-Green, #035C59);
    mix-blend-mode: color;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    background: var(--Deep-Green, #035C59);
    pointer-events: none;
}

.portfolio-box .portfolio-thumb {
    height: 291px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-size: contain !important;
    background-position: bottom !important;
}

.portfolio-content-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.box-blend {
    width: 100%;
    height: 87px;
    border-radius: 0 0 8px 8px;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0.00) 13.16%, rgba(1, 41, 39, 0.65) 102.42%);
    mix-blend-mode: multiply;
    position: absolute;
    bottom: 0;
}

.portfolio-badge {
    min-width: 67px;
    padding: 0 5px;
    height: 18.532px;
    border-radius: 2.138px;
    background: var(--Dark-Mint, #0B9B85);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 14px;
    top: 14px;
}

.portfolio-badge.blue-badge {
    border-radius: 2.138px;
    background: var(--Tech-Purple, #32208C);
}

.portfolio-badge span {
    font-size: 12px;
    font-weight: 600;
    line-height: 18.532px;
    color: #fff;
    background: var(--White-green-Gradient, linear-gradient(25deg, #F8FBFA 0.79%, #FFF 82.78%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding-top: 0.7px; */
}

.portfolio-logo {
    margin-top: 22px;
    max-width: max-content;
    height: 29px;
    width: 100%;
}

.portfolio-short-desc {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    color: #fff;
    max-width: 356px;
    margin: 0 auto;
    position: absolute;
    z-index: 2;
    min-height: auto;
    bottom: 0;
    top: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    padding-bottom: 28px;
}

.portfolio-box:hover .portfolio-short-desc {
    opacity: 1;
    visibility: visible;
}

.potfolio-grids {
    display: flex;
    justify-content: start;
    gap: 32px 21px;
    flex-wrap: wrap;
    padding-bottom: 98px;
}

.newsletter-wrap {
    padding-top: 169px;
    padding-bottom: 120px;
}

.newsletter-inner {
    position: relative;
    max-width: 1122px;
    height: 500px;
    margin: 0 auto;
    border-radius: 6px 102px;
    overflow: hidden;
}

.newsletter-inner:after,
.newsletter-inner:before {
    content: '';
    border-radius: 6px 102px;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    display: block;
    height: 100%;

}

.newsletter-inner:before {
    background: linear-gradient(-90deg, rgba(185, 238, 230, 0.09) -13.66%, rgba(98, 197, 182, 0.27) 76.24%, #4554BF 174.06%);
}

.newsletter-inner:after {
    background: linear-gradient(-90deg, rgba(185, 238, 230, 0.06) -13.66%, rgba(98, 197, 182, 0.18) 76.24%, rgba(69, 84, 191, 0.65) 174.06%);
}

.newsi-content {
    position: relative;
    z-index: 1;
}

.newsi-content h1 {
    text-align: center;
    font-size: 62px;
    margin: 0;
    margin-top: 45px;
    margin-bottom: 29px;
}

.newsi-content .newsi-desc {
    font-size: 28px;
    font-weight: 500;
    line-height: 39px;
    text-align: center;
    margin: 0;
    color: var(--Dark-Navy);
    margin-bottom: 40px;
}

.newsletter-form {
    max-width: 637px;
    margin: 0 auto;
}

.newsletter-form label,
.cpw-form label {
    font-size: 14px;
    color: var(--Dark-Navy);
    line-height: 24px;
    font-weight: 300;
    display: block;
}

.newsletter-form label span,
.cpw-form label span {
    display: block;
    width: 100%;
    position: relative;
}

.wpcf7-not-valid-tip {
    position: absolute !important;
    color: #D65C5C;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
}

.newsletter-form span input[type="email"],
.cpw-form span input[type="email"],
.cpw-form span input[type="text"],
.cpw-form span input[type="tel"],
.cpw-form span textarea {
    width: 100%;
    height: 48px;
    border-radius: 13px;
    border: 0.6px solid var(--Dark-Navy, #1C124F);
    background: var(--Background-green, #F6FAF5);
    padding: 16px;
    color: var(--Dark-Navy);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    margin-top: 3px;
    outline: none;
    resize: none;
    font-weight: 500;
}

.cpw-form span input.wpcf7-not-valid[type="email"],
.cpw-form span input.wpcf7-not-valid[type="text"],
.cpw-form span input.wpcf7-not-valid[type="tel"],
.cpw-form span textarea.wpcf7-not-valid {
    border-radius: 13px;
    border: 0.6px solid #E57373;
    background: rgba(229, 115, 115, 0.03);
}

.cpw-form span textarea {
    height: 140px;
}

.newsletter-form span input[type="checkbox"] {
    border-radius: 2px;
    border: 0.6px solid var(--Dark-Navy, #1C124F);
    background: var(--Background-green, #F6FAF5);
}

.newsletter-form .wpcf7-list-item,
.cpw-form .wpcf7-list-item {
    margin: 0;
    margin-top: 6px;
}

.newsletter-form .wpcf7-list-item label,
.cpw-form .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 6px;
}

.newsletter-form .wpcf7-list-item span,
.cpw-form .wpcf7-list-item span {
    font-size: 12px;
    font-weight: 300;
    line-height: 22px;
    color: var(--Dark-Navy);
}

.newsletter-form input[type="submit"],
.cpw-form input[type="submit"] {
    border-radius: 13px;
    background: var(--Dark-Navy, #1C124F);
    border: none;
    outline: none;
    width: 112px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    font-family: "DM Sans", sans-serif;
    margin-top: 49px;
}

.contact-page-wrap {
    margin-top: 145px;
    background: var(--Purple-turquies-gradient, linear-gradient(6deg, #4554BF -35.28%, rgba(98, 197, 182, 0.27) 21.96%, rgba(185, 238, 230, 0.09) 74.55%));
    background: linear-gradient(6deg, #4554BF -35.28%, rgba(98, 197, 182, 0.27) 21.96%, rgba(185, 238, 230, 0.00) 74.55%);
}

.cpw-inner {}

.cpw-head h1 {
    font-size: 62px;
    line-height: 62px;
    text-align: center;
    margin: 0;
    padding-top: 12px;
}

.cpw-head strong {
    font-size: 28px;
    line-height: 39px;
    font-weight: 500;
    color: var(--Dark-Navy);
    display: block;
    text-align: center;
    margin-top: 13px;
    margin-bottom: 5px;
}

.cpw-head p {
    text-align: center;
    font-size: 24px;
    line-height: 36px;
    margin: 0;
    color: var(--Dark-Navy);
}

.cpw-form {
    max-width: 884px;
    margin: 0 auto;
    border-radius: 6px 102px;
    background: var(--Background-green, #F6FAF5);
    box-shadow: 0 4px 20px 0 rgba(50, 43, 95, 0.05);
    padding: 64px 124px;
    margin-top: 43px;
}

.cpw-form label {
    margin-bottom: 27px;
}

.cpw-form span input[type="email"],
.cpw-form span input[type="text"],
.cpw-form span input[type="tel"] {}

.cpw-form .disclaimer {
    font-size: 10px;
    font-weight: 300;
    line-height: 18px;
    color: var(--Base-Gray);
}

.wpcf7-form-control-wrap {
    display: block;
}

.contact-more-details {
    margin-top: 72px;
}

.cmd-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.cmd-sep {
    background: linear-gradient(98deg, #1C124F -37.02%, #0ACFB1 93.67%);
    width: 100%;
    height: .6px;
    position: absolute;
}

.cmd-img {
    width: 261.333px;
    height: 160px;
    overflow: hidden;
    border-radius: 35px 6px 6px 0px;
    background: #D9D9D9;
}

.cmd-img img {
    width: 100%;
}

.cmd-right ul {
    margin: 0;
    list-style: none;
    max-width: 395px;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

.cmd-right ul li {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 13px;
}

.cmd-right ul li img {
    margin-top: 6px;
}

.cmd-right ul li,
.cmd-right ul li a {
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
    color: var(--Midnight-Navy);
    text-decoration: none;
}

.cmd-right ul li .weblink {
    color: #035C59;
}

.cmd-social {
    margin-top: 70px;
}

.cmds-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 21.5px;
    margin-top: 23px;
    padding-bottom: 120px;
}

.cmds-icons a {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 43px;
    border: 1.344px solid var(--Dark-Navy, #1C124F);
}

.cmds-icons a img {
    width: 21.5px;
    height: 21.5px;
}

.cmd-social h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    color: var(--Dark-Navy);
    margin: 0;
    text-align: center;
}

.not-found-banner {
    background-image: url("../images/not-found-bg.png");
    height: 1082px;
    background-size: cover;
    background-position: center;
    margin-top: 72px;
    margin-bottom: -47px;
}

.not-found-banner .nfb-inner,
.not-found-banner .container-custom {
    height: 100%;
}

.not-found-banner .nfb-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.not-found-banner .nfb-inner h1 {
    font-size: 370.746px;
    font-style: normal;
    font-weight: 500;
    line-height: 370.746px;
    color: #F6FAF5;
    font-family: "DM Mono", monospace;
    margin: 0;
}

.not-found-banner .nfb-inner h3 {
    font-size: 62px;
    line-height: 62px;
    font-weight: 600;
    color: #F6FAF5;
    margin: 0;
    margin-bottom: 24px;
}

.not-found-banner .nfb-inner p {
    color: #F6FAF5;
    font-weight: 500;
    font-size: 28px;
    line-height: 29px;
    margin: 0;
    margin-bottom: 45px;
}

.not-found-banner .nfb-inner a {
    width: 240px;
    height: 42px;
}

footer {
    /* background: linear-gradient(157deg, var(--Midnight-Navy, #0C0821) -4.45%, var(--Dark-Navy, #1C124F) 65.03%); */
    padding-top: 83px;
    position: relative;
    padding-bottom: 95px;
    background: url('../images/footer-bg-img.png');
    background-repeat: no-repeat;
    background-size: cover;
}

footer:before {
    content: '';
    background-image: url(../images/footer-bg.png);
    position: absolute;
    width: 1320px;
    height: 470px;
    right: 0;
    top: 286px;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 150% 160%;
}

.footer-form {}

.footer-form h3 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--GreenBackground);
    font-family: "DM Mono", monospace;
    text-align: center;
}

.footer-form form {
    margin-top: 32px;
    text-align: center;
}

.footer-form input:not([type="submit"]) {
    background-color: transparent;
    width: 567px;
    height: 36px;
    border-radius: 20px 4px;
    border: 1.4px solid var(--Light-Turkoise, #CFF5EF);

}

.footer-form input[type="submit"] {
    margin-left: 24px;
}

.footer-form .form-description {
    text-align: center;
    color: var(--GreenBackground);
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    margin-top: 32px;
    margin-bottom: 0;
}

.footer-widgets {
    display: flex;
    align-items: flex-start;
    justify-content: start;
    gap: 207px;
    padding-top: 119px;
}

.footer-widgets ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-widgets li {}

.footer-widgets a {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    text-decoration: none;
    color: var(--Light-Gray);
}

.footer-bottom p {
    color: var(--Light-Gray);
    font-size: 14px;
    line-height: 24px;
}

.fb-center {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 22px;
    position: relative;
    top: 5px;
}

.fb-center .fb-links {}

.fb-center .fb-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fb-center .fb-links li {}

.fb-center .fb-links li a {
    font-size: 14px;
    color: #C0BFC6;
    line-height: 24px;
    text-decoration: none;
}

.fb-social .social-link {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    top: -6px;
}

.fb-social label {
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #0B9B85;
    margin-bottom: 24px;
    position: relative;
    top: -12px;
}

.fb-social .social-link a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px #fff;
    border-radius: 9999999px;
}

.footer-bottom .fb-left {
    max-width: 268px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 120px;
}

.companies-slider .swiper-slide {
    overflow: hidden;
}

.companies-slider .swiper-slide img {
    transition: transform 1s ease;
    will-change: transform;
    width: 100%;
    height: 100%;
    object-fit: cover;
    text-align: center;
}

.companies-slider .swiper-slide a {
    height: 85px;
}

.companies-slider .swiper {
    display: flex;
    align-items: center;
}

.companies-slider .swiper-slide:hover img {
    transform: scale(1.03);
}


.team-thumb {
    overflow: hidden;
}

.team-thumb img {
    transition: transform 0.5s ease-in-out;
}

.team-thumb:hover img {
    transform: scale(1.03);
}

/* ===== HEADER NAV UL ===== */
header nav ul {
    position: relative;
}

header nav ul li {
    position: relative;
}

header nav ul li.menu-item-has-children::after {
    content: '';
    width: 100%;
    height: 50px;
    position: absolute;
    bottom: -45px;
    left: 50%;
    display: block;
    opacity: 0;
    visibility: hidden;
    min-width: 800px;
    transform: translateX(-50%);
    z-index: 9;
}

header nav ul li.menu-item-has-children:hover:after {
    opacity: 1;
    visibility: visible;
}


/* ===== MEGA MENU ===== */
.mega-menu {
    position: fixed;
    top: 77px;
    left: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
    padding: 43px 20px 45px 20px;
    border-radius: 0 0 16px 16px;
    background: var(--Background-green, #F6FAF5);
    box-shadow: 0 4px 4px 0 rgba(28, 18, 79, 0.12);
}

/* SHOW MEGA MENU ON HOVER */
nav ul li:hover>.mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===== TOP-LEVEL NAV LINKS ===== */
header .h-inner nav>ul>li>a {
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 1s;
    position: relative;
}

/* TOP-LEVEL LINK ::AFTER DOT */
header .h-inner nav>ul>li>a::after {
    content: '';
    width: 4px;
    height: 4px;
    background-color: var(--Natural-Gray, #DADAE0);
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-40%);
    opacity: 0;
    visibility: hidden;
    border-radius: 100%;
    transition: all 1s;
}


/*.page-template-template-home header .h-inner nav>ul>li>a::after {*/
/*background: var(--Midnight-Navy, #0C0821);*/

/*}*/

/* SHOW DOT ON HOVER TOP-LEVEL */
/* header .h-inner nav>ul>li:hover>a::after {
    opacity: 1;
    visibility: visible;
} */
header .h-inner nav>ul>li>a::after {
    content: '';
    width: 4px;
    height: 4px;
    background-color: var(--Natural-Gray, #DADAE0);
    position: absolute;
    right: 0;
    /* start from right */
    top: 50%;
    transform: translateX(100%) translateY(-50%);
    /* fully to the right */
    opacity: 0;
    visibility: hidden;
    border-radius: 50%;
    transition: transform 0.5s cubic-bezier(.25, 1.5, .5, 1), opacity 0.3s;
}

header .h-inner nav>ul>li.current-menu-item>a::after,
header .h-inner nav>ul>li:hover>a::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(0%) translateY(-50%);
    /* move left */
}

header .h-inner nav>ul>li>a img {
    transition: transform 0.5s cubic-bezier(.25, 1.5, .5, 1), opacity 0.5s;
    top: 1px;
    position: relative;
}

header .h-inner nav>ul>li:hover>a img {
    transform: rotate(180deg);
    transition: transform 0.5s cubic-bezier(.25, 1.5, .5, 1), opacity 0.5s;
    top: 2px;
}

/* ===== INNER CONTENT CENTER ===== */
.mega-menu-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    column-gap: 124px;
}

/* ===== MEGA MENU ITEMS ===== */
.menu-item {
    display: flex;
    flex-direction: column;
    width: 266px;
    margin: auto;
}

/* MEGA MENU LINKS */
.mega-menu-content .menu-item>a {
    margin-bottom: 10px;
    color: var(--Dark-Navy, #1C124F);
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    position: relative;
    transform: translateX(0);
    transition: all 1s;
    transition: transform 0.5s cubic-bezier(.25, 1.5, .5, 1), opacity 0.5s;
    color: #1c124f !important;
}

/* Move menu item slightly on hover */
.mega-menu-content .menu-item:hover>a {
    transform: translateX(11px);
}

/* menu-item ko relative karna zaroori hai */
.mega-menu-content .menu-item {
    position: relative;
}

/* Dot for current menu item (visible by default) */
.h-inner nav ul.mega-menu-content .current-menu-item::after {
    content: '';
    width: 4px;
    height: 4px;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-40%);
    transition: opacity 0.2s;
    background: var(--Midnight-Navy, #0C0821);
    border-radius: 100%;
    opacity: 1;
    visibility: visible;
}

.mega-menu-content .menu-item::after {
    content: '';
    width: 4px;
    height: 4px;
    position: absolute;
    left: 0;
    top: 13px;
    transform: unset;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s;
    background: var(--Midnight-Navy, #0C0821);
    border-radius: 100%;
}

/* Dot on hover */
.mega-menu-content .menu-item:hover::after {
    opacity: 1;
    visibility: visible;
}

/* MEGA MENU PARAGRAPH */
.menu-item p {
    color: #767195;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
}

.h-inner nav ul li {
    display: flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
}

.page-template-template-about img.home-sticky-logo {
    display: none;
}

.page-template-template-about header.sticky .h-logo a img {
    display: none;
}

.page-template-template-about header.sticky img.home-sticky-logo {
    display: block !important;
}

.page-template-template-about header.sticky .h-inner nav>ul>li>a {
    color: var(--Midnight-Navy, #0C0821);
}

.page-template-template-about header.sticky img {
    display: none;
}

.page-template-template-about header img {
    display: block;
}

.page-template-template-about img.sticky-arrow {
    display: none !important;
}

.page-template-template-about header.sticky img.sticky-arrow {
    display: block !important;
}


header.inner-page-header .h-inner nav>ul>li>a img {
    display: none;
}


header.inner-page-header img.sticky-arrow {
    display: block !important;

}

header.inner-page-header .h-inner nav ul li.current_page_item a::after,
header.inner-page-header .h-inner nav>ul>li>a::after {
    background: var(--Midnight-Navy, #0C0821);
}


header.inner-page-header .mega-menu {
    top: 67px;
}

.page-template-template-about header.sticky .outline-btn {
    border: 1px solid var(--Dark-Navy, #1C124F);
    color: var(--Midnight-Navy, #0C0821);
}



.news-slider {
    position: relative;
}

/* Hide buttons by default */
.news-slider-outer .swiper-button-next,
.news-slider-outer .swiper-button-prev {
    opacity: 1;
    visibility: visible;
    background: url('../images/slider-button.png');
    width: 60px;
    height: 60px;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 60%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: all;
}

.home .news-slider-outer .swiper-button-next,
.home .news-slider-outer .swiper-button-prev {
    opacity: 1;
    visibility: visible;
}

/* Position buttons */
.news-slider-outer .swiper-button-prev {
    left: 10px;
}

.news-slider-outer .swiper-button-next {
    right: 10px;
    transform: scaleX(-1) translateY(-50%);
}

/* Arrow icon using CSS */
.news-slider-outer .swiper-button-prev::after,
.news-slider-outer .swiper-button-next::after {
    display: none;
}

.news-slider-outer .swiper-button-prev::after {
    transform: rotate(135deg);
}

.news-slider-outer .swiper-button-next::after {
    transform: rotate(-45deg);
}

/* Show arrows on hover */
.news-slider-outer:hover .swiper-button-prev,
.news-slider-outer:hover .swiper-button-next {
    opacity: 1;
    visibility: visible;
}

footer .container-custom {
    position: relative;
    z-index: 9;
}

.news-slider-outer {
    position: relative;
}

.news-slider-outer::after {
    content: '';
    background: linear-gradient(270deg, rgba(246, 250, 245, 0.80) 34.79%, rgba(234, 246, 240, 0.00) 95.53%);
    filter: blur(14.5px);
    width: 217px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    display: block;
    z-index: 1;
    transform: translate(-60%, -50%) scaleX(-1);
    transition: all 1s;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.news-slider-outer::before {
    content: '';
    background: linear-gradient(270deg, rgba(246, 250, 245, 0.80) 34.79%, rgba(234, 246, 240, 0.00) 95.53%);
    filter: blur(14.5px);
    width: 217px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 50%;
    display: block;
    z-index: 3;
    transform: translate(40%, -50%);
    transition: all 1s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.news-slider-outer:hover::after,
.news-slider-outer:hover::before {
    visibility: visible;
    opacity: 1;
    transition: all 1s;

}

.news-slider-outer .swiper-button-next,
.news-slider-outer .swiper-button-prev {
    z-index: 20;
    /* 👈 overlay se zyada */
}

.news-slider-outer::after {
    z-index: 10;
}

.news-slider-outer::before {
    z-index: 11;
}

.news-slider {
    position: relative;
    z-index: 10;
    overflow: visible;
    overflow-x: clip;
}


.bi-content {
    top: 40px;
}


.ip-lottie {
    position: relative;
    left: -82px;
    top: -10px;
}

.news-slide-inner p,
.news-slide p {
    min-height: 115px;
}

.footer-widgets li {
    width: auto;
}


.fb-social {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 17px;
}


.footer-bottom .fb-left img {
    width: 98.969px;
    height: 34.999px;
    aspect-ratio: 98.97/35.00;
}

.home .bs-slide-box {
    width: 180.355px;
    height: 257.271px;
    overflow: hidden;
    transition: all 1s;
}

.bs-slide-box img {
    transition: all 1s;
}

/* .bs-slide-box img:hover {
    transform: scale(1.01);
    position: relative;
    z-index: 999;
    pointer-events: all;
} */

.ip-box:nth-child(3) .ip-lottie {
    width: 100px;
    height: 95px;
    margin: auto;
    left: -40px;
}

.fb-center p {
    position: relative;
    top: -4px;
}

.cmd-sep:first-child {
    top: -28px;
}

.cmd-right {
    position: relative;
}


.tca-content-col {
    position: relative;
    top: -19px;
}

.team-content-area .container-custom {
    max-width: 1137px;
}

.bwh-right p strong {
    font-weight: 600;
}

.partner-data {
    overflow-x: clip;
}

.news-slide.reverse-radius::after {
    border-top-right-radius: unset;
    border-top-left-radius: unset;
    border-radius: 6px 0px 6px 102px;
}

.company-ceo p {
    margin-bottom: 19px;
}

.company-ceo {
    overflow-x: clip;
}

.cbc-logo img {
    width: 279.038px;
    height: 109.135px;
    margin: auto;
}

.portfolio-badge span {
    padding-top: 1px;
}

/* .news-slide {
    background-size: 280% !important;
    background-position: 50% 70% !important;
    transition: all 1s;
}

.news-slide:hover {
    background-size: 300% !important;
    background-position: 50% 100% !important;
} */

.banner-slider {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.partner-data .pdab-bg {
    height: 1px;
}


/* .latest-news .swiper {
    overflow: visible;
    overflow-x: clip;
} */


.latest-news h2 {
    font-size: 54px;
    font-style: normal;
    font-weight: 600;
    line-height: 62px;

}

.home .latest-news h2 {
    background: transparent;
    -webkit-text-fill-color: unset;
    letter-spacing: 2px;
}

/* NEWS PAGES CSS */

.section_nav {
    padding-top: 150px;
}



.section_nav nav {
    position: relative;
    max-width: 1337px;
    margin: auto;
}

.section_nav nav::after,
.section_nav nav::before {
    content: '';
    background-image: url('../images/after_line.png');
    height: 1.2px;
    width: 100%;
    position: absolute;
    top: -27px;
    left: 0;
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
}

.section_nav nav::before {
    top: auto;
    bottom: -32px;
}

.section_nav nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 122px;
}

.section_nav nav ul li {
    list-style-type: none;
    transition: all 1s;
}

.section_nav nav ul li a {
    color: var(--Dark-Navy, #1C124F);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.section_nav nav ul li a::after {
    content: '';
    background: var(--Dark-Mint, #0B9B85);
    width: 4px;
    height: 4px;
    position: absolute;
    left: -10px;
    display: block;
    border-radius: 50%;
    transition: transform 0.5s cubic-bezier(.25, 1.5, .5, 1), opacity 0.3s;
    top: 55%;
    transform: translateX(100%) translateY(-50%);
    opacity: 0;
    visibility: hidden;
}


.section_nav nav ul li.active a::after,
.section_nav nav ul li:hover a::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(0%) translateY(-50%);
}



.section_nav nav ul li.active a{
    font-weight: 600;
}

.insights_top {
    padding-top: 48px;
    padding-bottom: 73px;
}

.insights_top .slider-container {
    position: relative;
    max-width: 1629px;
    margin: auto;
    margin-right: 0;
}

.insights_top h1 {
    color: var(--Midnight-Navy, #0C0821);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-transform: uppercase;
    margin: 0;
}

.insights_top .heading {
    max-width: 1338px;
    margin: auto;
}

.insights_top .navigation-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: end;
    max-width: 172px;
    margin: auto;
    margin-right: 0;
    position: relative;
    top: -13px;
    margin-bottom: 22px;
}

.insights_top .swiper-pagination-fraction {
    position: static !important;
    color: var(--Base-Gray, #615E70);
    font-size: 38px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-family: "DM Mono", monospace;
    letter-spacing: -1.52px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 18px;
}

/* Arrow Styling */
.insights_top .navigation-wrapper .nav-btn::after,
.insights_top .navigation-wrapper .nav-btn::before {
    content: '';
    background-image: url('../images/swiper_arrow-btn.svg');
    background-size: cover;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
}

.insights_top .navigation-wrapper .nav-btn::before {
    left: auto;
    right: 0;
    transform: translateY(-50%) scaleX(-1);
}

.insights_top .swiper-slide {
    display: flex;
    gap: 60px;
    align-items: center;
    background: transparent;
}

.insights_top .slide-image {
    max-width: 553px;
    height: 429px;
    overflow: hidden;
    width: 100%;
    position: relative;
}


.insights_top .slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 64px 8px 8px 8px;
    /* background: var(--Brand-Gradient, linear-gradient(100deg, #1C124F 0%, #035C59 50.85%, #0ACFB1 94.53%)); */
}

.insights_top .slide-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: -webkit-fill-available;
}

.insights_top .slide-content strong {
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px;
    background: linear-gradient(107deg, #1C124F 25.58%, #32208C 87.62%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 435px;
    display: block;
}

.insights_top .slide-content p {
    color: var(--Midnight-Navy, #0C0821);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-top: 32px;
    max-width: 477px;
}

.insights_top .btn-deep {
    color: var(--white, #FFF);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;

    text-decoration: none;

    display: flex;
    width: 112px;
    height: 36px;
    padding: 10px 4px;
    justify-content: center;
    align-items: center;
    gap: 3px;

    border-radius: 13px;
    background: var(--Dark-Navy, #1C124F);
}

.insights_top .text-overlay {
    position: absolute;
    top: 40px;
    z-index: 9999;
    left: 32px;
}

.insights_top .text-overlay h6 {
    color: var(--Light-Turkoise, #CFF5EF);
    font-size: 34.293px;
    font-style: normal;
    font-weight: 600;
    line-height: 40.824px;
}

.insights_top .text-overlay span {
    color: var(--Main-Turquoise, #0ACFB1);
    font-size: 26.912px;
    font-style: normal;
    font-weight: 400;
    line-height: 32.038px;
}

.insights_section .custom_dropdown {
    width: 176px;
    border-radius: 13px;
    border: 1px solid var(--Green-gradient, #0ACFB1);
    position: relative;
    overflow: hidden;
    transition: all 1s;
    background: transparent;
    background: linear-gradient(#F6FAF5, #F6FAF5) padding-box, linear-gradient(100deg, #0ACFB1 16.49%, #035C59 82.94%) border-box;
}

.insights_section .custom_dropdown.active {
    border-radius: 13px;
    width: 176px;

}

.insights_section .dropdown_header {
    padding: 6px 20.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--Midnight-Navy, #0C0821);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    padding-top: 5px;
    width: 176px;
}

.insights_section .arrow {
    background: url('../images/drp-chevron-down.png');
    width: 12px;
    height: 12px;
    background-repeat: no-repeat;
    background-size: cover;
    transform: rotate(180deg);
    transition: all 1s;
}

.insights_section .dropdown_list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    /* Hidden by default */
    opacity: 0;
    transition: all 1s;
}

.insights_section .custom_dropdown.active .dropdown_list {
    max-height: 500px;
    opacity: 1;
    padding: 0 16.5px;
}

.insights_section .custom_dropdown.active .arrow {
    transform: rotate(0deg);
}


.insights_section .dropdown_list li {
    /*border-top: 1px solid #d1efe9;*/
    border-top: 1px solid var(--Green-gradient, #0ACFB1);
}

.insights_section .dropdown_list li a {
    display: block;
    padding: 6px 0;
    text-decoration: none;
    transition: all 1s;
    color: var(--Midnight-Navy, #0C0821);
    text-align: left;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.insights_section .instight_wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 20px;
    padding-top: 68px;
    row-gap: 32px;
}


.insights_section .instight_wrapper .i_card {
    /* background-image: url('../images/i_card1.png'); */
    width: 100%;
    height: 398px;
    position: relative;
    padding-bottom: 0px;
    transition: all 0.3s;
    /*overflow: hidden;*/
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.insights_section .instight_wrapper .i_card img {
    border-radius: 64px 4px 4px 4px;
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}
.page-template-template-playbook-reports .insights_section .instight_wrapper .i_card .insights-image:hover img,
.page-template-template-insights-news .insights_section .instight_wrapper .i_card .insights-image:hover img {
    transform: scale(1.03);
}

.insights_section .instight_wrapper .i_card .insights-image::after {
    content: '';
    border-radius: 0 0 4px 4px;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0.00) -4.32%, rgba(28, 18, 79, 0.80) 55.21%, #0C0821 94.32%);
    mix-blend-mode: darken;
    filter: blur(4px);
    width: 100%;
    height: 130px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.insights_section .instight_wrapper .i_card p {
    color: var(--white, #FFF);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    position: absolute;
    bottom: 15px;
    min-height: 97px;
    z-index: 9;
    left: 50%;
    transform: translateX(-50%);
    max-width: 335px;
    width: 100%;
    display: flex;
    justify-content: center;
}


.insights_section .load-more {
    color: var(--white, #FFF);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    display: flex;
    width: 158px;
    height: 40px;
    padding: 10px 4px;
    justify-content: center;
    align-items: center;
    gap: 3px;

    border-radius: 13px;
    background: var(--Dark-Navy, #1C124F);


    margin: auto;
    margin-top: 50px;
}



.insights_section {
    padding: 0 20px 73px 20px;
    position: relative;
}

.insights_section::after {
    content: '';
    background: linear-gradient(5deg, rgba(69, 84, 191, 0.21) -36.39%, rgba(98, 197, 182, 0.07) 40.24%, rgba(246, 250, 245, 0.03) 99.52%);
    width: 100%;
    height: 90%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.breadcrumbs {
    padding: 103px 20px 42px 20px;
}

.breadcrumbs .flx {
    display: flex;
    gap: 38px;
    align-items: center;
}

.breadcrumbs .flx a {
    color: var(--Light-Gray, #C0BFC6);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    position: relative;
}

.breadcrumbs .flx strong {
    color: var(--Base-Gray, #615E70);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    position: relative;
}

.breadcrumbs .flx strong::after {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--Base-Gray, #615E70);
    border-radius: 100%;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.breadcrumbs .flx a::after {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--Light-Gray, #C0BFC6);
    border-radius: 100%;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
}

.founder_stories h1 {
    color: var(--Dark-Navy, #1C124F);
    font-size: 54px;
    font-style: normal;
    font-weight: 600;
    line-height: 62px;
    /* max-width: 572px; */
    margin: auto;
}

.founder_stories .f_text p {
    color: var(--Dark-Navy, #1C124F);
    text-align: center;
    font-family: "DM Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 140% */
}

.founder_stories .f_text p strong {
    font-weight: 600;
    color: #1C124F;
}

.founder_stories .f_text {
    display: flex;
    gap: 9.75px;
    align-items: center;
    justify-content: center;
}


.founder_stories .flx {
    display: flex;
    flex-direction: column;
    align-items: start;
    /* justify-content: center; */
    gap: 23px;
    margin: auto;
    max-width: 572px;
}

.founder_stories {
    padding: 0 20px 20px 20px;
}

.groove_article .left-sticky {
    max-width: 274px;
    width: 100%;
    padding-top: 20px;
}

.groove_article .left-sticky .bg {
    /* height: 288px; */
    width: 100%;
    position: relative;
    padding-top: 13.88px;
    padding-bottom: 11px;
    padding-left: 22px;
}

.groove_article .left-sticky .bg::after {
    content: '';
    background: url('../images/bg_line.png');
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 8px;
    height: 100%;
    background-size: cover;
}

.groove_article .left-sticky .bg ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 12px;
}

.groove_article .left-sticky .bg ul li {
    list-style-type: none;
}

.groove_article .left-sticky .bg ul li a,
.groove_article .left-sticky .bg span {
    color: var(--Midnight-Navy, #0C0821);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}

.groove_article .g_social_icon {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 16px;
    margin-top: 38px;
    padding-left: 22px;
}

.groove_article .flx {
    display: flex;
    gap: 99px;
}

.groove_article .flx .right-side {

    max-width: 673px;
    width: 100%;
}

.groove_article .flx .right-side img {

    height: auto;
    width: 100%;
    object-fit: contain;
    margin-bottom: 39px;

}
.groove_article .flx .right-side img.post-featured-image{
    border-radius: 64px 4px 4px 4px;
}

.groove_article .flx .right-side h3 {
    color: var(--Dark-Navy, #1C124F);
    font-size: 42px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    margin-bottom: 24px;
    margin-top: 39px;
}

.groove_article .flx .right-side span {
    color: var(--Base-Gray, #615E70);
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    text-transform: uppercase;
}

.groove_article .flx .right-side p,
.groove_article .flx .right-side h6 {
    color: var(--Midnight-Navy, #0C0821);

    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;

}

.groove_article .flx .right-side p {
    color: var(--Midnight-Navy, #0C0821);

    font-size: 20px;
    line-height: 28px;
    margin-bottom: 0;
}

.groove_article .flx .right-side h6 {
    margin-bottom: 30px;
    margin-top: 32px;
}

.groove_article .flx .right-side iframe {
    height: 100%;
    width: 100%;
    margin: 0;
    border-radius: 8px;
}

.groove_article .flx .right-side h5 {
    color: var(--Midnight-Navy, #0C0821);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.groove_article .flx .right-side ul li a {
    color: var(--Midnight-Navy, #0C0821);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 44px;
    text-decoration: none;
}

.groove_article .flx .right-side ul {
    padding: 0;
    margin: 0;
    padding-left: 30px;
    padding-bottom: 65px;
}

.groove_article .flx .right-side ul li::marker {
    font-size: 16px;
    line-height: normal;
    position: relative;
}

/*
.groove_article .flx .right-side ul li::after {
    content: '';
    background-color: #0C0821;
    width: 4px;
    height: 4px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
} */

.groove_article .flx .right-side p a {
    color: var(--Deep-Green, #035C59);
    text-decoration: none;

}

.groove_article .flx .right-side p:first-of-type {
    padding: 0;
}

.groove_article .flx .right-side p:not(:first-of-type) {
    padding: 10px 0;
}

.groove_article {
    background: linear-gradient(7deg, rgba(69, 84, 191, 0.21) -27.72%, rgba(98, 197, 182, 0.07) 29.02%, rgba(246, 250, 245, 0.03) 72.92%);
    padding: 20px 20px 110px 20px;
}

.left-sticky {
    position: sticky;
    top: 120px;
    /* header ke hisaab se adjust karein */
    align-self: flex-start;
}

.shift-happens .flx {
    display: flex;
    justify-content: start;
    gap: 60px;
    align-items: self-start;
    margin-left: 0;
}

.shift-happens .flx h1 {

    /* H2 */
    font-family: "DM Sans";
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px;
    background: linear-gradient(107deg, #1C124F 25.58%, #32208C 87.62%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 329px;
    margin: 0;
}

.shift-happens .flx p {
    color: var(--Midnight-Navy, #0C0821);

    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.shift-happens .flx .text-wrapper {
    max-width: 477px;
    display: flex;
    justify-content: space-between;
    gap: 32px;
    flex-direction: column;
    padding-top: 0px;
}

.shift-happens .flx .text-wrapper .ctm_btn {
    color: var(--white, #FFF);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;

    display: flex;
    width: 112px;
    height: 36px;
    padding: 10px 4px;
    justify-content: center;
    align-items: center;
    gap: 3px;

    border-radius: 13px;
    background: var(--Dark-Navy, #1C124F);

    text-decoration: none;
}


.shift-happens .flx .img-wrapper {
    max-width: 725px;
    height: 429px;
}

.shift-happens .flx .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 64px 4px 4px 4px;
}

.shift-happens {
    padding: 75px 20px 40px 20px;
    position: relative;

}

.shift-happens::after {
    content: '';
    background: linear-gradient(7deg, rgba(69, 84, 191, 0.21) -27.72%, rgba(98, 197, 182, 0.07) 29.02%, rgba(246, 250, 245, 0.03) 72.92%);
    height: 975px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    z-index: -1;
}

.upcoming_events h2 {
    color: var(--Midnight-Navy, #0C0821);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-transform: uppercase;
}

.upcoming_events .events_cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
    margin-top: 68px;
}

.upcoming_events .events_cards .up_card .register_btn {
    color: var(--Dark-Navy, #1C124F);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    display: flex;
    width: 112px;
    height: 36px;
    padding: 10px 0 10px 4px;
    justify-content: center;
    align-items: center;
    gap: 3px;

    border: transparent;

    border-radius: 13px;
    background: var(--Light-Turkoise, #CFF5EF);

    text-decoration: none;

    position: absolute;
    right: 14px;
    top: 14px;
    z-index: 9;
}


.upcoming_events .events_cards .up_card .bottom_text h6 {
    color: var(--white, #FFF);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 11px;
}


.upcoming_events .events_cards .up_card {
    /* background-image: url('../images/up_card1.png'); */
    width: 100%;
    position: relative;
    transition: all 1s;
}

.upcoming_events .events_cards .up_card:hover {
    transform: translateY(-20px);
}

.upcoming_events .events_cards .up_card .bg-img {
    max-width: 431px;
    height: 398px;
}

.upcoming_events .events_cards .up_card .bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 64px 4px 4px 4px;
}

.upcoming_events .events_cards .up_card::after {
    content: '';
    border-radius: 0 0 4px 4px;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0.00) -4.32%, rgba(28, 18, 79, 0.80) 55.21%, #0C0821 94.32%);
    mix-blend-mode: darken;
    filter: blur(4px);
    width: 100%;
    height: 250px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
}

.upcoming_events .events_cards .up_card .b_detail {
    display: flex;
    align-items: center;
    gap: 10px;
}

.upcoming_events .events_cards .up_card .b_detail p {
    color: var(--white, #FFF);

    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.upcoming_events .events_cards .up_card .b_detail .inner-flx {
    display: flex;
    align-items: center;
    gap: 13px;

}

.upcoming_events .events_cards .up_card .bottom_text {
    position: absolute;
    bottom: 0;
    z-index: 9;
    left: 22px;
    padding-bottom: 13px;
}

.upcoming_events {
    padding: 43px 20px 176px 20px;
    position: relative;
}


.playbooks_sections .img-wrapper {
    max-width: 670px;
    height: 429px;
}

.playbooks_sections .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 64px 8px 8px 8px;
    background: #1C124F;
}


.playbooks_sections .flx {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}


.playbooks_sections .text-wrapper {
    max-width: 626px;
    position: relative;
}

.playbooks_sections .text-wrapper h1 {
    margin: 0;
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px;
    background: linear-gradient(107deg, #1C124F 25.58%, #32208C 87.62%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.playbooks_sections .text-wrapper span {
    color: var(--Midnight-Navy, #0C0821);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 133.333% */
}

.playbooks_sections .text-wrapper strong {
    color: var(--Midnight-Navy, #0C0821);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.2px;
}

.playbooks_sections .text-wrapper p {
    color: var(--Midnight-Navy, #0C0821);

    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.playbooks_sections .detail_text {
    padding-top: 20px;
    /* padding-bottom: 24px; */
    position: relative;
}

.insights_top .slide-content p.more-words::after,
.playbooks_sections .detail_text::after {
    content: '';
    width: 100%;
    height: 83px;
    background: linear-gradient(180deg, rgba(246, 250, 245, 0.00) -78.92%, #F6FAF5 93.37%);
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.playbooks_sections .text-wrapper .read_more {
    color: var(--white, #FFF);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    text-decoration: none;
    display: flex;
    width: 136px;
    height: 36px;
    padding: 10px 4px;
    justify-content: center;
    align-items: center;
    gap: 3px;
    border-radius: 13px;
    background: var(--Dark-Navy, #1C124F);
    margin-top: 17px;
}

.playbooks_sections {
    padding: 71px 20px 38px 20px;
    position: relative;
}

.playbooks_sections::after {
    content: '';
    height: 0;
    width: 100%;
    background: linear-gradient(7deg, rgba(69, 84, 191, 0.21) -27.72%, rgba(98, 197, 182, 0.07) 29.02%, rgba(246, 250, 245, 0.03) 72.92%);
    position: absolute;
    top: 84px;
    left: 0;
    z-index: -1;
}

.insights_section.play_insights {
    position: relative;
    padding-top: 40px;
}

.insights_section.play_insights .playbook_btn {
    position: absolute;
    top: 27px;
    left: 29px;
    font-size: 9.979px;
    font-style: normal;
    font-weight: 600;
    line-height: 18.532px;
    background: var(--White-green-Gradient, linear-gradient(25deg, #F8FBFA 0.79%, #FFF 82.78%));
    /* background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    display: flex;
    width: 73px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 2px;
    background: var(--Dark-Mint, #0B9B85);
    text-decoration: none;

    color: #CFF5EF;


}

.insights_section.play_insights .playbook_btn.blue {
    border-radius: 2px;
    background: #4554BF;
}


.insights_section.play_insights .instight_wrapper .i_card::after {
    display: none;
}

.insights_section.play_insights .instight_wrapper .i_card p {
    max-width: 345px;
    bottom: 26px;
    padding-bottom: 17px;
    margin: auto;
}

.insights_section.play_insights .instight_wrapper .i_card.blue_card p {
    color: #1C124F;
}

.the_ai h1 {
    color: var(--Dark-Navy, #1C124F);
    text-align: center;
    font-size: 54px;
    font-style: normal;
    font-weight: 600;
    line-height: 62px;
    max-width: 1017px;
    margin: 0 auto;
    margin-bottom: 32px;
}

.the_ai p {
    color: #03063F;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 15px;
}

.the_ai .or_git {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin: auto;
    margin-bottom: 24px;

}

.the_ai .or_git strong,
.the_ai .or_git h6 {
    color: var(--Dark-Navy, #1C124F);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;

}


.the_ai .or_git strong {
    font-weight: 600;
}

.the_ai .or_git img {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    object-fit: cover;
}

.the_ai .g_social_icon {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.the_ai .g_social_icon img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 100%;
}


.the_ai {
    padding: 159px 20px 14px 20px;
    position: relative;

}

/* 
.the_ai::after {
    content: '';
    background: linear-gradient(76deg, rgba(69, 84, 191, 0.21) -27.72%, rgba(98, 197, 182, 0.07) 29.02%, rgba(246, 250, 245, 0.03) 72.92%);
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    z-index: -1;
} */

.report_playbook .flx .right-side {
    max-width: 673px;
    width: 100%;
}

.report_playbook .flx .right-side img {
    width: 100%;
    height: auto;
    /* object-fit: cover; */
    object-fit: none;
    margin-top: 53px;

}

.report_playbook .flx .right-side h2 {
    color: var(--Dark-Navy, #1C124F);
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.report_playbook .flx .right-side p {
    color: var(--Midnight-Navy, #0C0821);

    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 25px;
}

.report_playbook .flx .right-side strong {
    font-weight: 600;
}

.report_playbook .flx .right-side .download {
    color: var(--white, #FFF);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    display: flex;
    width: 231px;
    height: 36px;
    padding: 10px 4px;
    justify-content: center;
    align-items: center;
    gap: 3px;
    border-radius: 13px;
    background: var(--Deep-Green, #035C59);
    text-decoration: none;
    margin-bottom: 53px;
    margin-top: 53px;
}

.report_playbook {
    /* background: linear-gradient(7deg, rgba(69, 84, 191, 0.21) -27.72%, rgba(98, 197, 182, 0.07) 29.02%, rgba(246, 250, 245, 0.03) 72.92%); */
    padding: 0 20px 12px 20px;
}

.report_playbook .flx {
    display: flex;
    justify-content: start;
    gap: 29px;
}

.report_playbook .left_sticky .sticky_note h6 {
    overflow: hidden;
    color: var(--Midnight-Navy, #0C0821);
    text-overflow: ellipsis;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-transform: uppercase;
    margin-bottom: 21px;
    font-weight: 300;
    color: #1C124F;
}


.report_playbook .left_sticky .sticky_note ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.report_playbook .left_sticky .sticky_note ul li {
    list-style-type: none;
    transition: padding-left 0.5s ease-in-out;
    position: relative;
}

.report_playbook .left_sticky .sticky_note ul li a {
    color: var(--Base-Gray, #615E70);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
    transition: color 0.5s ease;
}

.report_playbook .left_sticky .sticky_note ul li:hover {
    padding-left: 13.23px;
}

.report_playbook .left_sticky .sticky_note ul li:hover a {
    color: var(--Dark-Mint, #0B9B85);
    font-weight: 600;
}

.report_playbook .left_sticky .sticky_note ul li::after {
    content: '';
    width: 5.554px;
    height: 5px;
    background: var(--Dark-Mint, #0B9B85);
    position: absolute;
    left: 0;
    top: 13px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 1s;
    border-radius: 100%;
}

.report_playbook .left_sticky .sticky_note ul li:hover::after,
.report_playbook .left_sticky .sticky_note ul li:hover::after {
    opacity: 1;
    visibility: visible;
}



.report_playbook .left_sticky .sticky_note ul li.active {
    padding-left: 13.23px;
}

.report_playbook .left_sticky .sticky_note ul li.active a {
    color: var(--Dark-Navy, #1C124F);
    font-weight: 600 !important;
}

.report_playbook .left_sticky .sticky_note ul li.active::after {
    content: '';
    width: 5.554px;
    height: 5px;
    background: var(--Dark-Navy, #1C124F);
    position: absolute;
    left: 0;
    top: 14px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 1s;
    border-radius: 100%;
}

.report_playbook .left_sticky .sticky_note ul li.active::after {
    opacity: 1;
    visibility: visible;
    background: var(--Dark-Navy, #1C124F) !important;
}

.report_playbook .left_sticky .sticky_note {
    min-width: 310px;
    /* min-height: 390px; */
    width: 100%;
    border-radius: 8px;
    background: #E1F3EC;
    padding: 20px 20px 21px 21px;
    border-radius: 32px 4px;
    background-repeat: no-repeat;
    background: url('../images/rport_bg.png');
    background-size: cover;
    padding-top: 27px;
    padding-bottom: 45px;
}

.report_playbook .left_sticky .sticky_note ul {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease-in-out, opacity 0.3s ease;
    margin: 0;
    padding: 0;
    list-style: none;

}


.report_playbook .left_sticky .sticky_note ul.open {
    max-height: max-content;
    opacity: 1;
    margin-top: 24px !important;
}

.report_playbook .left_sticky .sticky_note h6 {
    cursor: pointer;
    user-select: none;
    position: relative;
}

.report_playbook .left_sticky .sticky_note h6 {
    margin-bottom: 0;
    transition: margin-bottom 0.3s ease-in-out;
}

.report_playbook .left_sticky .sticky_note.active h6 {
    margin-bottom: 24px;
}

.report_playbook .left_sticky .sticky_note h6::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
    color: var(--Midnight-Navy, #0C0821);
    text-overflow: ellipsis;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-transform: uppercase;
}

.report_playbook .left_sticky .sticky_note.active h6::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.g_social_icon {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-top: 15px;
}

.g_social_icon img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 100%;
}

.report_playbook .flx .right-side img:first-of-type {
    margin-top: 0;
    border-radius: 64px 4px;
}


.left_sticky {
    position: sticky;
    top: 120px;
    /* header ke hisaab se adjust karein */
    align-self: flex-start;
}

.founder_stories .f_text img {
    width: 48px !important;
    height: 48px !important;
    object-fit: contain !important;
    border-radius: 100px !important;
    margin-bottom: 0 !important;
}

.wp-block-embed__wrapper {
    margin: 54px 0;
}


.insights_top .navigation-wrapper .nav-btn.btn-prev {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    z-index: 9;
}

.insights_top .navigation-wrapper .nav-btn.btn-prev::before {
    left: 0;
    right: auto;
    transform: translateY(-50%) scaleX(0);
}

.related-stories .news-slide img {
    height: 398px;
    border-radius: 64px 4px 4px 4px;
    width: 100%;
}

.related-stories .news-slide::after {
    border-radius: 102px 0 0 6px;
}

.related-stories .news-slide {
    border-radius: 64px 4px 4px 4px;
}

.related-stories .news-slide:hover img {
    transform: scale(1) translateY(-10px);
    object-position: top;
}

.custom-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 44px;
}

.custom-pagination ul {
    display: flex;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    margin: 0 7px;
}

.custom-pagination li {
    display: flex;
}

.custom-pagination a,
.custom-pagination span {
    width: 10px;
    height: 21px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;

    color: var(--Dark-Navy, #1C124F);
    text-align: center;
    font-family: "DM Mono";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.custom-pagination .current {
    border-radius: 8px 2px;
    background: var(--Dark-Navy, #1C124F);
    color: #fff;
    width: 28px;
    height: 28px;
}

.custom-pagination .dots {
    pointer-events: none;
}

.page-arrow img {
    width: 13.75px;
    height: 13.75px;
}

.news-slide-inner p,
.related-stories .news-slide p {
    color: var(--white, #FFF);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 140% */
    margin-bottom: 0;
}

.groove_article .left-sticky .bg span {
    position: relative;
    color: var(--Midnight-Navy, #0C0821);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.groove_article .left-sticky .bg span::after {
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 0.05px 0.562px 0 0.05px;
    opacity: 0.9;
    background: #0AD0B2;
    position: absolute;
    top: 50%;
    right: -6px;
    display: block;


}

/* .groove_article .left-sticky .bg ul li a {
    position: relative;
    width: 100%;
    display: block;
}

.groove_article .left-sticky .bg ul li a::after {
    content: '';
    background: url('../images/note_arrow.png');
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    z-index: 1;

    width: 7px;
    height: 8px;
} */

.groove_article .left-sticky .bg ul li {
    transition: transform 0.5s ease, color 0.5s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.groove_article .left-sticky .bg ul li img {
    width: 7px;
    height: 8px;
    object-fit: cover;
    display: inline-block;
    transition: transform 0.5s ease;
    margin-left: 7px;
}

.groove_article .left-sticky .bg ul li:hover img {
    margin-top: -2px;
    transform: scale(1.2);
    transition: transform 0.5s ease;
}

.groove_article .left-sticky .bg ul li a {
    color: #0C0821;
    font-weight: 400;
    line-height: 24px;
    transition: color 0.5s ease, font-weight 0.5s ease;
}

.groove_article .left-sticky .bg ul li:hover a {
    color: var(--Midnight-Navy, #0C0821);
    font-weight: 600;
}

.the_main_ai {
    position: relative;
}

.the_main_ai::after {
    content: '';
    background: linear-gradient(7deg, rgba(69, 84, 191, 0.21) -27.72%, rgba(98, 197, 182, 0.07) 29.02%, rgba(246, 250, 245, 0.03) 72.92%);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    display: block;
}

.the_main_ai .report_playbook .left_sticky .sticky_note ul li a {
    text-decoration: none;
    transition: color 0.5s ease;
    color: var(--Dark-Navy, #1C124F);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.the_main_ai .report_playbook .left_sticky .sticky_note ul li:hover a {
    color: var(--Dark-Navy, #1C124F);
    font-weight: 600;
}

.the_main_ai .report_playbook .left_sticky .sticky_note ul li::after {
    width: 6px;
    height: 6px;
    background: var(--Dark-Navy, #1C124F);
    background: var(--Main-Turquoise, #0ACFB1);
}


.home-banner.for-mobile {
    display: none;
}

footer.for-mobile {
    display: none;
}

header.for-mobile {
    display: none;
}

.groove_article .left-sticky .bg ul li:hover a:before {
    opacity: 1;
    visibility: visible;
}

.groove_article .left-sticky .bg ul li a:before {
    content: '';
    position: absolute;
    background-image: url("../images/hover-dot.png");
    width: 8px;
    height: 7px;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

/* PARTNER 3 PAGE CSS  */
.partner_heading h1 {
    color: var(--Dark-Navy, #1C124F);
    text-align: center;
    font-family: "DM Sans";
    font-size: 54px;
    font-style: normal;
    font-weight: 600;
    line-height: 62px;
    margin: 0;
}

.partner_heading .p_flx {
    display: flex;
    align-items: center;
    gap: 12px;
}

.partner_heading .p_flx img {
    width: 26px;
    height: 26px;
    object-fit: cover;
    border-radius: 100%;
}

.partner_heading .p_flx p {
    color: var(--Dark-Navy, #1C124F);
    text-align: center;

    font-family: "DM Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    margin: 0;
}

.partner_heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 74px;
}

.partner_main_wrapper {
    padding-top: 136px;
    position: relative;

}

.partner_main_wrapper::after {
    content: '';
    background: var(--smooth-gradient, linear-gradient(9deg, rgba(69, 84, 191, 0.60) -23.37%, rgba(98, 197, 182, 0.20) 29.92%, rgba(246, 250, 245, 0.09) 71.39%));
    width: 100%;
    top: 0;
    left: 0;
    height: 700px;
    position: absolute;
    display: block;
    z-index: -1;
}

.p_any_compnay .flx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.p_any_compnay .flx .img-wrapper {
    max-width: 665.514px;
    height: 449px;
}

.p_any_compnay .flx .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 64px 8px 8px 8px;
    background: #D9D9D9;
}

.p_any_compnay .flx .text-wrapper {
    max-width: 589px;
}

.p_any_compnay .flx strong {
    color: var(--Midnight-Navy, #0C0821);

    /* Quotes */
    font-family: "DM Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
}

.my_journey {
    padding: 47px 24px 80px 24px;
}

.my_journey .journey h2 {
    color: var(--Base-Gray, #615E70);
    font-family: "DM Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    text-transform: uppercase;
    margin: 0;
}

.my_journey .journey .j_text {
    max-width: 642px;
    margin-top: 32px;
    /* padding-left: 44px; */
}

.my_journey .journey .j_text p,
.my_journey .journey .j_text strong,
.my_journey .journey .j_text h6 {
    color: var(--Dark-Navy, #1C124F);
    font-family: "DM Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 30px;
}

.my_journey .journey .j_text p {
    font-weight: 400;
}

.my_journey .journey .j_text p:last-child {
    margin: 0;
}

.my_journey .journey {
    width: fit-content;
    padding-left: 44px;
    position: relative;
    padding-top: 9px;
    padding-bottom: 9px;
    margin-top: 13px;
}

.my_journey .journey::after {
    content: '';
    background: url('../images/p_after_line.png');
    width: 6.969px;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

.my_journey .right_journey .j_passionate h3 {
    color: var(--Midnight-Navy, #0C0821);
    text-align: center;
    font-family: "DM Sans";
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 47px;
    margin-bottom: 31px;
}

.my_journey .right_journey .i_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    max-width: 378px;
    row-gap: 28px;
    width: 100%;
}

.my_journey .right_journey .i_wrapper .i_flx {
    width: calc(50% - 10px);
    display: flex;
    align-items: center;
    gap: 10px;
}

.my_journey .right_journey .i_wrapper .i_flx:nth-child(3) {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.my_journey .right_journey .i_wrapper .i_flx {
    display: flex;
    gap: 8px;
    align-items: start;
}

.my_journey .right_journey .i_wrapper .i_flx strong {
    color: var(--Deep-Green, #035C59);
    text-align: center;
    font-family: "DM Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px;
}

.my_journey .j_passionate {
    width: fit-content;
    padding-bottom: 172px;
    margin-top: 15px;
}

.my_journey .why_groove h3 {
    color: var(--Midnight-Navy, #0C0821);
    font-family: "DM Sans";
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 32px;
}


.my_journey .why_groove ul li,
.my_journey .why_groove p {
    color: var(--Base-Gray, #615E70);
    text-align: center;
    font-family: "DM Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: 43px;
    width: fit-content;
    list-style-type: none;
    position: relative;
}

.my_journey .why_groove ul li::after,
.my_journey .why_groove p::after {
    content: '';
    background: var(--Dark-Mint, #0B9B85);
    width: 5px;
    height: 5px;
    border-radius: 100%;
    position: absolute;
    right: -11px;
    bottom: 12px;
    /* transform: translateY(-50%); */
}

.my_journey .why_groove ul li:last-child::after {
    right: -10px;
}

.my_journey .why_groove p:last-child::after {
    right: 35px;
}

.my_journey .why_groove ul {
    padding: 0;
    margin: 0;
    display: flex;
    /* grid-template-columns: 1fr 1fr; */
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 0;
}

.my_journey .why_groove {
    max-width: 414px;

}

.my_journey .flx {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.partner_investment {
    padding: 0 24px 79px 24px;
}



.partner_investment h2 {
    color: var(--Base-Gray, #615E70);
    font-family: "DM Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    text-transform: uppercase;
    margin-bottom: 62px;
}

.partner_investment .p_logo_wrapper {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 44px;
    row-gap: 81px;
    position: relative;
}

.partner_investment .p_logo_wrapper::after {
    content: '';
    width: 100%;
    height: 1px;
    background: linear-gradient(99deg, rgba(10, 207, 177, 0.50) 3.59%, rgba(28, 18, 79, 0.50) 32.58%, rgba(10, 207, 177, 0.50) 62.72%);
    position: absolute;
    bottom: -79px;
    left: 0;
    display: block;
}

.partner_investment .p_logo_wrapper img {
    width: 100%;
    height: 52px;
    object-fit: contain;
    margin: auto;
}

.partner_investment .p_logo_wrapper a {
    width: 100%;
    margin: auto;
    text-align: center;

}

.insights_section.p_recent_post {
    padding: 88px 24px 12px 24px;
}

.insights_section.p_recent_post h2 {
    text-align: center;
    font-family: "DM Sans";
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px;
    text-align: start;
    background: linear-gradient(107deg, #1C124F 25.58%, #32208C 87.62%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.insights_section.p_recent_post .instight_wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 20px;
    padding-top: 44px;
    row-gap: 32px;
}


.insights_section.p_recent_post::after {
    display: none;
}

.usefull_tools .container-custom {
    max-width: 989px;
    margin: auto;
}

.usefull_tools {
    padding: 69px 24px 62px 24px;
    background: linear-gradient(181deg, #F6FAF5 11.89%, rgba(10, 207, 177, 0.50) 282.03%);
}

.usefull_tools h2 {
    color: var(--Dark-Navy, #1C124F);
    text-align: center;
    font-family: "DM Sans";
    font-size: 42px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
}

.usefull_tools .flx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
    gap: 190px;
}

.usefull_tools .flx a {
    color: var(--Dark-Navy, #1C124F);
    font-family: "DM Sans";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px;
    display: flex;
    align-items: center;
    gap: 32px;
    text-decoration: none;
}

.usefull_tools .flx a img {
    width: 16px;
    height: 18px;
    object-fit: cover;
}

.partner_meet .team-grids {
    gap: 0 32px;
    max-width: 100%;
    padding-top: 38px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.team-thumb img {
    height: 100%;
}

.partner_meet h2 {
    color: var(--Base-Gray, #615E70);
    font-family: "DM Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

.partner_meet {
    padding: 83px 24px;
    background: unset;
    margin-top: 0;
}

.partner_meet h2 {
    font-size: 20px;
    line-height: 32px;
}

/* PARTNER 3 PAGE CSS END */

.single-post .groove_article .flx .right-side figure {
    margin: 20px 0;
    margin-bottom: 0;
}

.single-post .groove_article .flx .right-side figure a {
    display: block;
    height: 100%;
}

/* .insights_section.p_recent_post .instight_wrapper .swiper-wrapper {
    gap: 22px;
} */

.partner_investment .p_logo_wrapper a {
    overflow: hidden;
    transition: all 0.3s;
}

.partner_investment .p_logo_wrapper a:hover {
    transform: scale(1.04);
}

.insights_section .insights_sections {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.insights_section .insights_sections form {
    width: 100%;
    max-width: 236px;
    position: relative;
}

.insights_section .insights_sections form::after {
    content: '';
    background: url('../images/drp-search.svg');
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
}

.insights_section .insights_sections input {
    background: transparent;
    border: unset;
    outline: none;
    border-bottom: 1px solid #0ACFB1;
    padding-bottom: 6px;
    color: var(--Base-Gray, #615E70);
    text-align: center;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    width: 100%;
    text-align: left;
    padding-left: 30px;
}

.archive .insights_section,
.page-id-5008 .insights_section {
    padding-top: 50px;
}

.related-stories .ln-heading {
    margin-bottom: 64px;
}


.team-thumb {
    max-width: 307.781px;
    height: 207.649px;
    width: 100%;
}

.team-thumb.top-left,
.team-thumb.top-left img {
    border-radius: 52.528px 6.566px 6.566px 6.566px;
}

.team-thumb.bottom-right,
.team-thumb.bottom-right img {
    border-radius: 6.566px 6.566px 52.528px 6.566px;
}

/* .latest-news .swiper-wrapper {
    gap: 20px;
} */

/* .latest-news .swiper-slide {
    width: fit-content;
} */

.latest-news .swiper-slide,
.news-slide {
    height: 100%;
    /* width: 300px; */
    border-radius: 64px 4px 4px 4px;
}

.single-af-portfolio .latest-news .swiper-wrapper {
    height: 398px;
}

.insights_section .instight_wrapper .i_card a {
    pointer-events: all;
}


.menu-item {
    margin-top: 0;
}


/* .latest-news .swiper-slide,
.news-slide {
    width: 300px !important;
} */

.my_journey .right_journey .j_passionate h3 {
    position: relative;
    top: -5px;
}

footer.for-mobile .follow-us-mobile .social-link img.for-mobile {
    display: none;
}

.cmd-img img.for-mobile {
    display: none;
}

header.sticky i.hamburger .line {
    background-color: var(--Dark-Navy, #1C124F);
}

.cbc-left label.for-mobile {
    display: none;
}

.g_social_icon.for-mobile {
    display: none;
}

.founder_stories.author-for-mobile {
    display: none;
}



.home-banner .swiper-wrapper {
    transition-timing-function: linear !important;
}


.page-template-template-team .team-outer .team-box {
    margin-bottom: 41px;
    max-width: 375px;
    width: 100%;
}

.team-outer .team-thumb {
    max-width: 100%;
    height: 253px;
    width: 100%;
    border-radius: 64px 8px 8px 8px;
}

.team-outer .team-thumb.bottom-right {
    border-radius: 8px 8px 64px 8px;
}

.single-af-portfolio .compnay-info-outer a.web-link.for-mobile {
    display: none;
}


.portfolio-grids-outer .portfolio-short-desc.for-mobile {
    display: none;
}


.swiper-pagination {
    display: none;
}


.partner_heading a {
    border: 0.65px solid var(--Dark-Navy, #1C124F);
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.partner_heading .p_flx img {
    width: auto;
    height: auto;
    object-fit: contain;
}

.insights_section .custom_dropdown {
    height: 36px;
}

.archive .insights_section .custom_dropdown,
.page-template-template-insights-news .insights_section .custom_dropdown {
    height: auto;
}

.single-af-portfolio.postid-383 .latest-news .swiper-slide {
    /* width: 322.589px !important; */
    background-size: cover !important;
}

.single-af-portfolio.postid-383 .latest-news .swiper-wrapper {
    gap: 0;
}

.page-template-template-home .news-slide.reverse-radius img.featured-image {
    /* border-radius: 6px 102px; */
    border-radius: 64px 4px 4px 4px;
}

.footer-widgets {
    display: flex !important;
}

.banner-with-heading.worker h1 {
    color: var(--Dark-Navy, #1C124F);
    text-align: center;
    font-family: "DM Sans";
    font-size: 54px;
    font-style: normal;
    font-weight: 600;
    line-height: 62px;
}

.banner-with-heading.worker .inline-flx-area {
    gap: 8px;
    flex-direction: row;
    align-items: center;
}

.banner-with-heading.worker .bwh-social a {
    width: 26px;
    height: 26px;
    padding: 0;
}

.banner-with-heading.worker .bwh-social {
    padding-bottom: 0;
}

.banner-with-heading.worker .bwh-social a img {
    width: 13px;
    height: 13px;
    object-fit: cover;
}

.banner-with-heading.worker .banner-inner-page {
    padding-bottom: 42px;
    padding-top: 161px;
}

section.partner-data.worker-data {
    padding-top: 67px;
}

.insights_section.p_recent_post.workers {
    padding-top: 114px;
}


.insights_section.p_recent_post.workers .instight_wrapper {
    padding-top: 102px;
}

section.banner-with-heading.worker .bwh-right {
    display: none;
}

section.banner-with-heading.worker .bwh-content {
    display: flex;
    justify-content: center;
}

.partner-data.worker-data .pd-right {
    display: none;
}

.partner-data.worker-data .pd-inner {
    align-items: center;
    justify-content: center;
    max-width: 669px;
    margin: auto;
}

.partner-data.worker-data .pd-left {
    width: 669px;
    margin: auto;
}

section.banner-with-heading.worker .bwh-img {
    width: 670px;
    height: 452.027px;
    background: linear-gradient(7deg, rgba(69, 84, 191, 0.51) -27.72%, rgba(98, 197, 182, 0.17) 29.02%, rgba(246, 250, 245, 0.08) 72.92%);
}

section.partner-data.worker-data .story-content {
    max-width: 100%;
}

section.partner-data.worker-data .pd-inner h4 {
    margin-bottom: 31.97px;
}

.section.team-outer.partner_meet.worker .team-grids {
    grid-template-columns: repeat(5, 1fr);
    gap: 0 16px;
    padding-top: 42.63px;
}


.single-af-team-member .partner_investment .p_logo_wrapper {
    row-gap: 44px !important;
}

.single-af-team-member .partner_investment .p_logo_wrapper img {
    height: 100px !important;
    object-fit: contain !important;
}

.breadcrumbs .container-custom {
    max-width: 1317px;
}


.page-id-2246 .bwh-img {
    background: transparent;
}

.page-id-2246 .bwh-img img {
    height: 100%;
}

/* .latest-news.related-stories .swiper-slide,
.latest-news.related-stories .news-slide {
    width: 322px !important;
} */

/* .single-af-portfolio .news-slide {
    width: auto !important;
} */

.single-company-mobile-view-btn {
    display: none;
}

.single-article-view-all-btn.for-mobile .plain-link {
    display: none;
}

/* 

.single-af-news .latest-news .swiper-wrapper {
    gap: 0;
} */

.single-af-team-member .view-all-btn-here.for-mobile {
    display: none;
}

section.partner-data.worker-data .story-content p:first-child {
    color: #1C124F;
    font-weight: 500;
}

section.partner-data.worker-data .story-content p {
    color: #1C124F;
}

section.partner-data.worker-data .story-content {
    color: #1C124F;
}

section.team-outer.partner_meet.worker .team-thumb {
    width: 254.941px;
    height: 172px;
}

section.team-outer.partner_meet.worker .team-grids {
    grid-template-columns: repeat(5, 1fr);
}

.report_playbook .left_sticky.for-mobile {
    display: none;
}

section.latest-news.related-stories.playbooks .playbooks-mobile-view-btn {
    display: none;
}

section.latest-news.related-stories.playbooks .swiper-pagination {
    display: none;
}

/* .latest-news .swiper-slide,
.news-slide {
    width: 322px !important;
} */

/* .latest-news .swiper-wrapper {
    gap: 16px;
    justify-content: unset;
} */

.insights_section .custom_dropdown {
    height: auto;
}

.single-af-team-member .swiper-wrapper {
    gap: 20px;
}

.home .latest-news .swiper-slide {
    width: 322px;
}

.home .swiper-wrapper.no-slider {
    gap: 16px;
}

.insights_section.p_recent_post .instight_wrapper .i_card {
    max-width: 431px;
}

.playbooks.related-stories .news-slide::after {
    height: 192px;
}

body:not(.home) .swiper-slide {
    width: 322px;
}

.founder_stories .left-side {
    max-width: 274px;
    width: 100%;
    height: 0;
}

.founder_stories .right-side {
    max-width: 673px;
    width: 100%;
}

.founder_stories.main .flx {
    max-width: 100%;
    flex-direction: row;
    gap: 99px;
}

.swiper-wrapper.no-slider {
    gap: 16px;
}

.page-template-template-about .related-stories .news-slide::after,
.single-af-news .related-stories .news-slide::after {
    border-radius: 0 0 4px 4px;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0.00) -4.32%, rgba(28, 18, 79, 0.80) 55.21%, #0C0821 94.32%);
    mix-blend-mode: darken;
    filter: blur(4px);
    width: 100%;
    height: 192px;
}


.home-banner .main-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-width: 110px;
}

.home-banner .main-btn span {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform .35s ease;
    white-space: nowrap;
    color: var(--Dark-Navy);
}

/* Default visible text */
.home-banner .main-btn span:first-child {
    top: 50%;
}

/* Hidden text (neeche) */
.home-banner .main-btn .up-hover-btn {
    top: 150%;
}

/* Hover effect */
.home-banner .main-btn:hover span:first-child {
    transform: translate(-50%, -200%);
}

.home-banner .main-btn:hover .up-hover-btn {
    transform: translate(-50%, -147%);
}


.playbooks_sections .text-wrapper .read_more,
.shift-happens .flx .text-wrapper .ctm_btn,
.insights_top .btn-deep,
.outline-btn,
.main-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.playbooks_sections .text-wrapper .read_more span,
.shift-happens .flx .text-wrapper .ctm_btn span,
.insights_top .btn-deep span,
.outline-btn span,
.main-btn span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: transform .35s ease;
    white-space: nowrap;
}

.playbooks_sections .text-wrapper .read_more span:first-child,
.shift-happens .flx .text-wrapper .ctm_btn span:first-child,
.insights_top .btn-deep span:first-child,
.outline-btn span:first-child,
.main-btn span:first-child {
    transform: translate(-50%, -50%);
}

/* hidden text (neeche) */

.playbooks_sections .text-wrapper .read_more .up-hover-btn,
.shift-happens .flx .text-wrapper .ctm_btn .up-hover-btn,
.insights_top .btn-deep .up-hover-btn,
.outline-btn .up-hover-btn,
.main-btn .up-hover-btn {
    transform: translate(-50%, 120%);
}

/* hover animation */
.playbooks_sections .text-wrapper .read_more:hover span:first-child,
.shift-happens .flx .text-wrapper .ctm_btn:hover span:first-child,
.insights_top .btn-deep:hover span:first-child,
.outline-btn:hover span:first-child,
.main-btn:hover span:first-child {
    transform: translate(-50%, -180%);
}

.playbooks_sections .text-wrapper .read_more:hover .up-hover-btn,
.shift-happens .flx .text-wrapper:hover .ctm_btn .up-hover-btn,
.insights_top .btn-deep:hover .up-hover-btn,
.outline-btn:hover .up-hover-btn,
.main-btn:hover .up-hover-btn {
    transform: translate(-50%, -50%);
}

.playbooks_sections .text-wrapper .read_more span,
.playbooks_sections .text-wrapper .read_more {
    color: #fff;
    color: var(--white, #FFF);
    text-align: center;
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    /* 162.5% */
}

.shift-happens.events-hidden {
    padding-bottom: 80px;
}

.porofolio-nav-dropdown li {
    position: relative;
    transition: all 0.3s ease-in-out;
}

.porofolio-nav-dropdown li:before {
    content: '';
    width: 4px;
    height: 4px;
    background-color: var(--Dark-Navy);
    border-radius: 9999px;
    display: inline-block;
    opacity: 0;
    transform: translate(-0, -3px);
    transition: all 0.3s ease-in-out;
}

.porofolio-nav-dropdown li:hover:before {
    opacity: 1;
    transform: translate(-0px, -3px);
}

.porofolio-nav-dropdown li a:before {
    display: none;
}

.postid-124 .my_journey .right_journey .i_wrapper {
    max-width: 450px;
}

.postid-124 .my_journey .right_journey .i_wrapper .i_flx img {
    margin-top: 7px;
}

.postid-124 .my_journey .right_journey .i_wrapper .i_flx.i_flx:nth-child(4) {
    width: 100%;
    text-align: center;
    justify-content: center;
}


.postid-124 .p_logo_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* first 5 logos */
.postid-124 .p_logo_wrapper a:nth-child(-n+5) {
    flex: 0 0 calc(20% - 20px);
    text-align: center;
}

/* next 5 logos */
.postid-124 .p_logo_wrapper a:nth-child(n+5) {
    flex: 0 0 calc(20% - 20px);
    /* 5 per row */
    text-align: center;
}

.postid-124 .p_logo_wrapper a:last-child img {
    height: 35px !important;
}

.postid-124 .p_logo_wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.postid-124 .partner_investment .p_logo_wrapper {
    row-gap: 44px !important;
    max-width: 863px;
    margin: auto;
}

.postid-124 .partner_investment .p_logo_wrapper::after {
    display: none;
}

.postid-124 .partner_investment .container-custom::after {
    content: '';
    width: 100%;
    height: 1px;
    background: linear-gradient(99deg, rgba(10, 207, 177, 0.50) 3.59%, rgba(28, 18, 79, 0.50) 32.58%, rgba(10, 207, 177, 0.50) 62.72%);
    position: absolute;
    bottom: -79px;
    left: 0;
    display: block;
}

.postid-124 .partner_investment .container-custom {
    position: relative;
}


.postid-123 .my_journey .right_journey .i_wrapper .i_flx,
.postid-123 .my_journey .right_journey .i_wrapper .i_flx:nth-child(3) {
    width: fit-content;
    text-align: center;
    align-items: center;
}

.postid-123 .my_journey .why_groove ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10%;
}

.postid-123 .my_journey .why_groove ul li:first-child {
    width: 100%;
}

.postid-123 .my_journey .why_groove ul li:not(:first-child) {
    width: fit-content;
}


.postid-123 .my_journey .why_groove ul li:first-child::after,
.postid-123 .my_journey .why_groove p:first-child::after {
    right: 145px;
    /* transform: translateY(-50%); */
}


.postid-123 .partner_investment .p_logo_wrapper {
    display: flex;
    position: relative;
    max-width: 1100px;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: auto;
}


.postid-123 .partner_investment .p_logo_wrapper::after {
    display: none;
}


.postid-123 .partner_investment .container-custom {
    position: relative;
}

.postid-123 .partner_investment .container-custom::after {
    content: '';
    width: 100%;
    height: 1px;
    background: linear-gradient(99deg, rgba(10, 207, 177, 0.50) 3.59%, rgba(28, 18, 79, 0.50) 32.58%, rgba(10, 207, 177, 0.50) 62.72%);
    position: absolute;
    bottom: -79px;
    left: 0;
    display: block;
}

.postid-123 .partner_investment .p_logo_wrapper a {
    width: 13%;
}

.my_journey .right_journey .i_wrapper .i_flx {
    align-items: center !important;
}

.postid-121 .my_journey .right_journey .i_wrapper .i_flx {
    max-width: 234px;
    width: 100%;
}

.postid-121 .my_journey .right_journey .i_wrapper .i_flx:nth-child(3) {
    justify-content: center;
    text-align: center;
}

.postid-121 .my_journey .right_journey .i_wrapper .i_flx:last-of-type {
    width: 100%;
    justify-content: center;
}

.postid-121 .partner_investment .p_logo_wrapper {
    grid-template-columns: repeat(4, 1fr);
}

.postid-120 .my_journey .why_groove ul li:last-child::after {
    right: 57px;
}

.postid-124 .my_journey .right_journey .i_wrapper .i_flx {
    align-items: start !important;
}

.single-af-team-member.postid-121 .partner_investment .p_logo_wrapper img {
    width: 190px !important;
    height: 52px !important;
}

.insights_section.p_recent_post .instight_wrapper {
    justify-content: unset;
}

.insights_section.p_recent_post .instight_wrapper .i_card {
    max-width: 100%;
}

.insights_section.p_recent_post .swiper-wrapper {
    gap: 0;
}

.insights_section.p_recent_post .no-slider .swiper-wrapper {
    gap: 20px;
    justify-content: space-between;
}

.insights_section.p_recent_post .instight_wrapper .swiper-button-next,
.insights_section.p_recent_post .instight_wrapper .swiper-button-prev {
    opacity: 1;
    visibility: visible;
    background: url('../images/slider-button.png');
    width: 60px;
    height: 60px;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 60%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: all;
}

.insights_section.p_recent_post .instight_wrapper:hover .swiper-button-prev,
.insights_section.p_recent_post .instight_wrapper:hover .swiper-button-next {
    opacity: 1;
    visibility: visible;
}

.insights_section.p_recent_post .instight_wrapper .swiper-button-next {
    right: 10px;
    transform: scaleX(-1) translateY(-50%);
}

.insights_section.p_recent_post .instight_wrapper .swiper-button-next:after,
.insights_section.p_recent_post .instight_wrapper .swiper-button-prev:after,
.insights_section.p_recent_post .instight_wrapper .swiper-rtl .swiper-button-next:after {
    content: 'prev';
    background: transparent;
    color: transparent;
}

.insights_section.p_recent_post .instight_wrapper::before {
    content: '';
    background: linear-gradient(270deg, rgba(246, 250, 245, 0.80) 34.79%, rgba(234, 246, 240, 0.00) 105.53%);
    filter: blur(14.5px);
    width: 217px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 50%;
    display: block;
    z-index: 3;
    transform: translate(40%, -50%);
    transition: all 1s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.insights_section.p_recent_post .instight_wrapper::after {
    content: '';
    background: linear-gradient(270deg, rgba(246, 250, 245, 0.80) 34.79%, rgba(234, 246, 240, 0.00) 105.53%);
    filter: blur(14.5px);
    width: 217px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    display: block;
    z-index: 1;
    transform: translate(-60%, -50%) scaleX(-1);
    transition: all 1s;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.insights_section.p_recent_post .instight_wrapper:hover::after,
.insights_section.p_recent_post .instight_wrapper:hover::before {
    visibility: visible;
    opacity: 1;
    transition: all 1s;
}

.insights_section.p_recent_post .instight_wrapper.no-slider::before,
.insights_section.p_recent_post .instight_wrapper.no-slider::after {
    display: none;
}


.shift-happens .flx .text-wrapper .ctm_btn span {
    pointer-events: none;
}

.shift-happens .flx .text-wrapper .ctm_btn {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    pointer-events: all;
}

.shift-happens .flx .text-wrapper {
    pointer-events: none;
    height: -webkit-fill-available;
}

/*Sticky bar*/
.ancr-close-icon {
    width: 16px;
    height: 16px;
}

.ancr-close-icon {
    color: #fff !important;
}

.ancr-close-btn {
    position: absolute;
    top: 0;
    right: 0;
    color: inherit;
    line-height: 0;
    padding: 0.5em;
    z-index: 999;
}

.header-sticky-bar {
    position: sticky;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99999;
    padding: .5em 1em;
    background-color: #1C124F;
    box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.5);
}

.header-sticky-bar .container {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    text-align: center;
    max-width: 1140px;
}

.header-sticky-bar .container .content p {
    color: var(--GreenBackground, #F6FAF5);
    font-size: 16px;
    margin-bottom: 0;
}

.header-sticky-bar .container .content a,
.header-sticky-bar .container .content p a {
    color: var(--GreenBackground, #F6FAF5);
    font-weight: bold;
    text-decoration: underline;
    margin-top: 0;
}

.header-sticky-bar .content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.header-sticky-bar .content .main-btn span,
.header-sticky-bar .content .main-btn {
    min-width: 120px;
}

.Message--animate {
    display: none;
    margin-top: -50px;
}

.home .mega-menu.bar-available {
    top: 125px;
}

header.inner-page-header .mega-menu.bar-available {
    top: 133px;
}

.page-template-template-about header .h-inner nav>ul>li>a::after {
    background-color: var(--Natural-Gray, #DADAE0);
}

.page-template-template-about header.sticky .h-inner nav>ul>li>a::after {
    background: var(--Midnight-Navy, #0C0821);
}

.mega-menu.bar-available.wp-logged-in {
    top: 165px;
}

.sticky .mega-menu.bar-available {
    top: 133px;
}

.single-af-team-member.postid-121 .my_journey .right_journey .i_wrapper {
    max-width: 488px;
}

.single-af-team-member.postid-121 .my_journey .right_journey .i_wrapper .i_flx strong {
    font-size: 26px;
    line-height: 32px;
}

.postid-3949 .swiper-slide {
    width: 431px;
    height: 398px;
    border-radius: 64px 4px 4px 4px;
}

body:not(.home) .swiper-wrapper.no-slider .swiper-slide {
    width: 431px;
    height: 398px;
    border-radius: 64px 4px 4px 4px;
}

.news-slider-outer.no-slider::after,
.news-slider-outer.no-slider::before {
    display: none !important;
}

.groove_article .flx .right-side h4 {
    color: var(--Dark-Navy, #1C124F);
    font-size: 42px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
    /* 119.048% */
}

.groove_article .flx .right-side h3,
.groove_article .flx .right-side h4,
.groove_article .flx .right-side h5,
.groove_article .flx .right-side h6,
.groove_article .flx .right-side h2 {
    color: var(--Dark-Navy, #1C124F);
    font-weight: 500;
    margin-top: .5rem;
}

.groove_article .flx .right-side h3 strong,
.groove_article .flx .right-side h4 strong,
.groove_article .flx .right-side h5 strong,
.groove_article .flx .right-side h6 strong,
.groove_article .flx .right-side h2 strong {
    color: var(--Dark-Navy, #1C124F);
    font-weight: 500;
}

.groove_article .flx .right-side p strong{
    color: var(--Midnight-Navy, #0C0821);
    font-weight: 600;
}
.groove_article .flx .right-side ul li strong,
.groove_article .flx .right-side ol li strong{
    font-weight: 600;
}

.insights_section .instight_wrapper .i_card.blue_card:after {
    border-radius: 0 0 4px 4px;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0.00) -4.32%, rgba(28, 18, 79, 0.80) 55.21%, #0C0821 94.32%);
    mix-blend-mode: darken;
    filter: blur(4px);
    width: 100%;
    /* height: 192px; */
    content: '';
    display: flex;
    align-items: end;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
}

.we_back {
    position: relative;
    padding: 0 24px 0px 24px;
}

.we_back .bg-color {
    height: 558px;
    background: var(--Dark-Gradient, linear-gradient(116deg, #1C124F 25.39%, #0C0821 107.23%));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.we_back h1 {
    color: var(--Main-Turquoise, #0ACFB1);
    text-align: center;

    /* H1 */
    font-family: "DM Sans";
    font-style: normal;
    font-weight: 600;
    max-width: 486px;
    padding-top: 169px;
    margin-left: auto;
    margin-right: auto;
}

.we_back .img-wrapper {
    max-width: 712.483px;
    height: 454.885px;
    margin-top: 44px;
    margin-left: auto;
    margin-right: auto;
}

.we_back .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 9.65px 96.498px;
}

.we_back .text-wrapper p {
    color: var(--Dark-Navy, #1C124F);
    text-align: center;
    font-family: "DM Sans";
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    margin-bottom: 0;
}

.we_back .text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 841px;
    margin: auto;
    margin-top: 61.3px;
}

.people_first .flx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.people_first .flx .text-wrapper {
    max-width: 659px;
}

.people_first .flx .text-wrapper span {
    color: var(--Base-Gray, #615E70);
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    text-transform: uppercase;
}


.people_first .flx .text-wrapper h2 {
    background: linear-gradient(110deg, #1C124F 20.63%, #32208C 75.34%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 400;
    padding: 30px 0 36px 0;
}


.people_first .flx .text-wrapper strong {
    font-weight: 600;
}

.people_first .flx .text-wrapper p {
    color: var(--Midnight-Navy, #0C0821);
    font-family: "DM Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.people_first .flx .img-wrapper {
    max-width: 511px;
    height: 548.453px;
}

.people_first .flx .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* opacity: 0.4; */
    mix-blend-mode: multiply;
}

.people_first {
    background: linear-gradient(7deg, rgba(69, 84, 191, 0.51) -27.72%, rgba(98, 197, 182, 0.17) 29.02%, rgba(246, 250, 245, 0.08) 72.92%);
    padding: 0 24px 59.55px 24px;
}

.a_companies .flx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.a_companies .flx span {
    color: var(--Base-Gray, #615E70);
    font-family: "DM Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    text-transform: uppercase;
}

.a_companies .flx h2 {
    background: linear-gradient(110deg, #1C124F 20.63%, #32208C 75.34%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 450px;
    padding-top: 25px;
    padding-bottom: 36px;
}

.a_companies .flx p {
    color: var(--Midnight-Navy, #0C0821);
    font-family: "DM Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.a_companies .flx .text-wrapper {
    max-width: 659px;
}

.a_companies {
    padding: 63px 0 181px 24px;
}

/* .a_companies .logo-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
 */


/* .logo-wrapper .swiper-wrapper {
    transition-timing-function: linear !important;
} */

.logo-wrapper .swiper-slide {
    width: auto;
}


.a_companies .logo-wrapper img {
    display: block;
}

/* .a_companies .swiper-wrapper {
    transition-timing-function: linear !important;
} */

.a_companies .swiper-wrapper {
    height: 50px;
    /* display: flex;
    align-items: center;
    justify-content: center; */
}

.a_companies .logo-wrapper {
    max-width: 831px;
    position: absolute;
    right: 0;
}

.a_companies {
    position: relative;
}


.a_companies .logo-wrapper::after,
.a_companies .logo-wrapper::before {
    content: '';
    background: linear-gradient(270deg, #F6FAF5 0%, rgba(246, 250, 245, 0.00) 173.28%);
    width: 58px;
    height: 388px;
    position: absolute;
    left: 0;
    top: 50%;
    display: block;
    z-index: 1;
    transform: translateY(-50%);
}

.a_companies .logo-wrapper::after {
    transform: translateY(-50%) scale(-1);
}

.a_companies .logo-wrapper::before {
    left: auto;
    right: 0;
    z-index: 9;
}

/*.a_companies .container-custom {*/
/*padding: 0;*/
/*margin-right: 0;*/
/*max-width: 1622px;*/
/*}*/

.a_companies .swiper.logo-slider-right {
    margin-top: 64px;
    margin-bottom: 50px;
}

.a_companies {
    overflow-x: clip;
}

.page-template-template-about .logo-wrapper .swiper-slide {
    height: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.latest-news.related-stories.about {
    padding-top: 0;
    padding-bottom: 108px;
}

.about .news-slider-outer.no-slider .swiper-wrapper {
    gap: 18px;
}

/*.related-stories.about .news-slide img {*/
/*height: 310px;*/
/*}*/

.mega-menu.bar-available {
    top: 78px;
}

.news-slider-outer .swiper-button-prev {
    left: -100px;
}

.news-slider-outer .swiper-button-next {
    right: -100px;
}

.single-af-team-member .news-slider-outer .swiper-button-next,
.single-af-team-member .news-slider-outer .swiper-button-prev {
    opacity: 1;
    visibility: visible;
}

.page-template-template-home .latest-news .news-slide img {
    border-radius: 102px 6px;
}

.page-template-template-home .latest-news .swiper-slide,
.news-slide {
    border-radius: 102px 6px;
}


.page-template-template-home .latest-news .news-slide.reverse-radius,
.page-template-template-home .latest-news .news-slide.reverse-radius .news-slide-inner {
    border-radius: 6px 102px;
    /* border-radius: 64px 4px 4px 4px; */
}

.page-template-template-home .news-slide.reverse-radius img.featured-image {
    border-radius: 6px 102px;
    /* border-radius: 64px 4px 4px 4px; */
}

.a_companies .container-custom {
    padding: 0;
    max-width: 1362px;
}

.a_companies .swiper-wrapper {
    transition-timing-function: linear !important;
}


.portfolio-grids-outer .portfolio-box {
    border-radius: 64px 8px 8px 8px;
    opacity: 1;
    background: url('../images/portfolio_after_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 4px 16px 0 rgba(207, 230, 225, 0.30) inset;
}

.portfolio-grids-outer .portfolio-box::after {
    /* opacity: 0.08;
    background: var(--smooth-gradient, linear-gradient(9deg, rgba(69, 84, 191, 0.60) -23.37%, rgba(98, 197, 182, 0.20) 29.92%, rgba(246, 250, 245, 0.09) 71.39%)); */
    mix-blend-mode: color;
    width: 100%;
    height: 100%;
    background: url('../images/portfolio_after_bg1.png');
    opacity: 1;
    inset: 0;
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 30px;
    padding: 0px 0;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    align-items: center;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 30px));
    }
}

@keyframes scroll-right {
    from {
        transform: translateX(calc(-100% - 30px));
    }

    to {
        transform: translateX(0);
    }
}

.marquee.direction-right {
    margin-top: 60px;
    margin-bottom: 50px;

}

.marquee .item {
    width: 240px;
    height: 30px;

}

.marquee .item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.latest-news .plain-link:hover {
    color: var(--Deep-Green, #035C59);
}

.latest-news .plain-link:hover:after {
    right: 0;
    background-image: url(../images/hover-arrow.svg);
}

.latest-news .swiper-slide .news-slide-inner {
    transition: all 0.1s;
}

/*.latest-news .swiper-slide:hover .news-slide-inner {*/
/*!* transform: translateY(10px); *!*/
/*transition: all 1s;*/
/*bottom: -9px;*/
/*}*/


/*.insights_section .instight_wrapper .i_card:hover p {*/
/*transition: all 1s;*/
/*transform: translateX(-50%) translateY(20%);*/
/*}*/

.home header.sticky {
    box-shadow: none;
    background-color: #1C124F;
}

header .h-right {
    display: flex;
    height: 100%;
}

.home img.sticky-arrow {
    display: none;
}

.portfolio-box.no-hover-text::before {
    display: none;
}

.single-af-portfolio .cir-content ul {
    list-style: none;
    padding-left: 0;
}

.cc-content p,
.cc-content p strong {
    color: #615E70;
    font-weight: 500;
}

.insights_top .mySwiper {
    visibility: hidden;
}

.portfolio-grids-outer .box-blend {
    display: none;
}

/* 
.company-banner .cbc-logo img {
    object-fit: cover !important;
} */

.ip-inner {
    padding-bottom: 120px;
}

.marquee-home {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 40px;
    padding: 20px 0;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.marquee-content-home {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    gap: 40px;
}

@keyframes scroll-left-home {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 40px));
    }
}

@keyframes scroll-right-home {
    from {
        transform: translateX(calc(-100% - 40px));
    }

    to {
        transform: translateX(0);
    }
}

.our-companies h2 {
    background: transparent;
    -webkit-text-fill-color: unset;
}

header .outline-btn {
    min-width: 122px;
}

.single-af-team-member.postid-120 .my_journey .right_journey .i_wrapper {
    max-width: 430px;
}

.single-af-team-member.postid-120 .my_journey .right_journey .i_wrapper .i_flx {
    width: auto;
}

.partner_investment .p_logo_wrapper a:nth-child(6) img {
    width: 109px;
    height: 32px !important;
    aspect-ratio: 109 / 32;
}

body:not(.home) .news-slider-outer::before,
body:not(.home) .news-slider-outer::after {
    display: none !important;
}

.insights_section.p_recent_post .instight_wrapper::before,
.insights_section.p_recent_post .instight_wrapper::after {
    display: none !important;
}

.portfolio-box .portfolio-thumb {
    transition: all 0.3s;
}

.portfolio-box:hover .portfolio-thumb {
    transform: translateX(-50%) scale(1.04);
    transition: all 0.3s;
}

.cil-section ul li:last-child span {
    display: none;
}

.i_card .insights-image {
    width: 100%;
    height: 100%;
    position: relative;
    transition: all 0.5s;
}

.ip-box:nth-child(3) .ip-lottie lottie-player#partnerstlottie {
    width: 103px;
    height: 108px;
}

/*New contact page*/
.contact-left-side-area h1 {
    color: var(--Dark-Navy, #1C124F);
    font-size: 62px;
    font-style: normal;
    font-weight: 600;
    line-height: 62px;
    /* 100% */
    margin-bottom: 16px;
}

.contact-left-side-area h2 {
    color: var(--Dark-Navy, #1C124F);
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 42px;
    /* 140% */
    margin-bottom: 5px;
}

.contact-left-side-area p {
    color: var(--Dark-Navy, #1C124F);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 150% */
    margin-bottom: 36px;
}

.contact-message-area h3 {
    color: var(--Dark-Navy, #1C124F);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    /* 150% */
    margin-bottom: 12px;
}

.contact-message-area a {
    color: var(--Dark-Mint, #0B9B85);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    /* 130% */
    text-decoration: none;
}

.contact-message-area .contact-email {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
}

.i-agree-area {
    margin-bottom: 46px;
}

.i-agree-area p a {
    font-size: 10px !important;
    line-height: 18px !important;
    color: var(--Base-Gray, #615E70);
}

.i-agree-area p {
    color: var(--Base-Gray, #615E70);
    font-size: 10px !important;
    font-style: normal;
    font-weight: 300;
    line-height: 18px !important;
    /* 180% */
    margin-bottom: 8px;
}

.i-agree-area input {
    border-radius: 2px;
    border: 0.6px solid var(--Deep-Green, #035C59);
    background: var(--Background-green, #F6FAF5);
    width: 13px;
    height: 13px;
}

.i-agree-area .checkbox {
    color: var(--Dark-Navy, #1C124F);
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 183.333% */
}

.i-agree-area .checkbox label {
    display: flex;
    gap: 8px;
    align-items: center;
}

.call-us-area {
    margin-bottom: 50px;
}

.call-us-area a {
    color: var(--Base-Gray, #615E70);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 140% */
    text-decoration: none;
}

.visit-us-section h3 {
    margin-bottom: 10px;
}

.visit-us-section p {
    color: var(--Base-Gray, #615E70);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 140% */
}

.contact-new-left-col {
    width: 862px;
}

.contact-new-cols {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-bottom: 74px;
}

.contact-right-side-area h2 {
    color: var(--Dark-Navy, #1C124F);
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 39px;
    /* 130% */
    margin-bottom: 29px;
}

.contact-new-right-col {
    width: 442px;
}

.contact-images-area {
    display: flex;
    gap: 22px;
}

.contact-images-area .contact-image.col-one,
.contact-images-area .contact-image.col-three {
    padding-top: 44px;
}

.contact-img img {
    width: 133px;
    height: 185px;
}

.talk-founder a,
.talk-founder {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    justify-content: center;
    padding-top: 4px;
    padding-bottom: 4px;
}

.talk-founder img {
    width: 5.846px;
    height: 6.909px;
    object-fit: cover;
}

.talk-founder a,
.talk-founder p {
    color: var(--Dark-Navy, #1C124F);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 25.332px;
    /* 211.102% */
    margin-bottom: 0;
    text-decoration: none;
}

.contact-img {
    padding-bottom: 9.48px;
}

.contact-img:last-child {
    padding-bottom: 0;
}

.visit-us-section.for-mobile,
.call-us-area.for-mobile,
.contact-images-area.for-mobile {
    display: none;
}

.news-slider-outer::before,
.news-slider-outer::after {
    display: none;
}

.page-id-3982 .banner-with-heading .bwh-bg {
    height: calc(100% - -90px);
    margin-top: 0;
}

.single-af-portfolio.postid-954 .cbc-logo img {
    object-fit: cover !important;
}

.home-banner .swiper-wrapper.no-slider {
    gap: unset
}

.contact-image .talk-founder img {
    transition: all 0.3s ease-in-out;
}

.contact-img:hover .talk-founder img {
    transform: translate(0px, -2px);
    transition: all 0.3s ease-in-out;
}
.section_nav nav ul li a:before{
    display: block;
    content: attr(title);
    font-weight: 600;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}
.insights_top .slide-content .s_text{
    position: relative;
}
.page-template-template-insights-news .insights_section .instight_wrapper .i_card{
    overflow: hidden;
    border-radius: 64px 4px 4px 4px;
}
.wp-block-media-text__content p a[href^="mailto:"]:not(strong a) {
    font-size: 14px;
    color: var(--Dark-Navy, #1C124F) !important;
}

.single-af-news .g_social_icon a {
    position: relative;
    display: inline-block;
}

.single-af-news .g_social_icon a img {
    display: block;
    transition: opacity 0.3s ease;
}

/* hover image (second img) */
.single-af-news .g_social_icon a img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

/* show hover image */
.single-af-news .g_social_icon a:hover img:nth-child(2) {
    opacity: 1;
}

/* hide default image */
.single-af-news .g_social_icon a:hover img:nth-child(1) {
    opacity: 0;
}
.page-template-template-playbook-reports .insights_section::after{
    height: 90%;
}
.insights_section .instight_wrapper .i_card .insights-image:hover img{
    transform: translateY(-10px);
}
.page-template-template-playbook-reports .insights_section .instight_wrapper .i_card .insights-image:hover img,
.page-template-template-insights-news .insights_section .instight_wrapper .i_card .insights-image:hover {
    transform: none;
}
.single-af-news .related-stories .news-slide::after{
    filter: blur(1px);
}
.single-af-news .latest-news.related-stories .news-slide{
    overflow: visible;
}
.single-af-news .latest-news .swiper-slide .news-slide:hover img{
    transform: translateY(-10px);
}
.single-af-news .latest-news .swiper-slide .news-slide:hover {
    transform: none;
}
.home .news-slide::after{
    filter: blur(1px);
}
.home .latest-news .news-slide{
    overflow: visible;
}
.home .latest-news .swiper-slide .news-slide:hover img {
    transform: translateY(-10px);
}
.home .latest-news .swiper-slide .news-slide:hover{
    transform: none;
}
.home .news-slide.no-reverse::after {
    border-radius: 102px 6px;
}
.section_nav nav ul li{
    transition: all 1s;
    transform: translateX(0);
    transition: all 1s;
    transition: transform 0.5s cubic-bezier(.25, 1.5, .5, 1), opacity 0.5s;
    color: #1c124f !important;
}
.section_nav nav ul li:hover {
    transform: translateX(11px);
}
.groove_article .flx .right-side img{
    border-radius: 64px;
}
.search .insight-dropdown {
    padding-top: 70px;
}
.page-template-template-playbook-reports .insights_section .instight_wrapper .i_card .insights-image:hover img{
    transform: scale(1.03);
}
.page-template-template-playbook-reports .insights_section .instight_wrapper .i_card {
    overflow: hidden;
    border-radius: 64px 4px 4px 4px;
}
.page-template-template-playbook-reports .playbooks_sections::after{
    display: none;
}
.insights_section.play_insights .instight_wrapper .i_card.blue_card p{
    text-align: left;
}
.latest-news .swiper-slide .news-slide-inner{
    width: 90%;
    margin: 0 auto;
}
.news-slide-inner p, .related-stories .news-slide p{
    text-align: left;
}
.visit-call-area {
    display: flex;
    justify-content: space-between;
    max-width: 560px;
}
.contact-line{
    width: 569px;
    height: 1px;
    opacity: 0.8;
    margin-bottom: 57px;
    background: linear-gradient(105deg, rgba(10, 207, 177, 0.35) 0.52%, rgba(255, 255, 255, 0.70) 101.72%);
}
.contact-line.visit{
    margin-bottom: 44px;
}
.visit-us-section p{
    margin-bottom: 0;
}
.visit-call-area{
    margin-bottom: 55px;
}
.home header.sticky {
    z-index: 99999;
}
section.partner-data.general-page.no-margin {
    margin-top: 50px;
}