@import url('../../../css2');
@import url('../../../css2-1');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --themeht-primary-color: #1253be;
    --themeht-secondary-color: #001d2d;
    --themeht-text-color: #000812;
    --themeht-body-color: #4f4f4f;
    --themeht-white-color: #FFFFFF;
    --themeht-bg-dark-color: #010101;
    --themeht-bg-light-color: #f6f7ff;
    --themeht-border-light-color: #E5E5E5;
    --themeht-rgba-color: rgba(255,255,255,0.9);
    --themeht-typography-body-font-family: "Inter", sans-serif;
    --themeht-typography-secondary-font-family: "Inter", sans-serif;
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    --purple: #6d2b7c;
    --purple-dark: #3a1a52;
    --purple-light: #f5edf7;
}

/* ------------------------
    General
------------------------*/
body {
    scroll-behavior: smooth;
    font-family: var(--themeht-typography-body-font-family);
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 30px;
    /* color: var(--themeht-body-color); */
    overflow-x: hidden;
}

.page-wrapper {
    /* overflow-x: hidden; */
}

/* ------------------------
    Typography
------------------------*/
h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", serif;
    font-weight: normal;
    margin-top: 0px;
    font-style: normal;
    margin-bottom: 20px;
    color: var(--themeht-text-color);
}

    h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
        color: inherit;
        font-family: "Playfair Display", serif;
    }

.h1, h1 {
    font-size: 70px;
    line-height: 80px;
    font-weight: 600;
}

.h2, h2 {
    font-size: 50px;
    line-height: 58px;
    font-weight: 600;
}

.h3, h3 {
    font-size: 30px;
    line-height: 38px;
    font-weight: 500;
}

.h4, h4 {
    font-size: 26px;
    line-height: 34px;
    font-weight: 500;
}

.h5, h5 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
}

.h6, h6 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
}

ul {
    margin-left: 0;
}

label {
    display: inline-block;
    color: var(--themeht-text-color);
    font-size: 16px;
    margin-bottom: 7px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1320px;
    }
}

/* ------------------------
    Helper class
------------------------*/
p {
    line-height: 1.7;
}

.lead {
    font-weight: normal;
    font-size: 17px;
    line-height: 30px;
}

.z-index-0 {
    z-index: 0;
    position: relative;
}

.z-index-1 {
    z-index: 1;
    position: relative;
}

section {
    padding: 40px 0;
    position: relative;
}

.rounded {
    border-radius: 24px !important;
}

.img-border {
    border: 10px solid var(--themeht-white-color);
}

/* ------------------------
    Text color
------------------------*/
.text-theme {
    color: var(--themeht-primary-color);
}

.text-black {
    color: var(--themeht-text-color) !important;
}

.text-grey {
    color: var(--themeht-body-color);
}

.text-muted {
    color: #979797 !important;
}

/* ------------------------
    Background color
------------------------*/
.white-bg {
    background-color: var(--themeht-white-color) !important;
}

.dark-bg {
    background-color: var(--themeht-bg-dark-color);
}

.light-bg {
    background-color: var(--themeht-bg-light-color);
}

.primary-bg {
    background-color: #3b1f3b;
}

.secondary-bg {
    background-color: var(--themeht-secondary-color);
}

.transparent-bg {
    background-color: inherit !important;
}

.border-light {
    border-color: var(--themeht-border-light-color) !important
}

/* ------------------------
    Banner
------------------------*/
[data-bg-img] {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.banner-slider {
    background-color: var(--themeht-bg-dark-color);
}

    .banner-slider .slider-img {
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        left: 0;
    }

.banner-content {
    padding: 200px 0;
    position: relative;
    z-index: 9;
}

.slider-img::before {
    position: absolute;
    content: '';
    background: linear-gradient(90deg, #ffffff 42%, #ffffff80 50%, rgb(255 255 255 / 0%) 60%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.80;
    z-index: 9;
}

.banner-slider .swiper-button-next, .banner-slider .swiper-button-prev {
    transform: scale(0);
    width: 50px;
    height: 50px;
    background-image: none !important;
    border-radius: 100%;
    line-height: inherit;
    background: var(--themeht-primary-color);
    border: none;
}

    .banner-slider .swiper-button-next:hover, .banner-slider .swiper-button-prev:hover {
        background: var(--themeht-bg-dark-color);
    }

    .banner-slider .swiper-button-next:after, .banner-slider .swiper-button-prev:after {
        font-size: 20px;
        color: var(--themeht-white-color);
        line-height: 50px !important;
    }

    .banner-slider .swiper-button-next:hover:after, .banner-slider .swiper-button-prev:hover:after {
        color: var(--themeht-white-color);
    }

.banner-slider:hover .swiper-button-next, .banner-slider:hover .swiper-button-prev {
    transform: scale(1);
}

.banner-slider.swiper:hover .swiper-button-prev {
    left: 10px;
}

.banner-slider.swiper:hover .swiper-button-next {
    right: 10px;
}

#banner-pagination {
    position: absolute !important;
    right: 150px;
    left: inherit;
    margin: 0;
    text-align: right;
    width: auto;
    bottom: 50px;
    font-size: 18px;
    color: var(--themeht-white-color);
}

.banner-slider .themeht-btn + .themeht-btn {
    margin-left: 20px;
}

.banner-slider h6 {
    position: relative;
    opacity: 0;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateY(80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
}

.banner-slider h1 {
    position: relative;
    opacity: 0;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateY(80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
}

.banner-slider p {
    position: relative;
    opacity: 0;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateY(80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
}

.banner-slider .btn-box {
    position: relative;
    opacity: 0;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateY(80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
}

.banner-slider .swiper-slide-active h6 {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    transition-delay: 500ms;
}

.banner-slider .swiper-slide-active h1 {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    transition-delay: 1000ms;
}

.banner-slider .swiper-slide-active p {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    transition-delay: 1500ms;
}

.banner-slider .swiper-slide-active .btn-box {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    transition-delay: 2000ms;
}

.banner-content {
    padding: 200px 0 200px 150px;
    position: relative;
    z-index: 9;
}

    .banner-content .banner-text {
        width: 50%;
    }

.banner-slider h1 {
    font-weight: 700;
    font-size: 100px;
    line-height: 110px;
    color: var(--themeht-primary-color);
}

    .banner-slider h1 span {
        font-weight: 600;
        color: var(--themeht-text-color);
        display: block;
    }

.banner-content p {
    max-width: 80%;
    margin: 0;
}

.banner-3 {
    padding: 50px 0;
}

    .banner-3 .banner-img {
        width: 700px;
        height: 700px;
        background-size: cover;
        clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
    }

    .banner-3 h6 {
        color: var(--themeht-text-color);
        border: 1px solid var(--themeht-border-light-color);
        display: inline-block;
        padding: 6px 12px 6px 6px;
        border-radius: 4px;
    }

        .banner-3 h6 span {
            background: var(--themeht-primary-color);
            display: inline-block;
            padding: 8px 14px;
            border-radius: 4px;
            font-size: 14px;
            line-height: 1;
            color: var(--themeht-white-color);
            margin-right: 10px;
        }

.banner-4 .slider-img::before {
    position: absolute;
    content: '';
    background: linear-gradient(90deg, var(--themeht-primary-color) 42%, #ffffff80 50%, rgb(255 255 255 / 0%) 60%);
    opacity: 1
}

.banner-4 h6, .banner-4 h1, .banner-4 h1 span, .banner-4 p {
    color: var(--themeht-white-color);
}

/* ------------------------
    Error
------------------------*/
.error-path {
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: dash 5s linear alternate infinite;
}

    .error-path path {
        stroke: var(--themeht-primary-color)
    }

        .error-path path:nth-child(2) {
            stroke: var(--themeht-primary-color)
        }

        .error-path path:nth-child(3) {
            stroke: var(--themeht-secondary-color)
        }

/* ------------------------
    Timeline
------------------------*/
.main-timeline:before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: var(--themeht-border-light-color);
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
}

.timeline_item {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}

.timeline-order-1 {
    order: 3;
}

.timeline-order-2 {
    order: 2;
    left: 20px;
}

.timeline-order-3 {
    order: 1;
}

.main-timeline .timeline-icon {
    width: 40px;
    height: 40px;
    position: relative;
    right: 20px;
    font-size: 30px;
    background: var(--themeht-white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--themeht-primary-color);
    border-radius: 50%;
    z-index: 9;
}

.main-timeline .date-content {
    width: 50%;
    position: relative;
}

    .main-timeline .date-content:before {
        content: "";
        width: 50%;
        height: 1px;
        background: var(--themeht-border-light-color);
        margin: auto 0;
        position: absolute;
        right: 10px;
        top: 0;
        bottom: 0;
    }

.main-timeline .timeline-order-1:before {
    content: "";
    width: 50%;
    height: 1px;
    background: var(--themeht-border-light-color);
    position: absolute;
    padding-right: 30px;
    margin-right: 50% !important;
}

.main-timeline .date {
    display: flex;
    line-height: 1;
    font-weight: 700;
    font-size: 30px;
    color: var(--themeht-white-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    align-items: center;
    justify-content: center;
    background: var(--themeht-primary-color);
    border-radius: 50%;
    width: 125px;
    height: 125px;
    z-index: 1;
}

.main-timeline .timeline-content {
    padding: 20px 20px;
}

@media (max-width: 640px) {
    .timeline {
        flex-direction: column !important;
    }

    .main-timeline:before {
        margin-left: 1px;
    }

    .main-timeline .timeline-icon {
        margin: auto 2px;
    }

    .main-timeline .timeline-content {
        padding: 40px 30px;
    }

    .timeline-order-1 {
        order: 2;
    }

    .timeline-order-2 {
        order: 1;
        left: -1em;
    }

    .timeline-order-3 {
        order: 3;
    }

    .timeline-order-1b {
        order: 2;
    }

    .timeline-order-2b {
        order: 1;
        left: -1em;
    }

    .timeline-order-3b {
        order: 3;
    }

    .main-timeline .timeline-order-1:before {
        width: 100%;
    }

    .main-timeline .timeline-order-1b:before {
        width: 100%;
    }

    .main-timeline .timeline-order-1b:before {
        content: "";
        width: 100%;
        height: 2px;
        background: var(--themeht-border-light-color);
        position: absolute;
        top: 0;
        padding-right: 30px;
        bottom: 0;
        margin-right: 50% !important;
    }

    .main-timeline .date {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 350px) {
    .timeline-icon {
        visibility: hidden;
    }

    .main-timeline .date-content:before {
        visibility: hidden;
    }

    .date-content {
        left: -15px;
    }
}

/* ------------------------
    Video
------------------------*/
.video-btn {
    display: flex;
    align-items: center;
}

.video-btn-icon {
    position: relative;
    display: inline-block;
    z-index: 9;
}

    .video-btn-icon > i {
        color: var(--themeht-primary-color);
        font-size: 30px;
    }

.video-btn span {
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: var(--themeht-text-color);
    margin-left: 10px;
    flex-shrink: 0
}

.video-btn.style-2 {
    position: relative;
    display: inline-block;
}

    .video-btn.style-2 .play-btn {
        animation: ripple-white 1s linear infinite;
        width: 70px;
        height: 70px;
        line-height: 70px;
        border-radius: 50%;
        cursor: pointer;
        display: inline-block;
        text-align: center;
        position: relative;
    }

        .video-btn.style-2 .play-btn i {
            font-size: 34px;
            line-height: 1;
            position: absolute;
            top: 50%;
            left: 50%;
            color: var(--themeht-white-color);
            -webkit-transition: 0.25s;
            -o-transition: 0.25s;
            transition: 0.2s ease-out !important;
            transform: translate3d(-50%, -50%, 0);
        }

/* ------------------------
    List Icon
------------------------*/
.list-icon.style-1 li {
    position: relative;
    display: flex;
    margin-bottom: 15px;
    align-items: center;
}

    .list-icon.style-1 li:last-child {
        margin-bottom: 0
    }

    .list-icon.style-1 li i {
        color: var(--themeht-primary-color);
        font-size: 20px;
        line-height: 1;
        margin-right: 10px;
        flex-shrink: 0;
    }

.list-icon.style-2 li {
    position: relative;
    display: flex;
    margin-bottom: 15px;
    align-items: center;
    line-height: 23px;
    color: #000;
    align-items: baseline;
    width: 100%;
    font-size: 14px;
    text-align: justify;
    gap: 10px;
}

    .list-icon.style-2 li:last-child {
        margin-bottom: 0
    }

    .list-icon.style-2 li i {
        color: #742575;
        font-size: 18px;
        line-height: 15px;
        margin-right: 3px;
    }

/* ------------------------
 Marquee Text
------------------------*/
.marquee-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: block;
    margin-bottom: 50px;
}

.marquee-text {
    animation: marquee 40s linear infinite;
    position: relative;
    width: 100%;
    white-space: nowrap;
}

    .marquee-text span {
        font-size: 150px;
        line-height: 150px;
        margin: 0 30px;
        font-weight: 800;
        text-transform: uppercase;
        color: #523952;
    }

        .marquee-text span:nth-child(2n+2) {
            color: var(--themeht-white-color);
            text-shadow: -1px -1px 0 var(--themeht-text-color), 1px -1px 0 var(--themeht-text-color), -1px 1px 0 var(--themeht-text-color), 1px 1px 0 var(--themeht-text-color);
        }

.marquee-wrap:before {
    position: absolute;
    right: 0;
    top: 0;
    width: 30%;
    height: 100%;
    content: "";
    z-index: 9;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 1%, rgba(255, 255, 255, 1) 98%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c4ef17', endColorstr='#c4ef17', GradientType=1);
}

.marquee-wrap:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 30%;
    height: 100%;
    content: "";
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 99%, rgba(255, 255, 255, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c4ef17', endColorstr='#c4ef17', GradientType=1);
}

/* ------------------------
    Countdown
------------------------*/
.countdown {
    margin: 50px 0;
    padding: 50px 0;
    display: table;
    width: 100%;
    border-top: 2px dashed var(--themeht-border-light-color);
    border-bottom: 2px dashed var(--themeht-border-light-color);
}

    .countdown > li {
        font-weight: 700;
        text-align: center;
        list-style-type: none;
        display: table-cell;
        width: auto;
    }

        .countdown > li span {
            font-size: 70px;
            font-weight: 700;
            line-height: 60px;
            display: inline-block;
        }

        .countdown > li p {
            font-size: 20px;
            display: inline-block;
            line-height: 30px;
            margin-bottom: 0;
            color: var(--themeht-text-color);
        }

.coming-soon .subscribe-form {
    margin: 0 auto;
}

/* ------------------------
 Shape & Animation
------------------------*/
.animated-icon-shape {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: -1;
}

.small-circle-animation {
    animation: small-animation 2s infinite linear;
    position: absolute;
    width: 60px;
}

.animated-icon-shape img:nth-child(1) {
    left: 6%;
    top: 60%;
}

.animated-icon-shape img:nth-child(2) {
    left: 0%;
    bottom: -985%;
    animation: small-animation2 2s infinite linear;
}

.animated-icon-shape img:nth-child(3) {
    right: 6%;
    top: 45%;
    animation: small-animation2 2s infinite linear;
}

.animated-icon-shape img:nth-child(4) {
    right: 5%;
    bottom: -550px;
}

.animated-icon-shape.style-2 img:nth-child(2) {
    left: auto;
    right: 2%;
    bottom: 20%;
}

#particles-js {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.link-about {
    border: 1px solid var(--themeht-border-light-color);
    border-radius: 4px;
    padding: 20px 30px 20px 20px;
}

    .link-about span {
        padding: 5px 15px;
        background-color: var(--themeht-bg-dark-color);
        border-radius: 4px;
        color: var(--themeht-white-color);
        margin-right: 10px
    }

    .link-about a {
        color: var(--themeht-primary-color);
        margin-left: 10px;
        font-weight: 700;
        text-decoration: underline !important;
    }

.testimonial-sec-bg {
    background-image: url("../images/bg/03.webp");
    background-position: 66% 87%;
    background-repeat: no-repeat;
    background-size: 1460px 1260px;
}

    .testimonial-sec-bg.style-2 {
        background-position: 96% 70%;
        background-size: 1170px 1260px;
    }

.sonar-wrapper {
    z-index: 0;
    position: absolute;
    right: 70px;
    bottom: 20%;
}

.sonar-emitter {
    position: relative;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 9999px;
    background-image: linear-gradient(to right, #fa709a 0%, #fee140 100%);
}

.sonar-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    background-image: linear-gradient(to right, #fa709a 0%, #fee140 100%);
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

.sonar-wave {
    animation: sonarWave 2s linear infinite;
}

.spinner {
    position: absolute;
    left: 100px;
    top: 30%;
}

    .spinner::after, .spinner::before {
        box-sizing: border-box;
        position: absolute;
        content: "";
        width: 50px;
        height: 50px;
        top: 50%;
        animation: up 2.4s cubic-bezier(0, 0, 0.24, 1.21) infinite;
        left: 50%;
        background: var(--themeht-primary-color);
    }

    .spinner::after {
        background: var(--themeht-secondary-color);
        top: calc(50% - 50px);
        left: calc(50% - 50px);
        animation: down 2.4s cubic-bezier(0, 0, 0.24, 1.21) infinite;
    }

.image-video-sec {
    padding: 400px 0 120px;
}

.bg-dark-gradient-overlay {
    position: relative;
    overflow: hidden;
    z-index: 9;
}

    .bg-dark-gradient-overlay:before {
        background: -webkit-gradient(linear, left bottom, left top, color-stop(7%, #141622), to(transparent));
        background: linear-gradient(to top, #141622 7%, transparent 100%);
        opacity: .75;
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        content: "";
        z-index: -1;
    }

.ht-first-letter::first-letter {
    font-size: 30px;
    line-height: 30px;
    padding: 8px;
    margin-top: 5px;
    border-radius: 5px;
    display: inline-block;
    float: left;
    font-weight: 700;
    margin-right: 8px;
    background: var(--themeht-primary-color);
    color: var(--themeht-white-color);
}

/* ------------------------
 Clients Logo
------------------------*/
.clients-logo {
    text-align: center;
    padding: 20px;
    border: solid #ccc 1px;
}

    .clients-logo img {
        width: 100px;
        /* -webkit-filter: contrast(0%); */
        /* filter: contrast(0%); */
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        -ms-transition: all 0.3s linear;
        transition: all 0.3s linear;
        cursor: pointer;
    }

    .clients-logo:hover img {
        -webkit-filter: none;
        filter: none;
        opacity: 1;
    }

.client-text {
    text-align: center;
    position: relative;
}

    .client-text:before {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        z-index: -1;
        background: var(--themeht-border-light-color);
        width: 70%;
        height: 1px;
    }

    .client-text span {
        background: var(--themeht-white-color);
        padding: 5px 40px;
    }

.client-swiper .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
    position: relative;
}

.client-swiper .swiper-slide {
    display: flex;
    align-items: center;
    width: auto !important;
    padding: 0 18px;
}

/* ------------------------
Extra
------------------------*/
.contact-info {
    padding: 30px;
}

    .contact-info li {
        padding-left: 50px;
        padding-top: 5px;
        position: relative;
        margin-bottom: 20px;
    }

        .contact-info li:last-child {
            margin-bottom: 0;
        }

        .contact-info li i {
            position: absolute;
            left: 0;
            top: 0;
            line-height: 50px;
            font-size: 36px;
            color: var(--themeht-primary-color);
            display: inline-block;
        }

        .contact-info li span {
            font-size: 12px;
            line-height: 1;
            color: var(--themeht-body-color);
            font-weight: 700;
            display: block;
            margin-bottom: 4px;
            text-transform: uppercase;
        }

        .contact-info li p {
            margin-bottom: 0;
            line-height: 24px;
            color: var(--themeht-text-color);
        }

        .contact-info li a {
            color: var(--themeht-text-color);
        }

            .contact-info li a:hover {
                color: var(--themeht-primary-color);
            }

.form-group {
    margin-bottom: 20px;
    position: relative;
}

label {
    font-size: 14px;
    line-height: 1;
    color: var(--themeht-text-color)
}

.form-control {
    height: 55px;
    border-radius: 4px;
    font-size: 14px;
    color: var(--themeht-text-color);
    background-color: var(--themeht-white-color);
    border: 1px solid var(--themeht-border-light-color);
}

textarea.form-control {
    height: 120px;
    border-radius: 4px;
}

.form-control:focus {
    box-shadow: none;
    background: none;
    border-color: var(--themeht-primary-color);
}

select.form-control {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    height: 55px !important;
    color: var(--themeht-body-color);
}

iframe {
    width: 100%;
    border: none;
    pointer-events: auto;
}

.iframe-h {
    height: 500px !important;
}

.iframe-h-2 {
    height: 600px !important;
}

.map iframe {
    border: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-filter: brightness( 100% ) contrast( 100% ) saturate( 50% ) blur( 0px ) hue-rotate( 0deg );
    -moz-filter: brightness( 100% ) contrast( 100% ) saturate( 50% ) blur( 0px ) hue-rotate( 0deg );
    -ms-filter: brightness( 100% ) contrast( 100% ) saturate( 50% ) blur( 0px ) hue-rotate( 0deg );
    -o-filter: brightness( 100% ) contrast( 100% ) saturate( 50% ) blur( 0px ) hue-rotate( 0deg );
    filter: brightness( 100% ) contrast( 100% ) saturate( 50% ) blur( 0px ) hue-rotate( 0deg );
}

.help-block.with-errors {
    position: absolute;
    color: red;
    right: 15px;
    font-size: 10px;
    line-height: 14px;
}

.form-control::-webkit-input-placeholder {
    color: var(--themeht-body-color);
}

.form-control::-moz-placeholder {
    color: var(--themeht-body-color);
}

.form-control:-ms-input-placeholder {
    color: var(--themeht-body-color);
}

.form-control:-moz-placeholder {
    color: var(--themeht-body-color);
}

.service-section::before {
    content: "";
    position: absolute;
    left: 10%;
    right: auto;
    top: 0;
    width: 80%;
    height: 100%;
    background: var(--themeht-bg-light-color);
    margin: 0 auto;
    z-index: -1;
    border-radius: 24px;
}

.about-img-shape {
    width: 550px;
    height: 550px;
    background-size: cover;
    clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
}

.about-img-shape-small {
    width: 200px;
    height: 200px;
    background-size: cover;
    clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
    position: absolute;
    right: -2%;
    bottom: 5%;
}

.about-counter {
    background-color: var(--themeht-primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 200px;
    height: 200px;
    background-size: cover;
    clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%);
}

    .about-counter .counter {
        padding: 0 50px
    }

        .about-counter .counter span {
            font-size: 40px;
            font-weight: 700;
            line-height: 40px;
            color: var(--themeht-white-color);
            display: inline-block;
        }

        .about-counter .counter h6 {
            color: var(--themeht-white-color);
            margin: 5px 0 0;
            font-weight: 600;
            font-size: 16px;
            line-height: 22px;
        }

.working-hours-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0 9px;
    position: relative;
}

.primary-bg .working-hours-item {
    color: var(--themeht-white-color);
}

.about1-img-shape {
    clip-path: polygon(45% 1.33975%, 46.5798% 0.60307%, 48.26352% 0.15192%, 50% 0%, 51.73648% 0.15192%, 53.4202% 0.60307%, 55% 1.33975%, 89.64102% 21.33975%, 91.06889% 22.33956%, 92.30146% 23.57212%, 93.30127% 25%, 94.03794% 26.5798%, 94.48909% 28.26352%, 94.64102% 30%, 94.64102% 70%, 94.48909% 71.73648%, 94.03794% 73.4202%, 93.30127% 75%, 92.30146% 76.42788%, 91.06889% 77.66044%, 89.64102% 78.66025%, 55% 98.66025%, 53.4202% 99.39693%, 51.73648% 99.84808%, 50% 100%, 48.26352% 99.84808%, 46.5798% 99.39693%, 45% 98.66025%, 10.35898% 78.66025%, 8.93111% 77.66044%, 7.69854% 76.42788%, 6.69873% 75%, 5.96206% 73.4202%, 5.51091% 71.73648%, 5.35898% 70%, 5.35898% 30%, 5.51091% 28.26352%, 5.96206% 26.5798%, 6.69873% 25%, 7.69854% 23.57212%, 8.93111% 22.33956%, 10.35898% 21.33975%)
}


.heading-inner {
}

    .heading-inner h2 .accent {
        color: #d4af7a;
        font-style: italic;
    }

/* Eyebrow label with flanking lines */
.eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 0px;
}

.eyebrow-line {
    width: 34px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af7a);
}

    .eyebrow-line.right {
        background: linear-gradient(90deg, #d4af7a, transparent);
    }

.eyebrow span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #d4af7a;
    text-transform: uppercase;
}

/* Main heading */
.heading-inner h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 46px;
    line-height: 1.25;
    color: #ffffff;
    margin: 0 0 22px;
    text-align: center;
}

    .heading-inner h2 .accent {
        color: #d4af7a;
        font-style: italic;
    }

/* small ornamental divider under heading */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

    .ornament .dash {
        width: 46px;
        height: 2px;
        background: #d4af7a;
        border-radius: 2px;
    }

    .ornament svg {
        width: 16px;
        height: 16px;
        fill: #d4af7a;
    }

/* subtitle line */
.heading-inner p.sub {
    margin-top: 22px;
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin: 0 auto;
    margin-top: 15px;
    margin-bottom: 30px;
}

@media (max-width: 640px) {
    .heading-section {
        padding: 50px 18px 44px;
    }

    .heading-inner h2 {
        font-size: 30px;
    }

    .eyebrow-line {
        width: 20px;
    }
}



/* ---------- Core slider (works for ANY number of instances) ---------- */
.sds-slider {
    position: relative;
}

.sds-viewport {
    overflow: hidden;
    border-radius: 15px;
}

.sds-track {
    display: flex;
    gap: 22px;
    will-change: transform;
    transition: transform .55s cubic-bezier(.22,.68,.15,1);
    touch-action: pan-y;
    /* overflow: hidden; */
}

.sds-card {
    flex: 0 0 auto;
    width: 100%;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    color: var(--ink);
    position: relative;
    isolation: isolate;
    transition: transform .45s cubic-bezier(.22,.68,.15,1), box-shadow .45s ease;
}

    .sds-card::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        padding: 1.5px;
        background: linear-gradient(135deg, var(--gold), transparent 40%, var(--plum-accent) 100%);
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: opacity .4s ease;
        pointer-events: none;
        z-index: 2;
    }

    .sds-card:hover,
    .sds-card:focus-within {
        transform: translateY(-10px) scale(1.015);
        box-shadow: var(--shadow-hover);
        border-radius: 15px;
        overflow: hidden;
    }

        .sds-card:hover::after,
        .sds-card:focus-within::after {
            opacity: 1;
        }

.sds-card-media {
    position: relative;
    /* aspect-ratio: 4 / 3; */
    overflow: hidden;
    /* background: linear-gradient(135deg, var(--plum-800), var(--plum-accent)); */
    /* border-radius: 15px; */
}

    .sds-card-media .sds-icon {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 56px;
        color: rgba(255,255,255,.92);
        transform: scale(1);
        transition: transform .6s cubic-bezier(.22,.68,.15,1);
    }

.sds-card:hover .sds-icon {
    transform: scale(1.12) rotate(-3deg);
}

.sds-card-media .sds-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(20,6,16,.55);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .02em;
    padding: 5px 10px;
    border-radius: 999px;
    z-index: 3;
}

.sds-card-body {
    padding: 15px 22px 24px;
}

    .sds-card-body h3 {
        font-family: "Playfair Display", serif;
        font-weight: 700;
        font-size: 22px;
        margin: 0 0 10px;
        text-align: center;
        color: #421142;
        line-height: 33px;
    }

    .sds-card-body p {
        font-size: 13.8px;
        line-height: 1.6;
        color: var(--ink-soft);
        margin: 0 0 16px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-align: center;
    }

.sds-readmore {
    display: table;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 400;
    color: #fff !IMPORTANT;
    text-decoration: none;
    letter-spacing: .02em;
    margin: 0 auto;
    background: #381f39;
    padding: 0px 12px;
    text-transform: uppercase;
}

    .sds-readmore:hover {
        background: #000;
        color: #fff;
    }

    .sds-readmore svg {
        width: 15px;
        height: 15px;
        transition: transform .3s cubic-bezier(.22,.68,.15,1);
    }

.sds-card:hover .sds-readmore svg {
    transform: translateX(5px);
}

/* ---------- Nav buttons ---------- */
.sds-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: rgba(20,6,16,.55);
    backdrop-filter: blur(8px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background .3s ease, transform .3s ease, border-color .3s ease;
}

    .sds-nav:hover {
        background: #fff;
        border-color: #fff;
        color: #2a0a22;
        transform: translateY(-50%) scale(1.08);
    }

    .sds-nav:active {
        transform: translateY(-50%) scale(.95);
    }

    .sds-nav svg {
        width: 20px;
        height: 20px;
    }

.sds-prev {
    left: -8px;
}

.sds-next {
    right: -8px;
}

.sds-nav[disabled] {
    opacity: .35;
    cursor: not-allowed;
}

    .sds-nav[disabled]:hover {
        background: rgba(20,6,16,.55);
        color: #fff;
        transform: translateY(-50%);
    }

@media (min-width:760px) {
    .sds-prev {
        left: -22px;
    }

    .sds-next {
        right: -22px;
    }
}

/* ---------- Dots ---------- */
.sds-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.sds-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.28);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .3s ease, width .3s ease;
}

    .sds-dot.is-active {
        background: #ffffff;
        width: 22px;
        border-radius: 5px;
    }

/* ---------- Responsive: cards per view ---------- */
.sds-card {
    width: calc(100% - 0px);
}
/* mobile: 1 */
@media (min-width:620px) {
    .sds-card {
        width: calc((100% - 22px)/2);
    }
    /* small tablet: 2 */
}

@media (min-width:920px) {
    .sds-card {
        width: calc((100% - 44px)/3);
    }
    /* tablet/small desktop: 3 */
}

@media (min-width:1220px) {
    .sds-card {
        width: calc((100% - 66px)/4);
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
    }
    /* desktop: 4 */
}

.sds-slider[data-per-view="2"] .sds-card {
    width: calc(100% - 0px);
}

@media (min-width:620px) {
    .sds-slider[data-per-view="2"] .sds-card {
        width: calc((100% - 22px)/2);
    }
}

a, button {
    font-family: inherit;
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}


.ourteam-section {
    --ink: #0d1016;
    --panel: #171b22;
    --panel-edge: rgba(244,242,237,0.09);
    --paper: #f4f2ed;
    --muted: #8b93a1;
    --amber: #f2a93b;
    --teal: #58d8c9;
    background: var(--ink);
    color: var(--paper);
    font-family: 'Inter', sans-serif;
    padding: clamp(43px, 2vw, 96px) clamp(18px, 4vw, 61px);
    overflow: hidden;
    position: relative;
}

:root {
    --page: #f6f5f0;
    --panel: #edefe9;
    --line: rgba(28,33,40,0.09);
    --paper: #ffffff;
    --paper-field: #ffffff;
    --paper-edge: #e2e4dd;
    --text: #1b2027;
    --muted: #6b7280;
    --ink-text: #1c2128;
    --ink-muted: #6b7280;
    --accent: #1f9d74;
    --accent-dark: #157a5b;
    --accent-soft: rgba(31,157,116,0.12);
    --warn: #e2984a;
}

.ourteam-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(242,169,59,0.10), transparent 65%);
    pointer-events: none;
}

.ourteam-header {
    max-width: auto;
    margin-bottom: clamp(36px, 6vw, 64px);
    opacity: 0;
    animation: ourteam-rise 0.8s cubic-bezier(.19,1,.22,1) 0.1s forwards;
    text-align: center;
    margin: 0 auto;
}

.ourteam-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--teal);
    font-size: 0.85rem;
    margin-bottom: 16px;
    font-weight: 500;
    justify-content: center;
}

    .ourteam-eyebrow::before {
        content: "";
        width: 22px;
        height: 1px;
        background: var(--teal);
    }

.ourteam-title {
    /* font-family: 'Fraunces', serif; */
    font-weight: 560;
    font-size: clamp(2.1rem, 4.6vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin: 0 0 18px;
    justify-content: center;
    color: #fff;
}

    .ourteam-title em {
        font-style: italic;
        font-weight: 500;
        color: var(--amber);
    }

.ourteam-lede {
    color: var(--muted);
    font-size: clamp(0.98rem, 1.4vw, 1.08rem);
    line-height: 1.65;
    max-width: 100%;
}

/* ---------- Carousel shell ---------- */

.ourteam-stage {
    position: relative;
    opacity: 0;
    animation: ourteam-rise 0.8s cubic-bezier(.19,1,.22,1) 0.28s forwards;
}

.ourteam-viewport {
    overflow: hidden;
    padding: 20px 0 10px;
}

.ourteam-track {
    display: flex;
    align-items: stretch;
    gap: clamp(16px, 2.4vw, 28px);
    list-style: none;
    margin: 0;
    padding: 0;
    will-change: transform;
}

/* ---------- Each team member item (plain HTML) ---------- */

.ourteam-item {
    flex: 0 0 auto;
    width: min(78vw, 300px);
    background: var(--panel);
    border: 1px solid var(--panel-edge);
    border-radius: 18px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: scale(0.9);
    opacity: 0.42;
    filter: saturate(0.7);
    transition: transform 0.62s cubic-bezier(.22,1,.36,1), opacity 0.62s cubic-bezier(.22,1,.36,1), filter 0.62s cubic-bezier(.22,1,.36,1);
}

    .ourteam-item.is-active {
        transform: scale(1);
        opacity: 1;
        filter: saturate(1);
        box-shadow: 0 24px 60px -20px rgba(0,0,0,0.55);
    }

.ourteam-portrait {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 4.6;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

    .ourteam-portrait::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(13,16,22,0) 40%, rgba(13,16,22,0.7) 100%);
    }

.ourteam-initials {
    position: relative;
    z-index: 1;
    font-family: 'Fraunces', serif;
    font-weight: 650;
    font-size: 2rem;
    color: #fff;
    margin: 0 0 14px 14px;
}

.ourteam-role-chip {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    background: rgba(13,16,22,0.5);
    backdrop-filter: blur(6px);
    color: var(--paper);
    font-size: 0.72rem;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(244,242,237,0.18);
}

.ourteam-name {
    /* font-family: 'Fraunces', serif; */
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    color: #fff;
    /* font-family: 'Playfair Display', Georgia, serif; */
    line-height: normal;
}

.ourteam-role {
    color: var(--amber);
    font-size: 0.86rem;
    margin: -10px 0 0;
}

.ourteam-bio {
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.55;
    margin: 0;
}

.ourteam-links {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 4px;
}

    .ourteam-links a {
        color: var(--muted);
        font-size: 0.78rem;
        text-decoration: none;
        border-bottom: 1px solid transparent;
        transition: color 0.2s ease, border-color 0.2s ease;
    }

        .ourteam-links a:hover {
            color: var(--teal);
            border-color: var(--teal);
        }

/* ---------- Controls ---------- */

.ourteam-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: clamp(24px, 4vw, 36px);
}

.ourteam-nav {
    display: flex;
    gap: 10px;
}

.ourteam-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--panel-edge);
    background: var(--panel);
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(.22,1,.36,1), background 0.25s ease, border-color 0.25s ease;
}

    .ourteam-btn:hover {
        background: var(--amber);
        border-color: var(--amber);
        color: var(--ink);
        transform: translateY(-2px);
    }

    .ourteam-btn:active {
        transform: translateY(0) scale(0.94);
    }

    .ourteam-btn:focus-visible {
        outline: 2px solid var(--teal);
        outline-offset: 3px;
    }

    .ourteam-btn svg {
        width: 18px;
        height: 18px;
    }

.ourteam-progress {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 320px;
}

.ourteam-track-bar {
    position: relative;
    flex: 1;
    height: 2px;
    background: var(--panel-edge);
    border-radius: 2px;
    overflow: hidden;
}

.ourteam-track-fill {
    position: absolute;
    inset: 0;
    width: 0%;
    background: linear-gradient(90deg, var(--teal), var(--amber));
    transition: width 0.5s cubic-bezier(.22,1,.36,1);
}

.ourteam-count {
    font-size: 0.78rem;
    color: var(--muted);
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

@keyframes ourteam-rise {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ourteam-header, .ourteam-stage {
        animation: none;
        opacity: 1;
    }

    .ourteam-track, .ourteam-item, .ourteam-btn, .ourteam-track-fill {
        transition: none;
    }
}

/* ---------- Responsive ---------- */

@media (min-width: 640px) {
    .ourteam-item {
        width: 260px;
    }
}

@media (min-width: 900px) {
    .ourteam-item {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .ourteam-controls {
        flex-wrap: wrap;
    }

    .ourteam-progress {
        order: 3;
        max-width: 100%;
    }
}


.cform-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 960px) {
    .cform-page {
        grid-template-columns: 1fr 0.92fr;
    }
}

/* ---------- Left: context panel ---------- */

/* ---------- Right: FAQ panel ---------- */

.cform-faq {
    position: relative;
    background: #edefe9;
    padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    border-top: 1px solid var(--line);
    color: var(--text);
}

@media (min-width: 960px) {
    .cform-faq {
        border-top: none;
        border-left: 1px solid var(--line);
    }
}

.cform-faq-art {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    pointer-events: none;
}

.cform-faq-content {
    position: relative;
    z-index: 1;
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
    opacity: 0;
    animation: cform-rise 0.75s cubic-bezier(.19,1,.22,1) 0.08s forwards;
}

.cform-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 22px;
}

    .cform-tag::before {
        content: "";
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px rgba(31,157,116,0.16);
    }

.cform-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: clamp(1.7rem, 2.8vw, 2.2rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 14px;
}

    .cform-heading span {
        color: var(--accent);
    }

.cform-sub {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.6;
    max-width: 44ch;
    margin: 0 0 32px;
}

/* ---------- FAQ accordion ---------- */

.cform-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cform-faq-item {
    background: var(--paper);
    border: 1px solid var(--paper-edge);
    border-radius: 14px;
    overflow: hidden;
}

.cform-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: none;
    border: none;
    text-align: left;
    padding: 15px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--ink-text);
    cursor: pointer;
}

    .cform-faq-q .cform-chevron {
        width: 16px;
        height: 16px;
        color: var(--ink-muted);
        flex-shrink: 0;
        transition: transform 0.25s cubic-bezier(.22,1,.36,1);
    }

.cform-faq-item.is-open .cform-faq-q .cform-chevron {
    transform: rotate(180deg);
}

.cform-faq-item.is-open .cform-faq-q {
    color: var(--accent-dark);
}

.cform-faq-a-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.32s cubic-bezier(.22,1,.36,1);
}

.cform-faq-item.is-open .cform-faq-a-wrap {
    grid-template-rows: 1fr;
}

.cform-faq-a-inner {
    overflow: hidden;
}

.cform-faq-a {
    margin: 0;
    padding: 0 18px 16px;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ---------- Right: form panel ---------- */

.cform-formside {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(29px, 5vw, 64px);
}

.cform-card {
    width: 100%;
    max-width: 670px;
    background: var(--paper);
    border: 1px solid var(--paper-edge);
    border-radius: 22px;
    padding: clamp(26px, 4vw, 40px);
    box-shadow: 0 30px 60px -34px rgba(28,33,40,0.18);
    opacity: 0;
    animation: cform-rise 0.75s cubic-bezier(.19,1,.22,1) 0.2s forwards;
}

.cform-card-title {
    /* font-family: 'Space Grotesk', sans-serif; */
    color: var(--ink-text);
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 4px;
    font-family: 'Playfair Display', Georgia,;
    font-family: 'Playfair Display', Georgia,;
    font-family: 'Playfair Display', Georgia, serif;
}

.cform-card-note {
    color: var(--ink-muted);
    font-size: 0.88rem;
    margin: 0 0 26px;
}

.cform-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

@media (min-width: 480px) {
    .cform-row.cform-row-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.cform-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .cform-field label {
        font-size: 0.8rem;
        color: var(--ink-muted);
        font-weight: 500;
    }

    .cform-field input,
    .cform-field textarea {
        font-family: 'Inter', sans-serif;
        font-size: 0.94rem;
        color: var(--ink-text);
        background: var(--paper-field);
        border: 1.5px solid var(--paper-edge);
        border-radius: 12px;
        padding: 13px 15px;
        outline: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
        width: 100%;
    }

    .cform-field textarea {
        resize: vertical;
        min-height: 96px;
        line-height: 1.55;
        font-family: 'Inter', sans-serif;
    }

        .cform-field input:focus,
        .cform-field textarea:focus,
        .cform-select-trigger:focus-visible {
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(31,157,116,0.14);
        }

        .cform-field input::placeholder,
        .cform-field textarea::placeholder {
            color: #aab1bb;
        }

/* ---------- Custom multi-select ---------- */

.cform-select {
    position: relative;
}

.cform-select-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: var(--paper-field);
    border: 1.5px solid var(--paper-edge);
    border-radius: 12px;
    padding: 13px 15px;
    font-family: 'Inter', sans-serif;
    font-size: 0.94rem;
    color: var(--ink-text);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cform-select.is-open .cform-select-trigger {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(31,157,116,0.14);
}

.cform-select-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cform-count-badge {
    display: none;
    background: var(--accent);
    color: #063b2b;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 999px;
}

    .cform-count-badge.is-visible {
        display: inline-flex;
    }

.cform-chevron {
    width: 16px;
    height: 16px;
    color: var(--ink-muted);
    transition: transform 0.25s cubic-bezier(.22,1,.36,1);
    flex-shrink: 0;
}

.cform-select.is-open .cform-chevron {
    transform: rotate(180deg);
}

.cform-select-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    background: var(--paper-field);
    border: 1.5px solid var(--paper-edge);
    border-radius: 14px;
    box-shadow: 0 20px 44px -14px rgba(12,16,21,0.28);
    overflow: hidden;
    z-index: 20;
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.2s cubic-bezier(.22,1,.36,1), transform 0.2s cubic-bezier(.22,1,.36,1);
}

.cform-select.is-open .cform-select-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.cform-select-all {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ink-text);
    background: #f1efe7;
    border-bottom: 1px solid var(--paper-edge);
    cursor: pointer;
}

.cform-option-list {
    max-height: 208px;
    overflow-y: auto;
}

.cform-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 15px;
    font-size: 0.9rem;
    color: var(--ink-text);
    cursor: pointer;
    border-bottom: 1px solid #f0eee6;
    transition: background 0.15s ease;
}

    .cform-option:last-child {
        border-bottom: none;
    }

    .cform-option:hover, .cform-select-all:hover {
        background: #f6f4ec;
    }

    .cform-option input,
    .cform-select-all input {
        width: 16px;
        height: 16px;
        accent-color: var(--accent-dark);
        cursor: pointer;
    }

/* ---------- Submit ---------- */

.cform-submit-row {
    margin-top: 22px;
}

.cform-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: linear-gradient(135deg, #000000, #000000);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.98rem;
    border: none;
    border-radius: 12px;
    padding: 15px 20px;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(.22,1,.36,1), box-shadow 0.2s ease;
}

    .cform-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 26px -12px rgba(21,122,91,0.35);
    }

    .cform-submit:active {
        transform: translateY(0);
    }

    .cform-submit svg {
        width: 17px;
        height: 17px;
        transition: transform 0.3s cubic-bezier(.22,1,.36,1);
    }

    .cform-submit:hover svg {
        transform: translateX(3px);
    }

    .cform-submit.is-sending {
        opacity: 0.85;
        cursor: progress;
    }

    .cform-submit.is-sent {
        background: linear-gradient(135deg, #2fbf8f, #1c8f6c);
    }

.cform-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(6,41,29,0.3);
    border-top-color: #06291d;
    border-radius: 50%;
    animation: cform-spin 0.7s linear infinite;
    display: none;
}

.cform-submit.is-sending .cform-spinner {
    display: inline-block;
}

.cform-submit.is-sending .cform-arrow {
    display: none;
}

.cform-form-note {
    text-align: center;
    color: var(--ink-muted);
    font-size: 0.78rem;
    margin-top: 12px;
}

@keyframes cform-rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cform-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .cform-intro-content, .cform-card {
        animation: none;
        opacity: 1;
    }

    .cform-select-panel, .cform-submit, .cform-chevron {
        transition: none;
    }
}


.principals-section {
    padding: 25px 5%;
    max-width: 1500px;
    margin: auto;
}

/* Heading */
.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.heading-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

    .heading-line span {
        width: 55px;
        height: 3px;
        background: linear-gradient(90deg, #6734e8, #d316c8);
        display: block;
        background: linear-gradient(90deg, transparent, #742575);
    }

.section-heading h2 {
    font-size: 54px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #17253d;
    font-family: 'Playfair Display', Georgia, serif;
}

    .section-heading h2 strong {
        color: #742575;
    }

.section-heading p {
    max-width: 750px;
    margin: 0px auto 0;
    color: #1a2536;
    font-size: 19px;
    line-height: 29px;
    font-weight: 300;
}

/* Grid */
.principals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

/* Card */
.principal-card {
    position: relative;
    overflow: hidden;
    min-height: 160px;
    padding: 30px;
    border-radius: 18px;
    /* display: flex; */
    /* align-items: center; */
    gap: 21px;
    background: #034c91;
    box-shadow: 0 15px 35px rgba(75, 29, 150, 0.18);
    transition: all 0.35s ease;
    text-align: center;
    /* margin: 0 auto; */
}

    .principal-card:nth-child(2) {
        /* background: linear-gradient( 120deg, #4c249d, #8b22bb, #b923c7 ); */
    }

    .principal-card:nth-child(3) {
        /* background: linear-gradient( 120deg, #4d22a5, #7433d2, #973be1 ); */
    }

    .principal-card:nth-child(4) {
        /* background: linear-gradient( 120deg, #421b91, #5b20bd, #7828d4 ); */
    }

    .principal-card::before {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        right: -100px;
        bottom: -190px;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
    }

    .principal-card::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        left: -100px;
        top: -100px;
        border-radius: 50%;
        background: rgba(255,255,255,0.05);
    }

    .principal-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 22px 45px rgba(75, 29, 150, 0.28);
    }

/* Logo */
.logo-box {
    position: relative;
    z-index: 2;
    width: 124px;
    min-width: 170px;
    /* height: 135px; */
    border-radius: 20px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: center;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
}

    .logo-box img {
        /* max-width: 100%; */
        /* max-height: 90px; */
        /* object-fit: contain; */
        width: 100%;
        border-radius: 20px;
    }

/* Demo logo text */
.logo-text {
    font-size: 25px;
    font-weight: 700;
    color: #25385c;
    text-align: center;
}

/* Divider */
.divider {
    position: relative;
    z-index: 2;
    width: 1px;
    height: 105px;
    background: rgba(255,255,255,0.55);
    display: none;
}

/* Content */
.principal-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

    .principal-content h3 {
        font-size: 23px;
        line-height: 1.25;
        margin-bottom: 0;
        font-weight: 700;
        color: #fff;
        margin: 0;
        padding: 0;
    }

        .principal-content h3 a {
            color: #fff;
        }

    .principal-content .sub-title {
        font-size: 17px;
        margin-bottom: 20px;
        color: rgba(255,255,255,0.92);
    }

.website {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff !IMPORTANT;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.3s ease;
}

    .website:hover {
        /* opacity: 0.75; */
        color: #000000;
    }

.globe {
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    border-radius: 50%;
    position: relative;
}

    .globe::before {
        content: "";
        position: absolute;
        left: 3px;
        right: 3px;
        top: 9px;
        border-top: 1px solid #fff;
    }

    .globe::after {
        content: "";
        position: absolute;
        left: 9px;
        top: 1px;
        width: 3px;
        height: 17px;
        border-left: 1px solid #fff;
        border-right: 1px solid #fff;
        border-radius: 50%;
    }

/* Tablet */
@media (max-width: 1000px) {

    .principals-section {
        padding: 60px 30px;
    }

    .section-heading h2 {
        font-size: 42px;
    }

    .principal-card {
        padding: 30px;
        gap: 25px;
    }

    .logo-box {
        width: 160px;
        min-width: 160px;
        height: 115px;
    }

    .principal-content h3 {
        font-size: 23px;
    }
}

/* Mobile */
@media (max-width: 700px) {

    .principals-section {
        padding: 50px 20px;
    }

    .heading-line {
        gap: 15px;
    }

        .heading-line span {
            width: 35px;
        }

    .section-heading h2 {
        font-size: 34px;
    }

    .section-heading p {
        font-size: 15px;
    }

    .principals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .principal-card {
        flex-direction: column;
        align-items: stretch;
        padding: 25px;
        gap: 20px;
    }

    .logo-box {
        width: 100%;
        min-width: 0;
        height: 120px;
    }

    .divider {
        width: 100%;
        height: 1px;
    }

    .principal-content h3 {
        font-size: 22px;
    }

    .principal-content .sub-title {
        font-size: 15px;
    }

    .website {
        font-size: 15px;
        word-break: break-word;
    }
}


.apps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 22px;
}

.app {
    min-height: 72px;
    border-radius: 17px;
    background: linear-gradient(100deg,#f7f0fa,#fff);
    border: 1px solid #ead7ef;
    box-shadow: 0 8px 20px rgba(74,30,88,.07);
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 18px 10px 8px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

    .app:hover {
        transform: translateY(-5px) translateX(3px);
        box-shadow: 0 15px 30px rgba(82, 28, 99, .18);
        border-color: #c28dca;
        background: linear-gradient(100deg, #f1e5f5, #fff);
    }

    .app:after {
        content: "";
        position: absolute;
        right: -8px;
        top: 0;
        height: 100%;
        width: 24px;
        background: linear-gradient(135deg,transparent 0 35%,#d6a6df 36% 60%,transparent 61%);
        opacity: .9;
    }

.icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 25px;
    background: linear-gradient(145deg, #232b8d, #321d67);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 9px 17px rgba(64,26,84,.24);
    font-size: 21px;
}

    .icon svg {
        width: 31px;
        height: 31px;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.9
    }

.app b {
    font-size: 16px;
    line-height: 1.35;
    max-width: 230px;
}

.visual {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.lab-photo {
    width: 410px;
    height: 220px;
    border-radius: 130px 130px 40px 40px;
    overflow: hidden;
    position: relative;
    border: 2px solid #7d2387;
    box-shadow: 0 15px 35px rgba(67,27,86,.16);
    background: radial-gradient(circle at 65% 40%,rgba(255,255,255,.9),transparent 11%), linear-gradient(120deg,#e7d7ed,#b18ac2 48%,#f6f1f7);
}

    .lab-photo:before {
        content: "";
        position: absolute;
        left: 55%;
        top: 15%;
        width: 85px;
        height: 85px;
        border: 7px solid rgba(63,35,81,.8);
        border-radius: 8px;
        transform: rotate(12deg);
        box-shadow: -72px 48px 0 -18px #fff, -72px 48px 0 -12px rgba(58,30,75,.55);
    }

    .lab-photo:after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 18px;
        width: 370px;
        height: 95px;
        background: radial-gradient(ellipse at 20% 50%,#4c9c46 0 5%,transparent 6%), radial-gradient(ellipse at 40% 45%,#6eaa48 0 5%,transparent 6%), radial-gradient(ellipse at 60% 55%,#e2a54b 0 6%,transparent 7%), radial-gradient(ellipse at 75% 42%,#d55c4b 0 7%,transparent 8%);
        filter: blur(.2px);
    }

.right {
    padding-left: 5px
}

.pill {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    background: #71217e;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 15px;
}

.right h1 {
    font-size: 60px;
    margin-bottom: 25px
}

.rule {
    width: 65px;
    height: 3px;
    background: #7d2387;
    margin-bottom: 30px
}

.copy {
    font-size: 18px;
    line-height: 1.55;
    color: #1d2940;
    margin: 0 0 24px;
    max-width: 800px
}

    .copy strong {
        font-weight: 800
    }

.stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat {
    text-align: center;
    min-height: 145px;
    padding: 10px 10px 18px;
    position: relative;
}

    .stat:not(:last-child):after {
        content: "";
        position: absolute;
        right: -10px;
        top: 35px;
        height: 95px;
        width: 1px;
        background: #d8b8e0;
    }

.stat-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg,#8c2b90,#173f72);
    box-shadow: 0 9px 18px rgba(53,31,79,.22);
}

    .stat-icon svg {
        width: 34px;
        height: 34px;
        stroke: #fff;
        fill: none;
        stroke-width: 1.8
    }

.num {
    font-size: 34px;
    font-weight: 800;
    color: #7d2387;
    line-height: 1
}

.label {
    font-size: 15px;
    margin-top: 10px;
    color: #18213b;
    line-height: 1.3
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    margin-top: 18px;
    padding: 17px 28px;
    border-radius: 5px;
    background: #7d2387;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 10px 22px rgba(101,31,110,.2);
}

.world {
    position: absolute;
    right: -10px;
    top: -15px;
    width: 420px;
    height: 220px;
    opacity: .14;
    pointer-events: none;
}

    .world svg {
        width: 100%;
        height: 100%
    }

@media(max-width:1100px) {
    .grid {
        grid-template-columns: 1fr
    }

    .right {
        padding-left: 0
    }

        .right h1 {
            font-size: 50px
        }

    .apps {
        gap: 12px 20px
    }
}

@media(max-width:680px) {
    .wrap {
        padding: 32px 22px 55px
    }

    .apps {
        grid-template-columns: 1fr
    }

    .left-title {
        font-size: 29px
    }

    .right h1 {
        font-size: 42px
    }

    .stats {
        grid-template-columns: 1fr
    }

    .stat:not(:last-child):after {
        display: none
    }

    .lab-photo {
        width: 100%;
        height: 190px
    }
}


.eyebrow2 {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #7d2387;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-size: 18px;
    margin-bottom: 14px;
}

    .eyebrow2:before {
        content: "";
        width: 28px;
        height: 3px;
        background: #7d2387;
        display: block
    }



.left-title {
    /* font-family: Arial,Helvetica,sans-serif; */
    font-size: 36px;
    /* letter-spacing: -1.3px; */
    line-height: 1.08;
    margin: 0;
    color: #742575;
    font-family: "Playfair Display", serif;
    font-weight: 900;
    padding-bottom: 26px;
}

    .left-title span, h1 span {
        color: #000000;
    }

.sub {
    color: #54707e;
    font-size: 18px;
    line-height: 1.45;
    margin: 16px 0 30px;
    max-width: 800px;
}

.header-right .themeht-btn {
    font-family: var(--themeht-typography-secondary-font-family);
    transform: translateZ(0);
    position: relative;
    overflow: hidden;
    z-index: 9;
    padding: 11px 11px;
    display: inline-block;
    border-radius: 5px;
    border: none;
    color: var(--themeht-white-color);
    font-weight: 800;
    text-transform: none;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0.5px;
}


.category-list {
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    padding: 0 0px; /* keeps content off the screen edges on small viewports */
}

.category {
    position: relative;
    min-height: 109px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    isolation: isolate;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 1px solid #eee;
}

    /* Very light / transparent photo effect */
    .category::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgb(255 255 255 / 81%);
        z-index: -1;
    }

    /* Extra soft white fade at edges */
    .category::after {
        content: "";
        position: absolute;
        inset: 0;
        /* background: linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.70) 22%, rgba(255,255,255,.66) 50%, rgba(255,255,255,.72) 78%, rgba(255,255,255,.94) 100%); */
        z-index: -1;
    }

.category-title {
    position: relative;
    z-index: 2;
    padding: 10px 28px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    /* letter-spacing: -1.5px; */
    text-transform: uppercase;
    color: #000000;
    /* text-shadow: 0 1px 0 rgba(255,255,255,.6); */
    margin: 0;
    font-family: "Playfair Display", serif;
}

/* Individual service photographs */
.bakery {
    background-image: url(../images/bakery.jpg);
}

.gels {
    background-image: url(../images/gels.jpg);
}

.fruits {
    background-image: url(../images/fruits.jpg);
}

.powder {
    background-image: url(../images/powder.jpg);
}

.dairy {
    background-image: url(../images/dairy.jpg);
}

.packaging {
    background-image: url(../images/packaging.jpg);
}

.pet {
    background-image: url(../images/pet.jpg);
}

.international {
    background-image: url(../images/international.jpg);
}

.pharma {
    background-image: url(../images/pharma.jpg);
}

.cosmetics {
    background-image: url(../images/cosmetics.jpg);
}

@media(max-width:700px) {


    .category {
        min-height: 180px;
    }

    .category-title {
        font-size: 30px;
        letter-spacing: -.5px;
        padding: 15px;
    }
}
