/* latin-ext */
@font-face {
    font-family: 'Figtree';
    font-style: normal;
    font-weight: 300 900;
    font-display: swap;
    src: url(../fonts/Figtree-Latin-ext.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
    font-family: 'Figtree';
    font-style: normal;
    font-weight: 300 900;
    font-display: swap;
    src: url(../fonts/Figtree-Latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

*:not(dialog) {
    margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        interpolate-size: allow-keywords;
    }
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

b,
strong {
    font-weight: 600;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

p {
    text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: pretty;
}

#root,
#__next {
    isolation: isolate;
}

p:last-child,
ul:last-child,
ol:last-child,
table:last-child {
    margin-bottom: 0;
}

button {
    cursor: pointer;
}

/** End Reset **/


/**
 * Variables
 */

:root {
    --primary-color: #21b89f;
    --alternate-color: #ff7f50;
    --light-grey: #eff3f8;
    --text-color: #2c3232;
    --small-text: 17px;
    --medium-text: 18px;
    --dark-green: #24827d;
    --darker-green: #135551;
    --breathe: 6em;
    --gutter: 1.9em;
    --gap: 1em;
    --content-width: 1200px;
    --content-large: 990px;
    --content-medium: 900px;
    --content-small: 780px;
    --shadow: 0 0 60px 10px rgba(0, 0, 0, .05);
    --green-gradient: linear-gradient(154deg, #089496, #03b087);
}

@media (max-width: 767px) {
    :root {
        --gutter: 1.75em;
    }
}


/**
 * Generic classes
 */

.center {
    text-align: center;
}

.align-center {
    margin-left: auto;
    margin-right: auto;
}

.block {
    display: block;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.flex.center {
    justify-content: center;
}

.flex.center-items {
    align-items: center;
}

.flex.split {
    gap: 0 5%;
}

.flex.split>div {
    width: 47.5%;
}

@media (min-width: 1024px) {
    .flex.split.center {
        text-align: left;
    }

    .flex.split.center h2:after {
        left: 0;
        transform: none;
    }
}

@media (max-width: 1023px) {
    .flex.split {
        gap: 0;
    }

    .flex.split>div {
        order: 0 !important;
        width: 100%;
    }

    .flex.split .media {
        margin-top: var(--gutter);
    }
}

.gap {
    gap: var(--gap);
}

.gap-large {
    gap: 32px;
}

.grid {
    display: grid;
}

.grid.two {
    grid-template-columns: repeat(2, 1fr);
}

.grid.three {
    grid-template-columns: repeat(3, 1fr);
}

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

.nowrap {
    flex-wrap: nowrap;
}

.dark {
    color: white;
}

@media (min-width: 1024px) {

    .t,
    .m {
        display: none;
    }
}

@media (max-width: 1023px) {
    .d {
        display: none;
    }

    .t {
        display: block;
    }
}

.glass {
    background: rgba(255, 255, 255, .55);
    backdrop-filter: saturate(180%) blur(25px);
    border: 1px solid #ffffffaa;
    border-radius: 24px;
    /*box-shadow: 0 5px 25px 5px #0000001a;*/
    box-shadow: 0 0 60px 5px #00000022;
    padding: var(--gutter);
}

.silver {
    background: radial-gradient(circle, #47615c17 60%, rgb(210 217 216 / 60%) 100%);
    border: 1px solid #fff;
    box-shadow: 0 0 60px 10px #00000011;
    padding: var(--gutter) calc(var(--gutter) / 4 * 3);
}

.light-grad {
    background: radial-gradient(circle, #21b89f20 0%, rgba(239, 243, 248, 1) 100%);
}

.light-grad .glass {
    border: 2px solid white;
    box-shadow: 0 0 60px 10px rgba(0, 0, 0, .1);
    background: #ffffffaa;
    backdrop-filter: none;
}

.breathe-top {
    padding-top: var(--gap);
}

.shadow {
    box-shadow: var(--shadow);
}

.img-shadow {
    filter: drop-shadow(0 0 80px #33ffcc55);
}

.drop-shadow {
    border-radius: 24px;
    filter: drop-shadow(0 0 60px rgba(50, 50, 50, 0.2));
}

.checks {
    list-style: none;
}

.checks li {
    font-size: var(--medium-text);
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.checks li:after {
    content: '';
    display: block;
    color: var(--primary-color);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 4.5px;
    mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path fill="black" d="M13.485 1.929l1.414 1.414L5.657 12.586 1.1 8.029l1.414-1.414 3.143 3.143z"/></svg>') no-repeat center;
    mask-size: contain;
    width: 18px;
    height: 18px;
    background-color: var(--primary-color);
}

.dark .checks li::after {
    background-color: #ffffffaa;
}

.rtt {
    transition: all .1s ease !important;
}

.rtt:hover,
.swiper-initialized .rtt.swiper-slide-active {
    box-shadow: 0px 15px 40px 0px #0000001A;
    transform: rotate(-3.5deg) !important;
    background: #ffffffdd;
}

.rtt:nth-child(even):hover,
.swiper-initialized .rtt.swiper-slide-active:nth-child(even) {
    transform: rotate(3.5deg) !important;
}

.swiper-initialized .rtt:hover:not(.swiper-slide-active) {
    transform: none !important;
}


/**
 * Main elements
 */

body {
    color: var(--text-color);
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
}

main p,
main ul,
main ol,
main table {
    font-size: 20px;
    margin-bottom: 2em;
}

a {
    color: var(--primary-color)
}

a.ext {
    display: inline-flex !important;
    flex-wrap: nowrap;
}

a.ext i {
    font-size: 9.5px;
    opacity: .75;
    margin-top: 3px;
    margin-left: 1px;
}

footer a.ext i {
    margin-top: 6px;
    opacity: .85;
}

.dark a,
.hl header a {
    color: white;
}

h1 {
    font-size: 52px;
    font-weight: 500;
    margin-bottom: .5em;
    letter-spacing: -1px;
    line-height: 1.3;
    -webkit-font-smoothing: auto;
}

.hero h1 span {
    display: block;
    font-size: 90%;
    font-weight: 400;
}

.hero.dark h1 span {
    color: #ffffffcc;
}

@media (max-width: 767px) {
    h1 {
        font-size: 40px;
    }

    .hero h1 {
        font-size: 38px;
        font-weight: 600;
    }

    .hero h1 span {
        font-size: 32px;
        font-weight: 500;
    }
}

h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 1.25em;
    letter-spacing: -1px;
    line-height: 1.2;
    position: relative;
}

@media (max-width: 767px) {
    h2 {
        font-size: 39px;
    }
}

h2:after {
    content: '';
    display: block;
    width: 50px;
    background: var(--primary-color);
    height: 4px;
    position: absolute;
    border-radius: 2px;
    margin-top: 2px;
    margin-left: 0;
    bottom: -12px;
}

.center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

section>.wrap>h2:first-child {
    margin-top: -20px;
}

h3 {
    font-size: 27px;
    font-weight: 550;
    letter-spacing: -.5px;
    margin-bottom: .25em;
}

h4 {
    font-size: 20px;
    font-weight: 600;
    -webkit-font-smoothing: auto;
}

ul,
ol {
    padding-left: 0;
    text-align: left;
}

ul.flex {
    list-style: none;
}


/**
 * Buttons
 */

.btn,
input[type=submit] {
    background: var(--green-gradient);
    border: 1px solid #ffffffcc;
    border-color: transparent;
    border-radius: 100px;
    box-shadow: var(--shadow);
    color: #ffffffee;
    display: inline-block;
    font-size: 19px;
    letter-spacing: -.5px;
    line-height: 1;
    font-weight: 500;
    padding: 13px 21px 15px;
    text-decoration: none;
    transition: all ease .1s;
}

.btn.light,
.btn.lighter {
    background: linear-gradient(0deg, rgba(255, 255, 255, .1) 0%, rgba(255, 255, 255, .15) 50%);
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 400;
}

.btn:hover,
input[type=submit]:hover {
    filter: brightness(1.1);
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2) !important;
}

.btn.light:hover,
.btn.lighter:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    filter: brightness(.95);
}

.dark .btn:hover,
.hl header .btn:not(.lighter):hover {
    filter: brightness(.95);
}

@media (max-width: 767px) {
    .btn {
        padding-left: 18px;
        padding-right: 18px;
    }
}


.dark.hero .btn:not(.light):not(.lighter) {
    /*
    background: linear-gradient(139deg, rgba(255, 127, 80, 1) 0%, rgba(242, 100, 48, 1) 100%);
    color: white;
    border-color: #ffffff66;
    */

    background: white;
    color: var(--darker-green);
    border-color: #ffffff88;
}


.dark .btn:not(.light):not(.lighter),
.hl header:not(.scrolled) .btn:not(.light):not(.lighter) {
    background: white;
    color: var(--darker-green);
    border-color: #ffffff66;
}

.dark .btn.light,
.hl header:not(.scrolled) .btn.light {
    background: linear-gradient(0deg, rgba(255, 255, 255, .1) 0%, rgba(255, 255, 255, .15) 50%);
    border-color: #ffffffaa;
    color: white;
}

.dark .btn.lighter,
.hl header:not(.scrolled) .btn.lighter {
    background: transparent;
    border-color: #ffffff99;
    color: #ffffffdd;
}

.dark .btn.lighter:hover,
.hl header:not(.scrolled) .btn.lighter:hover {
    border-color: #fff;
    color: #fff;
}

@media (max-width: 1023px) {

    .dark .btn.lighter,
    .hl header:not(.scrolled) .btn.lighter {
        background: transparent;
        border-color: #ffffffaa;
        color: #ffffffee;
    }
}

/*
.highlight .btn:not(.light) {
    background: linear-gradient(139deg, rgba(255, 127, 80, 1) 0%, rgba(242, 100, 48, 1) 100%);
    color: white;
    border-color: #ffffff66;
}*/

header .btn,
footer .btn {
    font-size: var(--small-text);
    font-weight: 400;
}

@media (min-width: 1024px) {

    header .btn,
    footer .btn {
        padding: 10px 17px 12px;
    }
}

body.nav-open.hl header:not(.scrolled) .btn:not(.light):not(.lighter) {
    background: var(--green-gradient);
    border: 1px solid #ffffffcc;
    color: #ffffffee;
}

body.nav-open.hl header:not(.scrolled) .btn.light,
body.nav-open.hl header:not(.scrolled) .btn.lighter {
    background: linear-gradient(0deg, rgba(255, 255, 255, .1) 0%, rgba(255, 255, 255, .15) 50%);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

@media (max-width: 1023px) {

    header .btn,
    footer .btn {
        font-size: var(--medium-text);
    }
}

.btn i {
    margin-top: 1px;
    display: block;
    float: right;
    margin-left: 1px;
    margin-right: -7px;
}

/*
@media (max-width: 479px) {
    .btns .btn i {
        display: none;
    }
}
*/


/**
 * Layout
 */

section,
footer {
    padding: var(--breathe) 0;
    position: relative;
    z-index: 0;
}

main {
    overflow: hidden;
}

section:not(.hero):not(.stats-bar):not(.page-head)+section {
    border-top: 2px solid var(--light-grey);
}

.wrap {
    margin: 0 auto;
    max-width: var(--content-width);
    padding: 0 var(--gutter);
    position: relative;
    z-index: 1;
}

.wrap.medium {
    max-width: var(--content-medium);
}

.wrap.large {
    max-width: var(--content-large);
}

@media (max-width: 1023px) {
    .wrap.large {
        max-width: var(--content-medium);
        width: 100%;
    }
}

.content-small {
    max-width: var(--content-small);
}

p.intro {
    margin-bottom: 3em;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

p.intro:last-child {
    margin-bottom: 0;
}


/**
 * Header
 */

header {
    height: 96px;
    margin-bottom: -96px;
    padding: 27px 0;
    top: -79px;
    width: 100%;
    z-index: 10;
}

header .logo-light,
.hl .logo-dark {
    display: none;
}

.hl .logo-light {
    display: block;
}

header .logo img {
    filter: drop-shadow(0 0 30px #00000055);
}

header.scrolled .logo img {
    filter: drop-shadow(0 0 30px #ffffffbb);
}

header nav ul {
    align-items: center;
}

@media (min-width: 1024px) {
    header.scrolled .logo img {
        margin-top: 1.5px;
    }

    header nav ul.extra {
        display: none;
    }

    header .menu-toggle {
        display: none;
    }

    header nav li:first-child {
        display: none;
    }

    body.hl:not(.nav-open) header nav a:not(.btn) {
        text-shadow: 0 0 15px #00000033;
    }
}

header nav a:not(.btn) {
    color: var(--text-color);
    display: block;
    font-size: var(--small-text);
    padding: 8px 20px 10px;
    text-decoration: none;
}

@media (min-width: 1024px) {
    header nav a:not(.btn):hover {
        text-decoration: underline;
    }

    header nav a.active {
        /*box-shadow: 0 0 20px 5px #00000011;
        border-radius: 10px;
        */
        color: var(--dark-green) !important;
        font-weight: 550;
        border-radius: 10px
    }
}

@media (max-width: 1023px) {
    header nav a.active {
        color: var(--dark-green);
        font-weight: 550;
    }
}

.hl header:not(.scrolled) nav a:not(.btn) {
    font-weight: 500;
}

header nav .h-t {
    margin: 0 1.25em;
}

@media (min-width: 1024px) {
    header nav a {
        color: var(--text-color);
    }

    .hl header nav a {
        color: white;
    }
}

@media (max-width: 1023px) {
    header nav a:not(.btn) {
        font-size: var(--medium-text);
        padding: 10px 8px;
    }
}

/*
@media (min-width: 1024px) and (max-width: 1067px) {
    header nav .h-t {
        display: none;
    }

    header nav .h-t+li {
        margin-left: 1.25em;
    }
}*/

header.scrolled {
    /*background: rgba(255, 255, 255, .75);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid #ffffff55;
    box-shadow: var(--shadow);*/
    padding: 18px 0;
    position: fixed;
    top: 0;
    transition: all 0.5s ease;
}

header.scrolled {
    height: auto;
}

header.scrolled .logo-light {
    display: none;
}

header.scrolled .logo-dark {
    display: block;
}

header.scrolled>.wrap {
    backdrop-filter: saturate(180%) blur(20px);
    box-shadow: 0 0 60px 5px #00000022;
    padding: .75em 1.5em;
    max-width: 970px;
    border-radius: 12px;
    background: #ffffffaa;
    border: 1px solid #ffffff77;
}

@media (min-width: 1024px) {
    header.scrolled nav a:not(.btn) {
        color: var(--text-color);
        padding-left: 14px;
        padding-right: 14px;
        letter-spacing: -.15px;
        color: #084f4ef5;
    }
}

@media (max-width: 1023px) {
    body.nav-open {
        overflow: hidden;
    }

    body.nav-open header {
        position: fixed;
        top: 0;
    }

    body.nav-open header:not(.scrolled) .logo {
        opacity: .625;
    }

    header nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 84%;
        max-width: 340px;
        height: 100vh;
        background: #fff;
        padding: 80px 30px 30px;
        transform: translateX(calc(100% + var(--gutter)));
        transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
        z-index: 11;
    }

    header.scrolled nav {
        width: calc(82.5% + (var(--gutter) * 2));

        width: calc((100% + (var(--gutter) * 2)) / 100 * 82.5);
    }

    .menu-toggle {
        display: block;
        width: 40px;
        height: 40px;
        position: relative;
        border: none;
        background: transparent;
        cursor: pointer;
        padding: 0;
        right: 1.125em;
        top: .5px;
        position: absolute;
        z-index: 12;
    }

    .menu-toggle span {
        position: absolute;
        left: 50%;
        width: 24px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transform: translateX(-50%);
        transition: all 0.35s ease;
    }

    .menu-toggle span:nth-child(1) {
        top: 10.5px;
    }

    .menu-toggle span:nth-child(2) {
        top: 18px;
    }

    .menu-toggle span:nth-child(3) {
        top: 25.5px;
    }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 9;
    }

    #header.nav-open~.nav-overlay,
    body.nav-open .nav-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-open .menu-toggle span:nth-child(1) {
        top: 18px;
        transform: translateX(-50%) rotate(45deg);
    }

    .nav-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .nav-open .menu-toggle span:nth-child(3) {
        top: 18px;
        transform: translateX(-50%) rotate(-45deg);
    }

    header.scrolled .menu-toggle {
        top: 50%;
        transform: translateY(-50%);
        transition: .25s all ease;
    }

    .nav-open header.scrolled .menu-toggle {
        right: 0;
    }

    header.scrolled {
        padding: calc(var(--gutter) / 2) 0;
    }

    header.scrolled>.wrap {
        border-color: #eee;
        padding: 1em 1.25em;
        margin-left: calc(var(--gutter) / 2);
        margin-right: calc(var(--gutter) / 2);
        width: calc(100% - (var(--gutter)));
    }

    header.scrolled .logo img {
        margin-top: -2px;
        width: 150px;
    }

    body:not(.hl) .menu-toggle span,
    header.scrolled .menu-toggle span,
    .nav-open .menu-toggle span {
        background: var(--darker-green);
    }

    header.nav-open nav {
        transform: translateX(0);
    }

    header.scrolled.nav-open nav {
        top: -20px;
        right: calc(var(--gutter) * -1);
    }

    header nav .extra a:not(.btn) {
        padding: 6px 8px;
    }

    header nav ul li {
        width: 100%;
    }

    header nav li.h-t,
    header nav li.h-t+li {
        margin-left: 0;
        margin-top: 1em;
        width: auto;
    }

    header nav .extra {
        border-top: 1px solid #eee;
        margin-top: 3em;
        padding-top: 1em;
        opacity: .75;
        list-style: none;
    }

    header nav .extra a {
        font-size: 16px;
        padding: 7px 8px;
    }
}

@media (max-width: 480px) {
    header.scrolled>.wrap {
        box-shadow: 0 0 20px 5px #00000022;
        border-color: #ddddddcc;
    }
}


/**
 * Footer
 */

footer {
    background: linear-gradient(45deg, #13404d, #007376);
    padding-bottom: 1em;
    padding-top: 4em;
}

footer img {
    width: 200px;
    display: block;
    margin-bottom: 1.5em !important;
}

footer .wrap {
    max-width: 1100px;
}

@media (max-width: 1023px) {
    footer {
        padding-top: 2em;
    }
}

footer p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 1.5em !important;
}

@media (max-width: 1023px) {
    footer p {
        font-size: var(--small-text);
    }
}

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer .copy {
    margin-top: 2.5em;
    border-top: 1px solid #ffffff33;
    padding-top: 12px;
    opacity: .625;
}

footer .copy br {
    display: none;
}

footer .copy p {
    font-size: 15px;
    line-height: 1.5;
}

footer .flex {
    gap: 100px;
}

@media (max-width: 1179px) {
    footer .flex {
        gap: 75px;
    }

    footer .flex .flex {
        padding-right: 50px;
    }
}

@media (max-width: 1023px) {
    footer .flex {
        gap: 0 10vw;
    }

    footer .flex .flex {
        padding-right: 0;
    }

    footer .space-between>div:first-child {
        width: 100%;
    }
}

@media (max-width: 659px) {
    footer .flex .flex>div+div+div {
        display: flex;
        gap: var(--gap);
        width: 100%;
    }
}

@media (max-width: 519px) {
    footer .copy p br {
        display: block;
    }
}

@media (max-width: 449px) {
    footer .flex>div {
        width: 100%;
    }

    footer p {
        margin-bottom: 0 !important;
    }

    footer .copy p {
        margin-bottom: 1.5em !important;
        text-wrap: auto;
    }

    footer .flex .flex>div+div+div {
        padding-top: 1.5em;
        margin-bottom: -1em;
    }
}


/**
 * Language selector
 */

.lang {
    display: inline-block;
    height: 42px;
    margin-bottom: 1.5em;
}

.lang ul {
    border: 1px solid white;
    padding: 3px 0;
    margin-bottom: .25em;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    list-style: none;
    width: 136px;
}

.lang ul::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 15.5px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid white;
}

.lang.open ul::after {
    transform: rotate(180deg);
    top: 14.5px;
}

@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
    .lang:hover li {
        display: block;
    }

    .lang:hover ul {
        border-radius: 19px;
    }

    .lang:hover ul::after {
        transform: rotate(180deg);
    }
}

@media (max-width: 1023px) {
    .lang {
        height: 48px;
    }

    .lang ul {
        border-radius: 80px;
        padding: 6px 0 7px;
        width: 148px;
    }

    .lang ul::after {
        top: 21px;
    }

    .lang.open ul {
        border-radius: 25px;
    }

    .lang.open ul::after {
        top: 20px;
    }

    .lang ul a {
        font-size: var(--medium-text);
    }
}

.lang li {
    display: none;
}

.lang.open li,
.lang li.active {
    display: block;
}

.lang li a {
    display: block;
    padding: 3px 34px 3px 20px;
}

.lang li.active,
.lang li.active a {
    cursor: default;
}

.lang li.active a {
    pointer-events: none;
}


/**
 * Hero
 */

.hl .hero {
    background: linear-gradient(270deg, rgb(17 195 164), rgb(0 88 99 / 90%)),
        /* base gradient */
        linear-gradient(42.64deg, #083934 0%, #08bfae 57.7588%, #000000 100%);

    background: linear-gradient(330deg, rgb(0 236 177), rgb(28 92 105 / 90%)),
        /* base gradient */
        linear-gradient(42.64deg, #000000 0%, #000000 27.7588%, #ff0000 110%);

    background: linear-gradient(330deg, rgb(0 236 199), rgb(28 92 105 / 90%)), linear-gradient(42.64deg, #000000 0%, #000000 27.7588%, #ff0000 110%)
}

@media (min-width: 768px) {
    .hero {
        padding-bottom: 10em;
        padding-top: 7.75em;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding-bottom: 11.75em;
        padding-top: 9em;
    }
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: linear-gradient(rgba(100, 191, 165, 1) 1px, transparent 1px), linear-gradient(90deg, rgba(100, 191, 165, 1) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero .content {
    width: 600px;
}

.hero.dark .content h1,
.hero.dark .content p:not(.btns) {
    text-shadow: 0 0 40px #00000055;
}

@media (max-width: 1023px) {

    .hero.dark .content h1,
    .hero.dark .content p:not(.btns) {
        text-shadow: 0 0 5px #00000033;
    }
}

.hero .content p:not(.btns) {
    opacity: .9;
}

@media (min-width: 1024px) {
    .hero .content p {
        max-width: 500px;
    }

    .hero .content p.btns {
        margin-bottom: 0;
        padding-top: 1em;
    }
}

.hero .media {
    margin-right: -80px;
}

.hero .media img {
    /*filter: drop-shadow(rgba(85, 255, 221, 0.267) 0px 0px 80px);*/
    /*filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.35));*/
    margin-bottom: -200px;
    margin-top: -2em;
    width: 800px;
}

@media (min-width: 1024px) {
    .hero .media::after {
        content: "";
        position: absolute;
        bottom: -65px;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 40px;
        background: rgba(0, 0, 0, 0.2);
        filter: blur(20px);
        border-radius: 50%;
    }

    .hero .media img {
        filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.35));
    }
}

@media (min-width: 1024px) and (max-width: 1100px) {
    .hero h1 {
        font-size: 42px;
    }

    .hero .content {
        width: 540px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero .content {
        min-width: 385px;
        width: 65%;
    }

    .hero .media {
        padding-left: 30px;
        max-width: 400px;
        width: 65%;
        margin-bottom: -3em;
        margin-top: 50px;
    }

    .hero .media img {
        height: 420px;
    }

    .hero p {
        font-size: 19px;
    }

    .hero .media img {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        width: auto;
    }
}

@media (max-width: 767px) {
    .hero {
        text-align: center;
    }

    .hero h1 {
        margin-left: -1.5em;
        margin-right: -1.5em;
    }

    .hero>.wrap>.flex {
        display: block;
    }

    .hero .content {
        width: 100%;
    }

    .hero .btns {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero .media {
        margin-right: 0;
    }

    .hero .media img {
        height: auto;
        margin: 1.5em auto 0;
        min-width: 430px;
        width: 70%;
    }
}

#changing-text {
    display: block;
    will-change: transform, opacity;
}

/* OUT (fast + sharp) */
.slide-out {
    animation: slideOut 0.2s cubic-bezier(0.4, 0, 1, 1) forwards;
}

/* IN (slightly softer) */
.slide-in {
    animation: slideIn 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Keyframes */
@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(125px);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(125px);
    }

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


/**
 * Page head
 */

.page-head {
    padding-top: 7.5em;
    padding-bottom: calc(var(--breathe) / 4 * 3);
}

.page-head:not(.light-grad) {
    background: #edf8fb66 !important;
    border-bottom: 1px solid #00808021;
}

/*
.page-head.light-grad {
    margin-bottom: 0;
    padding-bottom: calc(var(--breathe) / 4);
}
*/

.page-head.light-grad+.light-grad {
    padding-top: calc(var(--breathe) / 2);
}

.page-head h1 {
    font-weight: 600;
}



/**
 * Stats bar
 */

.stats-bar {
    background: transparent;
    padding: 0;
}

.stats-inner {
    display: flex;
    padding: 0;
    /*background: rgba(255, 255, 255, .625);*/
    backdrop-filter: saturate(150%) blur(25px);
}

@media (min-width: 768px) {
    .stats-inner {
        justify-content: center;
        height: 150px;
        margin: -75px auto 0;
        max-width: 860px;
    }
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 2em 1.5em;
    position: relative;
}

.stat-item+.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: #23908d42;
}

.stat-number {
    font-size: 36px;
    color: var(--primary-color);
    line-height: 1.1;
    display: block;
    color: #0f4b4cd4;
    color: #092526cc;
    font-weight: 600;
    -webkit-font-smoothing: auto;
}

@media (max-width: 1023px) {
    .stat-number {
        font-size: 32px;
    }

    .stat-item {
        padding: 2em 1.3em;
    }
}

@media (max-width: 767px) {
    .stats-bar {
        height: 148px;
        margin-top: calc(148px / -2);
    }

    .stats-inner {
        border-radius: 0;
        margin-left: calc(var(--gutter) * -1);
        margin-right: calc(var(--gutter) * -1);
        overflow: auto;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-item {
        min-width: 170px;
    }
}

.stat-label {
    font-size: 15px;
    color: #596563;
    line-height: 1.3;
    margin-top: .35em;
    display: block;
}


/**
 * Reveal
 */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease;
}

.delay {
    transition-delay: .4s;
}

.delay-more {
    transition-delay: .8s;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/**
 * How it works
 */

#how-it-works .step-buttons {
    list-style: none;
    margin-bottom: 2em;
    padding-left: 0;
    width: 382px;
    z-index: 1;
}

#how-it-works .step-buttons li {
    cursor: pointer;
    display: flex;
    padding: 23.5px;
    position: relative;
    transition: none;
}

#how-it-works .step-buttons li:not(.active) {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    opacity: .625;
}

#how-it-works .step-buttons li:hover {
    opacity: 1;
}

#how-it-works .step-buttons li.active {
    transition: all 1s ease;
}

#how-it-works .step-buttons p {
    font-size: var(--small-text);
}

#how-it-works .counter {
    align-items: center;
    background: #cfe7e5;
    border-radius: 100px;
    color: var(--dark-green);
    display: flex;
    font-size: 22px;
    font-weight: 700;
    height: 40px;
    justify-content: center;
    line-height: 1;
    margin-right: .8em;
    text-align: center;
    width: 40px;
}

#how-it-works li.active .counter {
    background-color: var(--primary-color);
    color: white;
}

#how-it-works .steps {
    position: relative;
}

#how-it-works .steps .step-videos {
    position: absolute;
    margin-top: 24px;
    position: absolute;
    z-index: -1;
}

#how-it-works .steps .step-videos video {
    display: none;
}

#how-it-works .steps .step-videos video.active {
    display: block;
}

@media (min-width: 1201px) {
    #how-it-works .steps .step-videos {
        right: -220px;
        top: -91px;
        width: calc(100% - 85px);
    }
}

/*
@media (min-width: 1201px) and (max-width: 1440px) {
    #how-it-works .steps .step-videos {
        right: -150px;
        top: -84px;
        width: calc(100% - 169px);
    }
}*/

@media (min-width: 1024px) and (max-width: 1200px) {
    #how-it-works .steps {
        margin-top: -2em;
        margin-bottom: -2em;
    }

    #how-it-works .step-buttons {
        margin-top: 32px;
        width: 332px;
    }

    #how-it-works .step-buttons li {
        padding: 18px;
    }

    #how-it-works .step-buttons h4 {
        font-size: 18px;
    }

    #how-it-works .step-buttons p {
        line-height: 1.3;
    }

    #how-it-works .steps .step-videos {
        right: -150px;
        top: 50%;
        width: calc(100% - 120px);
        transform: translateY(-50%);
        margin-top: 0;
    }
}

@media (max-width: 1023px) {
    #how-it-works .counter {
        margin-right: .5em;
    }

    #how-it-works .step-buttons li {
        align-items: center;
        border-radius: 100px;
        padding: 10px;
    }

    #how-it-works .step-buttons h4 {
        font-size: var(--medium-text);
    }

    #how-it-works .step-buttons p {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    #how-it-works .step-buttons {
        padding-right: 1em;
        width: 320px;
    }

    #how-it-works .steps .step-videos {
        width: calc(100% - 155px);
        right: -110px;
        top: -70px;
    }
}

@media (max-width: 767px) {
    #how-it-works .step-buttons {
        margin-bottom: 0;
    }

    #how-it-works .steps .step-videos {
        display: block;
        position: static;
        width: calc(100% + 132px);
        margin-left: -66px;
        margin-right: -66px;
        margin-top: 10px;
        margin-bottom: -2em;
    }
}


/**
 * Tabs
 */

.tabs .tab {
    display: none;
    margin: 0 auto;
}

.tabs .tab.active {
    display: block;
}

.tab-nav {
    background: #ffffffaa;
    border-radius: 100px;
    display: inline-flex;
    flex-grow: 0;
    list-style: none;
    padding: 8px 10px;
    position: relative;
    margin-bottom: 2em;
    box-shadow: 0 0 60px 10px rgba(0, 0, 0, .09);
}

.page-head .tab-nav {
    margin-bottom: 0;
}

.tab img.media {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.25));
    width: 960px;
}

.tab:nth-child(3) img.media {
    filter: none;
    margin-bottom: -19px;
    width: 680px;
}

.tab:nth-child(4) img.media {
    margin-bottom: 9px;
    width: 740px;
}

@media (max-width: 1023px) {
    .tab-nav-scroll {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-top: 4em;
        padding-bottom: 4em;
        margin-top: -4em;
        margin-bottom: -4em;
    }

    .tab-nav-scroll::-webkit-scrollbar {
        display: none;
    }

    .tab-nav-wrap {
        display: inline-block;
        padding-left: 1.5em;
        padding-right: 1.5em;
    }

    .tab-nav {
        display: inline-flex;
        width: max-content;
        max-width: none;
        white-space: nowrap;
        box-sizing: border-box;
    }

    .tab-link {
        flex: 0 0 auto;
    }

    .tab .media img {
        width: 100%;
    }
}

.tab-link {
    color: #14464a;
    position: relative;
    z-index: 2;
    padding: 9px 24px;
    text-decoration: none;
    white-space: nowrap;
    font-size: 18px;
}

.tab-link.active {
    color: white;
}

.pill {
    position: absolute;
    z-index: 1;
    border-radius: 999px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0px 0px 50px 10px #00000011;
    border: 1px solid white;
}

.reorder-tabs .tab {
    padding: calc(var(--breathe) / 3 * 2) 0 calc(var(--breathe) / 4 * 3);
    position: relative;
}

.reorder-tabs .tab:first-child {
    margin-top: -2em;
    padding-top: 0;
}

.reorder-tabs .tab:last-child {
    padding-bottom: 0;
}

.reorder-tabs .tab+.tab:before {
    content: '';
    display: block;
    width: 100%;
    background: #eee;
    height: 1.5px;
    position: absolute;
    border-radius: 2px;
    top: 0;
}

.reorder-tabs .tab+.tab .flex>div:first-child {
    order: 2;
}

.reorder-tabs .tab+.tab+.tab .flex>div:first-child {
    order: 0;
}


/**
 * Boxes
 */

.boxes {
    list-style: none;
    max-width: 940px;
    padding-left: 0;
}

.boxes.content-small {
    max-width: var(--content-small);
}

.boxes p {
    font-size: var(--small-text);
}

.boxes.icons li,
.boxes.checks li {
    padding-left: 74px;
    position: relative;
}

.boxes.icons li .icon,
.boxes.checks li::after {
    color: var(--primary-color);
    position: absolute;
    left: 27px;
    top: 27px;
    width: 27px;
    height: 27px;
}

.boxes.checks li::after {
    top: 29px;
}

.boxes.icons li .icon {
    filter: brightness(115%);
}

.boxes.checks li {
    font-size: 20px;
    margin-bottom: 0;
}

.boxes.icons li h4,
.boxes.checks li h4 {
    margin-top: -15px;
}

.boxes.icons li p,
.boxes.checks li p {
    margin-bottom: -15px;
}

.boxes:not(.icons):not(.checks) h4 {
    margin-top: -7.5px;
}

.boxes:not(.icons):not(.checks) p {
    margin-bottom: -7.5px;
}

.boxes .pull {
    display: block;
    font-size: var(--medium-text);
    margin: -10px 0 -10px -5px;
}

@media (max-width: 767px) {
    .boxes {
        display: flex;
        flex-wrap: wrap;
        gap: var(--gap);
    }

    .boxes.grid>li {
        width: 100%;
    }

    .boxes.icons>li {
        display: block;
        padding: calc(var(--gutter)/2);
        text-align: center;
        width: calc(50% - calc(var(--gap) / 2))
    }

    .boxes.icons li .icon {
        margin: 0 auto .5em;
        position: static;
    }

    .boxes.icons h4 {
        font-size: var(--small-text);
        font-weight: 400;
        margin: 0 !important;
        line-height: 1.4;
    }

    .boxes.icons p {
        display: none;
    }

    .boxes:not(.icons):not(.checks) li {
        text-align: center;
    }

    .boxes:not(.icons):not(.checks) {
        gap: var(--gutter);
    }

    .boxes:not(.icons):not(.checks) li h4 {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: .5em;
    }

    .boxes:not(.icons):not(.checks) h4 {
        margin-top: -5px;
    }

    .boxes:not(.icons):not(.checks) p {
        margin-bottom: -5px;
    }
}


/**
 * Cards
 */

.card {
    border: 1.5px solid white;
    font-size: var(--small-text);
    padding: 20px 28px 30px;
    position: relative;
    text-align: left;
    transition-property: unset !important;
}

.card:first-child {
    z-index: 1;
}

.card p,
.card li {
    font-size: var(--medium-text);
    letter-spacing: -.25px;
}

.card p {
    margin-bottom: 1.25em;
    opacity: .75;
}

.card ul {
    margin-bottom: 1.75em;
}

.card.highlight {
    background: linear-gradient(45deg, #235967, #21b8aa);
    background: linear-gradient(165deg, #008690 0%, #0f8789ee 32.5%, #1dc4aeff 66%, #1dc4aeff 71%, #14847e 100%);
    border-color: #ffffffdd;
    box-shadow: 0 0 60px 10px #0894964d;
}

.card.border {
    border-color: var(--primary-color);
}


/**
 * Pricing cards
 */

.prices .pricebg {
    margin-bottom: 0;
    background: #ffffff22;
    border-radius: 100px;
    padding: 1px 7px;
    margin-top: -3px;
    font-weight: 500;
    background: #ffffff22;
    border: 1px solid #ffffff77;
}

@media (min-width: 1024px) {
    .prices .swiper-slide {
        flex-grow: 1;
        flex-shrink: 0;
        margin-right: 0 !important;
        max-width: 320px;
        width: calc(33.333% - 27px) !important;
    }
}

@media (min-width: 1120px) {
    .prices .swiper-slide {
        max-width: 332px;
    }
}

.has-tag p {
    padding-right: 30px;
}

@media (max-width: 400px) {
    .has-tag p {
        padding-right: 10px;
    }
}

.has-tag::before,
.has-tag::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    /*background: #09a245;*/
    background: rgb(168 67 28);
    z-index: -1;
    position: absolute;
    top: 0;
    right: -20px;
    border-top-right-radius: 24px;
    z-index: -1;
}

.has-tag:before {
    height: 4px;
    top: -4px;
    right: 22px;
    width: 100px;
}

.has-tag::after {
    height: 100px;
    right: -4px;
    top: 22px;
    width: 4px;
}

.price-tag {
    position: absolute;
    right: -4px;
    top: -4px;
    width: 126px;
    height: 126px;
    overflow: hidden;
    border-top-right-radius: 22px;
}

.price-tag .inner {
    /*background: #0fc29f;*/
    /*background: linear-gradient(370deg, #1cc4ae, #22aebb);*/
    /*background: linear-gradient(370deg, #1cc4ae, #10ffb1);*/
    /*background: linear-gradient(156deg, #e7af10, rgb(242 88 48));*/
    background: linear-gradient(156deg, #ff8349, rgb(255 109 71));
    padding: 1em;
    transform: rotate(45deg);
    text-align: center;
    position: absolute;
    top: -10px;
    right: -70px;
    width: 210px;
    text-align: center;
    height: 84px;
    padding-top: 23px;
    box-shadow: 0 0 5px 0px #00000033;
    text-shadow: 0 0 10px #00000044;
}

.price-tag span {
    display: block;
}

.price-tag .label {
    font-size: 15px;
}

.price-tag .price {
    font-size: 26px;
    font-weight: 700;
    margin-top: -6px;
}

/**
 * Quotes
 */

.quote {
    max-width: 320px;
    padding-bottom: 90px;
}

.quote:before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 27px;
    font-size: 70px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    line-height: 85px;
    font-family: sans-serif;
    color: white;
    background-image: url(../images/quote.svg);
    background-size: cover;
    background-repeat: no-repeat;
}

.quote p {
    font-size: var(--medium-text);
}


/**
 * Banner
 */

.banner {
    background: url(../images/arrows.svg), linear-gradient(0deg, rgb(17 195 164), rgb(2 134 137 / 90%)),
        /* base gradient */
        linear-gradient(42.64deg, #083934 0%, #08bfae 57.7588%, #000000 100%);
    background-size: auto 100%, auto, auto;
    background-position: 436px center, 0 0, 0 0;
    background-repeat: no-repeat, no-repeat, no-repeat;
    border-radius: 30px;
    position: relative;
    max-width: none;
    padding: 0;
    border: 0;
    border: 1px solid #e9eff3;
    box-shadow: 0 0 80px 15px rgba(0, 0, 0, .19);
    padding: var(--gutter);
}

.banner p {
    font-size: 18px;
}

.banner h2 {
    margin-bottom: .3em;
}

.banner h2:after {
    display: none;
}

.banner .media,
.banner .video {
    position: relative;
}

.banner.video .content {
    width: 620px;
}

.banner.video .media {
    width: calc(100% - 620px);
}

.banner.video .media iframe {
    border-radius: 20px;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
    width: 90%;
    border: 5px solid #ffffffaa;
    margin: .5em;
    height: auto;
}

.pull-next+.pull-up .banner {
    margin-top: 0;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .banner {
        height: 334px;
    }

    .pull-up .banner {
        margin-bottom: calc(334px / -2);
    }

    .pull-up+section {
        padding-top: calc(var(--breathe) + calc(334px / 2));
    }

    .pull-next {
        padding-bottom: calc(var(--breathe) + 148px + 20px);
    }

    .pull-next+.pull-up {
        margin-top: calc(334px / -2);
    }

    .banner .content {
        width: 66%;
    }

    .banner .content h2 {
        font-size: 34px;
    }

    .banner .media {
        width: 34%;
    }

    .banner .media img {
        position: absolute;
        width: auto;
        max-width: none;
        left: -55%;
        top: 50%;
        transform: translateY(-50%);
        margin-top: 18px;
        margin-top: 24px;
        height: 480px;
    }
}

@media (min-width: 1024px) {
    .banner .content {
        padding: 0 var(--gap);
        width: 500px;
    }

    .banner .media,
    .banner .video {
        min-width: calc(100% - 500px);
    }

    .banner .media img {
        margin-top: 14px;
        max-width: none;
        position: absolute;
        right: -5%;
        top: 50%;
        transform: translateY(-50%);
        width: 560px;
    }
}

@media (min-width: 1024px) and (max-width: 1149px) {
    .banner {
        height: 302px;
        margin-top: 2em;
    }

    .pull-up .banner {
        margin-bottom: calc(302px / -2);
    }

    .pull-up+section {
        padding-top: calc(var(--breathe) + calc(302px / 2) + 1em);
    }

    .pull-next {
        padding-bottom: calc(var(--breathe) + 151px + 20px);
    }

    .pull-next+.pull-up {
        margin-top: calc(302px / -2);
    }

    .banner .content h2 {
        font-size: 32px;
    }

    .banner .content p {
        font-size: 17px;
    }

    .banner .h-t2 {
        display: none;
    }

    .banner.video h2 {
        font-size: 38px;
    }

    .banner.video .content p {
        font-size: var(--medium-text);
    }

    .banner.video .content {
        padding-right: 5vw;
        width: calc(100% - 428px);
    }

    .banner.video .media {
        min-width: 0;
        width: 428px;
    }
}

@media (min-width: 1150px) {
    .banner:not(.video) {
        height: 356px;
        margin-top: 2.5em;
    }

    .pull-up .banner {
        margin-bottom: calc(356px / -2);
    }

    .pull-up+section {
        padding-top: calc(var(--breathe) + calc(356px / 2) + 1.5em);
    }

    .pull-next {
        padding-bottom: calc(var(--breathe) + 178px);
    }

    .pull-next+.pull-up {
        margin-top: calc(356px / -2);
    }

    .banner .content {
        padding: 20px 7.55%;
        width: 725px;
    }

    .banner .media,
    .banner .video {
        min-width: calc(100% - 700px);
    }

    .banner .media img {
        margin-top: 20px;
    }
}

@media (min-width: 1150px) and (max-width: 1349px) {
    .banner .media img {
        min-width: 170%;
        right: -7.5%;
    }

    .banner.video .content {
        padding: 20px 5%;
        width: 520px;
    }

    .banner.video .media {
        width: calc(100% - 520px);
    }
}

@media (min-width: 1350px) {
    .pull-next {
        padding-bottom: calc(var(--breathe) + 178px + 24px);
    }

    .banner {
        margin-left: -6.5%;
        margin-top: 4.5em;
        max-width: none;
        width: 113%;
    }

    .banner .media img {
        right: 3.5%;
        width: 130%;
    }
}

@media (max-width: 767px) {
    .banner {
        height: 474px;
        padding: calc(var(--gutter) * 1.5);
    }

    .banner h2 {
        font-size: 32px;
        margin-bottom: .5em;
    }

    .banner:not(.video) .media {
        display: none;
    }

    .pull-up .banner {
        margin-bottom: calc(474px / -2);
    }

    .pull-up+section {
        padding-top: calc(var(--breathe) + calc(474px / 2));
    }

    .pull-next {
        padding-bottom: calc(var(--breathe) + 237px - 20px);
    }

    .pull-next+.pull-up {
        margin-top: calc(474px / -2);
    }
}

@media (min-width: 525px) and (max-width: 767px) {
    .banner .media {
        display: block;
        position: absolute;
        width: 52vw;
        bottom: -3vw;
        right: 1vw;
    }
}

@media (max-width: 400px) {
    .banner h2 {
        font-size: 30px;
    }
}

.banner.video {
    margin-top: -1em;
}

@media (max-width: 1200px) {
    .banner.video .media {
        position: relative;
    }

    .banner.video .media iframe {
        width: auto;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        margin: 0;
    }
}

@media (min-width: 1024px) and (max-width: 1149px) {
    .banner.video .media iframe {
        height: 238px;
    }
}

@media (max-width: 1023px) {
    .banner.video {
        height: auto !important;
    }

    .banner.video>.flex {
        display: block;
    }

    .banner.video>.flex>div {
        width: 100% !important;
    }

    .banner.video .media {
        position: static;
    }

    .banner.video .media iframe {
        position: static;
        height: auto;
        margin: 1.5em 0 -.5em;
        width: 100%;
    }
}


/**
 * FAQs
 */

.faq {
    max-width: var(--content-small);
    text-align: left;
}

.faq .q {
    cursor: pointer;
    padding: 2em 0;
    border-bottom: 1px solid #eee;
    opacity: .75;
    position: relative;
}

.faq .q:hover,
.faq .q.active {
    opacity: 1;
}

.faq .q:last-child {
    border: 0;
    margin-bottom: -2em;
}

.faq .q-top p {
    margin: 0;
}

.faq .q-top p {
    padding-right: 52px;
}

.faq .answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq .answer p {
    margin: 0;
    padding: 0;
    color: #666;
    line-height: 1.7;
    padding-top: 1em;
    padding-left: 2em;
    border-left: 3px solid #12c7bb;
    margin-top: 1em;
    padding-top: 0;
    padding-left: 1.5em;
    margin-left: 1.5em;
    color: var(--dark-green);
}

.faq .open {
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-size: 30px;
    width: 32px;
    height: 32px;
    line-height: 24px;
    padding: 0 0 3px;
    border-radius: 100px;
    border: 1.5px solid var(--primary-color);
    text-decoration: none;
    top: 1.085em;
    text-align: center;
    background: white;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.faq .q.active .open {
    transform: rotate(45deg);
    border-color: var(--alternate-color);
    background-color: var(--alternate-color);
    color: white;
}


/** 
 * Swiper
 */

.swiper {
    overflow: visible !important;
}

.swiper-slide {
    height: auto !important;
}

@media (min-width: 1024px) {
    .sw-pagination {
        display: none;
    }
}

@media (min-width: 768px) {
    .quotes-pagination.sw-pagination {
        display: none;
    }
}

.sw-pagination {
    margin-top: 2em;
    text-align: center;
}

.quotes-pagination.sw-pagination {
    margin-top: 3em;
}

.pricing-pagination {
    margin-bottom: -1em;
}

.sw-pagination .swiper-pagination-bullet {
    width: 26px;
    height: 4px;
    border-radius: 999px;
    background: #cfd8d6;
    opacity: 1;
    transition: all 0.3s ease;
}

.sw-pagination .swiper-pagination-bullet-active {
    width: 40px;
    background: #08bfae;
}

.swiper-initialized .swiper-wrapper {
    flex-wrap: nowrap !important;
    justify-content: unset !important;
}

.swiper-initialized .glass,
.swiper-initialized .reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.swiper-initialized .flex {
    gap: 0 !important;
}


/**
 * Forms
 */

form .flex>div {
    flex-grow: 1;
}

form label {
    cursor: pointer;
    display: block;
    padding-bottom: 4px;
    font-weight: 500;
    font-size: 17px;
    opacity: .75;
    letter-spacing: -.25px;
    padding-left: 3px;
}

form input,
form textarea,
form select {
    border-radius: 8px !important;
    border: 0;
    background: white;
    padding: 8px;
    display: block;
    font-size: var(--small-text);
    margin-bottom: 1.5em;
    width: 100%;
    box-shadow: var(--shadow);
    border: 1.5px solid #0a594d20;
    /*border: 1px solid rgba(0, 0, 0, 0.1);*/
    min-width: 204px;
}

form select {
    height: 43px;
}

form textarea {
    height: 113px;
}

form input[type=submit] {
    background: var(--green-gradient);
    border: 1px solid #ffffff33;
    color: white;
    cursor: pointer;
    margin-bottom: 0;
    margin-top: 0;
}

form.glass {
    border-width: 1px !important;
}

form .gap-large {
    gap: 0 32px
}

@media (min-width: 1023px) {
    .form-success {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/*
#contact .wrap {
    padding-top: 3em;
}

#contact form {
    margin-top: -3em;
}*/

#book-demo h1:after {
    left: 0;
    transform: none;
}

#book-demo p.intro {
    margin-bottom: 1.5em;
}

#book-demo .checks li {
    font-weight: 500;
}

@media (max-width: 610px) {
    #book-demo form .grid {
        display: block;
    }
}

@media (min-width: 1024px) {
    #book-demo h1 {
        line-height: 1.2;
        padding-bottom: .25em;
        padding-top: 1em;
    }

    #book-demo .wrap>.flex {
        gap: var(--gutter);
    }

    #book-demo .wrap>.flex>div:first-child {
        max-width: 400px;
    }

    #book-demo .wrap>.flex>div+div {
        width: calc(100% - 400px - calc(var(--gutter) * 2));
    }

    #book-demo form {
        width: 100%;
    }
}

@media (min-width: 1024px) and (max-width: 1069px) {
    #book-demo .wrap>.flex>div:first-child {
        max-width: 380px;
    }

    #book-demo .wrap>.flex>div+div {
        width: calc(100% - 350px - calc(var(--gutter) * 2));
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {

    form input,
    form textarea,
    form select {
        min-width: 200px;
    }

    #book-demo h1 {
        font-size: 46px;
    }
}

@media (min-width: 1281px) {
    #book-demo .wrap>.flex>div:first-child {
        max-width: 470px;
    }

    #book-demo .wrap>.flex>div+div {
        width: calc(100% - 470px - calc(var(--gutter) * 2));
    }

}

@media (max-width: 1023px) {

    #book-demo h1,
    #book-demo .intro {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }

    #contact>.wrap>.flex>div,
    #book-demo>.wrap>.flex>div {
        gap: 0 calc(var(--gutter) * 2);
    }

    #contact>.wrap>.flex>div,
    #book-demo>.wrap>.flex>div {
        width: 100%;
    }

    #contact>.wrap>.flex>div:first-child,
    #book-demo>.wrap>.flex>div:first-child {
        display: flex;
        flex-wrap: wrap;
        padding-bottom: calc(var(--breathe) / 4);
    }
}



/**
 * Contact blocks
 */

.contact-item {
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 24px;
    max-width: 280px;
    padding-left: 40px;
    position: relative;
    width: 100%;
}

@media (max-width: 1023px) {
    .contact-item {
        font-size: var(--medium-text);
    }
}

.contact-item .icon {
    color: var(--darker-green);
    font-size: 18px;
    left: 0;
    position: absolute;
    top: 0;
}

.contact-item.border {
    border-bottom: 1px solid #8cb8b621;
    padding-bottom: 1.75em;
    margin-bottom: 1.75em;
}

.contact-item.border:last-child {
    border: 0;
    padding-bottom: 0;
}

@media (min-width: 500px) and (max-width: 1023px) {
    .contact-item {
        min-width: 0;
        max-width: 100%;
        width: calc(50% - var(--gutter));
    }

    .contact-item:nth-child(2) {
        order: 2;
    }

    .contact-item:nth-child(4) {
        order: 3;
    }
}

@media (min-width: 768px) {
    #book-demo .contact-item {
        max-width: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-item {
        min-width: 0;
        max-width: 100%;
        width: calc(50% - (var(--gutter) / 2));
    }

    #contact>.wrap>.flex>div,
    #book-demo>.wrap>.flex>div {
        gap: 0 var(--gutter);
    }
}

@media (max-width: 580px) {
    .contact-item {
        width: 100%;
    }

    .contact-item.border {
        border: 0;
        padding-bottom: 0;
    }
}


/**
 * Error page
 */

.nf-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.075em;
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    color: #212d45;
}

.nf-zero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--primary-color);
}

.not-found-page p {
    padding-bottom: 1em;
}


/**
 * Legal pages
 */

.longtxt {
    max-width: calc(900px + 4em);
    margin-left: auto;
    margin-right: auto;
}

.longtxt hr {
    border: 0;
    border-bottom: 1px solid #ddd;
    padding-top: 2em;
    margin-bottom: 3em;
}

.longtxt h3 {
    margin-bottom: .5em;
    font-size: 20px;
}

.longtxt p,
.longtxt li {
    font-size: 18px;
}

.longtxt ul,
.longtxt ol,
.longtxt p {
    margin-bottom: 1.625em;
}

.longtxt ul {
    margin-left: var(--gutter);
}


.longtxt p+ul {
    margin-top: -1em;
}

.longtxt> :last-child {
    margin-bottom: 0;
}


/**
 * Cookie banner
 */

.cookie-banner {
    position: fixed;
    left: auto;
    right: 20px;
    bottom: 20px;
    z-index: 9999;

    opacity: 0;
    transform: translateY(40px);
    pointer-events: none;
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;

    transition: transform 0.7s ease,
        opacity 0.7s ease;
}

.cookie-banner__inner {
    max-width: 460px;
    margin: 0 auto;
    background: #fff;
    color: #212d45;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .15);
    padding: 24px;
}

@media (max-width: 767px) {
    .cookie-banner {
        right: 0;
    }

    .cookie-banner__inner {
        width: calc(100% - 40px);
        max-width: none;
    }
}

@media (max-width: 509px) {
    .cookie-banner__actions {
        gap: 20px !important;
    }

    .cookie-banner__actions button {
        width: calc(50% - 10px);
    }

    .cookie-banner__actions button:first-child {
        width: 100%;
        margin-bottom: 0;
    }
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 10px;
}

.cookie-banner__settings {
    margin-top: 2em;
    padding-top: 1.3em;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.cookie-banner__settings button {
    margin-top: 1em;
}

.cookie-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 3px;
    font-size: 15px;
}

.cookie-option span {
    padding-top: 4px;
}

.cookie-banner p,
.cookie-banner .btn {
    font-size: 16px;
}

.cookie-banner p a {
    color: var(--primary-color)
}

.cookie-banner p {
    margin-bottom: .75em;
}

.cookie-banner h3 {
    font-size: 20px;
    margin-bottom: .25em;
}








.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 35%, rgba(255, 255, 255, 0.12), transparent 30%),
        radial-gradient(circle at 70% 35%, rgba(255, 255, 255, 0.06), transparent 45%);
    pointer-events: none;
}


.hero .btn:not(.lighter):hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2) !important;
}

.hero-grid {
    display: none !important;
}


.hero::before {
    content: "";
    position: absolute;
    top: 45%;
    right: 30%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.18),
            rgba(255, 255, 255, 0.06) 40%,
            transparent 70%);
    transform: translate(50%, -50%);
    pointer-events: none;
}


.page-head {
    position: relative;
}

.page-head h1 {
    position: relative;
    margin-bottom: 1em;
}

.page-head h1::after {
    width: 80px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #14b8a6, #2dd4bf);
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.page-head p {
    max-width: 600px;
}

.page-head form p {
    max-width: none;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #1bbf9b;
    box-shadow: 0 0 0 3px rgba(27, 191, 155, 0.1);
}

@media (max-width: 1023px) {
    header {
        height: 78px;
        margin-bottom: -78px;
        padding: 20px 0;
    }

    header .logo {
        margin-left: -2px;
    }

    header:not(.scrolled)>.wrap {
        background: linear-gradient(180deg, #00000010, transparent);
        margin-top: -1.25em;
        padding-top: 1.25em;
        padding-bottom: 1.25em;
        margin-bottom: -1.25em;
    }

    header:not(.scrolled) .menu-toggle {
        top: 20px;
    }

    .hl .hero {
        padding-top: 6.5em;
    }

    /*
    header:not(.scrolled)::after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: #0000000f;
        top: 78px;
        left: 0;
        position: absolute;
        z-index: 1;
    }

    .hl header:not(.scrolled)::after {
        background: #ffffff2a;
    }
    */
}