:root {
    --darkblue: #15393A;
    --primary: #5CBAA7;
    --gold: #CC984B;
    --light: #F2F2F3;
    --dark: #3A3A3A;
    --gold-gradient: linear-gradient(90deg, #EBC17D 0%, #DFB77C 20%, #C08329 60%, #EABE81 85%, #EEDCC3 100%);
    --shadow: 0px 0px 20px 4px #C8C9C932;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scrollbar-width: none;
}

body {
    margin: 0;
    padding: 0;
    opacity: 0;
    transition: opacity 0.5s;
    overflow-x: hidden;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.35;
    font-family: 'Figtree', sans-serif;
}

svg {
    overflow: visible;
    pointer-events: none;
}

.body-wrapper {
    overflow-x: hidden;
    width: 100vw;
    max-width: 2560px;
    margin: 0 auto;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

.container {
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

strong {
    font-weight: 600;
}

h1 {
    font-size: 2.25rem;
    margin: 0;
    font-weight: 500;
    line-height: 1.25;
    font-family: 'Hepta Slab', sans-serif;
}

h2 {
    font-size: 2.25rem;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 3rem;
    font-family: 'Hepta Slab', sans-serif;
    text-align: center;
    color: var(--gold);
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.125rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

h5 {
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

h6 {
    font-weight: 500;
}

p,
li {
    margin-bottom: 0.75em;
}

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

li {
    margin-left: 1rem;
    margin-bottom: 0.25rem;
}

ul,
ol {
    margin-bottom: 1.25rem;
}

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

.article {

    h1 {
        margin-top: 1.25rem;
        margin-bottom: 0.875rem;
    }

    h2 {
        font-size: 2.25rem;
        margin-top: 1.25rem;
        margin-bottom: 1.5rem;
        padding-left: 0;
        text-align: left;
        color: var(--dark);
    }

    h3 {
        font-size: 1.75rem;
        font-weight: 400;
        margin-top: 1.25rem;
        margin-bottom: 0.875rem;
    }

    h4 {
        font-size: 1.25rem;
        margin-top: 1.25rem;
        margin-bottom: 0.875rem;
    }

    h5 {
        font-size: 1.125rem;
        margin: 1.25rem 0 0.875rem;
    }

    h6 {
        font-size: 1rem;
        margin: 1.25rem 0 0.875rem;
    }

    img:not(.bgshape) {
        width: 100%;
        max-height: 600px;
        object-fit: cover;
        margin: 1.25rem 0;
        border-radius: 20px;
    }

    *:last-child {
        margin-bottom: 0;
    }

    p {
        line-height: 1.5;
    }

}

section {
    padding: 100px clamp(20px, 4vw, 80px) 0;
    position: relative;
    max-width: 2560px;
}

.primary-link {
    padding: 1rem 2.5rem;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.08em;
    line-height: 1.3;
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    width: fit-content;
    text-transform: uppercase;
    outline: none;
    position: relative;
    background-color: var(--primary);
    color: white;
    transition: background-color 0.3s, color 0.3s;

    svg {
        width: auto;
        height: 0.75rem;
        margin-top: -0.1875em;
        transition: transform 0.3s;

        path {
            transition: fill 0.3s;
        }
    }

    &.center {
        margin: 60px auto 0;
    }

    &:hover {
        background-color: var(--primary);
        border-color: var(--primary);
        color: white;

        svg path {
            fill: white;
        }
    }

    &.gold {
        background-color: var(--gold);
        color: white;
        border: 1px solid var(--gold);

        &:hover {
            background-color: white;
            color: var(--gold);
        }
    }

    &.blue {
        background-color: var(--primary);
        color: white;
        border: 1px solid var(--primary);

        &:hover {
            background-color: white;
            color: var(--primary);
        }
    }

    &.white {
        background-color: white;
        color: var(--primary);
        border: 1px solid white;

        &:hover {
            background-color: var(--primary);
            color: white;
        }
    }
}


::selection {
    background: #1e4a4b;
    color: white;
}

::-moz-selection {
    background: #1e4a4b;
    color: white;
}

.rccookie-container {
    background-color: #FFFFFFBB;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 10px;
}

.rccookie-container .primary-link,
.rccookie-modal .primary-link {
    background-color: var(--primary);
    color: white;
}

.rccookie-container .secondary-link {
    color: var(--dark);
}

.rccookie-modal .modal-content {
    border-radius: 15px;
}

.custom-control-input:checked~.custom-control-label::before {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.custom-control-input:not(:disabled):active~.custom-control-label::before,
.custom-control-input:not(:disabled):focus~.custom-control-label::before {
    border-color: var(--primary) !important;
    box-shadow: none !important;
}

.custom-control-label::before {
    border: 1px solid var(--dark);
}

.slider {
    transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}

.slider:hover {
    background: var(--primary);
    border-color: var(--primary) !important;
    color: white;
}

.sliderMask {
    border-color: var(--primary) !important;
    background-color: var(--primary) !important;
}

.sliderContainer_success .slider {
    top: -1px;
    border: 1px solid var(--primary);
    background-color: var(--primary) !important;
    color: white;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    display: none;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: opacity 0.4s;
    z-index: 996;
}

.overlay.active {
    opacity: 1;
}

a {
    transition: color 0.3s;
    text-decoration: none;
    cursor: pointer;
    color: var(--dark);
}

a:hover,
a:focus-visible {
    text-decoration: none;
    color: var(--dark);
}

button {
    transition: background-color 0.3s, color 0.3s;
    border: none;
    outline: none;
    cursor: pointer;
    background: transparent;
}

button:focus {
    outline: none !important;
}

.vbox-container {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.vbox-close {
    padding: 20px !important;
    top: 10px !important;
    right: 20px !important;
}

.vbox-next {
    right: 40px !important;
}

.vbox-prev {
    left: 40px !important;
}

.vbox-title {
    display: none !important;
}

/* SIDEBAR OPEN */

.open-sidebar {
    width: 28px;
    height: 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    display: none;

    .hb {
        border-bottom: 2px solid var(--dark);
        border-radius: 99px;
        transition: all 0.45s;
    }

    .hb1,
    .hb2 {
        width: 26px;
    }

    .hb3 {
        width: 13px;
        margin-left: 12px;
    }

    &.closed .hb1 {
        transform: rotate(-45deg) translate(-6.5px, 6.5px);
        width: 30px;
    }

    &.closed .hb2 {
        margin-right: -100%;
        opacity: 0;
    }

    &.closed .hb3 {
        transform: rotate(45deg) translate(-6.5px, -6.5px);
        width: 30px;
        margin-left: 0;
    }

}

.desktop-navbar.scrolled .open-sidebar .hb {
    border-color: var(--dark);
}


/* SIDEBAR */

.sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px !important;
}

@media (min-width: 1281px) {
    .sidebar {
        display: none;
    }
}

.sidebar,
.navbar-dropdown {
    width: 100%;
    position: fixed;
    right: -100vw;
    top: 92px;
    height: calc(100dvh - 92px);
    z-index: 998;
    transition: right 0.45s ease-out;
    overflow: hidden;
    overflow-y: scroll;
    overscroll-behavior: contain;
    padding: 0 20px;
}

.sidebar {
    background: #FFFFFFDD;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.sidebar.active,
.navbar-dropdown.active {
    right: 0;
}

.sidebar .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    margin-top: -10px;
    height: 100%;
}

.sidebar .links {
    width: 100%;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sidebar .links .nav-item {
    width: 100vw;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-weight: 500;
    font-size: 1.125rem;
    text-transform: uppercase;
    color: var(--dark);
}

.sidebar .links a svg {
    position: absolute;
    right: 25px;
    top: 47%;
    transform: translateY(-50%) rotate(-90deg);
    width: 1.375rem;
}

.sidebar .links a svg path {
    stroke: var(--primary);
    stroke-width: 1;
}

.sidebar .primary-link {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

/* CUSTOM MODAL */

.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
    overflow-y: auto;
    padding: 20px;

    &.active {
        opacity: 1;
    }

    .modal-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .modal-content {
        width: 100%;
        max-width: 750px;
        background-color: #DCE7EA;
        border-radius: 30px;
        overflow: hidden;
        padding: 40px;
        text-align: center;

        .cancel {
            position: absolute;
            top: 25px;
            right: 25px;
            cursor: pointer;
            width: 22px;
        }

        h3 {
            font-size: 2rem;
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 2rem;
            line-height: 1.25;
        }
    }
}


/* DESKTOP NAVBAR */

.desktop-navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    transition: background-color 0.4s, box-shadow 0.4s, backdrop-filter 0.4s, top 0.6s;
    will-change: background-color, box-shadow, backdrop-filter, top;


    &.scrolled {
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        background-color: #FFFFFFDD;
        box-shadow: var(--shadow);
    }

    &.active {
        top: -9vw;
    }

    .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5vw;
        max-width: 100%;
        
        &.first {
            background-color: var(--darkblue);
            justify-content: center;
            gap: 0;
            width: 100%;
            padding: 0.6vw clamp(20px, 4vw, 80px);
            
            a, span {
                font-size: 0.85vw;
                padding: 0 3vw;
                color: white;
                letter-spacing: 0.05em;
                border-right: 1px solid white;

                &:last-child {
                    border-right: none;
                }
            }
        }
        
        &.second {
            padding: 0.6vw clamp(20px, 4vw, 80px);
        }
    }

    .logo {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;

        img {
            height: 3.5vw;
            transition: filter 0.3s;
        }
    }

    .links {
        display: flex;
        align-items: center;
        gap: 2.5vw;

        .link {
            position: relative;
        }

        .nav-item {
            font-size: 0.9vw;
            letter-spacing: 0.1em;
            font-weight: 500;
            display: flex;
            align-items: center;
            position: relative;
            white-space: nowrap;
            color: var(--dark);
            text-transform: uppercase;

            &:hover {
                color: var(--dark);
            }

            &::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 1px;
                background-color: var(--dark);
                transition: transform 0.4s cubic-bezier(0.01, 0.69, 0.4, 1);
                transform-origin: right;
                transform: scaleX(0);
            }

            &:hover::after {
                transform: scaleX(1);
                transform-origin: left;
            }

            svg {
                width: 0.875vw;
                margin-left: 0.5vw;
                transition: transform 0.3s;
            }

            &.active svg {
                transform: rotate(180deg);
            }

            svg path {
                transition: stroke 0.3s;
                stroke: var(--dark);
            }
        }

    }

    // &.scrolled .links .nav-item {
    //     color: white;

    //     &:hover {
    //         color: white;
    //     }

    //     &::after {
    //         background-color: white;
    //     }

    //     svg path {
    //         stroke: white;
    //     }
    // }

    .buttons {
        display: none;
        align-items: center;
        gap: 1.5rem;
        position: relative;
    }
}


/* NAVBAR DROPDOWN */

.navbar-dropdown {
    position: absolute;
    top: 2.75vw;
    left: 0;
    padding: 0;
    width: fit-content;
    height: fit-content;
    overflow: hidden;
    border-bottom-right-radius: 1rem;
    z-index: 998;
    max-height: 0;
    transition: max-height 0.6s cubic-bezier(0.01, 0.69, 0.4, 1);
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.05);
}

.navbar-dropdown.active {
    z-index: 999;
}

.navbar-dropdown .container {
    display: block;
    padding: 0.5rem 0;
    background-color: #FFFFFFEF;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.navbar-dropdown .arrow {
    display: none;
}

.navbar-dropdown .container a {
    display: block;
    font-size: 1rem;
    padding: 0.625rem 1.25rem 0.75rem;
    white-space: nowrap;
    color: var(--dark);
    font-weight: 700;
}

.navbar-dropdown .cancel {
    position: absolute;
    top: 7px;
    right: 5px;
    padding: 10px;
    cursor: pointer;
    width: 38px;
}

/* KIS LENYÍLÓK */

.desktop-modal {
    position: absolute;
    top: 100%;
    right: -20px;
    width: calc(100vw - 40px);
    max-width: 340px;
    background-color: #FFFFFFE8;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 15px;
    display: none;
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    padding: 20px;

    &.active {
        transform: translateY(40px);
        opacity: 1;
    }

    &::before {
        content: '';
        position: absolute;
        top: -17.75px;
        width: 40px;
        height: 21px;
        background-image: url('../images/triangle.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0.9;
    }

    .cancel {
        position: absolute;
        top: 7px;
        right: 5px;
        padding: 10px;
        cursor: pointer;
        width: 38px;
    }

    h3 {
        margin: 0 0 20px;
        text-transform: none;
        font-size: 1.125rem;
        text-align: center;
    }

    form {
        padding: 0;
        width: 100%;
        background-color: transparent;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    form input {
        width: 100%;
        border-bottom: 1px solid var(--dark);
        margin-bottom: 10px;
        line-height: 1;
    }

    input+.primary-link {
        margin-top: 10px;
    }

    .buttons {
        margin-top: 20px;
        flex-direction: column;
        gap: 10px;
    }

    .primary-link {
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
    }

    &.basket-modal {
        &::before {
            right: 65px;
        }

        .item {
            display: flex;
            gap: 10px;
            padding-bottom: 10px;
            margin-bottom: 10px;
            border-bottom: 1px solid var(--primary);


            img {
                min-width: 80px;
                min-height: 80px;
                max-width: 80px;
                max-height: 80px;
                object-fit: contain;
            }

            .content {
                width: 100%;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
            }

            h4 {
                font-size: 0.875rem;
                text-transform: uppercase;
                margin-bottom: 0;
                font-style: normal;
            }

            .size {
                font-size: 0.75rem;
                margin-bottom: 0;
            }

            .quantity {
                font-size: 0.75rem;
                font-weight: 700;
                color: var(--primary);
            }
        }

        .price {
            text-align: right;
            font-size: 0.875rem;
            font-weight: 700;
        }

        .summary {
            display: flex;
            justify-content: space-between;
        }

        .summary .price {
            font-size: 1rem;
        }
    }

    &.login-modal {

        &::before {
            right: 12px;
        }

        .lostpassword {
            text-align: center;
            margin-top: 0.5rem;
            font-size: 0.8125rem;
        }

        &.login-modal .logged-in a {
            display: block;
            text-align: center;
            margin-bottom: 0.625rem;
        }

        &.login-modal hr {
            width: 100%;
            margin: 1rem 0;
            border-top: 1px solid var(--dark);
        }

    }
}

.flex-content {
    display: flex;
    gap: 80px;
}

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

.flex-content.reverse {
    flex-direction: row-reverse;
}

.flex-content .side {
    width: 50%;
}

.flex-content .side>img,
.flex-content .side .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card {
    display: block;
    border: none;
    border-radius: 16px;
}

.flex-content .primary-link {
    margin-top: 2rem;
}

.items {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 40px;
    justify-content: center;

    .item {
        display: flex;
        flex-direction: column;
        position: relative;
        border-radius: 16px;
        padding: 20px 20px calc(20px + 5rem);
        margin-top: 57px;
        background-color: var(--light);
        border: 1px solid transparent;
        transition: background-color 0.4s, border-color 0.4s;
    
        &:hover {
            background-color: white;
            border-color: var(--gold);
        }
    
        .image {
            width: 114px;
            height: 114px;
            margin: -77px auto 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: var(--gold);
    
            img {
                width: 64px;
                height: 64px;
                object-fit: contain;
            }
        }
    }
}

.items.two .item {
    width: calc(50% - 20px);
}

.items.three .item {
    width: calc(33.3333% - 28px);
}

.items.four .item {
    width: calc(25% - 30px);
}

.items .item h3,
.items .item h3 a {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.items .item p {
    text-align: center;
    font-size: 0.9375rem;
    font-family: 'Hepta Slab', sans-serif;
    font-weight: 350;
}

.items .item .link {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--gold);
    font-weight: 500;
    font-size: 1.125rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;

    span {
        position: relative;

        &::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: var(--gold);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease-in-out;
        }
    }

    &:hover span::after {
        transform: scaleX(1);
        transform-origin: left;
    }

}

.relative {
    position: relative;
}

.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.swiper {
    width: 100%;
    position: relative;
}

.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    z-index: 99;
    cursor: pointer;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 30px;
    font-weight: 700;
    color: var(--gray);
}

.swiper-button-prev::after {
    margin-right: 3px;
}

.swiper-button-next::after {
    margin-left: 1px;
}

.swiper-button-prev {
    left: -54px;
}

.swiper-button-next {
    right: -54px;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-wrapper {
    align-items: center;
}

/* LOADER */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    z-index: 9999;
    transition: opacity 0.5s;
}

.loader.end {
    opacity: 0;
}

.loader svg {
    width: 100%;
    height: 100%;
    max-width: 450px;
    max-height: 450px;

    path {
        will-change: stroke-dashoffset;

        &:nth-of-type(1) {
            stroke-dasharray: 255;
            stroke-dashoffset: 255;
        }

        &:nth-of-type(2) {
            stroke-dasharray: 110;
            stroke-dashoffset: 110;
        }

        &:nth-of-type(3) {
            stroke-dasharray: 157;
            stroke-dashoffset: 157;
        }

        &:last-of-type {
            stroke-dasharray: 755;
            stroke-dashoffset: 755;
        }
    }
}

/* HERO */

.hero {
    position: relative;
    z-index: 1;
    margin: 0;
    overflow: hidden;
    margin-top: 6.9vw;
    padding: 0;

    .swiper-wrapper {
        align-items: normal;
    }

    .swiper-slide {
        padding: 120px clamp(90px, calc(4vw + 70px), 150px) 120px;
        height: auto;
        transition: opacity 0.5s ease;
    }

    .swiper-slide:not(.swiper-slide-active) {
        pointer-events: none;
    }

    .swiper-button-prev,
    .swiper-button-next {
        background-color: var(--gold);
        width: 50px;
        height: 50px;
        border-radius: 99px;
    }

    .swiper-button-prev {
        left: clamp(20px, 4vw, 80px);
    }

    .swiper-button-next {
        right: clamp(20px, 4vw, 80px);
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        color: white;
        font-size: 25px;
    }

    .swiper-pagination {
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 16px;
    }

    .swiper-pagination-bullet {
        background-color: white;
        width: 16px;
        height: 16px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    }

    .swiper-pagination-bullet-active {
        background-color: var(--gold);
    }

    .layer {
        display: none;
    }

    .container {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        z-index: 2;

        .small-container {
            max-width: 50rem;
            padding: 40px;
            background-color: #1e4a4b88;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }

        h1 {
            font-size: 2.75rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            color: #f0c27e;
        }

        *:not(h1):not(.primary-link) {
            color: white;
            font-size: 1.5rem;
            max-width: 36rem;
        }

        .primary-link {
            margin-top: 2.25rem;
            font-size: 1.125rem;
        }
    }
}

.whyus {
    .items {
        gap: 20px;

        .item {
            width: calc(25% - 15px);

            ul {
                margin-bottom: 0;
            }
        }
    }
}

.bgshape {
    position: absolute;
    pointer-events: none;

    path:nth-child(1),
    path:nth-child(3) {
        stroke-dasharray: 490;
        stroke-dashoffset: 490;
    }

    path:nth-child(2),
    path:nth-child(4) {
        stroke-dasharray: 440;
        stroke-dashoffset: 440;
    }
}

.about {
    .bgshape {
        top: 0;
        right: 0;
        transform: translate(58%, -35%) rotate(-45deg);

        &.bottom {
            top: auto;
            bottom: 0;
            right: auto;
            left: 0;
            transform: translate(-58%, 35%) rotate(-45deg);
            z-index: 1;

            path:nth-child(3),
            path:nth-child(4) {
                stroke: white;
            }
        }
    }

    .container {
        max-width: 1348px;
    }

    .card {
        box-shadow: var(--shadow);
        overflow: hidden;
        position: relative;
        z-index: 2;

        .flex-content {
            gap: 0;

            .left {
                padding: 90px 70px;

                h2 {
                    text-align: left;
                    font-size: 2rem;
                    margin-bottom: 2rem;
                }

                p {
                    font-size: 1.0625rem;
                    max-width: 29rem;
                }

                .link {
                    color: var(--gold);
                    text-transform: uppercase;
                    font-size: 1.125rem;
                    letter-spacing: 0.1em;
                    font-weight: 500;
                    margin-top: 2rem;
                    position: relative;
                    display: block;
                    width: fit-content;

                    &::after {
                        content: '';
                        position: absolute;
                        bottom: -2px;
                        left: 0;
                        width: 100%;
                        height: 1px;
                        background-color: var(--gold);
                        transform: scaleX(0);
                        transform-origin: right;
                        transition: transform 0.3s ease-in-out;
                    }

                    &:hover::after {
                        transform: scaleX(1);
                        transform-origin: left;
                    }
                }
            }
        }

        .content {
            background-color: var(--darkblue);
            color: white;
            padding: 60px;
            text-align: center;

            h3 {
                font-size: 2rem;
                text-transform: uppercase;
                font-weight: 500;
            }

            p {
                font-size: 1.5rem;
                font-family: 'Hepta Slab', sans-serif;
                font-weight: 350;
            }

            .primary-link {
                margin: 2rem auto 0;
            }
        }
    }
}

.steps {
    padding-top: 240px;
    margin-top: -130px;
    padding-bottom: 140px;

    &::before,
    &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background: linear-gradient(180deg, white 0%, #F3F3F300 100%);
    }

    &::after {
        top: auto;
        bottom: 0;
        background: linear-gradient(0deg, var(--light) 0%, #F3F3F300 100%);
    }

    .container {
        z-index: 2;
    }

    .items {
        gap: 20px;
        align-items: flex-start;

        .item {
            width: calc(25% - 15px);
            background-color: white;
            border: none !important;
            padding: 20px 20px 5rem;
    
            &::after {
                content: '';
                position: absolute;
                bottom: 5rem;
                left: 0;
                width: 100%;
                height: 40px;
                background: linear-gradient(180deg, transparent, white);
                transition: opacity 0.2s;
            }

            &.open::after {
                opacity: 0;
            }
    
            .number {
                width: 114px;
                height: 114px;
                background: white;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                position: relative;
                margin: -77px auto 30px;
                font-size: 36px;
                color: var(--gold);
                font-weight: 500;
                background: var(--gold-gradient);
                z-index: 1;
    
                &::before {
                    content: '';
                    position: absolute;
                    top: 5px;
                    left: 5px;
                    width: calc(100% - 10px);
                    height: calc(100% - 10px);
                    border-radius: 50%;
                    background-color: white;
                    z-index: 0;
                }

                span {
                    position: relative;
                    z-index: 1;
                }
            }
    
            .content {
                min-height: 120px;
                max-height: 120px;
                overflow: hidden;
                position: relative;
                transition: max-height 0.5s ease-in-out;
                will-change: max-height;
                padding-bottom: 20px;

                p {
                    font-size: 15px;
                }
            }
        }
    }
}

.reviews {
    padding-top: 0 clamp(90px, calc(4vw + 70px), 150px) 40px;
    background-color: var(--light);
    overflow: hidden;

    // &::before,
    // &::after {
    //     content: '';
    //     position: absolute;
    //     bottom: 0;
    //     width: 20vw;
    //     height: calc(100% - 3rem);
    //     z-index: 2;
    // }

    // &::before {
    //     left: 0;
    //     background: linear-gradient(90deg, var(--light) 0%, transparent 100%);
    // }

    // &::after {
    //     right: 0;
    //     background: linear-gradient(270deg, var(--light) 0%, transparent 100%);
    // }

    h2 {
        margin-bottom: 4.5rem;
    }
}

.relative {
    width: 100%;
    
    .swiper-wrapper {
        align-items: stretch;
        padding: 25px 0;
    }

    .swiper-slide {
        height: auto;
        background-color: white;
        padding: 30px 25px calc(20px + 5rem);
        border-radius: 16px;
        border: 2px solid transparent;
        overflow: hidden;
        transition: border-color 0.4s, box-shadow 0.4s, transform 0.6s;
        will-change: transform;

        img {
            width: auto;
            height: 34px;
            display: block;
            margin: 0 auto 25px;
        }

        p {
            font-family: 'Hepta Slab', sans-serif;
            font-weight: 350;
        }

        h4 {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.125rem;
            font-weight: 500;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            background-color: white;
            border-top: 1px solid var(--gold);
            z-index: 1;
            margin-bottom: 0;
        }
    }

    .swiper-slide-active {
        border-color: var(--gold);
        box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
        transform: translateY(-25px);
    }

    .prev,
    .next {
        position: absolute;
        top: 50%;
        width: 52px;
        height: 52px;
        z-index: 99;
        cursor: pointer;
        transform: translateY(-50%);
        background-color: var(--gold);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: opacity 0.3s;

        &.swiper-button-disabled {
            opacity: 0;
            pointer-events: none;
        }

        img {
            width: 15px;
        }
    }

    .prev {
        left: -80px;

        img {
            margin-left: -3px;
        }
    }

    .next {
        right: -80px;

        img {
            margin-right: -3px;
        }
    }
}

.reserv {
    padding-top: 80px;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, var(--light) 0%, transparent 100%);
    }
}

.reserv h2 {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
}

.reserv h3 {
    font-size: 1.75rem;
    height: 3.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: 'Hepta Slab', sans-serif;
}

.reserv #reserv-result {
    display: flex;
    gap: 20px;
    width: 100%;
}

.reserv .milestones{
    padding: 0;
}

.reserv .col-md-7 {
    padding: 0;
}

.reserv .milestones h3{
    margin-bottom: 70px;
}

.reserv .milestones .nav-link {
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
    margin-bottom: 30px;
    border: 1px solid var(--dark);
    border-radius: 99px;
    width: 18.75rem;
    text-transform: uppercase;
    position: relative;
    text-align: center;
}

.reserv .milestones .nav-link.active {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
}

.reserv .milestones .nav-link:not(:last-child)::after {
    content: '';
    display: block;
    position: absolute;
    height: 31px;
    width: 1px;
    background-color: #8B8B8B;
    top: 100%;
    left: 50%;
}

.reserv .milestones a span::after {
    content: '. ';
}

.reserv th{
    font-weight: 400;
    font-size: 15px;
    color: var(--gold);
}

.reserv th,
.reserv td{
    width: 14.28%;
    border: none;
}

.reserv td,
.reserv td a{
    text-align: center;
    transition: all 0.25s;
}

.reserv td.inactive{
    color: #B3B3B3;
}

.reserv td a{
    color: var(--gold);
    font-weight: bold;
}

.reserv .arrow{
    position: absolute;
    top: 15px;
    transition: all 0.25s;
}

.reserv .arrow:hover{
    transform: scale(1.3);
}

.reserv .arrow.left{
    left: 0;
}

.reserv .arrow.right{
    right: 0;
}

.reserv .arrow svg{
    fill: var(--gold);
}

.reserv .daycontent {
    border-radius: 99px;
    background: #F2F2F3;
    margin: -6px auto 0;
    transition: all 0.4s;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.reserv .daycontent a {
    color: var(--dark);
    padding: 8px;
}

.reserv .daycontent .availability{
    border: 1px solid rgba(120,94,141,0.3);
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #4aa08f;
    position: absolute;
    margin-left: 25px;
    margin-top: 20px;
    pointer-events: none;
}

.reserv .daycontent.fullday .availability{
    background: #b70505;
}

.reserv .daycontent:hover,
.reserv .daycontent:focus{
    background: var(--gold);
}

.reserv .daycontent:hover a,
.reserv .daycontent:focus a{
    color: #fff;
}

.reserv .buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.reserv .form-check-input + label {
    font-size: 1rem;
}

.reserv .form-check-input + label::before {
    border-color: var(--gold);
}

.reserv .form-check-input:checked + label::before {
    background-color: var(--gold);
    border-color: var(--gold);
}

.reserv .form-check-input:checked + label::after {
    top: 3px;
}

.reserv .calendarinfo{
    text-align: left !important;
    padding-left: 0;
}

.reserv .calendarinfo li {
    list-style: none;
    padding-left: 30px;
    margin-bottom: 10px;
    margin-left: 0;
}

.reserv .calendarinfo li:first-child {
    font-weight: 500;
}

.reserv .calendarinfo li .availability{
    border: 1px solid rgba(120,94,141,0.3);
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #4aa08f;
    position: absolute;
    margin-left: 12px;
    margin-top: 12px;
}

.reserv .calendarinfo li:nth-child(1){
    padding-left: 0;
}

.reserv .calendarinfo li:nth-child(2) .icon{
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(120,94,141,0.3);
    border: 1px solid rgba(120,94,141,0.3) !important;
    border-radius: 10px;
    margin-left: -30px;
    margin-top: 2px;
}

.reserv .calendarinfo li:nth-child(2) .icon .availability{
    background: #b70505;
}

.reserv .calendarinfo li:nth-child(3) .icon{
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(120,94,141,0.3);
    border: 1px solid rgba(120,94,141,0.3);
    border-radius: 10px;
    margin-left: -30px;
    margin-top: 2px;
}

/* RESERV RIGHT SIDE II. */

.reserv .time {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
}

.reserv .time > div {
    width: calc(14.28% - 9px);
    border-radius: 3px;
    background-color: #F2F2F3;
}

.reserv .time > div > * {
    padding: 6px 10px;
    display: block;
    margin: 0 auto;
}

.reserv .time .reserved {
    text-decoration: line-through;
    color: #B3B3B3;
}

.reserv .time a {
    color: var(--gold);
    font-weight: bold;
}

.reserv input,
.reserv select,
.reserv textarea {
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    margin-bottom: 10px;

    &::placeholder {
        color: var(--gold);
        opacity: 0.6;
        letter-spacing: 0;
    }
}

.reserv select {
    background-image: url('../images/angle-down-gold.svg');
    text-transform: uppercase;
}

.marker {
    margin-top: -160px;
    height: 160px;
}

.blog {
    padding-bottom: 160px;

    &.subpage {
        padding-top: 80px;
        padding-bottom: 240px;
    }

    h1, h2 {
        margin-bottom: 4rem;
        text-align: center;
        color: var(--gold);
    }

    .blog-bg {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-height: 940px;

        &::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, white 0%, transparent 100%);
        }

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .items.three {
        gap: 20px;

        .item {
            width: calc(100% / 3 - 14px);
            padding: 0;
            background-color: white;
            border: none !important;
            margin-top: 0;
            box-shadow: var(--shadow);

            &:first-of-type:not(.subpage .item) {
                width: 100%;
                flex-direction: row;
            }
    
            .image {
                display: block;
                width: 100%;
                height: 220px;
                overflow: hidden;
                border-radius: 16px;
                margin: 0;
    
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: transform 0.6s cubic-bezier(0.01, 0.69, 0.4, 1);
                }
    
                &:hover img {
                    transform: scale(1.05);
                }
            }
    
            .content {
                padding: 25px 25px calc(25px + 3rem);

                .date {
                    color: var(--gold);
                    display: block;
                    margin-bottom: 16px;
                }
    
                h3,
                h3 a {
                    font-family: 'Hepta Slab', sans-serif;
                    font-weight: 500;
                    text-transform: none;
                    letter-spacing: 0;
                    font-size: 1.125rem;
                    text-align: left;

                    &:hover {
                        color: var(--gold);
                    }
                }
    
                p {
                    margin-bottom: 0;
                    text-align: left;
                }
    
                .small-link {
                    position: absolute;
                    bottom: 25px;
                    left: 25px;
                    text-transform: uppercase;
                    color: var(--gold);
                    letter-spacing: 0.05em;

                    &::after {
                        content: '';
                        position: absolute;
                        bottom: -2px;
                        left: 0;
                        width: 100%;
                        height: 1px;
                        background-color: var(--gold);
                        transform: scaleX(0);
                        transform-origin: right;
                        transition: transform 0.3s ease-in-out;
                    }

                    &:hover::after {
                        transform: scaleX(1);
                        transform-origin: left;
                    }
                }
            }
        }
    }

    .primary-link.center {
        margin-bottom: 80px;
    }
}

.contact {
    position: static;
    padding-top: 0;
    padding-bottom: 100px;
    background-color: var(--darkblue);
    color: white;

    .card {
        background-color: var(--primary);
        color: white;
        text-align: center;
        padding: 70px 50px;
        max-width: 1348px;
        margin: -160px auto 80px;

        h3 {
            text-transform: uppercase;
            font-size: 2rem;
            font-weight: 500;
        }

        p {
            font-family: 'Hepta Slab', sans-serif;
            font-weight: 350;
            font-size: 1.5rem;
        }

        .primary-link {
            margin: 25px auto 0;
        }
    }

    .container {
        position: static;

        a {
            color: white;
        }

        h3 {
            font-size: 2.25rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            font-weight: 500;
        }

        .left {
            width: 300px;

            h3 {
                margin-bottom: 4.25rem;
            }

            p {
                margin-bottom: 0.25rem;
            }
        }

        .right {
            width: auto;
            flex: 1;

            h3 {
                margin-bottom: 0.25rem;
            }

            p {
                font-size: 1.75rem;
                margin-bottom: 1.75rem;
                font-family: 'Hepta Slab', sans-serif;
                font-weight: 350;
            }
        }

        .footerlogo {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 220px;
            height: auto;
        }
    }
}

.socials {
    display: flex;
    gap: 1.25rem;
    margin: 2.5rem 0 1.5rem;

    svg {
        height: 1.75rem;
        width: auto;
    }
}

form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

input,
textarea,
select {
    padding: 0.875rem 1.25rem;
    background-color: white;
    border-radius: 6px;
    color: var(--primary) !important;
    font-size: 1rem;
    width: 100%;
    resize: none;
    outline: none;
    border: none;
    transition: all 0.4s;
    font-weight: 500;

    &.half {
        width: calc(50% - 0.625rem);
    }

    &::placeholder {
        color: #4aa08f;
        opacity: 0.7;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 0.05em;
    }
}

select {
    appearance: none;
    background-image: url("../images/angle-down-gray.svg");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.form-check {
    margin-left: 32px;
    padding-left: 0 !important;
    width: 100%;
}

.form-check:not(.form-group .form-check):first-of-type {
    margin-top: 1rem;
}

.form-group {
    margin-bottom: 0;
}

.form-group:first-of-type {
    margin-top: 1rem;
}

.form-check-input {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.form-check-input+label {
    position: relative;
    line-height: 1.5;
    font-size: 0.875rem;
    margin-bottom: 0;
}

.form-check-input+label::before {
    content: " ";
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    margin-left: -32px;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 5px;
    border: 1px solid white;
    transition: 0.3s ease;
}

.form-check-input:checked+label::before {
    background-color: transparent;
}

.form-check-input+label::after {
    content: " ";
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBmaWxsPSIjZmZmZmZmIiBkPSJNMTczLjg5OCA0MzkuNDA0bC0xNjYuNC0xNjYuNGMtOS45OTctOS45OTctOS45OTctMjYuMjA2IDAtMzYuMjA0bDM2LjIwMy0zNi4yMDRjOS45OTctOS45OTggMjYuMjA3LTkuOTk4IDM2LjIwNCAwTDE5MiAzMTIuNjkgNDMyLjA5NSA3Mi41OTZjOS45OTctOS45OTcgMjYuMjA3LTkuOTk3IDM2LjIwNCAwbDM2LjIwMyAzNi4yMDRjOS45OTcgOS45OTcgOS45OTcgMjYuMjA2IDAgMzYuMjA0bC0yOTQuNCAyOTQuNDAxYy05Ljk5OCA5Ljk5Ny0yNi4yMDcgOS45OTctMzYuMjA0LS4wMDF6Ii8+PC9zdmc+");
    background-repeat: no-repeat;
    background-size: 12px 12px;
    background-position: center center;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -32px;
    left: 0;
    top: -10px;
    text-align: center;
    background-color: transparent;
    font-size: 10px;
    height: 20px;
    width: 20px;
    transition: 0.3s ease;
    opacity: 0;
}

.form-check-input:checked+label::after {
    opacity: 1;
    top: 2px;
}

.contact .primary-link {
    margin-top: 1.25rem;
}

/* FOOTER */

footer {
    background-color: var(--primary);
    padding: 25px clamp(20px, 4vw, 80px);
    color: white;
    text-transform: uppercase;
    font-weight: 500;

    .container {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 30px;

        .footerlogo {
            display: none;
        }
        
        p {
            margin-bottom: 0;
            font-size: 0.875rem;
            line-height: 1;
        }

        a {
            font-size: 0.9375rem;
            color: white;
            white-space: nowrap;
            line-height: 1;
        }
        
        .links {
            display: flex;
            gap: 10px;
            
            a {
                position: relative;
                padding-right: 10px;
            }

            a::after {
                content: '';
                position: absolute;
                display: block;
                width: 1px;
                height: 1rem;
                top: 50%;
                right: 0;
                transform: translateY(-50%);
                background-color: white;
            }
    
            a:last-child::after {
                display: none;
            }
        }

        .raccoon {
            display: flex;
            gap: 5px;
        }
    }
}

.small-hero {
    height: 350px;
    margin-top: 6.9vw;
    overflow: hidden;

    &::before {
        content: '';
        position: absolute;
        display: block;
        top: 100%;
        left: 0;
        width: 100%;
        height: 100px;
        box-shadow: 0 -20px 35px 0 rgba(0, 0, 0, 0.15);
    }
}

.about-subpage {
    padding-top: 60px;

    .bgshape.top {
        top: 60px;
        right: 0;
        transform: translateX(30%);
    }

    .bgshape.bottom {
        bottom: 0;
        left: 0;
        transform: translateX(-30%);
    }

    .flex-content {
        gap: 100px;
    }

    h1 {
        color: var(--gold);
        margin-bottom: 70px;
    }

    h2 {
        text-align: left;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    p {
        line-height: 1.5;
    }

    .left {
        .image {
            position: relative;
            overflow: hidden;
            border-radius: 999px;
        }

        .quote {
            font-family: 'Hepta Slab', sans-serif;
            font-weight: 350;
            margin-top: 60px;
            color: var(--gold);

            h3 {
                font-size: 2rem;
                font-weight: 350;
                line-height: 1.45;
            }

            p {
                font-size: 1.25rem;
            }
        }
    }
}

.steps.subpage {
    margin-top: 0;
    padding-top: 100px;
    padding-bottom: 0;

    &::before,
    &::after {
        display: none;
    }

    .item {
        box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.13);
    }
}

.coaching {
    h1 {
        color: var(--gold);
        margin-bottom: 40px;
        position: relative;
        z-index: 3;
    }

    &::before,
    &::after {
        content: '';
        position: absolute;
        top: 0;
        width: 30%;
        height: 100%;
        z-index: 2;
    }

    &::before {
        left: 0;
        background: linear-gradient(270deg, transparent, white);
    }

    &::after {
        right: 0;
        background: linear-gradient(90deg, transparent, white);
    }

    .swiper {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .relative {

        .swiper-slide {
            background-color: var(--light);
            padding: 40px 30px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Hepta Slab', sans-serif;
            font-weight: 350;
            font-size: 1.0625rem;
            border: none !important;
            transition: transform 0.6s, background-color 0.4s, color 0.4s;
        }

        .swiper-slide-active {
            transform: translateY(-25px);
            background-color: var(--primary);
            color: white;
        }

        .swiper-slide-next + .swiper-slide {
            box-shadow: none;
            transform: none;
        }

        .prev {
            left: 0;
        }

        .next {
            right: 0;
        }
    }
}

.topics {
    padding-top: 100px;

    .bgshape.top {
        top: 0;
        right: 0;
        transform: translateX(50%);
    }

    .bgshape.middle {
        top: calc(6rem + 310px + 90px + 155px);
        transform: translate(-100%, -40%) rotate(60deg);
        z-index: -1;
    }

    .bgshape.bottom {
        bottom: 0;
        right: 0;
        transform: translate(70%, 35%) rotate(180deg);
    }

    h2 {
        text-align: left;
        margin-bottom: 4rem;
    }

    .flex-content {
        gap: 120px;
        margin-bottom: 90px;
        position: relative;

        &:last-child {
            margin-bottom: 0;
        }

        .marker {
            position: absolute;
            top: -140px;
            height: 0;
        }

        .left {
            width: 41%;
            height: 310px;
            position: relative;

            .image {
                overflow: hidden;
                width: 100%;
                height: 100%;
                border-radius: 16px;
            }

            img {
                transition: transform 0.6s cubic-bezier(0.01, 0.69, 0.4, 1);
            }

            &:hover .image img {
                transform: scale(1.05);
            }

            .icon {
                position: absolute;
                top: 50%;
                right: 0;
                transform: translate(50%, -50%);
                width: 114px;
                height: 114px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                background-color: var(--gold);

                img {
                    width: 64px;
                    height: 64px;
                    object-fit: contain;
                }
            }
        }

        .right {
            h3 {
                font-size: 2rem;
                font-weight: 500;
                letter-spacing: 0.05em;
                text-transform: uppercase;
                margin-bottom: 1.5rem;
            }

            p {
                font-family: 'Hepta Slab', sans-serif;
                font-weight: 350;
                line-height: 1.5;
            }
        }
    }

    .flex-content:nth-child(even) {
        flex-direction: row-reverse;

        .left {
            .icon {
                right: auto;
                left: 0;
                transform: translate(-50%, -50%);
            }
        }
    }
}

.article {
    padding-top: 60px;

    .content * {
        font-family: 'Hepta Slab', sans-serif;
    }

    .nav {
        margin-bottom: 40px;

        a {
            text-transform: uppercase;
            padding-right: 0.375rem;
            letter-spacing: 0.05em;

            &::after {
                content: '/';
                display: inline;
                margin-left: 0.375em;
            }

            &:last-child {
                text-transform: none;
                color: var(--gold);
                font-weight: 500;

                &::after {
                    display: none;
                }
            }
        }
    }

    .date {
        color: var(--gold);
        display: block;
        margin-bottom: 40px;
    }

    .author {
        padding: 40px;
        margin-top: 140px;
        background-color: var(--light);
        border-radius: 16px;
        text-align: center;

        * {
            font-family: 'Hepta Slab', sans-serif;
            font-weight: 400;
            letter-spacing: 0.06em;
        }

        img:not(.bgshape) {
            display: block;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            margin: -130px auto 30px;
        }

        h4 {
            text-transform: uppercase;
            font-family: 'Figtree', sans-serif;
            font-size: 1rem;
            margin-bottom: 0;
        }

        h3 {
            text-transform: uppercase;
            font-size: 1.25rem;
            font-weight: 600;
            margin: 1rem 0;
        }

        p {
            max-width: 650px;
            margin: 0 auto;
        }
    }
}

.hero .bg.mobile {
    display: none;
}

@media (max-width: 1279px) {

    .desktop-navbar {
        padding: 0;

        &.active {
            top: -70px;
        }
    }

    .desktop-navbar .container {
        max-width: 100%;
        position: relative;
        
        &.first {
            padding-top: 6px;
            padding-bottom: 6px;
            
            a {
                font-size: 12px;
                white-space: nowrap;
                padding: 0 12px;
                
                &:last-of-type {
                    border-right: none;
                }
            }
            span {
                display: none;
            }
        }
        
        &.second {
            padding: 10px 20px;
        }
    }

    .desktop-navbar .logo {
        height: 44px;
    }

    .desktop-navbar .logo img {
        height: 44px;
        margin-left: -2px;
    }

    .desktop-navbar .links {
        display: none;
    }

    .desktop-navbar .open-sidebar {
        display: flex;
    }

    .desktop-navbar .buttons {
        display: flex;
        gap: 15px;
        position: static;
    }

    /* .desktop-navbar .buttons a {
        display: none;
    } */

    .desktop-navbar .basketLayerContainer svg {
        height: 24px;
    }

    .desktop-navbar .login-btn svg {
        height: 24px;
        width: 24px;
    }

    .desktop-navbar .buttons .item {
        position: static;
    }

    .desktop-navbar .buttons .lang {
        display: none;
    }

    .desktop-modal {
        left: auto;
        right: 20px;
        transform: none;
        max-width: 380px;

        &.active {
            transform: translateY(24px);
        }

        &.basket-modal::before {
            right: 75px;
        }

        &.login-modal::before {
            right: 35px;
        }
    }

    .sidebar .navbar-dropdown {
        top: 0;
        background-color: #FFFFFFEF;
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .sidebar .navbar-dropdown .container {
        box-shadow: none;
        background-color: transparent;
    }

    .sidebar .navbar-dropdown .arrow {
        width: 14px;
        height: 24px;
        object-fit: contain;
        cursor: pointer;
        margin: 20px 0 0;
        display: block;
    }

    .sidebar .navbar-dropdown .container {
        padding: 0 0 40px;
        gap: 20px;
        flex-direction: row;
        align-items: auto;
        justify-content: center;
        max-height: none;
        align-items: initial;
    }

    .sidebar .navbar-dropdown .container .item {
        width: 100%;
    }

    .sidebar .navbar-dropdown .container a {
        font-size: 1.125rem;
        font-weight: 400;
        padding: 0.75rem 0;
        text-align: center;
    }
}

@media (max-width: 1023px) {

    .hero {
        margin-top: 80px;

        .container h1 {
            font-size: 3rem;
        }

        .swiper-button-prev,
        .swiper-button-next {
            top: auto;
            bottom: 30px;
        }
    }

    .contact {
        padding-bottom: 40px;

        .card {
            padding: 25px;
            margin: -100px auto 50px;

            h3 {
                font-size: 1.375rem;
            }

            p {
                font-size: 1.125rem;
            }
        }

        .container {
            flex-direction: column;
            gap: 30px;

            h3 {
                font-size: 2rem;
            }

            .left {
                width: 100%;

                h3 {
                    margin-bottom: 1.25rem;
                }

                .footerlogo {
                    display: none;
                }
            }

            .right {
                h3 {
                    margin-bottom: 0.75rem;
                }

                p {
                    font-size: 1.25rem;
                }
            }
        }
    }

    .socials {
        margin-top: 1.75rem;
    }

    footer {
        padding: 40px 20px;

        .container {
            flex-direction: column;
            align-items: center;
            gap: 30px;
            text-align: center;

            .footerlogo {
                display: block;
                width: 220px;
            }

            p {
                line-height: 1.3;
            }

            a {
                font-size: 0.875rem;
                line-height: 1.3;
            }

            .links {
                flex-direction: column;
                gap: 0;
                
                a {
                    padding: 0.375rem 0;
                    font-size: 0.875rem;
                    text-align: center;
                }

                a::after {
                    display: none;
                }
            }
        }
    }

    .reserv {
        padding-top: 40px;

        h2 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 2rem;
        }

        h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        #reserv-result {
            flex-direction: column;
            gap: 20px;
        }

        .milestones .nav-link {
            margin: 0 auto 12px;
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            width: 17.5rem;
        }

        .milestones .nav-link:not(:last-child)::after {
            height: 13px;
        }

        .table td, .table th {
            padding: 0.625rem;
            font-size: 0.875rem;
        }

        .time > div {
            width: calc(25% - 8px);
        }
    }


}

@media (max-width: 767px) {

    p,
    li,
    a {
        font-size: 0.875rem;
    }

    h1 {
        font-size: 1.625rem;
    }

    h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    h3 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    h4 {
        font-size: 1.125rem;
    }

    h5,
    h6 {
        font-size: 1rem;
    }

    section {
        padding: 50px 20px 0;
    }

    ul,
    ol {
        margin-bottom: 1rem;
    }
    
    .article h1 {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 1.75rem;
    }

    .article h2 {
        font-size: 1.75rem;
    }

    .article h3 {
        font-size: 1.5rem;
    }

    .article h4 {
        font-size: 1.25rem;
    }

    .article h5 {
        font-size: 1rem;
    }

    .article h6 {
        font-size: 0.875rem;
    }

    .article img:not(.bgshape) {
        max-height: 450px;
        border-radius: 10px;
    }

    .primary-link {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem 0.6875rem;
    }

    .primary-link.center {
        margin: 2rem auto 0;
    }

    .vbox-close {
        padding: 20px !important;
        top: 5px !important;
        right: 5px !important;
    }

    .vbox-next {
        right: 25px !important;
    }

    .vbox-prev {
        left: 25px !important;
    }

    .flex-content,
    .flex-content.reverse {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .flex-content .side {
        width: 100%;
    }

    .flex-content .primary-link {
        margin-top: 1.25rem;
    }

    .items {
        gap: 20px;
    }

    .items.two .item,
    .items.three .item,
    .items.four .item {
        width: 100%;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 20px;
    }

    .swiper-button-prev {
        left: -44px;
    }

    .swiper-button-next {
        right: -44px;
    }

    .items {
        gap: 30px;

        .item {
            width: 100%;
            padding: 20px 20px calc(20px + 4.25rem);

            .image {
                width: 104px;
                height: 104px;
                margin: -72px auto 30px;
            }
        }
    }

    .items .item p {
        font-size: 0.875rem;
    }

    .items .item .link {
        height: 4.25rem;
        font-size: 1rem;
    }

    .primary-link.center {
        margin-top: 40px;
    }

    /*************************************/

    .hero {
        padding: 140px 20px 80px;

        &.main-hero {
            margin-top: 90px;
            padding: 0;

            .swiper-slide {
                padding: 30px 20px 50vw;
                background-color: white;
            }

            .swiper-button-prev,
            .swiper-button-next {
                top: auto;
                bottom: 20px;
                width: 34px;
                height: 34px;
            }

            .swiper-button-prev {
                left: 20px;
            }

            .swiper-button-next {
                right: 20px;
            }

            .swiper-button-prev::after,
            .swiper-button-next::after {
                font-size: 17px;
            }

            .swiper-pagination {
                bottom: 25px;
                gap: 12px;
            }

            .swiper-pagination-bullet {
                width: 10px;
                height: 10px;
                box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
            }

            .bg {
                top: auto;
                bottom: 0;
                height: 60vw;
            }

            .layer {
                display: block;
                background: linear-gradient(0deg, transparent 60%, white 100%);
            }
        }
        
        .container {

            .small-container {
                padding: 20px;
            }

            h1 {
                font-size: 1.625rem;
                margin-bottom: 1rem;

                br {
                    display: none;
                }
            }

            *:not(h1):not(.primary-link) {
                font-size: 1.0625rem;
            }
            
            .primary-link {
                margin-top: 1.25rem;
                font-size: 0.9375rem;
            }
        }
    }

    .bgshape {
        display: none;
    }

    .about {
        .container {
            max-width: 640px;
        }

        .card {
            .flex-content {
                .left {
                    padding: 20px 20px 30px;

                    h2 {
                        font-size: 1.5rem;
                        margin-bottom: 1rem;
                    }

                    p {
                        font-size: 0.9375rem;
                    }

                    .link {
                        font-size: 1rem;
                        margin-top: 1.25rem;
                    }
                }
            }

            .content {
                padding: 25px;

                h3 {
                    font-size: 1.375rem;
                }

                p {
                    font-size: 1.125rem;
                }

                .primary-link {
                    margin-top: 1.75rem;
                }
            }
        }
    }

    .steps {
        padding-top: 60px;
        margin-top: 0;
        padding-bottom: 60px;

        .items {
            .item {
                padding: 20px;

                &::after,
                .link {
                    display: none;
                }

                .number {
                    width: 104px;
                    height: 104px;
                    margin: -72px auto 25px;
                }

                .content {
                    min-height: auto;
                    max-height: none;
                    padding-bottom: 5px;

                    p {
                        font-size: 0.875rem;
                    }
                }
            }
        }
    }

    .reviews {
        padding: 0;

        &::before,
        &::after {
            display: none;
        }

        h2 {
            margin-bottom: 2rem;
        }
    }

    .relative {
        width: calc(100% - 60px);
        margin: 0 auto -20px;

        .swiper-slide {
            p {
                font-size: 0.8125rem;
            }

            img {
                margin-bottom: 18px;
            }
        }

        .swiper-slide-next + .swiper-slide {
            border-color: transparent;
            box-shadow: none;
            transform: none;
        }

        .swiper-slide-active {
            border-color: var(--gold);
            transform: translateY(-25px);
        }

        .prev,
        .next {
            width: 40px;
            height: 40px;
            transform: translateY(-45px);

            img {
                width: 13px;
            }
        }

        .prev {
            left: -20px;

            img {
                margin-left: -2px;
            }
        }

        .next {
            right: -20px;

            img {
                margin-right: -2px;
            }
        }
    }

    .booking {
        padding-top: 50px;
    }

    .marker {
        margin-top: -100px;
        height: 100px;
    }

    .blog {
        padding-bottom: 90px;

        &.subpage {
            padding-top: 80px;
            padding-bottom: 240px;
        }

        h1, h2 {
            margin-bottom: 3rem;
        }

        .items.three {
            gap: 20px;

            .item {
                width: 100%;

                &:first-of-type:not(.subpage .item) {
                    flex-direction: column;
                }
            }
        }

        .primary-link.center {
            margin-bottom: 60px;
        }
    }
    

    form {
        gap: 0.625rem;
    }

    input,
    textarea,
    select,
    option {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    input.half {
        width: 100%;
    }

    form select {
        background-size: 14px;
    }

    .form-check-input+label {
        font-size: 0.75rem;
    }

    .form-check-input:checked+label::after {
        top: 0.5px;
    }

    .form-check:not(.form-group .form-check):first-of-type {
        margin-top: 0.75rem;
    }

    .contact form .primary-link {
        margin: 1rem auto 0;
    }

    .small-hero {
        margin-top: 20px;
        height: 250px;
    }
    
    .about-subpage {
        padding-top: 30px;

        .flex-content {
            flex-direction: column;
            gap: 40px;
        }

        h1 {
            font-size: 2rem;
            margin-bottom: 40px;
        }

        h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .left {
            .image {
                width: 320px;
                max-width: 320px;
                height: 320px;
                margin: 0 auto;
            }

            .quote {
                margin-top: 16px;

                h3 {
                    font-size: 1.5rem;
                    text-align: center;
                    line-height: 1.35;
                    margin-bottom: 0.5rem;
                }

                p {
                    text-align: center;
                    font-size: 1.125rem;
                }
            }
        }
    }

    .steps.subpage {
        padding-top: 50px;
    }

    .coaching {
        padding-top: 40px;

        &::before,
        &::after {
            display: none;
        }

        .relative {
            width: calc(100% - 40px);
        }
    }

    .topics {
        padding-top: 30px;

        h2 {
            margin-bottom: 2rem;
        }

        .flex-content {
            flex-direction: column !important;
            gap: 80px;
            margin-bottom: 50px;

            .marker {
                top: -80px;
            }

            .left {
                width: 100%;
                max-width: 400px;
                margin: 0 auto;
                height: 240px;

                .icon {
                    top: auto;
                    right: auto;
                    left: 50%;
                    bottom: 0;
                    transform: translate(-50%, 50%);
                    width: 104px;
                    height: 104px;
                }
            }

            .right {
                width: 100%;

                h3 {
                    text-align: center;
                    font-size: 1.625rem;
                }
            }
        }

        .flex-content:nth-child(even) {
            .left {
                .icon {
                    top: auto;
                    right: auto;
                    left: 50%;
                    bottom: 0;
                    transform: translate(-50%, 50%);
                    width: 104px;
                    height: 104px;
                }
            }
        }
    }

    .blog-hero {
        height: 200px;
        .bg {
            object-position: left center;
        }
    }

    .blog.subpage {
        padding-top: 45px;
        padding-bottom: 120px;
    }

    .article-hero {
        height: 220px;
    }

    .article {
        padding-top: 25px;

        .nav {
            margin-bottom: 20px;
        }

        .date {
            margin-bottom: 20px;
        }

        .author {
            padding: 25px 20px;
            margin-top: 120px;

            img:not(.bgshape) {
                display: block;
                margin: -115px auto 25px;
            }
        }

    }

    .hero .bg.mobile {
        display: block;
    }
}
    

@media (min-width: 767px) and (max-width: 1023px) {

    section {
        padding: 80px clamp(20px, 4vw, 80px) 0;
    }

    h2 {
        font-size: 2.75rem;
        margin-bottom: 3.5rem;
    }

    .flex-content {
        gap: 40px;
    }

    .items {
        gap: 40px;
    }

    .whyus {
        .items {
            .item {
                width: calc(50% - 20px);
            }
        }
    }

    .about {
        .card {
            max-width: 600px;
            margin: 0 auto;

            .flex-content {
                flex-direction: column-reverse;

                .left, .right {
                    width: 100%;
                }

                .left {
                    padding: 30px;
                }
            }
        }
    }

    .steps {
        .items {
            .item {
                width: calc(50% - 20px);
            }
        }
    }

    .relative {
        .swiper-slide-next + .swiper-slide {
            border-color: transparent;
            box-shadow: none;
            transform: none;
        }

        .swiper-slide-next {
            border-color: var(--gold);
            box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.13);
            transform: translateY(-25px);
        }
    }

    .blog .items.three .item {
        width: calc(100% / 2 - 10px);
    }

    .blog .items .item:first-of-type:not(.subpage .item) h3 a {
        font-size: 1.125rem !important;
    }

    form input.half {
        width: 100%;
    }

    .about-subpage .flex-content {
        gap: 60px;

        .left {
            width: 44%;
        }

        .right {
            width: 56%;
        }
    }


    /*********************************/



}

@media (min-width: 1024px) and (max-width: 1200px) {
    .hero {
        margin-top: 80px;
        padding-bottom: 9vw;
    }
}

@media (min-width: 1200px) and (max-width: 1440px) {}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }

    .blog .items .item:first-of-type:not(.subpage .item) {
        width: 100%;
        flex-direction: row;
        align-items: center;
        margin-bottom: 10px;
        border: 1px solid var(--gold) !important;

        .image {
            width: 40%;
            height: 340px;
        }

        .content {
            width: 60%;
            padding: 30px 40px;
            position: relative;

            h3 a {
                font-size: 1.5rem;
            }

            .small-link {
                position: relative;
                bottom: 0;
                left: 0;
                margin-top: 1.25rem;
                display: block;
                width: fit-content;
            }
        }
    }
}

@media (min-width: 1023px) {
    .container {
        max-width: 1023px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}