@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
    --font-primary: 'Manrope', sans-serif;
    --title-light: #FCFFF9;
    --text-teal: #00D5BB;
    --text-dark: #212121;
    --white: #FFFFFF;
    --black: #000000;
    --bg-dark: #212121;
    --bg-navbtn: rgba(255, 255, 255, 0.14);
    --border-color: rgba(255, 255, 255, 0.65);
    --bg-light-grey: #F4F4F4;
    --bg-teal: #00D5BB;
    --bg-off-white: #FCFFF9;
    --bg-marquee-bg: #1e1d1f;
}

body {
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 1;
    color: var(--color-1);
    -webkit-font-smoothing: antialiased;
    background-color: var(--bg-dark);
}

.object-fit-cover {
    object-fit: cover;
}

/* typography */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul li,
span {
    color: var(--title-light);
}

a {
    text-decoration: none;
    color: inherit;
}

.text-white {
    color: var(--title-light) !important;
}

.text-teal {
    color: var(--text-teal);
}

p {
    font-weight: 500;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: 0.03em;
    color: var(--text-dark);
}

.title-16 {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.03em;
}

.banner-h1 {
    font-weight: 600;
    font-size: clamp(2.75rem, 2.1772rem + 2.8732vw, 5.625rem);
    line-height: clamp(3.125rem, 2.5646rem + 2.8107vw, 5.9375rem);
    letter-spacing: -0.03em;
}

.title-64 {
    font-weight: 600;
    font-size: 64px;
    line-height: 68px;
    letter-spacing: -0.03em;
    color: var(--title-light);
}

.title-70 {
    font-weight: 500;
    font-size: 70px;
    line-height: 76px;
    letter-spacing: -0.03em;
}

.title-32 {
    font-weight: 500;
    font-size: 32px;
    line-height: 34px;
    letter-spacing: -0.03em;
    color: var(--title-light);
}

.our-title-32 {
    font-weight: 400;
    font-size: 32px;
    line-height: 1.375;
    letter-spacing: 0.03em;
    color: var(--title-light);
}

.brand-content .our-title-32 {
    font-size: 24px;
    line-height: 34px;
}

.text-36 {
    font-weight: 600;
    font-size: 30px;
    line-height: 41px;
    letter-spacing: -0.03em;
    color: var(--title-light);
}

.general-content-section h1,
.text-96 {
    font-weight: 600;
    font-size: 82px;
    line-height: 100px;
    letter-spacing: -0.03em;
    color: var(--title-light);
}

.text-116 {
    font-weight: 600;
    font-size: 116px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--title-light);
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    color: var(--text-teal);
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.z-3 {
    z-index: 3;
}

.z-4 {
    z-index: 4;
}

.z-5 {
    z-index: 5;
}

/* Banner Section */

.center-main-title {
    margin-bottom: 30px;
}

.center-main-title p {
    color: var(--title-light);
    font-size: 26px;
    line-height: 39px;
    letter-spacing: -0.03em;
    margin-bottom: 0;
}

.cta-btn {
    overflow: hidden;
    background-color: var(--bg-teal);
    border-radius: 50px;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.03em;
    max-width: max-content;
    width: 100%;
    padding: 16px 42px;
    color: var(--text-dark);
    transition: 0.3s all;
    position: relative;
    white-space: nowrap;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-btn img {
    transform: rotate(0deg);
    transition: 0.3s all;
}

.cta-btn:hover {
    color: var(--text-dark);
}

.cta-btn:hover img {
    transform: rotate(-45deg);
}

.cta-btn .hover-shadow {
    background-color: var(--bg-off-white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    bottom: -34px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
    transition: 0.4s all;
    filter: blur(5px);
}

.cta-btn:hover .hover-shadow {
    transform: scale(14);
}

.cta-btn.ourservice-btn {
    background-color: var(--text-teal);
}

.cta-btn.ourservice-btn .hover-shadow {
    background-color: var(--title-light);
}

.cta-btn.white-btn {
    background-color: var(--title-light);
}

.cta-btn.white-btn .hover-shadow {
    background-color: var(--bg-teal);
}

/* header */

.navbar-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1058px;
    margin: 0 auto;
    top: 50px;
    padding: 0 25px;
}

.glass-navbar {
    background: rgba(20, 20, 20, 0.45);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 18px 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.navbar-brand span {
    font-weight: 300;
    opacity: 0.9;
}

.navbar-nav li {
    position: relative;
}

.nav-link {
    color: var(--white);
    margin: 0 10px;
    font-size: 16px;
    letter-spacing: -0.02em;
    font-weight: 600;
    position: relative;
    background-color: transparent;
    border-radius: 50px;
    padding: 9px 15px !important;
}

.nav-link:hover,
.nav-link:focus {
    background-color: rgba(217, 217, 217, 0.1);
    color: var(--white);
}

.work-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--text-teal);
    color: var(--text-dark);
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 30px;
}

.contact-btn.cta-btn {
    font-size: 16px;
    line-height: 23px;
    color: var(--text-dark);
    background: var(--bg-teal);
}

.contact-btn.cta-btn .hover-shadow {
    background-color: var(--bg-off-white);
}

.navbar-toggler {
    border: none;
    box-shadow: none !important;
    padding: 0;
}

/* Custom Hamburger */
.custom-toggler {
    width: 42px;
    height: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    position: relative;
}

.custom-toggler span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 20px;
    transition: all 0.35s ease;
}

/* Animate into X */
.custom-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.custom-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.custom-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Footer */
footer .footer-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(38, 37, 58, 0.28) 0%, #00D5BB 100%);
    z-index: 4;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    mask-image: linear-gradient(to bottom, transparent, black 30%, black 100%, transparent);
    pointer-events: none;
}

.footer-wrapper {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
}

.overlay-content {
    padding: 0 40px;
    z-index: 5;
}

.overlay-content p {
    max-width: 772px;
    margin: 0 auto 17px;
}

.footer-content-top {
    padding: 215px 0 170px;
    border-bottom: 1px solid var(--border-color);
}

.main-footer {
    padding: 50px 0;
}

.footer-link li {
    position: relative;
    margin-bottom: 18px;
}

.footer-link li a {
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    color: var(--title-light);
}

.footer-link li a img {
    filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(416%) hue-rotate(158deg) brightness(113%) contrast(100%);
    transform: rotate(-45deg);
    transition: 0.3s all;
}

.footer-link li a:hover img {
    transform: rotate(0deg);
}

.center-list-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 46px;
}

.center-list-link li a,
.center-list-link li span {
    font-weight: 400;
    font-size: 16px;
    line-height: 17px;
    letter-spacing: -0.03em;
    color: var(--title-light);
}

.center-list-link li a:hover {
    text-decoration: wavy underline;
}

.bottom-footer {
    margin-top: 210px;
    padding-bottom: 50px;
}

.social-links img {
    transition: 0.3s all;
}

.social-links img:hover {
    transform: translateY(-5px);
}

/* short detail */
.short-detail {
    max-width: 450px;
}

.short-detail p {
    color: var(--title-light);
    font-size: 20px;
    line-height: 27px;
    letter-spacing: 0.03em;
    font-weight: 300;
    margin-bottom: 0;
}

.short-detail p strong {
    font-weight: 600;
}

.swiper-branding img {
    max-width: 100%;
    object-fit: contain;
}

.swiper-branding .swiper-wrapper {
    align-items: flex-end;
}

.swiper-branding .swiper-slide {
    text-align: center;
}

.temphrature-clock * {
    color: var(--title-light);
}

.banner-section .banner-cover {
    height: 100dvh;
}

.banner-content-bt {
    margin-bottom: 40px;
}

.about-section {
    padding: 40px 0 140px;
}

.heading-text-collapse {
    transition: 0.3s all;
    height: 64px;
}

.about-us-icon {
    width: 0;
    opacity: 0;
    height: auto;
    transition: width 0.5s ease, opacity 0.5s ease;
}

.heading-text-collapse:hover .about-us-icon {
    width: 85px;
    opacity: 1;
}

.about-us-icon img {
    transform: rotate(9deg);
}

.heading-text-collapse:hover .about-us-icon.our-work-icon {
    width: 150px;
}

.about-us-icon.our-work-icon img {
    transform: rotate(3.7deg);
    border-radius: 8px;
}

.about-info p {
    color: var(--title-light);
    font-weight: 300;
    font-size: 36px;
    line-height: 43px;
    letter-spacing: 0.03em;
    max-width: 800px;
}

.simple-link {
    position: relative;
}

.simple-link a {
    color: var(--title-light);
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.03em;
    transition: 0.3s all;
}

.simple-link a:hover {
    color: var(--text-teal);
}

.technology-section {
    background-color: var(--bg-light-grey);
}

.partner-grid {
    gap: 100px;
}

.technology-section .heading-text-collapse {
    color: var(--text-dark);
}

.technology-row {
    margin-bottom: 40px;
}

.technology-logo-row .technology-row {
    padding-block: 40px;
    background: var(--bg-light-grey);
}

.technology-section picture img {
    border-radius: 16px;
}

.simple-branding {
    gap: 60px;
}

.tech-banner-content {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.tech-banner-content::after {
    content: '';
    background: linear-gradient(90deg, rgba(38, 37, 58, 0.65) 0%, rgba(0, 0, 0, 0.313605) 38.59%, rgba(0, 0, 0, 0) 50%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    mask-image: linear-gradient(to left, transparent, black 70%, black 100%, transparent);
    pointer-events: none;
}

.tech-banner-content h3 {
    font-weight: 300;
    font-size: 96px;
    line-height: 89px;
    letter-spacing: -0.03em;
}

.tech-banner-content h3 strong {
    font-weight: 600;
}

.tech-banner-content .tech-bg-blur {
    padding: 50px 80px;

}

@keyframes dynamicGradient {
    0% {
        background-position: 0% 100%;
    }

    100% {
        background-position: 100% 100%;
    }
}

.our-work,
.ourservice-detail,
.case-study-section {
    padding: 40px 0 100px 0;
    height: auto;
    /* background: radial-gradient(23.09% 23.09% at 48.52% 105.3%, rgba(215, 255, 250, 0.56) 0%, rgba(0, 111, 97, 0) 100%),
        radial-gradient(72.46% 72.46% at 50% 116.72%, #00d5bc00 0%, rgba(33, 33, 33, 0) 70%), #212121; */
    background: radial-gradient(46.99% 80.27% at 50% 152.63%, #00D5BB 0%, #212121 100%);
    background-size: 150% 150%;
    background-repeat: no-repeat;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: dynamicGradient 20s ease-in-out infinite alternate;
}


.case-study-section {
    background: radial-gradient(23.09% 23.09% at 48.52% 105.3%, rgba(215, 255, 250, 0.56) 0%, rgba(0, 111, 97, 0) 50%),
        radial-gradient(62.46% 62.46% at 50% 116.72%, #00D5BB 0%, rgba(33, 33, 33, 0) 60%), #212121;
    background-size: 150% 150%;
    background-repeat: no-repeat;
}

.our-work::after,
footer::after,
.banner-section::after,
.ourservice-detail::after,
.dark-section::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.4;
    z-index: 1;
    filter: url(#noiseFilter);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.technology-row.g-3 {
    --bs-gutter-x: 1.25rem;
    --bs-gutter-y: 1.25rem;
}

.shadow-overlay {
    background: rgba(0, 213, 187, 0.79);
    backdrop-filter: blur(11.65px);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    transform: translateY(100%);
    transition: 0.2s all;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.technology-box {
    border-radius: 16px;
    transition: border-radius 0.35s ease;
}

.technology-col:not(.services-listing .technology-col) .hover-scale:hover .technology-box {
    border-radius: 16px 0 16px 16px;
}

.header-cta {
    background-color: var(--bg-marquee-bg);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 0 11px 14px;
    max-width: fit-content;
    margin-left: auto;
    border-bottom-left-radius: 16px;
    position: relative;
}

/* .top-left-box::before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0px;
    left: -20px;
    z-index: 2;
    border-bottom-left-radius: 17px;
    mask: radial-gradient(20px at bottom left, #0000 100%, #000000);
    background: #212121;
    transform: rotate(0deg);
} */

.header-bg-text {
    background-color: rgb(244 244 244 / 10%);
    display: block;
    padding: 7px 20px;
    border-radius: 50px;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.03em;
    color: var(--title-light);
}

.header-bg-text:hover {
    color: var(--title-light);
}

.gap-10 {
    gap: 10px;
}

/* .bottom-right-box::after {
    content: '';
    width: 20px;
    height: 20px;
    background-color: rgba(0, 213, 187, 1);
    position: absolute;
    bottom: -20px;
    right: 0;
    z-index: 2;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 16px;
    mix-blend-mode: exclusion;
} */

/* .bottom-right-box::before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: #212121;
    position: absolute;
    bottom: -20px;
    right: 0;
    z-index: 2;
    border-bottom-left-radius: 17px;
    mask: radial-gradient(20px at bottom left, #0000 100%, #000000);
    background: #212121;
    transform: rotate(0deg);
} */

.technology-box img {
    transition: 0.3s all;
}


.footer-info {
    padding: 45px 20px;
}

.number-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.number-col {
    display: flex;
    flex-direction: column;
}

.counter-1 {
    font-weight: 600;
    font-size: 64px;
    line-height: 1.2;
    color: var(--title-light);
    display: flex;
    align-items: center;
    gap: 0;
    opacity: 0;
}

.number-more-information p {
    font-weight: 400;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--title-light);
}

.block-title-footer {
    margin-top: 30px;
}

.block-title-footer .block-title-footer-text {
    font-weight: 600;
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--title-light);
}

.block-title-footer img {
    filter: brightness(0) saturate(100%) invert(99%) sepia(98%) saturate(242%) hue-rotate(42deg) brightness(106%) contrast(105%);
    transition: 0.3s all;
    transform: rotate(-45deg);
}

.hover-scale:hover .shadow-overlay {
    opacity: 1;
    transform: translateY(0);
}

.hover-scale:hover picture img {
    filter: blur(10px);
}

.hover-scale:hover .block-title-footer img {
    transform: rotate(0deg);
}

.technology-row:nth-child(2) .technology-col:first-child .technology-box picture img {
    height: 640px;
    object-fit: cover;
}

.technology-row:nth-child(2) .technology-col:last-child .technology-box picture img,
.technology-row:nth-child(3) .technology-col:first-child .technology-box picture img,
.technology-row:nth-child(3) .technology-col:last-child .technology-box picture img {
    height: 500px;
    object-fit: cover;
}

.single-services .technology-row .technology-col .technology-box picture img,
.single-case-studies .technology-row .technology-col .technology-box picture img,
.case-studies-crd-section .technology-row .technology-col .technology-box picture img {
    height: 500px;
    object-fit: cover;
}

.case-studies-crd-section .technology-row .technology-col a:hover .technology-box picture img {
    transform: scale(1.05);
}

.technology-row:nth-child(3) .technology-col:last-child .bottom-right-box::after,
.technology-row:nth-child(3) .technology-col:first-child .bottom-right-box::after,
.technology-row:nth-child(2) .technology-col:last-child .bottom-right-box::after {
    mix-blend-mode: hard-light;
}

.marquee-animation {
    width: 100%;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-animation p {
    font-weight: 400;
    font-size: 144px;
    line-height: 197px;
    letter-spacing: -0.03em;
    color: var(--title-light);
    margin: 0;
}

.marquee-row {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 80px;
    padding-top: 5px;
    padding-right: 80px;
}

.marquee-row img {
    border-radius: 12px;
}

.marquee-img-1 {
    max-width: 240px;
    width: 100%;
    object-fit: cover;
    height: 240px;
    transform: rotate(12deg);
}

.marquee-row p {
    white-space: nowrap;
}

.marquee-img-2 {
    max-width: 348px;
    width: 100%;
    object-fit: cover;
    height: 240px;
    transform: rotate(-13deg);
}

.marquee-img-3 {
    max-width: 347px;
    width: 100%;
    object-fit: cover;
    height: 347px;
    transform: rotate(0deg);
}

.our-service-section {
    padding: 85px 0 0;
}

.our-service-section * {
    color: var(--text-dark);
}

.our-service-para p {
    font-weight: 400;
    line-height: 1.5;
    max-width: 460px;
}

.big-title-line {
    overflow: hidden;
    max-width: 980px;
    margin-left: auto;
}

.big-title-line .block-big-title {
    padding-bottom: 34px;
    margin-bottom: 34px;
    border-bottom: 1px solid #21212140;
    cursor: pointer;
    position: relative;
}

.big-title-line .block-big-title:last-child {
    margin-bottom: 0;
}

.big-title-line .block-big-title-text {
    font-weight: 500;
    font-size: 96px;
    line-height: 103px;
    letter-spacing: -0.03em;
    transition: 0.3s all;
    position: absolute;
    left: 0;
}

.block-big-title-icon {
    position: relative;
}

.block-big-title-icon img {
    max-width: 135px;
    width: 100%;
    object-fit: cover;
    height: 100px;
    border-radius: 8px;
    transition: 0.3s all;
    opacity: 0;
    transform: rotate(0deg) translate(4px, 4px);
}

.block-big-title:hover .block-big-title-icon img {
    opacity: 1;
    transform: rotate(4deg) translate(4px, 4px);
}

.block-big-title:hover .block-big-title-text {
    /* color: var(--text-teal); */
    transform: translateX(150px);
}

.modal-box-inner {
    --x: 20%;
    --y: 90%;

    background:
        radial-gradient(circle at var(--x) var(--y),
            rgba(0, 213, 187, 0.55) 0%,
            rgba(0, 213, 187, 0) 45%),
        #212121;

    border-radius: 17px;
    padding: 10px 8px;
    max-width: 480px;

    transition: background 0.08s linear;
    /* overflow: hidden; */
}

.modal-box-inner:hover {
    transform: translateY(-2px);
}

.modal-box-inner {
    transition:
        transform 0.3s ease,
        background 0.1s linear;
}

.modal-box-inner .build-box {
    width: 117px;
    height: 120px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
}

.modal-box-inner .build-box img {
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    height: 120px;
}

.flex-gap {
    gap: 40px;
}

.para-box h6 {
    margin: 0 0 10px 0;
    font-weight: 600;
    font-size: 24px;
    line-height: 33px;
    letter-spacing: -0.03em;
    color: var(--title-light);
}

.para-box p {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.03em;
    color: var(--title-light);
}

.modal-box-inner {
    /* background: radial-gradient(52.72% 125.57% at 7.08% 138.6%, #00D5BB 0%, rgba(0, 213, 187, 0) 100%), #212121; */
    border-radius: 17px;
    padding: 10px 8px;
    max-width: 480px;
}

.cursor-pointer {
    cursor: pointer;
}

.modal-iframe {
    max-width: 100%;
    width: 100%;
    height: 550px;
    object-fit: cover;
}

/* ============================ */
.slider-area {
    position: relative;
    padding: 100px 0 50px 0;
    z-index: 1;

}

.slider-container {
    width: 100%;
    max-width: 100%;
}

/* Swiper base styles override */
.slider-container .swiper {
    width: 100%;
    padding-bottom: 80px;
    padding-top: 20px;
    overflow: visible;
    /* Leaves room for the bottom grab UI */
}

/* --- THE GRAB UI STYLING --- */

/* The background track line */
.slider-container .swiper-scrollbar {
    height: 30px;
    background: transparent;
    z-index: 1;
    max-width: 785px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.slider-container .swiper-scrollbar::after {
    content: '';
    background: #F9F9F9 !important;
    height: 9px !important;
    border-radius: 9999px;
    bottom: 10px !important;
    width: 100% !important;
    left: 0 !important;
    position: absolute;
}

.slider-container .swiper-scrollbar-drag {
    background: url(../images/icon/slider-btn.svg) no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    width: 30px !important;
    height: 30px !important;
    cursor: grab;
    z-index: 2;
}

.slider-container .swiper-scrollbar-drag:active {
    cursor: grabbing;
}

.blue-area-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    height: 290px;
}

.blur-section {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 70, 70, 0.71) 100%);
    z-index: 4;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    mask-image: linear-gradient(to bottom, transparent, black 30%, black 100%, transparent);
}

.blue-area-name .name-box h4 {
    font-weight: 600;
    font-size: 32px;
    line-height: 32px;
    letter-spacing: -0.03em;
    color: var(--title-light);
}

.blue-area-name .name-box span {
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: -0.03em;
    color: var(--title-light);
}

.slide-title {
    overflow: hidden;
    border-radius: 16px;
}

.more-detail-card {
    position: absolute;
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    /* background-color: var(--white); */
    box-shadow: 0px 0px 23.9px 4px rgba(0, 0, 0, 0.12);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    /* opacity: 0; */
    transition: 0.3s all;
}

.slider-area .swiper-slide:hover .more-detail-card {
    opacity: 1;
}

.more-detail-card .sm-build-circle {
    margin-bottom: 10px;
}

.more-detail-card .sm-build-circle img {
    border-radius: 50%;
    max-width: 84px;
    width: 100%;
    height: 84px;
    object-fit: cover;
}

.data-card {
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    letter-spacing: 0.03em;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.name-group-detail {
    margin-top: auto;
}

.name-group-detail h4 {
    font-weight: 600;
    font-size: 32px;
    line-height: 32px;
    letter-spacing: -0.03em;
    margin: 0;
}

.name-group-detail p {
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: -0.03em;
    margin: 0;
}

/*  */
.banner-cover {
    opacity: 0;
}

.cc-hero__graphic-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.cc-hero__gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(0, 213, 187, 0.22) 0%,
            rgba(38, 37, 58, 0.5) 20%,
            rgba(38, 37, 58, 1) 30%);
    will-change: background;
}

.modal-tr {
    color: var(--text-teal);
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.03em;
    font-weight: 600;
    padding: 10px 20px;
    outline: 0;
}

.modal-tr:hover {
    color: var(--text-teal);
    text-decoration: wavy underline;
}

.modal-tr:focus {
    outline: 0;
}

.banner-content-wr {
    top: 20%;
}

.marquee-track {
    cursor: pointer;
}

/* .swiper-testimonial .swiper-slide:nth-child(2) .more-detail-card {
    opacity: 1;
} */

/*  */
.hero-title .word,
.navbar-brand,
#menu-header-menu>.nav-item,
.contact-btn,
.hero-avatar,
.client-logo {
    will-change: transform, opacity, filter;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.navbar-collapse {
    transform: translateZ(0);
}

.hero-avatar:nth-child(1) {
    position: relative;
    z-index: 3;
}

.hero-avatar:nth-child(2) {
    margin: 0 -8px;
    position: relative;
    z-index: 2;
}

.hero-avatar:nth-child(3) {
    position: relative;
    z-index: 1;
}

.tag-item,
.counter-1,
.counter-text,
.number-more-information p {
    will-change: transform, opacity;
}

.more-detail-card {
    overflow: hidden;
}

.sm-build-circle,
.data-card,
.modal-tr,
.name-group-detail h4,
.name-group-detail .data-anim {
    will-change: transform, opacity;
}

/* .swiper-testimonial .swiper-slide:nth-child(2) .more-detail-card .sm-build-circle,
.swiper-testimonial .swiper-slide:nth-child(2) .more-detail-card .data-card,
.swiper-testimonial .swiper-slide:nth-child(2) .more-detail-card .modal-tr,
.swiper-testimonial .swiper-slide:nth-child(2) .more-detail-card .name-group-detail h4,
.swiper-testimonial .swiper-slide:nth-child(2) .more-detail-card .name-group-detail p {
    opacity: 1 !important;
    transform: none !important;
} */

/*  */
.our-banner-info .heading-text-collapse {
    margin-bottom: -20px;
}

.our-banner-info .our-service-informtaiton {
    margin-bottom: -10px;
}

.our-banner-info .our-service-informtaiton p {
    font-weight: 300;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0.03em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.ourservice-box {
    bottom: 50px;
}

.ourservice-detail {
    padding: 100px 0;
}

.simple-para-detail p {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.375;
    letter-spacing: 0.03em;
    color: var(--title-light);
}

.center-custom-width {
    max-width: 1475px;
    margin: 100px auto 100px auto;
}

.number-counter-service {
    max-width: 100%;
    margin: 0 auto;
    padding: 48px 0 44px;
}

.case-studie-banner img {
    border-radius: 16px;
}

.normal-radius-btn {
    background-color: #1d1d1e;
    border-radius: 16px 0 0 0;
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--title-light);
    padding: 23px 25px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
}

.normal-radius-btn span img {
    filter: brightness(0) saturate(100%) invert(96%) sepia(15%) saturate(342%) hue-rotate(26deg) brightness(103%) contrast(114%);
    transform: rotate(-45deg);
    transition: 0.3s all;
}

.stretched-link:hover .normal-radius-btn {
    color: var(--title-light);
}

.stretched-link:hover .normal-radius-btn span img {
    transform: rotate(0deg);
}

.corner-radius-left,
.corner-radius-right {
    position: absolute;
    left: -15.5px;
    bottom: -0.5px;
    width: 16px;
    height: 16px;
    z-index: 3;
    display: flex;
    color: var(--bg-marquee-bg);
    transform: rotate(90deg);
}

.corner-radius-right {
    bottom: auto;
    top: -15.5px;
    right: -0.5px;
    left: auto;
}

.case-studie-banner::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: radial-gradient(80.32% 67% at 62.31% 97.23%, #00D5BB 0%, rgba(102, 102, 102, 0) 61.54%);
    background-size: 150% 150%;
    background-repeat: no-repeat;
    z-index: 2;
    animation: dynamicGradient 20s ease-in-out infinite alternate;
}

.number-box-child:first-child .number-box {
    padding-left: 46px;
    padding-bottom: 20px;
}

.number-box-child {
    position: relative;
}

.number-box-child::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0.5px;
    height: 100%;
    background-color: var(--title-light);
    opacity: 0.25;
}

.number-box-child .number-header {
    margin-bottom: 12px;
    line-height: 1.1;
    color: var(--text-teal);
}

.number-box-child .number-header span {
    color: inherit;
}

.some-box {
    margin-bottom: 100px;
}

.some-box-service h2 {
    margin-bottom: 60px;
}

/*  */
.services-grid {
    display: grid;
    grid-template-columns: repeat(13, 1fr);
    gap: 20px;
}

/* Large cards */
.service-card .service-card-img {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

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

.service-card:first-child,
.service-card:last-child {
    grid-column: span 5;
}

/* Small cards */
.service-card {
    grid-column: span 4;
}

.service-card::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(164.07deg, #414141 9.4%, rgba(102, 102, 102, 0) 88.9%);
    z-index: 0;
    pointer-events: none;
}

.service-card {
    padding: 24px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    min-height: 335px;
}

.service-card h3 {
    font-weight: 500;
    font-size: 32px;
    line-height: 35px;
    letter-spacing: -0.03em;
    color: var(--title-light);
}

.service-card p {
    font-weight: 300;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: 0.03em;
    color: var(--title-light);
    opacity: 0.75;
    max-width: 460px;
}

.why-us {
    background-color: var(--bg-light-grey);
    padding: 100px 0;
}

.why-us-section {
    padding: 150px 0 100px 0;
}

.block-title-label {
    font-weight: 600;
    font-size: 24px;
    line-height: 33px;
    letter-spacing: -0.03em;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: block;
}

.block-title {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 48px;
    line-height: 52px;
    letter-spacing: -0.03em;
}

.block-desc-text {
    color: var(--text-dark);
    font-weight: 400;
    font-size: 24px;
    line-height: 33px;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
}

.block-desc-p p {
    color: var(--text-dark);
    font-weight: 300;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
}

.sm92-about-text {
    max-width: 810px;
    margin-left: auto;
}

.sub-para {
    margin-bottom: 150px;
}

.single-quote p {
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;
    letter-spacing: 0.03em;
    margin: 0;
}

.quote-author * {
    color: var(--text-dark);
}

.quote-author h5 {
    font-weight: 600;
    font-size: 32px;
    line-height: 32px;
    letter-spacing: -0.03em;
    margin: 0;
}

.quote-author span {
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: -0.03em;
}

.quote-box {
    max-width: 1315px;
    margin: 0 auto;
}

.single-quote {
    margin-left: auto;
    max-width: 900px;
}

.quote-img-box img {
    border-radius: 50%;
    height: auto;
    width: 100%;
    max-width: 290px;
}

/* .test-monial-link .hover-scale:hover img {
    filter: blur(0px);
} */

.why-us .block-title-footer .block-title-footer-text {
    color: var(--text-dark);
}

.why-us .block-title-footer img {
    filter: brightness(0) saturate(100%) invert(9%) sepia(5%) saturate(6129%) hue-rotate(205deg) brightness(95%) contrast(85%);
    max-width: 31px;
}

.why-us .hover-scale:hover .block-title-footer img {
    filter: brightness(0) saturate(100%) invert(9%) sepia(5%) saturate(6129%) hue-rotate(205deg) brightness(95%) contrast(85%);
}

.banner-build img {
    height: 625px;
}

.case-study-section {
    padding-top: 180px;
}

.simple-back-link {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.03em;
    color: var(--white);
}

.arrow-wrap img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(97%) saturate(0%) hue-rotate(300deg) brightness(103%) contrast(101%);
}

.simple-back-link:hover {
    color: var(--white);
}

.arrow-wrap {
    position: relative;
    width: 18px;
    height: 18px;
    overflow: hidden;
    transform: rotate(-135deg) translate(2px, 4px);
    top: 1px;
}

.arrow-icon {
    position: absolute;
    left: 0;
    top: 0;
    transition: transform 0.35s ease;
}

/* Visible arrow */
.arrow-main {
    transform: translate(0, 0);
}

/* Hidden below */
.arrow-ghost {
    transform: translate(-18px, 0px);
}

.simple-back-link:hover .arrow-main {
    transform: translate(18px, 0px);
}

.simple-back-link:hover .arrow-ghost {
    transform: translate(0, 0);
}

.tag-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.tag-inner {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.03em;
    color: var(--title-light);
    background-color: rgba(247, 255, 239, 0.21);
    padding: 10px 20px;
    border-radius: 50px;
}

.banner-center .banner-center-img {
    position: relative;
    margin-bottom: 48px;
}

.banner-center .banner-center-img img {
    border-radius: 16px;
    height: 530px;
    object-fit: cover;
}

.banner-box-area {
    position: absolute;
    bottom: 0;
    right: 0;
}

.banner-box-area p {
    background-color: var(--bg-marquee-bg);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.375;
    letter-spacing: -0.03em;
    color: var(--title-light);
    max-width: 600px;
    padding: 24px 0 0 36px;
    border-radius: 16px 0 0 0;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.corner-radius-left-18,
.corner-radius-right-18 {
    position: absolute;
    left: -15.5px;
    bottom: 0;
    width: 16px;
    height: 16px;
    z-index: 3;
    display: flex;
    color: var(--bg-marquee-bg);
    transform: rotate(90deg);
}

.corner-radius-right-18 {
    bottom: auto;
    top: -15.5px;
    right: -0.5px;
    left: auto;
}

.brand-content,
.side-by-image {
    margin-bottom: 150px;
}

.side-by-image .side-col:first-child img {
    max-width: 650px;
}

.side-by-image .side-col:last-child {
    padding-top: 114px;
}

.side-by-image img {
    border-radius: 16px;
}

.brand-img-padding {
    max-width: 650px;
    margin-top: 120px;
}

.side-by-image .side-col .brand-img-padding img {
    max-width: 480px;
    margin-left: auto;
    display: block;
}

.more-detail-card {
    transition: background-color 0.2s ease;
}

.more-detail-card.is-active {
    background-color: #fff;
}

/*  */
.footer-content-top {
    display: none;
}

.footer-wrapper picture {
    opacity: 0;
}

.bottom-footer {
    margin-top: 80px;
}

footer .footer-wrapper::after {
    background: radial-gradient(214.46% 366.37% at 50% 345.62%, #00D5BB 0%, #212121 82.21%);
    backdrop-filter: blur(30.2px);
}

.partner-logo img,
.branding-white img {
    max-width: 100px;
    width: 100%;
}

/* --- Swiper for New Testimonial --- */

body .slider-container .swiper-testimonial-new {
    width: 100%;
    max-width: 100%;
    padding-bottom: 0px;
    padding-top: 20px;
    overflow: visible !important;
}

.swiper-testimonial-new .swiper-slide {
    width: 85%;
    max-width: 1340px;
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), filter 1s ease, opacity 1s ease;
    filter: blur(8px);
    will-change: transform, filter, opacity;
}

.swiper-testimonial-new .swiper-slide-active {
    filter: blur(0px);
    opacity: 1;
    transform: scale(1);
}

.testimonial-card-new {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    border-radius: 33px;
    overflow: hidden;
    background-color: #212121;
    min-height: 480px;
}

.testimonial-card-left-new {
    border-radius: 33px;
    background-color: #212121;
    padding: 48px 54px 33px 54px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc(100% + 33px);
    position: relative;
    z-index: 1;
}

.testimonial-quote-new {
    font-family: inherit;
    font-size: 32px;
    line-height: 1.3;
    font-weight: 400;
    color: var(--title-light);
    margin: 0;
    font-style: normal;
    letter-spacing: 3%;
    /* display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden; */
}

.testimonial-quote-new:before {
    content: "“";
    margin-left: -18px;
}

.testimonial-read-more-new {
    margin-top: 10px;
    display: none;
    transition: color 0.3s ease;
}

.testimonial-author-new {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-avatar-new {
    width: 82px;
    height: 82px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.testimonial-info-new {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    flex: 1;
}

.testimonial-name-new {
    margin: 0 0 4px 0;
    color: var(--title-light);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.6px;
}

.testimonial-company-new {
    color: var(--title-light);
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.6px;
}

.testimonial-card-right-new {
    position: relative;
    overflow: hidden;
    background: #212121;
    height: 100%;
    width: 100%;
}

.testimonial-bg-image-new {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-height: 520px;
}

.testimonial-badge-container-new {
    position: absolute;
    bottom: 18px;
    right: 24px;
    z-index: 5;
    display: flex;
}

.testimonial-card-new .cta-btn {
    background-color: #fff;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.19;
    letter-spacing: -0.16px;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
}

.slider-container .swiper-testimonial-thumbs {
    max-width: 1100px;
    margin: 30px auto 0 auto;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}

body .slider-container .swiper-testimonial-thumbs::before,
body .slider-container .swiper-testimonial-thumbs::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 25%;
    max-width: 350px;
    z-index: 10;
    pointer-events: none;
}

body .slider-container .swiper-testimonial-thumbs::before {
    left: 0;
    background: linear-gradient(90deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
}

body .slider-container .swiper-testimonial-thumbs::after {
    right: 0;
    background: linear-gradient(270deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%);
}

.swiper-testimonial-thumbs .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
}

.thumb-slide-new {
    cursor: pointer;
    flex-shrink: 0;
}

.thumb-logo-box-new {
    background: #ffffff;
    border-radius: 19px;
    border: 1px solid #000;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 74px;
    min-width: 180px;
    transition: border-color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    opacity: 0.44;
}

.thumb-logo-box-new img {
    object-fit: contain;
    object-position: right;
    width: 100%;
    height: 100%;
}

.swiper-slide-active .thumb-logo-box-new,
.swiper-slide-thumb-active .thumb-logo-box-new {
    opacity: 1;
}

.thumb-logo-box-new:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.slider-area.slider-area-new {
    padding-bottom: 100px;
}

/* --- Testimonial Nav Arrows --- */

/* Make the container the positioning anchor */
.slider-area.slider-area-new .slider-container {
    position: relative;
}

.testimonial-nav-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    /* let clicks pass through the wrapper */
    z-index: 20;
    padding: 0 24px;
    margin: 0;
}

.testimonial-arrow {
    pointer-events: all;
    /* re-enable clicks on the buttons themselves */
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #000;
    color: var(--bg-teal);
    cursor: pointer;
    overflow: hidden;
    transition: color 0.35s ease, border-color 0.35s ease, transform 0.3s ease, box-shadow 0.35s ease;
    outline: none;
    flex-shrink: 0;
}

.testimonial-arrow svg {
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 2;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Ripple fill on hover */
.testimonial-arrow::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: var(--bg-teal);
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.testimonial-arrow:hover::before {
    transform: scale(1);
}

.testimonial-arrow:hover {
    color: var(--text-dark);
    box-shadow: 0 0 20px rgba(0, 213, 187, 0.45);
    transform: translateY(-2px);
}

/* Arrow icon shift on hover */
.testimonial-arrow-next svg,
.testimonial-arrow-prev svg {
    transform: translateX(1px);
}

/* Active press effect */
.testimonial-arrow:active {
    transform: scale(0.93) translateY(0);
}

/* Subtle glow pulse animation */
@keyframes testimonial-arrow-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 213, 187, 0.35);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(0, 213, 187, 0);
    }
}

.banner-overlay {
    overflow: hidden;
    height: 100dvh;
    width: 100%;
}

.banner-overlay video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cc-hero-new .banner-content-wr {
    bottom: 23dvh;
    top: auto !important;
}

.about-info .desc-dv {
    margin-bottom: 60px;
}

.technology-row .partner-grid .partner-logo {
    flex: 1;
}

.technology-logo-section {
    padding: 40px 40px 0px;
}

.technology-home-section {
    padding: 0 40px 80px;
}

.technology-home-section .text-96 {
    line-height: 1.1;
}

.cta-btn.white-boreder-btn {
    border: 2px solid var(--text-dark);
    background-color: #fff;
}

.cta-btn.white-boreder-btn .hover-shadow {
    background-color: var(--bg-dark);
}

.cta-btn.white-boreder-btn:hover *,
.cta-btn.white-boreder-btn:hover {
    color: var(--bg-off-white);
}

.cta-btn.white-boreder-btn:hover img {
    filter: brightness(0) saturate(100%) invert(85%) sepia(63%) saturate(67%) hue-rotate(323deg) brightness(105%) contrast(109%);
}

.testimonial-btm-between-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.testimonial-btm-between-row .testimonial-author-new {
    margin-top: 0;
    max-width: calc(100% - 210px);
}

.testimonial-logo-new .thumb-logo-box-new {
    background: transparent;
    padding: 0;
    display: flex;
    border: none;
}

.new-tag-container .tag-inner {
    background-color: rgba(244, 244, 244, 0.10);
    padding: 7px 20px;
}

.tag-container.new-tag-container {
    margin: 0 0 18px;
}

.number-box-child p {
    font-weight: 400;
    letter-spacing: 0.6px;
    margin: 0;
}

.space-y-80 {
    padding-block: 80px;
}

.container-flex {
    width: 1728px;
    max-width: 100%;
}

body .dark-section {
    background: radial-gradient(137.04% 25.92% at 50% 108.74%, var(--bg-marquee-bg) 0%, var(--bg-marquee-bg) 55%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body .dark-section::after {
    opacity: 0;
}

.banner-section {
    padding-bottom: 0;
}

.single-image-section .img-fluid {
    border-radius: 16px;
}

body .marquee-loop-section {
    padding-top: 80px;
    background: var(--bg-marquee-bg);
}

.marquee-loop-section::before {
    content: "";
    background: radial-gradient(160.39% 30.33% at 50% 109.2%, #00D5BB 0%, #212121 55%);
    width: 100%;
    height: 4498px;
    position: absolute;
    bottom: -70px;
    left: 0px;
    z-index: 2;
    background-size: 150% 150%;
    background-repeat: no-repeat;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: dynamicGradient 20s ease-in-out infinite alternate;
}

.marquee-loop-section::after {
    z-index: 2;
}

.testimonial-static-section {
    padding: 160px 0 80px;
    background: var(--bg-light-grey);
    text-align: center;
}

.testimonial-static-section .single-quote {
    display: grid;
    gap: 48px;
}

.testimonial-static-section .single-quote p {
    line-height: 1.375;
    font-weight: 400;
    letter-spacing: 0;
}

.testimonial-static-section .quote-img-box {
    background: var(--bg-teal);
    width: 82px;
    height: 82px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 0;
    border-radius: 100%;
}

.testimonial-static-section .quote-author {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.375;
    letter-spacing: 0.6px;
    gap: 4px;
}

.testimonial-static-section .single-quote p span {
    font-weight: 600;
    font-size: inherit;
    line-height: inherit;
}

.case-studies-crd-section:not(.dark-section) .header-cta {
    background-color: var(--bg-light-grey);
}

.case-studies-crd-section:not(.dark-section) .top-left-box::before,
.case-studies-crd-section:not(.dark-section) .bottom-right-box::before {
    background-color: var(--bg-light-grey);
}

.case-studies-crd-section .top-left-box::before,
.case-studies-crd-section .bottom-right-box::before {
    border-bottom-left-radius: 16px;
}

.case-studies-crd-section:not(.dark-section) .top-left-box::after,
.case-studies-crd-section:not(.dark-section) .bottom-right-box::after {
    background: #ad3846;
}

.case-studies-crd-section:not(.dark-section) .header-cta .top-left-box,
.case-studies-crd-section:not(.dark-section) .header-cta .bottom-right-box {
    color: var(--bg-light-grey);
}

.case-studies-crd-section:not(.dark-section) .header-bg-text {
    background: #363636;
    color: var(--title-light);
}

.text-h1-144 {
    font-size: 144px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -2%;
}

.ourservice-banner .ourservice-box {
    top: 0;
    bottom: auto;
    height: 100%;
    padding: 180px 0 60px;
}

.page-top-section {
    padding-top: 240px;
    padding-bottom: 80px;
}

.our-banner-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.case-studies-crd-section .technology-row:nth-child(2) .technology-col:first-child .technology-box picture img {
    height: 500px;
}

.services-block-section .normal-radius-btn {
    width: 570px;
    max-width: 100%;
    background: var(--bg-marquee-bg);
    padding-inline: 36px;
}

.services-block-section .simple-para-detail p:not(:last-child) {
    margin-bottom: 32px;
}

.services-block-section .mobile-center-custom {
    padding: 0 20px 0 40px;
}

.services-block-section .case-studie-banner::after {
    display: none;
}

.new-service-card hr {
    border-top-color: #FCFFF9;
    margin: 1.5rem 0;
}

.new-service-card p {
    color: var(--bg-off-white);
    font-weight: 400;
    margin: 0;
}

.new-service-card .service-icon {
    height: 30px;
    margin: 0 0 36px;
    display: inline-flex;
}

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

.team-grid .row,
.new-service-grid-root .row {
    --bs-gutter-x: 56px;
    --bs-gutter-y: 100px;
}

.light-section {
    background-color: var(--bg-light-grey);
}

.title-desc-div.light-section h2,
.title-desc-div.light-section p {
    color: var(--text-dark);
}

.space-y-80+.testimonial-static-section {
    padding-top: 80px;
}

.footer-navigation-row ul.footer-link {
    max-width: 300px;
    margin-left: auto;
}

.iframe-section .video-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 16px;
}

.iframe-section .video-banner iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(1.2);
    border: 0;
    background: transparent;
    pointer-events: none;
}

.awards-section .our-title-32 {
    white-space: normal;
    word-break: break-word;
}

.static-logo-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 80px;
}

.static-logo-slider .awards-logo {
    display: flex;
    align-items: center;
    justify-content: left;
    width: 246px;
    height: 86px;
    padding: 10px;
}

.static-logo-slider .awards-logo img {
    max-height: 100%;
    object-fit: contain;
    max-width: 100%;
}

.teams-inner {
    margin-top: 40px;
}

.team-member-card {
    position: relative;
    color: var(--bg-off-white);
}

.teams-section .heading-block {
    margin: 0 0 80px;
}

.team-member-card .team-member-image {
    overflow: hidden;
    border-radius: 16px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.team-member-card h3 {
    font-size: 32px;
    line-height: 1.375;
    font-weight: 400;
    color: var(--bg-off-white);
    margin: 0 0 14px;
}

.team-member-card p {
    margin: 0 0 14px;
    font-weight: 400;
    color: var(--bg-off-white);
}

.team-member-card .link-tm-btn {
    font-size: 20px;
    line-height: 27px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    color: var(--bg-off-white);
    transition: all 0.3s;
}

.team-member-card .link-tm-btn:hover {
    color: var(--bg-teal);
}

.filter-dropdown-wrap {
    margin: 0 0 120px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px;
}

.filter-dropdown-wrap .label-text {
    color: var(--bg-off-white);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.375;
    letter-spacing: 0.03em;
}

.select-default {
    padding: 10px 46px 10px 16px;
    border-radius: 26px;
    border: 1px solid #fcfff9e6;
    color: var(--bg-off-white);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.375;
    letter-spacing: 0.03em;
    background: var(--bg-marquee-bg);
    height: 52px;
    appearance: none;
    background-image: url(../images/down-arrow.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 16px) center;
    background-size: 26px;
}

section.case-studies-page {
    padding-top: 40px;
    padding-bottom: 100px;
}

.case-studies-crd-section .technology-row:last-child {
    margin-bottom: 0;
}

body .gform-theme--framework input[type="text"],
body .gform-theme--framework input[type="email"],
body .gform-theme--framework input[type="email"],
body .gform-theme--framework input[type="tel"],
body .gform-theme--framework input[type="url"],
body .gform-theme--framework textarea {
    min-height: 52px;
    font-family: 'Manrope';
    padding: 13px 22px;
    outline: none;
    border-radius: 26px;
    border: 1px solid #fcfff9e6;
    color: var(--bg-off-white);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.375;
    letter-spacing: 0.03em;
    background: var(--bg-marquee-bg);
}

body .gform_wrapper input::placeholder,
body .gform_wrapper textarea::placeholder {
    color: var(--bg-off-white) !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 1.375 !important;
    letter-spacing: 0.03em !important;
}

.ginput_container.ginput_container_checkbox input.gfield-choice-input {
    width: 52px;
    height: 52px;
    background-color: transparent;
    border: 1px solid #fcfff9e6;
    border-radius: 15px;
    outline: none;
}

body .gform-theme--foundation .gfield textarea.small {
    min-height: 300px;
    border-radius: 15px;
    padding: 22px;
    resize: none;
}

.ginput_container.ginput_container_checkbox .gform-field-label,
legend.gfield_label.gform-field-label {
    color: var(--bg-off-white);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.375;
    letter-spacing: 0.03em;
    gap: 4px;
    display: inline-flex;
}

.ginput_container.ginput_container_checkbox .gform-field-label {
    margin: 0 0 0 22px;
    flex: 1;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
}

body .gform-theme--framework .gfield--type-choice .gfield_checkbox .gchoice {
    display: inline-flex;
    align-items: center;
}

body .gform-theme--framework .gfield--type-choice .gfield_checkbox {
    display: inline-flex;
    gap: 48px;
    flex-direction: initial;
    flex-wrap: wrap;
}

body .gform-theme--framework .gfield--type-choice .ginput_container_checkbox {
    display: inline-flex;
    width: auto;
}

legend.gfield_label.gform-field-label .gfield_required {
    display: none;
}

body .gform_wrapper .gfield .iti .iti__country-container {
    padding-left: 22px;
    display: flex;
    align-items: center;
}

body .gform_wrapper .gfield .iti input.iti__tel-input {
    padding-left: 89px !important;
}

body section .gform_wrapper .gfield .iti__arrow {
    margin-left: 6px;
    border: none;
    background-image: url(../images/down-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    width: 24px;
    height: 24px;
    display: flex;
}

.contact-us .gform-theme--framework input[type=checkbox]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::before {
    font-size: 0px !important;
    background-image: url(../images/check.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    width: 24px;
    height: 24px;
}

.contact-us .gform-theme--foundation {
    --gf-form-gap-x: 120px;
    --gf-form-gap-y: 55px;
}

.contact-us .gform-theme--framework {
    --gf-ctrl-choice-check-color: var(--bg-off-white);
}

.contact-us .gform-theme--foundation .gfield--width-half.odd-box {
    grid-column: span 5;
}

.contact-us .gform-theme--foundation .gfield--width-half.even-box {
    grid-column: span 7;
}

.contact-us .page-top-section .row {
    --bs-gutter-x: 120px;
}

body .gform-theme--framework .gform-button.gform-button--white,
body .gform-theme--framework input[type="submit"] {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    min-height: 60px !important;
    padding: 8px 82px 8px 42px !important;
    font-size: 20px !important;
    line-height: 28px !important;
    letter-spacing: -0.03em !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    transition: all 0.3s !important;
    color: var(--text-dark) !important;
    position: relative;
    outline: none !important;
    background-color: var(--bg-teal) !important;
    overflow: hidden;
    box-shadow: none !important;
    z-index: 2;
    will-change: transform, opacity, filter;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

body .gform-theme--framework input[type="submit"]:hover {
    background-color: var(--bg-off-white) !important;
}

body .gform-theme--framework .gform-button.gform-button--white::before {
    content: "" !important;
    background-image: url(../images/icon/arrow-right.svg) !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    transition: all 0.3s !important;
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    margin: auto 0 !important;
    right: 42px !important;
    width: 15px !important;
    height: 15px !important;
    z-index: 1 !important;
    transform: rotate(0deg) !important;
    transform-origin: center !important;
}

body .gform-theme--framework .gform-button.gform-button--white::after {
    content: "" !important;
    background-color: var(--bg-off-white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    bottom: -34px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
    transition: 0.4s all !important;
    filter: blur(5px);
}

body .gform-theme--framework .gform-button.gform-button--white:hover::after {
    transform: scale(14) !important;
}

body .gform-theme--framework .gform-button.gform-button--white:hover::before {
    transform: rotate(-45deg) !important;
}

.gform-theme--framework .gform_validation_errors {
    border-radius: 50px;
    outline: none !important;
}

body .gfield--type-submit {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}


body .gfield--type-submit .gform_ajax_spinner,
body .gform-theme--framework .gform_ajax_spinner,
body img.gform_ajax_spinner {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    right: 40px !important;
    margin: auto 0 !important;
    width: 20px !important;
    height: 20px !important;
    z-index: 5 !important;
    pointer-events: none !important;
}

body .gform-theme--framework .gform-button .gform-loader,
body .gform-theme--framework .gform-button .gform-spinner,
body .gform-theme--framework .gform-button .gform-theme__loader {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    right: 42px !important;
    left: auto !important;
    margin: auto 0 !important;
    width: 20px !important;
    height: 20px !important;
    z-index: 5 !important;
    pointer-events: none !important;
    --gf-form-spinner-fg-color: var(--text-dark) !important;
}

body .gform-theme--framework .gform-button.gform-has-spinner::before,
body .gform-theme--framework .gform-button:has(.gform-loader)::before,
body .gform-theme--framework .gform-button:has(.gform-spinner)::before,
body .gform-theme--framework .gform-button:has(.gform-theme__loader)::before,
body .gfield--type-submit:has(.gform_ajax_spinner) .gform-button::before,
body .gfield--type-submit:has(img.gform_ajax_spinner) .gform-button::before,
body .gfield--type-submit:has(.gform_ajax_spinner) input[type="submit"]::before {
    opacity: 0 !important;
    visibility: hidden !important;
}

body .gform-theme--framework .gform-button.gform-button--white:disabled,
body .gform-theme--framework input[type="submit"]:disabled,
body .gform-theme--framework .gform-button.gform-has-spinner {
    cursor: not-allowed !important;
    pointer-events: none !important;
    background-color: var(--bg-teal) !important;
    color: var(--text-dark) !important;
}

body .gform-theme--framework .gform-button.gform-button--white:disabled::after,
body .gform-theme--framework .gform-button.gform-button--white.gform-has-spinner::after,
body .gfield--type-submit:has(.gform_ajax_spinner) .gform-button.gform-button--white::after {
    transform: scale(1) !important;
    opacity: 0 !important;
}

.contact-us .gfield--type-checkbox legend.gfield_label {
    float: left;
    padding-top: 10px;
    padding-right: 36px;
}

.contact-us-details-info {
    width: 100%;
    position: relative;
    padding-top: 36px;
    border-top: 1px solid #fcfff9a6;
    top: -180px;
    margin-bottom: -180px;
}

.contact-us-details-info p {
    color: var(--text-teal);
    margin-bottom: 36px;
}

.contact-us-details-info .footer-link {
    margin: 0;
}

.contact-us-details-info .footer-link li {
    font-size: 32px;
    line-height: 1.375;
    margin-bottom: 0;
}

.contact-us-details-info .footer-link li:last-child {
    margin-top: 32px;
}

.contact-us-details-info .footer-link li a {
    font-size: inherit;
    line-height: inherit;
    transition: all 0.3s;
}

.contact-us-details-info .footer-link li a:hover {
    color: var(--bg-teal);
}

.my-32 {
    margin-block: 32px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-32 {
    margin-bottom: 32px;
}

.heading-text-collapse .about-us-icon {
    display: none;
}

.our-work-row .heading-text-collapse .about-us-icon {
    display: inline-flex;
}

.logo-desk {
    display: flex;
}

.logo-mob {
    display: none;
}

header #menu-header-menu .nav-link:hover,
header #menu-header-menu .nav-link:focus {
    background-color: rgba(244, 244, 244, 0.10);

}

.general-content-section {
    color: var(--bg-off-white);
    font-size: 16px;
}

.general-content-section p,
.general-content-section a:not(.cta-btn),
.general-content-section label,
.general-content-section span,
.general-content-section li,
.general-content-section input,
.general-content-section select,
.general-content-section textarea {
    color: var(--bg-off-white);
    font-weight: 400;
    word-break: break-word;
}

.general-content-section h2,
.general-content-section h3,
.general-content-section h4,
.general-content-section h5,
.general-content-section h6 {
    color: var(--bg-off-white);
    margin-block: 32px;
    word-break: break-word;
}

.our-title-32 p {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}

.privacy-policy header.entry-header {
    display: none;
}

.general-content-section h1 {
    margin-top: 36px;
    margin-bottom: 70px;
}

.general-content-section li {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0.03em;
    color: var(--bg-off-white);
    margin-top: 4px;
}

.general-content-section ol {
    margin-bottom: 0 !important;
}

.general-content-section p {
    font-weight: 400;
    color: var(--bg-off-white);
    margin-bottom: 1rem;
}

.gform-theme--framework .gform_validation_errors .gform_submission_error,
.gform-theme--framework .gfield_validation_message:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
    color: #ff2e00 !important;
}

body .gform_confirmation_message {
    font-size: 24px;
    line-height: 1.375;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: #00ff89 !important;
}

.no-services {
    font-size: 24px;
    line-height: 1.375;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--bg-off-white);
}

.privacy-policy .general-content-inner {
    max-width: 1100px;
}

.general-content-section h2,
.general-content-section h3 {
    margin-top: 1.5em;
    margin-bottom: 1em;
}

.general-content-section h4,
.general-content-section h5,
.general-content-section h6 {
    font-size: 1.25em;
    margin-top: 1.25em;
    margin-bottom: 1em;
}

.general-content-section h2 {
    font-size: 32px;
    font-weight: 400;
}

.general-content-section h3 {
    font-size: 1.75em;
}

.general-content-section a:not(.cta-btn):hover {
    color: var(--text-teal);
}

.home .our-service-section {
    scroll-margin-top: 140px;
}

.services-listing .hover-scale:hover .shadow-overlay {
    opacity: 0;
    backdrop-filter: blur(0);
}

.services-listing .hover-scale:hover picture img {
    filter: none !important;
}

.services-listing .block-title-footer {
    margin-top: 23px;
}

.services-listing .technology-row {
    margin-bottom: 100px;
}

.services-listing .technology-row:nth-child {
    margin-bottom: 0;
}

.filter-dropdown-wrap .select2-container--default .select2-selection--single {
    background: transparent;
    border-radius: 26px;
    border-color: #fcfff9e6;
    height: 52px;
    outline: none;
}

.filter-dropdown-wrap .select2-container .select2-selection--single .select2-selection__rendered {
    color: var(--bg-off-white);
    padding-left: 16px;
    padding-right: 48px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    width: 100%;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.6px;
}

.filter-dropdown-wrap .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none;
    background-color: transparent;
    background-image: url(../images/down-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 0;
    width: 24px;
    height: 24px;
    position: relative;
    top: auto;
    left: auto;
    transition: all 0.3s;
}

.filter-dropdown-wrap .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 50px;
    position: absolute;
    top: 1px;
    right: 16px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple,
.filter-dropdown-wrap .select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.filter-dropdown-wrap .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-radius: 26px !important;
}

.filter-dropdown-wrap .select2-container {
    width: auto !important;
    min-width: 220px;
}

.filter-dropdown-wrap .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    transform: rotate(-180deg);
}

body .select2-dropdown {
    margin-top: 20px;
    border-radius: 16px !important;
    background-color: rgba(33, 33, 33, 0.30) !important;
    padding: 5px 20px;
    border: 1px solid #595959 !important;
    font-size: 20px;
    line-height: 1.375;
    font-weight: 400;
    letter-spacing: 0.6px;
    backdrop-filter: blur(20px);
    opacity: 0;
    animation: select2-slide-up 0.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

body .select2-dropdown.select2-dropdown--above {
    animation: select2-slide-down 0.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

body .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: transparent;
    color: var(--text-teal);
}

body .select2-results__option {
    padding: 15px 0;
    background: transparent !important;
    border-bottom: 1px solid #fff;
    transition: all 0.3s;
}

body .select2-results__option:last-child {
    border-bottom: 0px !important;
}

/* body .select2-container--default .select2-results>.select2-results__options {
    max-height: 400px;
} */

body .select2-container--open .select2-dropdown--above {
    margin-top: -20px;
}

@keyframes select2-slide-up {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes select2-slide-down {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.top-left-box,
.bottom-right-box {
    position: absolute;
    width: 16px;
    height: 16px;
    color: var(--bg-marquee-bg);
}

.top-left-box {
    top: -1px;
    left: -15px;
}

.bottom-right-box {
    bottom: -15px;
    right: -0.8px;
}

.banner-section h1.text-116 {
    letter-spacing: -1.92px;
}

.current_page_item .nav-link {
    background-color: rgba(244, 244, 244, 0.10);
}

body .ginput_container_select .gfield_select {
    appearance: none !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("../images/icons/chevron-small-down.svg") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 24px !important;
}

body .gform-theme--framework .gfield:where(.gfield--type-multiselect, body .gfield--input-type-multiselect) .chosen-container-multi {
    border: none !important;
    background: transparent !important;
    outline: none !important;
}

body .gform-theme--framework .gfield:where(.gfield--type-multiselect, .gfield--input-type-multiselect) .chosen-container-multi .chosen-choices {
    width: 100%;
    background: var(--bg-marquee-bg) !important;
    color: var(--bs-white) !important;
    padding: 8px 22px !important;
    border-radius: 26px !important;
    font-size: 20px !important;
    border: 1px solid #fcfff9e6;
    font-weight: 400 !important;
    appearance: none !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(../images/down-arrow.svg) !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 24px !important;
    font-family: 'Manrope';
    height: 52px;
    line-height: 1.375;
    letter-spacing: 0.03em;
    outline: none !important;
    font-family: 'Manrope' !important;
}

body .gform-theme--framework .gfield:where(.gfield--type-multiselect, .gfield--input-type-multiselect) .chosen-container-multi .chosen-choices li .chosen-search-input {
    color: var(--bs-white) !important;
}

body .gform-theme--framework .gfield:where(.gfield--type-multiselect, .gfield--input-type-multiselect) .chosen-container .chosen-drop,
body .gform-theme--framework .gfield:where(.gfield--type-select, .gfield--input-type-select) .chosen-container .chosen-drop,
body .gform-theme--foundation .chosen-container .chosen-results li {
    background: #141515 !important;
    color: var(--bs-white) !important;
    --gf-ctrl-select-dropdown-option-shadow-hover: inset 3px 0 0 #00d5bb;
}

body .gform-theme--framework .gfield:where(.gfield--type-multiselect, .gfield--input-type-multiselect) .chosen-container-multi .chosen-choices li.search-choice {
    margin: 0px 0px 0 0;
    background-color: #00d5bb !important;
    color: #212121 !important;
}

body .gform-theme--framework .gfield:where(.gfield--type-multiselect, .gfield--input-type-multiselect) .chosen-container-multi .chosen-choices li.search-choice .search-choice-close::before {
    color: var(--gray-color) !important;
}


body .gform-theme--framework .gfield:where(.gfield--type-multiselect, .gfield--input-type-multiselect) .chosen-container-multi .chosen-choices .search-choice+li.search-field input[type=text].chosen-search-input {
    height: auto !important;
    min-height: 24px;
}

body .gform-theme--framework .gfield:where(.gfield--type-multiselect, .gfield--input-type-multiselect) .chosen-container-multi .chosen-choices li.search-field input[type=text].chosen-search-input {
    font-size: 20px;
    line-height: 1.375;
}

/* =========================================
   Gravity Forms - Select2 Multiselect
   Field: #field_1_19
   ========================================= */

/* Main Select2 container */
body .gform-theme--framework #field_1_19 .ginput_container_multiselect .select2-container {
    width: 100% !important;
}

/* Multiselect box */
body .gform-theme--framework #field_1_19 .select2-container--default .select2-selection--multiple {
    width: 100%;
    min-height: 52px !important;
    /* height: 52px; */

    background-color: var(--bg-marquee-bg) !important;
    color: var(--bs-white) !important;

    padding: 8px 50px 8px 22px !important;
    border-radius: 26px !important;
    border: 1px solid #fcfff9e6 !important;

    font-family: 'Manrope', sans-serif !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 1.375;
    letter-spacing: 0.03em;

    outline: none !important;
    box-shadow: none !important;

    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;

    background-image: url("../images/down-arrow.svg") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 24px !important;

    cursor: pointer;
}

/* Focus state */
body .gform-theme--framework #field_1_19 .select2-container--default.select2-container--focus .select2-selection--multiple,
body .gform-theme--framework #field_1_19 .select2-container--default.select2-container--open .select2-selection--multiple {
    border-color: #fcfff9e6 !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Selected items / tags */
body .gform-theme--framework #field_1_19 .select2-selection--multiple .select2-selection__choice {
    margin: 2px 4px 2px 0 !important;
    padding: 3px 30px 3px 10px !important;

    background-color: #00d5bb !important;
    border: none !important;
    border-radius: 18px !important;

    color: #212121 !important;

    font-family: 'Manrope', sans-serif !important;
    font-size: 16px !important;
    line-height: 1.375;
}

/* Remove button on selected tags */
body .gform-theme--framework #field_1_19 .select2-selection--multiple .select2-selection__choice__remove {
    color: var(--gray-color) !important;
    border: none !important;
    background: transparent !important;

    font-size: 18px !important;
    font-weight: 400 !important;

    right: 0px !important;
    left: auto !important;
    top: -4px;
    cursor: pointer;
}

/* Remove button hover */
body .gform-theme--framework #field_1_19 .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #212121 !important;
    background: transparent !important;
}

/* Search field inside multiselect */
body .gform-theme--framework #field_1_19 .select2-selection--multiple .select2-search--inline {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-flex;
    width: 400px;
}

ul.select2-input_1_19-container {
    display: inline-flex;
}

/* Select2 uses a textarea for the search field */
body .gform-theme--framework #field_1_19 .select2-selection--multiple .select2-search__field {
    min-height: 24px !important;
    height: 28px !important;

    margin: 0 !important;
    padding: 0 0 0 2px !important;

    color: var(--bs-white) !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;

    font-family: 'Manrope', sans-serif !important;
    font-size: 20px !important;
    line-height: 1.375;
    letter-spacing: 0.03em;
}

/* Search placeholder */
body .gform-theme--framework #field_1_19 .select2-selection--multiple .select2-search__field::placeholder {
    color: var(--bs-white) !important;
    opacity: 1;
}

/* =========================================
   Dropdown
   ========================================= */

body .gform-theme--framework .select2-container--default .select2-dropdown {
    background: #141515 !important;
    border: 1px solid #fcfff9e6 !important;
    border-radius: 0 0 16px 16px !important;
    overflow: hidden;
}

/* Dropdown options */
body .gform-theme--framework .select2-container--default .select2-results__option {
    background: #141515 !important;
    color: var(--bs-white) !important;

    padding: 12px 20px !important;

    font-family: 'Manrope', sans-serif !important;
    font-size: 18px !important;
    line-height: 1.375;
}

/* Hover / highlighted option */
body .gform-theme--framework .select2-container--default .select2-results__option--highlighted[aria-selected],
body .gform-theme--framework .select2-container--default .select2-results__option--highlighted[aria-selected="false"] {
    background: #141515 !important;
    color: var(--bs-white) !important;

    box-shadow: inset 3px 0 0 #00d5bb !important;
}

/* Selected option */
body .gform-theme--framework .select2-container--default .select2-results__option[aria-selected="true"] {
    background: #00d5bb !important;
    color: #212121 !important;
}

/* =========================================
   Original native select
   ========================================= */

body .gform-theme--framework #field_1_19 select.gfield_select.select2-hidden-accessible {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

div#field_1_19 .select2-selection__clear {
    display: none !important;
}

div#field_1_19 span.select2-search.select2-search--inline {
    display: none;
}

div#field_1_19 span.selection span.select2-selection {
    display: flex;
    align-items: center;
}

.page-template-default .page-top-section{
    /* padding-top: 41px; */
	padding-top: 140px;
}

#0e96fc23-192f-4f32-8026-b92e37a67b40-15{
    font-size: 100px;
}