:root {
    --primary: #00a3a1;
    --primarydark: #007f7d;
    --primaryLight: #c1dfe0;
    --primaryAlt: #79b5b9;
    --primaryAlt2: #95c8cb;
    --primaryLightAlt: #eef4ff;
    --primaryLightAlt1: #effafa;
    --primaryLightAlt2: #ddebeb;
    --primaryLightAlt3: #cadbff;
    --secondary: #fbb03b;
    --secondaryDark: #ec9812;
    --secondaryDarkAlt: #F47A0C;
    --yellow: #faa42d;
    --lightPink: #feeac7;
    --lightPink2: #ffe8db;
    --lightPink3: #ffe8d4;
    --lightPink4: #ffead5;
    --lightPink5: #fff5ed;
    --textColor: #667085;
    --menuColor: #667085;
    --textDark: rgba(0, 0, 0, 0.87);
    --textDark2: #101828;
    --text-Dark3: #344054;
    --skyBlue: #deefef;
    --skyBlue2: 149, 200, 203;
    --white: #fff;
    --black: #000;
    --orange: #fe5611;
    --orangeAlt: #ff8a50;
    --orangeAlt2: #fd853a;
    --lightOrange: #fef0c7;
    --lightOrange2: #fdd48a;
    --lightOrange3: #ffa971;
    --lightOrange4: #ffcda8;
    --lightOrange5: #fa9e25;
    --lightOrangeDark3: #ff934b;
    --lightGray: #eaecf0;
    --footerBG: #0e101b;
    --gray: #858f8f;
    --greenDark: #033e3f;
    --greenDark1: #09292B;
    --blue: #3755be
}

*,
:after,
:before {
    box-sizing: border-box
}

body {
    margin: 0;
    min-width: 360px;
    color: var(--textColor);
    /* font: 400 18px/1.555 "Poppins", Arial, sans-serif */
}

@media (max-width:767px) {
    body.nav-active {
        overflow: hidden
    }
}

.h1,
.h2,
.h3,
.h4,
.h5,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 25px;
    color: var(--textDark)
}

.h1,
h1 {
    font-size: 46px;
    font-weight: 700
}

@media (min-width:768px) {

    .h1,
    h1 {
        font-size: 54px;
        font-weight: 900
    }
}

@media (min-width:1024px) {

    .h1,
    h1 {
        font-size: 70px
    }
}

@media (min-width:1200px) {

    .h1,
    h1 {
        font-size: 85px
    }
}

@media (min-width:1440px) {

    .h1,
    h1 {
        font-size: 100px
    }
}

.h1:last-child,
h1:last-child {
    margin-bottom: 0
}

.h2,
h2 {
    font-size: 27px
}

@media (min-width:480px) {

    .h2,
    h2 {
        font-size: 28px
    }
}

@media (min-width:768px) {

    .h2,
    h2 {
        font-size: 31px
    }
}

@media (min-width:1024px) {

    .h2,
    h2 {
        font-size: 36px
    }
}

@media (min-width:1200px) {

    .h2,
    h2 {
        font-size: 42px
    }
}

@media (min-width:1440px) {

    .h2,
    h2 {
        font-size: 48px
    }
}

.h2:last-child,
h2:last-child {
    margin-bottom: 0
}

.h3,
h3 {
    font-size: 30px;
    font-weight: 600
}

p {
    margin: 0 0 20px
}

p:last-child {
    margin-bottom: 0
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block
}

.text-input {
    color: var(--black);
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--lightGray);
    /* font: 400 16px/1.5 "Poppins", Arial, sans-serif; */
    padding: 14px 20px;
    text-align: left;
    height: 56px
}

.text-input::placeholder {
    color: var(--textColor);
    opacity: 1
}

.text-input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 1px var(--secondary)
}

textarea.text-input {
    height: 153px;
    resize: none
}

.btn {
    /* font: 500 16px/1.5 "Poppins", Arial, sans-serif; */
    padding: 7px 13px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background: var(--secondary);
    transition: 0.3s;
    cursor: pointer;
    border: 1px solid var(--secondary)
}

.btn:hover {
    background: var(--secondaryDark)
}

.btn.btn-orange {
    background: var(--lightOrange3)
}

.btn.btn-orange:hover {
    background: var(--lightOrangeDark3)
}

.btn.btn-lg {
    font-size: 18px;
    padding: 10px 20px
}

.btn.btn-outline {
    color: var(--primary);
    border-color: var(--primary);
    background: transparent;
    gap: 8px
}

.btn.btn-outline:hover {
    color: var(--white);
    background: var(--primary)
}



.hero-section {
    overflow: hidden;
    width: 100%;
    padding: 25px 0 50px;
    
    text-align: center
}

@media (min-width:768px) {
    .hero-section {
        text-align: left
    }
}

@media (min-width:1024px) {
    .hero-section {
        padding: 52px 0
    }
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap
}

.hero-section .hero-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 45px
}

@media (min-width:768px) {
    .hero-section .hero-left {
        gap: 40px;
        margin-bottom: 65px
    }
}

@media (min-width:1024px) {
    .hero-section .hero-left {
        width: 50%;
        margin-bottom: 0;
        padding: 0 20px 10px 0
    }
}

@media (min-width:1200px) {
    .hero-section .hero-left {
        padding: 0 0 10px;
        gap: 56px
    }
}

.hero-section .hero-textholder {
    overflow: hidden
}

.hero-section h1 {
    font-weight: 700;
    line-height: 1.25
}

@media (min-width:768px) {
    .hero-section h1 {
        line-height: 0.95;
        letter-spacing: -1px
    }
}

@media (min-width:1024px) {
    .hero-section h1 {
        letter-spacing: -2px
    }
}

.hero-section h2 {
    letter-spacing: -1px
}

@media (max-width:767px) {
    .hero-section h2 {
        font-size: 24px;
        letter-spacing: normal
    }
}

.hero-section h2 span {
    color: var(--primary)
}

.hero-section p strong {
    color: var(--primary);
    font-weight: 600
}

.hero-section .hero-right {
    width: 100%
}

@media (min-width:1024px) {
    .hero-section .hero-right {
        width: 50%
    }
}

@media (min-width:1200px) {
    .hero-section .hero-right {
        width: 48%
    }
}


.hero-section.sub-visual {
    background: #f2f9f9;
    text-align: center;
    min-height: 293px;
    display: flex;
    align-items: center;
    padding: 50px 0
}

.hero-section.sub-visual .container {
    flex-direction: column;
    justify-content: center;
    width: 100%
}

.hero-section.sub-visual h1 {
    font-weight: 600;
    font-size: 36px
}

@media (min-width:766px) {
    .hero-section.sub-visual h1 {
        font-size: 44px;
        font-weight: 500
    }
}

@media (min-width:1024px) {
    .hero-section.sub-visual h1 {
        font-size: 52px
    }
}

@media (min-width:1200px) {
    .hero-section.sub-visual h1 {
        font-size: 60px
    }
}

.hero-section.sub-visual h1 strong {
    font-weight: 600;
    color: var(--primary)
}

@media (min-width:766px) {
    .hero-section.sub-visual h1 strong {
        font-weight: 500
    }
}

.counter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    
    font-size: 18px;
    justify-content: space-around
}

@media (min-width:768px) {
    .counter-list {
        gap: 30px;
        justify-content: flex-start
    }
}

@media (min-width:1024px) {
    .counter-list {
        font-size: 16px;
        gap: 25px
    }
}

@media (min-width:1200px) {
    .counter-list {
        font-size: 18px;
        gap: 40px
    }
}

.counter-list li {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.counter-list .numbers {
    font-size: 30px;
    line-height: 1;
    font-weight: 600;
    color: var(--secondary)
}

@media (min-width:768px) {
    .counter-list .numbers {
        font-size: 34px
    }
}

@media (min-width:1024px) {
    .counter-list .numbers {
        font-size: 42px
    }
}

@media (min-width:1200px) {
    .counter-list .numbers {
        font-size: 48px
    }
}

.hero-image {
    width: var(--orbit-size);
    height: var(--orbit-size);
    margin: 0 auto;
    position: relative
}

@media (min-width:1440px) {
    .hero-image {
        margin: 0
    }
}

.hero-image:after {
    width: 260px;
    height: 260px;
    background: var(--lightPink5);
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%
}

@media (min-width:768px) {
    .hero-image:after {
        width: 360px;
        height: 360px
    }
}

@media (min-width:1200px) {
    .hero-image:after {
        width: 444px;
        height: 444px
    }
}

@media (min-width:1440px) {
    .hero-image:after {
        margin-left: 30px
    }
}

.hero-image .image-holder {
    width: 308px;
    height: 365px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px 0 0 12px
}

@media (min-width:768px) {
    .hero-image .image-holder {
        transform: translate(-50%, -50%) scale(0.8)
    }
}

@media (min-width:1200px) {
    .hero-image .image-holder {
        transform: translate(-50%, -50%) scale(1)
    }
}

@media (min-width:1440px) {
    .hero-image .image-holder {
        margin: 19px 0 0 24px
    }
}

.hero-image .image-holder img {
    width: 100%;
    height: auto;
    display: block
}

.hero-image .image-holder .eyes {
    position: absolute;
    width: 60px;
    height: 28px;
    top: 35px;
    transform-origin: center;
    margin-left: -2px;
    animation: blink 7s infinite
}

@keyframes blink {

    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        transform: scaleY(1)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: scaleY(0.1)
    }
}

@keyframes bouncing-mascot {

    0%,
    20%,
    50%,
    80%,
    to {
        transform: translateY(0)
    }

    40% {
        transform: translateY(-30px)
    }

    60% {
        transform: translateY(-15px)
    }
}

.stores-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

@media (min-width:768px) {
    .stores-buttons {
        gap: 16px;
        justify-content: flex-start
    }
}

.stores-buttons .app-button {
    display: block;
    transition: 0.3s
}

.stores-buttons .app-button:hover {
    opacity: 0.75
}

.stores-buttons img {
    width: 100%;
    height: auto;
    max-width: 193px;
    max-height: 40px
}

@media (min-width:768px) {
    .stores-buttons img {
        max-height: 60px
    }
}

:root {
    --orbit-size: 320px
}

@media (min-width:768px) {
    :root {
        --orbit-size: 440px
    }
}

@media (min-width:1200px) {
    :root {
        --orbit-size: 520px
    }
}

@media (min-width:1440px) {
    :root {
        --orbit-size: 580px
    }
}

.hero-rotating-icons {
    position: relative;
    width: var(--orbit-size);
    height: var(--orbit-size);
    margin-left: -30px
}

@media (min-width:1440px) {
    .hero-rotating-icons {
        margin-left: 0
    }
}

.hero-rotating-icons .hero-rotating-path {
    position: absolute;
    left: 30px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--lightPink);
    border-radius: 50%
}

.hero-rotating-icons .hero-rotating-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 -30px;
    overflow: hidden;
    background: var(--white);
    transform-origin: calc(var(--orbit-size) / 2) center;
    animation: rotating-animation 300s linear infinite;
    box-shadow: 0 0 18px var(--lightPink5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.hero-rotating-icons .hero-rotating-item img {
    transform: scale(0.7)
}

@media (min-width:768px) {
    .hero-rotating-icons .hero-rotating-item img {
        transform: scale(1)
    }
}

.hero-rotating-item:first-child {
    transform: rotate(0deg) translateX(calc(var(--orbit-size) / 2)) rotate(0deg);
    animation-delay: 0s
}

.hero-rotating-item:nth-child(2) {
    transform: rotate(51.4285714286deg) translateX(calc(var(--orbit-size) / 2)) rotate(-51.4285714286deg);
    animation-delay: -42.8571428571s
}

.hero-rotating-item:nth-child(3) {
    transform: rotate(102.8571428571deg) translateX(calc(var(--orbit-size) / 2)) rotate(-102.8571428571deg);
    animation-delay: -85.7142857143s
}

.hero-rotating-item:nth-child(4) {
    transform: rotate(154.2857142857deg) translateX(calc(var(--orbit-size) / 2)) rotate(-154.2857142857deg);
    animation-delay: -128.5714285714s
}

.hero-rotating-item:nth-child(5) {
    transform: rotate(205.7142857143deg) translateX(calc(var(--orbit-size) / 2)) rotate(-205.7142857143deg);
    animation-delay: -171.4285714286s
}

.hero-rotating-item:nth-child(6) {
    transform: rotate(257.1428571429deg) translateX(calc(var(--orbit-size) / 2)) rotate(-257.1428571429deg);
    animation-delay: -214.2857142857s
}

.hero-rotating-item:nth-child(7) {
    transform: rotate(308.5714285714deg) translateX(calc(var(--orbit-size) / 2)) rotate(-308.5714285714deg);
    animation-delay: -257.1428571429s
}

@keyframes rotating-animation {
    0% {
        transform: rotate(0deg) translateX(calc(var(--orbit-size) / 2)) rotate(0deg)
    }

    to {
        transform: rotate(360deg) translateX(calc(var(--orbit-size) / 2)) rotate(-360deg)
    }
}

.slick-slider {
    position: relative;
    user-select: none
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: none
}

.slick-list.dragging {
    cursor: pointer
}

.slick-slider .slick-list,
.slick-slider .slick-track {
    transform: translate3d(0, 0, 0)
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    outline: none;
    display: none
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

.slick-dots {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0;
    line-height: 0
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    border: 0;
    width: 22px;
    height: 7px;
    display: block;
    border-radius: 4px;
    background: var(--lightOrange2);
    transition: 0.3s;
    cursor: pointer
}

.slick-dots li button:hover {
    background: var(--secondary)
}

.slick-dots li.slick-active button {
    width: 42px;
    background: var(--secondary)
}

.brands-section {
    margin: 0 0 10px
}

@media (min-width:768px) {
    .brands-section {
        margin: 0 0 30px
    }
}

@media (min-width:1024px) {
    .brands-section {
        margin: 0 0 60px
    }
}

@media (min-width:1024px) {
    .brands-section.addition .brands-slider {
        padding: 30px 0 0
    }
}

.brands-slider {
    overflow: hidden
}

@media (min-width:768px) {
    .brands-slider {
        padding: 25px 0 0
    }
}

@media (min-width:1024px) {
    .brands-slider {
        padding: 50px 0 0
    }
}

.brands-slider .slick-slide {
    margin-right: -30px;
    transform: scale(0.85)
}

@media (min-width:768px) {
    .brands-slider .slick-slide {
        margin-right: -15px;
        transform: scale(1);
        transform: scale(0.92)
    }
}

@media (min-width:1024px) {
    .brands-slider .slick-slide {
        padding: 0 5px;
        margin-right: 0;
        transform: scale(1)
    }
}

@media (min-width:1200px) {
    .brands-slider .slick-slide {
        padding: 0 15px
    }
}

@media (min-width:1440px) {
    .brands-slider .slick-slide {
        padding: 0 30px
    }
}

.main-section {
    overflow: hidden;
    padding: 50px 0 30px
}

@media (min-width:768px) {
    .main-section {
        padding: 60px 0 40px
    }
}

@media (min-width:1200px) {
    .main-section {
        padding: 120px 0 60px
    }
}

.main-section .h1 {
    letter-spacing: -0.015em;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 10px;
    position: relative;
    z-index: 1;
    margin: -25px 0 0
}

@media (min-width:768px) {
    .main-section .h1 {
        margin-top: -30px
    }
}

@media (min-width:1024px) {
    .main-section .h1 {
        margin-top: -32px;
        line-height: 0.9
    }
}

@media (min-width:1200px) {
    .main-section .h1 {
        margin-top: -35px
    }
}

@media (min-width:1440px) {
    .main-section .h1 {
        margin-top: -50px
    }
}

@media (max-width:767px) {
    .main-section .h1 {
        font-size: 48px
    }
}

.main-section .h1:after {
    width: 14px;
    height: 14px;
    content: "";
    background: var(--textDark);
    border-radius: 100%;
    display: block;
    margin-bottom: 10px
}

@media (min-width:768px) {
    .main-section .h1:after {
        width: 20px;
        height: 20px;
        margin-bottom: 13px
    }
}

@media (min-width:1024px) {
    .main-section .h1:after {
        width: 24px;
        height: 24px;
        margin-bottom: 12px
    }
}

@media (min-width:1200px) {
    .main-section .h1:after {
        width: 28px;
        height: 28px
    }
}

.main-section .section-holder {
    background: var(--lightPink3);
    border-radius: 30px;
    padding: 0 20px 5px;
    display: flex;
    flex-direction: column
}

@media (min-width:1024px) {
    .main-section .section-holder {
        padding: 0 40px 5px;
        border-radius: 50px
    }
}

@media (min-width:1200px) {
    .main-section .section-holder {
        padding: 0 80px 5px;
        border-radius: 80px
    }
}

.main-section .mascot-image {
    position: absolute;
    right: 30.5%;
    top: -59px;
    width: 80px;
    height: 112px
}

.main-section .mascot-image .eyes {
    position: absolute;
    width: 32px;
    height: 16px;
    top: 21px;
    left: 23px;
    transform-origin: center;
    animation: blink 7s infinite
}

@media (min-width:768px) {
    .main-section.about .article-holder {
        flex-direction: row-reverse
    }
}

.main-section.about .article-holder .image-holder {
    margin-bottom: 35px
}

@media (min-width:768px) {
    .main-section.about .article-holder .image-holder {
        margin-left: -15px
    }
}

@media (min-width:1200px) {
    .main-section.about .article-holder .image-holder {
        margin-left: -30px;
        padding-top: 40px
    }
}

.main-section.about .article-holder .image-holder img {
    mix-blend-mode: darken;
    max-width: 472px
}

.main-section.about .article-holder p span {
    font-weight: 500;
    color: var(--orange)
}

.main-section.about .counter-list {
    padding-top: 25px
}

.main-section.about .counter-list .numbers {
    color: var(--orange)
}

.main-section.solutions .section-holder {
    background: var(--skyBlue)
}

.main-section.solutions .section-holder p span {
    font-weight: 500;
    color: var(--primary)
}

@media (min-width:768px) {
    .main-section.solutions .section-holder .textbox {
        max-width: 538px
    }
}

.main-section.solutions .article-holder {
    align-items: center
}

.main-section.solutions .article-holder .image-holder {
    position: relative;
    left: 20px
}

@media (min-width:768px) {
    .main-section.solutions .article-holder .image-holder {
        left: 0
    }
}

@media (min-width:768px) {
    .main-section.impact .h1 br {
        display: none
    }
}

.main-section.impact .section-holder {
    background: var(--lightOrange);
    padding-bottom: 35px
}

@media (min-width:1024px) {
    .main-section.impact .section-holder {
        padding-bottom: 50px
    }
}

@media (min-width:1200px) {
    .main-section.impact .section-holder {
        padding-bottom: 78px
    }
}

.main-section.impact .section-holder.slide-index-0 .image-holder,
.main-section.impact .section-holder.slide-index-2 .image-holder {
    left: 25px
}

@media (min-width:768px) {

    .main-section.impact .section-holder.slide-index-0 .image-holder,
    .main-section.impact .section-holder.slide-index-2 .image-holder {
        left: 0
    }
}

.main-section.impact .section-holder.slide-index-1,
.main-section.impact .section-holder.slide-index-4 {
    background: var(--skyBlue)
}

.main-section.impact .section-holder.slide-index-1 .article-holder p span,
.main-section.impact .section-holder.slide-index-4 .article-holder p span {
    color: var(--primary)
}

.main-section.impact .section-holder.slide-index-1 .stats-list li:before,
.main-section.impact .section-holder.slide-index-4 .stats-list li:before {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.8' d='M10.6598 9.253L2.13961 17.7732M11.5732 2.561C12.6656 3.28585 13.7156 4.14041 14.6968 5.12157C15.6864 6.1112 16.5472 7.17084 17.2761 8.2734M7.30104 6.46925L4.72267 5.60979C4.42573 5.51081 4.09867 5.5738 3.85973 5.77598L1.29724 7.94424C0.772635 8.38813 0.921675 9.2329 1.56651 9.47047L3.9945 10.365M9.47692 15.8472L10.3714 18.2752C10.609 18.9201 11.4538 19.0691 11.8977 18.5445L14.0659 15.982C14.2681 15.7431 14.3311 15.416 14.2321 15.1191L13.3727 12.5407M16.3537 1.424L11.9532 2.15741C11.4781 2.2366 11.0422 2.47015 10.7131 2.82194L4.7821 9.16202C3.24473 10.8054 3.28749 13.3719 4.87876 14.9631C6.47003 16.5544 9.03648 16.5972 10.6799 15.0598L17.02 9.12875C17.3717 8.79966 17.6053 8.36383 17.6845 7.88867L18.4179 3.48822C18.6202 2.27418 17.5677 1.22166 16.3537 1.424Z' stroke='%2300a3a1' stroke-width='1.3453' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
}

.main-section.impact .section-holder.slide-index-1 .slick-dots li button,
.main-section.impact .section-holder.slide-index-4 .slick-dots li button {
    background: var(--primaryLight)
}

.main-section.impact .section-holder.slide-index-1 .slick-dots li button:hover,
.main-section.impact .section-holder.slide-index-4 .slick-dots li button:hover {
    background: var(--primary)
}

.main-section.impact .section-holder.slide-index-1 .slick-dots li.slick-active button,
.main-section.impact .section-holder.slide-index-4 .slick-dots li.slick-active button {
    background: var(--primary)
}

.main-section.impact .section-holder.slide-index-2 {
    background: var(--lightPink3)
}

.main-section.impact .section-holder.slide-index-2 .article-holder p span {
    color: var(--orange)
}

.main-section.impact .section-holder.slide-index-2 .stats-list li:before {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.8' d='M10.6598 9.253L2.13961 17.7732M11.5732 2.561C12.6656 3.28585 13.7156 4.14041 14.6968 5.12157C15.6864 6.1112 16.5472 7.17084 17.2761 8.2734M7.30104 6.46925L4.72267 5.60979C4.42573 5.51081 4.09867 5.5738 3.85973 5.77598L1.29724 7.94424C0.772635 8.38813 0.921675 9.2329 1.56651 9.47047L3.9945 10.365M9.47692 15.8472L10.3714 18.2752C10.609 18.9201 11.4538 19.0691 11.8977 18.5445L14.0659 15.982C14.2681 15.7431 14.3311 15.416 14.2321 15.1191L13.3727 12.5407M16.3537 1.424L11.9532 2.15741C11.4781 2.2366 11.0422 2.47015 10.7131 2.82194L4.7821 9.16202C3.24473 10.8054 3.28749 13.3719 4.87876 14.9631C6.47003 16.5544 9.03648 16.5972 10.6799 15.0598L17.02 9.12875C17.3717 8.79966 17.6053 8.36383 17.6845 7.88867L18.4179 3.48822C18.6202 2.27418 17.5677 1.22166 16.3537 1.424Z' stroke='%23fe5611' stroke-width='1.3453' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
}

.main-section.impact .section-holder.slide-index-2 .slick-dots li button {
    background: var(--lightOrange4)
}

.main-section.impact .section-holder.slide-index-2 .slick-dots li button:hover {
    background: var(--orangeAlt)
}

.main-section.impact .section-holder.slide-index-2 .slick-dots li.slick-active button {
    background: var(--orangeAlt)
}

.main-section.impact .section-holder.slide-index-3 {
    background: var(--lightPink)
}

.main-section.impact .section-holder.slide-index-3 .article-holder p span {
    color: var(--secondaryDarkAlt)
}

.main-section.impact .section-holder.slide-index-3 .stats-list li:before {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.8' d='M10.6598 9.253L2.13961 17.7732M11.5732 2.561C12.6656 3.28585 13.7156 4.14041 14.6968 5.12157C15.6864 6.1112 16.5472 7.17084 17.2761 8.2734M7.30104 6.46925L4.72267 5.60979C4.42573 5.51081 4.09867 5.5738 3.85973 5.77598L1.29724 7.94424C0.772635 8.38813 0.921675 9.2329 1.56651 9.47047L3.9945 10.365M9.47692 15.8472L10.3714 18.2752C10.609 18.9201 11.4538 19.0691 11.8977 18.5445L14.0659 15.982C14.2681 15.7431 14.3311 15.416 14.2321 15.1191L13.3727 12.5407M16.3537 1.424L11.9532 2.15741C11.4781 2.2366 11.0422 2.47015 10.7131 2.82194L4.7821 9.16202C3.24473 10.8054 3.28749 13.3719 4.87876 14.9631C6.47003 16.5544 9.03648 16.5972 10.6799 15.0598L17.02 9.12875C17.3717 8.79966 17.6053 8.36383 17.6845 7.88867L18.4179 3.48822C18.6202 2.27418 17.5677 1.22166 16.3537 1.424Z' stroke='%23f47a0c' stroke-width='1.3453' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
}

.main-section.impact .section-holder.slide-index-3 .slick-dots li button {
    background: var(--lightOrange2)
}

.main-section.impact .section-holder.slide-index-3 .slick-dots li button:hover {
    background: var(--lightOrange5)
}

.main-section.impact .section-holder.slide-index-3 .slick-dots li.slick-active button {
    background: var(--lightOrange5)
}

.main-section.impact .article-holder {
    align-items: center
}

@media (min-width:768px) {
    .main-section.impact .article-holder {
        flex-wrap: nowrap;
        gap: 20px;
        padding-bottom: 11px;
        flex-direction: row-reverse
    }
}

@media (min-width:1024px) {
    .main-section.impact .article-holder {
        gap: 30px
    }
}

@media (min-width:768px) {
    .main-section.impact .article-holder .image-holder {
        width: 36.5%;
        flex-shrink: 0;
        padding-bottom: 30px
    }
}

@media (min-width:1024px) {
    .main-section.impact .article-holder .image-holder {
        padding-bottom: 40px
    }
}

@media (min-width:768px) {
    .main-section.impact .article-holder .textbox {
        width: auto;
        flex-grow: 1;
        min-width: 0;
        padding-bottom: 30px
    }
}

@media (min-width:1024px) {
    .main-section.impact .article-holder .textbox {
        padding-bottom: 40px
    }
}

@media (min-width:1200px) {
    .main-section.impact .article-holder .textbox {
        font-size: 24px
    }
}

@media (min-width:768px) {
    .main-section.impact .article-holder p {
        line-height: 1.3
    }
}

.main-section.impact .article-holder p span {
    font-weight: 500;
    color: var(--secondary)
}

.main-section.impact .slick-dots {
    margin-bottom: 15px;
    justify-content: center
}

@media (min-width:768px) {
    .main-section.impact .slick-dots {
        padding-left: 39.3%;
        margin-bottom: 20px;
        justify-content: flex-start
    }
}

.main-section.loved-by .section-holder {
    background: var(--lightPink);
    position: relative;
    padding-bottom: 30px
}

@media (min-width:768px) {
    .main-section.loved-by .section-holder {
        padding-bottom: 40px
    }
}

@media (min-width:1024px) {
    .main-section.loved-by .section-holder {
        padding-bottom: 80px
    }
}

.main-section.loved-by .section-holder:before {
    position: absolute;
    right: 15px;
    top: 20px;
    width: 90px;
    height: 72px;
    content: "";
    background: url("../img/home-2025/ico-quote1.svg") no-repeat;
    background-size: 100% 100%
}

@media (min-width:768px) {
    .main-section.loved-by .section-holder:before {
        right: 20px;
        width: 120px;
        height: 95px
    }
}

@media (min-width:1024px) {
    .main-section.loved-by .section-holder:before {
        right: 40px;
        width: 150px;
        height: 120px
    }
}

@media (min-width:1200px) {
    .main-section.loved-by .section-holder:before {
        width: 211px;
        height: 168px;
        right: 80px;
        top: 32px
    }
}

.main-section.loved-by .section-holder.slide-index-1 {
    background: var(--skyBlue)
}

.main-section.loved-by .section-holder.slide-index-1:before {
    background-image: url("../img/home-2025/ico-quote2.svg")
}

.main-section.loved-by .section-holder.slide-index-1 .testimonials-slider blockquote .author-name {
    color: var(--primary)
}

.main-section.loved-by .section-holder.slide-index-1 .testimonials-slider .slick-arrow {
    background-color: var(--primary)
}

.main-section.loved-by .section-holder.slide-index-1 .testimonials-slider .slick-arrow:hover {
    background-color: var(--primarydark)
}

.main-section.loved-by .section-holder.slide-index-1 .testimonials-slider .slick-arrow.slick-disabled {
    background-color: var(--primaryLight)
}

.main-section.loved-by .section-holder.slide-index-1 .testimonials-slider-nav button:after {
    background: var(--primary)
}

.main-section.loved-by .section-holder.slide-index-2 {
    background: var(--lightPink3)
}

.main-section.loved-by .section-holder.slide-index-2:before {
    background-image: url("../img/home-2025/ico-quote3.svg")
}

.main-section.loved-by .section-holder.slide-index-2 .testimonials-slider blockquote .author-name {
    color: var(--orangeAlt)
}

.main-section.loved-by .section-holder.slide-index-2 .testimonials-slider .slick-arrow {
    background-color: var(--orangeAlt)
}

.main-section.loved-by .section-holder.slide-index-2 .testimonials-slider .slick-arrow:hover {
    background-color: var(--orange)
}

.main-section.loved-by .section-holder.slide-index-2 .testimonials-slider .slick-arrow.slick-disabled {
    background-color: var(--lightOrange4)
}

.main-section.loved-by .section-holder.slide-index-2 .testimonials-slider-nav button:after {
    background: var(--orangeAlt2)
}

.main-section.loved-by .section-content {
    padding-top: 40px
}

@media (min-width:768px) {
    .main-section.loved-by .section-content {
        padding-top: 70px
    }
}

.main-section.contact {
    padding-bottom: 60px
}

@media (min-width:1024px) {
    .main-section.contact {
        padding-bottom: 90px
    }
}

@media (min-width:1200px) {
    .main-section.contact {
        padding-bottom: 120px
    }
}

.main-section.contact .section-holder {
    background: var(--lightPink4);
    position: relative
}

@media (min-width:768px) {
    .main-section.contact .section-holder {
        padding-bottom: 40px
    }
}

@media (min-width:1024px) {
    .main-section.contact .section-holder {
        padding-bottom: 80px
    }
}

@media (min-width:1200px) {
    .main-section.contact .section-holder {
        padding-bottom: 120px
    }
}

@media (min-width:768px) {
    .main-section.contact .section-content {
        padding-top: 80px
    }
}

@media (min-width:1024px) {
    .main-section.contact .section-content {
        padding-top: 80px
    }
}

@media (min-width:1200px) {
    .main-section.contact .section-content {
        padding-left: 30px;
        padding-right: 30px
    }
}

.main-section.team {
    padding: 40px 0
}

@media (min-width:768px) {
    .main-section.team {
        overflow: visible;
        padding: 90px 0 112px
    }
}

.main-section.team .container {
    position: relative
}

.main-section.team .h1 {
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 50px;
    letter-spacing: 0.025em
}

@media (min-width:768px) {
    .main-section.team .h1 {
        letter-spacing: 0.085em;
        pointer-events: none
    }
}

@media (min-width:1024px) {
    .main-section.team .h1 {
        margin-left: 20px;
        margin-bottom: 70px
    }
}

@media (min-width:1200px) {
    .main-section.team .h1 {
        margin-left: 40px;
        margin-bottom: 90px
    }
}

@media (min-width:1440px) {
    .main-section.team .h1 {
        font-size: 108px
    }
}

.main-section.team .h1 br {
    display: none
}

.main-section.team.pause-animation .team-rotating-item {
    animation-play-state: paused
}

.main-section.team.pause-animation .team-member:hover {
    z-index: 3
}

.main-section.aep-effect .section-holder {
    background: var(--skyBlue)
}

.main-section.digital-features .section-holder {
    background: var(--lightPink3);
    padding-bottom: 35px;
    text-align: center
}

@media (min-width:768px) {
    .main-section.digital-features .section-holder {
        padding-bottom: 35px
    }
}

@media (min-width:1024px) {
    .main-section.digital-features .section-holder {
        padding-bottom: 46px
    }
}

@media (min-width:1200px) {
    .main-section.digital-features .section-holder {
        padding-bottom: 57px
    }
}

.main-section.digital-features .section-holder .section-content {
    padding-top: 5px
}

@media (min-width:768px) {
    .main-section.digital-features .section-holder .section-content {
        padding-top: 0
    }
}

.main-section.digital-features .section-holder .image-holder {
    margin: 0 0 -6.25%;
    position: relative;
    overflow: hidden;
    max-width: 910px;
    border-radius: 11% 11% 27% 27%
}

@media (min-width:768px) {
    .main-section.digital-features .section-holder .image-holder {
        margin: 0 auto -5.5%;
        border-radius: 11% 11% 27% 27%
    }
}

@media (min-width:1024px) {
    .main-section.digital-features .section-holder .image-holder {
        margin-bottom: -5.4%
    }
}

@media (min-width:1200px) {
    .main-section.digital-features .section-holder .image-holder {
        margin-bottom: -4.8%
    }
}

.main-section.digital-features .section-holder .image-holder:before {
    content: "";
    width: 100%;
    display: block;
    padding-top: 56.5%
}

.main-section.digital-features .section-holder .image-holder iframe,
.main-section.digital-features .section-holder .image-holder video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 109%;
    height: 109%;
    transform: translate(-49.2%, -50%);
    border: 0;
    object-fit: cover;
    object-position: center;
    margin-top: -1.5%
}

@media (min-width:768px) {

    .main-section.digital-features .section-holder .image-holder iframe,
    .main-section.digital-features .section-holder .image-holder video {
        width: 110%;
        height: 110%;
        transform: translate(-49.3%, -50%);
        margin-top: -1.5%
    }
}

.main-section.digital-features .section-holder .textbox {
    max-width: 910px;
    margin: 0 auto 30px;
    color: var(--text-Dark3);
    position: relative;
    z-index: 1;
    background: var(--lightPink3);
    padding-top: 9%
}

@media (min-width:768px) {
    .main-section.digital-features .section-holder .textbox {
        padding-top: 4%
    }
}

.main-section.digital-features .section-holder .h1 {
    margin-bottom: 15px;
    text-align: left
}

@media (min-width:768px) {
    .main-section.digital-features .section-holder .h1 {
        line-height: 1.1;
        margin-bottom: 35px
    }
}

.main-section.digital-features .section-holder h3 {
    color: var(--orange);
    margin: 0 0 16px
}

@media (min-width:1200px) {
    .main-section.digital-features .section-holder p {
        font-size: 24px;
        line-height: 1.333
    }
}

.main-section.digital-features .section-holder.tab-tab01 {
    background: var(--lightPink3)
}

.main-section.digital-features .section-holder.tab-tab01 .textbox {
    background: var(--lightPink3)
}

.main-section.digital-features .section-holder.tab-tab01 .textbox h3 {
    color: var(--orange)
}

.main-section.digital-features .section-holder.tab-tab02 {
    background: var(--lightPink)
}

.main-section.digital-features .section-holder.tab-tab02 .textbox {
    background: var(--lightPink)
}

.main-section.digital-features .section-holder.tab-tab02 .textbox h3 {
    color: var(--yellow)
}

.main-section.digital-features .section-holder.tab-tab03 {
    background: var(--skyBlue)
}

.main-section.digital-features .section-holder.tab-tab03 .textbox {
    background: var(--skyBlue)
}

.main-section.digital-features .section-holder.tab-tab03 .textbox h3 {
    color: var(--primary)
}

.main-section.digital-features .section-holder.tab-tab04 {
    background: var(--lightPink3)
}

.main-section.digital-features .section-holder.tab-tab04 .textbox {
    background: var(--lightPink3)
}

.main-section.digital-features .section-holder.tab-tab04 .textbox h3 {
    color: var(--orange)
}

.main-section.digital-features .section-holder.tab-tab05 {
    background: var(--lightPink)
}

.main-section.digital-features .section-holder.tab-tab05 .textbox {
    background: var(--lightPink3)
}

.main-section.digital-features .section-holder.tab-tab05 .textbox h3 {
    color: var(--yellow)
}

.main-section.digital-features .section-holder.tab-tab06 {
    background: var(--skyBlue)
}

.main-section.digital-features .section-holder.tab-tab06 .textbox {
    background: var(--skyBlue)
}

.main-section.digital-features .section-holder.tab-tab06 .textbox h3 {
    color: var(--primary)
}

.main-section.our-books .section-holder {
    background: var(--primaryLightAlt);
    padding-bottom: 45px;
    text-align: center
}

@media (min-width:768px) {
    .main-section.our-books .section-holder {
        padding-bottom: 55px
    }
}

@media (min-width:1024px) {
    .main-section.our-books .section-holder {
        padding-bottom: 70px
    }
}

.main-section.our-books .section-holder .h1 {
    text-align: left
}

.main-section.faq .h1 {
    margin-bottom: 25px;
    line-height: 1
}

@media (min-width:768px) {
    .main-section.faq .h1 {
        margin-bottom: 50px
    }
}

.main-section.faq .h1:after {
    display: none
}

.main-section.faq .faq-holder {
    position: relative
}

.main-section.faq .faq-mascot {
    width: 80px;
    position: absolute;
    right: -5px;
    bottom: calc(100% - 20px)
}

@media (min-width:768px) {
    .main-section.faq .faq-mascot {
        right: 0;
        width: 150px;
        bottom: calc(100% - 36px)
    }
}

@media (min-width:1200px) {
    .main-section.faq .faq-mascot {
        bottom: calc(100% - 48px);
        width: 200px
    }
}

@media (min-width:1440px) {
    .main-section.faq .faq-mascot {
        width: 245px;
        bottom: calc(100% - 60px)
    }
}

.article-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-weight: 400;
    padding: 40px 0;
    flex-direction: column-reverse
}

@media (min-width:768px) {
    .article-holder {
        flex-direction: row;
        padding: 50px 0
    }
}

@media (min-width:1200px) {
    .article-holder {
        font-size: 20px;
        line-height: 1.5;
        padding: 70px 0
    }
}

.article-holder .image-holder {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 300px;
    margin: 0 auto 20px
}

@media (min-width:768px) {
    .article-holder .image-holder {
        width: 42%;
        max-width: inherit;
        margin: 0
    }
}

@media (min-width:1024px) {
    .article-holder .image-holder {
        width: 46%
    }
}

.article-holder .textbox {
    width: 100%
}

@media (min-width:768px) {
    .article-holder .textbox {
        width: 55%
    }
}

@media (min-width:1024px) {
    .article-holder .textbox {
        width: 52%
    }
}

.article-holder h2 {
    letter-spacing: -0.015em;
    font-weight: 600;
    margin: 0 0 20px
}

@media (min-width:768px) {
    .article-holder h2 {
        margin: 0 0 27px
    }
}

@media (max-width:767px) {
    .article-holder h2 {
        line-height: 1.35;
        font-size: 30px
    }
}

.article-holder .bulb-image {
    position: absolute;
    right: 5%;
    top: 38%;
    transform: translateY(-50%) scale(0.8)
}

@media (min-width:1024px) {
    .article-holder .bulb-image {
        right: 18%;
        transform: translateY(-50%) scale(1)
    }
}

.article-holder .planet-box {
    width: 288px;
    margin-left: auto;
    position: relative
}

@media (min-width:768px) {
    .article-holder .planet-box {
        margin-right: -5%
    }
}

@media (min-width:1024px) {
    .article-holder .planet-box {
        width: 402px
    }
}

@media (min-width:1440px) {
    .article-holder .planet-box {
        margin: 0 0 0 auto
    }
}

@media (min-width:768px) {
    .article-holder:nth-child(2n) {
        flex-direction: row-reverse
    }
}

.article-holder.hybrid {
    margin-top: 50px
}

@media (min-width:768px) {
    .article-holder.hybrid {
        margin-top: 35px
    }
}

@media (min-width:768px) {
    .article-holder.hybrid .image-holder {
        width: 47.7%;
        margin-top: 20px;
        margin-right: -50px
    }
}

@media (min-width:1024px) {
    .article-holder.hybrid .image-holder {
        margin-right: -80px;
        margin-top: 0
    }
}

.article-holder.lms .image-holder {
    padding-right: 45px
}

@media (min-width:1024px) {
    .article-holder.lms .image-holder {
        padding: 0 57px 0 0
    }
}

.article-holder.lms .image-holder img {
    max-width: 357px
}

.blink-line {
    position: absolute;
    animation: bulb-blink 1.5s infinite alternate
}

.blink-line:first-child {
    width: 24px;
    height: 18px;
    top: 37px;
    left: 0;
    animation-delay: 0s
}

.blink-line:nth-child(2) {
    width: 18px;
    height: 25px;
    top: 0;
    left: 27.5%;
    animation-delay: 0.5s
}

.blink-line:nth-child(3) {
    width: 19px;
    height: 25px;
    top: 3px;
    left: 59.6%;
    animation-delay: 1s
}

.blink-line:nth-child(4) {
    width: 25px;
    height: 18px;
    left: auto;
    top: 40px;
    right: 3px;
    animation-delay: 1.5s
}

.blink-line:nth-child(5) {
    width: 26px;
    height: 18px;
    left: auto;
    top: 93px;
    right: 0;
    animation-delay: 2s
}

@keyframes bulb-blink {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.orbit-planet {
    position: absolute;
    left: 32px;
    top: -25px;
    width: 170px;
    height: 170px;
    border-radius: 100%;
    transform: skew(-42deg, 21deg)
}

@media (min-width:1024px) {
    .orbit-planet {
        width: 230px;
        height: 230px;
        left: 55px;
        top: -27px
    }
}

.orbit-planet:before {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    content: "";
    border: 3px solid #c0c0c0;
    border-radius: 100%;
    margin-top: 17px;
    margin-left: 17px
}

@media (min-width:1024px) {
    .orbit-planet:before {
        margin-top: 25px;
        margin-left: 20px
    }
}

.orbit-planet .mascot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 34px;
    transform-origin: 0 0
}

@media (min-width:1024px) {
    .orbit-planet .mascot {
        width: 42px;
        height: 42px
    }
}

.orbit-planet .mascot img {
    width: 100%;
    height: 100%;
    transform: skew(42deg, -21deg)
}

.orbit-planet .mascot1 {
    animation: orbit-planet-small 120s linear infinite
}

@media (min-width:1024px) {
    .orbit-planet .mascot1 {
        animation: orbit-planet-large 120s linear infinite
    }
}

.orbit-planet .mascot2 {
    animation: orbit-planet-small 120s linear infinite;
    animation-delay: -40s
}

@media (min-width:1024px) {
    .orbit-planet .mascot2 {
        animation: orbit-planet-large 120s linear infinite;
        animation-delay: -40s
    }
}

.orbit-planet .mascot3 {
    animation: orbit-planet-small 120s linear infinite;
    animation-delay: -80s
}

@media (min-width:1024px) {
    .orbit-planet .mascot3 {
        animation: orbit-planet-large 120s linear infinite;
        animation-delay: -80s
    }
}

@keyframes orbit-planet-small {
    0% {
        transform: rotate(0deg) translateX(85px) rotate(0deg)
    }

    to {
        transform: rotate(360deg) translateX(85px) rotate(-360deg)
    }
}

@keyframes orbit-planet-large {
    0% {
        transform: rotate(0deg) translateX(115px) rotate(0deg)
    }

    to {
        transform: rotate(360deg) translateX(115px) rotate(-360deg)
    }
}

.stats-list {
    list-style: none;
    padding: 10px 0 0;
    margin: -5px;
    display: flex;
    flex-wrap: wrap;
    text-align: left
}

@media (min-width:1024px) {
    .stats-list {
        font-size: 14px;
        padding: 36px 0 0
    }
}

@media (min-width:1200px) {
    .stats-list {
        font-size: 16px
    }
}

@media (min-width:1440px) {
    .stats-list {
        font-size: 18px
    }
}

.stats-list li {
    padding: 5px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%
}

@media (min-width:768px) {
    .stats-list li {
        justify-content: flex-start
    }
}

@media (min-width:1024px) {
    .stats-list li {
        width: 55%
    }
}

@media (min-width:1024px) {
    .stats-list li:nth-child(odd) {
        width: 45%;
        padding-right: 15px
    }
}

.stats-list li:before {
    width: 18px;
    height: 18px;
    content: "";
    margin-top: 4px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.8' d='M10.6598 9.253L2.13961 17.7732M11.5732 2.561C12.6656 3.28585 13.7156 4.14041 14.6968 5.12157C15.6864 6.1112 16.5472 7.17084 17.2761 8.2734M7.30104 6.46925L4.72267 5.60979C4.42573 5.51081 4.09867 5.5738 3.85973 5.77598L1.29724 7.94424C0.772635 8.38813 0.921675 9.2329 1.56651 9.47047L3.9945 10.365M9.47692 15.8472L10.3714 18.2752C10.609 18.9201 11.4538 19.0691 11.8977 18.5445L14.0659 15.982C14.2681 15.7431 14.3311 15.416 14.2321 15.1191L13.3727 12.5407M16.3537 1.424L11.9532 2.15741C11.4781 2.2366 11.0422 2.47015 10.7131 2.82194L4.7821 9.16202C3.24473 10.8054 3.28749 13.3719 4.87876 14.9631C6.47003 16.5544 9.03648 16.5972 10.6799 15.0598L17.02 9.12875C17.3717 8.79966 17.6053 8.36383 17.6845 7.88867L18.4179 3.48822C18.6202 2.27418 17.5677 1.22166 16.3537 1.424Z' stroke='%23fbb03b' stroke-width='1.3453' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
}

.testimonials-slider-nav {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 0 0 5px
}

@media (min-width:768px) {
    .testimonials-slider-nav {
        gap: 30px;
        padding: 0 0 27px
    }
}

@media (min-width:1024px) {
    .testimonials-slider-nav {
        gap: 45px
    }
}

.testimonials-slider-nav button {
    border: 0;
    padding: 7px 0 10px;
    display: block;
    cursor: pointer;
    position: relative;
    color: var(--textColor);
    background: transparent;
    border-bottom: 5px solid transparent;
    font: 400 19px/1.4 "Poppins", Arial, sans-serif
}

@media (min-width:768px) {
    .testimonials-slider-nav button {
        font-size: 24px;
        padding: 7px;
        font-size: 18px
    }
}

@media (min-width:1024px) {
    .testimonials-slider-nav button {
        font-size: 30px
    }
}

.testimonials-slider-nav button:after {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 5px;
    background: var(--secondary);
    transition: 0.5s;
    width: 0;
    content: ""
}

.testimonials-slider-nav button.active:after,
.testimonials-slider-nav button:hover:after {
    width: 100%
}

.testimonials-slider .slick-track {
    display: flex
}

.testimonials-slider .slick-slide {
    height: auto
}

.testimonials-slider blockquote {
    font-size: 18px;
    line-height: 1.4;
    color: var(--textDark2);
    letter-spacing: -0.02em;
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column
}

@media (min-width:768px) {
    .testimonials-slider blockquote {
        font-size: 24px;
        line-height: 1.3
    }
}

@media (min-width:1024px) {
    .testimonials-slider blockquote {
        font-size: 30px;
        line-height: 1.222
    }
}

@media (min-width:1200px) {
    .testimonials-slider blockquote {
        font-size: 36px
    }
}

.testimonials-slider blockquote q {
    display: flex;
    align-items: center;
    quotes: none;
    margin: 0 0 20px;
    width: 100%;
    padding: 15px 0;
    min-height: 180px;
    flex-grow: 1;
    min-height: 0
}

@media (min-width:768px) {
    .testimonials-slider blockquote q {
        margin: 0 0 25px;
        min-height: 150px
    }
}

@media (min-width:1024px) {
    .testimonials-slider blockquote q {
        min-height: 205px
    }
}

.testimonials-slider blockquote .author-info {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 15px
}

@media (min-width:768px) {
    .testimonials-slider blockquote .author-info {
        flex-direction: row;
        align-items: center;
        margin-bottom: 0
    }
}

@media (min-width:1024px) {
    .testimonials-slider blockquote .author-info {
        padding-right: 200px
    }
}

.testimonials-slider blockquote .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    overflow: hidden
}

@media (min-width:768px) {
    .testimonials-slider blockquote .author-avatar {
        width: 56px;
        height: 56px
    }
}

@media (min-width:1024px) {
    .testimonials-slider blockquote .author-avatar {
        width: 64px;
        height: 64px
    }
}

.testimonials-slider blockquote .author-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 100%
}

.testimonials-slider blockquote .author-name {
    display: block;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--secondary);
    font-style: normal;
    letter-spacing: normal;
    padding-right: 110px
}

@media (min-width:768px) {
    .testimonials-slider blockquote .author-name {
        font-size: 20px
    }
}

@media (min-width:1024px) {
    .testimonials-slider blockquote .author-name {
        font-size: 24px
    }
}

@media (min-width:1200px) {
    .testimonials-slider blockquote .author-name {
        font-size: 30px
    }
}

.testimonials-slider .slick-arrow {
    width: 44px;
    height: 44px;
    border: 0;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    border-radius: 100%;
    background: var(--secondary) url("../img/home-2025/arrow.svg") no-repeat;
    background-position: 50% 50%;
    background-size: 8px 18px;
    transition: 0.3s;
    z-index: 1
}

@media (min-width:768px) {
    .testimonials-slider .slick-arrow {
        bottom: 2px
    }
}

@media (min-width:1024px) {
    .testimonials-slider .slick-arrow {
        width: 64px;
        height: 64px;
        background-size: 11px 20px
    }
}

.testimonials-slider .slick-arrow:hover {
    background-color: var(--secondaryDark)
}

.testimonials-slider .slick-arrow.slick-prev {
    transform: rotate(180deg);
    left: auto;
    right: 55px
}

@media (min-width:1024px) {
    .testimonials-slider .slick-arrow.slick-prev {
        right: 75px
    }
}

.testimonials-slider .slick-arrow.slick-prev.slick-disabled {
    opacity: 0
}

.testimonials-slider .slick-arrow.slick-next {
    right: 0
}

.testimonials-slider .slick-arrow.slick-disabled {
    background-color: var(--lightOrange2)
}

.blockquote-slideshow {
    height: 100%
}

.blockquote-slideshow .slick-track {
    display: flex
}

.blockquote-slideshow .slick-list,
.blockquote-slideshow .slick-track {
    height: 100%
}

.blockquote-slideshow .slick-slide {
    height: auto
}

.contact-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding-top: 30px;
    padding-bottom: 35px
}

@media (min-width:768px) {
    .contact-block {
        flex-direction: row;
        padding-top: 0;
        padding-bottom: 0
    }
}

.contact-block .image-holder {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 300px;
    margin: 0 auto 35px
}

@media (min-width:768px) {
    .contact-block .image-holder {
        width: 44%;
        max-width: inherit;
        margin: 0
    }
}

@media (min-width:768px) {
    .contact-block .form-holder {
        width: 50%;
        max-width: 495px
    }
}

.contact-form {
    width: 100%
}

.contact-form .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px
}

@media (min-width:768px) {
    .contact-form .form-row {
        flex-wrap: nowrap
    }
}

@media (min-width:1024px) {
    .contact-form .form-row {
        gap: 15px;
        margin-bottom: 15px
    }
}

@media (min-width:1200px) {
    .contact-form .form-row {
        gap: 20px;
        margin-bottom: 20px
    }
}

.contact-form .form-field {
    width: 100%
}

@media (min-width:768px) {
    .contact-form .form-field {
        width: auto;
        flex: 1
    }
}

.contact-form .form-field .iti {
    display: flex
}

.contact-form .text-input {
    width: 100%
}

.contact-form .button-holder {
    padding-top: 15px;
    position: relative
}

.contact-form .btn {
    width: 100%
}

.custom-checkbox,
.custom-radio {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    line-height: 1;
    cursor: pointer
}

.custom-checkbox .fake-checkbox,
.custom-checkbox .fake-radio,
.custom-radio .fake-checkbox,
.custom-radio .fake-radio {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    position: relative;
    background: var(--white);
    border: 1px solid #d0d5dd;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2)
}

.custom-checkbox .fake-checkbox:after,
.custom-checkbox .fake-radio:after,
.custom-radio .fake-checkbox:after,
.custom-radio .fake-radio:after {
    position: absolute;
    left: 58%;
    top: 18%;
    border: 3px solid var(--white);
    content: "";
    border-top: 0;
    border-right: 0;
    width: 11px;
    height: 7px;
    transform: rotate(-45deg) translate(-50%, -50%);
    opacity: 0;
    transition: 0.3s
}

.custom-checkbox .fake-radio,
.custom-radio .fake-radio {
    border-radius: 100%;
    box-shadow: none
}

.custom-checkbox .fake-radio:after,
.custom-radio .fake-radio:after {
    width: 8px;
    height: 8px;
    border-radius: 100%;
    left: 50%;
    top: 50%;
    background: var(--white);
    transform: translate(-50%, -50%)
}

.custom-checkbox input[type=checkbox],
.custom-checkbox input[type=radio],
.custom-radio input[type=checkbox],
.custom-radio input[type=radio] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0
}

.custom-checkbox input[type=checkbox]:checked+.fake-checkbox,
.custom-checkbox input[type=checkbox]:checked+.fake-radio,
.custom-checkbox input[type=radio]:checked+.fake-checkbox,
.custom-checkbox input[type=radio]:checked+.fake-radio,
.custom-radio input[type=checkbox]:checked+.fake-checkbox,
.custom-radio input[type=checkbox]:checked+.fake-radio,
.custom-radio input[type=radio]:checked+.fake-checkbox,
.custom-radio input[type=radio]:checked+.fake-radio {
    background: var(--lightOrange3);
    border-color: var(--lightOrange3)
}

.custom-checkbox input[type=checkbox]:checked+.fake-checkbox:after,
.custom-checkbox input[type=checkbox]:checked+.fake-radio:after,
.custom-checkbox input[type=radio]:checked+.fake-checkbox:after,
.custom-checkbox input[type=radio]:checked+.fake-radio:after,
.custom-radio input[type=checkbox]:checked+.fake-checkbox:after,
.custom-radio input[type=checkbox]:checked+.fake-radio:after,
.custom-radio input[type=radio]:checked+.fake-checkbox:after,
.custom-radio input[type=radio]:checked+.fake-radio:after {
    opacity: 1
}

.iti {
    font-size: 15px
}

@media (min-width:1024px) {
    .iti {
        font-size: 16px
    }
}

.iti input,
.iti input[type=tel],
.iti input[type=text] {
    margin-right: 0;
    padding: 14px 20px 14px 113px !important
}

.iti__flag-container {
    width: 94px;
    z-index: 1;
    border-right: 1px solid var(--lightGray)
}

.iti__flag-container .iti__selected-dial-code {
    color: var(--textDark2)
}

.iti__flag-container:hover .iti__selected-flag {
    background: transparent !important
}

.iti__selected-flag {
    z-index: 1;
    position: relative;
    justify-content: center;
    gap: 10px;
    padding: 0 6px 0;
    cursor: pointer
}

.iti__selected-flag .iti__flag {
    display: none
}

.iti__arrow {
    width: 7px;
    height: 7px;
    border: 1px solid var(--lightOrange3);
    border-left: 0;
    border-top: 0;
    transform: rotate(45deg);
    margin-top: -2px;
    transition: 0.3s
}

.iti__arrow--up {
    transform: rotate(-135deg);
    margin-top: 0;
    margin-bottom: -6px
}

.iti__country-list {
    position: absolute;
    z-index: 2;
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0 0 0 -1px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    background-color: var(--white);
    border: 1px solid var(--lightGray);
    white-space: nowrap;
    border-radius: 2px;
    padding: 5px 0;
    max-height: 200px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch
}

.iti__country-list {
    width: 100px
}

.iti__country-list .iti__country-name,
.iti__country-list .iti__flag-box {
    display: none
}

.iti__country-list li {
    cursor: pointer;
    padding: 5px 10px;
    transition: 0.3s
}

.iti__country-list li .iti__dial-code {
    color: var(--textColor);
    transition: 0.3s
}

.iti__country-list li.iti__active,
.iti__country-list li.iti__highlight {
    background: var(--lightOrange3)
}

.iti__country-list li.iti__active .iti__dial-code,
.iti__country-list li.iti__highlight .iti__dial-code {
    color: var(--white)
}

.iti--separate-dial-code .iti__selected-flag {
    background: transparent
}

:root {
    --teamOrbit-size: 300px;
    --teamOrbit-size2: 240px;
    --teamOrbit-size3: 180px;
    --teamOrbit-radius: calc(var(--teamOrbit-size) / 2);
    --teamOrbit-radius2: calc(var(--teamOrbit-size2) / 2);
    --teamOrbit-radius3: calc(var(--teamOrbit-size3) / 2);
    --teamItem-size: 50px;
    --teamAnimation-duration: 300s
}

@media (min-width:480px) {
    :root {
        --teamOrbit-size: 400px;
        --teamOrbit-size2: 320px;
        --teamOrbit-size3: 210px
    }
}

@media (min-width:768px) {
    :root {
        --teamItem-size: 100px;
        --teamOrbit-size: 600px;
        --teamOrbit-size2: 460px;
        --teamOrbit-size3: 280px
    }
}

@media (min-width:1024px) {
    :root {
        --teamItem-size: 124px;
        --teamOrbit-size: 840px;
        --teamOrbit-size2: 640px;
        --teamOrbit-size3: 340px
    }
}

@media (min-width:1200px) {
    :root {
        --teamOrbit-size: 1000px;
        --teamOrbit-size2: 812px;
        --teamOrbit-size3: 496px
    }
}

@media (min-width:1440px) {
    :root {
        --teamOrbit-size: 1060px
    }
}

.team-rotating-images {
    position: relative;
    width: var(--teamOrbit-size);
    height: var(--teamOrbit-size);
    margin: 0 auto
}

.team-rotating-images .team-rotating-path {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--skyBlue);
    border-radius: 50%
}

.team-rotating-images .team-rotating-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--teamItem-size);
    height: var(--teamItem-size);
    margin: calc(var(--teamItem-size) / -2) 0 0 calc(var(--teamItem-size) / -2);
    transform-origin: var(--teamOrbit-radius) center;
    animation: team-rotating-animation var(--teamAnimation-duration) linear infinite;
    display: flex;
    align-items: center;
    justify-content: center
}

.team-rotating-images .team-rotating-item.hidden {
    opacity: 0;
    visibility: hidden
}

.team-rotating-images .team-rotating-item:hover {
    z-index: 5
}

.team-rotating-images.second {
    width: var(--teamOrbit-size2);
    height: var(--teamOrbit-size2);
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    margin: -120px 0 0 -120px
}

@media (min-width:480px) {
    .team-rotating-images.second {
        margin: -160px 0 0 -160px
    }
}

@media (min-width:768px) {
    .team-rotating-images.second {
        margin: -230px 0 0 -230px
    }
}

@media (min-width:1024px) {
    .team-rotating-images.second {
        margin: -320px 0 0 -320px
    }
}

@media (min-width:1200px) {
    .team-rotating-images.second {
        margin: -406px 0 0 -406px
    }
}

.team-rotating-images.second .team-rotating-path {
    background: var(--skyBlue)
}

.team-rotating-images.second .team-rotating-path:before {
    width: 210px;
    height: 210px;
    background: rgba(var(--skyBlue2), 0.1);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    content: ""
}

@media (min-width:480px) {
    .team-rotating-images.second .team-rotating-path:before {
        width: 270px;
        height: 270px
    }
}

@media (min-width:768px) {
    .team-rotating-images.second .team-rotating-path:before {
        width: 370px;
        height: 370px
    }
}

@media (min-width:1024px) {
    .team-rotating-images.second .team-rotating-path:before {
        width: 500px;
        height: 500px
    }
}

@media (min-width:1200px) {
    .team-rotating-images.second .team-rotating-path:before {
        width: 660px;
        height: 660px
    }
}

.team-rotating-images.second .team-rotating-item {
    transform-origin: var(--teamOrbit-radius2) center;
    animation-name: team-rotating-animation-second
}

.team-rotating-images.thrid {
    width: var(--teamOrbit-size3);
    height: var(--teamOrbit-size3);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--skyBlue2), 0.5);
    margin: -90px 0 0 -90px;
    transform: rotate(35deg)
}

@media (min-width:480px) {
    .team-rotating-images.thrid {
        margin: -105px 0 0 -105px
    }
}

@media (min-width:768px) {
    .team-rotating-images.thrid {
        margin: -140px 0 0 -140px
    }
}

@media (min-width:1024px) {
    .team-rotating-images.thrid {
        margin: -170px 0 0 -170px
    }
}

@media (min-width:1200px) {
    .team-rotating-images.thrid {
        margin: -248px 0 0 -248px
    }
}

.team-rotating-images.thrid .team-rotating-path {
    border: 0
}

.team-rotating-images.thrid .team-rotating-item {
    transform-origin: var(--teamOrbit-radius3) center;
    animation-name: team-rotating-animation-third
}

.team-rotating-images.thrid .team-member {
    transform: rotate(-35deg)
}

.team-rotating-images.thrid .image-mascot {
    width: 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-35deg)
}

@media (min-width:768px) {
    .team-rotating-images.thrid .image-mascot {
        width: 90px
    }
}

@media (min-width:1024px) {
    .team-rotating-images.thrid .image-mascot {
        width: 118px
    }
}

.team-rotating-images.thrid .image-mascot img {
    width: 100%;
    height: auto;
    display: block
}

.team-rotating-item:first-child {
    transform: rotate(0deg) translateX(var(--teamOrbit-radius)) rotate(-0deg);
    animation-delay: calc(-1 * var(--teamAnimation-duration) / 6 * (0))
}

.team-rotating-images.second .team-rotating-item:first-child {
    transform: rotate(0deg) translateX(var(--teamOrbit-radius2)) rotate(-0deg);
    animation-delay: calc(-1 * var(--teamAnimation-duration) / 6 * (0))
}

.team-rotating-item:nth-child(2) {
    transform: rotate(60deg) translateX(var(--teamOrbit-radius)) rotate(-60deg);
    animation-delay: calc(-1 * var(--teamAnimation-duration) / 6 * (1))
}

.team-rotating-images.second .team-rotating-item:nth-child(2) {
    transform: rotate(60deg) translateX(var(--teamOrbit-radius2)) rotate(-60deg);
    animation-delay: calc(-1 * var(--teamAnimation-duration) / 6 * (1))
}

.team-rotating-item:nth-child(3) {
    transform: rotate(120deg) translateX(var(--teamOrbit-radius)) rotate(-120deg);
    animation-delay: calc(-1 * var(--teamAnimation-duration) / 6 * (2))
}

.team-rotating-images.second .team-rotating-item:nth-child(3) {
    transform: rotate(120deg) translateX(var(--teamOrbit-radius2)) rotate(-120deg);
    animation-delay: calc(-1 * var(--teamAnimation-duration) / 6 * (2))
}

.team-rotating-item:nth-child(4) {
    transform: rotate(180deg) translateX(var(--teamOrbit-radius)) rotate(-180deg);
    animation-delay: calc(-1 * var(--teamAnimation-duration) / 6 * (3))
}

.team-rotating-images.second .team-rotating-item:nth-child(4) {
    transform: rotate(180deg) translateX(var(--teamOrbit-radius2)) rotate(-180deg);
    animation-delay: calc(-1 * var(--teamAnimation-duration) / 6 * (3))
}

.team-rotating-item:nth-child(5) {
    transform: rotate(240deg) translateX(var(--teamOrbit-radius)) rotate(-240deg);
    animation-delay: calc(-1 * var(--teamAnimation-duration) / 6 * (4))
}

.team-rotating-images.second .team-rotating-item:nth-child(5) {
    transform: rotate(240deg) translateX(var(--teamOrbit-radius2)) rotate(-240deg);
    animation-delay: calc(-1 * var(--teamAnimation-duration) / 6 * (4))
}

.team-rotating-item:nth-child(6) {
    transform: rotate(300deg) translateX(var(--teamOrbit-radius)) rotate(-300deg);
    animation-delay: calc(-1 * var(--teamAnimation-duration) / 6 * (5))
}

.team-rotating-images.second .team-rotating-item:nth-child(6) {
    transform: rotate(300deg) translateX(var(--teamOrbit-radius2)) rotate(-300deg);
    animation-delay: calc(-1 * var(--teamAnimation-duration) / 6 * (5))
}

@keyframes team-rotating-animation {
    0% {
        transform: rotate(0deg) translateX(var(--teamOrbit-radius)) rotate(0deg)
    }

    to {
        transform: rotate(360deg) translateX(var(--teamOrbit-radius)) rotate(-360deg)
    }
}

@keyframes team-rotating-animation-second {
    0% {
        transform: rotate(0deg) translateX(var(--teamOrbit-radius2)) rotate(0deg)
    }

    to {
        transform: rotate(360deg) translateX(var(--teamOrbit-radius2)) rotate(-360deg)
    }
}

@keyframes team-rotating-animation-third {
    0% {
        transform: rotate(0deg) translateX(var(--teamOrbit-radius3)) rotate(0deg)
    }

    to {
        transform: rotate(360deg) translateX(var(--teamOrbit-radius3)) rotate(-360deg)
    }
}

.team-holder {
    position: relative
}

.team-member {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: 0.3s;
    text-decoration: none
}

.team-member .image-holder {
    width: 42px;
    height: 42px;
    display: block;
    box-shadow: 0 0 35px var(--skyBlue);
    background: var(--white);
    padding: 3px;
    border-radius: 50%
}

@media (min-width:768px) {
    .team-member .image-holder {
        padding: 6px;
        width: 80px;
        height: 80px
    }
}

@media (min-width:1024px) {
    .team-member .image-holder {
        padding: 11px;
        width: 103px;
        height: 103px
    }
}

.team-member .image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    transition: 0.3s
}

.team-member.large .image-holder {
    width: 50px;
    height: 50px
}

@media (min-width:768px) {
    .team-member.large .image-holder {
        width: 90px;
        height: 90px
    }
}

@media (min-width:1024px) {
    .team-member.large .image-holder {
        width: 124px;
        height: 124px
    }
}

.team-member.small .image-holder {
    width: 45px;
    height: 45px
}

@media (min-width:768px) {
    .team-member.small .image-holder {
        width: 66px;
        height: 66px
    }
}

@media (min-width:1024px) {
    .team-member.small .image-holder {
        width: 88px;
        height: 88px
    }
}

.team-member:hover {
    z-index: 2
}

.team-member:hover .team-member-popup {
    opacity: 1;
    visibility: visible
}

.team-member-popup {
    text-align: center;
    width: 70px;
    box-shadow: 0 0 35px var(--skyBlue);
    background: var(--white);
    padding: 3px;
    border-radius: 8px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
    opacity: 0;
    visibility: hidden
}

@media (min-width:480px) {
    .team-member-popup {
        width: 80px
    }
}

@media (min-width:768px) {
    .team-member-popup {
        padding: 5px;
        width: 132px;
        border-radius: 12px
    }
}

@media (min-width:1024px) {
    .team-member-popup {
        padding: 10px;
        width: 160px
    }
}

@media (min-width:1200px) {
    .team-member-popup {
        width: 180px;
        padding: 11px
    }
}

.team-member-popup .image-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px
}

@media (min-width:768px) {
    .team-member-popup .image-wrap {
        border-radius: 12px
    }
}

.team-member-popup .image-wrap:before {
    display: block;
    content: "";
    padding-top: 100%
}

.team-member-popup .image-wrap img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.team-member-popup .text-holder {
    overflow: hidden;
    padding: 7px 5px 2px
}

@media (min-width:480px) {
    .team-member-popup .text-holder {
        padding: 7px 0 2px
    }
}

@media (min-width:768px) {
    .team-member-popup .text-holder {
        padding: 10px 0 3px
    }
}

@media (min-width:1200px) {
    .team-member-popup .text-holder {
        padding: 10px 0 5px
    }
}

.team-member-popup .name {
    display: block;
    color: var(--black);
    font-size: 7px;
    line-height: 1.4;
    font-weight: 500;
    margin: 0 0 3px
}

@media (min-width:480px) {
    .team-member-popup .name {
        font-size: 8px
    }
}

@media (min-width:768px) {
    .team-member-popup .name {
        font-size: 12px;
        margin: 0 0 5px
    }
}

@media (min-width:1200px) {
    .team-member-popup .name {
        font-size: 16px
    }
}

@media (min-width:1340px) {
    .team-member-popup .name {
        font-size: 18px
    }
}

.team-member-popup .designation {
    display: block;
    font-size: 6px;
    line-height: 1.4;
    color: var(--textColor)
}

@media (min-width:480px) {
    .team-member-popup .designation {
        font-size: 7px
    }
}

@media (min-width:768px) {
    .team-member-popup .designation {
        font-size: 10px
    }
}

@media (min-width:1200px) {
    .team-member-popup .designation {
        font-size: 14px
    }
}

@media (min-width:1340px) {
    .team-member-popup .designation {
        font-size: 16px
    }
}
/* privacy policy */

.breadcrumbs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    gap: 16px;
    color: var(--textColor)
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 16px
}

.breadcrumbs li+li:before {
    content: ">";
    font-size: 20px;
    line-height: 1
}

.breadcrumbs li a {
    display: block;
    text-decoration: none;
    color: var(--textColor);
    transition: 0.3s
}

.breadcrumbs li a:hover {
    color: var(--secondary)
}

.main-section.privacy {
    overflow: visible;
    padding: 32px 0
}

@media (min-width:768px) {
    .main-section.privacy {
        padding: 50px 0
    }
}

@media (min-width:768px) {
    .main-section.privacy {
        padding: 80px 0
    }
}

.main-section.privacy .container {
    display: flex;
    gap: 32px
}

.aside-nav {
    width: 220px;
    display: none
}

@media (min-width:768px) {
    .aside-nav {
        display: block
    }
}

@media (min-width:1024px) {
    .aside-nav {
        width: 300px
    }
}

@media (min-width:1440px) {
    .aside-nav {
        width: 340px
    }
}

.aside-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-left: 3px solid #eaecf0;
    position: sticky;
    top: 110px
}

.aside-nav ul li a {
    font-size: 15px;
    font-weight: 500;
    color: var(--textColor);
    display: block;
    text-decoration: none;
    min-height: 36px;
    display: flex;
    align-items: center;
    padding-left: 18px;
    transition: 0.3s;
    position: relative
}

@media (min-width:1024px) {
    .aside-nav ul li a {
        font-size: 16px;
        min-height: 42px
    }
}

@media (min-width:1440px) {
    .aside-nav ul li a {
        font-size: 18px;
        min-height: 47px
    }
}

.aside-nav ul li a:before {
    position: absolute;
    left: -3px;
    width: 3px;
    height: 100%;
    content: "";
    background: var(--primary);
    opacity: 0;
    transition: 0.3s
}

.aside-nav ul li a:hover {
    color: var(--textDark2)
}

.aside-nav ul li a.active {
    color: var(--textDark2)
}

.aside-nav ul li a.active:before {
    opacity: 1
}

.privacy-content {
    font-size: 18px
}

@media (min-width:768px) {
    .privacy-content {
        flex-grow: 1;
        flex-basis: 0;
        min-width: 0
    }
}

@media (min-width:1200px) {
    .privacy-content {
        font-size: 20px;
        padding-right: 10px
    }
}

.privacy-content .privacy-block {
    padding-bottom: 25px
}

.privacy-content h2 {
    padding-top: 120px;
    margin-top: -115px;
    font-weight: 600
}

.privacy-content p strong {
    font-weight: 600
}

.privacy-content ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 30px
}

.privacy-content ul:last-child {
    margin-bottom: 0
}

.privacy-content ul li {
    position: relative;
    padding-left: 20px
}

.privacy-content ul li:before {
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background: #98a2b3;
    content: "";
    border-radius: 50%
}

.privacy-content ol {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 0 0 28px;
    margin: 0 0 30px
}

.privacy-content ol:last-child {
    margin-bottom: 0
}





/* new css */


.page-id-47735 .page-title.bwp-title.dark {
	display: none;
}


.breadcrumbs li + li::before {
    content: "\f105";
    display: inline-block;
    font-family: FontAwesome;
    font-size: calc(var(--font-size-body) + 1px);
  }

  @media (min-width: 1200px) {
    .hero-section.sub-visual h1 {
      font-size: 52px !important;
      line-height: 80.6px;
      font-weight: 700;
      letter-spacing: 0px;
      margin-bottom: 2px;
    }
  }

  @media (min-width: 766px) {
    .hero-section.sub-visual h1 strong {
      font-weight: 700;
    }
  }


  @media (min-width: 1200px) {

  .page-id-47735 .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1180px !important;
  }

  }


  @media (min-width: 1200px) {
    .page-id-47735 .elementor-11196 .elementor-element.elementor-element-e6bea8d{
              max-width: 42%;
      width: 100%;
    }
  }