/*
 * Main CSS file
 * Author: Haroon Yamin
 * Author URL: https://www.linkedin.com/in/haroon-webdev/
**/

:root {
    /* Font Family */
    --font-hando: "Hando";

    /* Font Size old */
    --size-h1: 78px;
    --size-h2: 38px;
    --size-h3: 28px;

    /* Font sizes */
    --size-78: 78px;
    --size-62: 62px;
    --size-46: 46px;
    --size-42: 42px;
    --size-38: 38px;
    --size-32: 32px;
    --size-30: 30px;
    --size-28: 28px;
    --size-26: 26px;
    --size-24: 24px;
    --size-22: 22px;
    --size-20: 20px;
    --size-18: 18px;
    --size-16: 16px;
    --size-14: 14px;
    --size-12: 12px;

    /* Colors Old */
    --black: #000;
    --black-2: #333333;
    --white: #fff;
    --gray-400: #9ca3af;
    --gray-200: #e5e7eb;
    --independence: #4b5563;
    --bright-gray: #e9e9e9;
    --chinese-black: #111010;
    --congo-pink: #f98080;
    --header-border: #474747;
    --border: #e5e7eb;
    --card-bg: #fafafa;
    --gradient-text: linear-gradient(
        88.19deg,
        #ffffff 32.58%,
        #ffffff 43.31%,
        #f37d78 52.56%,
        #ffffff 61.44%,
        #ffffff 69.58%
    );

    /* Colors */
    --color-black: #111010;
    --color-border: #474747;
    --color-border: #4b5563;
    --color-gray: #9ca3af;
    --color-white: #ffffff;
    --gradient-white-pink: linear-gradient(
        88.19deg,
        #ffffff 32.58%,
        #ffffff 43.31%,
        #f37d78 52.56%,
        #ffffff 61.44%,
        #ffffff 69.58%
    );
    --gradient-white-title: linear-gradient(
        88deg,
        #fff 32.58%,
        #fff 43.31%,
        #f37d78 52.56%,
        #fff 61.44%,
        #fff 69.58%
    );
    --bg-card: #fafafa;

    /* Spacing */
    --desktop-lg: 1176px;
    --side-padding: 16px;
    --spacing-lg: 98px;
    --spacing-md: 70px;
    --spacing-sm: 50px;
    --bottom-md: 48px;
    --bottom-lg: 60px;
}

/* General Parameters */
body * {
    margin: 0;
    padding: 0;
}
body {
    font-family: var(--font-hando);
    color: var(--color-black)!important;
    background-color: var(--color-black) !important;
}
img {
    width: 100%;
    height: auto;
}
h1 {
    font-size: var(--size-78);
    line-height: 1.12;
    font-weight: 500;
}
h2 {
    font-size: var(--size-38);
    line-height: 1.4;
    font-weight: 500;
}
h3 {
    font-size: var(--size-28);
    line-height: 1.12;
    font-weight: 500;
}
h4 {
    font-size: var(--size-24);
    line-height: 1.5;
    font-weight: 500;
}
h5 {
    font-size: var(--size-18);
}
h6 {
    font-size: var(--size-6);
}
p {
    font-size: var(--size-16);
    line-height: 1.4;
}
a {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s;
}

/* Special CLasses */
#header.white .header-nav .sub-menu,
#header.white {
    background-color: white;
    border-color: #9ca3af;
}
#header.white .current-menu-item a {
    color: var(--color-black);
}
#header.white .row {
    border-color: var(--header-border);
}
a:not([href]):not([class]),
a:not([href]):not([class]):hover,
#header.white .header-nav .sub-menu a,
#header.white .header-nav a:hover,
#header.white .header-nav a:active {
    color: var(--black);
}
#header.white .header-nav .sub-menu a:hover,
#header.white .header-nav .sub-menu a:active {
    color: var(--congo-pink);
}
#faq.black .faq_row {
    border-color: var(--border);
}

/* Pre-defined Classes */
.vh-80 {
    height: 80vh;
}
.vh-60 {
    height: 60vh;
}
.vh-48 {
    height: 48vh;
}
.spacing-lg {
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
}
.bottom-md {
    max-width: 570px;
    margin: 0 auto;
    margin-bottom: var(--bottom-md);
}
.bottom-lg {
    max-width: 570px;
    margin: 0 auto;
    margin-bottom: var(--bottom-lg);
}
.spacing-48 {
    padding-top: 48px;
    padding-bottom: 48px;
}
.gradient-text {
    background: var(--gradient-white-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.gradient-title {
    background: var(--gradient-white-title);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bg-black {
    background-color: var(--color-black) !important;
}
.color-black {
    color: var(--color-black);
}
.color-gray {
    color: var(--color-gray);
}
.banner-75 {
    height: calc(75vh - 56px);
}
.color-brand {
    color: var(--congo-pink);
}
.size-22 {
    font-size: var(--size-22);
}
.size-20 {
    font-size: var(--size-20);
}

/* Keyframes */
@keyframes svg-forward {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(110%);
    }
    51% {
        transform: translateX(-110%);
    }
    100% {
        transform: translateX(0);
    }
}
@keyframes svg-rotate {
    0% {
        transform: rotate(0);
    }
    50% {
        transform: rotate(45deg);
    }
    100% {
        transform: rotate(0);
    }
}
@keyframes svg-flip {
    0% {
        transform: rotate(0);
    }
    40% {
        transform: rotate(180deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes svg-move {
    0% {
        transform: translate(-50%, -50%);
    }
    15% {
        transform: translate(calc(-50% - 12px), -50%);
    }
    30% {
        transform: translate(calc(-50% - 12px), -50%);
    }
    70% {
        transform: translate(calc(-50% + 12px), -50%);
    }
    85% {
        transform: translate(calc(-50% + 12px), -50%);
    }
    100% {
        transform: translate(-50%, -50%);
    }
}
@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}
@keyframes wheel {
    0% {
        transform: translate(-50%, -50%) rotate(0);
    }
    20% {
        transform: translate(-50%, -50%) rotate(-60deg);
    }
    60% {
        transform: translate(-50%, -50%) rotate(0);
    }
    80% {
        transform: translate(-50%, -50%) rotate(45deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(0);
    }
}
@keyframes float {
    0% {
        transform: translate(-50%, -50%);
    }
    25% {
        transform: translate(calc(-50% + 2px), calc(-50% - 2px));
    }
    50% {
        transform: translate(calc(-50%), calc(-50% - 4px));
    }
    75% {
        transform: translate(calc(-50% - 2px), calc(-50% - 2px));
    }
    100% {
        transform: translate(-50%, -50%);
    }
}
@keyframes float-circular {
    0% {
        transform: translate(calc(-50% - 0px), calc(50% + 0px));
    }
    12.5% {
        transform: translate(calc(-50% - 3px), calc(50% - 2px));
    }
    25% {
        transform: translate(calc(-50% - 5px), calc(50% - 4px));
    }
    37.5% {
        transform: translate(calc(-50% - 3px), calc(50% - 6px));
    }
    50% {
        transform: translate(calc(-50% + 0px), calc(50% - 8px));
    }
    62.5% {
        transform: translate(calc(-50% + 3px), calc(50% - 6px));
    }
    75% {
        transform: translate(calc(-50% + 5px), calc(50% - 4px));
    }
    87.5% {
        transform: translate(calc(-50% + 3px), calc(50% - 2px));
    }
    100% {
        transform: translate(calc(-50% + 0px), calc(50% + 0px));
    }
}
@keyframes blinkAndScale {
    0%,
    100% {
        opacity: 1;
        transform: translate(-50%, 50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, 50%) scale(1.2);
    }
}

/* Animations */
.project-link .project-image img {
    transform: translateY(0);
}
.project-link:hover .project-image img {
    transform: translateY(calc(-100% + 401px));
}
.visible-bottom {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.visible-bottom.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-active img {
    animation: none;
}
.svg-forward.animate img {
    animation: svg-forward 1s ease-in-out forwards;
}
.svg-rotate.animate img {
    animation: svg-rotate 2s ease forwards;
}
.svg-flip.animate img {
    animation: svg-flip 2s ease forwards;
}
.svg-move.animate .eye-ball {
    animation: svg-move 3s ease forwards;
}
img.eye-ball {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
}
.identity-image .wheel {
    animation: wheel 20s cubic-bezier(0.42, 0, 0.58, 1) infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 160px;
}
.identity-image .moon {
    animation: float 8s ease-in-out infinite;
    position: absolute;
    top: 38%;
    left: 18%;
    transform: translate(-50%, -50%);
    max-width: 110px;
}
.identity-image .circle {
    animation: float-circular 12s cubic-bezier(0, 0, 1, 1) infinite;
    position: absolute;
    top: 8%;
    right: 13%;
    transform: translate(-50%, 50%);
    max-width: 80px;
}
.identity-image .star {
    animation: blinkAndScale 2s ease-in-out infinite;
    position: absolute;
    top: 50%;
    right: 9%;
    transform: translate(-50%, 50%);
    max-width: 80px;
}
@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}
/* JS Animation */
.site-svg {
    text-align: center;
    margin-bottom: 98px;
}
.site-svg svg {
    display: block;
    margin: 0 auto;
}

/* Old pre-defined */
.sec-large {
    padding-top: 172px;
    padding-bottom: 224px;
}
.sec-medium {
    padding-top: 98px;
    padding-bottom: 98px;
}
.sec-medium-2 {
    padding-top: 98px;
    padding-bottom: calc(98px + 48px);
}
.mb-medium {
    margin-bottom: 98px;
}
.g-20 {
    gap: 20px;
}
.mt-20 {
    margin-top: 20px;
}
/* Button */
.button {
    font-size: var(--size-18);
    color: var(--congo-pink);
    font-weight: 500;
}
.button:hover {
    text-decoration: underline;
}
.button svg,
.button img {
    transition: all 0.3s;
}
.button:hover svg,
.button:hover img {
    transform: translateX(3px);
}

/* Custom Classes */
#header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-black);
    /* border-bottom: 1px solid var(--color-border); */
    transition: transform 0.3s ease-in-out;
}
.header-logo img {
    max-width: 150px;
}
.header-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
}
a:not([href]):not([class]),
a:not([href]):not([class]):hover,
.header-nav a {
    color: var(--color-gray);
    font-size: var(--size-18);
    padding: 14px;
}
a:not([href]):not([class]) {
    cursor: default;
}
.header-nav a:hover,
.header-nav a:active {
    color: var(--color-white);
}
.header-nav .current-menu-item a {
    color: var(--color-white);
}
.header-target {
    font-size: var(--size-18);
    color: var(--congo-pink);
    font-weight: 500;
}
.header-target:hover {
    text-decoration: underline;
}
.header-target svg {
    transition: all 0.3s;
}
.header-target:hover svg {
    transform: translateX(3px);
}
.header-menu {
    border: none;
    outline: none;
    position: relative;
    width: 40px;
    height: 40px;
    padding: 4px;
    background-color: transparent;
    margin: 12px 0;
}
.header-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
}
.header-menu::after,
.header-menu::before {
    content: "";
    display: block;
    height: 2px;
    background-color: var(--color-white);
    float: right;
    transition: all 0.2s ease 0s;
}
.header-menu[aria-expanded="true"]::before {
    transform: translateY(0);
}
.header-menu[aria-expanded="true"]::after {
    transform: translateY(-2px);
}
.header-menu::before {
    transform: translateY(-7px);
    width: 80%;
}
.header-menu[aria-expanded="false"]::after {
    transform: translateY(5px);
    width: 60%;
}
#header.white .header-menu span,
#header.white .header-menu::after,
#header.white .header-menu::before {
    background-color: black !important;
}
/* Hero Section */
#hero {
    background-color: var(--color-black);
}
.hero-wrap {
    height: calc(100vh - 56px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-title {
    max-width: 1070px;
    margin: 0 auto 18px auto;
}
.hero-note {
    color: var(--color-gray);
    max-width: 800px;
    margin: 0 auto 48px auto;
    font-weight: 400;
}
.hero-link {
    font-size: var(--size-18);
    color: var(--congo-pink);
    font-weight: 500;
}
.hero-link:hover {
    text-decoration: underline;
}
.hero-link svg {
    transition: all 0.3s;
}
.hero-link:hover svg {
    transform: translateX(3px);
}

.website-link {
    font-size: var(--size-18);
    color: var(--congo-pink);
    font-weight: 500;
}
.website-link:hover {
    text-decoration: underline;
}
.website-link svg {
    transition: all 0.3s;
}
.website-link:hover svg {
    transform: translateX(3px);
}
.location-text  {
 color: #9ca3af;
 font-size: 18px;
}
/* Portfolio Section */
#section-portfolio {
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100%;
}
.portfolio-heading {
    max-width: 570px;
    margin: 0 auto 48px auto;
}
.portfolio-row {
    row-gap: 150px;
}
.case-categories {
    column-gap: 30px;
    row-gap: 14px;
    margin-bottom: 20px;
}
.project-categories {
    column-gap: 30px;
    row-gap: 14px;
    margin-bottom: 48px;
}
.project-category {
    font-size: var(--size-18);
    color: var(--gray-400);
    transition: all 0.3s;
    cursor: pointer;
}
.project-category:hover {
    color: var(--color-white);
}
.project-category.active {
    color: var(--congo-pink);
    text-decoration: underline;
    font-weight: 500;
}
.porject-cards {
    row-gap: 146px;
}
.project-card {
    border-radius: 20px;
    position: relative;
}
.project-card:nth-child(3n + 2) {
    transform: translateY(48px);
}
.project-link {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    color: var(--white);
    padding: 28px 28px 0 28px;
    box-shadow: 12px 12px 40px 0px #00000026;
    position: relative;
}
.project-link::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    border-radius: 20px;
}
.project-tags {
    display: block;
    text-align: left;
    font-size: var(--size-18);
    flex-grow: 1;
    margin: 4px 0 28px 0;
}
.project-image {
    overflow: hidden;
    max-height: 400px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.project-more {
    margin-top: calc(98px + 48px);
    color: var(--chinese-black);
    font-size: var(--size-18);
    font-weight: 500;
    display: block;
    text-align: center;
}
.project-more:hover {
    text-decoration: underline;
}
.project-more svg {
    margin-left: 14px;
    transform: translateY(-1px);
    transition: all 0.4s;
}
.project-more:hover svg {
    transform: translateX(3px) translateY(-1px);
}

/* Partners Section */
.partners-heading {
    font-weight: 500;
    letter-spacing: 0.38em;
}
.partners-slider {
    max-width: 1192px;
    width: 100%;
    position: relative;
}
.partners-slider::before,
.partners-slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    z-index: 2;
    pointer-events: none;
}
/* .partners-slider::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}
.partners-slider::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0.2) 100%);
} */
.partners-row {
    transition-timing-function: cubic-bezier(0, 0, 1, 1);
    -webkit-transition-timing-function: cubic-bezier(0, 0, 1, 1);
    display: flex;
    align-items: center;
}
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    filter: none !important;
}
.partners-img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

/* Services Section */
#section-services {
    background-color: var(--color-black);
}
.services-heading {
    margin-bottom: var(--spacing-lg);
}
.service-collection {
    border-bottom: 1px solid var(--color-border);
    border-radius: 8px;
    transition: all 0.4s;
}
.service-collection:hover {
    background-color: #1b1b1b;
}
.service-img {
    width: 100%;
    max-width: 100px;
    height: auto;
    margin: 0 48px;
}
.services-list {
    color: var(--gray-400);
    font-size: var(--size-18);
}
.services-list ul li {
    transition: color 0.3s ease;
}
/* .services-list ul li:hover {
    color: var(--white);
} */
.service-title {
    color: var(--white);
    margin-bottom: 8px;
}
.service-note {
    color: var(--gray-400);
    margin: 0;
}

/* Scroller */
.scroll-wrapper {
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid var(--color-white);
    border-bottom: 1px solid var(--color-white);
}
.scroll-overlay::before,
.scroll-overlay::after {
    content: "";
    display: block;
    width: 100%;
    height: calc(100% + 2px);
    transform: translateY(-50%);
    max-width: 50%;
    position: absolute;
    top: 50%;
    z-index: 1;
}
.scroll-overlay::before {
    left: 0;
    background: linear-gradient(to right, rgba(17, 16, 16, 1) 0%, rgba(17, 16, 16, 0) 100%);
}
.scroll-overlay::after {
    right: 0;
    background: linear-gradient(to left, rgba(17, 16, 16, 1) 0%, rgba(17, 16, 16, 0) 100%);
}
.scroller {
    --duration: 40;
    font-size: 82px;
    width: max-content;
    white-space: nowrap;
    display: flex;
    gap: 2rem;
    padding-left: 1rem;
    animation: marquee calc(var(--duration) * 1s) linear infinite;
    margin: 0;
}
/* section blogs:::::  */
/* .blogs {
    background-image: url("/wp-content/uploads/2024/10/Brand-Vector-3.png");
    background-repeat: no-repeat;
    background-size: contain;
} */
.card {
    border: none;
    background-color: transparent;
}
.blogs .row {
    row-gap: 60px;
}
.blogs-ul {
    justify-content: center;
}
.blogs-content {
    margin-bottom: 48px;
}
.card-content {
    padding-top: 28px;
}
.card-content a {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
}
.blogs-content h2 {
    font-size: 40px;
    font-weight: 500;
    text-align: center;
    padding-bottom: 52px;
}
.post-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.post-date span {
    font-size: 18px;
    font-weight: 400;
    color: #EEEEEE;
}
.post-date hr {
    flex-grow: 1;
    border: 1px solid #ffffff;
    margin-left: 100px;
}
.blogs_p {
    font-size: 28px;
    font-weight: 500;
    color: #EEEEEE;
    padding: 20px 0;
}
.nav-link {
    color: #9ca3af;
    font-weight: 400;
    font-size: 18px;
}
.nav-item :hover {
    color: #636363;
}
.nav-link.active {
    color: #f98080;
    font-weight: 700;
    text-decoration: underline;
}
/* Business */
#section-business {
    /* background-color: var(--color-black); */
    background-image: url("https://diginest.co/wp-content/uploads/2025/03/USPs-Ellipse.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 75%;
}
.business-heading {
    color: var(--white);
    margin-bottom: 48px;
    text-align: center;
}

.business-spacing-sm {
    padding: 48px 0;
}
.business-spacing-lg {
    padding: 60px 48px;
}
.business-border {
    position: relative;
    border-radius: 24px;
    background-color: rgb(17 16 16);
    overflow: hidden;
}
.business-border {
    position: relative;
    border-radius: 11px;
    background-color: rgb(17 16 16);
    overflow: hidden;
    transition: border-color 300ms ease-in-out, opacity 300ms ease-in-out;
}
.business-border:hover .business-border {
    border: 1px solid white;
    opacity: 1;
}
.business-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 11px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(223, 239, 254, 0.22), rgba(223, 239, 254, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
[data-glow] {
    --border-size: calc(var(--border, 2) * 1px);
    --spotlight-size: calc(var(--size, 150) * 1px);
    --hue: calc(var(--base) + (var(--xp, 0) * var(--spread, 0)));
    background-color: var(--backdrop, transparent);
    border: var(--border-size) solid var(--backup-border);
    position: relative;
    touch-action: none;
    transition: border-color 300ms ease-in-out;
}

[data-glow]:hover {
    border-color: white;
}

.business-gap {
    margin-bottom: 24px;
}
.parallex {
    position: relative;
    overflow: hidden;
    transition: all 300ms ease-in-out;
}
.blob {
    filter: blur(100px);
    position: absolute;
    top: 0;
    opacity: 1;
    left: 0;
    right: 0;
    bottom: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-image: radial-gradient(
        480px at var(--cursor-x, 60%) var(--cursor-y, 60%),
        rgba(255, 255, 255, 0.5),
        transparent 40%
    );
    transition: all 300ms ease-in-out;
}
.fakeblob {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-image: radial-gradient(
        400px at var(--cursor-x) var(--cursor-y),
        rgba(255, 255, 255, 0.4),
        transparent
    );
}
.business-number {
    color: var(--white);
    font-size: 48px;
}
.business-number span {
    font-size: 28px;
    display: inline-block;
}
.symbol-up {
    transform: translate(-16px, -27px);
}
.symbol-down {
    transform: translate(-7px, 5px);
}
.business-subtitle {
    color: var(--gray-400);
    font-size: 18px;
}
.business-title {
    color: var(--white);
    font-size: 34px;
    margin-bottom: 18px;
}
.business-text {
    color: var(--gray-400);
    font-size: 18px;
    margin: 0;
}
.business-img {
    background-image: url("https://diginest.co/wp-content/uploads/2024/10/business-bg.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 28px;
    text-align: center;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}
.business-gradient_text {
    background: linear-gradient(90deg, #f8736c 0%, #becfd1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 58px;
    padding: 66px 0;
    display: block;
}

/* Testimonials Section */
.testimonial-heading {
    color: var(--color-black);
}
.swiper-testimonials {
    width: 100%;
    max-width: 410px;
}
.testimonial-pagination {
    margin-top: 36px;
    text-align: center;
}
.testimonial-pagination .swiper-pagination-bullet {
    width: 48px;
    height: 6px;
    background-color: #bebebe;
    border-radius: 5px;
}
#section-testimonials .swiper-slide:nth-child(n + 1):not(.swiper-slide-active) {
    filter: brightness(1.4);
}
.testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--color-white);
}
.white-swiper .testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--color-white);
}
/* #section-testimonials.bg-black {
    background-image: url("https://diginest.co/wp-content/uploads/2024/10/Ellipse.svg");
    background-size: 75%;
    background-position: center 35%;
    background-repeat: no-repeat;
} */

.bg-wrapper-1 {
    /* background-image: url("https://diginest.co/wp-content/uploads/2025/03/Brand-Vector-3-2.png"); */
    background-image: url("https://diginest.co/wp-content/uploads/2025/04/Brand-Vector-3.png");
    background-size: 100%;
    background-position: center 35%;
    background-repeat: no-repeat;
 
}







.testimonial-card {
    box-shadow: 0px 0px 40px 0px #0000001a;
    background-color: var(--color-white);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
}
.testimonial-body {
    padding: 48px 20px 50px 32px;
}
.testimonial-img {
    object-fit: cover;
    width: 80px;
    height: 80px;
    border-radius: 4px;
    margin-bottom: 18px;
}
.swiper-slide-shadow {
    filter: opacity(0.5);
}
.testimonial-text {
    font-size: var(--size-22);
    font-weight: 400;
    line-height: 1.4;
}
.testimonial-footer {
    background-color: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    width: 100%;
}
.testimonial-author {
    color: var(--black-2);
    margin-bottom: 1px;
    font-size: var(--size-16);
}
.testimonial-role {
    font-size: var(--size-16);
    color: var(--gray-400);
    font-weight: 400;
    display: block;
}
.testimonial-company {
    width: 70px;
    height: 50px;
    object-fit: contain;
}

/* ****** */
.blocks-wrapper {
    position: relative;
    /* height: 380vh; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.block {
    margin-bottom: 450px;
}
.workflow-card {
    max-width: 700px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    box-shadow: 0px 0px 40px 0px #0000001a;
    background-color: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
}

.block_count {
    display: block;
    font-size: var(--size-h1);
    color: var(--gray-400);
    max-width: 125px;
    width: 100%;
}
.block_text {
    padding: 90px 40px 70px 42px;
    background-color: var(--white);
}
.block_title {
    font-size: var(--size-h3);
    margin-bottom: 18px;
    color: var(--chinese-black);
}
.block_content {
    font-size: var(--size-18);
    color: var(--gray-400);
}

/* FAQ Section */
#faq .container {
    max-width: 1056px;
}
.faq_title {
    margin: 0 auto 98px auto;
    text-align: center;
    max-width: 600px;
}
.faq_row {
    border-bottom: 1px solid #353535;
    padding: 28px 0;
}
.faq_question {
    width: 100%;
    background-color: transparent;
    outline: none;
    border: none;
    font-size: 28px;
    display: flex;
    align-items: center;
    text-align: start;
    justify-content: space-between;
    column-gap: 28px;
}
.faq_icon {
    content: "";
    display: block;
    background-image: url(https://diginest.co/wp-content/uploads/2024/10/Vector-2.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    margin: 0;
    transition: all 0.4s;
}
.faq_icon.black {
    background-image: url(https://diginest.co/wp-content/uploads/2024/10/Vector-10.svg);
}
.faq_question[aria-expanded="true"] .faq_icon {
    transform: rotate(45deg);
}
.faq_answer > * {
    color: var(--gray-400);
    font-size: var(--size-18);
    margin: 0;
    max-width: 95%;
}

/* newsletter section */
.newsletter_title {
    margin-bottom: 18px;
}
.newsletter_note {
    color: var(--chinese-black);
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto 48px auto;
}
.newsletter-group {
    max-width: 700px;
    margin: 0 auto;
}
.newsletter-group br {
    display: none;
}
.newsletter-group > p {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.newsletter-email {
    border: 1px solid #111010;
    border-radius: 50px;
    padding: 14px 18px;
    width: 100%;
    max-width: 357px;
}
.newsletter-submit {
    background: linear-gradient(90deg, #f8736c 0%, #becfd1 100%);
    color: var(--white);
    border-radius: 50px;
    padding: 16px 48px 14px 28px;
    position: relative;
    border: none;
    height: fit-content;
    transition: all 0.4s;
}
.newsletter-submit:hover {
    background: linear-gradient(90deg, #f8736c 0%, #f8736c 100%);
}
.newsletter-group p:has(input[type="submit"])::after {
    content: "";
    display: block;
    background: url("https://diginest.co/wp-content/uploads/2024/10/icon-white-target.svg") center
        center/contain no-repeat;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 19px;
    left: 83%;
    transform: translateX(-50%);
}
.newsletter-group .wpcf7-spinner {
    position: absolute;
    top: 19px;
    right: -20px;
}
.newsletter-group .wpcf7-not-valid-tip {
    text-align: left;
    margin-top: 6px;
}
#newsletter .wpcf7-response-output {
    width: fit-content !important;
    margin: 20px auto 0 auto !important;
}
/* Interest section */
.interest_bg {
    padding: 148px 0;
    background-color: #1B1B1B;
    background-image: url(https://diginest.co/wp-content/uploads/2024/10/Vector-frame.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 110%;
    border-radius: 24px;
}
.interest_title {
    max-width: 450px;
    color: var(--white);
    margin: 0 auto 28px auto;
    font-size: 48px;
}
.interest_link {
    color: var(--white);
    font-weight: 500;
    font-size: 24px;
}
.interest_link:hover {
    text-decoration: underline;
}
.interest_link svg {
    transition: all 0.3s;
}
.interest_link:hover svg {
    transform: translateX(3px);
}
#banner {
    background-color: var(--chinese-black);
}
.banner-image {
    max-width: 100px;
    margin: 0 auto 28px auto;
}
.banner-title {
    width: 100%;
}
.banner_title {
    background: linear-gradient(
        88.19deg,
        #ffffff 32.58%,
        #ffffff 43.31%,
        #f37d78 52.56%,
        #ffffff 61.44%,
        #ffffff 69.58%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    max-width: 900px;
    margin: 0 auto 48px auto;
}
.banner_note {
    max-width: 842px;
    margin: 0 auto 18px auto;
    font-size: var(--size-h2);
    color: var(--white);
}
.banner_text {
    max-width: 842px;
    margin: 0 auto 18px auto;
    font-size: var(--size-24);
    color: var(--gray-400);
}
.h2_title {
    display: flex;
    align-items: center;
    gap: 18px;
}
.h2_title::before {
    content: "";
    display: block;
    height: 2px;
    width: 58px;
    background-color: var(--congo-pink);
}
.identity_text {
    margin-top: 28px;
    max-width: 411px;
    font-size: var(--size-24);
    color: var(--gray-400);
}
#workflow {
    background-color: var(--chinese-black);
}
.workflow_title {
    color: var(--white);
}
.workflow_note {
    font-size: var(--size-24);
    text-align: center;
    color: var(--white);
    display: block;
    max-width: 250px;
    margin: 0 auto;
}
.workflow_column {
    max-width: 680px;
}
.workflow_list {
    list-style: none;
    padding: 0;
}
.workflow_item {
    display: flex;
    gap: 48px;
}
.workflow_item:not(:first-child) {
    padding-top: 60px;
}
.workflow_item:not(:last-child) {
    border-bottom: 1px solid var(--independence);
    padding-bottom: 48px;
}
.workflow_item-img {
    width: 100px;
    height: 100px;
}
.workflow_item-content_title {
    color: var(--white);
    font-size: var(--size-h3);
    margin-bottom: 8px;
}
.workflow_item-content_text {
    color: var(--gray-400);
    font-size: var(--size-18);
}
.idea_logo {
    width: 48px;
    height: auto;
    margin-bottom: 48px;
}
.idea_title {
    margin-bottom: 18px;
    max-width: 350px;
}
.idea_text {
    color: var(--gray-400);
    max-width: 327px;
}
.idea_column {
    max-width: 714px;
    position: relative;
    height: 482px;
}
.idea_img {
    width: 270px;
    height: 400px;
    position: absolute;
}
.idea_img-1 {
    left: 0;
    bottom: 0;
    z-index: 1;
}
.idea_img-2 {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 2;
}
.idea_img-3 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 4;
}
#values .row {
    column-gap: 76px;
    row-gap: 48px;
}
.values_column {
    max-width: 490px;
}
.values_headings {
    margin-bottom: 8px;
}
.values_text {
    font-size: var(--size-18);
    color: var(--gray-400);
}

#footer {
    background-color: var(--chinese-black);
    padding-top: 98px;
    padding-bottom: 48px;
}
.footer_heading {
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 18px;
    color: var(--white);
}
.footer_list {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer_item a {
    color: var(--gray-400);
    font-size: 14px;
    transition: all 0.3s;
}
.footer_item a:hover {
    color: var(--white);
}
.footer_copyright {
    margin-top: 48px;
}
.footer_logo {
    max-width: 145px;
    margin-bottom: 18px;
}
.copyright_text {
    color: var(--gray-400);
    margin-bottom: 18px;
}
.footer_socials {
    max-width: 196px;
}

/* Footer Styles */
.footer {
    text-align: center;
}
.logo-and-nav {
    display: flex;
    justify-content: space-between;
    padding-top: 98px;
    flex-wrap: wrap;
}
.footer-nav ul {
    display: flex;
    align-items: center;
    gap: 48px;
}
.footer-nav a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
}
.footer-nav a:hover {
    color: #fafafa;
}
.footer-bottom p {
    color: #9ca3af;
}
/* Social Icons */
.social-icons {
    display: flex;
    gap: 28px;
}
.social-icons a svg {
    width: 25px;
    height: 25px;
    fill: #9ca3af;
    transition: fill 0.3s ease;
}
.social-icons a:hover svg {
    fill: var(--congo-pink);
}
.social-icons a:hover img {
    filter: brightness(0) saturate(100%) invert(73%) sepia(42%) saturate(597%) hue-rotate(310deg) brightness(97%) contrast(100%);
}

.location-icon {
 max-width: 300px;
 text-align: left;
 gap: 20px;
}
.location-icon img:hover {
    filter: invert(33%) sepia(86%) saturate(3523%) hue-rotate(315deg) brightness(92%) contrast(90%);
}

/* Divider */
.footer hr {
    border: none;
    border-top: 2px solid #374151;
    margin: 48px 0;
}
/* Footer Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 48px;
}
.footer-bottom p {
    font-size: 18px;
    font-weight: 400;
}
.footer-links {
    display: flex;
    align-items: center;
    gap: 48px;
}
.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
}
.footer-links a:hover {
    color: #ffffff;
}
/* single-portfolio:::::: */
.sheildoo {
    font-size: var(--size-78);
    font-weight: 500;
    padding-bottom: 48px;
    padding-top: 98px;
}
.project-fields {
    font-size: var(--size-28);
    font-weight: 500;
    margin-top: 48px;
}
a.project-fields {
    text-decoration: underline;
}
.project-sub_fields {
    color: #7c7c7c;
    font-size: var(--size-18);
    font-weight: 400;
    padding-top: 2px;
}
/* Extra class for right border gradient */
.border-gradient {
    position: relative;
}
.border-gradient::after {
    content: "";
    position: absolute;
    top: 20px;
    right: -1px;
    bottom: 0;
    width: 1px;
    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 0) 0.45%,
        #030211 49.56%,
        rgba(230, 230, 230, 0) 99.49%
    );
}
.home-page {
    font-size: 38px;
    font-weight: 600;
    margin: 0;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 28px;
    padding-top: 98px;
    width: 100%;
    box-sizing: border-box;
}
.custom-image-wrapper {
    margin-top: 98px;
    text-align: center;
}
.custom-img-class {
    max-width: 100%;
    height: auto;
    padding: 98px 97px;
    border-radius: 24px;
    background-color: #efefef;
}
/* single-portfolio:::::: */
.projects_banner h2 {
    font-size: var(--size-32);
    margin-bottom: 24px;
    color: var(--congo-pink);
}
.projects_banner p {
    font-size: var(--size-26);
    font-weight: 500;
    color: white;
}
.two_col_content {
    padding-top: 135px;
}
.two_col_content_head ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    padding-left: 13px;
    margin: 0;
    border-left: 7px solid #0070df;
}
.two_col_content_head ul li h3 {
    font-size: 1.5rem;
    color: #425466;
    margin-bottom: 10px;
}
.two_col_content_head ul li p {
    font-size: 1.25rem;
    color: #425466;
    margin-bottom: 0;
}
.two_col_content_body h3 {
    font-size: 1.5rem;
    color: #425466;
    margin-bottom: 1rem;
}
.two_col_content_body p {
    font-size: 1.25rem;
    line-height: 2rem;
    color: #425466;
    padding: 0 16px 0 0;
}
.challenge-img {
    width: 100%;
    padding: 0 16px 0 0;
}
.pf_content_wrap h3 {
    font-size: 1.5rem;
    line-height: 1.75rem;
    color: #0070df;
    margin-bottom: 21px;
    font-size: 18px;
}
.pf_content_wrap p {
    font-size: 1.5rem;
    color: #425466;
    line-height: 1.4;
    font-weight: 600;
    max-width: 650px;
}
.pf_image_wrapper {
    padding-top: 20px;
}
#pf_content_review .pf_content_wrap h3 {
    line-height: 1.75rem;
    color: #0070df;
    margin-bottom: 21px;
    font-size: 18px;
}
.pf_content_wrap p {
    font-size: 1.125rem;
    color: #425466;
    line-height: 32px;
    font-weight: 600;
}
.pf_content_review p {
    font-style: italic;
    margin-bottom: 35px;
}
.pf_content_footer h2 {
    font-size: 1.5rem;
    color: #425466;
}
.pf_content_footer p {
    font-size: 0.875rem !important;
    color: #425466;
}
/* page blog ::::: */
.blogs-hero {
    padding-top: 98px;
}
.gradient-blog {
    font-size: 78px;
    font-weight: 500;
    text-align: center;
    background: linear-gradient(
        88.19deg,
        #ffffff 32.58%,
        #ffffff 43.31%,
        #f37d78 52.56%,
        #ffffff 61.44%,
        #ffffff 69.58%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.blog-card {
    padding-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.blog-content {
    max-width: 500px;
}
.blog-text {
    font-size: 18px;
    font-weight: 400;
    color: #EEEEEE;
    padding-bottom: 48px;
}
.blog-content h3 {
    font-size: 28px;
    font-weight: 500;
    color: #EEEEEE;
    padding-bottom: 8px;
    line-height: 1.4;
}
.blog-content p {
    font-size: 18px;
    font-weight: 400;
    color: #AEAEAE;
    padding-bottom: 48px;
}
.blog-content a {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
}
.blog-anchor svg {
    font-size: 20px;
    margin-left: 10px;
}
.see-anchor {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    padding-top: 98px;
}
.see-anchor svg {
    margin-left: 10px;
}
.see_all-news {
    text-align: center;
}
.blog-img img {
    max-width: 100%;
    border-radius: 24px;
}
.gradient-line {
    position: relative;
    height: 1px;
    margin-top: 98px;
}
.divider {
    position: relative;
}
.divider::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0.45%,
        #111010 49.56%,
        rgba(230, 230, 230, 0) 99.49%
    );
    z-index: 1;
}
/* page contact-us::: */
.contact-header {
    background-color: #111;
    color: #fff;
    padding: 135px 0;
    text-align: center;
}
.gradient-contact {
    font-size: 78px;
    font-weight: 500;
    padding-bottom: 28px;
    text-align: center;
    background: linear-gradient(
        88.19deg,
        #ffffff 32.58%,
        #ffffff 43.31%,
        #f37d78 52.56%,
        #ffffff 61.44%,
        #ffffff 69.58%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.contact_title {
    font-size: 38px;
    font-weight: 500;
    padding-bottom: 18px;
}
.contact_subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #9ca3af;
    max-width: 678px;
    margin: 0 auto;
}
.since-main {
    padding: 98px 0;
    text-align: center;
}
.since-p {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.4;
    color: #000000;
    max-width: 700px;
    margin: 0 auto;
}
.circled {
    position: relative;
}
.circled::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-bottom: 2px solid red;
    border-radius: 50%;
    transform: scale(1.5);
    transform-origin: center;
    z-index: -1;
}
.underlined {
    position: relative;
}
.underlined::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background-color: red;
    transform: scaleX(1.1);
}
/* Section Category All */
.services-row {
    row-gap: 24px;
}
.serivce-wrap {
    padding: 48px;
    border-radius: 24px;
    background: #1a1a1a;
    height: 100%;
}
.serivce-wrap_img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    padding: 11px;
    border-radius: 12px;
    border: 1px solid var(--Dark-20, #333);
    background: var(--Dark-12, #1f1f1f);
    margin-bottom: 48px;
}
.serivce-wrap h3 {
    margin-bottom: 8px;
}
.serivce-wrap p {
    color: var(--color-gray);
}
#section-services_all .button {
    text-align: center;
    display: block;
}
/* Single pages */
#single_banner {
    padding: 98px 0 50px 0;
}
#single_banner .container {
    max-width: 900px;
}
.single_title {
    font-size: 38px;
    margin-top: 30px;
    margin-bottom: 14px;
    font-weight: 600;
}
.single_link {
    color: var(--chinese-black);
    font-size: var(--size-18);
    text-decoration: underline;
}

/* section our-story::::: */






.contact-form p > label {
    color: var(--color-white);
    font-size: var(--size-24);
    font-weight: 400;
    line-height: normal;
    width: 100%;
}
.contact-left p {
    margin-bottom: 48px;
}
.contact-left p:has(> input[type="checkbox"]),
.contact-left p:has(input[type="url"]) {
    margin-bottom: 0;
}

.contact-form input:not([type="submit"]) {
    border: none;
    outline: none;
    border-bottom: 1px solid #4b5563;
    background-color: #111010;
    color: var(--gray-400);
    font-size: var(--size-18);
    font-weight: 400;
    line-height: normal;
    padding-bottom: 18px;
    margin-top: 28px;
    width: 100%;
}
.contact-form label:has(> input[type="checkbox"]) {
    display: flex;
    gap: 18px;
    align-items: baseline;
    color: var(--gray-400, var(--Sub-Text, #9ca3af));
    font-size: var(--size-14);
    font-weight: 400;
    line-height: normal;
    max-width: 400px;
    margin-top: 28px;
}
.contact-form input[type="checkbox"] {
    width: fit-content;
    transform: translateY(2px);
}


.contact-form label:has(> input[type="checkbox"]) input {
    margin: 0;
}
.contact-right {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.contact-form textarea {
    padding: 28px;
    min-height: 500px;
    border-radius: 4px;
    border: 1px solid  #4B5563;
    background: var(--color-black);
    color: var(--gray-400);
    font-size: var(--size-18);
    font-weight: 400;
    line-height: normal;
    width: 100%;
    margin-top: 28px;
}
.contact-form input[type="submit"] {
    display: flex;
    padding: 12px 52px 12px 28px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    /* background: #fff; */
    color: var(--black, var(--Text, #000));
    font-size: var(--size-18);
    font-weight: 500;
    line-height: normal;
    outline: none;
    border: none;
    transition: all 0.4s;
}
.contact-form input[type="submit"]:hover {
    background-color: var(--congo-pink);
}
.contact-form p:has(input[type="submit"]) {
    position: relative;
}
.contact-form p:has(input[type="submit"])::after {
    content: "";
    display: block;
    background: url("https://diginest.co/wp-content/uploads/2025/03/Vector-17.svg") center
        center/contain no-repeat;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 16px;
    left: 147px;
}
#section-process h2 {
    max-width: 570px;
    margin: 0 auto;
}
#section-paragraph p {
    color: var(--color-black);
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 700px;
    margin: 0 auto;
}
.bg-svg_filler em,
.bg-svg_filler u {
    position: relative;
    text-decoration: none;
    font-style: normal;
    overflow: visible;
}
.bg-svg_filler u::before,
.bg-svg_filler em::before {
    content: "";
    display: block;
    position: absolute;
    /* z-index: -1; */
}
.bg-svg_filler em::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 113%;
    height: 220%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='77' viewBox='0 0 200 77' fill='none'%3E%3Cpath d='M161.586 1.29797C161.586 1.50665 161.586 1.71533 161.586 1.93032C161.136 1.9401 161.136 1.9401 160.677 1.95008C157.502 2.01948 154.328 2.09183 151.153 2.16576C149.974 2.19283 148.796 2.2192 147.617 2.2448C141.137 2.38606 134.705 2.59383 128.256 3.04975C125.16 3.26665 122.059 3.36285 118.952 3.47168C104.76 4.01717 90.8281 5.48448 77.0758 7.93765C76.3933 8.05185 75.7106 8.16545 75.0276 8.27852C50.1747 12.4521 22.7246 21.2089 8.79072 36.4329C5.28286 40.5253 3.43437 44.9424 5.11383 49.6826C8.0035 56.822 15.0288 61.612 24.3085 65.2084C52.6181 75.7583 88.2329 75.1695 119.243 71.9631C119.554 71.931 119.865 71.8989 120.186 71.8658C123.953 71.4712 127.577 70.9398 131.237 70.2241C131.86 70.1167 132.485 70.0119 133.11 69.9104C153.977 66.5167 178.022 60.3 190.018 47.4234C191.576 45.6251 192.737 43.7202 193.803 41.7684C193.971 41.4725 194.14 41.1766 194.313 40.8717C196.051 37.1555 196.353 31.8607 194.24 28.1926C192.48 25.8967 190.057 23.9204 187.266 22.1655C186.838 21.8843 186.838 21.8843 186.401 21.5974C176.934 15.5829 163.143 12.2829 150.637 10.6264C149.551 10.4811 148.472 10.3226 147.391 10.1608C135.654 8.50826 120.948 8.68075 110.635 13.2533C110.239 13.4445 109.843 13.6356 109.435 13.8326C108.359 14.2611 108.359 14.2611 106.491 14.2611C105.44 13.7869 105.44 13.7869 104.623 13.3126C106.178 10.7821 110.523 9.65532 114.049 8.64904C117.69 7.65072 121.274 7.05973 125.167 6.67295C125.545 6.63178 125.923 6.59062 126.313 6.54821C145.961 4.80367 169.586 9.05962 185.398 17.1067C185.803 17.3109 186.207 17.5151 186.624 17.7255C192.548 20.8257 198.463 24.8722 199.872 30.0699C200.005 31.362 200.003 32.6483 199.989 33.943C199.993 34.2809 199.996 34.6188 200 34.9669C199.974 42.1923 195.552 48.0686 188.667 53.4668C188.398 53.691 188.13 53.9151 187.853 54.1461C174.717 64.914 151.506 69.9598 132.258 73.1289C131.774 73.2088 131.774 73.2088 131.28 73.2903C125.044 74.3153 118.795 75.2603 112.415 75.7769C111.699 75.8349 111.699 75.8349 110.969 75.894C109.477 76.0112 107.985 76.1227 106.491 76.2314C106.032 76.2653 105.573 76.2993 105.101 76.3342C88.9607 77.4778 72.666 77.1236 56.6487 75.4607C56.3334 75.4281 56.0181 75.3955 55.6933 75.3618C41.9284 73.918 27.0831 71.0177 15.911 65.1653C15.5417 64.9723 15.5417 64.9723 15.1649 64.7755C7.70799 60.8308 1.82645 55.7201 0.247787 49.2602C-1.10911 41.7669 3.24899 35.8872 9.84126 30.0699C10.7407 29.2908 11.6342 28.5737 12.6427 27.8567C12.9509 27.8567 13.259 27.8567 13.5765 27.8567C13.6812 27.6806 13.786 27.5045 13.8939 27.3231C16.6674 24.0336 23.095 21.4706 27.5837 19.3199C27.8824 19.1766 28.1811 19.0332 28.4888 18.8855C51.6151 7.94159 79.8717 3.39818 107.425 0.9818C107.847 0.943845 108.27 0.90589 108.705 0.866785C125.94 -0.603062 144.362 -0.0309313 161.586 1.29797Z' fill='%23F98080'/%3E%3C/svg%3E")
        center center/contain no-repeat;
}
.bg-svg_filler u::before {
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 112%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="271" height="24" viewBox="0 0 271 24" fill="none"><path d="M2 13.4031C50.4163 5.28101 163.715 -5.35254 265.347 9.26374C270.09 9.94578 269.555 15.0007 264.769 14.7767C229.493 13.1259 194.645 10.4645 166.674 14.3167C162.348 14.9126 162.71 19.9068 167.061 20.2779C179.616 21.3488 187.693 21.9079 189.5 22" stroke="%23F98080" stroke-width="4" stroke-linecap="round"/></svg>')
        center center/contain no-repeat;
}
#case-studies img {
    max-height: 400px;
}

/* Section - Contact form */
#section-contact_form .wpcf7-not-valid-tip {
    font-size: 16px;
    margin-top: 6px;
}
.card-height {
    min-height: 450px;
}
.partners-heading {
    margin-bottom: 48px;
}
.wpcf7 form.sent .wpcf7-response-output {
    color: white;
    border: 2px solid var(--congo-pink);
}
/* Media Queries */
@media screen and (min-width: 992px) {
    .header-nav .sub-menu {
        position: absolute;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        border-radius: 12px;
        border: 1px solid var(--color-border);
        background: rgba(17, 16, 16, 0.04);
        backdrop-filter: blur(18px);
        padding: 4px 0;
        appearance: none;
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s;
        background-color: var(--color-black);
        margin-top: 8px;
    }
    .header-nav .sub-menu li {
        width: 100%;
    }
    .header-nav .sub-menu a {
        color: white;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        padding: 14px 18px;
        width: 100%;
    }
    .header-nav .sub-menu a:hover {
        color: var(--congo-pink);
        text-decoration-line: underline;
    }
    .header-nav li:hover .sub-menu {
        appearance: visible;
        pointer-events: all;
        opacity: 1;
    }
}
@media screen and (max-width: 1200px) {
    .spacing-lg {
        padding-top: var(--spacing-md);
        padding-bottom: var(--spacing-md);
    }
    .services-heading {
        margin-bottom: var(--spacing-md);
    }
    .project-image {
        max-height: 250px;
    }
    .project-more {
        margin-top: calc(98px + 16px);
    }
    .business-spacing-lg {
        padding: 39px;
    }
    .business-spacing_mobile {
        margin-bottom: 24px;
    }
    .services-list {
        padding-left: 50px;
    }
    /* section .interest_bg::::: */
    .interest_bg {
        background-size: cover;
    }
    /* footer ::  */
    .footer-links,
    .footer-nav ul {
        gap: 30px;
    }
    .footer-nav a,
    .footer-links a {
        font-size: 18px;
    }
    .logo-and-nav {
        padding-top: 50px;
    }
    .identity-image .wheel {
        max-width: 130px;
    }
    .identity-image .moon {
        max-width: 90px;
    }
    .identity-image .star,
    .identity-image .circle {
        max-width: 60px;
    }
}
@media screen and (max-width: 992px) {
    h1 {
        font-size: var(--size-62);
    }
    h2 {
        font-size: var(--size-32);
    }
    h3 {
        font-size: var(--size-26);
    }
    h4 {
        font-size: var(--size-22);
    }
    .spacing-h2 {
        margin-bottom: 24px;
    }
    /* .speed-2 .project-image img,
    .speed-2:hover .project-image img, */
    .project-link .project-image img,
    .project-link:hover .project-image img {
        transform: none;
        transition: none;
    }
    .header-height {
        height: calc(100vh - 64px);
    }
    .header-target {
        display: block;
        margin: 0 auto;
        width: fit-content;
    }
    a:not([href]):not([class]) {
        display: block;
        text-align: center;
    }
    #header.white .header-nav .sub-menu a,
    #header.white .current-menu-item a {
        color: var(--color-gray);
    }
    #header.white .header-nav .sub-menu {
        background-color: var(--color-black);
    }
    .header-dropmenu {
        position: absolute;
        top: 65px;
        left: 0;
        width: 100vw;
        background: var(--color-black);
    }
    .header-nav ul {
        flex-direction: column;
    }
    .hero-title {
        max-width: 800px;
    }
    .case-categories {
        column-gap: 20px;
        margin-bottom: 20px;
    }
    .project-categories {
        column-gap: 20px;
        margin-bottom: 48px;
    }
    .project-category {
        font-size: var(--size-16);
    }
    .project-cards {
        row-gap: 40px;
    }
    .project-card:nth-child(3n + 2) {
        transform: translateY(0);
    }
    .project-tags {
        font-size: var(--size-16);
    }
    .project-more {
        margin-top: 48px;
    }
    .services-list {
        margin-top: 10px;
        margin-left: auto;
        padding-left: 46px;
    }
    .scroller {
        font-size: var(--size-46);
    }
    #section-business {
        background: none;
        background-color: var(--color-black);
    }
    /* page our-story:::::*/
    .banner_note {
        font-size: var(--size-30);
    }
    .bg-brand {
        background-image: url("https://diginest.co/wp-content/uploads/2024/10/Brand-Vector.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: top left;
        background-size: 100%;
    }
    .banner-50 {
        height: 50vh;
    }
    .banner-note {
        color: var(--Text, #fff);
        text-align: center;
        font-size: 38px;
        font-weight: 500;
        line-height: normal;
        margin-top: 28px;
        margin-bottom: 18px;
    }
    .banner-text {
        max-width: 700px;
        color: var(--gray-400);
        text-align: center;
        font-size: var(--size-24);
        font-weight: 400;
        line-height: normal;
    }
    /* blog   */
    .blog-card {
        display: block;
    }
    .blog-content,
    .blog-img {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .blog-img img {
        width: 100%;
        height: auto;
    }
    /* Haroon */
    .banner-note {
        font-size: 32px;
    }
    /* footer ::   */
    .footer-nav {
        margin: 48px 0;
        display: flex;
        justify-content: center;
    }
    .logo-and-nav {
        flex-direction: column;
        text-align: center;
        margin: 0 auto;
    }
    .footer-bottom {
        display: block;
    }
    .footer-links,
    .footer-nav ul {
        gap: 20px;
    }
    .identity-image .wheel {
        max-width: 100px;
    }
    .identity-image .moon {
        max-width: 70px;
    }
    .identity-image .star,
    .identity-image .circle {
        max-width: 50px;
    }
    .two_col_content_head ul {
        flex-direction: column;
        gap: 24px;
    }
    .size-small-24 {
        font-size: 24px !important;
    }
    .size-small-20 {
        font-size: 20px !important;
    }
    .logo {
        width: 200px;
        margin: 0 auto;
    }
    .portfolio-row {
        row-gap: 60px;
    }
    .idea_title {
       font-size: 24px;
    }
    .site-svg svg{
        height: 200px;
    }
}
@media screen and (max-width: 768px) {
    h1 {
        font-size: var(--size-46);
    }
    h2 {
        font-size: var(--size-30);
    }
    h4 {
        font-size: var(--size-20);
    }
    .spacing-lg {
        padding-top: var(--spacing-sm);
        padding-bottom: var(--spacing-sm);
    }
    .services-heading {
        margin-bottom: 0;
    }
    .hero-note {
        margin-bottom: 30px;
    }
    .case-categories,
    .project-categories {
        row-gap: 10px;
    }
    .project-tags {
        margin-bottom: 20px;
    }
    .service-img {
        margin: 0 24px;
    }
    .project-more {
        margin-top: 48px;
    }
    .serivce-wrap {
        padding: 24px;
    }
    .serivce-wrap_img {
        margin-bottom: 28px;
    }
    .gradient-blog {
        font-size: 36px;
    }
    .blog-content h3 {
        font-size: 24px;
    }
    .blog-content p {
        font-size: 16px;
    }
    .idea_column {
        margin-top: 45px;
    }
    /* page our story ::: */
    .workflow-column {
        padding-bottom: 98px;
        text-align: center;
    }
    .workflow-column img {
        max-width: 200px;
    }
    .identity_text {
        max-width: 510px;
        text-align: center;
    }
    .values_column {
        text-align: center;
        line-height: normal;
    }
    .workflow_item-img {
        margin-bottom: 28px;
    }

    .values-contant {
        align-items: center;
    }
    .h2_title {
        justify-content: center;
    }
    .mb-medium {
        margin-bottom: 48px;
    }
    .newsletter-group p:has(input[type="submit"])::after {
        left: 94%;
    }
    #section-paragraph p {
        font-size: 34px;
    }
    .bg-svg_animated u::before {
        bottom: -20px;
    }
    .identity-image .wheel {
        max-width: 130px;
    }
    .identity-image .moon {
        max-width: 90px;
    }
    .identity-image .star,
    .identity-image .circle {
        max-width: 60px;
    }
    /* footer ::   */
    .footer-nav ul {
        flex-direction: column;
        gap: 0;
    }
    .footer-links {
        margin-top: 20px;
    }
    .footer-nav a {
        padding: 10px 0;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer hr {
        margin: 40px 0;
    }
    .social-h {
        font-size: 24px !important;
        margin-bottom: 12px !important;
    }
    .social-p {
        font-size: 28px !important;
    }
    .vh-80 {
        height: 60vh;
    }
    .social-icons {
        justify-content: center;
    }
}
@media screen and (max-width: 576px) {
    h1 {
        font-size: var(--size-42);
    }
    h2 {
        font-size: var(--size-28);
    }
    h3 {
        font-size: var(--size-24);
    }
    h5 {
        font-size: var(--size-16);
    }
    .sec-medium {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .project-image {
        max-height: 90vw;
    }
    a:not([href]):not([class]) {
        text-align: left;
    }
    .case-categories,
    .project-categories {
        row-gap: 10px;
    }
    .hero-wrap {
        height: calc(100vh - 260px);
    }
    .hero-title {
        font-size: 30px;
    }
    .hero-note {
        font-size: 16px;
        max-width: 300px;
    }
    .header-target {
        color: var(--congo-pink) !important;
    }
    /* .project-category {
        font-size: var(--size-14);
    } */
    .nav.project-categories {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .nav.project-categories::-webkit-scrollbar {
        display: none;
    }
    .nav.project-categories li {
        min-width: max-content;
    }
    .project-more {
        font-size: var(--size-16);
    }
    .card-height {
        min-height: 355px;
    }
    .service-img {
        margin: 0 auto 28px auto;
    }
    .service-note,
    .service-title {
        text-align: center;
    }
    .services-list {
        padding-left: calc(var(--bs-gutter-x) * 0.5);
        margin-top: 48px;
    }
    .services-list ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        list-style-position: outside;
        gap: 20px;
    }
    .services-list ul {
        list-style: none; 
        padding-left: 0;
    }
    .services-list ul li {
        display: flex;
        gap: 8px;
    }
    .services-list ul li::before {
        content: "•"; 
        font-size: 1em;
    }
    
    .testimonial-author {
        font-size: 14px;
    }
    .business-spacing-lg {
        padding: 48px 18px;
    }
    .business-border {
        text-align: center;
    }
    .business-title {
        font-size: var(--size-24);
    }
    .business-gradient_text {
        font-size: 38px;
        padding: 24px 0;
    }
    .project-cards {
        flex-wrap: nowrap;
        justify-content: left !important;
        overflow-x: scroll;
        padding-bottom: 40px;
    }
    .scroller {
        font-size: var(--size-30);
    }
    .swiper-testimonials {
        max-width: 280px;
    }
    .testimonial-body {
        padding: 18px 20px 48px 18px;
    }
    .testimonial-pagination .swiper-pagination-bullet {
        width: 42px;
    }
    .bottom-md {
        font-size: 22px;
        margin-bottom: 28px;
    }
    .partners-heading {
        font-size: 20px;
        line-height: 1.75;
        margin-bottom: 48px;
    }
    /* section faq */
    .faq_question {
        text-align: left;
        font-size: var(--size-20);
        line-height: 1.15;
        margin-bottom: 10px;
    }
    .faq_answer > * {
        font-size: var(--size-16);
    }
    .faq_title {
        margin: 0 auto 48px auto;
    }
    .faq_icon {
        min-width: 16px;
        width: 16px;
        height: 16px;
    }
    .faq_row {
        padding-bottom: 18px;
    }
    .newsletter_note {
        font-size: var(--size-18);
        margin: 0 auto 28px auto;
    }
    #newsletter form {
        display: block;
    }
    .newsletter_submit {
        width: 100%;
        margin-top: 18px;
    }
    .interest_title {
        font-size: 32px;
    }
    .interest_link {
        font-size: var(--size-18);
    }
    .gradient-blog {
        font-size: 32px;
    }
    .blogs-hero {
        padding: 60px 0;
    }
    .blog-text {
        padding-bottom: 28px;
    }
    .blog-content a {
        font-size: 24px;
    }
    .blog-content h3 {
        font-size: 24px;
    }
    .blog-content p {
        font-size: 18px;
        padding-bottom: 28px;
    }
    .blogs_p {
        padding: 8px 0;
    }
    .card-content {
        padding-top: 0;
    }
    .post-date hr {
        margin-left: 100px;
        margin-top: 28px;
        margin-bottom: 28px;
    }
    #section-testimonials.bg-black {
        background-size: cover;
    }
    .blogs-ul {
        flex-wrap: nowrap;
        justify-content: left !important;
        overflow-x: scroll;
    }
    .nav-link {
        font-size: 20px;
    }
    .blogs-content h2 {
        font-size: 28px;
        padding-bottom: 28px;
    }
    .blogs_p {
        font-size: 24px;
    }
    .post-date hr {
        margin-left: 30px;
    }
    .card-content a {
        font-size: 20px;
    }
    .portfolio-row {
        row-gap: 48px;
        justify-content: center;
    }
    .serivce-wrap {
        border-radius: 16px;
    }
    .serivce-wrap_img {
        border-radius: 8px;
    }
    #section-portfolio {
        background-position: center;
    }
    /* Haroon */
    .banner-note {
        font-size: 28px;
        margin-bottom: 8px;
    }
    .banner-text {
        font-size: 16px;
    }
    /* footer:: */
    .logo {
        width: 200px;
        margin: 0 auto;
    }
    .footer hr {
        margin: 22px 0;
    }
    .footer-nav a {
        font-size: 18px;
    }
    .social-icons img {
        margin-left: 10px;
        width: 22px;
        height: 22px;
    }
    .social-icons {
       justify-content: center;
    }
    .location-icon {
        text-align: center;
        margin: 0 auto;
    }
    .contact-form p > label {
        font-size: var(--size-20);
    }
    .contact-form input:not([type="submit"]) {
        margin-top: 16px;
        padding-bottom: 10px;
    }
    .contact-form textarea {
        margin-top: 16px;
        padding: 16px;
    }
    .wpcf7-not-valid-tip {
        font-size: var(--size-16);
        margin-top: 6px;
    }
    .contact-right {
        gap: 30px;
    }
    .newsletter-group > p {
        flex-direction: column;
    }
    .newsletter-group p:has(input[type="submit"])::after {
        bottom: 19px;
    }
    .newsletter-email {
        max-width: 100%;
    }
    .newsletter-group .wpcf7-spinner {
        bottom: 14px;
        left: -4px;
    }
    /* our story ::::: */
    .banner_title {
        margin: 0px auto 18px auto;
    }
    .banner_note {
        max-width: 321px;
        margin: 0 auto 8px auto;
        font-size: var(--size-24);
        line-height: 1.1;
    }
    .banner_text {
        max-width: 300px;
        font-size: var(--size-18);
        line-height: normal;
    }
    .identity_text {
        margin-top: 18px;
        margin-bottom: 24px;
        font-size: var(--size-20);
    }
    .workflow_item {
        display: block;
        text-align: center;
    }
    .idea_column {
        max-width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .idea_img {
        width: 100%;
        position: static;
        margin-bottom: 24px;
        object-fit: contain;
    }
    .idea_img-1,
    .idea_img-2,
    .idea_img-3 {
        transform: none;
        z-index: 1;
    }
    /* portfolio section  */
    .sheildoo {
        font-size: var(--size-46);
        font-weight: 500;
        padding-bottom: 16px;
        padding-top: 50px;
    }
    .custom-image-wrapper {
        margin-top: 17px;
    }
    .custom-img-class {
        padding: 20px;
    }
    .home-page {
        font-size: var(--size-28);
        margin-bottom: 10px;
        padding-bottom: 10px;
        padding-top: 45px;
    }
    .header-height {
        padding: 8px 0;
        height: calc(100vh - 64px);
    }
    .header-nav ul,
    .header-nav li {
        width: 100%;
    }
    .header-nav a {
        width: 100%;
        text-align: left;
        padding: 8px 16px;
    }
    .header-nav .sub-menu {
        padding-left: 20px;
    }
    .header-nav .sub-menu a {
        font-size: 16px;
    }
    #section-paragraph p {
        font-size: 22px;
        max-width: 330px;
    }
    .bg-svg_animated u::before {
        bottom: -12px;
    }
    .identity-image .wheel {
        max-width: 100px;
    }
    .identity-image .moon {
        max-width: 70px;
    }
    .identity-image .star,
    .identity-image .circle {
        max-width: 40px;
    }
    .business-spacing-sm {
        max-height: 170px;
    }
    .testimonial-text {
        font-size: var(--size-16);
    }
    .social-p {
        font-size: 20px !important;
    }
    .two_col_content_body p {
        padding: 0;
        font-size: 16px;
        line-height: 1.5;
    }
    #pf_content_review .pf_content_wrap h3,
    .pf_content_wrap h3 {
        margin-bottom: 10px;
    }
    .pf_image_wrapper {
        margin-top: 0;
    }
    .challenge-img {
        padding: 0;
    }
    .banner-note {
        font-size: 22px !important;
        margin-top: 16px !important;
    }
    .banner-text {
        margin-top: 6px !important;
        font-size: 18px !important;
    }
    .process-slides {
        margin-bottom: 0 !important;
    }
    .site-svg svg{
        height: 250px;
    }
    .bg-svg_filler u::before {
        bottom: -15px;
    }
    .contact-form textarea {
    min-height: 250px;
    }

}
@media screen and (max-width: 420px) {
    .nav.project-categories {
        padding-left: 32px;
    }
}






/* Process Section */
.process-heading {
    justify-content: center;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    color: white;
    padding-bottom: 98px;
}
.process-content {
    color: var(--gray-400);
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
}
.process-count {
    color: var(--congo-pink);
    font-size: 16px;
    font-weight: 500;
}

.process-title {
    font-size: 32px;
    font-weight: 500;
    margin-top: 8px;
    margin-bottom: 16px;
    color: white;
    line-height: 1.4;
}

.process-text {
    font-size: 18px;
    max-width: 500px;
    color: #9CA3AF;
}

.process-icon {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.wrap {
    padding: 24px 0;
    background: #111010;
    width: 16px;
    position: relative;
    z-index: 1;
    transform: translateY(-12px);
}
.process-dot {
    width: 16px;
    height: 16px;
    background-color: #FFFFFF14;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% ,-50%);
    z-index: 2;
    transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;

}

.process-icon.active .process-dot {
    background-color: white;
}

.vertical-slide {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #FFFFFF14;
    z-index: 1;
}

.slider-track {
    position: absolute;
    width: 2px;
    height: 0%; /* Initially hidden */
    background: #F98080; /* This should be visible */
    top: 0;
    left: 0;
    transition: height 0.3s ease-out;
}

/* Add padding-bottom to all .contant except the last one */
.process-row:not(:last-child) .contant {
    padding-bottom: 200px;
}


/* Content animation */
.contant {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.contant.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .process-title {
        font-size: 28px;
    }
    .process-text {
        font-size: 16px;
    }
    .process-row {
        flex-direction: column;
        align-items: center;
    }
    .vertical-slide, .process-dot {
        display: none;
    }
    .process-icon {
        flex-direction: row;
    }
    .wrap {
        width: 12px;
        padding: 18px 0;
    }
}

@media (max-width: 768px) {
    .process-title {
        font-size: 24px;
    }
    .process-text {
        font-size: 18px;
        text-align: center;
    }
    .contant {
        text-align: center;
        max-width: 100%;
    }
    .process-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .vertical-slide {
        display: none;
    }
}

@media (max-width: 576px) {
    .process-title {
        font-size: 20px;
    }
    .process-text {
        font-size: 18px;
    }
    .process-count {
        font-size: 14px;
    }
    .contant {
        padding-bottom: 20px;
    }
    .process-row {
        flex-direction: column;
        align-items: center;
    }
    .process-row:not(:last-child) .contant {
        padding-bottom: 68px;
    }
    .process-heading {
        font-size: 28px;
        padding-bottom: 48px;
    }
}