: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-family: "Poppins", Arial, sans-serif;
    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)
}

.wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 85px
}

@media (min-width:768px) {
    .wrapper {
        padding-top: 114px
    }
}

.container {
    max-width: 1330px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto
}

@media (min-width:768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px
    }
}

.header {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 11;
    padding: 25px 0;
    background: var(--white);
    transition: padding 0.5s
}

@media (min-width:768px) {
    .header {
        padding: 37px 0
    }
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px
}

.header .logo {
    width: 90px;
    display: block;
    position: relative;
    margin-left: 50px;
    top: 1px
}

@media (min-width:480px) {
    .header .logo {
        width: 115px;
        top: 3px
    }
}

@media (min-width:768px) {
    .header .logo {
        width: 133px;
        margin-left: 0
    }
}

.header .logo a {
    display: block
}

.header .logo a img {
    width: 100%;
    height: auto;
    display: block
}

.header .mobile-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 8px
}

@media (min-width:768px) {
    .header .mobile-buttons {
        display: none
    }
}

@media (max-width:767px) {
    .header .mobile-buttons .btn.btn-outline {
        padding-left: 11px;
        padding-right: 11px
    }
}

.header .mobile-buttons .btn.btn-outline .btn-text {
    display: none
}

@media (min-width:768px) {
    .header .mobile-buttons .btn.btn-outline .btn-text {
        display: block
    }
}

.sticky-header .header:not(.not-sticky) {
    position: fixed;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0
}

@media (min-width:768px) {
    .sticky-header .header:not(.not-sticky) {
        padding: 25px 0
    }
}

.nav-opener {
    position: absolute;
    left: 15px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: none
}

@media (max-width:767px) {
    .nav-opener {
        display: block
    }
}

.nav-active .nav-opener {
    z-index: 2
}

@media (max-width:767px) {
    .nav-active .nav-opener {
        border-top-color: var(--white)
    }
}

.nav-opener span,
.nav-opener:after,
.nav-opener:before {
    background: var(--black);
    left: 8px;
    top: 50%;
    width: 24px;
    height: 2px;
    border-radius: 5px;
    transform: translateY(-50%);
    content: "";
    position: absolute;
    transition: all 0.3s ease
}

.nav-active .nav-opener span,
.nav-active .nav-opener:after,
.nav-active .nav-opener:before {
    transform: rotate(45deg);
    background: var(--white)
}

.nav-active .nav-opener:before {
    margin-top: -1px
}

.nav-opener:after {
    margin-top: -8px
}

.nav-active .nav-opener:after {
    margin-top: -1px;
    transform: rotate(-45deg)
}

.nav-opener span {
    margin-top: 8px;
    width: 18px
}

.nav-active .nav-opener span {
    opacity: 0
}

.nav-active .nav-opener,
.nav-opener:hover {
    background: var(--secondary)
}

.nav-active .nav-opener span,
.nav-active .nav-opener:after,
.nav-active .nav-opener:before,
.nav-opener:hover span,
.nav-opener:hover:after,
.nav-opener:hover:before {
    background: var(--white)
}

.nav-holder {
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    position: relative
}

@media (max-width:767px) {
    .nav-holder {
        padding: 80px 0;
        width: 300px;
        right: 0;
        top: 0;
        bottom: 0;
        background: var(--primary);
        position: fixed;
        display: block;
        transition: all 0.4s ease;
        transform: translate(100%, 0);
        overflow: auto
    }

    .nav-active .nav-holder {
        transform: none;
        box-shadow: -2px 0 20px rgba(0, 0, 0, 0.2)
    }
}

.resize-active .nav-holder {
    transition: none
}

.nav-holder .btn-holder {
    width: 100%;
    display: flex;
    flex-direction: column
}

@media (min-width:768px) {
    .nav-holder .btn-holder {
        width: inherit;
        flex-direction: row;
        gap: 8px
    }
}

.nav-holder .btn-holder .btn {
    margin: 20px 24px 0;
    width: calc(100% - 48px)
}

@media (min-width:768px) {
    .nav-holder .btn-holder .btn {
        margin: 0;
        width: auto;
        display: inline-flex
    }
}

@media (max-width:1023px) {
    .nav-holder .btn-holder .btn.btn-outline {
        padding-left: 11px;
        padding-right: 11px
    }
}

@media (max-width:767px) {
    .nav-holder .btn-holder .btn.btn-outline {
        color: var(--secondary);
        border-color: var(--secondary)
    }
}

@media (max-width:767px) {
    .nav-holder .btn-holder .btn.btn-outline:hover {
        color: var(--white);
        background: var(--secondary)
    }
}

@media (min-width:768px) {
    .nav-holder .btn-holder .btn.btn-outline .btn-text {
        display: none
    }
}

@media (min-width:1024px) {
    .nav-holder .btn-holder .btn.btn-outline .btn-text {
        display: block
    }
}

.menu {
    display: block;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font: 400 16px/1.5 "Poppins", Arial, sans-serif
}

@media (min-width:768px) {
    .menu {
        display: flex;
        padding: 0 6px 0 0;
        font-size: 15px
    }
}

@media (min-width:1024px) {
    .menu {
        font-size: 16px
    }
}

.menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15)
}

@media (min-width:768px) {
    .menu li {
        border-bottom: 0
    }
}

@media (min-width:1024px) {
    .menu li {
        padding: 0 6px
    }
}

.menu li.active>a {
    color: var(--secondary);
    font-weight: 500
}

@media (min-width:768px) {
    .menu li.active>a {
        color: var(--primary)
    }
}

.menu a {
    text-decoration: none;
    transition: all 0.4s ease;
    display: block;
    color: var(--white);
    padding: 16px 24px 12px
}

@media (min-width:768px) {
    .menu a {
        padding: 6px 10px;
        color: var(--menuColor)
    }
}

.menu a:hover {
    color: var(--secondary)
}

@media (min-width:768px) {
    .menu a:hover {
        color: var(--primary)
    }
}

.hero-section {
    overflow: hidden;
    width: 100%;
    padding: 25px 0 50px;
    font-family: "Poppins", Arial, sans-serif;
    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 .counter-list .subtitle {
    max-width: 115px
}

@media (min-width:768px) {
    .hero-section .counter-list .subtitle {
        max-width: inherit
    }
}

@media (min-width:1024px) {
    .hero-section.aep-app h1 {
        font-size: 58px;
        line-height: 1.15
    }
}

@media (min-width:1200px) {
    .hero-section.aep-app h1 {
        font-size: 70px
    }
}

@media (min-width:1440px) {
    .hero-section.aep-app h1 {
        font-size: 80px
    }
}

@media (max-width:767px) {
    .hero-section.aep-app h1 {
        font-size: 36px
    }
}

.hero-section.aep-app h1 strong {
    font-weight: 700;
    color: var(--primary)
}

@media (min-width:1200px) {
    .hero-section.aep-app p {
        max-width: 590px
    }
}

@media (min-width:1200px) {
    .hero-section.aep-app .hero-left {
        width: 52%;
        gap: 45px
    }
}

@media (min-width:1200px) {
    .hero-section.aep-app .hero-right {
        width: 46%
    }
}

.hero-section.aep-app .hero-image {
    width: 100%;
    height: auto;
    max-width: 525px;
    margin-left: auto
}

@media (min-width:1200px) {
    .hero-section.aep-app .hero-image {
        margin-right: -40px
    }
}

@media (max-width:767px) {
    .hero-section.aep-app .hero-image {
        position: relative;
        right: -20px;
        max-width: 400px
    }
}

.hero-section.aep-app .hero-image:after {
    display: none
}

.hero-section.aep-app .bounce-animation {
    position: relative
}

.hero-section.aep-app .bounce-animation:before {
    position: absolute;
    top: -11px;
    left: 50%;
    z-index: 1;
    margin-left: -21px;
    width: 44px;
    height: 36px;
    content: "";
    background: url("../img/home-2025/bouncing-mascot.png") no-repeat;
    background-size: 100% 100%;
    border-radius: 50%;
    display: inline-block;
    animation: bouncing-mascot 2s infinite;
    display: none
}

@media (min-width:768px) {
    .hero-section.aep-app .bounce-animation:before {
        display: block
    }
}

@media (min-width:1024px) {
    .hero-section.aep-app .bounce-animation:before {
        top: -10px
    }
}

@media (min-width:1200px) {
    .hero-section.aep-app .bounce-animation:before {
        width: 56px;
        height: 43px;
        margin-left: -27px
    }
}

@media (min-width:1440px) {
    .hero-section.aep-app .bounce-animation:before {
        top: -7px
    }
}

.hero-section.aep-app .bounce-animation:after {
    position: absolute;
    left: 50%;
    top: 5px;
    margin-left: -9px;
    width: 20px;
    height: 20px;
    background: var(--white);
    content: "";
    display: none
}

@media (min-width:768px) {
    .hero-section.aep-app .bounce-animation:after {
        display: block
    }
}

@media (min-width:1024px) {
    .hero-section.aep-app .bounce-animation:after {
        top: 7px
    }
}

@media (min-width:1200px) {
    .hero-section.aep-app .bounce-animation:after {
        top: 10px;
        margin-left: -12px;
        width: 25px;
        height: 24px
    }
}

@media (min-width:1440px) {
    .hero-section.aep-app .bounce-animation:after {
        top: 13px
    }
}

@media (min-width:1024px) {
    .hero-section.aep-app.schools {
        padding: 60px 0 100px
    }
}

@media (min-width:1200px) {
    .hero-section.aep-app.schools {
        padding: 100px 0 140px
    }
}

.hero-section.aep-app.schools h1 strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px
}

.hero-section.aep-app.schools h1 strong img {
    transform: rotate(15deg)
}

@media (max-width:767px) {
    .hero-section.aep-app.schools h1 strong img {
        width: 33px;
        height: auto
    }
}

@media (min-width:1200px) {
    .hero-section.aep-app.schools p {
        max-width: 600px
    }
}

.hero-section.aep-app.schools p strong {
    color: #05807f
}

@media (min-width:1200px) {
    .hero-section.aep-app.schools .hero-image {
        margin-right: 0;
        max-width: 609px
    }
}

@media (max-width:767px) {
    .hero-section.aep-app.schools .hero-image {
        position: relative;
        right: auto;
        max-width: 400px
    }
}

@media (max-width:479px) {
    .hero-section.aep-app.schools .hero-image {
        max-width: 330px
    }
}

@media (min-width:1200px) {
    .hero-section.aep-app.schools .hero-image img {
        margin-left: auto
    }
}

.hero-section.aep-app.schools .hero-image .mascot-image {
    position: absolute;
    left: 33.5%;
    bottom: 61.5%;
    width: 40px;
    height: 56px
}

@media (min-width:480px) {
    .hero-section.aep-app.schools .hero-image .mascot-image {
        bottom: 63.6%
    }
}

@media (min-width:768px) {
    .hero-section.aep-app.schools .hero-image .mascot-image {
        bottom: 61.4%;
        width: 65px;
        height: 91px
    }
}

@media (min-width:1024px) {
    .hero-section.aep-app.schools .hero-image .mascot-image {
        bottom: 60.8%
    }
}

@media (min-width:1200px) {
    .hero-section.aep-app.schools .hero-image .mascot-image {
        bottom: 61.5%
    }
}

@media (min-width:1440px) {
    .hero-section.aep-app.schools .hero-image .mascot-image {
        bottom: 62.5%
    }
}

.hero-section.aep-app.schools .hero-image .mascot-image .eyes {
    position: absolute;
    width: 16px;
    height: 8px;
    top: 10px;
    left: 12px;
    transform-origin: center;
    animation: blink 7s infinite
}

@media (min-width:768px) {
    .hero-section.aep-app.schools .hero-image .mascot-image .eyes {
        width: 26px;
        height: 13px;
        top: 17px;
        left: 20px
    }
}

@media (min-width:1440px) {
    .hero-section.aep-app.careers h1 {
        margin-right: -30px
    }
}

@media (min-width:1200px) {
    .hero-section.aep-app.careers p {
        max-width: 600px
    }
}

.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-family: "Poppins", Arial, sans-serif;
    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
    }
}

.footer {
    padding: 50px 20px;
    background: var(--footerBG);
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300
}

@media (min-width:768px) {
    .footer {
        padding: 50px 0
    }
}

@media (min-width:1024px) {
    .footer {
        padding: 66px 0
    }
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px
}

@media (min-width:1200px) {
    .footer .container {
        gap: 52px
    }
}

.footer .site-info {
    width: 100%
}

@media (min-width:768px) {
    .footer .site-info {
        width: 27%
    }
}

.footer .footer-logo {
    width: 100px;
    display: block;
    margin: 0 0 15px
}

.footer .footer-logo a {
    display: block
}

.footer .footer-logo img {
    display: block;
    width: 100%;
    height: auto
}

.footer .footer-holder {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px
}

@media (min-width:768px) {
    .footer .footer-holder {
        width: auto;
        flex-grow: 1;
        min-width: 0;
        flex-wrap: nowrap;
        gap: 0
    }
}

.footer .footer-column {
    text-align: left;
    width: 100%
}

@media (min-width:768px) {
    .footer .footer-column {
        width: 31.5%
    }
}

@media (min-width:1200px) {
    .footer .footer-column {
        width: 30%
    }
}

.footer .title {
    display: block;
    font-size: 12px;
    line-height: 18px;
    color: var(--white);
    margin: 0 0 15px;
    font-weight: 400
}

@media (min-width:768px) {
    .footer .title {
        margin: 0 0 28px
    }
}

.footer .address {
    font-style: normal;
    display: block;
    margin: 0
}

@media (min-width:768px) {
    .footer .address {
        max-width: 240px
    }
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.contact-info a {
    color: rgba(255, 255, 255, 0.6);
    display: inline-block;
    text-decoration: none;
    transition: 0.3s
}

.contact-info a:hover {
    color: var(--white)
}

.contact-info .phone {
    font-size: 16px
}

.social-networks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start
}

.social-networks a {
    display: block;
    transition: 0.3s
}

.social-networks a img {
    display: block
}

.social-networks a:hover {
    opacity: 0.7
}

.stats-section {
    background: var(--lightPink5);
    padding: 40px 0;
    margin-bottom: 30px
}

@media (min-width:768px) {
    .stats-section {
        padding: 60px 0;
        margin-bottom: 50px
    }
}

.stats-section .counter-list {
    justify-content: center;
    text-align: center;
    gap: 0;
    row-gap: 30px
}

@media (min-width:1024px) {
    .stats-section .counter-list {
        justify-content: space-around
    }
}

@media (max-width:1023px) {
    .stats-section .counter-list {
        font-size: 16px
    }
}

@media (max-width:767px) {
    .stats-section .counter-list {
        font-size: 18px
    }
}

.stats-section .counter-list li {
    gap: 10px;
    padding: 0 10px;
    width: 50%;
    border-right: 1px solid var(--lightGray)
}

@media (min-width:768px) {
    .stats-section .counter-list li {
        width: 33.333%;
        padding: 0 15px
    }
}

@media (min-width:1024px) {
    .stats-section .counter-list li {
        width: auto;
        flex-grow: 1
    }
}

.stats-section .counter-list li:last-child {
    border-right: 0
}

@media (max-width:767px) {
    .stats-section .counter-list li:nth-child(2n) {
        border-right: 0
    }
}

.stats-section .counter-list .subtitle {
    display: block
}

.aep-effect-box {
    padding: 50px 0 20px;
    position: relative
}

@media (min-width:768px) {
    .aep-effect-box {
        padding: 72px 0 20px
    }
}

@media (min-width:1024px) {
    .aep-effect-box {
        padding-bottom: 50px
    }
}

@media (min-width:1200px) {
    .aep-effect-box {
        padding-bottom: 90px
    }
}

.aep-effect-box .mascot-image {
    right: 5%;
    top: -14px;
    transform: scale(0.7)
}

@media (min-width:768px) {
    .aep-effect-box .mascot-image {
        top: 6px;
        right: 15%;
        transform: scale(1)
    }
}

@media (min-width:1024px) {
    .aep-effect-box .mascot-image {
        right: 23%;
        top: 5px
    }
}

.aep-effect-box .image-holder {
    border: 8px solid var(--primaryAlt);
    border-radius: 16px;
    overflow: hidden
}

.aep-effect-box .image-holder img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px
}

.tabset {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px
}

.tabset a {
    display: block;
    text-decoration: none
}

.tabs-holder .tab-item {
    opacity: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, height 0.3s ease-in-out, visibility 0.3s ease-in-out
}

.tabs-holder .tab-item.selected {
    opacity: 1;
    height: auto;
    visibility: visible
}

.digital-slider-nav a {
    width: 36px;
    height: 36px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 100%;
    background: transparent;
    text-decoration: none;
    opacity: 0.4;
    transition: 0.3s;
    cursor: pointer
}

@media (min-width:768px) {
    .digital-slider-nav a {
        width: 40px;
        height: 40px
    }
}

.digital-slider-nav a.btn-video {
    background: var(--lightOrange3)
}

.digital-slider-nav a.btn-games {
    background: var(--lightOrange2)
}

.digital-slider-nav a.btn-simulation {
    background: var(--primaryAlt)
}

.digital-slider-nav a.btn-coding {
    background: var(--lightOrange3)
}

.digital-slider-nav a.btn-3d-models {
    background: var(--lightOrange2)
}

.digital-slider-nav a.btn-animations {
    background: var(--primaryAlt2)
}

.digital-slider-nav a:hover {
    border-color: var(--black);
    opacity: 1
}

.digital-slider-nav li.selected a {
    border-color: var(--black);
    opacity: 1
}

.books-tabs {
    font-size: 18px;
    line-height: 1;
    gap: 15px;
    position: relative;
    z-index: 2;
    margin-top: 25px
}

@media (min-width:768px) {
    .books-tabs {
        margin-top: -40px;
        font-size: 24px
    }
}

@media (min-width:1024px) {
    .books-tabs {
        font-size: 30px;
        margin-top: -50px;
        gap: 20px
    }
}

.books-tabs a {
    color: var(--textColor);
    position: relative;
    padding: 5px 5px 10px
}

.books-tabs a:after {
    width: 0;
    height: 5px;
    background: var(--blue);
    content: "";
    display: block;
    transition: 0.3s;
    position: absolute;
    left: 0;
    bottom: 0
}

.books-tabs .selected a:after,
.books-tabs:hover a:after {
    width: 100%
}

.books-tabs li .selected a:after,
.books-tabs li:hover a:after {
    width: 100%
}

.books-slider {
    max-width: 310px;
    margin: 0 auto
}

@media (min-width:480px) {
    .books-slider {
        max-width: 400px
    }
}

@media (min-width:768px) {
    .books-slider {
        max-width: 660px
    }
}

@media (min-width:1024px) {
    .books-slider {
        max-width: 900px
    }
}

@media (min-width:1200px) {
    .books-slider {
        max-width: 1000px
    }
}

@media (min-width:1440px) {
    .books-slider {
        max-width: 1040px
    }
}

.books-slider .slick-list {
    padding: 0 !important;
    min-height: 250px
}

@media (min-width:480px) {
    .books-slider .slick-list {
        min-height: 290px
    }
}

@media (min-width:768px) {
    .books-slider .slick-list {
        padding: 0 131px !important;
        min-height: 460px
    }
}

@media (min-width:1024px) {
    .books-slider .slick-list {
        padding: 0 180px !important;
        min-height: 550px
    }
}

@media (min-width:1200px) {
    .books-slider .slick-list {
        padding: 0 200px !important;
        min-height: 580px
    }
}

@media (min-width:1440px) {
    .books-slider .slick-list {
        padding: 0 210px !important
    }
}

.books-slider .slick-track {
    display: flex;
    align-items: center
}

.books-slider .slick-slide {
    padding: 40px 0 20px;
    margin: 0 -20px;
    pointer-events: none
}

@media (min-width:768px) {
    .books-slider .slick-slide {
        margin: 0 -70px;
        padding: 50px 0
    }
}

@media (min-width:1024px) {
    .books-slider .slick-slide {
        margin: 0 -80px
    }
}

.books-slider .slick-slide .image-holder {
    padding: 20px;
    transform: scale(0.6);
    transition: all 0.3s;
    position: relative
}

@media (min-width:768px) {
    .books-slider .slick-slide .image-holder {
        padding: 40px
    }
}

.books-slider .slick-slide .image-holder img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 10px 12px rgba(16, 24, 40, 0.0784313725)
}

@media (min-width:768px) {
    .books-slider .slick-slide .image-holder img {
        box-shadow: 0 20px 24px rgba(16, 24, 40, 0.0784313725)
    }
}

.books-slider .slick-slide.is-prev+.slick-slide,
.books-slider .slick-slide.slick-active,
.books-slider .slick-slide.slick-center+.slick-slide {
    z-index: 1;
    pointer-events: all
}

.books-slider .slick-slide.is-prev+.slick-slide .image-holder,
.books-slider .slick-slide.slick-active .image-holder,
.books-slider .slick-slide.slick-center+.slick-slide .image-holder {
    padding: 13px;
    transform: scale(0.85)
}

@media (min-width:768px) {

    .books-slider .slick-slide.is-prev+.slick-slide .image-holder,
    .books-slider .slick-slide.slick-active .image-holder,
    .books-slider .slick-slide.slick-center+.slick-slide .image-holder {
        padding: 20px
    }
}

.books-slider .slick-slide.slick-center {
    z-index: 2 !important
}

.books-slider .slick-slide.slick-center .image-holder {
    padding: 0 !important;
    transform: scale(1) !important
}

.books-slider .slick-dots {
    justify-content: center;
    column-gap: 5px;
    row-gap: 0
}

@media (min-width:768px) {
    .books-slider .slick-dots {
        gap: 5px
    }
}

.books-slider .slick-dots li button {
    height: 20px;
    background: transparent;
    position: relative;
    width: 12px
}

@media (min-width:768px) {
    .books-slider .slick-dots li button {
        height: 24px;
        width: 22px
    }
}

.books-slider .slick-dots li button:after {
    background: var(--primaryLightAlt3);
    width: 100%;
    height: 4px;
    border-radius: 40px;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: 0.3s
}

@media (min-width:768px) {
    .books-slider .slick-dots li button:after {
        height: 7px
    }
}

.books-slider .slick-dots li button:hover {
    background: transparent
}

.books-slider .slick-dots li button:hover:after {
    background: var(--blue)
}

.books-slider .slick-dots li.slick-active button {
    background: transparent;
    width: 20px
}

@media (min-width:768px) {
    .books-slider .slick-dots li.slick-active button {
        width: 42px
    }
}

.books-slider .slick-dots li.slick-active button:after {
    background: var(--blue)
}

.books-slider .slick-arrow {
    width: 36px;
    height: 36px;
    border: 0;
    bottom: 0;
    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:1024px) {
    .books-slider .slick-arrow {
        width: 44px;
        height: 44px
    }
}

.books-slider .slick-arrow:hover {
    background-color: var(--secondaryDark)
}

.books-slider .slick-arrow.slick-prev {
    transform: rotate(180deg);
    left: calc(50% - 42px)
}

@media (min-width:1024px) {
    .books-slider .slick-arrow.slick-prev {
        left: calc(50% - 50px)
    }
}

.books-slider .slick-arrow.slick-next {
    right: calc(50% - 42px)
}

@media (min-width:1024px) {
    .books-slider .slick-arrow.slick-next {
        right: calc(50% - 50px)
    }
}

.books-slider .slick-arrow.slick-disabled {
    background-color: var(--lightOrange2)
}

@media (min-width:1024px) {
    .books-slider.college-books {
        max-width: 820px
    }
}

@media (min-width:1200px) {
    .books-slider.college-books {
        max-width: 898px
    }
}

@media (min-width:768px) {
    .books-slider.college-books .slick-list {
        padding: 0 20px !important
    }
}

@media (min-width:768px) {
    .books-slider.college-books .slick-slide {
        margin: 0 -25px
    }
}

@media (min-width:1024px) {
    .books-slider.college-books .slick-slide {
        margin: 0 -40px
    }
}

#colleges-tab .slick-dots li:nth-child(3)~li,
.college-books .slick-dots li:nth-child(3)~li {
    display: none
}

.accordion {
    position: relative;
    z-index: 1
}

.accordion-item {
    background: var(--white);
    border: 1px solid #d0d5dd;
    border-radius: 10px;
    overflow: hidden;
    text-align: left
}

@media (min-width:768px) {
    .accordion-item {
        padding: 14px 0;
        border-radius: 20px
    }
}

@media (min-width:1024px) {
    .accordion-item {
        border-radius: 30px
    }
}

.accordion-item+.accordion-item {
    margin-top: 15px
}

@media (min-width:768px) {
    .accordion-item+.accordion-item {
        margin-top: 20px
    }
}

@media (min-width:1024px) {
    .accordion-item+.accordion-item {
        margin-top: 30px
    }
}

.accordion-item .accordion-header {
    padding: 15px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px
}

@media (min-width:768px) {
    .accordion-item .accordion-header {
        padding: 15px 20px;
        gap: 20px
    }
}

@media (min-width:1024px) {
    .accordion-item .accordion-header {
        padding: 20px 32px
    }
}

.accordion-item .accordion-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
    display: block
}

@media (min-width:768px) {
    .accordion-item .accordion-arrow {
        width: 32px;
        height: 32px
    }
}

.accordion-item .accordion-arrow:after,
.accordion-item .accordion-arrow:before {
    width: 12px;
    height: 2px;
    background: var(--black);
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    transition: 0.3s;
    opacity: 0.8
}

@media (min-width:768px) {

    .accordion-item .accordion-arrow:after,
    .accordion-item .accordion-arrow:before {
        width: 22px;
        height: 3px;
        opacity: 1
    }
}

.accordion-item .accordion-arrow:after {
    transform: translate(-50%, -50%) rotate(90deg)
}

.accordion-item .accordion-title {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    color: var(--text-Dark3);
    display: block
}

@media (min-width:768px) {
    .accordion-item .accordion-title {
        font-size: 18px
    }
}

@media (min-width:1024px) {
    .accordion-item .accordion-title {
        font-size: 20px
    }
}

@media (min-width:1200px) {
    .accordion-item .accordion-title {
        font-size: 24px
    }
}

.accordion-item .accordion-content {
    display: none;
    padding: 0 15px 15px;
    letter-spacing: 0.25px
}

@media (min-width:768px) {
    .accordion-item .accordion-content {
        padding: 0 20px 15px
    }
}

@media (min-width:1024px) {
    .accordion-item .accordion-content {
        padding: 0 32px 20px
    }
}

@media (min-width:1200px) {
    .accordion-item .accordion-content {
        font-size: 20px
    }
}

@media (max-width:767px) {
    .accordion-item .accordion-content {
        font-size: 14px
    }
}

.accordion-item.active {
    background: #f9fafb
}

.accordion-item.active .accordion-arrow:after {
    opacity: 0
}

.contact-block .wpcf7 form .wpcf7-spinner {
    position: absolute;
    right: 15px;
    bottom: 13px;
    margin: 0
}

.contact-block .wpcf7 form .wpcf7-not-valid-tip {
    padding: 7px 3px 0;
    font-size: 14px
}

.contact-block .wpcf7 form .wpcf7-response-output {
    margin: 0;
    border: none;
    background: var(--white);
    font-size: 14px;
    line-height: 1.5;
    color: var(--textDark2);
    padding: 12px 15px 12px 45px;
    border-radius: 12px;
    position: relative;
    margin-top: 20px;
    text-align: left
}

@media (min-width:768px) {
    .contact-block .wpcf7 form .wpcf7-response-output {
        font-size: 16px
    }
}

@media (min-width:1024px) {
    .contact-block .wpcf7 form .wpcf7-response-output {
        font-size: 18px
    }
}

.contact-block .wpcf7 form .wpcf7-response-output:before {
    width: 20px;
    height: 20px;
    content: "";
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 15px;
    top: 12px
}

@media (min-width:768px) {
    .contact-block .wpcf7 form .wpcf7-response-output:before {
        top: 14px
    }
}

@media (min-width:1024px) {
    .contact-block .wpcf7 form .wpcf7-response-output:before {
        top: 15px
    }
}

.contact-block .wpcf7 form.invalid .wpcf7-response-output {
    color: #c4320a
}

.contact-block .wpcf7 form.invalid .wpcf7-response-output:before {
    background-image: url("../img/home-2025/icon-error.svg")
}

.contact-block .wpcf7 form.sent .wpcf7-response-output {
    color: var(--textDark2)
}

.contact-block .wpcf7 form.sent .wpcf7-response-output:before {
    background-image: url("../img/home-2025/icon-success.svg")
}

.main-section.contact.careers {
    padding-bottom: 25px
}

@media (min-width:768px) {
    .main-section.contact.careers {
        padding-bottom: 25px
    }
}

@media (min-width:1200px) {
    .main-section.contact.careers {
        padding-bottom: 50px
    }
}

.main-section.contact.careers .section-holder {
    background-color: var(--lightPink)
}

.main-section.contact.careers .text-large {
    margin-top: -15px
}

@media (min-width:768px) {
    .main-section.contact.careers .text-large {
        margin-top: -50px
    }
}

@media (min-width:1024px) {
    .main-section.contact.careers .text-large {
        font-size: 21px;
        margin-top: -30px;
        margin-bottom: 25px
    }
}

@media (min-width:1200px) {
    .main-section.contact.careers .text-large {
        font-size: 24px;
        margin-top: -15px
    }
}

.main-section.contact.careers .form-holder {
    width: 100%;
    max-width: inherit
}

.main-section.contact.careers .form-row {
    flex-wrap: wrap
}

.main-section.contact.careers .form-field {
    width: 100%;
    flex: inherit
}

@media (min-width:768px) {
    .main-section.contact.careers .form-field {
        width: calc(50% - 8px)
    }
}

@media (min-width:1024px) {
    .main-section.contact.careers .form-field {
        width: calc(33.333% - 14px)
    }
}

@media (min-width:1024px) {
    .main-section.contact.careers .form-field.half {
        width: calc(50% - 10px)
    }
}

.main-section.contact.careers .form-field.full {
    width: 100%
}

.main-section.contact.careers .title {
    display: block;
    width: 100%;
    color: var(--textDark2);
    font-weight: 400;
    padding: 5px 0 0;
    margin-bottom: -3px
}

@media (min-width:768px) {
    .main-section.contact.careers .title {
        padding: 7px 0 0
    }
}

@media (min-width:1024px) {
    .main-section.contact.careers .title {
        padding: 0;
        margin-bottom: -5px
    }
}

@media (min-width:1200px) {
    .main-section.contact.careers .title {
        font-size: 18px;
        margin-bottom: -10px
    }
}

.main-section.contact.careers .radio-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 0 5px
}

@media (min-width:768px) {
    .main-section.contact.careers .radio-options {
        padding: 0 0 7px
    }
}

@media (min-width:1024px) {
    .main-section.contact.careers .radio-options {
        padding: 0
    }
}

.main-section.contact.careers .radio-options label {
    font-size: 16px
}

.main-section.contact.careers textarea.text-input {
    height: 128px
}

.main-section.contact.careers .button-holder .btn {
    max-width: 495px;
    margin: 0 auto;
    display: block
}

.main-section.arvo-life .section-holder {
    background-color: var(--lightPink)
}

.main-section.arvo-life .section-holder.slide-index-1 .gallery-title,
.main-section.arvo-life .section-holder.slide-index-4 .gallery-title {
    color: var(--primary)
}

.main-section.arvo-life .section-holder.slide-index-2 .gallery-title {
    color: var(--orangeAlt)
}

.main-section.arvo-life .section-holder.slide-index-0 .image-holder,
.main-section.arvo-life .section-holder.slide-index-2 .image-holder {
    left: 0
}

.main-section.arvo-life .h1:after {
    display: none
}

.main-section.arvo-life .h1 br {
    display: block
}

.main-section.arvo-life .gallery-title {
    display: block;
    font-size: 20px;
    line-height: 1.25;
    color: var(--secondary)
}

@media (min-width:768px) {
    .main-section.arvo-life .gallery-title {
        font-size: 24px;
        text-align: right
    }
}

@media (min-width:1024px) {
    .main-section.arvo-life .gallery-title {
        font-size: 28px
    }
}

.main-section.arvo-life .slick-dots {
    padding: 0;
    z-index: 1;
    position: relative;
    justify-content: flex-start;
    margin: 18px 0 0
}

@media (min-width:1024px) {
    .main-section.arvo-life .slick-dots {
        margin: -10px 0 0
    }
}

.gallery-holder {
    display: flex;
    padding: 30px 0 25px;
    position: relative;
    margin-top: 10px;
    gap: 10px;
    flex-wrap: wrap
}

@media (min-width:768px) {
    .gallery-holder {
        padding: 55px 0 25px;
        flex-wrap: nowrap
    }
}

.gallery-holder .icon {
    position: absolute
}

.gallery-holder .icon img {
    width: 100%;
    height: auto;
    display: block
}

.gallery-holder .ico-suitcase {
    left: 0;
    top: 21%;
    width: 9.8%;
    display: none
}

@media (min-width:768px) {
    .gallery-holder .ico-suitcase {
        display: block
    }
}

.gallery-holder .ico-sun {
    width: 29px;
    left: 40%;
    top: 0
}

@media (min-width:768px) {
    .gallery-holder .ico-sun {
        width: 6.4%
    }
}

.gallery-holder .ico-music {
    width: 29px;
    left: 40%;
    top: -10px
}

@media (min-width:768px) {
    .gallery-holder .ico-music {
        position: static;
        height: 40%;
        width: 11%;
        display: flex;
        align-items: center
    }
}

.gallery-holder .ico-music img {
    width: 55px;
    height: auto
}

.gallery-holder .ico-popper {
    left: 56%;
    bottom: 5.5%;
    width: 5.5%;
    transform: translateX(-50%)
}

.gallery-holder .ico-cup,
.gallery-holder .ico-hat {
    right: 3.5%;
    top: 26%;
    width: 6.1%;
    display: none
}

@media (min-width:768px) {

    .gallery-holder .ico-cup,
    .gallery-holder .ico-hat {
        display: block
    }
}

.gallery-holder .ico-hat {
    width: 9.2%;
    top: -20px;
    right: 14%
}

.gallery-holder .gallery-grow {
    flex-grow: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.gallery-holder .gallery-row {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px
}

@media (max-width:767px) {
    .gallery-holder .gallery-row {
        justify-content: center
    }
}

.gallery-holder .gallery-row:first-child {
    align-items: flex-start
}

@media (min-width:768px) {
    .gallery-holder .gallery-row:first-child {
        align-items: flex-end
    }
}

.gallery-holder .gallery-row.align-right {
    justify-content: flex-end
}

.gallery-holder .gallery-row.align-center {
    justify-content: center
}

.gallery-holder .single-col {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    gap: 10px
}

@media (min-width:768px) {
    .gallery-holder .single-col {
        flex-shrink: 0;
        width: 20.2%;
        gap: 20px;
        margin-top: 10%;
        margin-left: 3.5%;
        flex-direction: column
    }
}

.gallery-holder .single-col .icon {
    text-align: center;
    width: 40px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    top: -14px;
    transform: translateX(-50%)
}

@media (min-width:768px) {
    .gallery-holder .single-col .icon {
        width: auto;
        margin: 0;
        position: static;
        transform: none
    }
}

.gallery-holder .single-col .icon img {
    width: auto;
    height: auto;
    max-width: 100%;
    margin: 0 auto
}

.gallery-holder .single-col.no-margin {
    margin-top: 0;
    justify-content: flex-start
}

.gallery-holder .image-holder {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    width: 32.85%
}

.gallery-holder .image-holder:before {
    content: "";
    display: block;
    padding-top: 64%
}

.gallery-holder .image-holder img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.gallery-holder .image-holder.img-style1 {
    width: 59%;
    align-self: flex-end
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style1 {
        width: 32.85%;
        margin-left: auto
    }
}

.gallery-holder .image-holder.img-style2 {
    width: 36.85%
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style2 {
        width: 20%
    }
}

.gallery-holder .image-holder.img-style2:before {
    padding-top: 133.2%
}

.gallery-holder .image-holder.img-style3 {
    width: 48%
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style3 {
        width: 31%
    }
}

.gallery-holder .image-holder.img-style3:before {
    padding-top: 86%
}

.gallery-holder .image-holder.img-style4 {
    width: 48%;
    align-self: flex-start
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style4 {
        width: 30.15%
    }
}

.gallery-holder .image-holder.img-style4:before {
    padding-top: 86%
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style4:before {
        padding-top: 68%
    }
}

.gallery-holder .image-holder.img-style5 {
    width: 58.25%;
    align-self: flex-start
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style5 {
        width: 38.25%
    }
}

@media (max-width:767px) {
    .gallery-holder .image-holder.img-style5 {
        order: 6
    }
}

.gallery-holder .image-holder.img-style5:before {
    padding-top: 123%
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style5:before {
        padding-top: 58.5%
    }
}

.gallery-holder .image-holder.img-style6 {
    width: 38%;
    align-self: flex-start
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style6 {
        width: 25%
    }
}

.gallery-holder .image-holder.img-style6:before {
    padding-top: 147%
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style6:before {
        padding-top: 69.5%
    }
}

.gallery-holder .image-holder.img-style7 {
    width: 100%
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style7 {
        width: 38.95%
    }
}

.gallery-holder .image-holder.img-style7:before {
    padding-top: 57.3%
}

.gallery-holder .image-holder.img-style8 {
    width: 48%
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style8 {
        width: 35.05%
    }
}

.gallery-holder .image-holder.img-style8:before {
    padding-top: 86%
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style8:before {
        padding-top: 58.4%
    }
}

.gallery-holder .image-holder.img-style9 {
    width: 48%;
    align-self: flex-start
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style9 {
        width: 31.85%
    }
}

.gallery-holder .image-holder.img-style9:before {
    padding-top: 86%
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style9:before {
        padding-top: 83.7%
    }
}

.gallery-holder .image-holder.img-style10 {
    width: 63%;
    align-self: flex-start
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style10 {
        width: 25.35%
    }
}

.gallery-holder .image-holder.img-style10:before {
    padding-top: 68.7%
}

.gallery-holder .image-holder.img-style11 {
    width: 33%;
    align-self: flex-start
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style11 {
        width: 20.25%
    }
}

.gallery-holder .image-holder.img-style11:before {
    padding-top: 131.7%
}

.gallery-holder .image-holder.img-style12,
.gallery-holder .image-holder.img-style19,
.gallery-holder .image-holder.img-style24 {
    width: 100%
}

.gallery-holder .image-holder.img-style12:before,
.gallery-holder .image-holder.img-style19:before,
.gallery-holder .image-holder.img-style24:before {
    padding-top: 100%
}

@media (min-width:768px) {

    .gallery-holder .image-holder.img-style12:before,
    .gallery-holder .image-holder.img-style19:before,
    .gallery-holder .image-holder.img-style24:before {
        padding-top: 132%
    }
}

@media (max-width:767px) {
    .gallery-holder .image-holder.img-style12 {
        display: none
    }
}

.gallery-holder .image-holder.img-style13 {
    width: 48%
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style13 {
        width: 33.65%
    }
}

.gallery-holder .image-holder.img-style13:before {
    padding-top: 70%
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style13:before {
        padding-top: 68.7%
    }
}

.gallery-holder .image-holder.img-style14 {
    width: 48%
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style14 {
        width: 46.55%
    }
}

.gallery-holder .image-holder.img-style14:before {
    padding-top: 70%
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style14:before {
        padding-top: 58.5%
    }
}

.gallery-holder .image-holder.img-style15 {
    align-self: flex-start;
    width: 48%
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style15 {
        width: 28.8%
    }
}

.gallery-holder .image-holder.img-style15:before {
    padding-top: 102.8%
}

.gallery-holder .image-holder.img-style16 {
    align-self: flex-start;
    width: 48%
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style16 {
        width: 29.5%
    }
}

.gallery-holder .image-holder.img-style16:before {
    padding-top: 102.8%
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style16:before {
        padding-top: 119.8%
    }
}

.gallery-holder .image-holder.img-style17 {
    width: 100%
}

.gallery-holder .image-holder.img-style17:before {
    padding-top: 83.8%
}

.gallery-holder .image-holder.img-style18 {
    width: 75%
}

.gallery-holder .image-holder.img-style18:before {
    padding-top: 83%
}

.gallery-holder .image-holder.img-style20 {
    width: 51.7%
}

.gallery-holder .image-holder.img-style20:before {
    padding-top: 57.2%
}

.gallery-holder .image-holder.img-style21 {
    width: 42.3%
}

.gallery-holder .image-holder.img-style21:before {
    padding-top: 70.2%
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style21:before {
        padding-top: 83.5%
    }
}

.gallery-holder .image-holder.img-style22 {
    align-self: flex-start;
    width: 43.5%
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style22 {
        width: 33.6%
    }
}

.gallery-holder .image-holder.img-style22:before {
    padding-top: 68.5%
}

.gallery-holder .image-holder.img-style23 {
    align-self: flex-start;
    width: 52%
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style23 {
        width: 46.5%
    }
}

.gallery-holder .image-holder.img-style23:before {
    padding-top: 58.5%
}

@media (min-width:1024px) {
    .gallery-holder .image-holder.img-style24 {
        margin-bottom: 20%
    }
}

.gallery-holder .image-holder.img-style25 {
    width: 48%
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style25 {
        width: 33.6%
    }
}

.gallery-holder .image-holder.img-style25:before {
    padding-top: 58.5%
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style25:before {
        padding-top: 68.5%
    }
}

.gallery-holder .image-holder.img-style26 {
    width: 48%
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style26 {
        width: 46.5%
    }
}

.gallery-holder .image-holder.img-style26:before {
    padding-top: 58.5%
}

.gallery-holder .image-holder.img-style27 {
    align-self: flex-start;
    width: 38%
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style27 {
        width: 42.3%
    }
}

.gallery-holder .image-holder.img-style27:before {
    padding-top: 83.6%
}

.gallery-holder .image-holder.img-style28 {
    align-self: flex-start;
    width: 57%
}

@media (min-width:768px) {
    .gallery-holder .image-holder.img-style28 {
        width: 51.7%
    }
}

.gallery-holder .image-holder.img-style28:before {
    padding-top: 57.3%
}

.gallery-holder .multiple-imgs {
    width: 100%;
    display: flex;
    gap: 10px
}

@media (min-width:768px) {
    .gallery-holder .multiple-imgs {
        width: 23.5%;
        flex-direction: column
    }
}

.upload-field {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.upload-field .upload-area {
    width: 100%;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--lightGray);
    font-size: 14px;
    color: #828d99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 128px
}

@media (min-width:768px) {
    .upload-field .upload-area {
        padding: 20px
    }
}

.upload-field .upload-area .icon {
    width: 33px
}

.upload-field .upload-area .icon img {
    width: 100%;
    height: auto;
    display: block
}

.upload-field .upload-area p {
    margin: 0
}

.upload-field .upload-area.dragover {
    border-color: var(--secondary);
    box-shadow: 0 0 0 1px var(--secondary)
}

.upload-field .hidden {
    display: none !important
}

.upload-field #fileInfo {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--lightGray);
    font-size: 14px;
    color: #828d99;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center
}

.upload-field #errorMsg {
    font-size: 14px;
    color: red
}

.select2-container {
    width: 100% !important
}

.select2-container .select2-selection--single {
    height: 56px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--lightGray)
}

.select2-container .select2-selection--single .select2-selection__placeholder {
    color: var(--textColor)
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 14px 20px;
    padding-right: 50px;
    color: var(--black);
    font: 400 16px/25px "Poppins", Arial
}

.select2-container .select2-selection--single .select2-selection__arrow {
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 54px
}

.select2-container .select2-selection--single .select2-selection__arrow b {
    display: none
}

.select2-container .select2-selection--single .select2-selection__arrow:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: rotate(45deg) translate(-50%, -50%);
    width: 7px;
    height: 7px;
    border: 1px solid var(--lightOrange3);
    border-left: 0;
    border-top: 0;
    margin-left: -2px;
    transition: 0.3s
}

.select2-container .select2-selection--single .select2-selection__clear {
    position: absolute;
    margin: 0;
    overflow: hidden;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 100%;
    width: 60px;
    background: #fff;
    z-index: 1;
    border-radius: 8px;
    font-size: 1.75em
}

.select2-container.select2-container--disabled .select2-selection--single {
    background: #fff
}

.select2-container.select2-container--disabled .select2-selection--single .select2-selection__placeholder {
    position: relative
}

.select2-dropdown {
    color: #000;
    border-color: transparent;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden
}

.select2-dropdown .select2-results__option {
    padding-left: 20px;
    padding-right: 20px;
    color: var(--textColor);
    font-size: 15px
}

@media (min-width:1024px) {
    .select2-dropdown .select2-results__option {
        font-size: 16px
    }
}

.select2-dropdown .select2-results__option:hover {
    background: var(--lightOrange3)
}

.select2-container--default .select2-results__option--selected {
    background: var(--lightOrange3);
    color: var(--white)
}

.select2-container--default .select2-results__option--highlighted {
    background: var(--lightOrange3)
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: var(--lightOrange3)
}

.landing-page .container {
    max-width: 1300px
}

.landing-page .header .logo {
    margin-left: 0
}

@media (min-width:768px) {
    .landing-page .header .logo {
        width: 130px
    }
}

@media (min-width:1024px) {
    .landing-page .header .logo {
        width: 148px
    }
}

.landing-page .nav-holder,
.landing-page .nav-opener {
    display: none
}

.landing-page .hero-section h1 {
    font-size: 25px;
    line-height: 1.275;
    font-weight: normal;
    color: var(--gray);
    letter-spacing: normal;
    text-align: center
}

@media (min-width:768px) {
    .landing-page .hero-section h1 {
        font-size: 35px
    }
}

@media (min-width:1024px) {
    .landing-page .hero-section h1 {
        text-align: left;
        max-width: 540px
    }
}

@media (min-width:1200px) {
    .landing-page .hero-section h1 {
        font-size: 40px
    }
}

.landing-page .hero-section .hero-image:after {
    background: var(--primaryLightAlt1)
}

@media (min-width:1200px) {
    .landing-page .hero-section .hero-image:after {
        width: 384px;
        height: 384px
    }
}

.landing-page .hero-section .hero-image .image-holder {
    width: 280px;
    height: auto;
    margin: 0;
    margin-left: 10%
}

@media (min-width:1440px) {
    .landing-page .hero-section .hero-image .image-holder {
        width: 320px;
        margin-left: 12%
    }
}

.landing-page .hero-rotating-icons .hero-rotating-path {
    border-color: var(--primaryLightAlt2)
}

.landing-page .main-section {
    text-align: left
}

@media (min-width:1200px) {
    .landing-page .main-section {
        padding-top: 130px
    }
}

@media (min-width:1024px) {
    .landing-page .main-section:first-child {
        padding-top: 120px
    }
}

@media (min-width:1200px) {
    .landing-page .main-section:first-child {
        padding-top: 175px
    }
}

.landing-page .main-section .h1 {
    color: var(--greenDark);
    justify-content: flex-start
}

@media (max-width:767px) {
    .landing-page .main-section .h1 {
        font-size: 40px;
        margin-bottom: 30px
    }
}

.landing-page .main-section .h1:after {
    display: none
}

.landing-page .main-section .section-holder.landing-holder {
    padding-top: 0;
    background: var(--primaryLightAlt1)
}

@media (min-width:1200px) {
    .landing-page .main-section .section-holder.landing-holder {
        padding-left: 60px;
        padding-right: 60px
    }
}

.landing-page .main-section .section-holder.landing-holder>.section-content {
    padding-top: 50px
}

.landing-page .main-section .section-holder.bg-pink {
    background: var(--lightPink3)
}

.landing-page .main-section .section-holder.bg-pink .article-holder.portrait:before {
    right: auto;
    top: auto;
    width: 67px;
    height: 133px;
    background-image: url("../img/home-2025/ico-vactor-top1.svg");
    bottom: 50px;
    left: 0
}

@media (min-width:1024px) {
    .landing-page .main-section .section-holder.bg-pink .article-holder.portrait:before {
        bottom: 80px
    }
}

.landing-page .main-section .section-holder.bg-pink .article-holder.portrait:after {
    left: auto;
    bottom: auto;
    width: 40px;
    height: 53px;
    background-image: url("../img/home-2025/ico-vactor-bottom1.svg");
    right: 0;
    top: 0
}

@media (min-width:1024px) {
    .landing-page .main-section .section-holder.bg-pink .article-holder.portrait:after {
        top: 30px
    }
}

.landing-page .article-holder {
    color: var(--gray);
    align-items: center
}

@media (min-width:1200px) {
    .landing-page .article-holder {
        font-size: 25px
    }
}

@media (min-width:1340px) {
    .landing-page .article-holder {
        font-size: 29px
    }
}

@media (max-width:767px) {
    .landing-page .article-holder {
        padding: 25px 0;
        flex-direction: column
    }
}

.landing-page .article-holder h2 {
    color: var(--greenDark);
    line-height: 1.25
}

@media (min-width:1200px) {
    .landing-page .article-holder h2 {
        margin-bottom: 50px
    }
}

@media (max-width:767px) {
    .landing-page .article-holder h2 {
        font-size: 28px;
        line-height: 1.5
    }
}

.landing-page .article-holder h3 {
    color: var(--greenDark);
    font-size: 20px;
    line-height: 1.5;
    position: relative;
    margin-left: 15px
}

@media (min-width:768px) {
    .landing-page .article-holder h3 {
        font-size: 25px;
        margin-left: 20px
    }
}

@media (min-width:1024px) {
    .landing-page .article-holder h3 {
        margin-left: 5px
    }
}

@media (min-width:1200px) {
    .landing-page .article-holder h3 {
        font-size: 30px;
        margin-left: 0
    }
}

@media (max-width:767px) {
    .landing-page .article-holder h3 {
        margin-bottom: 25px !important
    }
}

.landing-page .article-holder h3:before {
    width: 28px;
    height: 26px;
    content: "";
    position: absolute;
    left: -23px;
    top: -13px;
    background: url("../img/home-2025/ico-highlight.svg") no-repeat;
    background-size: 100% 100%
}

@media (min-width:768px) {
    .landing-page .article-holder h3:before {
        top: -9px
    }
}

.landing-page .article-holder h3:last-child {
    margin-bottom: 0
}

@media (min-width:1200px) {
    .landing-page .article-holder .image-holder {
        width: 40%
    }
}

@media (max-width:767px) {
    .landing-page .article-holder .image-holder {
        margin-bottom: 0
    }
}

.landing-page .article-holder.main-feature {
    margin-bottom: 45px;
    padding-top: 0;
    margin-top: -20px
}

@media (min-width:768px) {
    .landing-page .article-holder.main-feature {
        flex-direction: row-reverse;
        margin-bottom: 65px
    }
}

@media (min-width:1200px) {
    .landing-page .article-holder.main-feature {
        margin-top: -10px
    }
}

@media (min-width:1440px) {
    .landing-page .article-holder.main-feature {
        margin-top: 0
    }
}

.landing-page .article-holder.main-feature .image-holder {
    display: none
}

@media (min-width:768px) {
    .landing-page .article-holder.main-feature .image-holder {
        display: flex
    }
}

@media (min-width:1200px) {
    .landing-page .article-holder.main-feature .image-holder {
        padding-right: 45px
    }
}

@media (max-width:767px) {
    .landing-page .article-holder.main-feature .image-holder img {
        max-height: 250px
    }
}

@media (max-width:1199px) {
    .landing-page .article-holder.main-feature p {
        font-size: 20px
    }
}

@media (min-width:1440px) {
    .landing-page .article-holder.main-feature p {
        font-size: 34px
    }
}

.landing-page .main-sections-landing {
    display: flex;
    flex-direction: column
}

.landing-page .main-sections-landing:last-child .section-holder {
    margin-bottom: 20px
}

@media (min-width:768px) {
    .landing-page .main-sections-landing:last-child .section-holder {
        margin-bottom: 40px
    }
}

@media (min-width:1024px) {
    .landing-page .main-sections-landing:last-child .section-holder {
        margin-bottom: 60px
    }
}

.landing-page .main-sections-landing .h1 {
    font-weight: 700;
    color: var(--greenDark);
    margin-bottom: 20px;
    line-height: 1.1;
    font-size: 32px;
    margin-top: -15px
}

@media (min-width:768px) {
    .landing-page .main-sections-landing .h1 {
        margin-bottom: 15px;
        font-size: 48px;
        margin-top: -30px
    }
}

@media (min-width:1024px) {
    .landing-page .main-sections-landing .h1 {
        margin-top: -36px;
        font-size: 60px
    }
}

@media (min-width:1200px) {
    .landing-page .main-sections-landing .h1 {
        font-size: 72px;
        margin-top: -40px
    }
}

.landing-page .main-sections-landing .section-holder {
    background: var(--lightPink);
    margin-bottom: 85px
}

@media (min-width:768px) {
    .landing-page .main-sections-landing .section-holder {
        margin-bottom: 105px
    }
}

@media (min-width:1024px) {
    .landing-page .main-sections-landing .section-holder {
        margin-bottom: 125px
    }
}

@media (max-width:767px) {
    .landing-page .main-sections-landing .section-holder {
        padding: 0 25px 35px
    }
}

@media (min-width:1200px) {
    .landing-page .main-sections-landing .article-holder {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media (min-width:768px) {
    .landing-page .main-sections-landing .article-holder .textbox {
        width: 44%
    }
}

@media (min-width:1024px) {
    .landing-page .main-sections-landing .article-holder .textbox {
        width: 40%
    }
}

@media (min-width:768px) {
    .landing-page .main-sections-landing .article-holder .image-holder {
        width: 52.3%
    }
}

.landing-page .main-sections-landing .article-holder:nth-child(2n) .video-wrapper .icon-pause,
.landing-page .main-sections-landing .article-holder:nth-child(2n) .video-wrapper .icon-play {
    border-color: var(--secondary)
}

.landing-page .main-sections-landing .article-holder:nth-child(2n) .video-wrapper .icon-pause:before,
.landing-page .main-sections-landing .article-holder:nth-child(2n) .video-wrapper .icon-play:before {
    border-left-color: var(--secondary)
}

.landing-page .main-sections-landing .article-holder:nth-child(2n) .video-wrapper .icon-pause:after,
.landing-page .main-sections-landing .article-holder:nth-child(2n) .video-wrapper .icon-pause:before {
    background: var(--secondary)
}

.landing-page .main-sections-landing .article-holder.portrait {
    position: relative;
    justify-content: center;
    align-items: flex-start;
    gap: 30px
}

@media (min-width:768px) {
    .landing-page .main-sections-landing .article-holder.portrait {
        gap: 0
    }
}

@media (min-width:1024px) {
    .landing-page .main-sections-landing .article-holder.portrait {
        gap: 25px
    }
}

.landing-page .main-sections-landing .article-holder.portrait:after,
.landing-page .main-sections-landing .article-holder.portrait:before {
    position: absolute;
    content: "";
    background-repeat: no-repeat;
    background-size: 100% 100%
}

.landing-page .main-sections-landing .article-holder.portrait:before {
    width: 67px;
    height: 133px;
    background-image: url("../img/home-2025/ico-vactor-top.svg");
    right: 0;
    top: 0
}

@media (min-width:1024px) {
    .landing-page .main-sections-landing .article-holder.portrait:before {
        top: 30px;
        right: -15px
    }
}

.landing-page .main-sections-landing .article-holder.portrait:after {
    width: 40px;
    height: 53px;
    background-image: url("../img/home-2025/ico-vactor-bottom.svg");
    bottom: 50px;
    left: 0
}

@media (min-width:1024px) {
    .landing-page .main-sections-landing .article-holder.portrait:after {
        bottom: 80px;
        left: 10px
    }
}

.landing-page .main-sections-landing .article-holder.portrait .icon-mascot {
    width: 97px;
    margin: 0 auto
}

@media (min-width:768px) {
    .landing-page .main-sections-landing .article-holder.portrait .icon-mascot {
        margin: -40px 0 0
    }
}

.landing-page .main-sections-landing .article-holder.portrait .icon-mascot img {
    width: 100%;
    height: auto
}

.landing-page .main-sections-landing .article-holder.portrait .video-wrapper {
    z-index: 1
}

@media (min-width:768px) {
    .landing-page .main-sections-landing .article-holder.portrait .video-wrapper {
        margin-top: 30px
    }
}

.landing-page .main-sections-landing .article-holder.portrait .video-wrapper:after,
.landing-page .main-sections-landing .article-holder.portrait .video-wrapper:before {
    display: none
}

.landing-page .main-sections-landing .article-holder.portrait .video-wrapper .video-holder:before {
    padding-top: 365px
}

@media (min-width:768px) {
    .landing-page .main-sections-landing .article-holder.portrait .video-wrapper .video-holder:before {
        padding-top: 496px
    }
}

.landing-page .main-sections-landing .article-holder.portrait .video-wrapper .video-holder:after {
    top: 0;
    left: 50%;
    height: 11%;
    width: 8%;
    transform: translate(-50%, 0) rotate(90deg);
    display: block
}

.landing-page .main-sections-landing .article-holder.portrait .video-wrapper .media-asset {
    width: 89.5%;
    height: 96%;
    border-radius: 20px
}

.landing-page .main-sections-landing .article-holder.portrait .video-wrapper .icon-pause,
.landing-page .main-sections-landing .article-holder.portrait .video-wrapper .icon-play {
    border-color: var(--secondary)
}

.landing-page .main-sections-landing .article-holder.portrait .video-wrapper .icon-pause:before,
.landing-page .main-sections-landing .article-holder.portrait .video-wrapper .icon-play:before {
    border-left-color: var(--secondary)
}

.landing-page .main-sections-landing .article-holder.portrait .video-wrapper .icon-pause:after,
.landing-page .main-sections-landing .article-holder.portrait .video-wrapper .icon-pause:before {
    background: var(--secondary)
}

@media (min-width:768px) {
    .landing-page .main-sections-landing .article-holder.portrait .video-wrapper.image-left {
        transform: rotate(-8deg)
    }
}

@media (min-width:1024px) {
    .landing-page .main-sections-landing .article-holder.portrait .video-wrapper.image-left {
        transform: rotate(-15deg)
    }
}

@media (min-width:768px) {
    .landing-page .main-sections-landing .article-holder.portrait .video-wrapper.image-right {
        transform: rotate(8deg)
    }
}

@media (min-width:1024px) {
    .landing-page .main-sections-landing .article-holder.portrait .video-wrapper.image-right {
        transform: rotate(15deg)
    }
}

.landing-page .main-sections-landing .article-holder.portrait .image-holder {
    width: 180px
}

@media (min-width:768px) {
    .landing-page .main-sections-landing .article-holder.portrait .image-holder {
        width: 243px
    }
}

.landing-page .main-sections-landing .video-wrapper {
    position: relative
}

.landing-page .main-sections-landing .video-wrapper .video-holder {
    width: 100%;
    position: relative;
    overflow: hidden
}

.landing-page .main-sections-landing .video-wrapper .video-holder:before {
    content: "";
    width: 100%;
    display: block;
    padding-top: 56.5%
}

.landing-page .main-sections-landing .video-wrapper .video-holder:after {
    position: absolute;
    left: 3.25%;
    top: 50%;
    transform: translateY(-50%);
    width: 3.27%;
    height: 22%;
    background: url("../img/home-2025/mobile-camera.svg") no-repeat;
    background-size: 100% 100%;
    content: "";
    display: none
}

.landing-page .main-sections-landing .video-wrapper .video-holder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.landing-page .main-sections-landing .video-wrapper:after,
.landing-page .main-sections-landing .video-wrapper:before {
    position: absolute;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    content: ""
}

.landing-page .main-sections-landing .video-wrapper:before {
    left: -12px;
    top: -12px;
    width: 12px;
    height: 25px;
    background-image: url("../img/home-2025/vector-top-m.svg")
}

@media (min-width:768px) {
    .landing-page .main-sections-landing .video-wrapper:before {
        left: -14px;
        top: -14px;
        width: 21px;
        height: 26px;
        background-image: url("../img/home-2025/vector-top.svg")
    }
}

.landing-page .main-sections-landing .video-wrapper:after {
    right: -11px;
    bottom: -14px;
    width: 12px;
    height: 23px;
    background-image: url("../img/home-2025/vector-bottom-m.svg")
}

@media (min-width:768px) {
    .landing-page .main-sections-landing .video-wrapper:after {
        right: -15px;
        bottom: -14px;
        width: 24px;
        background-image: url("../img/home-2025/vector-bottom.svg")
    }
}

.landing-page .main-sections-landing .video-wrapper .media-asset {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 96%;
    height: 90%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px
}

@media (min-width:1024px) {
    .landing-page .main-sections-landing .video-wrapper .media-asset {
        border-radius: 25px
    }
}

.landing-page .main-sections-landing .video-wrapper .mobile-frame {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.landing-page .main-sections-landing .video-wrapper .video-controls {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: 0.3s
}

.landing-page .main-sections-landing .video-wrapper .playPauseBtn {
    background: transparent;
    display: block;
    border: 0;
    cursor: pointer
}

.landing-page .main-sections-landing .video-wrapper .icon-pause,
.landing-page .main-sections-landing .video-wrapper .icon-play {
    width: 50px;
    height: 50px;
    border: 5px solid var(--white);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px
}

@media (min-width:1024px) {

    .landing-page .main-sections-landing .video-wrapper .icon-pause,
    .landing-page .main-sections-landing .video-wrapper .icon-play {
        width: 78px;
        height: 78px;
        border-width: 8px;
        gap: 6px
    }
}

.landing-page .main-sections-landing .video-wrapper .icon-pause:after,
.landing-page .main-sections-landing .video-wrapper .icon-pause:before,
.landing-page .main-sections-landing .video-wrapper .icon-play:after,
.landing-page .main-sections-landing .video-wrapper .icon-play:before {
    content: ""
}

.landing-page .main-sections-landing .video-wrapper .icon-play:before {
    border-style: solid;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent var(--white);
    margin-left: 5px
}

@media (min-width:1024px) {
    .landing-page .main-sections-landing .video-wrapper .icon-play:before {
        border-width: 15px 0 15px 24px
    }
}

.landing-page .main-sections-landing .video-wrapper .icon-play:after {
    display: none
}

.landing-page .main-sections-landing .video-wrapper .icon-pause:after,
.landing-page .main-sections-landing .video-wrapper .icon-pause:before {
    width: 4px;
    height: 15px;
    background: var(--white)
}

@media (min-width:1024px) {

    .landing-page .main-sections-landing .video-wrapper .icon-pause:after,
    .landing-page .main-sections-landing .video-wrapper .icon-pause:before {
        width: 7px;
        height: 24px
    }
}

.landing-page .main-sections-landing .video-wrapper.video-playing .video-controls {
    opacity: 0;
    visibility: hidden
}

.landing-page .main-sections-landing .video-wrapper.video-playing:hover .video-controls {
    opacity: 1;
    visibility: visible
}

.landing-page .main-sections-landing .video-wrapper.size-1 .video-holder:before {
    padding-top: 50.2%
}

.landing-page .main-sections-landing .video-wrapper.size-2 .video-holder:before {
    padding-top: 48.5%
}

.landing-page .main-sections-landing .video-wrapper.size-3 .video-holder:before {
    padding-top: 59.5%
}

.landing-page .footer {
    background: transparent;
    padding: 15px 0 30px
}

@media (min-width:768px) {
    .landing-page .footer {
        padding: 40px 0
    }
}

@media (min-width:1024px) {
    .landing-page .footer {
        padding: 50px 0
    }
}

.landing-page .footer .footer-holder {
    background: var(--greenDark1);
    border-radius: 10px;
    padding: 29px 15px;
    max-width: 1120px;
    margin: 0 auto;
    text-align: center
}

@media (min-width:768px) {
    .landing-page .footer .footer-holder {
        padding: 30px 15px
    }
}

.landing-page .footer p {
    width: 100%;
    color: var(--white);
    font-size: 16px
}

.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
}