@font-face {
    font-family: "Satoshi-Regular";
    src: url("../font/Satoshi-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi-MediumItalic";
    src: url("../font/Satoshi-MediumItalic.otf") format("opentype");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi-Medium";
    src: url("../font/Satoshi-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi-LightItalic";
    src: url("../font/Satoshi-LightItalic.otf") format("opentype");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi-Light";
    src: url("../font/Satoshi-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi-Italic";
    src: url("../font/Satoshi-Italic.otf") format("opentype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi-BoldItalic";
    src: url("../font/Satoshi-BoldItalic.otf") format("opentype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi-Bold";
    src: url("../font/Satoshi-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi-BlackItalic";
    src: url("../font/Satoshi-BlackItalic.otf") format("opentype");
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Satoshi-Black";
    src: url("../font/Satoshi-Black.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color-01: rgba(0, 108, 116, 1);
    --primary-color-02: rgba(0, 204, 150, 1);
    --primary-color-03: rgba(0, 218, 242, 1);

    --secondary-color-01: rgba(0, 0, 0, 1);
    --secondary-color-02: rgb(255, 255, 255);
    --secondary-color-03: rgba(94, 94, 94, 1);
    --secondary-color-04: rgba(217, 217, 217, 1);
    --secondary-color-05: rgba(219, 219, 219, 1);
    --secondary-color-06: rgba(163, 163, 163, 1);
    --secondary-color-07: rgba(152, 245, 255, 1);
    --secondary-color-08: rgba(157, 255, 229, 1);
    --secondary-color-09: rgba(204, 235, 237, 1);

}

/* div {
    border: 1px solid red;
} */

a,
p,
h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent
}

img {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

.MainContainer {
    display: flex;
    flex-direction: column;
    /* align-items: center;
    justify-content: center; */
    box-sizing: border-box;
    margin: 0vw;
}

.flexColumn {
    display: flex;
    flex-direction: column;
}

.flexRow {
    display: flex;
    flex-direction: row;
}

/* .flexColumn .section-bg {
    display: flex;
    position: absolute;
    width: 100%;
    height: auto;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    z-index: -1;
} */

.flexColumn .section-bg {
    display: flex;
    position: absolute;
    background-image: url("../images/bgimage.svg");
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    z-index: -1;
}

.logo {
    width: 15vw;
    height: auto;
}

.headDash1 {
    width: 9.5vw;
    height: auto;
    align-self: center;
}

.headDash2 {
    width: 16vw;
    height: auto;
    align-self: center;
}

.headDash3 {
    width: 12.5vw;
    height: auto;
    align-self: center;
}

.headDash4 {
    width: 18.5vw;
    height: auto;
    align-self: center;
}

.headDash5 {
    width: 4.5vw;
    height: auto;
    align-self: center;
}

.section-1 {
    position: relative;
    /* min-height: 140vh; */
    min-height: 100vh;
    overflow: hidden;
    /* margin-bottom: 5vw; */
}

.section1-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 1vw 0vw;
    padding: 0vw 7vw;
}

.section1-header .cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    color: var(--secondary-color-02);
    background-color: var(--primary-color-01);
    padding: .8vw 2.5vw;
    border-radius: 2.5vw;
    overflow: visible;
}

.section1-header p {
    font-family: "Satoshi-Regular", sans-serif;
    font-size: 1vw;
    line-height: 1.2vw;
    transition: transform 500ms ease;
}

.section1-header .cta span {
    display: inline-block;
    transition: transform 200ms ease;
}

/* arrow */
.section1-header .cta::after {
    content: "";
    position: absolute;
    /* right: 1vw;
    width: 1.8vw;
    height: 1.8vw; */
    right: 1.5vw;
    width: 1.4vw;
    height: 1.4vw;
    background-image: url("../images/ArrowRight.svg");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0;
    transform: translateX(6px);
    transition: opacity 400ms ease, transform 400ms ease;
    pointer-events: none;
}

/* on hover: show arrow and move only the text */
.section1-header .cta:hover p {
    transition: transform 200ms ease;
    transform: translateX(-10px);
}

.section1-header .cta:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.section1-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 7vw 0 0 0;
}

.section1-body h2 {
    font-family: "Satoshi-Light", sans-serif;
    font-size: 4vw;
    line-height: 6vw;
    color: var(--primary-color-01);
    text-align: center;
    width: 50vw;
    margin-bottom: 1vw;
}

.section1-body p {
    font-family: 'Satoshi-Light', sans-serif;
    font-size: 1.6vw;
    color: var(--secondary-color-03);
    text-align: center;
}

.section1-circle {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 40vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: "Satoshi-Medium", sans-serif;
}

.circle-container {
    position: relative;
    width: 12vw;
    height: 12vw;
}

svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

text {
    animation: rotate 20s linear infinite;
    transform-origin: 50% 50%;
    fill: var(--primary-color-01);
}

.image-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3.5vw;
    height: 3.5vw;
    overflow: hidden;
    border-radius: 2px solid var(--primary-color-01);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px solid var(--primary-color-01);
    transition: transform 500ms ease;
}

.image-container img:hover {
    transform: scale(1.3);
    transition: transform 500ms ease;
}

.section-2 {
    align-items: center;
    justify-content: center;
    margin: 5vw 0;
    padding: 0vw 7vw;
    position: relative;
}

.sec2Head p {
    font-family: "Satoshi-Regular", sans-serif;
    font-size: 1.5vw;
    line-height: 2vw;
    color: var(--primary-color-01);
    text-transform: uppercase;
    text-align: center;
}

.sec2Body p {
    font-family: "Satoshi-Medium", sans-serif;
    font-size: 2vw;
    line-height: 2.3vw;
    color: var(--secondary-color-04);
    text-align: center;
    margin: 3vw 0;
}

.sec2Metrics {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 9vw;
    margin: 4vw 0vw;
}

.sec2Num h3 {
    font-family: "Satoshi-Light", sans-serif;
    font-size: 6vw;
    line-height: 7vw;
    word-spacing: 1vw;
    color: var(--primary-color-01);
    text-align: center;
    margin-bottom: 2vw;
}

.sec2Num:nth-child(even) h3 {
    color: var(--secondary-color-03);
    /* alternate color */
}

.sec2Num p {
    font-family: "Satoshi-bold", sans-serif;
    font-size: 1.7vw;
    line-height: 2vw;
    color: var(--primary-color-01);
    text-align: center;
}

.sec2Num:nth-child(odd) p {
    color: var(--secondary-color-03);
    /* alternate color */
}

.section-3 {
    justify-content: center;
    align-items: center;
    margin: 5vw 0;
}

.sec3Slider {
    display: flex;
    width: 100%;
    /* max-width: 900px; */
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    touch-action: pan-y;
    cursor: grab;
}


.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide-item {
    min-width: 100%;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.progress-bar-container {
    flex: 1;
    max-width: 100vw;
    border-radius: 5vw;
    overflow: hidden;
}

.progress-bar-fill {
    border-bottom: .2vw solid var(--primary-color-01);
    transform: translateX(-100%);
}

.progress-bar-fill.active {
    animation: fillProgress 5s linear forwards;
}

@keyframes fillProgress {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

/* --- DOTS PAGINATION STYLES --- */
.slider-dots {
    text-align: center;
    padding: 15px 0 0;
    /* Hide by default, show/control visibility via JS or media query if needed */
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: var(--secondary-color-09);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.dot.active {
    background-color: var(--primary-color-01);
    transform: scale(1.2);
}

/* Hide the buttons as requested */
.slider-controls button {
    display: none;
}

.sec3Body {
    margin-top: 5vw;
    gap: 2vw;
}

/* .sec3Body img {
    width: 50vw;
    height: auto;
} */

.sec3image-container {
    width: 54vw;
    height: 52vw;
    overflow: hidden;
}

.sec3image-container img {
    width: 70vw;
    height: auto;
    margin-left: -20vw;
}

.sec3BodyContent {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 0 4vw;
    gap: 2vw;
    width: 40vw;
}

.sec3BodyContent h4 {
    font-family: "Satoshi-Regular", sans-serif;
    font-size: 1.8vw;
    line-height: 2.5vw;
    color: var(--secondary-color-03);
}

.sec3BodyContent h3 {
    font-family: "Satoshi-Bold", sans-serif;
    font-size: 3vw;
    color: var(--primary-color-01);
}

.sec3BodyContent p {
    font-family: "Satoshi-Light", sans-serif;
    font-size: 1.2vw;
    line-height: 1.4vw;
    color: var(--secondary-color-03);
}

.sec4Head p {
    font-family: "Satoshi-Medium", sans-serif;
    font-size: 4vw;
    line-height: 4.2vw;
    color: var(--secondary-color-03);
    text-align: center;
    padding: 0 20vw;
    margin: 2vw 0;
}

.sec4Body {
    padding: 0 10vw;
}

.section-5 {
    margin: 5vw 0;
    gap: 2vw;
}

.sec5DotDashContainer {
    justify-content: space-around;
    align-items: center;
}


.sec5approach {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
}

.sec5approach div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* .approachdot {
    width: 2.7vw;
    height: 2.7vw;
    border-radius: 100%;
    background-color: rgb(194, 255, 255);
    justify-items: center;
    align-content: center;
    margin-bottom: 3vw;
} */

.approachdot {
    width: 2.7vw;
    height: 2.7vw;
    border-radius: 100%;
    background-color: var(--secondary-color-09);
    justify-items: center;
    align-content: center;
    margin-bottom: 3vw;
    position: relative;
    z-index: 4;
}

.sec4Body .sec5approach .approachdot:after {
    content: '';
    width: 20vw;
    height: 0.3vw;
    position: absolute;
    top: 3vh;
    z-index: 2;
    left: 4.5vw;
    background-image: linear-gradient(to right, var(--secondary-color-06) 70%, rgba(255, 255, 255, 0) 0%);
    background-position: bottom;
    background-size: 23px 3px;
    background-repeat: repeat-x;
}

.sec4Body .sec5approach:last-child .approachdot:after {
    content: none;
}

.approachdot .approachsmalldot {
    width: 1.5vw;
    height: 1.5vw;
    border-radius: 100%;
    background-color: var(--primary-color-01);
    justify-items: center;
    align-content: center;
}

.approachdashLeft {
    width: 23vw;
    margin: 0;
    position: absolute;
    left: 24vw;
    top: 179vw;
    overflow: hidden;
}

.approachdashRight {
    width: 23vw;
    margin: 0;
    position: absolute;
    left: 52vw;
    top: 179vw;
    overflow: hidden;
}

.sec5approach h4 {
    font-family: "Satoshi-Bold", sans-serif;
    font-size: 1.8vw;
    line-height: 2vw;
    color: var(--primary-color-01);
    text-align: center;
    margin-bottom: 1vw;
}

.sec5approach p {
    /* font-family: "Satoshi-Light", sans-serif;
    font-size: 1.2vw;
    line-height: 1.8vw;
    color: var(--secondary-color-03);
    text-align: center;
    padding: 0vw 2vw; */


    font-family: "Satoshi-Regular", sans-serif;
    font-size: 1.5vw;
    line-height: 1.8vw;
    color: var(--secondary-color-03);
    text-align: center;
    padding: 0vw 2vw;
}

.section-6 {
    margin: 5vw 0;
}

.testimonialContainer {
    justify-content: space-evenly;
    margin: 5vw 0vw;
    position: relative;
    gap: 5vw;
    overflow: hidden;
}

.testimonialContainer div {
    width: 25vw;
}

.testimonialCard {
    justify-content: space-between;
    width: 25vw;
    height: 34vw;
    background-color: var(--primary-color-01);
    border-radius: 2vw;
    padding: 2vw;
}

.testimonialContainer div:nth-child(even) .testimonialCard {
    background-color: var(--secondary-color-03);
    /* alternate color */
}

.sec6Top h5 {
    font-family: "Satoshi-Light", sans-serif;
    font-size: 1.5vw;
    line-height: 1.5vw;
    color: var(--secondary-color-05);
    text-align: left;
    margin-bottom: 3vw;
}

.sec6Top p {
    font-family: "Satoshi-Regular", sans-serif;
    font-size: 1.5vw;
    line-height: 2vw;
    color: var(--secondary-color-02);
    text-align: left;
    margin-bottom: 1vw;
    width: 25vw;
}

.sec6Bottom h5 {
    font-family: "Satoshi-Light", sans-serif;
    font-size: 1.5vw;
    line-height: 1.9vw;
    color: var(--secondary-color-04);
}

.sec6Bottom p {
    font-family: "Satoshi-Light", sans-serif;
    font-size: 1.2vw;
    line-height: 1.2vw;
    color: var(--secondary-color-06);
}

.section-7 {
    align-items: center;
    margin: 5vw 0vw;
}

.sec7Head h3 {
    font-family: "Satoshi-Regular", sans-serif;
    font-size: 4vw;
    line-height: 5vw;
    color: var(--primary-color-01);
    text-align: center;
    padding: 0 20vw;
}

.sec7Head p {
    font-family: "Satoshi-Regular", sans-serif;
    font-size: 2vw;
    line-height: 2.5vw;
    color: var(--secondary-color-03);
    text-align: center;
    padding: 0 18vw;
    margin: 3vw 0;
}

/* .sec7Body {
    overflow: hidden;
} */
.sec7Body li {
    display: inline-flex;
    align-items: center;
    padding: 0.2vw 0.6vw;
    white-space: nowrap;
    font-family: "Satoshi-Medium", sans-serif;
    font-size: 3vw;
    line-height: 2.5vw;
    color: var(--primary-color-01);
    margin: 1.5vw 0;
}

/* reliable dot before each item */
.sec7Body li::before {
    content: "";
    display: inline-block;
    width: 1vw;
    height: 1vw;
    background: var(--primary-color-01);
    border-radius: 50%;
    margin-right: 0.8vw;
    flex: 0 0 auto;
}

/* alternate dot color for every other item */
.sec7Body li:nth-child(even) {
    color: var(--secondary-color-03);
}

.sec7Body li:nth-child(even)::before {
    background: var(--secondary-color-03);
}

.marquee {
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.marquee__inner {
    display: flex;
    align-items: center;
    width: max-content;
    --marquee-duration: 18s;
    will-change: transform;
    animation: marquee-scroll var(--marquee-duration) linear infinite;
    transform: translate3d(0, 0, 0);
}

.marquee__inner>ul {
    justify-content: center;
    list-style: disc outside;
    margin-left: -3vw;

    /* display: flex;
    gap: 3.5vw;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    flex: 0 0 auto;    */
}

/* animation: move left by exactly half the inner width (we duplicated content) */
@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* accessibility */
@media (prefers-reduced-motion: reduce) {
    .marquee__inner {
        animation: none;
    }
}


.accordianContainer {
    padding: 1vw 7vw;
}

.accordianCard {
    padding-top: 2vw;
    border-bottom: .2vw solid var(--secondary-color-04);
}

.accordianCard h4 {
    font-family: "Satoshi-Regular", sans-serif;
    font-size: 2vw;
    line-height: 2.2vw;
    color: var(--secondary-color-03);
    transition: color 200ms ease;
    text-align: left;
    margin-bottom: 1vw;
}

/* when the accordion card is open, make the header primary color */
.accordianCard.open .accordion-header h4 {
    font-family: "Satoshi-Bold", sans-serif;
    color: var(--primary-color-01);
}

.accordianCard p {
    font-family: "Satoshi-Light", sans-serif;
    font-size: 1.4vw;
    line-height: 1.6vw;
    color: var(--secondary-color-06);
    text-align: left;
}

/* Accordion-specific enhancements */
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 2vw;
}

.accordion-header h4 {
    margin: 0;
}

.toggle-icon {
    display: inline-block;
    /* width: 2vw;
    height: 2vw; */
    line-height: 1;
    background: transparent;
    user-select: none;
}

.toggle-icon img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 1000ms cubic-bezier(.2, .9, .2, 1);
    transform-origin: 50% 50%;
}

/* rotated state for the toggle image */
.toggle-icon img.rotated {
    transition: 500ms ease;
    transform: rotate(90deg);
}

.accordion-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 280ms ease, opacity 220ms ease;
    opacity: 0;
}

.accordianCard.open .accordion-content {
    max-height: 10vw;
    opacity: 1;
    margin-bottom: 2vw;
}

.section-9 {
    margin: 7vw;
}

.formContainer {
    background-color: var(--primary-color-01);
    padding: 3.8vw;
    border-radius: 3vw;
}

.formSection {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.formSection div {
    display: flex;
    flex-direction: column;
    margin: 1vw 0;
    border-bottom: .1vw solid var(--secondary-color-06);
}

.formSection div>label {
    font-family: "Satoshi-Light", sans-serif;
    font-size: 1.5vw;
    line-height: 2vw;
    color: var(--secondary-color-02);
}

input {
    font-family: "Satoshi-Light", sans-serif;
    font-size: 1.5vw;
    line-height: 2vw;
    color: var(--secondary-color-02);
    border: 0;
    background-color: var(--primary-color-01);
    width: 35vw;
    height: 5vw;
    outline: none;
    overflow-y: hidden;
    caret-color: var(--secondary-color-02)
}

input::placeholder {
    font-family: "Satoshi-Light", sans-serif;
    font-size: 1.5vw;
    color: var(--secondary-color-06);
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 50px var(--primary-color-01) inset;
    -webkit-text-fill-color: var(--secondary-color-02);
}

.formPillContainer {
    margin: 2vw 0;
}

.formPillContainer label {
    font-family: "Satoshi-Light", sans-serif;
    font-size: 1.5vw;
    line-height: 2vw;
    color: var(--secondary-color-02);
}

.formPillContainer div {
    gap: 1vw;
    margin: 1vw 0;
}

.formPillContainer div p {
    font-family: "Satoshi-Regular", sans-serif;
    font-size: 1.1vw;
    line-height: 2vw;
    color: var(--secondary-color-02);
    cursor: pointer;
    padding: .5vw 1.1vw;
    border: .1vw solid var(--secondary-color-02);
    border-radius: 5vw;
}

.formPillContainer div p:hover {
    background-color: var(--secondary-color-02);
    color: var(--secondary-color-01);
}


/* ==========cta1============ */
.submitBtn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 1vw 0vw;
    padding: 0vw 7vw;
}

.submitBtn .cta1 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    color: var(--primary-color-01);
    background-color: var(--secondary-color-02);
    padding: .8vw 2.5vw;
    border-radius: 2.5vw;
    overflow: visible;
}

.submitBtn p {
    font-family: "Satoshi-Regular", sans-serif;
    font-size: 1vw;
    line-height: 1vw;
    transition: transform 500ms ease;
}

.submitBtn .cta1 span {
    display: inline-block;
    transition: transform 200ms ease;
}

/* arrow */
.submitBtn .cta1::after {
    content: "";
    position: absolute;
    /* right: 1vw;
    width: 1.8vw;
    height: 1.8vw; */
    right: 1.5vw;
    width: 1.4vw;
    height: 1.4vw;
    background-image: url("../images/SubmitArrowRight.svg");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0;
    transform: translateX(6px);
    transition: opacity 400ms ease, transform 400ms ease;
    pointer-events: none;
}

/* on hover: show arrow and move only the text */
.submitBtn .cta1:hover p {
    transition: transform 200ms ease;
    transform: translateX(-10px);
}

.submitBtn .cta1:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.footerSection {
    border-top: .1vw solid var(--secondary-color-04);
    margin: 5vw 0;
    margin-bottom: 0;
    padding: 5vw;
    padding-bottom: 0;
}

.sec10Head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.sec10left {
    justify-content: space-between;
}

.sec10left img {
    width: 13vw;
    height: auto;
}

.sec10left p {
    font-family: "Satoshi-Light", sans-serif;
    font-size: 1.2vw;
    line-height: 1.5vw;
    color: var(--secondary-color-06);
    text-align: left;
    padding: 3vw 1vw;
    width: 25vw;
}

.sec10right a {
    padding: .5vw;
    cursor: pointer;
    text-decoration: none;
}

.sec10right a p {
    font-family: "Satoshi-Light", sans-serif;
    font-size: 1.2vw;
    line-height: 1.5vw;
    color: var(--primary-color-01);
    text-align: left;
    padding-left: 1vw;
}

.sec10right a img {
    width: 1.5vw;
    height: 1.5vw;
}

/* ==========cta1============ */
.socialLink {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 1vw 0vw;
    /* padding: 0vw 7vw; */
}

.socialLink .socialCta {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: underline;
    text-decoration-thickness: 0.13vw;
    text-underline-offset: 0.2vw;
    cursor: pointer;
    color: var(--primary-color-01);
    background-color: var(--secondary-color-02);
    /* padding: .8vw 2.5vw; */
    padding: 0 .8vw;
    padding-right: 2.5vw;
    border-radius: 2.5vw;
    overflow: visible;
}

.socialLink p {
    font-family: "Satoshi-Regular", sans-serif;
    font-size: 1.3vw;
    line-height: 1.4vw;
    transition: transform 500ms ease;
}

.socialLink img {
    width: 1.5vw;
}

.socialLink .socialCta span {
    display: inline-block;
    transition: transform 200ms ease;
}

/* arrow */
.socialLink .socialCta::after {
    content: "";
    position: absolute;
    right: 1vw;
    width: 1.8vw;
    height: 1.8vw;
    background-image: url("../images/ArrowRighUpt.svg");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 1;
    transform: translateX(6px);
    transition: opacity 400ms ease, transform 400ms ease;
    pointer-events: none;
}

/* on hover: show arrow and move only the text */
/* .socialLink .socialCta:hover p {
    transition: transform 200ms ease;
    transform: translateX(-10px);
}

.socialLink .socialCta:hover::after {
    opacity: 1;
    transform: translateX(0);
} */

.finalFoot {
    border-top: .1vw solid var(--secondary-color-04);
    justify-content: space-between;
    margin-top: 3vw;
    padding: 2vw 0;
}

.finalFoot div a {
    font-family: "Satoshi-Light", sans-serif;
    font-size: 1vw;
    line-height: 1.5vw;
    color: var(--secondary-color-06);
    padding: 0 .3vw;
}

.footCraft {
    text-decoration: none;
}

.footCopy {
    text-decoration: underline;
}

.nofoundHead {
    margin: 2vw 0;
    justify-content: center;
}

.nofoundTxt {
    margin: 2vw 0;
}

.nofoundTxt p {
    font-family: 'Satoshi-Regular', sans-serif;
    color: var(--secondary-color-02);
    font-size: 1vw;
    line-height: 1.2;
}


/* navToTop — fixed circular button bottom-right */
.navToTop {
    position: fixed;
    bottom: 24vw;
    right: 1vw;
    z-index: 9999;
    transition: opacity 220ms ease, transform 220ms ease;
    pointer-events: none;
    opacity: 0;
    transform: translateY(12px) scale(.98);
}

.navToTop a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4vw;
    height: 4vw;
    background: var(--primary-color-01);
    color: var(--secondary-color-02);
    /* border-radius: 50%; */
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: transform 180ms ease, box-shadow 180ms ease;
    outline: none;
}

.navToTop a:focus,
.navToTop a:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.navToTop img {
    width: 54%;
    height: 54%;
    display: block;
}

/* visible / hidden states controlled by JS */
.navToTop.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.navToTop.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(.98);
}


/* Screen Size 768px */
@media screen and (max-width: 768px) {
    .section1-header {
        margin: 3vw 6vw;
        padding: 0vw 0vw;
    }

    .logo {
        width: 20vw;
    }

    .section-1 {
        min-height: 100vh;
    }

    .section1-header .cta {
        padding: 1.5vw 3vw;
        border-radius: 6vw;
    }

    .section1-header .cta::after {
        right: 1.4vw;
        width: 2.5vw;
        height: 2.5vw;
    }

    .section1-header p {
        font-size: 1.7vw;
        line-height: 1.8vw;
    }

    .flexColumn .section-bg {
        background-size: 100vw;
        background-repeat: no-repeat;
    }

    .section1-body {
        margin: 0vw 0 0 0;
    }

    .section1-body h2 {
        font-size: 5vw;
        line-height: 6vw;
        width: 70vw;
        margin: 4vw;
    }

    .section1-body p {
        font-size: 2.4vw;
        line-height: 3vw;
        width: 100vw;
        margin-bottom: 3vw;
    }

    .section1-circle {
        height: 20vw;
    }

    .circle-container {
        width: 15vw;
        height: 15vw;
    }

    .image-container {
        width: 5vw;
        height: 5vw;
    }

    .sec2Head p {
        font-size: 2.5vw;
        line-height: 3vw;
    }

    .headDash1 {
        width: 16vw;
    }

    .headDash2 {
        width: 26vw;
    }

    .headDash3 {
        align-self: center;
        margin-top: 0vw;
        width: 21vw;
    }

    .headDash4 {
        width: 31vw;
    }

    .headDash5 {
        width: 7vw;
    }

    .sec2Body p {
        font-size: 3vw;
        line-height: 4vw;
    }

    .sec2Metrics {
        gap: 10vw;
        margin: 0vw 0vw;
        /* justify-content: space-around; */
        /* flex-wrap: wrap; */
    }

    .sec2Num p {
        font-size: 3vw;
        line-height: 4vw;
    }

    .sec2Num h3 {
        font-size: 8vw;
        line-height: 20vw;
        /* font-weight: 500; */
        margin: 0;
    }

    .sec3Body {
        /* flex-direction: column; */
        align-items: center;
    }

    /* 
    .sec3Body img {
        width: 100vw;
        height: auto;
    } */


    .sec3image-container {
        margin: 0vw;
        width: 73vw;
        height: 45vw;
        overflow: hidden;
    }

    .sec3image-container img {
        width: 60vw;
        height: auto;
        margin-left: -18vw;
    }


    .sec3BodyContent {
        padding: 2vw;
        width: 90vw;
    }

    .sec3BodyContent h4 {
        font-size: 2.5vw;
        line-height: 3vw;
    }

    .sec3BodyContent h3 {
        font-size: 3.5vw;
        line-height: 4vw;
    }

    .sec3BodyContent p {
        font-size: 2vw;
        line-height: 2.2vw;
    }

    .sec4Head p {
        font-size: 4.5vw;
        line-height: 5vw;
        padding: 0vw;
    }

    .sec4Body {
        flex-direction: column;
        gap: 20vw;
    }

    .sec4Body .sec5approach .approachdot:after {
        width: 21vw;
        height: .7vw;
        color: black;
        position: absolute;
        top: 35vw;
        z-index: 2;
        left: -7.5vw;
        rotate: 90deg;
    }

    .approachdash {
        width: 39vw;
        margin: 0;
        rotate: 90deg;
    }

    .sec5approach h4 {
        font-size: 3.8vw;
        line-height: 4vw;
    }

    .sec5approach p {
        font-size: 3vw;
        line-height: 3.2vw;
        width: 50vw;
    }

    .testimonialContainer {
        /* justify-content: space-evenly; */
        margin: 3vw;
        gap: 12vw;
    }

    .testimonialContainer div {
        width: 45vw;
    }

    .testimonialCard {
        justify-content: space-between;
        width: 100%;
        height: auto;
        background-color: var(--primary-color-01);
        border-radius: 5vw;
        padding: 5vw;
    }

    .sec6Top h5 {
        font-size: 2.8vw;
        line-height: 3vw;
    }

    .sec6Top p {
        font-size: 3vw;
        line-height: 3.2vw;
        height: 40vw;
        width: 100%;
    }

    .sec6Bottom h5 {
        font-size: 2.8vw;
        line-height: 3vw;
    }

    .sec6Bottom p {
        font-size: 2.8vw;
        line-height: 3vw;
    }

    .approachdot {
        width: 5.7vw;
        height: 5.7vw;
        margin-top: 4vw;
    }

    .approachdot .approachsmalldot {
        width: 3.5vw;
        height: 3.5vw;
    }

    .sec7Head h3 {
        font-size: 5vw;
        line-height: 6vw;
        padding: 0 2vw;
    }

    .sec7Head p {
        font-size: 2.5vw;
        line-height: 3vw;
        padding: 0 7vw;
    }

    .marquee__inner {
        --marquee-duration: 12s;
        /* gap: 10vw; */
    }

    .sec7Body li {
        font-size: 3vw;
        padding: 0.2vw 1vw;
    }

    .sec7Body li::before {
        width: 1.5vw;
        height: 1.5vw;
        margin-right: 2vw;
    }

    .accordianCard {
        padding: 4vw 0;
    }

    .toggle-icon img {
        width: 3vw;
        height: 3vw;
    }

    .accordianCard h4 {
        font-size: 3vw;
        line-height: 3.5vw;
    }

    .accordianCard p {
        font-size: 2.4vw;
        line-height: 2.6vw;
    }

    .formSection {
        flex-direction: column;
    }

    .formSection div>label {
        font-size: 3vw;
        line-height: 4vw;
    }

    input {
        font-size: 3vw;
        line-height: 3.5vw;
        width: 75vw;
        height: 10vw;
    }

    input::placeholder {
        font-size: 3vw;
    }

    .formPillContainer {
        margin: 4vw 0;
    }

    .formPillContainer div {
        align-items: center;
        flex-wrap: wrap;
    }

    .formPillContainer div p {
        font-size: 2vw;
        line-height: 2.5vw;
        padding: 0.5vw 2.1vw;
    }

    .formPillContainer label {
        font-size: 3.5vw;
        line-height: 4vw;
        margin-bottom: 2vw;
    }

    .submitBtn .cta1 {
        padding: 1.5vw 5vw;
        border-radius: 6vw;
    }

    .submitBtn .cta1::after {
        right: 3.8vw;
        width: 2.2vw;
        height: 2.2vw;
    }

    .submitBtn p {
        font-size: 1.7vw;
        line-height: 1.7vw;
    }

    .sec10Head {
        align-items: center;
        gap: 2vw;
    }

    .sec10left img {
        width: 20vw;
    }

    .sec10left p {
        font-size: 2vw;
        line-height: 2.5vw;
        width: 100%;
    }

    .sec10right a p {
        font-size: 2.2vw;
        line-height: 2.5vw;
    }

    .sec10right a img {
        width: 3vw;
        height: 3vw;
    }

    .finalFoot {
        justify-content: space-between;
        align-items: center;
        gap: 2vw;
    }

    .finalFoot div a {
        font-size: 1.8vw;
        line-height: 2vw;
    }

    .navToTop {
        bottom: 25vw;
        right: 4vw;
    }

    #navToTopBtn img {
        width: 4vw;
        height: 4vw;
    }

    .navToTop a {
        width: 0vw;
        height: 0vw;
        padding: 3vw;
    }
}

/* Screen Size 480px */
@media screen and (max-width: 480px) {
    .section1-header {
        margin: 11vw 0vw;
        padding: 0vw 2vw;
    }

    .logo {
        width: 40vw;
    }

    .section-1 {
        min-height: 100vh;
    }

    .section1-header .cta {
        padding: 2vw 6vw;
        border-radius: 6vw;
    }

    .section1-header .cta::after {
        right: 2vw;
        width: 5vw;
        height: 5vw;
    }

    .section1-header p {
        font-size: 3.5vw;
        line-height: 4.2vw;
    }

    .flexColumn .section-bg {
        background-image: url("../images/mbg.svg");
        height: 100%;
        /* height: 182vw; */
    }

    .section1-body {
        margin: 50vw 0 0 0;
    }

    .section1-body h2 {
        font-size: 9vw;
        line-height: 11vw;
        width: 100vw;
        margin-bottom: 4vw;
    }

    .section1-body p {
        font-size: 5vw;
        line-height: 6vw;
        width: 100vw;
        margin-bottom: 3vw;
    }

    .section1-circle {
        height: 40vw;
    }

    .circle-container {
        width: 30vw;
        height: 30vw;
    }

    .image-container {
        width: 8vw;
        height: 8vw;
    }

    .sec2Head p {
        font-size: 4.5vw;
        line-height: 5vw;
    }

    .headDash1 {
        width: 30vw;
        align-self: center;
    }

    .headDash2 {
        width: 48vw;
    }

    .headDash3 {
        align-self: center;
        margin-top: 1vw;
        width: 38vw;
    }

    .headDash4 {
        width: 56vw;
    }

    .headDash5 {
        width: 12vw;
    }

    .sec2Body p {
        font-size: 5vw;
        line-height: 5.5vw;
    }

    .sec2Metrics {
        /* gap: 10vw; */
        margin: 4vw 0vw;
        /* justify-content: space-around; */
        flex-wrap: wrap;
    }

    .sec2Num p {
        font-size: 4vw;
        line-height: 4vw;
    }

    .sec2Num h3 {
        font-size: 18vw;
        line-height: 20vw;
        font-weight: 500;
        text-align: justify;
    }

    .sec3Body {
        flex-direction: column;
        align-items: center;
    }

    /* 
    .sec3Body img {
        width: 100vw;
        height: auto;
    } */


    .sec3image-container {
        margin: 0vw;
        width: 100vw;
        height: 75vw;
        overflow: hidden;
    }

    .sec3image-container img {
        width: 100vw;
        height: auto;
        margin-left: 0vw;
    }


    .sec3BodyContent {
        padding: 4vw;
        width: 90vw;
    }

    .sec3BodyContent h4 {
        font-size: 4vw;
        line-height: 5vw;
    }

    .sec3BodyContent h3 {
        font-size: 6vw;
        line-height: 7vw;
    }

    .sec3BodyContent p {
        font-size: 3.3vw;
        line-height: 3.7vw;
    }

    .sec4Head p {
        font-size: 7vw;
        line-height: 8vw;
        padding: 4vw;
    }

    .sec4Body {
        flex-direction: column;
        gap: 35vw
    }

    .sec4Body .sec5approach .approachdot:after {
        width: 36vw;
        height: .7vw;
        color: black;
        position: absolute;
        top: 42vw;
        z-index: 2;
        left: -14.5vw;
        rotate: 90deg;
    }

    .approachdash {
        width: 39vw;
        margin: 0;
        rotate: 90deg;
    }

    .sec5approach h4 {
        font-size: 4.8vw;
        line-height: 5vw;
    }

    .sec5approach p {
        font-size: 3.5vw;
        line-height: 3.8vw;
    }

    .testimonialContainer {
        /* justify-content: space-evenly; */
        margin: 3vw;
        gap: 12vw;
    }

    .testimonialContainer div {
        width: 80vw;
    }

    .testimonialCard {
        justify-content: space-between;
        width: 100%;
        height: auto;
        background-color: var(--primary-color-01);
        border-radius: 5vw;
        padding: 5vw;
    }

    .sec6Top h5 {
        font-size: 3.5vw;
        line-height: 3.5vw;
    }

    .sec6Top p {
        font-size: 4vw;
        line-height: 5.2vw;
        height: 100vw;
        width: 100%;
    }

    .sec6Bottom h5 {
        font-size: 3.5vw;
        line-height: 4vw;
    }

    .sec6Bottom p {
        font-size: 3.2vw;
        line-height: 4vw;
    }

    .approachdot {
        width: 6.7vw;
        height: 6.7vw;
        margin-top: 5vw;
    }

    .approachdot .approachsmalldot {
        width: 3.5vw;
        height: 3.5vw;
    }

    .sec7Head h3 {
        font-size: 8vw;
        line-height: 10vw;
        padding: 0 2vw;
    }

    .sec7Head p {
        font-size: 4.5vw;
        line-height: 4.5vw;
        padding: 0 7vw;
    }

    .marquee__inner {
        --marquee-duration: 12s;
        /* gap: 10vw; */
    }

    .sec7Body li {
        font-size: 6vw;
        padding: 0.2vw 3.6vw;
    }

    .sec7Body li::before {
        width: 3vw;
        height: 3vw;
        margin-right: 8vw;
    }

    .accordianCard {
        padding: 4vw 0;
    }

    .toggle-icon img {
        width: 5vw;
        height: 5vw;
    }

    .accordianCard h4 {
        font-size: 4vw;
        line-height: 4.5vw;
    }

    .accordianCard p {
        font-size: 3.4vw;
        line-height: 3.6vw;
    }

    .formSection {
        flex-direction: column;
    }

    .formSection div>label {
        font-size: 3.5vw;
        line-height: 4vw;
    }

    input {
        font-size: 4vw;
        line-height: 4.5vw;
        width: 75vw;
        height: 10vw;
    }

    input::placeholder {
        font-size: 4vw;
    }

    .formPillContainer {
        margin: 4vw 0;
    }

    .formPillContainer div {
        /* flex-direction: column; */
        align-items: center;
        /* justify-content: center; */
        flex-wrap: wrap;
        gap: 2vw;
    }

    .formPillContainer div p {
        font-size: 4vw;
        line-height: 4.5vw;
        padding: 1.5vw 3.1vw;

    }

    .formPillContainer label {
        font-size: 3.5vw;
        line-height: 4vw;
        align-self: center;
        margin-bottom: 2vw;
    }


    .submitBtn .cta1 {
        padding: 2vw 6vw;
        border-radius: 6vw;
    }

    .submitBtn .cta1::after {
        right: 2vw;
        width: 5vw;
        height: 5vw;
    }

    .submitBtn p {
        font-size: 3.5vw;
        line-height: 4.2vw;
    }

    .sec10Head {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 2vw
    }

    .sec10left img {
        width: 40vw;
    }

    .sec10left p {
        font-size: 3.2vw;
        line-height: 3.5vw;
        width: 100%;
    }

    .sec10right a p {
        font-size: 3vw;
        line-height: 3.5vw;
    }

    .sec10right a img {
        width: 4vw;
        height: 4vw;
    }

    .finalFoot {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2vw;
    }

    .finalFoot div a {
        font-size: 3vw;
        line-height: 3.5vw;
    }

    .navToTop {
        bottom: 10vw;
        right: 4vw;
    }

    #navToTopBtn img {
        width: 7vw;
        height: 7vw;
    }

    .navToTop a {
        width: 0vw;
        height: 0vw;
        padding: 5vw;
    }
}