* {
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all 0.4s;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


/* Variable */

:root {
    /* --main-color: #4C7EF0; */
    --main-color: #3E70E5;
    --main-color-on-dark: #7D9FED;
    --secondary-color: #3F3F3F;
    --third-color: #151515;
    --fourth-color: #D8D8D8;
    --fifth-color: #606060;
    --white-color: #fff;
}


/* Font Attachment */

@font-face {
    font-family: 'HelveticaNowDisplay-Light';
    src: url('../fonts/HelveticaNowDisplay-Light.ttf');
}

@font-face {
    font-family: 'HelveticaNowDisplay-Regular';
    src: url('../fonts/HelveticaNowDisplay-Regular.ttf');
}

@font-face {
    font-family: 'HelveticaNowDisplay-Medium';
    src: url('../fonts/HelveticaNowDisplay-Medium.ttf');
}

@font-face {
    font-family: 'HelveticaNowDisplay-Bold';
    src: url('../fonts/HelveticaNowDisplay-Bold.ttf');
}

@font-face {
    font-family: 'Helvetica Now Display';
    src: local('Helvetica Now Display Bold'), local('Helvetica-Now-Display-Bold'), url('../fonts/HelveticaNowDisplay-Bold.woff2') format('woff2'), url('../fonts/HelveticaNowDisplay-Bold.woff') format('woff'), url('../fonts/HelveticaNowDisplay-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}


/* Default CSS */

html {
    /* overflow-x: hidden; */
}

body {
    font-family: 'HelveticaNowDisplay-Light';
    color: var(--secondary-color);
    font-weight: 300;
}

:focus-visible {
    outline: 0;
}

a {
    color: inherit;
}

.def-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: fit-content;
    border-radius: 60px;
    padding: 10px 10px 10px 15px;
    border: 1px solid var(--third-color);
    font-size: 20px;
    font-family: 'HelveticaNowDisplay-Medium';
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.4px;
    color: var(--third-color);
    transition: all 0.4s;
}

.def-btn span {
    display: flex;
    width: 50px;
    height: 30px;
    border-radius: 1000px;
    background: var(--third-color);
    align-items: center;
    justify-content: center;
}

.def-btn:hover {
    background-color: var(--third-color);
    color: var(--white-color);
    gap: 30px;
    box-shadow: 0 2px 6px 0 rgba(21, 21, 21, 0.15);
}

.def-btn:hover span,
.def-btn.bg-wht span {
    background: var(--white-color);
}

.def-btn:hover svg path {
    fill: var(--third-color);
}

.def-btn.bg-wht {
    border-color: var(--white-color);
    color: var(--white-color);
}

.def-btn.bg-wht:hover span {
    background: var(--third-color);
}

.def-btn.bg-wht:hover {
    background-color: var(--white-color);
    color: var(--third-color);
}

.def-btn.bg-wht:hover svg path {
    fill: var(--white-color);
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.pt-160 {
    padding-top: 160px;
    padding-bottom: 160px;
}

.sec-heading span {
    font-family: 'HelveticaNowDisplay-Regular';
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 28px;
    position: relative;
    padding-left: 26px;
}

.sec-heading span::after {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--main-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.sec-heading.txt-white h2 {
    color: var(--white-color);
}

.sec-heading.txt-white p {
    color: var(--fourth-color);
}

.sec-heading h2 {
    font-family: 'HelveticaNowDisplay-Medium';
    font-weight: 500;
    color: var(--third-color);
    font-size: 56px;
    letter-spacing: -1.12px;
    line-height: 1.05;
    margin: 0;
}

.arrow-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--third-color);
    font-family: 'HelveticaNowDisplay-Medium';
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.4px;
}

.arrow-btn.wht-color {
    color: var(--white-color);
}

.arrow-btn:hover {
    color: var(--main-color);
}

.arrow-btn:hover svg path {
    fill: var(--main-color);
}


/* Header Start */

.navbar-expand-lg {
    padding: 0;
    position: sticky;
    left: 0;
    top: 0;
    width: 100%;
    background: var(--white-color);
    z-index: 99;
}

.sticky-header.navbar-expand-lg .navbar-nav .nav-link {
    padding: 40px 0;
}

.navbar-brand {
    min-width: 214px;
}

.navbar.sticky-header img {
    max-width: 180px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    color: var(--third-color);
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.4px;
    font-family: 'HelveticaNowDisplay-Medium';
    font-weight: 500;
    padding: 55px 0;
    position: relative;
    transition: all 0.4s;
}

#navbarSupportedContent {
    justify-content: center;
}

.navbar-expand-lg .navbar-nav .nav-link span::after {
    position: absolute;
    content: '';
    width: 0;
    height: 2px;
    background-color: var(--third-color);
    bottom: 45px;
    left: 0;
    transition: all 0.4s;
}

.navbar-expand-lg.sticky-header .navbar-nav .nav-link span::after {
    bottom: 30px;
}

.navbar-expand-lg .navbar-nav .nav-link:hover,
.navbar-expand-lg .navbar-nav .active .nav-link {
    color: var(--third-color);
}

.navbar-expand-lg .navbar-nav .nav-link:hover span::after,
.navbar-expand-lg .navbar-nav .active .nav-link span::after {
    width: 100%;
}

.navbar-expand-lg .navbar-nav {
    gap: 40px;
    margin: 0 auto;
}

.nav-quote-btn {
    text-decoration: none;
    border-radius: 50px;
    background: var(--main-color);
    padding: 10px 10px 10px 15px;
    color: var(--white-color);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.4px;
    font-size: 20px;
    font-family: 'HelveticaNowDisplay-Medium';
    display: flex;
    gap: 15px;
    align-items: center;
    width: fit-content;
    margin-left: auto;
}

.nav-quote-btn:hover {
    background-color: #7FA6FF;
    gap: 30px;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar .container {
    gap: 20px;
}

.navbar-right {
    width: 207px;
}

.navbar-toggler-icon {
    background-image: none;
    width: auto;
    height: auto;
    border-radius: 60px;
    position: relative;
    display: flex;
}

button.navbar-toggler {
    padding: 0;
    border: none;
    border-radius: 4px;
    background: var(--main-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Hero Banner */

.hero-heading--wrapper.sec-heading span {
    margin-bottom: 22px;
}

.hero-heading--wrapper h1 {
    font-family: 'HelveticaNowDisplay-Medium';
    font-weight: 500;
    color: var(--third-color);
    font-size: 74px;
    letter-spacing: -1.48px;
    max-width: 683px;
    margin: 0;
    line-height: 1.12;
}

.hero-banner--wrapper img {
    border-radius: 28px;
    object-fit: cover;
}

.hero-banner--wrapper {
    position: relative;
    padding: 60px 0 160px;
}

.hero-heading--wrapper {
    position: absolute;
    border-radius: 0px 0px 28px 0px;
    background: var(--white-color);
    padding: 0px 60px 40px 0px;
}

.hero-content--wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-right: 40px;
}

.hero-card--wrapper {
    width: calc(51.9% - 20px);
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.hero-desc--wrapper {
    width: calc(48.1% - 20px);
    border-radius: 28px;
    background: radial-gradient(100% 100% at 50% 0%, rgba(255, 255, 255, 0.60) 0%, #F7F7F7 100%);
    box-shadow: -4px 4px 14px 0px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(50px);
    padding: 40px 60px 40px 40px;
    margin-top: -174px;
    min-height: 388px;
}

.hero-desc--wrapper p {
    font-size: 26px;
    line-height: 1.6;
    max-width: 460px;
    margin-bottom: 28px;
}

.hero-card {
    width: calc(50% - 10px);
}

.hero-card a {
    border-radius: 18px;
    background: radial-gradient(100% 100% at 50% 0%, rgba(244, 244, 247, 0.50) 0%, #EBEBF2 100%);
    font-family: 'Helvetica Now Display';
    font-weight: 700;
    width: 100%;
    padding: 20px;
    min-height: 174px;
    color: var(--third-color);
    letter-spacing: -0.76px;
    line-height: 1.4;
    font-size: 38px;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-card a:hover svg rect {
    fill: var(--main-color);
}

.hero-card a:hover svg path {
    fill: var(--white-color);
    position: relative;
    transform: translateY(-10px);
}

.hero-card.bg-dark {
    border-radius: 18px;
}

.hero-card.bg-dark a {
    color: var(--white-color);
    background: radial-gradient(143.1% 143.1% at 50% -43.1%, #151515 0%, #262626 100%);
}

.hero-card a svg {
    position: absolute;
    top: 15px;
    right: 15px;
}

.hero-heading--wrapper:after,
.hero-heading--wrapper:before {
    position: absolute;
    content: '';
    width: 28px;
    height: 28px;
    background-image: url('../images/corner-shape.png');
    transform: rotate(-90deg);
    z-index: 5;
    background-size: cover;
}

.hero-heading--wrapper:after {
    top: 0;
    right: -28px;
}

.hero-heading--wrapper:before {
    bottom: -28px;
    left: 0;
}


/* Mission Start */

.mission-sec {
    background: radial-gradient(100% 100% at 50% 0%, rgba(244, 244, 247, 0.50) 0%, #EBEBF2 100%);
    padding: 192px 0;
}

.mission--wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.mission-content p {
    color: var(--secondary-color);
    font-size: 28px;
    line-height: 1.6;
    margin: 0;
    text-indent: 100px;
}

.mission-content {
    max-width: 1047px;
}

.mission--wrapper span {
    margin-top: 10px;
}

.mission-content a {
    margin-top: 66px;
}


/* Our Work */

.work--wrapper {
    background: var(--third-color);
    padding: 150px 0;
}

.project--wrapper {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.project--wrapper .work-tag:after {
    mask-image: url(../images/corner-shape-black.svg);
    mask-repeat: no-repeat;
    position: absolute;
    content: '';
    width: 18px;
    height: 18px;
    background-size: cover;
    left: -18px;
    top: 0;
    background-color: var(--third-color);
}

.project--wrapper .work-box:hover .work-tag::after {
    height: 18px;
}

.project--wrapper>div {
    width: calc(50% - 30px);
}

.sec-heading.txt-white span {
    color: var(--fourth-color);
}

.sec-heading.txt-white span:before {
    background: var(--fourth-color);
}

.work-right-col .sec-heading h2 {
    font-family: 'HelveticaNowDisplay-Regular';
    font-weight: 400;
    font-size: 68px;
    color: var(--white-color);
}

.work-right-col p {
    font-size: 24px;
    line-height: 1.4;
    color: var(--fourth-color);
    margin-top: 34px;
    margin-bottom: 0;
}

.work-media {
    position: relative;
    padding-bottom: 107%;
    border-radius: 18px;
    overflow: hidden;
}

.work-media img,
.work-media video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* .our-project--wrapper .case-study--wrapper .work-info h3 {
    margin: 0;
} */

.card-info {
    position: relative;
}

.work-info p {
    position: absolute;
    transform: translateY(100%);
}

.work-box:hover .work-info p {
    transform: none;
}


/* .case-study--wrapper .work-info {
    padding: 30px 30px 40px 30px;
} */

@media screen and (min-width:768px) {
    .work-box:hover .work-info:after {
        background: linear-gradient(357deg, rgba(21, 21, 21, 0.9) 20%, rgba(21, 21, 21, 0.00) 53.61%);
    }

    .case-study--wrapper .full-width-col .work-info:after {
        opacity: 0;
        visibility: hidden;
    }

    .case-study--wrapper .full-width-col .work-box:hover .work-info:after {
        background: linear-gradient(90deg, rgba(21, 21, 21, 0.60) 0.36%, rgba(21, 21, 21, 0.00) 99.69%);
        opacity: 1;
        visibility: visible;
    }

    .full-width-col .work-box:hover h3 {
        margin-bottom: 23px;
    }

    .work-box:hover h3 {
        margin-bottom: 13px;
    }
}

.work-info:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 18px;
    background: linear-gradient(357deg, rgba(21, 21, 21, 0.75) 2.49%, rgba(21, 21, 21, 0.00) 53.61%);
    border-radius: 18px;
    transition: all 0.4s;
}

.project--wrapper .work-info:after {
    border-radius: 16px;
}

.work-info>* {
    z-index: 2;
}

.work-box {
    position: relative;
    margin-top: 60px;
    overflow: hidden;
}

.work-left-col .work-box:nth-child(2) {
    margin-top: 38px;
}

.work-box:hover img {
    transform: scale(1.16);
}

.work-info {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 30px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.work-info h3 {
    font-family: 'Helvetica Now Display';
    font-weight: 700;
    color: var(--white-color);
    font-size: 46px;
    letter-spacing: -0.92px;
    line-height: 1.20;
    margin: 0;
}

.work-info p {
    font-size: 20px;
    color: var(--fourth-color);
    line-height: 1.4;
    margin: 0;
}

.work-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 0px 0px 0px 18px;
    padding: 0px 0px 10px 10px;
    background-color: var(--third-color);
}

.work-box:hover .work-tag::after {
    height: 100%;
}

.work-tag-bg {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-100%);
    transition-duration: .3s;
}

.work-box:hover .work-tag-bg {
    transform: translateY(0);
}

.work-tag-bg svg {
    width: 40px;
    height: auto;
    position: absolute;
    fill: var(--third-color);
}

.work-tag-bg .top-left-corner {
    left: -40px;
}

.work-tag-bg .bottom-right-corner {
    right: 0;
    bottom: -39px;
}

.work-tag li {
    border-radius: 10px;
    background: #EBEBF2;
    padding: 8px 15px;
    color: var(--secondary-color);
    font-size: 14px;
    line-height: 1;
    font-family: 'HelveticaNowDisplay-Medium';
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.explor-btn h4 {
    font-family: 'HelveticaNowDisplay-Medium';
    font-weight: 500;
    color: var(--white-color);
    font-size: 48px;
    letter-spacing: -0.96px;
    line-height: 1.2;
    margin-bottom: 31px;
}

.explor-btn {
    margin-top: 172px;
}


/* Service Start */

.service--wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 60px;
}

.service-heading-col {
    width: calc(36.116% - 30px);
    position: sticky;
    top: 140px;
}

.service-info-col {
    width: calc(63.884% - 30px);
}

.service-heading-col .sec-heading span {
    margin-bottom: 48px;
}

.service-heading-col p {
    font-size: 24px;
    line-height: 1.8;
    margin: 20px 0 46px;
}

.service-heading h3 {
    font-family: 'Helvetica Now Display';
    font-weight: 700;
    color: var(--fifth-color);
    font-size: 38px;
    letter-spacing: -1.14px;
    line-height: 1.05;
    margin: 0;
}

.service-heading {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
}

.service-heading.active h3,
.accordian-heading.active h3 {
    color: var(--third-color);
}

.service-heading.active .service-icon,
.accordian-heading.active .service-icon {
    background: var(--main-color);
}

.service-heading.active .service-icon .plus,
.accordian-heading.active .service-icon .plus {
    display: none;
}

.service-heading.active .service-icon svg rect,
.accordian-heading.active .service-icon svg rect {
    fill: var(--white-color);
}

.service-icon {
    border-radius: 6px;
    background: #EBEBF2;
    min-width: 40px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-info ul {
    list-style: none;
    column-count: 2;
    column-gap: 30px;
}

.service-inner-body a {
    margin-top: 55px;
}

.service-info li {
    font-family: 'HelveticaNowDisplay-Regular';
    font-weight: 400;
    color: #606060;
    font-size: 22px;
    line-height: 1.4;
    position: relative;
    padding-left: 36px;
    margin-bottom: 22px;
    break-inside: avoid;
}

.service-info ul li:last-child {
    margin-bottom: 0;
}

.service-info li:before {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    background-image: url('../images/circle-check.svg');
    background-size: cover;
    top: 6px;
    left: 0;
    z-index: 1;
}

.service-info {
    max-height: 0;
    overflow: hidden;
    transition: .3s;
}

.service-inner-body {
    padding-top: 20px;
    padding-bottom: 56px;
}

.service-accordian {
    border-bottom: 1px solid var(--fourth-color);
}

.service-info-col .service-accordian:not(:last-of-type) {
    margin-bottom: 60px;
}

.service-heading h3 sup {
    font-size: 23px;
    font-weight: 500;
    font-family: 'HelveticaNowDisplay-Medium';
    top: -13px;
}


/* About Start */

.about--wrapper {
    background: var(--third-color);
}

.about-info--wrapepr {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.about-img-col {
    width: calc(52.4% - 30px);
}

.about-info-col {
    width: calc(47.6% - 30px);
}

.about-img-col img {
    border-radius: 28px;
}

.about-heading span {
    color: var(--fourth-color);
    font-size: 18px;
    line-height: 1;
    font-family: 'HelveticaNowDisplay-Regular';
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    top: 21px;
    left: 60px;
}

.about-heading span:before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7FA6FF;
}

.about-heading h2 {
    color: var(--white-color);
    font-size: 48px;
    font-family: 'HelveticaNowDisplay-Medium';
    font-weight: 500;
    letter-spacing: -0.96px;
    line-height: 1.22;
    text-indent: 298px;
    margin: 0;
}

.about-info-col p {
    color: var(--fourth-color);
    font-size: 24px;
    line-height: 1.8;
    margin: 0;
}

.about-info-col p:not(:nth-last-of-type(1)) {
    margin-bottom: 35px;
}

.about-heading {
    position: relative;
    left: -22.25em;
    max-width: 916px;
    min-width: 916px;
    width: 100%;
    background: var(--third-color);
    padding-left: 60px;
    border-radius: 0 0 0 28px;
    padding-bottom: 47px;
    margin-bottom: -10px;
}

.about-heading:after,
.about-heading:before {
    position: absolute;
    content: '';
    width: 28px;
    height: 28px;
    background-image: url('../images/corner-dark-shape.png');
    background-size: cover;
}

.about-heading:after {
    top: -1px;
    left: -27px;
}

.about-heading:before {
    bottom: -27px;
    left: 16.81rem;
}

.about-info-col a {
    margin-top: 47px;
}


/* CTA Slider */

.cta-slider p {
    margin: 0;
    color: var(--third-color);
    font-size: 134px;
    font-family: 'HelveticaNowDisplay-Regular';
    font-weight: 400;
    letter-spacing: -2.68px;
    line-height: 1.16;
}

.cta-slider p b {
    font-family: 'Helvetica Now Display';
    font-weight: 700;
}

.cta-slider p svg {
    display: inline-block;
    margin-left: 30px;
}

.cta-slider .swiper-slide {
    width: auto;
}

.cta-slider {
    overflow: hidden;
}

.swiper--wrapper {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll-left 70s linear infinite;
}

.cta-rtl .swiper--wrapper {
    animation: scroll-right 70s linear infinite;
}

.swiper--slide {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    white-space: nowrap;
}


/* Left-to-right scroll */

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* Right-to-left scroll */

@keyframes scroll-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.cta-slider--wrapper .cta-slider:not(:last-child) {
    margin-bottom: 30px;
}

.cta-slider--wrapper {
    padding: 73px 0;
    background: radial-gradient(100% 100% at 50% 0%, rgba(244, 244, 247, 0.50) 0%, #EBEBF2 100%);
}


/* Our Blog */

.blog-heading--wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.blog-heading--wrapper a {
    margin-bottom: 10px;
}

.blog-box--wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 44px;
    margin-top: 52px;
}

.blog-box {
    width: calc(33.33% - 29.33px);
    position: relative;
}

.blog-box span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    font-size: 14px;
    font-family: 'HelveticaNowDisplay-Medium';
    font-weight: 500;
    line-height: 1;
}

.blog-box h2 {
    color: var(--third-color);
    font-family: 'HelveticaNowDisplay-Medium';
    font-weight: 500;
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.20;
    margin: 13px 0 0;
}

.blog-box p {
    font-size: 20px;
    letter-spacing: -0.6px;
    line-height: 1.6;
    margin: 0;
}

.blog-img {
    position: relative;
    padding-bottom: 70%;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-top--wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.blog-tag li {
    border-radius: 10px;
    background: #EBEBF2;
    padding: 8px 15px;
    color: #1E1E1E;
    font-size: 14px;
    font-family: 'HelveticaNowDisplay-Medium';
    font-weight: 500;
    line-height: 1;
}

.blog-tag {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* Footer Start */

.footer--wrapper {
    border-radius: 18px;
    background: var(--third-color);
    position: relative;
    padding: 80px 60px 40px 60px;
    margin-bottom: 60px;
    margin-top: 60px;
}

.footer-top--wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-info h2 {
    color: var(--white-color);
    font-size: 68px;
    letter-spacing: -1.36px;
    line-height: 1.10;
    font-family: 'HelveticaNowDisplay-Regular';
    font-weight: 400;
    max-width: 260px;
    margin: -13px 0 0;
}

.footer-info h2 b {
    font-family: 'Helvetica Now Display';
}

.footer-info a {
    margin-top: 35px;
}

.footer-menu--wrapper {
    display: flex;
    gap: 100px;
    flex-wrap: wrap;
}

.footer-menu--wrapper h3 {
    color: var(--fourth-color);
    font-family: 'HelveticaNowDisplay-Regular';
    font-weight: 400;
    line-height: 1;
    font-size: 16px;
    margin: 0 0 35px;
}

.footer-menu--wrapper a,
.footer-menu--wrapper p {
    text-decoration: none;
    color: var(--white-color);
    font-family: 'HelveticaNowDisplay-Medium';
    font-weight: 500;
    font-size: 20px;
    letter-spacing: -0.4px;
    line-height: 1;
    display: inline-flex;
    position: relative;
}

.footer-menu a::after,
.footer-bottom a::before {
    position: absolute;
    content: '';
    width: 0;
    height: 1px;
    background-color: var(--white-color);
    bottom: -5px;
    left: 0;
    transition: all 0.4s;
}

.footer-menu a:hover::after,
.footer-menu a.active::after,
.footer-bottom a:hover::before,
.footer-bottom a.active::before {
    width: 100%;
}

.footer-menu a.active,
.footer-bottom a.active {
    color: var(--main-color);
}

.footer-menu a.active::after,
.footer-bottom a.active::before,
.footer-bottom a:hover::before {
    background-color: var(--main-color);
}

.footer--wrapper li {
    display: flex;
}

.footer-menu ul li:not(:last-child),
.footer-contact-info a {
    margin-bottom: 23px;
}

.footer-contact-info a,
.footer-contact-info p {
    display: block;
    position: relative;
    padding-left: 22px;
    font-size: 16px;
    letter-spacing: 0;
}

.footer-menu--wrapper p {
    max-width: 200px;
}

.footer-contact-info svg {
    position: absolute;
    top: 0;
    left: 0;
}

.footer-menu--wrapper p svg {
    top: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #7FA6FF;
    padding-top: 40px;
    margin-top: 60px;
}

.footer-bottom p,
.footer-bottom a {
    color: var(--fourth-color);
    font-size: 14px;
    font-family: 'HelveticaNowDisplay-Medium';
    font-weight: 500;
    line-height: 1;
    margin: 0;
}

.footer-bottom a:hover {
    color: #7FA6FF;
}

.footer-bottom ul {
    display: flex;
    gap: 42px;
}

.footer-bottom ul a:first-child {
    position: relative;
}

.footer-bottom ul li:first-child a:after {
    position: absolute;
    content: '';
    width: 1px;
    height: 10px;
    top: 50%;
    right: -20px;
    background: currentColor;
    transform: translateY(-50%);
}

.back-to-top {
    position: absolute;
    top: 0;
    right: 0;
    font-family: 'HelveticaNowDisplay-Medium';
    font-weight: 500;
    border-radius: 0px 0px 0px 18px;
    background: var(--white-color);
    padding: 0px 0px 14px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--third-color);
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.4px;
    border: none;
}

.back-to-top:hover {
    color: var(--main-color);
}

.back-to-top:hover svg path {
    fill: var(--main-color);
}

.back-to-top:after,
.back-to-top::before {
    position: absolute;
    content: '';
    width: 18px;
    height: 18px;
    background-image: url('../images/corner-shape.png');
}

.back-to-top:after {
    top: 0;
    left: -18px;
}

.back-to-top::before {
    bottom: -18px;
    right: 0;
}


/* ============================================= About Page ============================================= */

.about-hero-banner--wrapper {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 80px;
    padding: 60px 0;
}

.about-hero-left-col .def-btn {
    margin-top: auto;
}

.about-hero-left-col {
    width: calc(47.76% - 40px);
    display: flex;
    flex-direction: column;
}

.about-hero-right-col {
    width: calc(52.24% - 40px);
}

.about-hero-left-col h1 {
    color: var(--third-color);
    font-size: 74px;
    font-family: 'HelveticaNowDisplay-Medium';
    font-weight: 500;
    letter-spacing: -1.48px;
    line-height: 1.1;
    margin-bottom: 78px;
}

.about-hero-left-col.sec-heading span {
    margin-bottom: 24px;
}

.about-hero-right-col img {
    border-radius: 18px;
}

.about-content-box {
    border-radius: 18px;
    background: radial-gradient(100% 100% at 50% 0%, rgba(244, 244, 247, 0.50) 0%, #EBEBF2 100%);
    padding: 35px 50px 45px 40px;
    margin-top: 25px;
}

.about-content-box p b {
    color: var(--third-color);
}

.about-content-box p {
    font-size: 22px;
    color: var(--secondary-color);
    line-height: 1.4;
    margin: 0;
}

.about-content-box p:not(:last-child) {
    margin-bottom: 36px;
}

.mission--wrapper.about-content--wrapper {
    padding: 140px 0;
}

.about-content--wrapper .mission-content {
    max-width: 1020px;
}

.about-cta--wrapper {
    background-image: url('../images/cta-bg-img.png');
    background-size: cover;
    background-position: bottom;
    padding: 138px 120px 150px;
    background-repeat: no-repeat;
    border-radius: 0px 0px 60px 60px;
    background-blend-mode: multiply;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.about-cta--wrapper h2 {
    font-family: 'HelveticaNowDisplay-Medium';
    font-weight: 500;
    color: var(--third-color);
    font-size: 74px;
    letter-spacing: -1.48px;
    line-height: 1.1;
    margin: 0;
}

.about-cta--wrapper p {
    color: var(--secondary-color);
    font-size: 24px;
    line-height: 1.81;
    max-width: 810px;
    margin: 34px auto 28px;
}

.def-btn.bg-blue {
    background: var(--main-color);
    color: var(--white-color);
    border-color: var(--main-color);
}

.def-btn.bg-blue span {
    background: var(--white-color);
}

.def-btn.bg-blue:hover {
    background-color: #7FA6FF;
    border-color: #7FA6FF;
}

.def-btn.bg-blue:hover svg path {
    fill: var(--main-color);
}

.about-cta--wrapper a {
    margin: 0 auto;
}

.story-slider--wrapper {
    display: flex;
    padding: 150px 0;
    gap: 80px;
}

.story-left-col {
    width: calc(27% - 40px);
    display: flex;
    flex-direction: column;
}

.story-slider--wrapper .story-slider {
    width: calc(73% - 40px);
}

.story-content-box {
    border-radius: 18px;
    background: radial-gradient(100% 100% at 50% 0%, rgba(244, 244, 247, 0.50) 0%, #EBEBF2 100%);
    padding: 40px 30px 40px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.story-slider .swiper-slide {
    height: auto;
}

.story-content-box p {
    font-size: 20px;
    line-height: 1.4;
    margin-top: 34px;
    margin-bottom: 0;
}

.client-info h3 {
    font-size: 22px;
    color: var(--third-color);
    font-family: 'Helvetica Now Display';
    line-height: 1;
    letter-spacing: -0.44px;
    margin-bottom: 11px;
}

.client-info span {
    display: block;
    font-size: 18px;
    color: #606060;
    line-height: 1;
}

.story-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 72px;
}

.company-logo {
    border-radius: 8px;
    background: var(--main-color);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    font-size: 38px;
    font-weight: 500;
    line-height: 1.57;
    letter-spacing: -1.14px;
    font-family: 'HelveticaNowDisplay-Medium';
}

.story-slider-pagination .swiper-arrow {
    position: relative;
    border-radius: 10px;
    background: #EBEBF2;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    right: 0;
    left: 0;
    margin: 0;
}

.story-slider-pagination .swiper-arrow:after {
    display: none;
}

.story-slider-pagination {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    z-index: 0;
}

.story-slider-pagination .swiper-arrow svg {
    width: auto;
    height: auto;
}

.stats--wrapper {
    background: var(--third-color);
    padding: 100px 0;
}

.stats--wrapper p {
    color: var(--fourth-color);
    font-size: 24px;
    line-height: 1;
    /* border-bottom: 1px solid #7FA6FF; */
    padding-bottom: 25px;
    margin-bottom: 40px;
}

.stats--wrapper h2 {
    color: var(--white-color);
    font-size: 46px;
    letter-spacing: -0.96px;
    line-height: 1.20;
    margin: 0;
    font-family: 'HelveticaNowDisplay-Medium';
}

.stats--wrapper .col-4 {
    padding: 0 25px;
    min-height: 379px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats--wrapper .row {
    margin: 0 -25px;
}

.stats--wrapper .ref-rate {
    justify-content: flex-end;
    padding-bottom: 50px;
}

.stats--wrapper .coffee-col {
    justify-content: flex-end;
}

.our-team--wrapper {
    background: var(--third-color);
    overflow: hidden;
    padding: 100px 0;
}

.team-heading--wrapper span {
    color: var(--fourth-color);
}

.team-heading--wrapper span::before {
    background: var(--fourth-color);
}

.team-heading--wrapper h2 {
    color: var(--white-color);
}

.team-heading--wrapper p {
    color: var(--fourth-color);
    font-size: 24px;
    line-height: 1.8;
    margin: 0;
    max-width: 513px;
}

.team-heading--wrapper {
    display: flex;
    align-items: flex-end;
    gap: 80px;
    justify-content: space-between;
}

.our-team--wrapper a.arrow-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white-color);
    font-size: 16px;
    letter-spacing: -0.32px;
    width: fit-content;
    font-family: 'HelveticaNowDisplay-Medium';
}

.team-box img {
    border-radius: 18px;
}

.team-member-info h6 {
    margin-bottom: 14px;
    color: var(--white-color);
    font-size: 22px;
    letter-spacing: -0.44px;
    line-height: 1;
    font-family: 'HelveticaNowDisplay-Medium';
}

.team-member-info span {
    display: block;
    color: var(--fourth-color);
    font-size: 18px;
    line-height: 1;
}

.team-member-info {
    margin-top: 28px;
}

.team-slider {
    margin: 72px 0 116px;
    overflow: visible;
}

a.arrow-btn svg {
    display: block;
    position: relative;
    /* top: 2px; */
}

.client--wrapper {
    background: var(--third-color);
    padding: 100px 0;
}

.client--wrapper .sec-heading span {
    color: var(--fourth-color);
}

.client--wrapper .sec-heading span:before {
    background: var(--fourth-color);
}

.client--wrapper .sec-heading h2 {
    color: var(--white-color);
    font-size: 56px;
    letter-spacing: -1.12px;
    text-indent: 250px;
    line-height: 1.25;
}

.client--wrapper .def-btn {
    margin-left: auto;
}

.client-logo--wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 68px 0 80px;
}

.logo-box {
    width: calc(16.66% - 16.66px);
    border-radius: 24px;
    background: #262626;
    padding: 27px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heading-with-text.sec-heading span {
    position: absolute;
    left: 0;
    top: 25px;
}

.heading-with-text.sec-heading {
    position: relative;
}

.pt-150 {
    padding-top: 150px;
    padding-bottom: 150px;
}

.project-heading--wrapper {
    display: flex;
    align-items: flex-end;
    gap: 80px;
    justify-content: space-between;
    margin-bottom: 66px;
}

.our-project--wrapper .work-tag-bg {
    transform: none;
}

.our-project--wrapper .work-tag {
    background: var(--white-color);
}

.our-project--wrapper .work-tag-bg::after,
.our-project--wrapper .work-tag-bg::before {
    background-image: url('../images/corner-shape.png');
    position: absolute;
    content: '';
    width: 18px;
    height: 18px;
    background-size: cover;
}

.our-project--wrapper .work-tag-bg::after {
    top: 0;
    left: -18px;
}

.our-project--wrapper .work-tag-bg::before {
    bottom: -18px;
    right: 0;
}

.our-project--wrapper .work-media {
    padding-bottom: 90%;
}

.our-project--wrapper .col-6,
.our-project--wrapper .col-1 {
    padding: 0 20px;
}

.our-project--wrapper .row {
    margin: 0 -20px;
}

.our-project--wrapper .col-12 .work-media {
    padding-bottom: 36.1%;
}

.our-project--wrapper .col-12 h3 {
    max-width: 510px;
    margin-bottom: 0;
}

.our-project--wrapper .col-12 p {
    max-width: 533px;
}


/* ============================================= Services Page ============================================= */

.service-hero-banner--wrapper {
    border-radius: 40px;
    background: radial-gradient(100% 100% at 50% 0%, rgba(244, 244, 247, 0.50) 0%, #EBEBF2 100%);
    padding: 120px 60px 163px 60px;
    margin: 60px 0 40px;
}

.service-hero-banner--wrapper span {
    font-family: 'HelveticaNowDisplay-Regular';
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 24px;
    position: relative;
    padding-left: 26px;
}

.service-hero-banner--wrapper span:after {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--main-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.service-hero-banner--wrapper h1 {
    font-size: 74px;
    font-family: 'HelveticaNowDisplay-Medium';
    letter-spacing: -1.48px;
    line-height: 1.10;
    max-width: 880px;
    margin: 0;
}

.service-heading--wrapper {
    display: flex;
    gap: 100px;
    justify-content: space-between;
    align-items: flex-start;
}

.service-heading--wrapper h2 {
    margin: 0;
    font-size: 56px;
    color: #06070A;
    letter-spacing: -1.12px;
    line-height: 1.05;
    font-family: 'HelveticaNowDisplay-Medium';
}

.service-heading--wrapper p {
    font-size: 24px;
    color: var(--secondary-color);
    line-height: 1.80;
    margin: 0;
    max-width: 915px;
}

.service-card--wrapper {
    display: flex;
    gap: 40px;
    margin-top: 87px;
    flex-wrap: wrap;
}

.service-card {
    width: calc(50% - 20px);
    border-radius: 18px;
    border: 1px solid #EBEBF2;
    background: var(--white-color);
    padding: 54px 40px 25px 40px;
    position: relative;
}

.service-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card h3 {
    font-size: 46px;
    letter-spacing: -0.92px;
    line-height: 1.20;
    font-family: 'Helvetica Now Display';
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-card p {
    font-size: 22px;
    line-height: 1.40;
    color: var(--secondary-color);
    max-width: 503px;
    margin-bottom: 25px;
}

.service-card-img {
    padding-bottom: 73%;
    position: relative;
    margin-top: auto;
}

.service-card-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hover-img,
.service-card:hover .normal-img {
    opacity: 0;
}

.service-card:hover .hover-img {
    opacity: 1;
}

.services-detail--wrapper {
    padding: 100px 0;
}

.service-card svg {
    position: absolute;
    top: 20px;
    right: 20px;
}

.service-card:hover svg rect {
    fill: var(--main-color);
}

.service-card:hover svg path {
    fill: var(--white-color);
    position: relative;
    transform: translateY(-10px);
}

.service-card:hover {
    background: radial-gradient(100% 100% at 50% 0%, rgba(255, 255, 255, 0.60) 0%, #F7F7F7 100%);
    box-shadow: 0 16px 16px 0 rgba(63, 63, 63, 0.08), 0 24px 32px 0 rgba(63, 63, 63, 0.08);
}

.service-card-detail {
    width: calc(50% - 20px);
    border-radius: 18px;
    background: radial-gradient(100% 100% at 50% 0%, rgba(255, 255, 255, 0.60) 0%, #F7F7F7 100%);
    padding: 60px 40px 40px 40px;
}

.service-card-detail h4 {
    font-size: 16px;
    line-height: 1.80;
    color: var(--main-color);
    font-family: 'HelveticaNowDisplay-Regular';
    margin: 0;
}

.service-card-detail p {
    font-size: 26px;
    line-height: 1.60;
    color: var(--third-color);
    margin: 21px 0 0;
}

.service-card-detail li {
    font-size: 22px;
    line-height: 1.40;
    font-family: 'HelveticaNowDisplay-Regular';
    color: var(--secondary-color);
    position: relative;
    padding-left: 32px;
}

.service-card-detail li:before {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    background-image: url('../images/circle-check.svg');
    background-size: cover;
    top: 6px;
    left: 0;
    z-index: 1;
}

.service-card-detail ul li:not(:last-child) {
    margin-bottom: 17px;
}

.service-card-detail ul {
    margin: 42px 0 52px;
}

.service-sec.bg-black {
    background: var(--third-color);
}

.service-sec.bg-black h2 {
    color: var(--white-color);
}

.service-sec.bg-black p,
.service-sec.bg-black .txt-wht,
.service-sec.bg-black .service-card-detail li {
    color: var(--fourth-color);
}

.service-sec.bg-black .service-card {
    border: 1px solid var(--secondary-color);
    background: var(--third-color);
}

.service-sec.bg-black .service-card-detail {
    background: radial-gradient(143.1% 143.1% at 50% -43.1%, #151515 0%, #262626 100%);
}

.service-sec.bg-black .service-card-detail h4 {
    color: #7FA6FF;
}

.service-sec.bg-black .service-card-detail p {
    color: var(--white-color);
}

.service-card h3 sup {
    font-size: 26px;
    letter-spacing: 0;
    top: -15px;
}

.blog-slider--wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 163px;
    padding: 100px 0;
}

.blog-slider-left-col {
    width: calc(29.1% - 81.5px);
    display: flex;
    flex-direction: column;
}

.blog-slider-right-col {
    width: calc(70.9% - 81.5px);
}

.blog-slider-right-col .blog-box {
    width: 100%;
}

.industry-tools--wrapper {
    background: radial-gradient(100% 100% at 50% 0%, rgba(244, 244, 247, 0.50) 0%, #EBEBF2 100%);
}

.industry-tools--wrapper h2 {
    color: var(--third-color);
    font-size: 68px;
    font-weight: 400;
    line-height: 1.10;
    letter-spacing: -1.36px;
    font-family: 'HelveticaNowDisplay-Regular';
    margin-bottom: 67px;
}

.industry-tools--wrapper h2 span {
    text-align: right;
    display: block;
    margin-top: 3px;
}

.tools-box {
    border-radius: 24px;
    background: var(--white-color);
    padding: 20px 15px;
}

.tools-box img {
    margin: 0 auto;
}

.tools-slider .swiper-slide {
    width: auto !important;
    flex-shrink: 0;
}

.tools-slider {
    padding: 0 20px;
}

.tools-slider.dir-rtl {
    margin: 30px 0;
}

.tools-slider .swiper-wrapper {
    display: flex;
    align-items: center;
    transition-timing-function: linear !important;
}

.industry-tools--wrapper a.def-btn {
    margin-left: auto;
    margin-top: 80px;
}

.service-change-view li {
    border-radius: 4px;
    border: 1px solid #606060;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-change-view li span {
    display: none;
    font-size: 12px;
    font-family: 'HelveticaNowDisplay-Regular';
}

ul.service-change-view {
    display: flex;
    gap: 4px;
}

.service-change-view li.active {
    background: var(--main-color);
    border-color: var(--main-color);
}

.service-change-view li.active span {
    display: block;
    color: var(--white-color);
}

.service-change-view li.active svg path {
    fill: var(--white-color);
}

.service-card--wrapper.carousel::-webkit-scrollbar-track {
    background-color: var(--fourth-color);
}

.service-card--wrapper.carousel::-webkit-scrollbar {
    height: 2px;
    background-color: var(--fourth-color);
}

.service-card--wrapper.carousel::-webkit-scrollbar-thumb {
    height: 4px;
    background-color: var(--main-color);
}


/* ============================================= Branding Services Page ============================================= */

.service-hero-intro-banner--wrapper {
    border-radius: 40px;
    background: radial-gradient(117.62% 117.62% at 50% -17.62%, rgba(76, 126, 240, 0.50) 0%, #4C7EF0 100%);
    padding: 60px 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 44px;
    position: relative;
    justify-content: space-between;
    align-items: center;
    margin: 60px 0 40px;
}

.service-hero-intro-banner--wrapper span {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0px 0px 12px 0;
    background: var(--white-color);
    color: var(--secondary-color);
    padding: 10px 20px 15px 26px;
    line-height: 1;
    font-family: 'HelveticaNowDisplay-Regular';
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-hero-intro-banner--wrapper span i {
    font-style: normal;
}

.service-hero-intro-banner--wrapper span u {
    width: 6px;
    height: 6px;
    background: var(--main-color);
    position: absolute;
    top: 47%;
    transform: translateY(-50%);
    left: 0;
    border-radius: 50%;
}

.service-hero-intro-banner--wrapper span:after,
.service-hero-intro-banner--wrapper span::before {
    position: absolute;
    content: '';
    width: 18px;
    height: 18px;
    background-image: url('../images/corner-shape.png');
    transform: rotate(270deg);
}

.service-hero-intro-banner--wrapper span:after {
    top: 0;
    right: -18px;
}

.service-hero-intro-banner--wrapper span::before {
    bottom: -18px;
    left: 0;
}

.hero-left-col h1 {
    color: var(--white-color);
    font-size: 56px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -1.12px;
    font-family: 'HelveticaNowDisplay-Medium';
    margin-bottom: 39px;
}

.hero-left-col p {
    font-size: 24px;
    line-height: 1.8;
    color: #EBEBF2;
    margin: 0;
}

.hero-left-col {
    width: calc(53.4% - 22px);
}

.hero-right-col {
    width: calc(46.6% - 22px);
}

.service-intro--wrapper {
    padding: 97px 0 142px 0;
    display: flex;
    /* gap: 80px; */
    justify-content: space-between;
}

.intro-content {
    max-width: 995px;
}

.intro-content p {
    font-size: 28px;
    line-height: 1.60;
    color: var(--secondary-color);
    margin: 0;
}

.intro-content p:not(:last-of-type) {
    margin-bottom: 34px;
}

.service-intro--wrapper .sec-heading {
    padding-top: 8px;
}

.intro-content p:first-child {
    text-indent: 121px;
}

.service-process--wrapper {
    display: flex;
    gap: 100px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.process-left-col {
    width: calc(46.8% - 50px);
    position: sticky;
    top: 140px;
}

.process-right-col {
    width: calc(53.2% - 50px);
}

.process-left-col h2 {
    font-size: 68px;
    font-family: 'HelveticaNowDisplay-Regular';
    color: var(--white-color);
    letter-spacing: -1.36px;
    line-height: 1.10;
    margin-bottom: 48px;
}

.process-box span {
    font-size: 108px;
    font-family: 'Helvetica Now Display';
    letter-spacing: -3.24px;
    line-height: 0.78;
    color: #606060;
    display: block;
}

.process-box h3 {
    font-size: 46px;
    font-family: 'Helvetica Now Display';
    color: var(--white-color);
    letter-spacing: -0.92px;
    line-height: 1.20;
    margin-bottom: 24px;
    margin-top: 8px;
}

.process-box p {
    font-size: 22px;
    color: var(--fourth-color);
    line-height: 1.40;
    margin: 0;
}

.process-right-col .process-box:not(:last-child) {
    margin-bottom: 54px;
}

.process-box.active span {
    background: linear-gradient(180deg, rgba(127, 164, 255, 1) 0%, rgba(0, 0, 0, 0.5) 160%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 1;
}

.process-box-2 {
    opacity: 0.75;
}

.process-box-3 {
    opacity: 0.50;
}

.process-box-4,
.process-box span {
    opacity: 0.25;
}

.process-box.active {
    opacity: 1;
}

.bg-black {
    background: var(--third-color);
}

.breakdown--wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    align-items: flex-end;
}

.breakdown-left-col {
    width: calc(59.2% - 40px);
}

.breakdown-right-col {
    width: calc(40.8% - 40px);
    border-radius: 18px;
    background: radial-gradient(143.1% 143.1% at 50% -43.1%, #151515 0%, #262626 100%);
    padding: 60px 40px;
}

.breakdown-left-col span {
    margin-bottom: 20px;
}

.breakdown-left-col p {
    font-size: 28px;
    line-height: 1.60;
    color: var(--fourth-color);
    margin: 0;
}

.breakdown-left-col p:not(:last-of-type) {
    margin-bottom: 38px;
}

.breakdown-left-col .sec-heading {
    margin-bottom: 61px;
}

.breakdown-left-col a {
    margin-top: 45px;
}

.breakdown-right-col h3 {
    font-size: 30px;
    line-height: 1.2;
    font-family: 'HelveticaNowDisplay-Medium';
    letter-spacing: -0.6px;
    color: var(--fourth-color);
    max-width: 200px;
    margin-bottom: 85px;
}

.service-list-box h3 {
    font-size: 30px;
    line-height: 1.2;
    font-family: 'HelveticaNowDisplay-Medium';
    letter-spacing: -0.6px;
    color: var(--fourth-color);
}

.service-list-box li {
    font-size: 22px;
    line-height: 1.40;
    color: var(--fourth-color);
    font-family: 'HelveticaNowDisplay-Regular';
    position: relative;
    padding-left: 32px;
}

.service-list-box li::before {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    background-image: url('../images/circle-check.svg');
    background-size: cover;
    top: 6px;
    left: 0;
    z-index: 1;
}

.breakdown-right-col li {
    font-size: 22px;
    line-height: 1.40;
    color: var(--fourth-color);
    font-family: 'HelveticaNowDisplay-Regular';
    position: relative;
    padding-left: 32px;
}

.breakdown-right-col li:before {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    background-image: url('../images/circle-check.svg');
    background-size: cover;
    top: 6px;
    left: 0;
    z-index: 1;
}

.breakdown-right-col li:not(:last-child) {
    margin-bottom: 20px;
}

.why-us-sec {
    background: radial-gradient(100% 100% at 50% 0%, rgba(244, 244, 247, 0.50) 0%, #EBEBF2 100%);
}

.why-us--wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    align-items: flex-start;
}

.why-us-heading-col {
    width: calc(26.88% - 50px);
    position: sticky;
    top: 140px;
}

.why-us-content-col {
    width: calc(73.12% - 50px);
}

.why-us-heading-col h2 {
    margin: 0;
    font-size: 68px;
    font-family: 'HelveticaNowDisplay-Regular';
    letter-spacing: -1.36px;
    line-height: 1.10;
}

.why-us-content-col p {
    font-size: 28px;
    line-height: 1.60;
    color: var(--secondary-color);
    margin: 0;
}

.why-us-content-col p b {
    font-family: 'Helvetica Now Display';
}

.why-us-content-col p:not(:last-of-type) {
    margin-bottom: 39px;
}

.why-us-content-col a {
    margin-top: 48px;
}

.faq--wrapper {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 100px 0 150px;
}

.faq-heading-col {
    width: calc(38.85% - 40px);
    position: sticky;
    top: 140px;
}

.faq-body-col {
    width: calc(61.15% - 40px);
}

.accordian-heading h3 {
    font-size: 24px;
    letter-spacing: -0.48px;
    font-family: 'HelveticaNowDisplay-Medium';
    line-height: 1.20;
    color: #606060;
    margin: 0;
}

.accordian-heading {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
}

.accordian-body p {
    font-size: 22px;
    line-height: 1.40;
    color: var(--secondary-color);
    margin: 0;
    max-width: 662px;
}

.accordian-inner-body {
    padding-top: 12px;
    padding-bottom: 52px;
}

.accordian {
    border-bottom: 1px solid #D9D9D9;
}

.faq-body-col .accordian:not(:first-child) {
    padding-top: 20px;
}

.accordian-body {
    max-height: 0;
    overflow: hidden;
    transition: .3s;
}

.uiux-hero--wrapper .hero-left-col {
    width: calc(55% - 22px);
}

.uiux-hero--wrapper .hero-right-col {
    width: calc(45% - 22px);
}

.uiux-intro-content {
    max-width: 986px;
}


/* ============================================= Web development Services Page ============================================= */

.web-dev-hero--wrapper {
    background: radial-gradient(143.1% 143.1% at 50% -43.1%, #151515 0%, #262626 100%);
}

.web-dev-hero--wrapper .hero-left-col {
    width: calc(55% - 22px);
}

.web-dev-hero--wrapper .hero-right-col {
    width: calc(45% - 22px);
}

.service-intro--wrapper.service-web-dev-intro--wrapper {
    display: block;
    padding: 97px 0 142px;
}

.service-web-dev-intro--wrapper .sec-heading {
    padding: 0;
}

.service-web-dev-intro--wrapper .intro-content {
    max-width: 100%;
}

.service-web-dev-intro--wrapper .intro-content p:first-child {
    text-indent: 0;
}

.service-web-dev-intro--wrapper .sec-heading span {
    margin-bottom: 65px;
}

.web-dev-process--wrapper h2 {
    color: var(--white-color);
    font-size: 68px;
    font-weight: 400;
    line-height: 1.10;
    letter-spacing: -1.36px;
    font-family: 'HelveticaNowDisplay-Regular';
    max-width: 850px;
    margin: 0;
}

.process-heading {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 33px;
}

.process-heading span {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.50) 100%), #7FA4FF;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--third-color);
    font-size: 34px;
    line-height: 1;
    letter-spacing: -1.02px;
    font-family: 'Helvetica Now Display';
}

.process-heading h3 {
    color: var(--white-color);
    font-size: 38px;
    line-height: 1.4;
    letter-spacing: -0.76px;
    font-family: 'Helvetica Now Display';
    margin: 0;
}

.service-process-box p {
    color: var(--fourth-color);
    font-size: 22px;
    line-height: 1.4;
    margin: 0;
}

.process-box--wrapper:after {
    content: '';
    display: table;
    clear: both;
}

.dev-process-box--wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    margin-top: 83px;
}

.process-box--wrapper {
    width: calc(50% - 40px);
}

.dev-process-box--wrapper .process-box--wrapper:last-child {
    padding-top: 150px;
}

.process-box--wrapper .service-process-box:not(:first-child),
.process-box--wrapper a {
    margin-top: 92px;
}

.web-dev-breakdown--wrapper p {
    color: var(--fourth-color);
    font-size: 28px;
    line-height: 1.6;
    margin: 0;
}

.web-dev-breakdown--wrapper p:not(:last-of-type) {
    margin-bottom: 42px;
}

.web-dev-breakdown--wrapper .sec-heading {
    margin-bottom: 60px;
}

.breakdown-box h3 {
    margin-bottom: 49px;
}

.breakdown-box ul li {
    margin-bottom: 30px;
}

.breakdown-box ul {
    column-count: 3;
    column-gap: 56px;
}

.web-dev-breakdown--wrapper a {
    margin-top: 46px;
}

.breakdown-box {
    border-top: 1px solid var(--secondary-color);
    padding-top: 50px;
    margin-top: 69px;
}

.web-dev-breakdown-sec {
    padding: 25px 0 134px;
}


/* ============================================= Support Services Page ============================================= */

.support-hero--wrapper {
    background: radial-gradient(117.62% 117.62% at 50% -17.62%, rgba(96, 96, 96, 0.50) 0%, #606060 100%);
    padding: 60px 40px 60px 50px;
    gap: 34px;
}

.support-hero--wrapper .hero-left-col {
    width: calc(55% - 17px);
}

.support-hero--wrapper .hero-right-col {
    width: calc(45% - 17px);
}

.support-intro--wrapper .intro-content p:first-child {
    margin: 0;
    max-width: 680px;
}

.support-intro--wrapper .intro-content {
    display: flex;
    gap: 100px;
    align-items: flex-end;
}

.support-breakdown-left-col {
    width: calc(41.75% - 40px);
    position: sticky;
    top: 140px;
}

.support-breakdown-right-col {
    width: calc(58.25% - 40px);
}

.breakdown--wrapper.support--wrapper {
    align-items: flex-start;
}

.support-breakdown-left-col a.arrow-btn.wht-color {
    margin-top: 55px;
}

.support-breakdown-right-col p {
    color: var(--fourth-color);
    font-size: 28px;
    line-height: 1.6;
    margin: 0;
}

.support-breakdown-right-col p:not(:last-of-type) {
    margin-bottom: 36px;
}

.support-breakdown-right-col h3 {
    border-top: 1px solid var(--secondary-color);
    margin-top: 48px;
    padding-top: 50px;
    margin-bottom: 49px;
}

.support-breakdown-right-col ul {
    column-count: 2;
    column-gap: 140px;
}

.support-breakdown-right-col ul li {
    margin-bottom: 30px;
}

.seo-support--wrapper ul li:nth-child(-n+3) {
    min-width: 350px;
}

.cro-support--wrapper ul li:nth-last-child(-n+3) {
    min-width: 344px;
}

.cro-support--wrapper .support-breakdown-right-col ul {
    column-gap: 26px;
}

.cro-support--wrapper .service-list-box li {
    font-size: 21px;
}

.support-breakdown-sec {
    /* padding: 150px 0 114px; */
    padding: 25px 0 114px;
}

.support-heading--wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.support-heading--wrapper h2 {
    color: var(--white-color);
    font-size: 68px;
    font-weight: 400;
    line-height: 1.10;
    letter-spacing: -1.36px;
    font-family: 'HelveticaNowDisplay-Regular';
    max-width: 583px;
    margin: 0;
}

.support-process-box-slider .process-box h3 {
    margin-top: -32px;
    position: relative;
    z-index: 5;
}

.process-box.swiper-slide-active span {
    background: linear-gradient(180deg, rgba(127, 164, 255, 1) 0%, rgba(0, 0, 0, 0.5) 160%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 1;
}

.process-box.swiper-slide-active {
    opacity: 1;
}

.support-process-box-slider {
    overflow: visible;
    padding-top: 102px;
}

.support-process-sec {
    overflow: hidden;
}


/* ============================================= FAQ Page ============================================= */

.page-header--wrapper {
    border-radius: 40px;
    background: radial-gradient(100% 100% at 50% 0%, rgba(244, 244, 247, 0.50) 0%, #EBEBF2 100%);
    padding: 110px 60px;
    margin: 40px 0;
}

.page-header--wrapper span {
    font-family: 'HelveticaNowDisplay-Regular';
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 23px;
    position: relative;
    padding-left: 26px;
}

.page-header--wrapper span::after {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--main-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.page-header--wrapper h1 {
    font-size: 74px;
    font-family: 'HelveticaNowDisplay-Medium';
    letter-spacing: -1.48px;
    line-height: 1.10;
    margin: 0;
}

.faq-left-col {
    width: calc(22.5% - 40px);
    position: sticky;
    top: 140px;
    border-right: 1px solid #EBEBF2;
}

.faq-right-col {
    width: calc(77.5% - 40px);
}

.faq-menu a {
    color: #3F3F3F;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.48px;
    font-family: 'HelveticaNowDisplay-Medium';
    display: flex;
    align-items: center;
    gap: 20px;
}

.faq-menu li:not(:last-child) {
    margin-bottom: 32px;
}

.faq-menu a svg {
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.faq-menu a:hover,
.faq-menu a.active {
    color: var(--main-color);
}

.faq-menu a:hover svg,
.faq-menu a.active svg {
    opacity: 1;
    visibility: visible;
}

.faq-right-col h2 {
    color: #151515;
    font-size: 56px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -1.12px;
    font-family: 'HelveticaNowDisplay-Medium';
    margin-bottom: 32px;
    scroll-margin-top: 130px;
}

.search-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.search-chips button {
    padding: 0;
    background: none;
    border: none;
}

.search-chips .search-chip {
    font-size: 18px;
    border: 1px solid var(--third-color);
    border-radius: 60px;
    font-family: 'HelveticaNowDisplay-Medium';
    padding: 6px 12px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 7px;
}

.active-search {
    align-items: center;
    gap: 10px;
}

.active-search .clear-all {
    font-size: 15px;
    border: 1px solid var(--third-color);
    border-radius: 60px;
    font-family: 'HelveticaNowDisplay-Medium';
    padding: 4px 12px;
    background: none;
}

.faq-right-col .accordian {
    padding-top: 20px;
}

.faq-right-col p {
    max-width: 866px;
}

ul.list-with-dots {
    padding-left: 13px;
    margin: 26px 0;
}

.list-with-dots li:after,
.accordian-content-right-col li:after {
    position: absolute;
    content: '';
    width: 4px;
    height: 4px;
    background: currentColor;
    top: 13px;
    left: 0;
}

ul.list-with-dots li:not(:last-child) {
    margin-bottom: 8px;
}

.accordian-inner-body li {
    color: #3F3F3F;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    font-family: 'HelveticaNowDisplay-Regular';
    position: relative;
    padding-left: 18px;
}

.list-with-check li:after,
.accordian-content-left-col a::after {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    background-image: url('../images/circle-check.svg');
    background-size: cover;
    top: 5px;
    left: 0;
    z-index: 1;
}

.faq-right-col .accordian-inner-body .list-with-check li {
    padding-left: 36px;
}

.list-with-check li:not(:last-child) {
    margin-bottom: 20px;
}

.list-with-check {
    column-count: 2;
    column-gap: 30px;
    padding: 15px 0 15px 20px;
}

.faq-right-col .accordian-inner-body {
    padding-right: 60px;
}

.faq-right-col p:last-of-type {
    margin-bottom: 33px;
}

.accordian-content-col-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding-left: 20px;
    margin-bottom: 20px;
    margin-top: 60px;
}

.accordian-content-left-col {
    width: calc(37.25% - 15px);
}

.accordian-content-right-col {
    width: calc(62.75% - 15px);
    border-radius: 18px;
    background: #EBEBF2;
    padding: 29px 20px 25px;
}

.accordian-content-left-col a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 36px;
    position: relative;
    color: #151515;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.4px;
    font-family: 'HelveticaNowDisplay-Medium';
}

.accordian-content-left-col a::after {
    top: 0;
}

.accordian-content-left-col a:not(:last-child) {
    margin-bottom: 30px;
}

.accordian-content-right-col h6 {
    color: #151515;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.48px;
    font-family: 'HelveticaNowDisplay-Medium';
    margin-bottom: 17px;
}

.accordian-content-right-col ul {
    padding-left: 12px;
}

.accordian-content-right-col ul li:not(:last-child) {
    margin-bottom: 8px;
}

.faq-right-col .accordian-inner-body a.def-btn {
    margin-top: 40px;
}

.faq-right-col .faq-content-box:not(:first-of-type) {
    margin-top: 71px;
}

.newsletter--wrapper {
    background: radial-gradient(100% 100% at 50% 0%, rgba(244, 244, 247, 0.50) 0%, #EBEBF2 100%);
    padding: 100px 0;
}

.testimonial-box {
    border-radius: 40px;
    background: #FFF;
    position: relative;
    padding: 60px;
}

.testimonial-box .quote-icon {
    position: absolute;
    top: 71px;
    right: 62px;
    opacity: 0.5;
}

.testimonial-box p {
    color: #3F3F3F;
    font-size: 20px;
    line-height: 1.4;
    margin: 34px 0 0;
    position: relative;
    z-index: 1;
}

.testimonial-box .client-info span {
    font-family: 'HelveticaNowDisplay-Regular';
}

.testimonial-nav .swiper-arrow:after {
    display: none;
}

.testimonial-nav .swiper-arrow {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--secondary-color);
    position: relative;
    margin: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.testimonial-nav .swiper-arrow svg {
    width: auto;
    height: auto;
}

.testimonial-nav {
    display: flex;
    gap: 12px;
    bottom: 0;
    right: 0;
    position: absolute;
    padding-left: 40px;
    border-radius: 20px 0 0 0;
    background: radial-gradient(100% 100% at 50% 0%, rgba(244, 244, 247, 0.50) 0%, #EBEBF2 100%);
    z-index: 1;
    padding-top: 40px;
}

.testimonial-nav .swiper-arrow.swiper-button-disabled {
    opacity: 0.5;
}

.testimonial-nav .corner-svg {
    position: absolute;
    transform: rotate(90deg);
}

.testimonial-nav .top-left-corner {
    left: -19px;
    bottom: 0px;
}

.testimonial-nav .bottom-right-corner {
    top: -19px;
    right: 0;
}

.newsletter-box {
    border-radius: 40px;
    background: #FFF;
    padding: 70px 60px;
    display: flex;
    gap: 62px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
}

.newsletter-col-left {
    width: calc(54.5% - 31px);
}

.newsletter-col-right {
    width: calc(45.5% - 31px);
    top: 150px;
    position: sticky;
    height: fit-content;
}

.newsletter-col-left h2 {
    color: #151515;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-family: 'HelveticaNowDisplay-Medium';
    margin-bottom: 12px;
}

.newsletter-col-left p {
    margin: 0;
    color: #3F3F3F;
    font-size: 22px;
    line-height: 1.4;
}

.newsletter-col-right form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-col-right form input {
    border-radius: 12px;
    border: 1px solid #D8D8D8;
    padding: 10px 20px;
    color: #606060;
    font-size: 20px;
    min-width: 300px;
}

.newsletter-col-right button.def-btn {
    background-color: transparent;
}

.newsletter-col-right button.def-btn:hover {
    background-color: var(--third-color);
}

.faq-search-field input {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #D8D8D8;
    display: flex;
    padding: 19px 20px 19px 60px;
    color: #606060;
    font-size: 20px;
    line-height: 1.4;
}

.faq-search-field {
    position: relative;
    margin-bottom: 20px;
}

.faq-search-field svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
}

.faq-right-col>div {
    scroll-margin-top: 130px;
}


/* Megamenu */

.megamenu--wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 60px 0;
    background: transparent;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease;
}

.megamenu--wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    border-radius: 0 0 40px 40px;
    border-top: 1px solid #EBEBF2;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 20px 24px;
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 400ms ease;
    z-index: 0;
}

.megamenu--wrapper>.container {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 1000ms ease, transform 1000ms ease;
}

.megamenu--item:hover .megamenu--wrapper {
    opacity: 1;
    pointer-events: auto;
}

.megamenu--item:hover .megamenu--wrapper::before {
    transform: scaleY(1);
}

.megamenu--item:hover .megamenu--wrapper>.container {
    opacity: 1;
    transform: translateY(0);
}

.megamenu--item:hover a rect,
.megamenu-col li a:hover path,
.megamenu-col li a.active path {
    fill: var(--main-color);
}

.megamenu-col li a:hover,
.megamenu--item:hover a.nav-link,
.megamenu-col li a.active {
    color: var(--main-color);
}

@media screen and (min-width:992px) {
    .megamenu--item:hover .plus {
        opacity: 0;
    }
}

.megamenu--wrapper .container {
    display: flex;
    gap: 30px;
}

.megamenu-col {
    width: calc(25% - 22.5px);
    display: flex;
    flex-direction: column;
}

.megamenu-col .desktop_show {
    margin-top: auto;
}

.megamenu-col .desktop_show a {
    gap: 15px;
}

.megamenu-col h6 {
    color: #151515;
    font-size: 16px;
    line-height: 1;
    font-family: 'HelveticaNowDisplay-Regular';
    margin-bottom: 25px;
}

.megamenu-col li a {
    /* display: flex;
    align-items: center;
    gap: 10px; */
    color: #151515;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.4px;
    font-family: 'HelveticaNowDisplay-Medium';
}

.megamenu-col .more-btn a {
    color: #4C7EF0;
}

.megamenu-col ul li:not(:last-child) {
    margin-bottom: 24px;
}

.megamenu-content-box {
    border-radius: 18px;
    background: radial-gradient(143.1% 143.1% at 50% -43.1%, #151515 0%, #262626 100%);
    padding: 52px 40px 35px 20px;
    position: relative;
}

.megamenu-content-box h4 {
    color: #FFF;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.6px;
    font-family: 'HelveticaNowDisplay-Medium';
    margin-bottom: 26px;
}

.megamenu-content-box p {
    margin: 0;
    color: #D8D8D8;
    font-size: 20px;
    line-height: 1.4;
}

.megamenu-content-box svg {
    position: absolute;
    top: 15px;
    right: 15px;
}

.megamenu-col .more-btn a path {
    fill: #4C7EF0;
}

.megamenu--item a,
.megamenu--item button {
    display: flex;
    align-items: center;
    gap: 6px;
}

.megamenu-content-box:hover svg path {
    fill: var(--white-color);
    position: relative;
    transform: translateY(-10px);
}

.megamenu-content-box:hover svg rect {
    fill: var(--main-color);
}


/* ============================================= Contact Page ============================================= */

.contact-form-columns {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    flex-wrap: wrap;
}

.contact-form-left-col {
    width: calc(36.9% - 40px);
    position: sticky;
    top: 140px;
}

.contact-form-right-col {
    width: calc(63.1% - 40px);
}

.contact-form-left-col h2 {
    color: #151515;
    font-size: 68px;
    line-height: 1.1;
    letter-spacing: -1.36px;
    font-family: 'HelveticaNowDisplay-Regular';
    margin-bottom: 20px;
}

.contact-form-left-col p {
    color: #3F3F3F;
    line-height: 1.8;
    font-size: 24px;
    margin-bottom: 0;
}

.contact-field-box {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-field {
    margin-bottom: 29px;
}

.contact-field label,
.contact-field p {
    display: block;
    color: #3F3F3F;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 16px;
}

.contact-field label u {
    text-decoration: none;
}

.contact-field label span,
.contact-field label sup {
    color: var(--main-color);
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #D8D8D8;
    padding: 13px 20px;
    color: #606060;
    font-size: 20px;
    line-height: 1.4;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border: 1px solid #000;
    color: #000;
}

.contact-field input:focus::placeholder,
.contact-field textarea:focus::placeholder {
    color: #000;
}

.contact-field-box .contact-field {
    width: calc(50% - 6px);
}

.contact-field textarea {
    min-height: 112px;
    padding-top: 15px;
    resize: none;
}

.contact-field .radio-field input {
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.contact-field .radio-field input:checked+label {
    color: var(--white-color);
    background: var(--main-color);
    border-color: var(--main-color);
    padding-right: 41px;
}

.contact-field .radio-field label {
    border-radius: 60px;
    border: 1px solid var(--third-color);
    padding: 12px 15px;
    color: var(--Grey, var(--third-color));
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.4px;
    font-family: 'HelveticaNowDisplay-Medium';
    margin: 0;
    cursor: pointer;
    display: flex;
    gap: 12px;
    align-items: center;
    transition: all 0.4s;
    position: relative;
}

.radio-field-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-field .radio-field label img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.contact-field .radio-field input:checked+label img {
    opacity: 1;
    visibility: visible;
}

.contact-form-right-col button.def-btn {
    background: transparent;
    margin-top: 50px;
}

.contact-form-right-col .def-btn:hover {
    background-color: var(--third-color);
}

.contact-form--wrapper {
    padding: 100px 0;
}

.contact-form--wrapper button.def-btn {
    background: none;
}

.contact-form--wrapper button.def-btn:hover {
    background: var(--third-color);
}

.things-process--wrapper {
    background-color: var(--third-color);
    padding: 150px 0;
}

.things-process--wrapper h2 {
    color: #FFF;
    font-size: 56px;
    line-height: 1.05;
    letter-spacing: -1.12px;
    font-family: 'HelveticaNowDisplay-Medium';
    font-weight: 500;
    margin-top: 29px;
    margin-bottom: 44px;
}

.things-process--wrapper ul li {
    color: #D8D8D8;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    font-family: 'HelveticaNowDisplay-Regular';
    position: relative;
    padding-left: 36px;
}

.things-process--wrapper ul li:after {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    background-image: url('../images/circle-check.svg');
    background-size: cover;
    ;
    top: 6px;
    left: 0;
    z-index: 1;
}

.things-process--wrapper ul li:not(:last-child) {
    margin-bottom: 30px;
}

.thing-we-dont {
    border-left: 1px solid #3F3F3F;
    padding-left: 60px;
}

.thing-we-do {
    padding-right: 60px;
}

.things-process--wrapper .thing-we-dont ul li:after {
    background-image: url('../images/cross-icon.svg');
}

.faq-section .faq--wrapper {
    padding-bottom: 100px;
}

.faq-section h2 {
    max-width: 289px;
}


/* ============================================= Case Study Page ============================================= */

.case-study--wrapper {
    padding: 40px 0 100px;
}

.case-study--wrapper .col-12.full-width-col {
    padding: 0 20px;
}

.case-study--wrapper .work-box {
    margin: 0;
}

.case-study--wrapper .row {
    row-gap: 40px;
}

.case-study--wrapper .arrow-btn,
.work-box .arrow-btn {
    color: var(--white-color);
}

.newsletter-sec .newsletter-box {
    background: radial-gradient(143.1% 143.1% at 50% -43.1%, #151515 0%, #262626 100%);
    align-items: flex-start;
    margin: 0 0 100px;
}

.newsletter-sec .newsletter-box h2,
.newsletter-sec .newsletter-box p {
    color: #fff;
}

.newsletter-sec .newsletter-box input {
    border: 1px solid #3F3F3F;
    background: none;
    color: #EBEBF2;
}

.newsletter-sec .newsletter-box input::placeholder {
    color: #EBEBF2;
}

.newsletter-sec .newsletter-col-right button.def-btn:hover {
    background-color: var(--white-color);
    color: var(--third-color);
}

.newsletter-sec .newsletter-col-left h2 {
    margin-bottom: 23px;
}

.newsletter-sec .newsletter-col-left h2 br {
    display: block;
}

.case-study-top--wrapper {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.case-study-top--wrapper .faq-search-field {
    margin: 0;
    max-width: 220px;
}

.case-study-top--wrapper .faq-search-field input {
    min-width: 220px;
    transition: all 0.4s;
}

.case-study-filter--box {
    display: flex;
    overflow: hidden;
    align-items: center;
    width: calc(100% - 250px);
    justify-content: end;
}

.case-study-filter--box h6 {
    color: #3F3F3F;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    font-family: 'HelveticaNowDisplay-Regular';
    margin: 0 20px 0 0;
    max-width: 114px;
    width: 100%;
}

.case-study-filter--box ul {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    flex-wrap: nowrap;
}

.case-study-filter--box ul li {
    white-space: nowrap;
}

.case-study-filter--box a {
    border-radius: 60px;
    border: 1px solid #606060;
    padding: 11px 15px;
    cursor: pointer;
    display: flex;
    gap: 12px;
    align-items: center;
    color: #606060;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.4px;
    font-family: 'HelveticaNowDisplay-Medium';
}

.case-study-filter--box a.active {
    background-color: var(--main-color);
    color: var(--white-color);
    border-color: var(--main-color);
}

.case-study-filter--box a.active img {
    display: block;
}

.case-study-filter--box a img {
    display: none;
}

.faq-search-field input:focus {
    min-width: 100%;
    border-color: var(--main-color);
    color: var(--main-color);
}

.faq-search-field input:focus+svg path {
    fill: var(--main-color);
}


/* ============================================= Blog Hub Page ============================================= */

.blog-hub--wrapper .blog-box {
    width: calc(41.97% - 20px);
    transition: all 0.3s ease;
}

.blog-hub--wrapper .blog-box--wrapper {
    gap: 54px 40px;
}

.blog-box.layout-large {
    width: calc(58.03% - 20px);
}

.blog-media {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-hub--wrapper .blog-media {
    padding-top: 370px;
}

.blog-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-hub-newsletter-sec .newsletter-box {
    margin-bottom: 60px;
}

.insight--wrapper {
    background: radial-gradient(100% 100% at 50% 0%, rgba(244, 244, 247, 0.50) 0%, #EBEBF2 100%);
    padding: 136px 0;
}

.insight--wrapper .sec-heading h2 {
    font-size: 68px;
    letter-spacing: -1.36px;
    line-height: 1.1;
    font-family: 'HelveticaNowDisplay-Regular';
    font-weight: 400;
}

.insight--wrapper .sec-heading span {
    margin-bottom: 24px;
}

.insight-box--wrapper {
    margin-top: 47px;
}

.insight-box {
    border-top: 1px solid #D8D8D8;
    padding-top: 40px;
    display: flex;
    gap: 60px;
    justify-content: space-between;
    align-items: flex-start;
}

.insight-box h3 {
    font-family: 'HelveticaNowDisplay-Medium';
    font-size: 30px;
    color: var(--third-color);
    line-height: 1.2;
    letter-spacing: -0.6px;
    margin-bottom: 33px;
    transition: all 0.1s;
}

.insight-box .insight-heading span {
    display: block;
    font-family: 'HelveticaNowDisplay-Regular';
    font-size: 16px;
    line-height: 1;
    color: #606060;
}

.insight-box p {
    margin: 0;
    font-size: 20px;
    line-height: 1.4;
    color: var(--secondary-color);
    max-width: 466px;
}

.insight-box--wrapper .insight-box:not(:last-child) {
    padding-bottom: 60px;
}

.insight-heading {
    min-width: 467px;
}

#page_navigation {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 60px;
    justify-content: end;
}

#page_navigation button {
    border: none;
    background: none;
    width: 20px;
    height: 20px;
    background: #EBEBF2;
    font-size: 15px;
    font-family: 'HelveticaNowDisplay-Regular';
    letter-spacing: -0.45px;
    color: var(--secondary-color);
    line-height: 16px;
    border-radius: 4px;
    opacity: 0.5;
}

#page_navigation button[class].active {
    background: var(--main-color);
    color: var(--white-color);
}

#page_navigation button[class] {
    background: #EBEBF2;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

#page_navigation button[disabled] {
    opacity: 0.5;
}

#page_navigation:empty {
    display: none;
}

.blog-box-icon {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    background: var(--white-color);
    padding: 0 0 10px 10px;
    border-radius: 0 0 0 15px;
    opacity: 0;
    visibility: visible;
    transition: all 0.5s;
}

.blog-box-icon svg,
.article-hero--wrapper .blog-tag svg {
    position: absolute;
}

.blog-box-icon .top-left-corner,
.article-hero--wrapper .blog-tag .top-left-corner {
    left: -18px;
    top: 0;
}

.blog-box-icon .bottom-right-corner,
.article-hero--wrapper .blog-tag .bottom-right-corner {
    bottom: -18px;
    right: 0;
}

.blog-box:hover .blog-box-icon {
    opacity: 1;
    visibility: visible;
}

.blog-box:hover h2 {
    color: var(--main-color);
}

.blog-box.blog-box-hover:hover .blog-media img {
    opacity: 0;
    visibility: hidden;
}

.blog-box.blog-box-hover:hover .blog-media .hover-img {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.blog-box:hover .blog-media img {
    transform: scale(1.1);
}


/* ============================================= Blog Page ============================================= */

.main-blog--wrapper .blog-media {
    padding-top: 51.8%;
    margin: 0;
}

.main-blog--wrapper {
    position: relative;
}

.main-blog--wrapper ul.blog-tag,
.blog--wrapper .blog-tag {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    border-radius: 0 0 0 18px;
    padding: 0 0 10px 10px;
    background-color: var(--white-color);
}

.main-blog-content {
    position: absolute;
    border-radius: 0 28px 0 0;
    padding: 40px 40px 0 0;
    background: var(--white-color);
    bottom: 0;
    left: 0;
    max-width: 640px;
}

.main-blog-content span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    letter-spacing: -0.28px;
    text-transform: capitalize;
    font-family: 'Helvetica Now Display';
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 27px;
}

.main-blog-content h1 {
    font-size: 68px;
    font-family: 'HelveticaNowDisplay-Regular';
    letter-spacing: -1.36px;
    font-weight: 400;
    line-height: 1.10;
    color: var(--third-color);
    margin: 0;
}

.main-blog--wrapper .blog-tag svg,
.blog--wrapper .blog-tag svg {
    position: absolute;
}

.main-blog--wrapper .top-left-corner,
.blog--wrapper .top-left-corner {
    left: -18px;
    top: 0;
}

.main-blog--wrapper .bottom-right-corner,
.blog--wrapper .bottom-right-corner {
    right: 0;
    bottom: -18px;
}

.main-blog-content .content-svg {
    position: absolute;
    width: 28px;
    height: auto;
    transform: rotate(180deg);
}

.main-blog--wrapper .content-svg.top-left-corner {
    top: -28px;
    left: 0;
}

.main-blog--wrapper .content-svg.bottom-right-corner {
    bottom: 0;
    right: -28px;
}

.main-blog-sec {
    margin: 60px 0 80px;
}

.blog--wrapper .blog-box h2 {
    margin-top: 22px;
}

.blog--wrapper .blog-box--wrapper {
    gap: 54px 30px;
}

.blog--wrapper .blog-media {
    padding-top: 255px;
}

.blog--wrapper .blog-box {
    width: calc(30.175% - 20px);
}

.blog--wrapper .blog-box.layout-large {
    width: calc(39.65% - 20px);
}

.blog--wrapper .newsletter-sec {
    width: 100%;
}

.blog--wrapper .blog-hub-newsletter-sec .newsletter-box {
    margin: 6px 0;
}

.blog--wrapper .case-study--wrapper {
    border-top: 1px solid #EBEBF2;
    padding-top: 60px;
}

.blog--wrapper .blog-media svg {
    position: absolute;
    bottom: 20px;
    right: 20px;
}


/* ============================================= Articles Page ============================================= */

.article-media {
    position: relative;
    padding-top: 51.77%;
    border-radius: 28px;
    overflow: hidden;
}

.article-media img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-hero--wrapper {
    position: relative;
}

.article-hero--wrapper .blog-tag {
    position: absolute;
    top: -1px;
    right: -1px;
    z-index: 1;
    background: var(--white-color);
    border-radius: 0 0 0 18px;
    padding: 0 0 10px 10px;
}

.article-hero-content {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 640px;
    background: var(--white-color);
    border-radius: 28px 0 0 0;
    padding: 40px 0 0 40px;
}

.article-hero-top-content {
    display: flex;
    align-items: center;
}

.article-hero-top-content span {
    color: #606060;
    letter-spacing: -0.28px;
    font-family: 'HelveticaNowDisplay-Medium';
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.article-hero-top-content span:last-child:after {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    background: var(--main-color);
    border-radius: 50%;
    top: 49%;
    transform: translateY(-50%);
    left: 20px;
}

.article-hero-top-content span:last-child {
    padding-left: 46px;
}

.article-hero-content h1 {
    margin: 23px 0 0;
    font-size: 68px;
    letter-spacing: -1.36px;
    line-height: 1.10;
    font-family: 'HelveticaNowDisplay-Regular';
    color: var(--third-color);
}

.article-hero-section {
    margin: 60px 0 40px;
}

.back-blog-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'HelveticaNowDisplay-Medium';
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.4px;
    color: var(--secondary-color);
    margin-bottom: 26px;
    transition: all 0.3s ease;
}

.back-blog-btn:hover {
    color: var(--main-color);
}

.back-blog-btn:hover svg path {
    fill: var(--main-color);
}

.article-content--wrapper {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-top: 96px;
    padding-bottom: 100px;
}

.article-content-left-col {
    width: calc(67.34% - 40px);
    counter-reset: section;
}

.article-content-right-col {
    width: calc(32.66% - 40px);
    position: sticky;
    top: 140px;
    border-radius: 10px;
    background: radial-gradient(100% 100% at 50% 0%, rgba(255, 255, 255, 0.60) 0%, #F7F7F7 100%);
    box-shadow: -2px 2px 8px 0 rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(37.5px);
    padding: 30px 20px;
    counter-reset: section;
}

.article-content-left-col p {
    font-size: 26px;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-top: 22px;
    margin-bottom: 0;
}

.article-content-left-col h3 {
    font-size: 30px;
    letter-spacing: -0.6px;
    line-height: 1.2;
    font-family: 'HelveticaNowDisplay-Medium';
    margin-bottom: 6px;
    color: var(--secondary-color);
    scroll-margin-top: 160px;
}

.article-content-left-col h4 {
    font-size: 36px;
    line-height: 1.10;
    font-family: 'HelveticaNowDisplay-Regular';
    margin: 0;
    color: var(--third-color);
}

.article-content-left-col h4 {
    font-size: 24px;
    letter-spacing: -0.48px;
    line-height: 1.2;
    font-family: 'HelveticaNowDisplay-Medium';
    color: var(--third-color);
    margin: 25px 0 0;
}

.article-content-left-col table th {
    background: #EBEBF2;
    padding: 25.5px 20px;
    font-size: 18px;
    line-height: 1.2;
    color: var(--secondary-color);
    font-family: 'HelveticaNowDisplay-Medium';
    font-weight: 500;
}

.article-content-left-col table {
    border: 1px solid #EBEBF2;
    border-radius: 20px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    margin-top: 33px;
    width: 100%;
}

.article-content-left-col table td {
    font-size: 20px;
    color: var(--secondary-color);
    line-height: 1.4;
    padding: 23px 20px;
    border-bottom: 1px solid #EBEBF2;
}

.article-content-left-col ul {
    padding-left: 10px;
    margin-top: 27px;
}

.article-content-left-col ul li {
    font-size: 22px;
    font-family: 'HelveticaNowDisplay-Regular';
    color: var(--secondary-color);
    line-height: 1.4;
    position: relative;
    padding-left: 16px;
}

.article-content-left-col ul li:not(:last-child) {
    margin-bottom: 7px;
}

.article-content-left-col ul li:after {
    position: absolute;
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    top: 13px;
    left: 0;
}

.article-img-box {
    display: flex;
    gap: 20px;
    margin-top: 72px;
}

.article-img-box .article-content-img {
    width: auto;
    flex: 0 0 auto;
    display: inline-block;
    border-radius: 28px;
    overflow: hidden;
}

.article-content-left-col blockquote {
    font-size: 36px;
    line-height: 1;
    font-family: 'HelveticaNowDisplay-Regular';
    color: var(--secondary-color);
    padding-left: 20px;
    border-left: 5px solid var(--main-color);
    margin-top: 95px;
    margin-bottom: 0;
}

.article-info {
    display: flex;
    gap: 50px;
    border-top: 1px solid #EBEBF2;
    padding-top: 30px;
    align-items: center;
}

.article-info-box {
    display: flex;
    gap: 17px;
}

.author-box {
    width: 75px;
    height: 75px;
    border-radius: 8px;
    background: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    font-size: 38px;
    font-weight: 500;
    line-height: 1.57;
    letter-spacing: -1.14px;
    font-family: 'HelveticaNowDisplay-Regular';
}

.author-info span {
    font-size: 14px;
    line-height: 1;
    color: var(--third-color);
    font-family: 'HelveticaNowDisplay-Medium';
    display: block;
}

.author-info h3 {
    font-size: 22px;
    letter-spacing: -0.44px;
    font-family: 'Helvetica Now Display';
    line-height: 1;
    margin: 10px 0 4px;
}

html body .article-content-left-col .article-info-box .author-info p {
    font-size: 18px;
    font-family: 'HelveticaNowDisplay-Regular';
    line-height: 1;
    color: #606060;
    margin: 0;
}

.article-content-left-col .article-info .article-info-box+p {
    font-size: 18px;
    line-height: 1;
    font-family: 'HelveticaNowDisplay-Regular';
    color: var(--third-color);
    max-width: 542px;
    margin: 0;
}

.article-content-left-col .accordian:not(:first-of-type) {
    padding-top: 20px;
}

.article-content-left-col>div:not(:last-child) {
    padding-bottom: 96px;
    scroll-margin-top: 160px;
}

.article-finder-top-heading {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 20px;
}

.article-finder-top-heading h6,
.article-finder-top-heading p {
    margin: 0;
    font-size: 18px;
    line-height: 1;
    color: #606060;
    font-family: 'HelveticaNowDisplay-Regular';
}

.article-content-right-col ul li:not(:last-child) {
    margin-bottom: 15px;
}

.article-content-right-col ul li a {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 22px;
    line-height: 1.4;
    color: var(--secondary-color);
}

.article-content-right-col ul p {
    margin: 0;
}

.article-content-right-col span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-family: 'HelveticaNowDisplay-Medium';
    color: #606060;
    line-height: 1;
}

#faq h2 {
    margin-bottom: 50px;
}

#final-thoughts h4 {
    margin-bottom: 23px;
}

.article-content-left-col div .accordian p {
    margin: 0;
    max-width: 100%;
    padding-right: 60px;
}

.article-content-left-col>div h5:before,
.article-content-right-col ul li:not(.non-numerical) p::before {
    counter-increment: section;
    content: counter(section) " . ";
    margin-right: 10px;
}

.article-content-right-col ul li:not(.non-numerical) p::before {
    margin-right: 6px;
}

.article-content-right-col a svg {
    opacity: 0;
    visibility: hidden;
}

.article-content-right-col a.active svg {
    opacity: 1;
    visibility: visible;
}

.article-content-right-col a.active {
    color: var(--main-color)
}

.finder-progressbar {
    position: relative;
    height: 5px;
    background: #eee;
    width: 100%;
    border-radius: 3px;
    margin-bottom: 20px;
    margin-top: 30px;
    overflow: hidden;
}

.finder-progressbar span {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--progress, 0%);
    background: var(--main-color);
    transition: width 0.4s ease-out;
}

.related-article--wrapper {
    padding: 100px 0;
}


/* .related-article--wrapper .sec-heading h2 {
    font-family: 'Helvetica Now Display';
} */

.article-main--wrapper .article-content-left-col h2 {
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -0.96px;
    font-family: 'HelveticaNowDisplay-Medium';
}

.article-content-left-col .shape-box h4 {
    font-size: 24px;
    margin: 0;
    position: relative;
}

article .article-content-left-col .shape-box p {
    font-size: 22px;
    font-family: 'HelveticaNowDisplay-Regular';
    line-height: 1.4;
    margin-top: 10px;
}

.article-section--wrapper .shape-box {
    margin-top: 26px;
}

.article-content-left-col .shape-box {
    padding-left: 32px;
}

.article-content-left-col .shape-box h4:after {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    background-image: url('../images/circle-check.svg');
    background-size: cover;
    top: 4px;
    left: -32px;
    z-index: 1;
}

.quote-content span {
    font-size: 22px;
    font-family: 'HelveticaNowDisplay-Medium';
    letter-spacing: -0.44px;
    color: var(--main-color);
    padding-left: 20px;
    margin-top: 27px;
    display: block;
}

.article-content-left-col .img-box {
    position: relative;
    padding-top: 46.31%;
    border-radius: 28px;
    overflow: hidden;
}

.article-content-left-col .img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content-left-col .img-with-text {
    position: relative;
    margin-top: 90px;
}

.article-content-left-col .img-with-text .text-box {
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 20px 0 0 0;
    padding: 30px 0 0 30px;
    max-width: 530px;
    background: var(--white-color);
}

article .article-content-left-col .img-with-text p {
    font-size: 22px;
    margin: 0;
}

article .article-content-left-col .img-with-text+p {
    margin-top: 30px;
}

.article-main--wrapper .article-content-left-col table td {
    font-size: 18px;
}

.article-main--wrapper .article-content-left-col table th {
    font-family: 'HelveticaNowDisplay-Regular';
}

.article-main--wrapper #faq ul {
    margin: 0;
}

.article-main--wrapper #faq ul li {
    font-family: 'HelveticaNowDisplay-Light';
}

.article-main--wrapper #faq ul li:not(:last-child) {
    margin-bottom: 11px;
}

#introduction p:first-child {
    margin: 0;
}

.article-hero-content .top-left-corner,
.article-content-left-col .text-box .top-left-corner {
    bottom: 0px;
    left: -28px;
    transform: rotate(90deg);
}

.article-hero-content .content-svg,
.article-content-left-col .text-box .content-svg {
    position: absolute;
    width: 28px;
    height: auto;
}

.article-hero-content .bottom-right-corner,
.article-content-left-col .text-box .bottom-right-corner {
    top: -28px;
    right: 0;
    transform: rotate(90deg);
}

.article-content-left-col #ux-loyalty ul {
    margin-top: 12px;
}

#ux-loyalty .shape-box {
    margin-top: 27px;
}

.article-main--wrapper .article-content-left-col div:not(.article-content) p {
    font-size: 22px;
    line-height: 1.4;
}

#influence-loyalty h4 {
    margin-bottom: 22px;
}

.article-img {
    margin-top: 100px;
}

.article-main--wrapper .article-content-left-col div:not(.article-content) .article-img p {
    font-size: 20px;
    color: #606060;
    margin-bottom: 31px;
    text-align: center;
}

.article-img img {
    border-radius: 28px;
}

.article-main--wrapper .article-content-left-col div:not(.article-content) .article-img p b,
.article-content-left-col ul li b {
    font-family: 'HelveticaNowDisplay-Medium';
}

#ux-action .article-img {
    margin-top: 0;
}

#ux-action .article-img p {
    text-align: center;
}

.article-main--wrapper .article-content-left-col div:not(.article-content)#ux-action .article-img p {
    margin: 23px 0;
}

#ux-action h4 {
    margin-bottom: 29px;
}

.article-content-left-col ul span {
    color: var(--main-color);
}

.article-design-growth .article-img {
    margin-top: 40px;
}

.article-content--wrapper a.arrow-btn {
    margin-top: 29px;
}

#design-growth h6 {
    margin-top: 0;
}

.article-main--wrapper .article-content-left-col #design-growth .article-img p {
    margin-bottom: 0;
}


/* ============================================= Stress-Free Website Redesign Checklist ============================================= */

.article-hero-sec {
    background: radial-gradient(100% 100% at 50% 0%, rgba(244, 244, 247, 0.50) 0%, #EBEBF2 100%);
}

.article-redesign-hero--wrapper h1 {
    font-size: 134px;
    letter-spacing: -2.68px;
    line-height: 1.18;
    font-family: 'HelveticaNowDisplay-Medium';
    background: radial-gradient(117.62% 117.62% at 50% -17.62%, rgba(76, 126, 240, 0.50) 0%, #4C7EF0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 10px;
    margin-bottom: 28px;
}

.article-redesign-hero--wrapper {
    padding: 60px 0;
    margin-bottom: 137px;
}

.article-redesign-hero--wrapper img {
    border-radius: 40px;
    margin-top: 60px;
    margin-bottom: -197px;
}

.article-intro--wrapper p {
    font-size: 26px;
    line-height: 1.6;
    color: var(--secondary-color);
    margin: 0;
}

.article-intro--wrapper p:first-child {
    padding-right: 240px;
    margin-bottom: 37px;
}

.article-intro--wrapper p:nth-of-type(2) {
    padding-left: 240px;
}

.article-intro--wrapper img {
    border-radius: 28px;
    margin-top: 49px;
}

.article-intro--wrapper {
    padding: 146px 0 190px;
}

.need-redesign--wrapper h2 {
    color: var(--white-color);
    max-width: 450px;
}

.sec-heading.sec-heading-with-num span:after {
    display: none;
}

.sec-heading.sec-heading-with-num span {
    padding: 0;
}

.redesign-checklist-box {
    display: flex;
    gap: 80px;
    justify-content: space-between;
    margin-top: 65px;
    align-items: flex-start;
}

.redesign-checklist-box p {
    font-size: 22px;
    line-height: 1.4;
    color: #EBEBF2;
    max-width: 460px;
    margin: 0;
    position: sticky;
    top: 140px;
}

.icon-with-text li {
    font-size: 22px;
    line-height: 1.2;
    font-family: 'HelveticaNowDisplay-Regular';
    color: var(--white-color);
    padding-left: 32px;
    position: relative;
}

.icon-with-text li:not(:last-child) {
    margin-bottom: 29px;
}

.icon-with-text li:after {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    background-image: url('../images/circle-check.svg');
    background-size: cover;
    top: 3px;
    left: 0;
    z-index: 1;
}

.redesign-img-box {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 78px 0 -2px;
}

.redesign-img-left {
    width: calc(58.27% - 20px);
}

.redesign-img-right {
    width: calc(41.73% - 20px);
}

.redesign-img-box img {
    border-radius: 28px;
}

.redesign-img-box p {
    margin: 43px 0 0;
    font-size: 22px;
    line-height: 1.4;
    color: #EBEBF2;
}

.sanity-checkbox {
    border-radius: 40px;
    background: #262626;
    padding: 60px 40px 80px;
    margin-top: 80px;
}

.sanity-checkbox h3 {
    font-size: 42px;
    font-family: 'HelveticaNowDisplay-Medium';
    color: var(--white-color);
    letter-spacing: -0.84px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.sanity-checkbox p {
    font-size: 22px;
    line-height: 1.4;
    color: #EBEBF2;
    margin: 0;
}

.sanity-checkbox ul {
    column-count: 2;
    column-gap: 40px;
    margin-top: 35px;
}

.redesign-payoff-sec {
    background: radial-gradient(100% 100% at 50% 0%, rgba(244, 244, 247, 0.50) 0%, #EBEBF2 100%);
}

.redesign-payoff-sec h2 {
    max-width: 450px;
}

.redesign-payoff-columns {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.payoff-left-col {
    position: sticky;
    top: 140px;
    width: calc(35.32% - 40px);
}

.payoff-right-col {
    width: calc(64.68% - 40px);
}

.payoff-left-col h3 {
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0.56px;
    color: var(--main-color);
    font-family: 'HelveticaNowDisplay-Medium';
}

.payoff-right-col p {
    font-size: 22px;
    line-height: 1.4;
    color: var(--secondary-color);
    margin-bottom: 29px;
}

.payoff-right-col a.arrow-btn {
    color: var(--main-color);
    margin-bottom: 29px;
}

.payoff-right-col p a {
    text-decoration: underline;
    color: var(--main-color);
    text-underline-offset: 5px;
}

.payoff-right-col p:last-child {
    margin-bottom: 0;
}

.redesign-paysoff--wrapper .redesign-payoff-columns:not(:last-child) {
    border-bottom: 1px solid var(--fourth-color);
    padding-bottom: 35px;
    margin-bottom: 35px;
}

.redesign-paysoff--wrapper .sec-heading {
    margin-bottom: 63px;
}

.payoff-right-col img {
    border-radius: 28px;
}

.plan-work-img {
    padding-top: 516px;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
}

.plan-work-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plan-work-heading {
    position: absolute;
    padding: 60px 60px 50px 0;
    background: var(--white-color);
    max-width: 748px;
    bottom: 0;
    left: 0;
    border-radius: 0 28px 0 0;
}

.plan-work-heading svg {
    position: absolute;
    width: 28px;
    height: auto;
    transform: rotate(180deg);
}

.plan-work-heading .top-left-corner {
    top: -28px;
    left: 0;
}

.plan-work-heading .bottom-right-corner {
    right: -28px;
    bottom: 0;
}

.plan-work-heading--wrapper {
    position: relative;
    margin-bottom: 33px;
}

.plan-work--wrapper p {
    font-size: 22px;
    line-height: 1.4;
    color: var(--secondary-color);
    margin: 0;
}

.plan-work--wrapper .icon-with-text li {
    color: var(--secondary-color);
}

.plan-work--wrapper .icon-with-text {
    column-count: 2;
    column-gap: 40px;
    margin-top: 28px;
}

.plan-wrok-desc {
    display: flex;
    gap: 60px;
    margin-top: 55px;
}

.plan-work--wrapper p:first-child {
    max-width: 390px;
}

.plan-work--wrapper p:last-child {
    flex: 1 0 0;
}

.effective-design--wrapper h2 {
    color: var(--white-color);
}

.effective-design-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 68px;
}

.effective-design-columns>div {
    width: calc(50% - 30px);
}

.effective-design-columns p {
    font-size: 22px;
    line-height: 1.4;
    color: #EBEBF2;
    margin: 0;
}

.effective-design-left-col ul {
    margin: 30px 0;
}

.effective-design-left-col img {
    margin-top: 40px;
}

.effective-design-columns img {
    border-radius: 28px;
}

.effective-design-right-col h3 {
    color: var(--white-color);
    font-size: 28px;
    font-family: 'HelveticaNowDisplay-Medium';
    letter-spacing: -0.56px;
    line-height: 1.2;
    margin: 30px 0 60px;
}

.effective-design-right-col {
    padding-top: 120px;
}

.what-bulit-sec {
    background: radial-gradient(100% 100% at 50% 0%, rgba(244, 244, 247, -0.5) 0%, #EBEBF2 100%);
}

.what-bulit--wrapper h2 {
    max-width: 450px;
}

.what-bulit--wrapper .row {
    margin: 64px -25px 00;
}

.what-bulit--wrapper .col-4 {
    padding: 0 25px;
}

.bulit-box h3 {
    color: var(--main-color);
    font-size: 28px;
    font-family: 'HelveticaNowDisplay-Medium';
    letter-spacing: -0.56px;
    line-height: 1.2;
    border-bottom: 1px solid #D8D8D8;
    margin-bottom: 34px;
    padding-bottom: 30px;
}

.bulit-box p {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.what-bulit--wrapper .row .col-4:nth-child(2) {
    padding-top: 100px;
}

.what-bulit--wrapper .row .col-4:last-child {
    padding-top: 200px;
}

.design-launch--wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

.design-launch--wrapper>div {
    width: calc(50% - 30px);
}

.launch-left-col h2 {
    max-width: 450px;
    margin-bottom: 26px;
}

.launch-left-col p {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 25px;
}

.launch-left-col p:last-child {
    color: var(--third-color);
    margin: 0;
}

.launch-left-col .icon-with-text li {
    color: var(--secondary-color);
}

.launch-left-col .icon-with-text {
    margin-bottom: 28px;
}

.design-launch--wrapper img {
    border-radius: 28px;
}

.compounds-updates--wrapper .sec-heading+p {
    font-size: 22px;
    line-height: 1.4;
    color: #EBEBF2;
    margin: 65px 0 72px;
}

.compounds-updates--wrapper img {
    border-radius: 28px;
}

.compounds-updates--wrapper .article-info.article-content {
    margin-top: 80px;
    border-color: var(--secondary-color);
    padding-top: 80px;
}

.compounds-updates--wrapper .article-info * {
    color: var(--white-color);
}

.compounds-updates--wrapper .article-info .article-info-box+p {
    font-size: 20px;
    line-height: 1.2;
    max-width: 542px;
}

.compounds-updates--wrapper .article-info p {
    margin: 0;
}


/* ============================================= Quick Local SEO Wins ============================================= */

.article-seo-img {
    position: relative;
    padding-bottom: 628px;
    border-radius: 40px;
    overflow: hidden;
}

.article-seo-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-seo-img:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 40px;
    background: linear-gradient(90deg, rgba(20, 20, 20, 0.10) 0%, rgba(20, 20, 20, 0.00) 100%), linear-gradient(180deg, rgba(20, 20, 20, 0.10) 0%, rgba(20, 20, 20, 0.00) 108.58%), linear-gradient(0deg, rgba(20, 20, 20, 0.10) 0%, rgba(20, 20, 20, 0.10) 100%);
}

.article-quick-hero--wrapper {
    position: relative;
    margin-top: 40px;
}

.article-seo-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 60px;
    width: 100%;
}

.article-seo-content h1 {
    font-size: 68px;
    line-height: 1.10;
    letter-spacing: -1.36px;
    font-family: 'HelveticaNowDisplay-Regular';
    color: var(--white-color);
    max-width: 750px;
    margin: 28px 0 44px;
}

.article-seo-content .article-hero-top-content span {
    color: var(--white-color);
}

.article-seo-content .article-hero-top-content span:last-child:after {
    background: var(--white-color);
}

.quick-seo-intro--wrapper p {
    font-size: 26px;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 39px;
}

.quick-seo-intro--wrapper h2 {
    font-size: 48px;
    font-family: 'HelveticaNowDisplay-Medium';
    letter-spacing: -0.96px;
    line-height: 1.20;
    background: var(--Blue-Gradient, radial-gradient(117.62% 117.62% at 50% -17.62%, rgba(76, 126, 240, 0.50) 0%, #4C7EF0 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    max-width: 1239px;
    margin-bottom: 0;
    padding-top: 54px;
}

.meta-desc--wrapper {
    background: radial-gradient(100% 100% at 50% 0%, rgba(244, 244, 247, 0.50) 0%, #EBEBF2 100%);
}

.meta-desc--wrapper .sec-heading p {
    font-size: 22px;
    line-height: 1.40;
    margin: 24px 0 0;
}

.meta-desc--wrapper .sec-heading p b,
.meta-desc--wrapper .redesign-payoff-columns p b {
    font-family: 'HelveticaNowDisplay-Medium';
}

.meta-desc--wrapper .redesign-payoff-columns {
    border-bottom: 1px solid #D8D8D8;
    padding-bottom: 40px;
    margin-top: 40px;
}

.meta-desc--wrapper .sec-heading {
    margin-bottom: 66px;
}

.meta-desc--wrapper li {
    color: var(--secondary-color);
}

.meta-desc--wrapper ul {
    margin-bottom: 29px;
}

.key-pages-intro p {
    font-size: 22px;
    line-height: 1.4;
    color: #EBEBF2;
    margin: 0;
}

.key-pages-intro {
    display: flex;
    gap: 80px;
    margin-top: 65px;
    margin-bottom: 72px;
}

.key-pages-intro>* {
    width: calc(50% - 40px);
}

.social-image--wrapper img {
    border-radius: 28px;
}

.social-image--wrapper h3 {
    font-size: 22px;
    line-height: 1.4;
    color: #EBEBF2;
    margin-top: 71px;
    margin-bottom: 0;
}

.social-image--wrapper ul.icon-with-text {
    column-count: 2;
    column-gap: 40px;
    margin-top: 28px;
}

.tag-use--wrapper .launch-left-col h2 {
    max-width: 100%;
}

.business-profile-sec {
    background: radial-gradient(100% 100% at 50% 0%, rgba(244, 244, 247, 0.50) 0%, #EBEBF2 100%);
}

.business-profile-sec p {
    font-size: 22px;
    line-height: 1.4;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.business-profile-sec p b {
    font-family: 'HelveticaNowDisplay-Medium';
}

.business-profile-sec .sec-heading {
    margin-bottom: 25px;
}

.business-profile-sec img {
    margin: 34px 0;
    border-radius: 28px;
}

.site-navigation--wrapper h2 {
    max-width: 380px;
}

.site-navigation--wrapper .row {
    margin: 66px -25px 0;
}

.site-navigation--wrapper .col-4 {
    padding: 0 25px;
}

.site-navigation--wrapper p {
    font-size: 22px;
    line-height: 1.4;
    color: var(--white-color);
    margin-bottom: 62px;
}

.site-navigation--wrapper p b {
    font-family: 'HelveticaNowDisplay-Medium';
}

.site-navigation--wrapper img {
    border-radius: 28px;
}

.site-navigation--wrapper .row .col-4:nth-child(2) {
    padding-top: 100px;
}

.site-navigation--wrapper .row .col-4:last-child {
    padding-top: 200px;
}

.sitemap-sec.business-profile-sec {
    background: none;
}

.sitemap-sec p span {
    color: #2B8800;
}

.sitemap-sec p a {
    color: var(--main-color);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.lp-service--wrapper {
    background: radial-gradient(100% 100% at 50% 0%, rgba(244, 244, 247, 0.50) 0%, #EBEBF2 100%);
}

.lp-service--wrapper .design-launch--wrapper {
    align-items: flex-end;
}

.lp-regions--wrapper p {
    font-size: 22px;
    line-height: 1.4;
    color: #EBEBF2;
    margin-bottom: 25px;
}

.lp-regions--wrapper .sec-heading {
    margin-bottom: 65px;
}

.regions-box--wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 73px;
    margin-bottom: 66px;
}

.regions-left-box {
    width: calc(60% - 20px);
}

.regions-right-box {
    width: calc(40% - 20px);
}

.regions-left-box img {
    width: 100%;
}

.regions-box--wrapper img {
    border-radius: 28px;
}

.lp-regions--wrapper .regions-left-box p {
    margin: 40px 0 0;
}

.lp-regions--wrapper a {
    color: var(--main-color);
}

.lp-regions--wrapper .article-info {
    margin-top: 96px;
    border-color: var(--secondary-color);
    padding-top: 80px;
}

.lp-regions--wrapper .article-info .article-info-box+p {
    font-size: 20px;
    line-height: 1.2;
    max-width: 542px;
    margin: 0;
}

.lp-regions--wrapper .author-info p {
    font-size: 16px;
    margin: 0;
}

.lp-regions--wrapper .article-info * {
    color: var(--white-color);
}

.primary-on-dark {
    color: var(--main-color-on-dark) !important;
}


/* 404 */
.not-found-main--wrapper {
    background: radial-gradient(117.62% 117.62% at 50% -17.62%, rgba(76, 126, 240, 0.50) 0%, #4C7EF0 100%);
    padding: 360px 0 200px 0;
    text-align: center;
    position: relative;
}

.not-found-content h1 {
    color: var(--white-color);
    font-size: 74px;
    font-family: 'HelveticaNowDisplay-Medium';
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -1.48px;
}

.not-found-content p {
    font-size: 24px;
    line-height: 1.8;
    color: #EBEBF2;
    font-family: 'HelveticaNowDisplay-Light';
    font-weight: 300;
    margin-bottom: 47px;
    margin-top: 8px;
}

.btn--wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.not-found-content {
    max-width: fit-content;
    margin: 0 auto;
    position: relative;
}

.not-found-main--wrapper img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}