:root {
    --dark: #341954;
    --primary: #5D21BD;
    --gold: #C8AA77;
    --gray: #737373;
    --light: #F2F2F2;
    --swiper-theme-color: #5D21BD;
}

* {
    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);
    font-family: 'Open Sans', sans-serif;
}

.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: 1140px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

strong {
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    position: relative;
}

h2:not(.article h2, .hero h2) {
    max-width: 680px;
    margin: 0 auto 3rem;
    text-align: center;
    padding-bottom: 0.75em;
}

h2:not(.article h2, .hero h2)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 3px;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1.125rem;
}

h4 {
    font-weight: 700;
    font-size: 1.125rem;
}

h5 {
    font-weight: 600;
    font-size: 1rem;
}

h6 {
    font-weight: 600;
    font-size: 1rem;
}

p,
li {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

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

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

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

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

.article h2 {
    font-size: 2rem;
    margin: 2rem 0 1.5rem;
}

.article h3 {
    color: var(--primary);
    font-size: 1.625rem;
    margin: 1.75rem 0 1rem;

}

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

.article h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.25rem 0 0.875rem;
}

.article h6 {
    font-size: 1rem;
    font-weight: 600;
    margin: 1.25rem 0 0.875rem;
}

.article img:not(.bgshape) {
    width: 100%;
    margin: 1.25rem 0;
    border-radius: 16px;
}

.article .small-container {
    max-width: 950px;
    margin: 0 auto;
}

.article br {
    display: block;
    margin-bottom: 0.75rem;
}

section {
    padding: 100px clamp(20px, 5vw, 80px) 0;
    position: relative;
    max-width: 2560px;
    margin: 0 auto;
    overflow: hidden;
}

.primary-link {
    padding: 0.875em 2.5em 0.8125em;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    border-radius: 99px;
    display: block;
    width: fit-content;
    text-transform: uppercase;
    outline: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    border: 2px solid var(--primary);
    background-color: var(--primary);
    color: white;
}

.primary-link.gold {
    background-color: var(--gold);
    border-color: var(--gold);
}

.primary-link:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.primary-link.purple {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.primary-link.purple:hover {
    background-color: var(--gold);
    border-color: var(--gold);
}

.primary-link.outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.primary-link.outline:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: white;
}

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

.small-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    width: fit-content;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.125rem;
    position: relative;
    margin-top: 1.75rem;
}

.small-link:hover {
    color: var(--primary);
}

.small-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.7s cubic-bezier(0.01, 0.69, 0.4, 1);
}

.small-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.small-link::after {
    content: '';
    height: 0.875em;
    width: 2.75em;
    background-image: url('../images/arrow-right-blue.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

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

::-moz-selection {
    background: var(--primary);
    color: white;
}

.rccookie-container {
    background-color: #FFFFFFBB;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    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;
}

/* 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;
    opacity: 0;
    transition: opacity 0.4s;
    overflow-y: auto;
    padding: 20px;
}

.custom-modal.active {
    opacity: 1;
}

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

.custom-modal .modal-content {
    margin: 20px auto;
    width: 100%;
    max-width: 950px;
    max-height: calc(100% - 40px);
    background-color: var(--light);
    border-radius: 16px;
    overflow: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
}

.custom-modal .modal-content .header {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-modal .modal-content .header h3 {
    margin-bottom: 0;
    font-size: 2rem;
    text-align: center;
    width: 100%;
}

.custom-modal .modal-content .header .cancel {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    width: 24px;
}

.custom-modal form {
    padding: 0 40px 40px;
}

.custom-modal form h4 {
    font-size: 1.25rem;
    width: 100%;
    text-align: center;
}

.custom-modal form label {
    font-weight: 500;
    width: 100%;
}

.custom-modal form input,
.custom-modal form textarea,
.custom-modal form select {
    border-color: var(--primary);
}

.custom-modal form input:nth-of-type(3) {
    width: 100%;
}

.custom-modal form input.half {
    width: calc(50% - 0.625rem);
}

.custom-modal .form-group {
    width: 100%;
}

.custom-modal form .primary-link {
    display: block;
}

/* SIDEBAR OPEN */

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

.open-sidebar .hb {
    border-bottom: 3px solid white;
    border-radius: 99px;
    transition: all 0.45s;
}

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

.open-sidebar .hb1,
.open-sidebar .hb2 {
    width: 26px;
}

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

.open-sidebar.closed .hb1 {
    transform: rotate(-45deg) translate(-6px, 6px);
    width: 30px;
}

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

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

/* SIDEBAR */

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

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

#sidebar .lang {
    font-size: 1.125rem;
    color: white;
    gap: 0.5rem;
    padding-right: 0;
}

#sidebar .lang .current {
    padding-right: 1.75rem;
}

#sidebar .lang .current::after {
    width: 16px;
    height: 16px;
    transform: translateY(-50%) rotate(180deg);
}

#sidebar .lang.active .current::after {
    transform: translateY(-50%) rotate(0deg);
}

#sidebar .lang .list {
    top: auto;
    bottom: 100%;
    right: 50%;
    transform: translateX(50%);

}

#sidebar .lang.active .list {
    top: auto;
    bottom: calc(100% + 0.8rem);
}

#sidebar .lang .list a {
    font-size: 1.125rem;
    padding: 0.375rem 1rem;
}

#sidebar .lang .list a:first-child {
    padding-top: 0.625rem;
}

#sidebar .lang .list a:last-child {
    padding-bottom: 0.625rem;
}

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

#sidebar {
    background: linear-gradient(180deg, #341954DD 20%, #7337BADD 80%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

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

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

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

#sidebar .links .nav-item {
    width: 100vw;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 1.0625rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
}

#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 {
    width: fit-content;
    margin: 16px auto 0;
}

/* DESKTOP NAVBAR */

.navbar {
    display: block;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 0;
    background-color: transparent;
    /* transition: all 0.4s ease-in-out; */
    background: linear-gradient(180deg, #341954 20%, #7337BA 80%);
}

/* .navbar.scrolled {
    background-color: #FFFFFFEE;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
} */

.navbar .mobile-top {
    display: none;
}

.navbar .top {
    padding: 0.75vw 1vw 0;
    position: relative;
    z-index: 2;
}

.navbar .top .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 99px;
    padding: 0.5vw 1vw;
    background-color: var(--primary);
}

.navbar .top .wrapper .contact-infos,
.navbar .top .wrapper .buttons {
    display: flex;
    align-items: center;
    gap: 2vw;
}


.navbar .top .wrapper .contact-infos {
    background-color: var(--dark);
    border-radius: 99px;
    padding: 0.5vw 1.5vw 0.5vw 3vw;
    position: relative;
}

.navbar .top .wrapper .contact-infos::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2.25vw;
    height: 2.25vw;
    background: url('../images/info.svg') no-repeat center / contain;
    background-size: 60% 60%;
    background-color: var(--gold);
    border-radius: 99px;
}

.navbar .top .wrapper .contact-infos * {
    font-size: 0.8vw;
    color: white;
    position: relative;
    font-weight: 600;
}

.navbar .top .wrapper .contact-infos *:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1vw;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background-color: white
}

.navbar .top .wrapper .buttons {
    padding-right: 0.75vw;
    gap: 1.75vw;
}

.search {
    position: relative;
}

.search .input-div {
    background-color: var(--dark);
    border-radius: 99px;
    overflow: hidden;
}

.search .input-div input {
    padding: 0.5vw 1vw;
    width: 15vw;
    min-width: 150px;
    border: none;
    outline: none;
    font-size: 0.9vw;
    color: white;
    background-color: transparent;
}

.search .input-div button {
    background-color: var(--gold);
    border: none;
    width: 2.15vw;
    height: 2.15vw;
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    cursor: default;
}

.search .input-div button img {
    width: 1vw;
    height: auto;
}

.search .results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
    border-radius: 8px;
    overflow-y: auto;
    max-height: 80vh;
    scrollbar-width: thin;
    opacity: 0;
    pointer-events: none;
    transition: top 0.3s, opacity 0.3s;
}

.search .results.active {
    top: calc(100% + 0.8vw);
    opacity: 1;
    pointer-events: auto;
}

.search .results .item {
    display: flex;
    gap: 0.625vw;
    padding: 0.625vw;
    transition: background-color 0.3s;
}

.search .results .item:hover {
    background-color: var(--light);
}

.search .results .item img {
    width: 4vw;
    min-width: 4vw;
    height: 4vw;
    object-fit: cover;
    border-radius: 8px;
}

.search .results .item h4 {
    font-size: 0.9vw;
    margin-bottom: 0.25vw;
}

.search .results .item p {
    font-size: 0.68vw;
    color: var(--gray);
    margin: 0;
}

.lang {
    position: relative;
    text-transform: uppercase;
    font-weight: 600;
    padding-right: 1.75vw;
    cursor: pointer;
    font-size: 0.9vw;
}

.lang .current::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 0.9vw;
    height: 0.9vw;
    background-image: url('../images/angle-down-white.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    transition: transform 0.4s ease-out;
}

.lang.active .current::after {
    transform: translateY(-50%) rotate(180deg);
}

.lang .list {
    position: absolute;
    top: 70%;
    right: 0;
    background-color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
}

.lang.active .list {
    top: calc(100% + 0.8vw);
    opacity: 1;
    pointer-events: auto;
}

.lang .list a {
    display: block;
    color: var(--dark) !important;
    padding: 0.375vw 1vw;
    transition: background-color 0.3s;
    text-align: center;
}

.lang .list a:first-child {
    padding-top: 0.625vw;
}

.lang .list a:last-child {
    padding-bottom: 0.625vw;
}

.lang .list a:hover {
    background-color: var(--light);
}

.navbar .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1vw;
    transition: all 1s cubic-bezier(0.3, 0, 0.4, 1);
}

.navbar.scrolled .logo {
    margin-top: -8vw;
    opacity: 0;
}

.navbar .logo img {
    height: 7vw;
}

.navbar .links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5vw;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}

.navbar .links .link {
    position: relative;
}

.navbar .links .nav-item {
    font-size: 0.85vw;
    font-weight: 600;
    display: flex;
    align-items: center;
    position: relative;
    white-space: nowrap;
    color: white;
    text-transform: uppercase;
    padding: 0.75vw 0.25vw;
}

/* .navbar.scrolled .links .nav-item {
    color: var(--dark);
} */

.navbar .links .nav-item:hover,
.navbar .links .nav-item.active {
    color: #efd4a5;
}

/* .navbar.scrolled .links .nav-item:hover,
.navbar.scrolled .links .nav-item.active {
    color: var(--primary);
}

.navbar .links .nav-item::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: white;
    transition: width 0.4s cubic-bezier(0.01, 0.69, 0.4, 1);
}

.navbar.scrolled .links .nav-item::after {
    background-color: var(--primary);
}

.navbar .links .nav-item:hover::after,
.navbar .links .nav-item.active::after {
    width: 100%;
} */

.navbar .links .nav-item svg {
    width: 0.875vw;
    margin-left: 8px;
    transition: transform 0.3s;
}

.navbar .links .nav-item.active svg {
    transform: rotate(180deg);
}

.navbar .links .nav-item svg path {
    transition: stroke 0.3s;
    stroke: white;
}

.navbar .links .nav-item:hover svg path,
.navbar .links .nav-item.active svg path {
    stroke: var(--gold);
}

/* .navbar.scrolled .links .nav-item svg path {
    stroke: var(--dark);
}

.navbar.scrolled .links .nav-item:hover svg path,
.navbar.scrolled .links .nav-item.active svg path {
    stroke: var(--primary);
} */

.navbar .links .primary-link {
    font-size: 0.85vw;
    padding: 0.6875em 1.25em 0.625em;
    margin: 0.5vw 0;
    font-weight: 600;
}

.navbar .lang {
    border-left: 1px solid white;
    padding: 0.25vw 0;
}

.navbar .lang .current {
    color: white;
    font-weight: 600;
    transition: all 0.3s;
    padding: 0 1.5vw;
    position: relative;
}

/* .navbar.scrolled .lang .current {
    color: var(--dark);
    border-color: var(--dark);
} */

.navbar .lang .current::after {
    transition: all 0.4s;
}

/* .navbar.scrolled .lang .current::after {
    filter: brightness(0);
} */

/* NAVBAR DROPDOWN */

.navbar .navbar-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    width: auto;
    min-width: 100%;
    height: fit-content;
    overflow: hidden;
    z-index: 998;
    max-height: 0;
    transition: max-height 0.45s cubic-bezier(0.01, 0.69, 0.4, 1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

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

.navbar .navbar-dropdown .container {
    padding: 0;
    background-color: #FFFFFFE8;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

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

.navbar .navbar-dropdown .container a {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0.8vw;
    padding: 0.5vw 0.75vw;
    white-space: nowrap;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
}

.navbar-dropdown .container a:hover {
    color: var(--primary);
    background-color: var(--light);
}

.navbar .navbar-dropdown .container a:first-child {
    padding-top: 0.75vw;
}

.navbar .navbar-dropdown .container a:last-child {
    padding-bottom: 0.75vw;
}

/* KIS LENYÍLÓK */

.desktop-modal {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100vw - 40px);
    max-width: 300px;
    background-color: #FFFFFFDD;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
    border-radius: 15px;
    display: none;
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    padding: 20px;
}

.desktop-modal.active {
    transform: translate(-50%, 2.5vw);
    opacity: 1;
}

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

.desktop-modal .cancel,
.navbar-dropdown .cancel {
    position: absolute;
    top: 15px;
    right: 12px;
    padding: 10px;
    cursor: pointer;
    width: 36px;
}

.desktop-modal h4 {
    margin: 0 0 20px;
    text-transform: none;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
}

.desktop-modal form {
    padding: 0;
    width: 100%;
    background-color: transparent;
    gap: 0;
}

.desktop-modal form input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--dark);
    border-radius: 5px;
    margin-bottom: 15px;
    line-height: 1;
}

.desktop-modal .primary-link {
    background-color: var(--primary);
    margin: 0 auto;
}

.desktop-modal .primary-link:hover {
    background-color: var(--primary);
}

/* Állandó */

.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%;
    max-height: 570px;
    object-fit: cover;
}

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

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

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

.items .item {
    display: flex;
    flex-direction: column;
    width: calc(33.33% - 28px);
    position: relative;
}

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

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

.items.six .item {
    width: calc(16.66% - 33.33px);
}

.items .item h3 {
    font-size: 1.25rem;
}

.relative {
    position: relative;
}

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

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

.swiper-button-prev,
.swiper-button-next {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 50%;
    z-index: 99;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0;
    transform: translateY(-50%);
    border-radius: 99px;
    background: url('../images/arrow-left-white.svg') no-repeat center / 18px 18px;
    background-color: var(--primary);
}

.swiper-button-next {
    background-image: url('../images/arrow-right-white.svg');
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: var(--dark);
}

.swiper-button-lock {
    opacity: 0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: '';
    font-size: 34px;
    font-weight: 400;
}

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

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

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

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

.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -30px;
}

.swiper-pagination-bullet {
    background-color: var(--primary);
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 8px;
    transition: all 0.4s;
    border-radius: 10px;
}

.swiper-pagination-bullet-active {
    background-color: var(--gold);
    /* width: 32px; */
}

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

/* LOADER */

.weLoveSEO {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
    font-size: 2px;
    color: #292929;
}

.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.75s;
}

.loader.end {
    opacity: 0;
}

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

.bgshape {
    position: absolute;
    z-index: -1;
    width: 40vw;
    opacity: 0.25;
}

.bgshape.bottom.left {
    bottom: -10vw;
    left: -10vw;
}

.bgshape.bottom.right {
    bottom: -10vw;
    right: -10vw;
}

.bgshape.top.left {
    top: -10vw;
    left: -10vw;
}

.bgshape.top.right {
    top: -10vw;
    right: -10vw;
}

/* HERO */

.hero {
    width: 100vw;
    position: relative;
    z-index: 2;
    margin: 0;
    margin-top: 8vw;
    padding: calc(7vw + 70px) clamp(20px, 9vw, 120px) 80px;
    background-color: var(--light);
}

.hero h2 {
    margin-bottom: 1.75rem;
    text-transform: uppercase;
    text-align: left;
    font-size: 2.75rem;
    font-weight: 700;
}

.hero .content {
    max-width: 550px;
}

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

.hero .right img {
    width: 100%;
    height: 550px;
    object-fit: contain;
}

.hero .swiper-button-prev {
    left: -6.5vw;
}

.hero .swiper-button-next {
    right: -6.5vw;
}

.about .bgshape {
    filter: grayscale(1);
    opacity: 0.07;
}

.about .title,
.about h4 {
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.about h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about h4 {
    color: var(--primary);
}

.about .content a:not(.primary-link) {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.about-2 {
    padding-bottom: 80px;
}

.about-2 h3 {
    margin-bottom: 1.75rem;
}

.about-2 h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 6px;
    background-color: var(--primary);
    margin-top: 1.25rem;
    border-radius: 2px;
}

.banner {
    padding: 80px clamp(20px, 5vw, 80px);
}

.banner .small-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.banner h3 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

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

.services {
    background-color: var(--light);
    padding: 80px clamp(20px, 5vw, 80px);
}

.services .desc {
    margin: 40px auto;
    text-align: center;
    max-width: 750px;
}

.services .item,
.products .item {
    border-radius: 20px;
    border: 3px solid var(--gold);
    overflow: hidden;
    height: 400px;
    position: relative;
}

.products .item {
    background-color: var(--dark);
    height: 340px;
}

.products .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 300px;
    width: 300px;
    transform: translate(-30%, -30%);
    background: url('../images/bgshape.svg') no-repeat center / contain;
}

.services .item .layer,
.products .item .layer {
    z-index: 0;
    background: linear-gradient(0deg, #5D21BD, #2B0F5700);
}

.services .item img.bg {
    transition: transform 0.7s cubic-bezier(0, 0.69, 0.4, 1);
}

.services .item:hover img.bg {
    transform: scale(1.05);
}

.products .image {
    position: absolute;
    top: 50px;
    width: calc(100% - 60px);
    height: 180px;
    object-fit: contain;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

.services .item .content,
.products .item .content {
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
    padding: 20px;
    pointer-events: none;
    transform: translateY(4rem);
    transition: transform 0.7s cubic-bezier(0, 0.69, 0.4, 1);
    z-index: 2;
}

.services .item:hover .content,
.products .item:hover .content {
    transform: translateY(0);
}

.services .item .content a,
.products .item .content a {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    pointer-events: auto;
}

.services .item .content .link,
.products .item .content .link {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gold);
    width: 3rem;
    height: 3rem;
    border-radius: 99px;
    margin: 0 auto;
    margin-top: 2rem;
    transition: transform 0.7s cubic-bezier(0, 0.69, 0.4, 1);
    transform: scale(0.8);
}

.services .item:hover .content .link,
.products .item:hover .content .link {
    transform: scale(1) rotate(-45deg);
}

.products .item .content .link {
    margin-top: 1.5rem;
}

.products .item .content .link img {
    width: 1.5rem;
    height: auto;
}

.products .swiper-button-next,
.products .swiper-button-prev {
    top: 0;
    transform: none;
    right: 0;
    background-color: var(--gold);
}

.products .swiper-button-prev {
    left: auto;
    right: 3.75rem;
}

.products .swiper-pagination {
    top: 0.75rem;
    bottom: auto;
    width: fit-content;
    height: fit-content;
    left: auto;
    right: 7.75rem;
}

.products .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

.products .swiper-pagination-bullet-active {
    width: 32px;
}

.booking h3 {
    font-size: 1.5rem;
    font-weight: 650;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary);
}

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

.booking .steps {
    padding: 0;
}

.booking .steps h3 {
    margin-bottom: 70px;
    font-weight: 700;
}

.booking .steps .nav-link {
    font-size: 1.125rem;
    padding: 0.75em 1.25em 0.75em 4em;
    margin-bottom: 1.5em;
    width: 19em;
    position: relative;
    text-align: left;
    color: white;
    background-color: var(--primary);
    font-weight: 600;
    border-radius: 99px;
    white-space: nowrap;
    cursor: default;
}

.booking .steps .nav-link.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.booking .steps .nav-link:not(:last-child)::after {
    content: '';
    display: block;
    position: absolute;
    height: 1.9375em;
    width: 2px;
    background-color: var(--gold);
    top: 100%;
    left: 1.5em;
}

.booking .steps .nav-link .number {
    position: absolute;
    left: 0;
    top: 0;
    width: 3em;
    height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 99px;
    background-color: var(--gold);
}

.booking .selector {
    background-color: var(--light);
    padding: 30px 40px;
    border-radius: 20px;
}

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

.booking .buttons .primary-link {
    padding-left: 2em;
    padding-right: 2em;
    margin: 0;
}

.booking .buttons .primary-link:hover {
    background-color: var(--dark);
    border-color: var(--dark);
}

/* LOCATION */

/* .booking .step.location {
    margin: 0 auto;
    max-width: 27rem;
} */

.booking .desc {
    margin-bottom: 24px;
}

.booking .step.location .list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.booking .step.location .item {
    display: flex;
    width: calc(100% / 3 - 11px);
}

.booking .step.location .item input {
    width: 1px;
    height: 1px;
    opacity: 0;
    margin: 0;
    display: inline;
}

.booking .step.location .item label {
    padding: 10px 12px;
    font-size: 15px;
    border: 2px solid #AAA;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    margin-bottom: 0;
    text-align: center;
}

.booking .step.location .item label:hover {
    border-color: var(--gray);
}

.booking .step.location .item input:checked+label {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.booking .step.location .other-buttons {
    border-top: 2px solid #D6D6D6;
    margin-top: 30px;
    padding-top: 20px;
}

.booking .step.location .other-buttons h4 {
    text-align: center;
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: -0.25rem;
}

/* COWORKERS */

.booking .step.coworker .items {
    gap: 20px;
}

.booking .step.coworker .item {
    width: calc(100% / 3 - 14px);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.booking .step.coworker .item input {
    width: 1px;
    height: 1px;
    opacity: 0;
    margin: 0;
    display: inline;
}

.booking .step.coworker .item label {
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    padding: 12px;
    border-radius: 8px;
    border: 2px solid transparent;
    margin-bottom: 0;
    flex: 1;
}

.booking .step.coworker .item input:checked+label {
    border-color: var(--primary);
    background-color: #F9F9FF;
}

.booking .step.coworker .item img {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    object-fit: cover;
    margin-bottom: 15px;
}

.booking .step.coworker .item h5 {
    margin-bottom: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
}

.booking .step.coworker .item span {
    font-size: 0.9375rem;
    color: #484848;
    padding-bottom: 2px;
    font-weight: 500;
}

/* SERVICES */

.booking .services {
    padding: 0;
}

.booking .services .list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: fit-content;
    margin: 20px auto 30px;
    padding: 0;
    background-color: transparent;
}

.booking .services .form-check {
    width: fit-content;
    margin: 0 !important;
}

.booking .form-check-input+label {
    font-size: 1.0625rem;
    max-width: 100%;
}

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

/* CALENDAR */


.booking .step.date {
    position: relative;
    max-width: 550px;
    margin: 0 auto;
}

.booking .step.date h3 {
    height: 4rem;
    margin-bottom: 0;
}

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

.booking th {
    font-weight: 500;
    font-size: 1rem;
    color: var(--primary);
    border-bottom: 2px solid #D6D6D6;
    text-align: center;
}

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

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

.booking td a {
    color: var(--primary);
    font-weight: bold;
}

.booking .arrow {
    position: absolute;
    top: 15px;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0, 0.6, 0.4, 1);
    background-color: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking .arrow:hover {
    transform: scale(1.2);
}

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

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

.booking .arrow svg {
    fill: white;
}

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

.booking .daycontent .availability {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #2e7d32;
    position: absolute;
    margin-left: 25px;
    margin-top: 20px;
    pointer-events: none;
}

.booking .daycontent.fullday .availability {
    background: #dc3737;
}

.booking .daycontent:hover,
.booking .daycontent:focus,
.booking .daycontent.selected {
    background: var(--primary);
    color: #fff;
}

.booking .daycontent.selected {
    font-weight: 600;
}

.booking .calendarinfo {
    text-align: left !important;
    padding-left: 0;
    margin-top: 0;
}

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

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

.booking .calendarinfo li .availability {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #2e7d32;
    position: absolute;
    margin-left: 12px;
    margin-top: 12px;
}

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

.booking .calendarinfo li .icon {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #FCFCFC;
    border-radius: 10px;
    margin-left: -30px;
    margin-top: 2px;
}

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

/* TIMES */

.booking .step.time {
    max-width: 600px;
    margin: 0 auto;
}

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

.booking .times>div {
    width: calc(14.28% - 9px);
    padding: 8px;
    border-radius: 5px;
    background-color: #FAFAFA;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s;
    font-weight: 500;
}

.booking .times .inactive {
    text-decoration: line-through;
    color: #A8A8A8;
}

.booking .times .selected,
.booking .times .free:hover {
    background-color: var(--primary);
    color: #fff;
}

.booking .times .selected {
    font-weight: 500;
}

.booking .times button {
    color: var(--primary);
    font-weight: 500;
}

/* FORM */

.booking input,
.booking select,
.booking textarea {
    border: 1px solid var(--dark);
    color: var(--dark);
    margin-bottom: 0;
    background-color: transparent;

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

.booking .infos {
    padding: 25px;
    background: #E2E2E8;
    margin-bottom: 15px;
    border-radius: 20px;
}

.booking .infos h3 {
    display: block;
    text-align: left;
    margin-bottom: 1rem;
    height: auto;
}

.booking .infos p {
    margin-bottom: 0.25rem;
}

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

.booking .form,
.booking .step.summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.booking .step.summary h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    width: 100%;
}

.booking .form-group {
    position: relative;
    width: 100%;
    margin: 0 !important;
}

.booking .form-group.half {
    width: calc(50% - 0.375rem);
}

.booking .form-group label {
    position: absolute;
    top: 0.8125rem;
    left: 1.25rem;
    color: var(--dark);
    pointer-events: none;
    transition: all 0.25s;
    background-color: var(--light);
    border-radius: 6px;
}

.booking .form-group input:focus+label,
.booking .form-group input:not(:placeholder-shown)+label,
.booking .form-group textarea:focus+label,
.booking .form-group textarea:not(:placeholder-shown)+label,
.booking .form-group select:focus+label,
.booking .form-group select:not([value=""])+label {
    top: 0;
    left: 1rem;
    font-size: 0.875rem;
    padding: 0.0625rem 0.25rem;
    transform: translateY(-50%);
}

.booking .coupon-code-group {
    display: flex;
    gap: 10px;
    margin-top: 0.375rem !important;
}

.price-details {
    margin: 1rem 0;
    width: 100%;
}

.price-details .line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.price-details .line.original-price,
.price-details .line.discount {
    display: none;
}

.booking .price-details .line h4 {
    width: auto;
    margin: 0;
    font-size: 1.25rem;
}

.options {
    display: block;
}

.options .option {
    display: flex;
}

.options .option:not(:first-child) {
    margin-top: 15px;
}

.options .option input {
    width: 1px;
    height: 1px;
    opacity: 0;
    margin: 0;
    display: inline;
}

.options .option label {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 16px;
    border: 2px solid #AAA;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: white;
    border-radius: 8px;
    margin-bottom: 0;
}

.options .option input:checked + label {
    border-color: var(--primary);
    background-color: #F9F9FF;
}

.options .option .icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
    object-fit: contain;
}

.options .option .name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.options .option .desc {
    font-size: 0.875rem;
}

.options input {
    width: auto;
}

@media (max-width: 991px) {

    .booking h3 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

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

    .booking .steps .nav-link {
        margin: 0 auto 12px;
        padding: 0.5rem 1rem 0.5rem 3rem;
        font-size: 0.875rem;
        width: 15rem;
    }

    .booking .steps .nav-link:not(:last-child)::after {
        height: 13px;
        left: 1.25em;
    }

    .booking .steps .nav-link .number {
        width: 2.3125rem;
        height: 2.3125rem;
        font-size: 0.875rem;
    }

    .booking .selector {
        padding: 20px;
    }

    .booking .buttons {
        gap: 12px;
        margin-top: 24px;
    }

    .booking .step.location .list {
        gap: 10px;
    }

    .booking .step.location .item {
        width: 100%;
    }

    .booking .step.location .item label {
        font-size: 0.875rem;
    }

    .booking .step.location .other-buttons h4 {
        font-size: 1.125rem;
    }

    .booking .step.location .other-buttons .buttons {
        flex-wrap: wrap;
    }

    .booking .step.location .other-buttons .buttons .primary-link {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .booking .step.coworker .items {
        gap: 10px;
    }

    .booking .step.coworker .item {
        width: calc(100% / 2 - 5px);
    }

    .booking .step.coworker .item h5 {
        font-size: 0.9375rem;
    }

    .booking .step.coworker .item span {
        font-size: 0.8125rem;
    }

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

    .booking .arrow {
        width: 35px;
        height: 35px;
    }

    .booking .step.date .primary-link.mb-4 {
        max-width: 100%;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
        font-size: 0.875rem;
    }

    .booking .table td,
    .booking .table th {
        padding: 0.5rem 0.375rem;
        font-size: 0.875rem;
    }

    
    .booking .daycontent {
        width: 30px;
        height: 30px;
        font-size: 0.875rem;
    }
    
    .booking .times>div {
        width: calc(25% - 8px);
    }

    .booking .infos {
        padding: 18px;
        margin-bottom: 10px;
    }

    .booking .form h4 {
        font-size: 1.0625rem;
        margin-bottom: 0.25rem;
    }

    .booking .form-group.half {
        width: 100%;
    }

    .booking .form-group label {
        font-size: 0.875rem;
        top: 0.625rem;
        left: 1rem;
    }

    .booking .form-group input:focus+label,
    .booking .form-group input:not(:placeholder-shown)+label,
    .booking .form-group textarea:focus+label,
    .booking .form-group textarea:not(:placeholder-shown)+label,
    .booking .form-group select:focus+label,
    .booking .form-group select:not([value=""])+label {
        font-size: 0.75rem;
        left: 0.75rem;
    }

    .options .option:not(:first-child) {
        margin-top: 12px;
    }

    .options .option label {
        gap: 15px;
        padding: 10px 14px;
    }

    .options .option .icon {
        width: 48px;
        min-width: 48px;
        height: 48px;
    }

    .options .option .name {
        font-size: 0.875rem;
        margin-bottom: 0;
    }

    .options .option .desc {
        font-size: 0.6875rem;
    }

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

.reviews {
    padding: 80px clamp(20px, 5vw, 80px);
    background-color: var(--light);
    margin-top: 80px;
}

.reviews .bgshape {
    filter: brightness(0) invert(1);
    z-index: 0;
    opacity: 1;
    width: 33vw;
}

.reviews .small-container {
    max-width: 1000px;
    margin: 0 auto;
}

.reviews .swiper-slide {
    background-color: white;
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 60px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
}

.reviews .swiper-slide h5 {
    margin-top: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--primary);
    margin-bottom: 0;
}

.reviews .swiper-button-prev {
    left: 0;
    transform: translate(-50%, -50%);
}

.reviews .swiper-button-next {
    right: 0;
    transform: translate(50%, -50%);
}

.news .item {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
}

.news .item .image {
    display: block;
    height: 250px;
    overflow: hidden;
}

.news .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0, 0.69, 0.4, 1);
}

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

.news .item .content {
    padding: 20px;
    padding-bottom: 64px;
    flex: 1;
}

.news .item .date {
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--primary);
}

.news .item h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.news .item .link {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.news .item .link:hover {
    background-color: var(--gold);
}

.news .item .link svg {
    width: 17px;
    margin-left: 2px;
    transform: rotate(-45deg);
}

.news .item .link svg path {
    stroke: white;
}

.contact {
    padding: 80px clamp(20px, 5vw, 80px);
    margin-top: 80px;
    position: static;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.contact .small-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 0 40px #C8AA77AA;
    padding: 60px 80px;
}

.contact .infos p {
    margin-bottom: 0.25rem;
}

.contact form {
    margin-top: 40px;
}

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

input,
textarea,
select {
    padding: 0.75em 1.25em;
    outline: none;
    background-color: white;
    color: var(--dark);
    font-size: 1rem;
    width: 100%;
    resize: none;
    border-radius: 0.375rem;
    border: 2px solid var(--gold);
    font-weight: 500;
}

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

form input::placeholder,
form textarea::placeholder,
form select::placeholder {
    color: var(--dark);
    opacity: 0.5;
}

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

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

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

.form-group {
    margin-bottom: 0;
    width: 100%;
    text-align: left;
}

.form-group:first-of-type {
    margin-top: 20px;
}

.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: 14px;
    margin-bottom: 0;
    color: var(--gray);
    padding-left: 32px;
    text-align: left;
}

.form-check-input+label::before {
    content: " ";
    display: inline-block;
    vertical-align: middle;
    margin-right: 11px;
    margin-left: -32px;
    width: 22px;
    height: 22px;
    background-color: white;
    border: 2px solid var(--gold);
    border-radius: 5px;
    transition: 0.3s ease;
}

.form-check-input:checked+label::before,
.form-check.checked .form-check-input+label::before {
    background-color: var(--primary);
}

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

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

.contact .primary-link {
    margin-top: 1.25rem;
    position: relative;
    z-index: 2;
    border-width: 1px;
}

/* FOOTER */

footer {
    position: relative;
}

footer .content {
    padding: 80px clamp(20px, 5vw, 80px);
    color: white;
    background: var(--dark);
}

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

footer .item .logo {
    width: 100%;
    max-width: 200px;
}

footer .item {
    display: flex;
    flex-direction: column;
    min-width: 17%;
    max-width: 22%;
}

footer .item h3 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

footer .item p,
footer .item a {
    display: block;
    width: fit-content;
    color: white;
    margin-bottom: 0;
    font-weight: 500;
}

footer .item a:hover {
    color: #fff7ba;
}

footer ul {
    margin-bottom: 0;
}

footer li {
    margin-bottom: 0.5rem;
    list-style: none;
    margin-left: 0;
}

footer .socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

footer .socials img {
    width: 2rem;
    height: 2rem;
}

footer hr {
    border-top: 1px solid var(--gold);
    margin: 20px 0;
    width: 100%;
}

footer .raccoon {
    text-align: center;
    margin-top: 60px;
    background-color: var(--primary);
    border-radius: 99px;
    padding: 20px;
}

footer .raccoon span,
footer .raccoon a {
    color: white;
    font-size: 1.125rem;
    font-weight: 550;
}

footer .raccoon span::after {
    content: '|';
    margin: 0 0.75rem;
}

/* ALOLDALAK */

.sub-hero {
    padding: calc(7vw + 160px) clamp(20px, 9vw, 120px) 150px;
}

.sub-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0;
}

section.nav {
    line-height: 1.15;
    margin-bottom: -20px;
    padding: 40px clamp(20px, 5vw, 80px) 2px;
    z-index: 99;
}

.nav a:after {
    content: '/';
    margin-left: 0.5rem;
    margin-right: 0.375rem;
}

.nav a:last-of-type {
    font-weight: 600;
}

.nav a:last-of-type:after {
    content: '';
}

.marker {
    margin-top: -11vw;
    height: 11vw;
}

.services.subpage {
    background-color: transparent;
}

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

.reviews + .contact {
    margin-top: 0;
}

.service-hero {
    padding: calc(7vw + 200px) clamp(20px, 9vw, 120px) 200px;
    background-color: #000;
}

.service-hero .bg {
    opacity: 0.5;
}

.service-hero .bgshape {
    filter: brightness(0) invert(1);
    z-index: 0;
    opacity: 0.2;
    width: 32vw;
}

.service-hero h1 {
    font-size: 3.75rem;
    color: white;
    margin-bottom: 0;
}

.banner.subpage {
    margin-top: 80px;
}

.news {
    overflow: visible;
}

.services.subpage {
    background-color: transparent;
    padding-bottom: 0;
}

.news.media .item .content {
    padding: 24px;
}

.news.media .item .content h3 {
    text-align: center;
    margin-bottom: 0;
}

.news.media .item:hover img {
    transform: scale(1.05);
}

@media (max-width: 1279px) {
    
    .navbar .top,
    .navbar .logo,
    .navbar .links {
        display: none;
    }
    
    .navbar .mobile-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 70px;
        padding: 0 20px 0 17px;
    }

    .navbar .mobile-logo {
        height: 40px;
    }

    .navbar .mobile-logo img {
        height: 100%;
    }

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

    .search {
        width: 100%;
        max-width: 400px;
        margin-bottom: 10px;
    }

    .search .input-div {
        background-color: white;
    }

    .search .input-div input {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
        width: 100%;
        background-color: white;
        color: var(--dark);
    }

    .search .input-div button {
        height: 2.5625rem;
        width: 2.5625rem;
    }

    .search .input-div button img {
        width: 1rem;
    }

    .search .results {
        max-height: 70vh;
    }

    .search .results.active {
        top: calc(100% + 20px);
    }

    .search .results .item {
        gap: 14px;
        padding: 14px;
    }

    .search .results .item img {
        width: 56px;
        min-width: 56px;
        height: 56px;
    }

    .search .results .item h4 {
        font-size: 0.9375rem;
        margin-bottom: 0.25rem;
    }

    .search .results .item p {
        font-size: 0.8125rem;
    }

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

    .desktop-modal.active {
        transform: translateY(33px);
    }

    .desktop-modal::before {
        left: auto;
        transform: none;
        right: 36px;
    }

    .desktop-modal .cancel {
        top: 14px;
    }

    #sidebar .navbar-dropdown {
        top: 0;
        background-color: #FFFFFFEF;
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
        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: 500;
        padding: 0.75rem 0;
        text-align: center;
    }

}

@media (max-width: 767px) {

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
        margin-bottom: 1.75rem;
    }

    h2:not(.article h2, .hero h2) {
        font-size: 1.75rem;
        margin: 0 auto 2.5rem;
    }

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

    h4 {
        font-size: 1.125rem;
    }

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

    section {
        padding: 40px 20px 0;
    }

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

    .article h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .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 {
        margin: 1rem 0;
        max-height: 450px;
    }

    .primary-link {
        font-size: 0.9375rem;
    }

    .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 .item,
    .items.two .item {
        width: 100%;
    }

    .items .item h3 {
        font-size: 1.125rem;
        margin-bottom: 1.125rem;
    }

    .swiper-button-prev, .swiper-button-next {
        width: 42px;
        height: 42px;
        background-size: 16px;
    }

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

    .bgshape {
        width: 60vw;
    }

    .hero {
        margin-top: 70px;
    }

    .hero.main-hero {
        padding: 40px 20px 60px;
    }

    .hero .right img {
        max-width: 400px;
        max-height: 300px;
    }

    .hero h2 {
        font-size: 1.625rem;
        margin-bottom: 1.125rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero .swiper-button-prev, .hero .swiper-button-next {
        top: 150px;
    }

    .hero .swiper-button-prev {
        left: 0;
    }

    .hero .swiper-button-next {
        right: 0;
    }

    .hero .bgshape.bottom.right {
        bottom: auto;
        top: -10vw;
    }

    .swiper-pagination-bullets.swiper-pagination-horizontal {
        bottom: -40px;
    }

    .about .flex-content {
        flex-direction: column !important;
        gap: 20px;
    }

    .about .title,
    .about h4 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .about h3 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .about-2 h3 {
        margin-bottom: 1.25rem;
    }

    .about-2 h3::after {
        height: 5px;
        margin-top: 1rem;
    }

    .banner {
        padding: 50px clamp(20px, 5vw, 80px);
    }

    .banner h3 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
        font-weight: 700;
    }

    .banner p {
        font-size: 1.0625rem;
    }

    .services {
        padding: 50px clamp(20px, 5vw, 80px);
    }

    .services .item,
    .products .item {
        height: 340px;
    }

    .products {
        padding: 40px 36px 50px;
    }

    .products .swiper-button-next,
    .products .swiper-button-prev {
        top: calc(4rem + 200px);
    }

    .products .swiper-button-prev {
        right: auto;
        left: 0;
        transform: translate(-50%, -50%);
    }

    .products .swiper-button-next {
        right: 0;
        transform: translate(50%, -50%);
    }

    .products .swiper-pagination {
        top: calc(100% + 16px);
        right: 50%;
        transform: translateX(50%);
    }

    .reviews {
        padding: 50px 36px;
        margin-top: 50px;
    }

    .reviews .bgshape {
        width: 40vw;
    }

    .reviews .swiper-slide {
        padding: 26px 30px;
    }

    .reviews .swiper-slide h5 {
        font-size: 1rem;
    }

    .news .item h3 a {
        font-size: 1.25rem;
    }

    .news .item h3 {
        margin-bottom: 0.375rem;
    }
    
    .contact {
        padding: 40px 20px;
        margin-top: 40px;
    }

    .contact .small-container {
        padding: 30px 20px;
    }

    .contact h2:not(.article h2, .hero h2) {
        margin-bottom: 2rem;
    }

    form {
        gap: 0.625rem;
    }

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

    form input:nth-of-type(2),
    form input:nth-of-type(3) {
        width: 100%;
    }

    form select {
        background-size: 1rem;
    }

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

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

    .form-group.half {
        width: 100%;
    }

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

    footer .content {
        padding: 40px 20px;
    }

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

    footer .item {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding-right: 0;
    }

    footer .item .logo {
        width: 180px;
        margin-bottom: 0;
    }

    footer .item:first-of-type p {
        font-size: 13px;
        max-width: 200px;
    }

    footer .item h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    footer .item a,
    footer .item p {
        margin-bottom: 6px;
        font-size: 14px;
        text-align: center;
        width: 100%;
    }

    footer .socials a {
        width: fit-content;
    }

    footer .socials {
        justify-content: center;
    }

    footer .raccoon {
        margin-top: 30px;
        border-radius: 20px;
    }

    footer .raccoon * {
        display: block !important;
        width: 100% !important;
        margin-bottom: 0;
        text-align: center;
        font-size: 1.0625rem;
    }
    
    footer .raccoon span {
        margin-bottom: 14px;
    }

    footer .raccoon span::after {
        display: none;
        margin-bottom: 16px;
    }

    .sub-hero {
        padding: 80px clamp(20px, 5vw, 80px);
    }

    .sub-hero h1 {
        font-size: 2rem;
    }

    .sub-hero .bgshape.bottom.right {
        top: auto;
        bottom: -20vw;
        right: -20vw;
        opacity: 0.15;
    }

    section.nav {
        padding-top: 20px;
        margin-bottom: -10px;
    }

    .nav a::after {
        content: '/';
        margin-left: 0.5rem;
        margin-right: 0.25rem;
    }

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

    .service-hero {
        padding: 80px clamp(20px, 5vw, 80px);
    }

    .service-hero h1 {
        font-size: 2rem;
    }

    .banner.subpage {
        margin-top: 50px;
    }

}

@media (min-width: 768px) and (max-width: 1279px) {
    .hero {
        margin-top: 70px;
    }

    .hero.main-hero {
        padding: 40px 80px 60px;
    }

    .hero .right img {
        height: 400px;
    }

    .hero .swiper-button-prev {
        left: -64px;
    }

    .hero .swiper-button-next {
        right: -64px;
    }

    .hero h2 {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 1.125rem;
    }

}

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


    section {
        padding: 80px 40px 0;
    }

    h2 {
        font-size: 3.25rem;
        margin-bottom: 3rem;
    }

    .flex-content {
        gap: 40px;
    }

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

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

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

    h2 {
        font-size: 3rem;
        margin-bottom: 2.5rem;
    }

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




}

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

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

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

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

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

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