:root {
    --bg-body: linear-gradient(45deg, #ebf3f8, #dfe6e9 14%, #efe2da 45%, #dfe6e9 85%, #ebf3f8);
    --bg-1: linear-gradient(84.17deg, #E0E5E8 -5.08%, rgba(255, 255, 255, 0) 41.02%), linear-gradient(242.13deg, #E6EEF2 1.91%, rgba(204, 204, 204, 0) 23.81%), linear-gradient(287.83deg, #E5EDF1 5.73%, #ECE3DE 81.19%);
    --color-white: #fff;
    --color-gold: #b39658;
    --font-roboto:  "Roboto Condensed", "Arial", sans-serif;
}

@font-face {
    font-style: normal;
    font-weight: 300;
    font-family: "Roboto Condensed";

    font-display: swap;
    src:
        url("fonts/RobotoCondensed-Light.woff2") format("woff2");
}

@font-face {
    font-style: normal;
    font-weight: 400;
    font-family: "Roboto Condensed";

    font-display: swap;
    src:
        url("fonts/RobotoCondensed-Regular.woff2") format("woff2");
}

@font-face {
    font-style: normal;
    font-weight: 700;
    font-family: "Roboto Condensed";

    font-display: swap;
    src:
        url("fonts/RobotoCondensed-Bold.woff2") format("woff2");
}

@keyframes mpulse {
    0%
    {
        transform: scale( .85 );
    }
    50%
    {
        transform: scale( 1.3 );
    }
    100%
    {
        transform: scale( .85 );
    }
}

@keyframes e {
    0%{
        -webkit-transform:translateX(-100%);
        transform:translateX(-100%)
    }
    to{
        -webkit-transform:translateX(0);
        transform:translateX(0)
    }
}

@keyframes f{
    0%{
        -webkit-transform:translateX(100%);
        transform:translateX(100%)
    }
    to{
        -webkit-transform:translateX(0);
        transform:translateX(0)
    }
}

@keyframes up{
    0% {
        -webkit-transform:translate(0, 0);
        transform:translate(0, 0)
    }

    100% {
        -webkit-transform:translate(0, -100%);
        transform:translate(0, -100%);
    }
}

@keyframes u {
    0%{
        -webkit-transform:translateY(100%);
        transform:translateY(100%);
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100%{
        -webkit-transform:translateY(0);
        transform:translateY(0);
        opacity: 1;
    }
}

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

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

html {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    font-family: "Times New Roman", "Times", serif;
    color: #000;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: 100%;
    background: var(--bg-body);
}

a {
    color: #000;
    text-decoration: none;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

textarea {
    resize: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    margin: 0;

    appearance: none;
}

input[type="number"] {
    appearance: textfield;
}

select,
textarea,
input:matches([type="email"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="text"],
[type="url"]) {
    appearance: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    appearance: none;
}

.wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
}

.wrapper main {
    flex-grow: 1;
}

.visually-hidden {
    position: absolute;

    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;

    white-space: nowrap;

    border: 0;

    clip: rect(0 0 0 0);
    clip-path: inset(100%);
}

.simplebar-track::after{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background-color: #000;
}

.simplebar-scrollbar:before {
    left: 3px;
    right: 3px;
    opacity: 1 !important;
    border-radius: 16px;
    width: 5px;
}

.simplebar-content {
  padding-right: 20px !important; 
}

.container {
    position: relative;
    width: 63%;
    margin: 0 auto;
}

@media(width <1079px) {
    .container {
        width: 100%;
        padding: 15px;
    }
}

.title {
    font-family: "Times New Roman", "Times", serif;
    margin: 0;
    color: rgb(14, 0, 32);
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    line-height: 1;
}

.title--h1 {
    font-size: 70px;
}

.title--h2 {
    font-size: 42px;
}

.title--h3 {
    font-size: 34px;
}

.title--h4 {
    font-size: 28px;
    font-weight: 600;
}

@media(max-width: 1079px) {
    .title--h1 {
        font-size: 50px;
    }
    
    .title--h2 {
        font-size: 30px;
    }
}

.breadcrumbs {
    position: absolute;
    width: 63%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    margin: 30px 0;
}

.breadcrumbs-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumbs li {
    display: inline-block;
}

.breadcrumbs a {
    display: inline-block;
    font-size: 14px;
    line-height: 19px;
    font-weight: 700;
    color: #A3A3A3;
    transition: color 0.3s ease;
    padding: 10px 0;
}

.breadcrumbs a:hover {
    color: var(--color-gold);
}

.breadcrumbs li::after {
    content: "-";
    padding: 0 2px;
}

.breadcrumbs li:last-child a {
    pointer-events: none;
    color: var(--color-gold);
}

.breadcrumbs li:last-child::after{
    display: none;
}

@media(max-width:1079px) {
    .breadcrumbs {
        display: none;
    }
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px 30px;
    min-height: 40px;
    overflow: hidden;
    font-size: 20px;
    line-height: 1;
    letter-spacing: -1px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-roboto);
    transition: background-color .3s ease, color .3s ease, border-color .3s ease;
    outline: none;
    cursor: pointer;
    color: var(--color-gold);
    background-color: transparent;
    border: 2px solid var(--color-gold);
    border-radius: 40px;
    text-align: center;
    width: fit-content;
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn:hover,
.btn:focus {
    color: #000;
    background-color: var(--color-gold);
}

.btn--gold {
    color: #000;
    background-color: var(--color-gold);
}

.btn--gold:hover,
.btn--gold:focus {
    background-color: #000;
    color: var(--color-gold);
}

.btn--small {
    border-width: 1px;
    font-size: 19px;
    letter-spacing: 0.01em;
    padding: 7px 10px;
    min-height: 35px;
}

.btn--t-black {
    color: #000;
}

.btn--black {
    background-color: #000;
    color: var(--color-gold);
}

.btn--black:hover,
.btn--black:focus {
    color: #000;
    background-color: var(--color-gold);
}

.btn--circle {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    padding: 15px;
}

.btn--circle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #b39658;
    width: 70%;
    height: 70%;
    opacity: 0;
    border-radius: 50%;
    transition: opacity 0.3s ease;
}

.btn--circle:hover,
.btn--circle:focus {
    color: #efe2da;
    background-color: transparent;
}

.btn--circle:hover::after,
.btn--circle:focus::after {
    opacity: 1
}
.btn--shine {
    position: relative;
    overflow: hidden;
    background: rgba(179, 150, 88, 0.8);
}

.btn--shine::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -150%;
    width: 300%;
    height: 300%;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(179, 150, 88, 0.6) 45%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(179, 150, 88, 0.6) 55%,
        transparent 70%
    );
    transform: rotate(25deg);
    animation: shine 3s infinite;
}

.btn--shine .btn-text {
    position: relative;
    z-index: 2;
}


@keyframes shine {
    0% {
        left: -150%;
    }
    60% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}

.left {
    width: 18.5%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding: 20px 20px 100px;
    z-index: 5;
    -webkit-animation: e .5s ease-out;
    animation: e .5s ease-out;

    display: flex;
    flex-direction: column;
}

@media (width <1079px) {
    .left {
        position: relative;
        width: 100%;
        height: auto;
        align-items: center;
        padding: 0;
        z-index: 1;
    }
}

.center {
    position: relative;
    width: 63%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 5;
}

@media (max-width: 1079px) {
    .center {
        width: 100%;
        padding: 15px;
        min-height: 0;
    }
}

.right {
    width: 18.5%;
    position: fixed;
    right: 0;
    top: 0;

    padding: 40px 50px 20px 20px;
    z-index: 4;
    animation: f .5s ease-out;
}

@media(max-width: 1600px) {
    .right {
        padding: 20px;
    }
}

@media(max-width: 1079px) {
    .right {
        position: relative;
        width: 100%;
        padding: 75px 0 0;
        animation: none;
        z-index: 50;
    }
}

.logo,
.logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.3s ease;
}

.logo a {
    width: 100%;
}

.logo-img {
    width: 85%;
    color: #0f0020;
    margin: 0 0 10px;
}

.logo-img svg,
.logo-img img {
    width: 100%;
    height: auto;
}

.logo-text {
    text-align: center;
    font-size: 22px;
    text-transform: uppercase;
    width: 100%;
    height: 40px;
    line-height: 0.95;
    white-space: pre-wrap;
    font-family: var(--font-roboto);
}

.logo a:hover {
    opacity: 0.7;
}

@media(max-width: 1366px) {
    .logo-text {
        font-size: 18px;
    }
}

@media(max-width: 1079px) {
    .logo-img {
        width: 260px;
    }
}

.left-menu {
    font-size: 15px;
    font-family: var(--font-roboto);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin: auto 0;
    justify-self: center;
    counter-reset: num;
    list-style: none;
}

.left-menu li {
    counter-increment: num;
    position: relative;
    margin-bottom: 8px;
    min-height: 34px;
    display: flex;
    align-items: center;
}

.left-menu a {
    display: inline-block;
    width: 100%;
    height: 100%;
    transition: color 0.3s ease;
}

.left-menu a:hover,
.left-menu a:focus,
.left-menu a.active:before {
    color: var(--color-gold);
}

.left-menu li a:before {
    content: counter(num);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-100%,-50%);
    padding-right: 10px;
    font-size: 36px;
    font-family: "Times New Roman", "Times", serif;
    font-weight: 700;
    transition: color 0.3s ease;
}

.left-menu li:nth-child(-n+9) a:before {
    content: "0" counter(num);
}

@media(max-width: 1079px) {
    .left-menu {
        margin: 20px 0;
    }
    
    .about .left-menu {
        display: none;
    }
}

.menu {
    position: fixed;
    bottom: 40px;
    line-height: 50px;
    z-index: 100;
    -webkit-animation: e .5s ease-out;
    animation: e .5s ease-out;
}

.menu-btn {
    display: flex;
    align-items: center;
    border: none;
    background-color: transparent;
    padding: 0;
    cursor: pointer;
    font-family: "Times New Roman";
}

.menu-btn-icon {
    width: 25px;
    height: 50px;
    margin-right: 25px;
}

.menu-btn-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menu-burger {
    position: fixed;
    top: 20px;
    right: 10px;
    display: none;
    justify-content: center;
    align-items: center;
    width: 41px;
    height: 41px;
    border-radius: 50%;
    background-color: var(--color-gold);
    color: #e4e6e6;
    border: none;
    padding: 0;
    cursor: pointer;
}

.menu-burger svg {
    width: 20px;
    height: 20px;
}

.menu-btn-text {
    font-size: 33px;
    font-weight: bold;
    letter-spacing: -0.01em;
    text-transform: uppercase;

    animation: mpulse 2s infinite;
}

@media(max-width: 1079px) {
    .menu {
        position: absolute;
        bottom: auto;
        top: 20px;
        right: 14px;
        left: auto;
        animation: none;
    }

    .menu-btn-text {
        display: none;
    }

    .menu-btn-icon {
        display: none;
    }

    .menu-burger {
        display: flex;
    }
}

@media(min-width: 1080px) {
    .menu-burger {
        display: none;
    }
}

.menu-block {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    height: 100vh;
    width: 100%;
    max-width: 458px;
    background-color: #0e0020;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 101;
    font-family: var(--font-roboto);
    transform: none;
    transition: transform 0.3s ease; 
}

.menu-block::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.menu-block.up-position {
    animation: up 0.5s ease-in;
    animation-fill-mode: both;
    pointer-events: none;
}

.menu-block.left-position {
    transform: translateX(-100%);
    pointer-events: none;
}

.menu:hover .menu-block.left-position {
    transform: translateX(0);
    pointer-events: all;
}

.menu-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    max-width: 458px;
    padding: 20px 0;
    margin: auto 0;
}

.menu-close {
    height: 100%;
    display: flex;
    align-items: center;
    width: 83px;
    border: none;
    padding: 0;
    background-color: transparent;
    border-right: 1px solid var(--color-gold);
    justify-content: center;
    cursor: pointer;  
}

.menu .logo {
    align-self: center;
}

.menu .logo a {
    color: var(--color-gold);
}

.menu-links {
    display: flex;
    flex-direction: column;
    padding: 0 0 0 65px;
}

.menu-links a {
    position: relative;
    font-family: var(--font-roboto);
    font-weight: 300;
    font-size: 22px;
    line-height: 45px;
    text-transform: uppercase;
    transition: all .2s linear;
    color: var(--color-white);
}

.menu-links a.active {
    color: var(--color-gold);
}

.menu-links a:after {
    content: "";
    visibility: hidden;
    position: absolute;
    width: 15px;
    height: 50px;
    top: 0;
    right: -1px;
    transform: scaleX(-1);
    transition: background-color .2s linear;
    background-color: #000;
    clip-path: polygon(29% 28%,15% 17%,0 0,0 100%,15% 83%,29% 72%,49% 62%,71% 55%,100% 50%,71% 45%,49% 38%);
}

.menu-links a:hover {
    color: var(--color-gold);
}

.menu-links a:hover::after {
    visibility: visible;
    background-color: #e9dfd8;
}

.menu-call {
    align-self: center;
}

@media(width <1079px) {
    .menu-close {
        position: absolute;
        top: 15px;
        right: 15px;
        height: 40px;
        width: 40px;
        border-right: none;
    }
}

.header {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: var(--font-roboto);
}

.header .social {
    margin-bottom: 5px;
}

.social-list {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 31px;
    height: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-gold);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    transition: background-color 0.3s ease;
}

.social-link svg {
    width: 100%;
    height: auto;
    color: var(--color-gold);
    transition: color 0.3s ease;
}

.social-link svg .border {
    color: var(--color-gold);
}

.social-link svg .icon {
    color: var(--color-gold);
}

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

.social-link:hover svg .icon {
    color: #fff;
}

.header-phones {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.header-phones a {
    display: block;
    font-family: var(--font-roboto);
    font-size: 20px;
    font-weight: bold;
    letter-spacing: -0.01em;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.header-phones a:hover {
    color: var(--color-gold);
}

.header-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.header-btns .btn {
        width: 100%;
}

@media(max-width: 1079px) {
    .header .social {
        display: none;
    }

    .header-phones {
        position: absolute;
        left: 14px;
        top: 24px;
        right: auto;
        z-index: 100
    }

    .header-phones a {
        display: none;
    }
    
    .header-phones a:first-child {
        display: block;
        font-size: 24px;
    }

    .header-btns {
        position: absolute;
        right: 14px;
        top: 75px;
    }

    .header-btns .btn {
        font-size: 16px;
        width: fit-content;
        align-self: flex-end;
    }

    .right .wave {
        display: none;
    }
}

@media(max-width: 768px) {
    .header-btns {
        top: 90px;
    }
    
    [data-callback]{
        display: none;
    }

    .right .wave {
        display: block;
    }
}

.divider {
    width: 100%;
    background-color: var(--color-gold);
    height: 1px;
    position: relative;
}

.divider:before, 
.divider:after {
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    transform: rotate(-45deg);
    content: "";
    display: block;
    position: absolute;
    top: -1.5px;
    left: 0;
}

.divider:after {
    right: 0;
    left: auto;
}

.footer {
    font-size: 18px;
    line-height: 26px;
}

.footer p {
    margin: 0;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(4, auto);
    grid-template-areas: "address tel wapp mail";
    column-gap: 20px;
    margin: 40px 0;
}

.footer-info-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-mail {
    grid-area: mail;
}

.footer-tel {
    grid-area: tel;
}

.footer-wapp{
    grid-area: wapp;
} 

.footer-address {
    grid-area: address;
    position: relative;
}

.footer-address-text {
    font-size: 15px;
    line-height: 19px;
    text-align: justify;
    color: #5B5B5B;
    width: 309px;
    min-height: 271px;
    background: #FFFFFF;
    box-shadow: 7px 11px 20px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 20px 35px;
    position: absolute;
    left: 7.3%;
    bottom: -20px;
    transform: translateY(100%);
    z-index: 10;
}

.footer-address-text p {
    margin-bottom: 26px;
}

.footer-info-item svg {
    width: 40px;
    height: 40px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-right: 10px;
}

.footer-info-text {
    font-size: 17px;
    line-height: 115%;
}

.footer-map {
    margin-bottom: 110px;
    width: 100%;
    height: 340px;
}

.footer-info a {
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: var(--color-gold);
}

.placemark-label {
    position: relative;
    z-index: 10;
    background: white;
    padding: 5px 10px;
    border-radius: 5px;
    color: black;
    font-size: 16px;
    width: 200px;
    white-space: nowrap;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.icon-pin {
    position: relative;
}

.icon-pin::after {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 240px;
    height: 100%;
    z-index: 10;
}

[class*="ymaps-2"][class*="-ground-pane"] {
    filter: grayscale(1);
    -ms-filter: grayscale(1);
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
}

.footer-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "about social contacts";
    align-items: center;
    gap: 22px;
    padding: 30px 0;
}

.footer-about {
    grid-area: about;
}

.footer .social {
    grid-area: social;
    justify-self: center;
    white-space: nowrap;
}

.footer .social-list {
    justify-content: center;
}

.footer .social-list a {
    width: 40px;
    height: 35px;
}

.footer-contacts {
    grid-area: contacts;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
    justify-content: flex-end;
}

.footer-phones a {
    font-weight: 700;
    font-size: 18px;
    line-height: 145%;
    display: block;
    transition: color 0.3s ease;
}

.footer-phones a:hover {
    color: var(--color-gold);
}

.footer .policy {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 18px;
    line-height: 145%;
    color: #B3B3B3;
    text-decoration: none;
    text-align: left;
    cursor: pointer;
}

@media(max-width: 1349px) {
    .footer-wrap {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "social contacts"
        "about about";
    }

    .footer-info {
        grid-template-columns: repeat(2, auto);
        grid-template-areas: "address tel mail"
        "address wapp mail";
        gap: 20px;
    }

    .footer-info-item {
        justify-content: flex-start;
    }
}

@media(max-width: 1079px) {
    .footer-info {
        grid-template-columns: 1fr;
        grid-template-areas: "address"
        "tel"
        "wapp"
        "mail";
    }

    .footer-address-text {
        display: none;
    }
}

@media(max-width: 768px) {
    .footer-wrap {
        grid-template-columns: 1fr;
        grid-template-areas: "contacts"
        "social"
        "about";
    }

    .footer-contacts {
        justify-content: center;
    }
    .footer .social {
        white-space: wrap;
    }
}

.section {
    position: relative;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    user-select: none;
}

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

.bg-fixed {
    position: fixed;
    width: 100vw;
    height: 100vh;
}

.bg-fixed img {
    object-fit: contain;
    object-position: top right;
}

@media(max-width: 1079px) {
    .section {
        min-height: 0;
    }
}

.letters {
    position: fixed;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}

.letters--main {
    display: none;
}

.section-letters {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

@media(max-width: 1079px) {
    .section-letters {
        display: none;
    }
}

.letter {
    position: absolute;
    font-family: 'Times New Roman';
    color: var(--color-gold);
    font-weight: 700;
    line-height: 1;
    opacity: 0.4;
    user-select: none;
    z-index: -1;
}

.letter:nth-child(1) {
    right: 15%;
    bottom:40%;
    font-size: 74px;
}

.letter:nth-child(2) {
    left: 14%;
    top: 5%;
    font-size: 54px;
}

.letter:nth-child(3) {
    left: 55%;
    top: 5%;
    font-size: 120px;
}

.letter-center {
    position: fixed;
    color: var(--color-gold);
    font-family: 'Times New Roman';
    font-weight: 700;
    line-height: 1;
    opacity: 0.3;
    user-select: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scaleX(0.9);
    font-size: 120vh;
}

@media(max-width:1079px) {
    .letter-center {
        display: none;
    }

    .letters {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .letters--main {
        display: block;
    }

    .letter:nth-child(1) {
        right: 85%;
        bottom:40%;
        font-size: 49px;
    }
    
    .letter:nth-child(2) {
        left: 34%;
        top: 5%;
        font-size: 60px;
    }
    
    .letter:nth-child(3) {
        left: auto;
        right: 5%;
        top: 40%;
        font-size: 170px;
    }
}

.border-top,
.border-bottom {
    display: flex;
    justify-content: center;
    border-left: 2px solid #000;
    border-right: 2px solid #000;
}

.border-top .border-line {
    border-top: 2px solid #000;
}

.border-bottom .border-line {
    border-bottom: 2px solid #000;
}

.border-noline {
    padding: 0 10px;
}

.border-left {
    border-left: 2px solid #000;
}

.border-right {
    border-right: 2px solid #000;
}

.border-block .w-auto{
    flex: 1;
}

.border-block  .w-fix {
    width: 30px;
}

@media(max-width: 1079px) {
    .border-top,
    .border-bottom,
    .border-left,
    .border-right {
        border: none;
    }

    .border-top .border-line,
    .border-bottom .border-line {
        display: none;
    }

    .border-noline {
        padding: 0;
    }
}

.promo .section-bg {
    width: 75%;
    height: auto;
    top: auto;
    bottom: 0;
    left: calc(50% + 100px);
    transform: translateX(-50%);
}

.section-letters .letter:nth-child(1) {
    bottom: auto;
    right: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    opacity: 0.2;
    font-size: 1000px;
}

@keyframes first-letter {
    0%{
        -webkit-transform:translateX(100%);
        transform:translateX(50%) translateY(-50%) scaleX(0.8);
        opacity: 0;
    }
    to{
        -webkit-transform:translateX(0);
        transform:translateX(-50%) translateY(-50%) scaleX(0.8);
        opacity: 0.2;
    }
}


.promo .section-letters .letter:nth-child(1) {
    font-weight: 400;
    font-size: 120vh;
    animation: first-letter 0.5s ease-out 0.2s;
    animation-fill-mode: both;
}

.section-letters .letter:nth-child(2) {
    bottom: 12%;
    left: 14%;
    top: auto;
    transform: translate(-50%,-50%);
    opacity: 0.2;
    font-size: 70px;
}

.section-letters .letter:nth-child(3) {
    bottom: auto;
    left: auto;
    right: 15%;
    top: 30%;
    opacity: 0.2;
    font-size: 130px;
}

.promo-wrap {
    display: grid;
    grid-template-columns: repeat(2, 46%);
    gap: 8%;
    min-height: 70vh;
}

.promo-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promo-title {
    line-height: 120%;
}

@media (max-width: 1079px) {
    .promo .section-bg {
        display: none;
    }
    
    .promo-wrap {
        grid-template-columns: 100%;
        padding: 0;
        min-height: 0;
    }

    .promo-left {
        display: none;
    }
}

.winner {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: fit-content;
    animation: u .8s ease-out 0.4s;
    animation-fill-mode: both;
}

.winner img {
    width: 162px;
    height: 201px;
}

.winner p {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -0.01em;
    font-family: var(--font-roboto);
    margin: 0;
}

.winner .btn {
    margin-top: 24px;
}

.promo-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 30px 0 20%;
    animation: u .8s ease-out 0.4s;
    animation-fill-mode: both;
}

@media(max-width: 1079px) {
    .promo-right {
        padding: 0;
        animation: none;
    }
}

.features-title {
    text-align: left;
    margin-bottom: 15px;
}

.features-subtitle {
    font-style: italic;
    margin-bottom: 30px;
    font-family: var(--font-roboto);
}

.features-text {
    position: relative;
    font-size: 17px;
    line-height: 26px;
    max-width: 350px;
    font-family: var(--font-roboto);
    padding-left: 20px;
}

.features-text::after {
    content: "";
    position: absolute;
    width: 163px;
    height: 117px;
    top: -28px;
    left: 0;
    z-index: -1;
    background-color: hsla(0,0%,47%,.1);
}

.features-text::before{
    content: "";
    position: absolute;
    top: -18px;
    left: 20px;
    z-index: -1;
    width: 36px;
    height: 1px;
    background-color: var(--color-gold);
}

@media(max-width: 1349px) {
    .features-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .features-subtitle {
        font-size: 14px;
    }

    .features-text {
        font-size: 14px;
        line-height: 18px;
    }
}

@media(max-width: 1079px) {
    .features {
        max-width: 290px;
        margin: 0 auto;
    }
}

.clients {
    display: flex;
    margin-right: -30px;
}

.clients-number {
    font-size: 85px;
    font-family: "Times New Roman", "Times", serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 0.92;
    text-wrap: nowrap;
    margin-right: 20px;
}

.clients-text {
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.01em;
    width: 262px;
    flex-shrink: 0;
    font-family: var(--font-roboto);
}

.clients-title {
    display: inline-block;
    font-size: 25px;
    line-height: 30px;
    font-style: italic;
    font-weight: 700;
    letter-spacing: -0.01em;
}

@media(max-width: 1339px) {
    .clients {
        margin-right: 0;
        margin-left: -50px;
    }

    .clients-number {
        font-size: 65px;
    }
}

@media(max-width: 1079px) {
    .clients {
        display: none;
    }
}

.services .letter:nth-child(1) {
    font-size: 1000px;
}

.services .letter:nth-child(2) {
    left: 9.5%;
    bottom: 27%;
    font-size: 78px;
    opacity: 0.5;
}

.services .letter:nth-child(3) {
    right: 11%;
    top: 33%;
    font-size: 128px;
    opacity: 0.5;
}

.services-pre {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease; 
}

.services-pre.hide {
    transform: translateX(-200%);
}

.services .title--h1 {
    margin-bottom: 30px;
}

.services .btn--small {
    width: 300px;
    margin-bottom: 30px;
    font-size: 24px;
}

.services-text {
    font-size: 30px;
    font-family: var(--font-roboto);
    color: rgb(14, 0, 32);
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    border-top: 2px solid var(--color-gold);
    margin-bottom: 22px;
}

.services-pre .title--h2 {
    position: relative;
    color: var(--color-gold);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.services-pre .title--h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 33px;
    height: 1px;
    background-color: var(--color-gold);
}

.services-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 54px;
}

.services-btns-mob {
    display: none;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.services-sliders {
    transition: transform 0.5s ease; 
}

.services-slides {
   display: none;
}

.services-sliders.hide {
    transform: translateX(200%);
}

.services-slider {
    display: none;
}

.services-slider.active {
    display: block;
}

.services-back-btn {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100px;
    left: 0;
    z-index: 10;
}

.services:has(.services-pre.hide) .services-back-btn {
    opacity: 1;
    pointer-events: all;
}

.services-btn {
    min-height: 55px;
}

@media(max-width: 1079px) {
    .services {
        margin: 20px 0;
    }
    
    .services .center {
        min-height: 450px;
    }
    
    .services-pre {
        padding: 0 15px;
    }

    .services .letters {
        display: none;
    }

    .services .title--h1 {
        font-size: 30px;
        margin-bottom: 14px;
    }

    .services .title--h2 {
        font-size: 30px;
    }

    .services-text {
        font-size: 20px;
    }
    
    .services-btns {
        display: none;
    }
    
    .services-btns-mob {
        display: flex;
    }

    .services .btn--circle {
        width: 250px;
        height: 64px;
        border-radius: 100px;
    }

    .services .btn--circle::after {
        width: calc(100% - 37px);
        height: calc(100% - 37px);
        border-radius: 100px;
    }
}

@media(max-width: 640px) {
    .services .btn--circle {
        width: auto;
        min-width: 64px;
    }
    
    .services .btn--circle::after {
        width: calc(100% - 20px);
        height: calc(100% - 20px);
    }
}

.slider-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: center;
}

.slider-card-img {
    width: 100%;
    max-width: 550px;
    height: 380px;
}

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

.slider-card-title {
    text-align: left;
    font-size: 38px;
}

.slider-card-subtitle {
    position: relative;
    font-size: 17px;
    margin-bottom: 20px;
    font-style: italic;
    font-family: var(--font-roboto);
}

.slider-card-subtitle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 36px;
    height: 2px;
    background-color: #000;
}

.slider-card-text {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 15px;
}

.slider-card-text::-webkit-scrollbar {
  width: 0;
}

.slider-card-text p {
    font-size: 16px;
    line-height: 1.5;
    font-family: var(--font-roboto);
    margin: 0 0 20px;
}

@media(max-width: 1079px) {
    .slider-card {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .slider-card-img {
        margin: 0 auto 25px;
        height: 220px;
    }

    .slider-card-title {
        font-size: 28px;
        letter-spacing: -0.02em;
        line-height: 38px;
        text-align: center;
    }

    .slider-card-subtitle::after {
        display: none;
    }

    .slider-card .btn {
        margin: 0 auto;
    }

    .slider-card-text {
        display: none;
    }

    .services-back-btn {
        position: relative;
        top: auto;
        left: auto;
        margin: 0 auto;
        width: fit-content;
    }
}

.about {
    margin-bottom:  100px;
}

.text-content {
    font-size: 20px;
    line-height: 125%;
    text-align: justify;
}

.text-content p {
    margin: 0 0 20px;
}

.text-content a {
    color: #b39658;
    cursor: pointer;
}

.text-content ul {
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
}

.text-content ul li {
    position: relative;
    margin-bottom: 10px;
}

.text-content ul li::before {
    content: "";
    font-size: 0;
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    transform: translateY(-3px) rotate(-45deg);
    display: inline-block;
    line-height: 17px;
    margin-top: 8px;
    margin-right: 10px;
}

.text-content h3 {
    margin: 15px 0 20px;
    white-space: normal;
    line-height: 110%;
    text-align: left;
    font-weight: bold;
    font-size: 33px;
    color: #2F2F2F;
}

.text-content .image-left,
.text-content img {
    float: left;
    margin: 5px 20px 20px 0;
}

.text-content .image-right {
    float: right;
    margin: 5px 0 20px 20px;
}

.text-content img {
    max-width: 500px;
}

@media(max-width: 1023px) {
    .text-content {
        font-size: 15px;
    }
    
  .text-content img {
        float: none;
        width: 100%;
        margin: 0 auto 20px;
    }  
}

.slider-bordered {
    position: relative;
    border: 1px solid #000;
    border-top: none;
}

.slider-bordered-top {
    display: flex;
    justify-content: center;
}

.slider-bordered-left {
    width: 30px;
    border-top: 1px solid #000;
}

.slider-bordered-right {
    flex: 1;
    border-top: 1px solid #000;
}

.slider-title {
    text-align: left;
    padding: 0 14px;
}

.slider-btns {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    z-index: 5;
}

.slider-btn {
    width: 100px;
    height: 100px;
    background-color: #000;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-btn:hover,
.slider-btn:focus {
    background-color: var(--color-gold);
}

.slider-btn .btn-icon {
    width: 40px;
    height: 40px;
}

.slider-btn.next svg {
    transform: rotate(0.5turn);
}

.slider-btn-circle {
    border-radius: 50%;
    overflow: hidden;
}

.small-slider .swiper-pagination {
    text-align: center;
    position: relative;
    margin-top: 20px;
}

@media (min-width: 1080px) {
    .main-slider .swiper-pagination,
    .slider-bordered .swiper-pagination {
        display: none;
    }  

    .small-slider .swiper-pagination {
        text-align: left;
    }
}

@media (max-width: 1079px) {
    .slider-bordered {
        border: none;
    }  

    .slider-bordered-left,
    .slider-bordered-right {
        display: none;
    }

    .slider-bordered .slider-btn {
        display: none;
    }

    .slider-bordered-top {
        margin-bottom: 30px;
    }
}

.swiper-pagination-bullet {
    width: 17px;
    height: 17px;
    background-color: var(--color-gold);
    box-shadow: 0 0 0 9px #000 inset;
    transition: box-shadow .3s ease;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    width: 17px;
    height: 17px;
    background-color: var(--color-gold);
    box-shadow: 0 0 0 3px #000 inset;
}

.master {
    display: flex;
}

.master-img {
    max-width: 500px;
    max-height: 600px;
    width: 50%;
    height: 100%;
    transform: translateY(10px);
    flex-shrink: 0;
    padding: 0 30px;
}

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

.master-info {
    padding: 0 15px 115px 0;
    flex: 1;
}

.master-title {
    position: relative;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.master-title::after {
    content: "";
    width: 36px;
    height: 1px;
    background-color: #000;
    position: absolute;
    bottom: 0;
    left: 0;
    border: none;
}

.master-subtitle {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 10px;
}

.master-desc {
    font-size: 14px;
    line-height: 1.5;
    max-height: 280px;
    overflow-y: auto;
}

.masters-page .master-desc {
    max-height: none;
}

.masters .slider-bordered {
    margin-bottom: 100px;
}

.masters-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.masters-text {
    font-size: 14px;
    font-style: italic;
    font-family: var(--font-roboto);
    width: 318px;
}

@media(max-width: 1079px) {
    .masters .center {
        padding: 50px 15px;
    }

    .masters .title {
        text-align: center;
    }
    .masters-bottom {
        flex-direction: row-reverse;
    }

    .master-img {
        transform: none;
    }
    
    .master-info {
        padding: 0 0 115px 0;
    }
}

@media(max-width: 767px) {
    .master {
        flex-direction: column;
    }

    .master-img {
        margin-bottom: 20px;
        width: 100%;
        height: 450px;
        max-width: none;
        padding: 0;
    }

    .masters .slider-bordered {
        margin-bottom: 20px;
    } 

    .masters-bottom {
        flex-direction: column-reverse;
    }

    .masters-text {
        text-align: center;
    }
}

.hot-hours .section-bg {
    width: 80%;
    height: auto;
    right: 0;
    left: auto;
}

.hot-hours-title {
    font-size: 60px;
    line-height: 1;
    text-transform: uppercase;
    text-align: left;
    margin: 0 0 40px;
}

.hot-hours-subtitle {
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0 30px;
}

.hot-hours-text {
    position: relative;
    margin: 0 0 30px;
}

.hot-hours-text::after {
    content: "";
    position: absolute;
    width: 163px;
    height: 117px;
    top: -28px;
    left: 0;
    z-index: -1;
    background-color: hsla(0,0%,47%,.1);
}

.hot-hours-text::before{
    content: "";
    position: absolute;
    top: -18px;
    left: 20px;
    z-index: -1;
    width: 36px;
    height: 1px;
    background-color: var(--color-gold);
}

.hot-hours-text p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 12px;
}

@media(max-width: 1079px) {
    .hot-hours .center {
        padding: 50px 15px;
    }

    .hot-hours-title {
        font-size: 40px;
        text-align: center;
        margin-bottom: 25px;
    }

    .hot-hours-subtitle {
        font-size: 30px;
        text-align: center;
    }

    .hot-hours-text p {
        font-size: 20px;
    }
}

.shedule {
    border: 1px solid #000;
    padding: 30px;
}

.shedule-item {
    display: grid;
    grid-template-columns: 60px min-content 2fr  1fr;
    grid-template-areas: "date time title button"
        "date time price button";
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.shedule-item:last-child {
    margin-bottom: 0;
}

.shedule-date {
    grid-area: date;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    font-family: var(--font-roboto);
    margin-top: 15px;
}

.shedule-day {
    font-size: 30px;
    font-weight: 700;
}

.shedule-time {
    grid-area: time;
    font-size: 76px;
    font-weight: 700;
    line-height: 0.8;
    color: var(--color-gold);
    margin-right: 50px;
}

.shedule-price {
    grid-area: price;
    font-family: var(--font-roboto);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -1px;
    margin-right: 15px;
    padding-left: 50px;
}

.shedule-price p {
    margin: 0 0 10px;
}

.shedule-title {
    grid-area: title;
    font-size: 17px;
    font-style: italic;
    font-weight: 400;
    max-width: 350px;
    margin-bottom: 10px;
    padding-left: 50px;
}

.shedule-btn {
    grid-area: button;
}

.shedule-btn .btn {
    margin-left: auto;
}

@media(max-width: 1600px) {
    .shedule-price,
    .shedule-title {
        padding-left: 0;
    }
}


@media(max-width: 1299px) {
    .shedule {
        border: none;
        padding: 0;
    }

    .shedule-item {
        grid-template-columns: 1fr 1.5fr;
        grid-template-areas: "title title"
        "date time"
        "price price"
        "button button";
    }

    .shedule-date {
        text-align: right;
        margin-right: 30px;
    }

    .shedule-time {
        margin-bottom: 10px;
    }

    .shedule-title {
        text-align: center;
        max-width: none;
        margin-bottom: 10px;
        font-size: 20px;
    }

    .shedule-price {
        text-align: center;
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 15px;
    }

    .shedule-btn .btn {
        margin: 0 auto;
        font-size: 25px;
    }
}

@media (max-width: 1079px) {
    .wave {
        overflow: hidden;
        position: relative;
        width: 100%;
        height: 10px;
    }

    .wave::after,
    .wave::before {
        content: "";
        position: absolute;
        background: radial-gradient(ellipse, transparent, transparent 2px, var(--color-gold) 2px, var(--color-gold) 3px, transparent 4px);
        background-size: 13px 6px;
        width: 100%;
        height: 3px;
    }
    
    .wave::before {
        top: 3px;
        left: 6px;
        background-position: 0 -3px;
    }
}

.special .center {
    display: block;
    padding: 120px 0;
}

.special-card {
    display: grid;
    column-gap: 60px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, auto);
    grid-template-areas: "title slogan"
    "subtitle text"
    "image text"
    "image button";
}

.special-card-title {
    grid-area: title;
    position: relative;
    font-size: 34px;
    color: rgb(14, 0, 32);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    text-align: center;
    letter-spacing: .33px;
    padding-bottom: 20px;
    margin: 0 0 20px;
}

.special-card-title::after{
    content: "";
    width: 60%;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-gold);
}

.special-card-subtitle {
    grid-area: subtitle;
    font-size: 25px;
    font-family: var(--font-roboto);
    color: rgb(14, 0, 32);
    line-height: 1.2;
    text-align: center;
}

.special-card-right {
    display: flex;
    flex-direction: column;
    padding: 30px;
    flex: 1;
}

.special-card-slogan {
    grid-area: slogan;
    font-size: 34px;
    color: rgb(153, 124, 62);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    text-align: center;
    margin-bottom: 30px;
}

.special-card-text {
    grid-area: text;
    max-height: 40vh;
    overflow-y: auto;
    margin-bottom: 20px;
}

.special-card-text p {
    margin: 0 0 16px;
    font-size: 16px;
}

.special-card-text ul {
    font-size: 16px;
    list-style: circle;
}

.special-card-img {
    max-width: 400px;
    height: auto;
    justify-self: center;
}

.special-card-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.special-card .btn {
    grid-area: button;
    width: 100%;
}

@media(max-width: 1079px) {
    .special .center {
        padding: 50px 15px;
    }

    .special-card {
        grid-template-columns: 1fr;
        grid-template-areas: "title"
        "slogan"
        "image"
        "subtitle"
        "button";
    }

    .special-card-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .special-card-title::after {
        display: none;
    }

    .special-card-slogan {
        font-size: 30px;
        color: #000;
        margin: 0;
    }

    .special-card-img {
        width: 100%;
        padding: 0 20px;
        height: auto;
        margin-bottom: 15px;
    }

    .special-card-subtitle {
        font-size: 20px;
        margin-bottom: 28px;
        text-align: center;
    }

    .special-card-text {
        display: none;
    }

    .special-card .btn {
        width: fit-content;
        margin: 0 auto;
    }
}

.main-slider {
    margin-bottom: 100px;
}

.main-slider-preview {
    position: relative;
    padding: 0 74px;
}

.main-slider-preview::after {
    content: "";
    position: absolute;
    top: 45px;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
}

.main-slider-preview .slider-btn {
    width: 74px;
    height: 74px;
    position: absolute;
    top: 45px;
    transform: translateY(-50%);
    z-index: 5;
}

.main-slider-preview .slider-btn.prev {
    left: 0;
}

.main-slider-preview .slider-btn.next {
    right: 0;
}

@media (max-width: 1079px) {
    .main-slider-preview {
        display: none;
    }

    .main-slider {
        position: relative;
        padding-bottom: 50px;
        margin-bottom: 20px;
    }
}

.preview-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preview-card img {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2px;
    cursor: pointer;
}

.preview-card p {
    font-family: "Cambria", "Arial", serif;
    font-size: 17px;
    font-style: italic;
    height: 60px;
    max-width: 160px;
    text-align: center;
}

.swiper-slide-thumb-active .preview-card img {
    outline: 2px solid #000;
    outline-offset: -2px;
}

.contacts {
    font-family: var(--font-roboto);
}

.contacts .letter-center {
    opacity: 0.6;
    font-weight: 700;
}

.contacts-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 75vh;
    padding: 0 3%;
}

.contacts-title {
    font-size: 39px;
    margin: 0 0 15px;
}

.contacts dl {
    margin: 0 0 30px;
    padding: 0;
}

.contacts dt {
    font-size: 19px;
    margin: 10px 0 20px;
}

.contacts dd {
    margin: 0;
}

.contacnts-working {
    margin-bottom: 15%;
}

.contacnts-working dd {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 40px;
}

.contacts-map {
    width: 335px;
    height: 335px;
    border-radius: 50%;
    overflow: hidden;
}

.contacts-right {
    text-align: right;
    padding-top: 20%;
}

.contacts-phones {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 20px;
    font-weight: 700;
}

.contacts-wapp {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 5px 0;
}

.contacts-address {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.contacts-mail {
    font-size: 20px;
    font-style: italic;
}

.contacts-details {
    font-size: 20px;
    line-height: 24px;
}

.contacts .social {
    margin: 20px 0;
}

.contacts .social-list {
    justify-content: flex-end;
}

.contacts .social-link {
    width: 50px;
    height: 42px;
}

.contacts-bottom {
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 19.4px;
    line-height: 1.1;
    transform:translateY(60px);
}

@media(max-width: 1079px) {
    .contacts .logo {
        display: flex;
        width: 260px;
        margin: 0 auto 75px;
    }

    .contacts-top {
        grid-template-columns: 1fr;
        height: auto;
    }

    .contacts-map {
        width: 100%;
        height: 490px;
        max-width: 490px;
        margin: 0 auto;
    }

    .contacts-right {
        padding: 0;
        text-align: left;
    }

    .contacts-phones{
        align-items: flex-start;
    }
}

.articles .letter:nth-child(1) {
    left: 65%;
    top: 5%;
    font-size: 40px;
}

.articles .letter:nth-child(2) {
    left: 10%;
    top: 80%;
    font-size: 70px;
}

.articles .letter:nth-child(3) {
    right: 10%;
    left: auto;
    top: 45%;
    font-size: 120px;
}

.articles-title {
    color: var(--color-gold);
    text-align: start;
    font-size: 28px;
    margin: 0 0 20px;
}

.articles-card {
    display: flex;
    margin-bottom: 30px;
}

.articles-img {
    width: 36%;
    margin-right: 4%;
}

.articles-img img {
    width: 100%;
}

.articles-info {
    width: 60%;
}

.articles-head {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 20px;
}

.articles-text {
    margin-bottom: 20px;
}

.articles-text p {
    font-family: var(--font-roboto);
    font-size: 16px;
    margin: 0 0 10px;
}

.articles-card .btn {
    width: 300px;
    min-height: 48px;
}

.article .section-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: -1;
    height: 100vh;
    width: auto;
}

.article-title {
  width: 80%;
  text-align: start;
}

.article-subtitle {
    position: relative;
    color: #0e0020;
    font-family: var(--font-roboto);
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    margin: 10px 0;
}

.article-subtitle::before {
    content: "";
    display: block;
    width: 36px;
    height: 2px;
    background-color: #000;
    margin-bottom: 10px;
}

.article-content {
    font-size: 20px;
    line-height: 24px;
    font-family: var(--font-roboto);
}

.article-content img {
    max-width: 40%;
    float: left;
    margin: 10px 40px;
    margin-left: 0;
}

.article-back {
    width: fit-content;
    align-self: center;
    margin: 0 auto;
    min-height: 40px;
}

.list-menu-title {
    font-family: var(--font-roboto);
    text-align: center;
    margin-bottom: 30px;
    font-size: 40px;
    color: var(--color-gold);
    line-height: 120%;
}

.list-menu-wrap {
    position: relative;
    padding-right: 350px;
}

.list-menu-wrap .left-menu {
    font-size: 26px;
    line-height: 1.4;
    max-width: 400px;
    padding-left: 0;
}

.list-menu-wrap .left-menu li {
    position: static;
}

.list-menu-wrap .left-menu li a:before {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    font-size: 85px;
    padding-right: 30px;
    line-height: 0.8;
}

.list-menu-wrap .left-menu a {
    display: flex;
}

.list-menu-img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.list-menu-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.list-menu-wrap .left-menu li:hover .list-menu-img {
    opacity: 1;
    z-index: 10;
}

.list-menu-bg {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.list-menu-bg img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.list-menu:has(li:hover) .list-menu-bg {
    opacity: 0;
}

@media(max-width: 1079px) {
    .list-menu-wrap {
        padding: 0;
    }
    
    .list-menu-title,
    .list-menu-img,
    .list-menu-bg {
        display: none;
    }
}

@media(max-width: 539px) {
    .list-menu-wrap .left-menu {
        font-size: 15px;
    }

    .list-menu-wrap .left-menu li a:before {
        font-size: 38px;
        padding-right: 15px;
    }
}

@media(max-width: 1079px) {
    .masters-page .slider-title {
        font-size: 30px;
        padding: 0 11px;
    }
}

.category-title {
    font-size: 40px;
    font-family: var(--font-roboto);
    line-height: 120%;
    font-weight: 700;
}

.category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

@media(max-width: 767px) {
    .category-title {
        font-size: 24px;
        text-align: center;
    }
}

.contraindications {
    color: #000;
    font-size: 30px;
    font-style: italic;
    text-align: center;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

.contraindications:hover,
.contraindications:focus {
    color: var(--color-gold);
}

.service-card {
    position: relative;
    display: flex;
    padding: 30px 0;
}

.service-card-img {
    width: 35%;
    height: 174px;
    flex-shrink: 0;
    margin-right: 3%;
}

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

.service-card-info {
    display: grid;
    grid-template-columns: 1fr max-content;
    flex: 1;
}

.service-card-title {
    grid-column: 1 / -1;
    font-size: 33px;
    text-align: left;
    line-height: 120%;
    position: relative;
}

.service-card-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background-color: var(--color-gold);
}

.service-card .btn {
    position: static;
    grid-column: -2 / -1;
    align-self: flex-end;
    width: 200px;
    min-height: 53px;
}

.service-card .btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-card-tag {
    grid-row: 2 / 3;
    align-self: end;
    font-size: 20px;
    font-style: italic;
    font-family: var(--font-roboto);
}

@media(max-width: 1079px) {
    .service-card-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
}

@media(max-width: 767px) {
    .service-card {
        flex-direction: column;
    }

    .service-card-img {
        height: 150px;
        width: 100%;
        margin-bottom: 10px;
    }

    .service-card-info {
        display: flex;
        flex-direction: column;
    }

    .service-card-title {
        font-size: 20px;
    }

    .service-card-tag {
        font-size: 14px;
        margin-bottom: 20px;
        align-self: flex-start;
    }

    .service-card .btn {
        order: 2;
        align-self: center;
        width: auto;
        min-height: 32px;
        font-size: 16px;
        padding: 5px 25px;
    }
}

.h-100 {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 100px;
}

@media(max-width: 1079px) {
    .h-100 {
        min-height: 0;
    }
}

@media(max-width: 767px) {
    .h-100 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

/* Страница услуги */

.service-wrap {
    min-height: 60vh;
    display: grid;
    grid-template-columns: 40% 57%;
    column-gap: 3%;
    grid-template-areas: "top top"
    "left img"
    "left desc"
    "bottom bottom";
}

.service-left {
    grid-area: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-left: 30px;
}

.service-title {
    font-size: 33px;
    text-align: left;
    line-height: 120%;
    position: relative;
    text-transform: uppercase;
    margin: 0 0 40px;
}

.service-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 33px;
    height: 4px;
    background-color: #000;
}

.service-tag {
    font-size: 20px;
    font-style: italic;
    font-family: var(--font-roboto);
    margin-bottom: 40px;
}

.service-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-around;
    flex: 1;
}

.service-price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-time {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 14vh;
    height: 14vh;
    border: 1px solid #000;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 5px;
}

.service-time::after {
    content: "";
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 2px;
    background-color: #000;
}

.service-time span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: #b39658;
    flex: 1;
}

.service-time span:first-child {
    font-size: 40px;
}

.service-time span:last-child {
    font-family: var(--font-roboto);
}

.service-price {
    font-size: 40px;
    font-weight: 700;
    line-height: 120%;
    position: relative;
}

.service-price sup {
    position: absolute;
    top: 2px;
    right: -27px;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    font-family: var(--font-roboto);
    color: #b39658;
}

.service-price-icon svg {
    width: 20px;
    height: 22px;
}

.service-img {
    grid-area: img;
    height: 25vh;
    width: 100%;
    padding: 10px 0;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-description {
    grid-area: desc;
    padding-right: 30px;
}

.service-description-wrap {
    font-family: var(--font-roboto);
    height: 30vh;
    overflow-y: auto;
    padding-right: 10px;
    font-size: 18px;
    line-height: 1.2;
}

.service .btn {
    font-size: 25px;
    min-height: 50px;
}

.service .border-top {
    grid-area: top;
}

.service .border-bottom {
    grid-area: bottom;
}

.service .border-top .btn {
    transform: translateY(-25px);
}

.service .border-bottom .btn {
    transform: translateY(25px);
}

label.service-price-block {
    cursor:pointer;
}

.service-prices input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    clip: rect(0 0 0 0);
}

.service-price-block:has(input:checked) .service-time {
    background-color: rgba(200,200,200,0.5);
    border-color: var(--color-gold);
}

@media (max-width: 1469px) {
    .service-title{
        font-size: 24px;
    }
}

@media (max-width: 1079px) {
    .service .letter--center{
        display: none;
    }

    .service-wrap{
        height: auto;
        grid-template-columns: 1fr;
        grid-template-areas: "img"
        "left"
        "bottom"
        "desc"
        "top";
    }

    .service-title {
        font-size: 28px;
        text-align: center;
        margin-bottom: 40px;
    }

    .service-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 14px;
        height: 3px;
        background-color: #fff;
    }

    .service-tag {
        text-align: center;
    }

    .service-left {
        padding: 0;
        margin-bottom: 30px;
    }

    .service-price-block:not(label) .service-time {
        border: none;
        border-radius: 0;
        width: auto;
        height: auto;
        overflow: visible;
    }
    
    .service-price-block:not(label) .service-time::after {
        top: 70%;
    }

    .service-price-block:not(label) .service-time span:first-child {
        font-size: 30px;
        margin-bottom: 50px;
    }

    .service-price-block:not(label) .service-time span:last-child {
        position: absolute;
        top: -10px;
        right: -40px;
        text-transform: uppercase;
        font-weight: 400;
    }

    .service-price {
        font-size: 24px;
    }
    
    .service-price sup {
        font-size: 14px;
    }

    .service-price-icon {
        display: none;
    }

    .service-img {
        margin-bottom: 20px;
        height: 230px;
    }

    .service .border-bottom .btn,
    .service .border-top .btn {
        transform: none;
    } 

    .service-description {
        padding: 0;
    }

    .service-description-wrap {
        height: auto;
        padding: 0;
    }
}

/* Страница услуги новая */
.service-new .service-wrap {
    min-height: 0;
    display: grid;
    grid-template-columns: 40% 57%;
    grid-template-rows: repeat(5, max-content);
    column-gap: 3%;
    grid-template-areas: "img breadcrumbs"
    "img title"
    "img tag"
    "img prices"
    "img btn";
    margin: 40px 0;
}

.service-new  .breadcrumbs {
    grid-area: breadcrumbs;
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    transform: none;
    margin: 0;
    
}

.service-new  .service-title {
    grid-area: title;
    font-size: 33px;
    text-align: left;
    line-height: 120%;
    position: relative;
    text-transform: uppercase;
    margin: 0 0 40px;
}

.service-new  .service-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 33px;
    height: 4px;
    background-color: #000;
}

.service-new  .service-tag {
    grid-area: tag;
    font-size: 20px;
    font-style: italic;
    font-family: var(--font-roboto);
    margin-bottom: 40px;
}

.service-new  .service-prices {
    grid-area: prices;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: start;
    align-items: start;
    flex: 1;
    margin: 0 0 40px; 
}

.service-new  .service-price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-new  .service-time {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc((1vw + 1vh) * 4);
    height: calc((1vw + 1vh) * 4);
    max-width: 100px;
    max-height: 100px;
    border: 1px solid #000;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 5px;
}

.service-new  .service-time::after {
    content: "";
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 2px;
    background-color: #000;
}

.service-new  .service-time span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: #b39658;
    flex: 1;
}

.service-new  .service-time span:first-child {
    font-size: 30px;
}

.service-new  .service-time span:last-child {
    font-family: var(--font-roboto);
}

.service-new  .service-price {
    font-size: 30px;
    font-weight: 700;
    line-height: 120%;
    position: relative;
}

.service-new  .service-price sup {
    position: absolute;
    top: 2px;
    right: -27px;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    font-family: var(--font-roboto);
    color: #b39658;
}

.service-new  .service-price-icon svg {
    width: 20px;
    height: 22px;
}

.service-new  .service-img {
    grid-area: img;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1; 
    padding: 0;
    box-shadow: 0 0 0 2px;
}

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

.service-new .service-btn {
    grid-area: btn;
    font-size: 25px;
    min-height: 50px;
    min-width: 300px;
}

.service-new  label.service-price-block {
    cursor:pointer;
}

.service-new  .service-prices input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    clip: rect(0 0 0 0);
}

.service-new  .service-price-block:has(input:checked) .service-time {
    background-color: rgba(200,200,200,0.5);
    border-color: var(--color-gold);
}

.service-new .service-tabs-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}
.service-new .service-tabs {
    margin-bottom: 40px;
}
.service-new .service-tabs-btn {
    position: relative;
    display: flex;
    border: none;
    background: transparent;
    padding: 0;
    color: var(--color-dark);
    font-family: var(--font-roboto);
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.service-new .service-tabs-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}
.service-new .service-tabs-btn:hover{
    opacity: 0.7;
}
.service-new .service-tabs-btn:focus {
    outline:  none;
}
.service-new .service-tabs-btn.active {
    pointer-events: none;
}
.service-new .service-tabs-btn.active::after {
    background-color: var(--color-gold);
}
.service-new .service-tabs-item {
    display: none;
    font-size: 18px;
    line-height: 130%;
}
.service-new .service-tabs-item.active {
    display: block;
}

@media (max-width: 1469px) {
    .service-new  .service-title{
        font-size: 24px;
    }
}

@media (max-width: 1079px) {
    .service-new .letter--center{
        display: none;
    }

    .service-new  .service-wrap{
        height: auto;
        grid-template-columns: 1fr;
        grid-template-areas: "breadcrumbs"
        "img"
        "title"
        "tag"
        'prices'
        'btn';
    }

    .service-new  .service-title {
        font-size: 28px;
        text-align: center;
        margin-bottom: 40px;
    }

    .service-new  .service-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 14px;
        height: 3px;
        background-color: #fff;
    }

    .service-new  .service-tag {
        text-align: center;
    }

    .service-new  .service-prices {
        padding: 0;
        margin-bottom: 30px;
        justify-content: space-around;
    }

    .service-new  .service-price-block:not(label) .service-time {
        border: none;
        border-radius: 0;
        width: auto;
        height: auto;
        overflow: visible;
    }
    
    .service-new  .service-price-block:not(label) .service-time::after {
        top: 70%;
    }

    .service-new  .service-price-block:not(label) .service-time span:first-child {
        font-size: 30px;
        margin-bottom: 50px;
    }

    .service-new  .service-price-block:not(label) .service-time span:last-child {
        position: absolute;
        top: -10px;
        right: -40px;
        text-transform: uppercase;
        font-weight: 400;
    }

    .service-new  .service-price {
        font-size: 24px;
    }
    
    .service-new .service-price sup {
        font-size: 14px;
    }

    .service-new  .service-price-icon {
        display: none;
    }

    .service-new .service-img {
        margin-bottom: 20px;
        max-height: 600px;
    }
    .service-new .service-btn {
        justify-self: center;
    }
}

@media (max-width: 539px) {
    .service-new  .service-prices {
        padding: 0 15px 0 0;
    }
}


.education-title {
    margin-bottom: 20px;
    transform: translateY(-50%);
}

.education-wrap {
    border: 2px solid #000;
    border-top: 0;
    padding: 0 30px 30px 30px;
    display: grid;
    grid-template-columns: 48% 48%;
    gap: 4%;
    margin-bottom: 30px;
}

.education-img  img{
    width: 100%;
    height: auto;
}

.education-slider .swiper-pagination {
    text-align: center;
}

@media (max-width: 1439px) {
    .education-title {
        font-size: 30px;
    }
}

@media (max-width: 1079px) {
    .education-wrap {
        padding: 0;
        grid-template-columns: 100%;
        gap: 30px;
        border:none;
    }

    .education-title {
        transform: none;
    }
}

.teachers-title {
    text-align: left;
    margin-bottom: 50px;
}

.teachers-tabs {
    position: relative;
}

.teachers-tabs-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    position:absolute;
    left : 0;
    top : 420px;
}

.teachers-btn {
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    width: 100px;
    height: 100px;
    overflow: hidden;
    padding: 0;
    filter: grayscale(1);
        -ms-filter: grayscale(1);
        -webkit-filter: grayscale(1);
        -moz-filter: grayscale(1);
        -o-filter: grayscale(1);
    transition: border-color 0.3s ease, filter 0.3s ease;
}

.teachers-btn.active {
    border-radius: 50%;
    border: 2px solid #000;
    cursor: pointer;
    width: 100px;
    height: 100px;
    overflow: hidden;
    padding: 0;
    filter: none;
    pointer-events: none;
}

.teachers-tabs-item {
    display: none;
    grid-template-columns: 1fr 2fr;
    gap: 4%;
}

.teachers-tabs-item.active {
    display: grid;
}

.teachers-avatar {
    width: 100%;
    height: auto;
    margin: 0 auto;
    max-width: 400px;
}

.teachers-avatar img {
    width: 100%;
    border-radius: 50%;
}

.teachers-name {
    text-align: left;
    margin-bottom: 20px;
}

.teachers-subtitle {
    font-size: 22px;
    font-style: italic;
    letter-spacing: -0.01em;
    margin-bottom: 22px;
}

.teachers-certificates {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.teachers-certificate {
    height: 150px;
}

.teachers-certificate img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media(max-width: 1079px) {
    .teachers-tabs-btns {
        position: static;
    }

    .teachers-tabs-item  {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .teachers-avatar {
        width: 300px;
        height: 300px;
    }
    
    .teachers-avatar img {
        height: 100%;
        object-fit: cover;
        border-radius: 60px;
    }
}

.courses-title {
    font-size: 40px;
    line-height: 45px;
    margin: 0 0 20px;
    font-family: var(--font-roboto);
    font-weight: 700;
    transform: translateY(-50%);
}

.courses-wrap {
    border: 2px solid #000;
    border-top: none;
    padding: 0 30px 30px 30px;
}

.courses-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.courses-item {
    display: flex;
    align-items: center;
}

.courses-info {
    flex: 1;
}

.courses-name {
    font-size: 27px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 120%;
}

.courses-shedule {
    font-family: var(--font-roboto);
    font-size: 23px;
    line-height: 120%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.courses .btn {
    width: 150px;
}

@media(max-width: 1079px) {
    .courses-wrap {
        border: none;
        padding: 0;
    }

    .courses-item {
        flex-direction: column;
    }
}

.course-title {
    text-align: left;
    padding-right: 300px;
    margin-bottom: 32px;
}

.course-btn-back {
    position: absolute;
    top: 100px;
    right: 0;
    width: 160px;
}

.course-btn {
    margin: 0 auto;
    font-size: 25px;
}

@media(max-width: 767px) {
    .course-title {
        padding-right: 0;
    }
    
    .course-btn-back {
        position: relative;
        top: 0;
    }
}

.form fieldset {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
    border: none;
    padding: 0;
    margin: 0;
}

.form__title {
    font-size: 24px;
    color: rgb(14, 0, 32);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 120%;
    text-align: center;
    margin-bottom: 15px;
}

.form__subtitle {
    font-size: 16px;
    font-family: var(--font-roboto);
    color: rgb(14, 0, 32);
    text-transform: uppercase;
    line-height: 120%;
    text-align: center;
    margin-bottom: 10px;
}

.form__desk p {
    font-size: 16px;
    text-align: center;
    margin: 0 0 10px;
}

.form__hot-price {
    font-size: 16px;
    font-family: var(--font-roboto);
    color: rgb(14, 0, 32);
    text-transform: uppercase;
    line-height: 120%;
    text-align: center;
    margin-bottom: 10px;
}

.form__text {
    text-align: center;
    margin-bottom: 20px;
}

.form__btns {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 10px;
}

.form__btn {
    min-height: 50px;
}

.form__date {
    display: flex;
    font-size: 93px;
    color: rgb(191, 152, 84);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 110%;
}

.form__month {
    font-size: 22px;
    font-weight: 400;
    text-transform: capitalize;
    font-family: var(--font-roboto);
    color: rgb(14, 0, 32);
}

.form__day-full, .form__time {
    flex: 1;
    text-align: center;
}

.form__range {
    display: flex;
    flex-direction: column;
    font-family: Cambria;
    font-style: italic;
    margin-bottom: 25px;
}

.form__range-value {
    font-size: 35px;
    line-height: 110%;
}

.form__range-label {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    line-height: 110%;
}

.form__range.fixed input,
.form__range.fixed .form__range-label {
    visibility: hidden;
}

.form__range.fixed .form__range-value {
    font-size: 40px;
    text-align: center;
}

@media(max-width: 539px) {
    .form fieldset {
        grid-template-columns: 1fr;
    }
   .form__date {
        font-size: 64px;
    } 
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    width: 100%;
}

input[type="range"]:focus {
    outline: none;
}

input[type="range"]::-webkit-slider-runnable-track {
    background-color: #000;
    border-radius: 5px;
    height: 5px;
    margin: 20px 0;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; 
    appearance: none;
    margin-top: -12.5px; 
    background-color: var(--color-gold);
    border-radius: 50%;
    height: 30px;
    width: 30px;
}

input[type="range"]:focus::-webkit-slider-thumb {
    outline: none;
}

input[type="range"]::-moz-range-track {
    background-color: #000;
    border-radius: 5px;
    height: 5px;
}

input[type="range"]::-moz-range-thumb {
    background-color: var(--color-gold);
    border: none;
    border-radius: 50%;
    height: 30px;
    width: 30px;
}

input[type="range"]:focus::-moz-range-thumb{
    outline: none;
}

.custom-input,
.custom-textarea {
    position: relative;
    flex: 1;

    display: flex;
    width: 100%;
    font-family: var(--font-roboto);
    font-size: 19px;
    line-height: 20px;
    color: #000;
}

.custom-input label,
.custom-textarea label {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.custom-input input,
.custom-textarea textarea {
    width: 100%;
    min-height: 38px;
    padding: 7px 35px;
    font: inherit;
    color: inherit;
    outline: none;
    background-color: transparent;
    transition: border 0.3s ease;
    border: 2px solid #b39658;
    border-radius: 40px;
    margin-bottom: 10px;
}

.custom-input input::-webkit-input-placeholder,
.custom-textarea textarea ::-webkit-input-placeholder {
    color: #000;
}

.custom-input input:hover,
.custom-textarea textarea:hover,
.custom-input input:focus,
.custom-textarea textarea:focus {
    border-color: #000;
}

.custom-textarea textarea {
    height: 203px;
}

.custom-toggle {
    position: relative;
    display: flex;
    width: 100%;
}

.custom-toggle input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    clip: rect(0 0 0 0);
}

.custom-toggle label {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.custom-toggle__label {
    font-size: 14px;
    font-family: "Cambria";
    font-style: italic;
    line-height: 120%;
}

.custom-toggle__link {
    text-decoration: underline;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.custom-toggle a:hover {
    opacity: 0.6;
}

.custom-toggle__icon {
    margin-right: 8px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 2px solid #b39658;
    border-radius: 50%;
    flex-shrink: 0;
}

.custom-toggle__icon svg {
    width: 32px;
    height: 32px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-toggle input:checked + .custom-toggle__icon svg {
    opacity: 1;
}

.accept-checkbox {
    display: grid;
}

.accept-checkbox .input-error {
    order: 2;
    margin-left: 30px;
}

.input-error {
    font-size: 14px;
    font-family: "Cambria";
    font-style: italic;
    line-height: 120%;
}

.custom-input .input-error {
    margin: -8px 30px 8px;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;

    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    transform: scale(1.2);
    visibility: hidden;
    opacity: 0;

    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;

    pointer-events: none;

    -ms-overflow-style: none;
    scrollbar-width: none;
}

.modal::-webkit-scrollbar {
    display: none;
}

.modal__wrapper {
    position: relative;

    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100%;
    padding: 40px;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(47, 34, 60, .97);
    cursor: pointer;
}

.modal__content {
    position: relative;
    width: 100%;
    max-width: 730px;
    padding: 25px;
    border: 2px solid #b39658;
    background-color: #e9e3df;
}

.modal__title {
    font-size: 24px;
    font-family: "Times New Roman";
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 10px;
}

.modal__subtitle {
    text-align: center;
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 20px;
}

#form form {
    width: 80%;
    margin: 0 auto;
}

.modal__close {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    cursor: pointer;
    background-color: transparent;
}

.modal__close:hover,
.modal__close:focus {
    background-color: var(--color-navy);
}

.modal.active {
    transform: scale(1);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.modal--hot .modal__overlay {
    background-color: rgba(56, 42, 12, 0.45);
}

.modal--hot .modal__content {
    padding: 0;
    background-color: #fff;
    border-radius: 8px;
    border: none;
}

.modal--hot .modal__title {
    font-weight: 700;
    font-size: 39px;
    line-height: 110%;
    color: #000;
    text-align: center;
    margin-bottom: 13px;
}

.modal--hot .modal__subtitle {
    font-size: 20px;
    line-height: 110%;
    text-align: center;
    color: #5B5B5B;
    font-weight: 700;
    margin-bottom: 23px;
}

@media(max-width : 767px) {
    .modal__wrapper {
        padding: 40px 15px;
    }

    .modal__content {
        padding: 50px 15px 15px;
    }
}

.hot-hours-slide {
    background-image: url(/assets/theme/img/hours-bg.png);
    background-size: cover;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    min-height: 440px;
}

.hot-hours-slide.empty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hot-hours-slide__subtitle {
    font-weight: 700;
    font-size: 39px;
    text-align: center;
    color: #000000;
    margin-bottom: 40px;
}

.hot-hours-slide__text {
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    color: #5B5B5B;
    margin: 0 0 10px;
    max-width: 360px;
}

.hot-hours-slide__links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hot-hours-slide__links a {
    font-weight: 700;
    font-size: 20px;
    line-height: 200%;
    text-align: center;
    color: var(--color-gold);
    text-wrap: nowrap;
    transition: color 0.3s ease;
}

.hot-hours-slide__links a:hover {
    color: #000;
}

.hot-hours-slide__date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-bottom: 20px;
}

.hot-hours-slide__day {
    font-weight: 700;
    font-size: 30px;
    line-height: 110%;
    text-align: center;
    color: #4D4D4D;
    border: 1px solid var(--color-gold);
    border-radius: 8px;
    padding: 8px 15px;
    white-space: nowrap;
}

.hot-hours-slide__time {
    position: relative;
    font-size: 50px;
    line-height: 110%;
    color: var(--color-gold);
}

.hot-hours-slide__time:after,
.hot-hours-slide__sale:after {
    content: "";
    width: 6px;
    height: 6px;
    background: #CCBD9E;
    display: block;
    position: absolute;
    transform: translate(-50%,-50%) rotate(-45deg);
    left: -25px;
    top: 50%;
}

.hot-hours-slide__sale {
    position: relative;
    font-weight: 700;
    font-size: 30px;
    line-height: 110%;
    text-align: center;
    color: #4D4D4D;
    border: 1px solid var(--color-gold);
    border-radius: 8px;
    padding: 8px 15px;
    white-space: nowrap;
}

.hot-hours-slide__title {
    font-size: 20px;
    line-height: 110%;
    text-align: center;
    text-wrap: balance;
    color: #5B5B5B;
    margin-bottom: 20px;
}

.hot-hours-slide__price {
    min-width: 300px;
    width: fit-content;
    margin: 0 auto 15px;
    height: 50px;
    display: flex;
    align-items: center;
    font-size: 24px;
    line-height: 110%;
    position: relative;
    text-align: center;
    color: #4D4D4D;
    border: 1px solid var(--color-gold);
    border-radius: 8px;
    padding: 8px 15px;
    white-space: nowrap;
}

.hot-hours-slide__price:after {
    content: "";
    display: block;
    background: var(--color-gold);
    width: 1px;
    height: 34px;
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.hot-hours-slide__price-old {
    text-decoration-line: line-through;
    display: flex;
    justify-content: center;
    flex: 1;
}

.hot-hours-slide__price-now {
    display: flex;
    justify-content: center;
    flex: 1;
}

.hot-hours-slide__btn {
    width: 280px;
    height: 49px;
    background: var(--color-gold);
    opacity: 0.89;
    border-radius: 45px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Roboto Condensed";
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    text-transform: uppercase;
    color: #FFFFFF;
    outline: none;
    cursor: pointer;
    margin: 0 auto 20px;
    transition: opacity 0.3s ease;
}

.hot-hours-slide__btn:hover {
    opacity: 1;
}

.hot-hours-slider .swiper-button-lock {
    opacity: 0;
    pointer-events: none;
}

.hot-hours-slider .swiper {
    overflow: visible;
}

.hot-hours-slider .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    background-color: #c4c4c4;
    box-shadow: none;
    transition: background-color .3s ease;
    opacity: 1;
}

.hot-hours-slider .swiper-pagination-bullet-active {
    width: 11px;
    height: 11px;
    background-color: var(--color-gold);
    box-shadow: none;
}

.hot-hours-slider .slider-btn {
    position: absolute;
    top: 50%;
    width: 61px;
    height: 87px;
    z-index: 10;
}

.hot-hours-slider .slider-btn.next {
    right: 0;
    transform: translate(70%,-50%);
}

.hot-hours-slider .slider-btn.prev {
    left: 0;
    transform: translate(-70%,-50%);
}

@media(max-width: 767px) {
    .hot-hours-slide__date {
        flex-direction: column;
        gap: 20px;
    }
    
    .hot-hours-slide__time:after,
    .hot-hours-slide__sale:after {
        display: none;
    }
}
@media(max-width: 359px) {
    .hot-hours-slide {
        padding: 30px 10px;
    }
    .hot-hours-slide__price {
        min-width: 100%;
        font-size: 20px;
        padding: 5px 10px;
    }
    .hot-hours-slide__btn {
        width: 100%;
    }
}

[data-slider-small] {
    position: relative;
}

.slider-btn.small {
    width: 61px;
    height: 87px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    z-index: 20;
    padding: 0;
}

.slider-btn.small.gold {
    width: 31px;
    height: 177px;
    background-color: transparent;
}

.slider-btn.small svg {
    width: 40px;
    height: 40px;
}

.slider-btn.small.gold svg {
    width: 100%;
    height: 100%;
}

.slider-btn.small.prev {
    left: -10px;
    transform: translate(-100%,-50%);
}

.slider-btn.small.next {
    right: -10px;
    transform: translate(100%,-50%);
}

@media(max-width: 1079px) {
    [data-slider-small] {
        position: relative;
        margin-left: 60px;
        margin-right: 60px;
    }
}

.certificats__title {
    font-family: "Times New Roman";
    font-size: 42px;
    line-height: 110%;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 50px;
    text-align: left;
}

.certificats__subtitle {
    font-family: "Times New Roman";
    font-size: 30px;
    line-height: 110%;
    font-weight: 700;
    text-transform: uppercase;
    color: #0e0020;
    margin: 0 0 25px;
    text-align: left;
}

.certificats__text {
    font-family: Cambria;
    font-size: 24px;
    line-height: 120%;
    font-style: italic;
    color: #0e0020;
    margin: 0 0 40px;
    text-wrap: balance;
}

.certificat-card {
    flex: 1;
}

.certificat-card__img {
    width: 100%;
    aspect-ratio: 435 / 300;
    margin-bottom: 15px;
}

.certificat-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.certificat-card__title {
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
    font-family: "Cambria";
    font-size: 25px;
    line-height: 110%;
    color: #0e0020;
}

.certificat-card__text {
    font-family: Cambria;
    font-size: 24px;
    line-height: 120%;
    margin: 15px 0;
    text-align: center;
}

.certificat-card__text .time {
    margin-right: 30px;
}

.certificat-card__text .old-price {
    margin-left: 30px;
    text-decoration-line: line-through;
}

.certificat-card--sale .price {
    font-size: 34px;
    color: red;
}

.certificat-card--sale .btn {
    border-color: red;
    color: red;
}

.certificat-card--sale .btn:hover,
.certificat-card--sale .btn:focus {
    background-color: transparent;
    border-color: #000;
    color: #000;
}

.certificat-card .btn--black {
    width: 100%;
}

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

.text-center {
    text-align: center;
}

.color-gold {
    color: var(--color-gold);
}

.section__block {
    display: flex;
    gap: 40px;
}

@media(max-width: 767px) {
    .section__block {
        flex-direction: column;
    }
}

.section__block.border {
    border-bottom: 4px solid #000;
}

.section__left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section__right {
    flex: 1;
    display: flex;
    align-items: flex-end;
}

.section__img {
    width: 100%;
}

.section__img img {
    width: 100%;
}

.mb-80 {
    margin-bottom: 80px;
}

.w-auto {
    width: fit-content;
    margin: 0 auto;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

@media(max-width: 1380px) {
    .grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 1079px) {
    
}

@media(max-width: 767px) {
    .grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 559px) {
    .grid-6,
    .grid-4,
    .grid-3 {
        grid-template-columns: 1fr;
    }
}


.review__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.review__item {
    padding-top: 15px;
    border-top: 2px solid var(--color-gold);
}

.review__item:first-child {
    border: none;
}

.review__author {
    font-size: 20px;
}

.review__author::after {
    content: "";
    width: 20%;
    height: 2px;
    display: block;
    margin: 5px 0;
    background-color: var(--color-gold);
}

.review__text {
    font-size: 15px;
}

.subscription .center {
    padding-top: 100px;
    padding-bottom: 100px;
}

.subscription__title {
    font-family: "Roboto Condensed";
    font-size: 30px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    text-align: left;
}

.subscription__wrap {
    display: flex;
    gap: 30px;
}

.subscription__img {
    width: 100%;
    max-width: 323px;
}

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

.subscription__text {
    font-family: "Roboto Condensed";
    font-size: 20px;
    line-height: 110%;
    margin-bottom: 20px;
}

.subscription__price {
    font-size: 30px;
    font-family: "Times New Roman";
    font-weight: 700;
    margin-bottom: 15px;
}

.subscription__link {
    display: block;
    border: none;
    background-color: transparent;
    padding: 0;
    margin-bottom: 30px;
    color: rgb(51, 122, 183);
    text-decoration: underline;
    font-family: "Roboto Condensed";
    font-size: 20px;
    line-height: 110%;
    text-align: left;
    cursor: pointer;
}

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

.subscription__btns .btn {
    min-height: 40px;
    font-size: 20px;
}

@media(max-width:767px) {
    .subscription__wrap {
        flex-direction: column;
    }
}

.page-title {
    color: var(--color-gold);
    text-align: left;
    font-size: 30px;
    margin-bottom: 50px;
}

.subscription-card {
    display: grid;
    grid-template-columns: 1fr 1fr 285px;
    grid-template-rows: 1fr max-content;
    grid-template-areas: "img title price"
        "img text btn";
    gap: 20px;
    margin-bottom: 50px;
}

.subscription-card__img {
    grid-area: img;
    max-width: 300px;
}

.subscription-card__img img {
    width: 100%;
}

.subscription-card__title {
    grid-area: title;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.01em;
    font-family: "Times New Roman";
    text-transform: uppercase;
    line-height: 110%;
}

.subscription-card__text {
    grid-area: text;
    font-family: "Roboto Condensed","Arial",sans-serif;
    font-size: 16px;
    line-height: 110%;
    align-self: end;
}

.subscription-card__price {
    grid-area: price;
    font-family: "Roboto Condensed","Arial",sans-serif;
    font-size: 45px;
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 110%;
    text-align: center;
}

.subscription-card .btn {
    grid-area: btn;
    min-height: 40px;
    align-self: end;
    width: 100%;
    font-size: 25px;
}

@media(max-width: 767px) {
    .subscription-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas: "img"
            "title"
            "text"
            "price"
            "btn";
    }

    .subscription-card__title {
        text-align: center;
    }
    
    .subscription-card__text {
        text-align: center;
    }
}

.discount-card {
    display: grid;
    gap: 20px;
    grid-template-columns: 3fr 4fr;
    border-bottom: 3px solid #444;
    padding-bottom: 25px;
    margin-bottom: 30px;
}

.discount-card__info {
    display: flex;
    flex-direction: column;
}

.discount-card__title {
    font-size: 28px;
    line-height: 110%;
    font-family: "Times New Roman";
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.discount-card__subtitle {
    font-size: 34px;
    line-height: 110%;
    font-family: "Times New Roman";
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.discount-card__text {
    font-size: 22px;
    line-height: 110%;
    font-family: "Roboto Condensed";
    font-weight: 600;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.discount-card .btn {
    width: fit-content;
    min-height: 40px;
}

@media(max-width: 767px) {
    .discount-card {
        grid-template-columns: 1fr;
    }

    .discount-card__info {
        align-items: center;
        text-align: center;
    }
}

.discount__title {
    color: #0e0020;
    font-family: "Roboto Condensed";
    font-size: 30px;
    font-weight: 700;
    line-height: 29.17px;
    letter-spacing: -0.33px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.discount .page-title {
    text-align: center;
    margin-bottom: 30px;
}

.discount__subtitle {
    font-family: "Cambria","Arial", sans-serif;
    font-size: 18px;
    font-style: italic;
    margin-bottom: 18px;
    font-weight: 500;
    color: var(--color-gold);
}

.discount__btns {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 10px;
}

.discount__btns .btn {
    min-height: 40px;
}

.reviews .btn {
    width: fit-content;
    margin: 0 auto;
    min-height: 40px;
}

.reviews-title {
    margin-bottom: 20px;
    font-size: 38px;
    text-align: left;
}

.reviews-slider-img {
    height: auto;
}

.reviews-slider-video {
    aspect-ratio: 16 / 9
}

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

.reviews-slider-video iframe {
    width: 100%;
    height: 100%;
}

.reviews-slider-text {
    font-size: 15px;
}

.reviews-slider-text .review-author {
    font-size: 20px;
    position: relative;
}

.reviews-slider-text .review-author::after {
    content: "";
    display: block;
    width:19px;
    height: 2px;
    background-color: var(--color-gold);
    margin: 10px 0;
}

.reviews-block .btn {
    margin: 0 auto;
}

.reviews-widjet {
    display: flex;
    flex-direction: column;
    align-items: center;
}

[data-slider-small] .swiper-pagination {
    position: relative;
    bottom: 0;
    margin: 10px 0;
}

@media(max-width: 767px) {
    [data-slider-small] {
        margin-left: 0;
        margin-right: 0;
    }
    
    [data-slider-small] .slider-btn {
        display: none;
    }
    
    .reviews-slider-img,
    .reviews-slider-video {
        max-height: 70vh;
    }
}


.photo {
    width: 100%;
}

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

.fixed-btns {
    position: fixed;
    right: 10px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 20;
}

.fixed-btn {
    width: 50px;
    height: 50px;
    background-color: var(--color-gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
    border-radius: 50%;
    transition: color 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.fixed-btn svg {
    width: 65%;
    height: 65%;
}

.fixed-btn:hover {
    color: var(--color-gold);
    background-color: #000;
}

.thanks__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.thanks__left,
.thanks__right {
    display: flex;
    flex-direction: column;
}

.thanks__left {
    align-items: center;
}

.thanks__title {
    font-size: 34px;
    font-family: "Times New Roman";
    color: rgb(14, 0, 32);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    text-align: center;
    margin: 0 0 25px;
}

.thanks__text {
    font-size: 25px;
    font-family: "Roboto Condensed";
    color: rgb(14, 0, 32);
    line-height: 1.2;
}
.thanks__text .small {
    font-size: 19px;
}

.thanks__text p {
    margin: 0 0 25px;
}

.thanks__text a:hover {
    color: var(--color-gold);
}

.thanks__left .thanks__text {
    text-align: center;
}

.thanks__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thanks__sale-img {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 1em;
    margin-left: 16px;
}

.thanks__sale-img img {
    width: 80px;
    height: 80px;
    position: absolute;
    top:50%;
    left: 0;
    transform: translateY(-50%);
}

.thanks .btn {
    margin: 0 auto 25px;
}

.thanks__socials {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.thanks__socials p {
    font-size: 25px;
    font-family: "Roboto Condensed";
    color: var(--color-gold);
    line-height: 1.2;
    margin: 0;
}

.thanks__socials .social-link {
    width: 50px;
    height: 42px;
}

@media(max-width: 999px) {
    .thanks__wrap {
        grid-template-columns: 1fr;
    }
}
@media(max-width: 399px) {
    .thanks__sale-img {
        height: 3em;
    }
}

.page-error__wrap {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    margin-bottom: 80px;
}

.page-error__block {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-error__title {
    font-size: 29px;
    line-height: 26px;
    text-align: center;
    color: #0E0020;
    font-weight: 700;
    margin: 15px 0;
}

.page-error__text {
    font-size: 26px;
    line-height: 28px;
    color: #0E0020;
    margin-bottom: 16px;
    margin-top: 17px;
}

.page-error__socials {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 37px;
}

.page-error__socials p {
    font-weight: 700;
    font-size: 31px;
    margin: 0;
}

.page-error__sales {
    min-height: 138px;
    background: linear-gradient(120.91deg, #ECE3DE -129.73%, rgba(255, 255, 255, 0) 192.67%), #FFFFFF;
    border-radius: 13px;
    padding: 14px 33px;
    color: #B2965C;
}

.page-error__sales-title {
    font-weight: 700;
    font-size: 29px;
    line-height: 29px;
    text-align: center;
    margin-bottom: 21px;
}

.page-error__sales-link {
    font-weight: 700;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.page-error__gold-text {
    font-size: 29px;
    line-height: 1.2;
    text-align: center;
    color: #B2965C;
    margin: 0 0 30px;
}

.page-error__btns {
    display: flex;
    justify-content: center;
    gap: 40px;
}

@media(max-width: 767px) {
    .page-error__wrap {
        flex-direction: column;
    }
}

@media(max-width: 539px) {
    .page-error__btns {
        flex-direction: column;
        gap: 20px;
    }
}

.btn--light {
    color: #fff;
    background: rgba(178, 150, 92, 0.89);
    border-color: rgba(178, 150, 92, 0.89);
}

.btn--light:hover,
.btn--light:focus {
    color: #fff;
    background: rgba(178, 150, 92, 0.6);
    border-color: rgba(178, 150, 92, 0.6);
}

.massage .btn:hover,
.massage .btn:focus {
    color: #fff;
}

.mb-100 {
    margin-bottom: 100px;
}

@media(max-width: 767px) {
    .mb-100 {
        margin-bottom: 40px;
    }
}

.massage .letters {
    display: none;
}

@media(max-width: 1079px) {
    .massage .letters {
        display: block;
    }
}

.massage-title {
    position: relative;
    font-weight: 700;
    text-align: right;
    color: #000000;
    min-width: 25%;
    width: fit-content;
    font-size: 40px;
    line-height: 110%;
    text-transform: none;
    margin-bottom: 40px;
    white-space: nowrap;
}

h1.massage-title {
    font-size: 50px;
}

.massage-title::after {
    content: attr(data-bg-text);
    font-weight: 700;
    font-size: 15vw;
    line-height: 1;
    color: #B2965C;
    opacity: 0.2;
    position: absolute;
    right: 15%;
    top: 50%;
    transform: translate(100%, -60%);
    z-index: -1;
    white-space: nowrap;
    pointer-events: none;
}

@media(max-width: 767px) {
    .massage-title {
        white-space: initial;
        text-align: left;
    }

    .massage-title br,
    .massage-title::after {
        display: none;
    }
}

@media(max-width: 579px) {
    .massage-title {
        font-size: 32px;
        padding-right: 40px;
    }

    h1.massage-title {
        font-size: 40px;
    }
}

.massage-text {
    font-size: 20px;
    line-height: 125%;
    text-align: justify;
    color: #5B5B5B;
    margin-bottom: 12px;
}

.massage-text .with-square {
    position: relative;
    display: inline-flex;
    align-items: baseline;
}

.massage-text .with-square::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    background-color: #B2965C;
    transform: translateY(-2px) rotate(-45deg);
    margin: 0 10px 0 0;
}

.massage-category-title {
    position: relative;
    font-weight: 700;
    font-size: 33px;
    line-height: 110%;
    color: #2F2F2F;
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 30px;
    margin-bottom: 20px;
}

.massage-category-title::after {
    content: "";
    height: 1px;
    flex: 1;
    background-color: #B2965C;
}

@media(max-width: 1380px) {
    .massage-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 579px) {
    .massage-cards {
        grid-template-columns: 1fr;
    }
}

.massage-card {
    position: relative;
    box-shadow: 0px 14px 18px rgba(0, 0, 0, 0.1);
    border-radius: 19px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 378px;
    display: flex;
    flex-direction: column;
    padding: 35px 25px;
    background-color: #EDEDED;
}

.massage-card-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.recommend-card .massage-card-img::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity:0.5;
    z-index: 2;
    transition: opacity 0.3s ease;
}


.recommend-card:has(.massage-card-link:hover) .massage-card-img::after {
     opacity:0.7;
}

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

.massage-card-num {
    font-weight: 700;
    font-size: 58px;
    line-height: 75px;
    text-align: right;
    text-transform: uppercase;
    color: #FFFFFF;
    opacity: 0.76;
    z-index: 3;
}

.massage-card-title {
    font-size: 20px;
    line-height: 130%;
    text-align: right;
    text-transform: uppercase;
    color: #0F0020;
    margin-bottom: 13px;
    font-weight: 700;
    z-index: 3;
    margin-top: auto;
    transition: color 0.3s ease;
}

.recommend-card:has(.massage-card-link:hover) .massage-card-title {
    color: #B2965C;
}

.massage-card-price {
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    text-align: right;
    color: #B2965C;
    margin-bottom: 16px;
    z-index: 3;
}

.massage-card-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    text-align: right;
    color: #B2965C;
    z-index: 3;
    transition: color 0.3s ease;
}

.recommend-card .massage-card-link {
    color: var(--color-dark);
}

.recommend-card .massage-card-link:hover {
    color: #B2965C;
}

.massage-card-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    cursor: pointer;
}

.massage-img {
    width: 100%;
    height: auto;
}

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

.massage-form {
    position: relative;
    grid-column: auto / span 2;
    padding: 24px;
}

.massage-form-img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.massage-form-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 1;
    color: #000000;
    margin-bottom: 26px;
}

.massage-form-subtitle {
    font-weight: 700;
    font-size: 21px;
    line-height: 1;
    color: #000000;
    margin-bottom: 6px;
    text-wrap: balance;
}

.massage-form-text {
    font-size: 18px;
    color: #626262;
    margin-bottom: 24px;
}

.massage-form--l .massage-form-title,
.massage-form--l .massage-form-subtitle,
.massage-form--l .massage-form-text {
    text-align: center;
}

.massage-form form {
    display: flex;
    flex-direction: column;
}

.massage-form  label {
    display: flex;
    flex-direction: column;
}

.massage-form .input-error {
    margin: -8px 0 8px;
}

.massage-form label.accept {
    flex-direction: row;
    flex-wrap: wrap;
}

.massage-form label.accept .input-error {
    order: 2;
    width: 100%;
    margin: 0;
}

.massage-form label.accept .accept-text {
    width: 80%;
}

.massage-form--l form {
    justify-content: center;
    margin: 0;
    padding: 0;
    border: none;
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 0 20px;
}

.massage-form input:not([type="checkbox"]) {
    width: 100%;
    height: 49px;
    background: rgba(255, 255, 255, 0.89);
    border-radius: 65px;
    border: none;
    font-weight: 700;
    font-size: 17px;
    line-height: 20px;
    color: #3F3F3F;
    padding: 0 26px;
    font-family: Times New Roman,Times,serif;
    outline: none;
    margin-bottom: 14px;
    max-width: 280px;
}

.massage-form .btn {
    width: 100%;
    height: 49px;
    width: 280px;
}

@media(max-width: 1080px) {
    .massage-form--l form {
       display: flex;
       align-items: center;
    }
}

@media(max-width: 579px) {
    .massage-form {
        grid-column: auto / span 1;
    }

    .massage-form-title {
        text-align: center;
    }
    
    .massage-form-subtitle {
        text-align: center;
    }
    
    .massage-form-text {
        text-align: center;
    }

    .massage-form form {
        align-items: center;
    }
}

.accept {
    max-width: 280px;
    display: flex;
    position: relative;
    cursor: pointer;
    margin-top: 15px;
    grid-column: -2 / -1;
}

.accept input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    clip: rect(0 0 0 0);
}

.accept-text {
    font-size: 17px;
    line-height: 1;
    color: #626262;
}

.accept-text a {
    color: var(--color-gold);
    transition: opacity 0.3s ease;
}

.accept-text a:hover {
    opacity: 0.6;
}

.accept-icon {
    position: relative;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    background-color: #fff;
    border: 1px solid #b39658;
    flex-shrink: 0;
}

.accept-icon::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 9px;
    border: solid #b89f6b;
    border-width: 0 2px 2px 0;
    transform: translate(-50%,-50%) rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.accept input:checked + .accept-icon::after {
    opacity: 1;
}

.massage-feature {
    font-size: 20px;
    line-height: 140%;
    color: #5B5B5B;
    padding-top: 50px;
    background-image: url(/assets/theme/img/stars.svg);
    background-repeat: no-repeat;
}

.massage-feature a {
    color: var(--color-gold);
    transition: opacity 0.3s ease;
}

.massage-feature a:hover {
    opacity: 0.6;
}

.massage-filter-btns {
    position: relative;
    margin-top: -70px;
    display: flex;
    gap: 30px;
    padding-left: 35%;
    margin-bottom: 80px;
}

@media(max-width: 767px) {
    .massage-filter-btns {
        margin-top: 0;
        gap: 20px;
        padding-left: 0;
    }
}

.massage-filter-btns .btn {
    flex: 1;
}

@media(max-width: 579px) {
    .massage-filter-btns {
        flex-wrap: wrap;
        margin-bottom: 40px;
    }

    .massage-filter-btns .btn {
        font-size: 14px;
        font-weight: 400;
    }
}

.massage-filter-reset {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    line-height: 130%;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--color-gold);
    padding: 0;
    transition: opacity 0.3s ease;
}

@media(max-width: 579px) {
    .massage-filter-reset {
        position: absolute;
        top: -20px;
        right: 0;
        transform: translateY(-100%);
    }
}

.massage-filter-reset::before {
    content: "";
    display: block;
    width: 22px;
    height: 24px;
    background-image: url(/assets/theme/img/reset.svg);
}

.massage-filter-reset:hover {
    opacity: 0.6;
}

.massage-service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.massage-service-item {
    background: rgba(250, 248, 248, 0.5);
    border-radius: 19px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr repeat(3, 160px);
    gap: 10px;
    align-items: center;
    padding: 20px;
}

.massage-service-item.hidden {
    display: none;
}

.massage-service-item.not-visible {
    display: none;
}

.massage-service-name {
    font-size: 20px;
    line-height: 130%;
    text-transform: uppercase;
    color: #464646;
    transition: color 0.3s ease;
}

.massage-service-item:hover .massage-service-name {
    color: #B2965C;
}
.massage-service-prices {
    grid-column: 2 / -1;
    display: grid;
    grid-template-columns: subgrid;
    justify-self: center;
}

.massage-service-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    color: #B2965C;
    justify-self: center;
}

.massage-more {
    display: flex;
    align-items: center;
    gap: 80px;
    margin: 20px 0;
}

.massage-more .btn-text {
    flex-shrink: 0;
}

.is-full .massage-more .btn-more {
    display: none;
}

@media(max-width: 1239px) {
    .massage-service-item {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .massage-service-name {
        grid-column: 1 / -1;
    }
    .massage-service-prices {
        grid-column: 1 / -1;
    }
}

@media(max-width: 579px) {
    .massage-service-item {
        grid-template-columns: 1fr;
    }
    .massage-more {
        gap: 20px;
        margin: 10px 0;
    }
}

.btn-more,
.massage-more .btn-text {
    font-size: 24px;
    line-height: 140%;
    text-align: center;
    text-decoration-line: underline;
    color: #B2965C;
    white-space: nowrap;
    cursor: pointer;
    background: transparent;
    padding: 0;
    border: none;
    font-family: "Times New Roman";
    transition: opacity 0.3s ease;
}

.btn-more:hover,
.massage-more .btn-text:hover {
    opacity: 0.6;
}

.massage-sale {
    display: flex;
    gap: 60px;
    color: #5B5B5B;
    margin-bottom: 40px;
}

.massage-sale-left {
    flex: 1;
    min-height: 305px;
    background: rgba(255, 255, 255, 0.74);
    border-radius: 14px;
    padding: 40px 32px 40px 100px;
}

.massage-sale-title {
    font-weight: 700;
    font-size: 35px;
    line-height: 1;
    color: #B2965C;
    margin-bottom: 25px;
}

.massage-sale-left .divider {
    width: 85%;
    margin-bottom: 20px;
}

.massage-sale-subtitle {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}

.massage-sale-subtitle::before {
    content: "";
    width: 10px;
    height: 10px;
    border: 1px solid #B2965C;
    display: block;
    position: absolute;
    border-radius: 50%;
    top: 4px;
    left: -28px;
}

.massage-sale-text {
    font-size: 16px;
}

.massage-sale-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.massage-sale-discount {
    font-weight: 700;
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.massage-sale-right .btn {
    height: 57px;
    width: 240px;
    margin-bottom: 35px;
}

.massage-sale-btn {
    width: 240px;
    height: 57px;
    margin: 0 auto;
}

@media(max-width: 1080px) {
    .massage-sale-left {
        padding-left: 32px;
    }
}

@media(max-width: 767px) {
    .massage-sale {
        flex-direction: column;
    }

    .massage-sale-right {
        align-items: center;
    }
}

[class*="map-copyrights-promo"] {
    opacity: 0;
    pointer-events: none;
}

.socials-l {
    display: flex;
    justify-content: center;
    gap: 46px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.text-content ul .socials-l__item::before {
    display: none;
}

.socials-l__item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.socials-l__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background-color: var(--color-gold);
    transition: background-color 0.3s ease;
    outline: 1px solid #000;
    outline-offset: 7px;
    color: #fff;
}

.socials-l__icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
    max-width: none;
    margin: 0;
}

.socials-l a:hover  .socials-l__icon {
    background-color: transparent;
}

.socials-l a:hover  .socials-l__icon img {
    filter: none;
}

.socials-l__text {
    color: #0e0020;
    font-family: "Roboto Condensed";
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.14px;
    text-decoration: underline;
}

.reviews-form {
    position: relative;
}

.reviews-form__textarea label {
    display: flex;
    position: relative;
}

.reviews-form__textarea .input-error {
    position: absolute;
    bottom: 0;
    left: 30px;
}

.reviews-form__textarea textarea {
    height: 40vh;
    width: 100%;
    padding: 16px;
    outline: none;
    font-family: "Roboto Condensed";
    font-size: 16px;
    background-color: transparent;
    resize: none;
    border: 2px solid #000;
    border-bottom: 0;
    color: #000;
}

.reviews-form fieldset {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0 10px;
    border: none;
    width: 65%;
    transform: translateY(50%);
}

.reviews-form fieldset label {
    position: relative;
    flex: 1;
}

.reviews-form fieldset .input-error {
    position: absolute;
    bottom: -8px;
    transform: translateY(100%);
    left: 0;
}

.reviews-form input {
    padding: 14px;
    width: 100%;
    font-family: "Roboto Condensed";
    font-size: 16px;
    outline: none;
    border-radius: 50px;
    background: none;
    border: 2px solid #000;
}

.reviews .reviews-form__btn {
    min-height: 53px;
    transform: translateY(50%);
}

@media(max-width: 1079px) {
    .reviews-form {
        padding-bottom: 100px;
    }
    
    .reviews-form .border-bottom {
        border-left: 2px solid #000;
        border-right: 2px solid #000;
    }
    
    .reviews-form .border-line {
        display: block;
    }
    
    .reviews-form fieldset {
        width: 100%;
    }
    
   .reviews .reviews-form__btn {
        position: absolute;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
    } 
}

@media(max-width: 767px) {
    .reviews-form__textarea textarea {
       margin-bottom: 20px;
    }
    
    .reviews-form__textarea textarea {
        border-bottom: 2px solid #000;
        height: 34vh;
    }
    
    .reviews-form {
        padding-bottom: 0;
    }
    
    .reviews-form .border-bottom {
        border: none;
        flex-direction: column;
        gap: 20px;
    }
    
    .reviews-form .border-line {
        display: none;
    }
    
    .reviews-form fieldset {
        width: 100%;
        transform: none;
        flex-direction: column;
        padding: 0;
    }
    
   .reviews .reviews-form__btn {
        position: relative;
    } 
}


/* =================================== Бизнес с нами =========================*/

.gold-page {
    background: var(--color-gold);
}

.color-white{
    color: #fff;
}

.gold-page .letter-center {
  color: var(--color-gold);
  text-shadow: 0px 5px 30px rgba(0,0,0,0.3);
  -webkit-background-clip: text;
     -moz-background-clip: text;
          background-clip: text;
}

.gold-page .header-btns .btn {
    border-color: #000;
}

.gold-page .btn--black:hover {
    background-color: #fff;
}

.gold-page .header-btns .btn:hover,
.gold-page .header-btns .btn:focus {
    border-color: #fff;
    color: #fff;
}

.gold-page .header-phones a:hover {
    color: #fff;
}

.gold-page .social-link svg .icon,
.gold-page .social-link svg .border {
    color: #000;
}

.gold-page .social-link:hover svg .icon,
.gold-page .social-link:hover svg .border {
    color: #fff;
}

.gold-page .list-menu-bg,
.gold-page .list-menu-img {
    max-width: 30%;
    height: 82vh;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.6s ease-out;
}

.gold-page .list-menu-bg img,
.gold-page .list-menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gold-page .left-menu a {
    padding: 10px 0;
    cursor: pointer;
    transition: font-size 0.3s ease;
}

.gold-page .left-menu a::before {
    transition: font-size 0.3s ease, padding 0.3s ease;
}

.gold-page .left-menu a:hover, 
.gold-page .left-menu a:focus {
    color: #000;
}

.gold-page .left-menu a:hover::before, 
.gold-page .left-menu a:focus::before, 
.gold-page .left-menu a.active::before {
    color: #fff;
}

.gold-page .left-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 63%;
    height: 82vh;
    max-width: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.6s ease-out;
}

.gold-page .wave {
    filter: brightness(0) invert(1);
}

.gold-page .letters .letter {
    color: #fff;
}

@media(max-width: 1079px) {
    .gold-page .list-menu {
        display: none;
    }
    
    .gold-page .business-block .wave {
        display: block;
        margin: 70px 0;
    }
}

.gold-page .list-menu-wrap.left-position .list-menu-bg,
.gold-page .list-menu-wrap.left-position .list-menu-img  {
    transform: translate(300%, -50%);
}

.gold-page .list-menu-wrap.left-position .left-menu {
    transform: translate(calc(-50% - 17vw), -50%);
    padding: 130px 0 50px;
}

.gold-page .list-menu-wrap.left-position .left-menu a {
    font-size: 12px;
}

.gold-page .list-menu-wrap.left-position .left-menu a::before {
    font-size: 42px;
    padding-right: 15px;
}

.gold-page .list-menu:has(.left-position) .h-100  {
    min-height: 0;
    padding: 0;
}

.business-block {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 0;
}

.business-block.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 5;
}

.business-content {
    transform: translateY(100%);
    opacity: 0;
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.business-block.active .business-content {
    transform: translateY(0);
    opacity: 1;
} 

.business-block.up .business-content {
    transform: translateY(-100%);
    opacity: 0;
} 

.business-title {
    font-size: 30px;
    line-height: 120%;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.business-subtitle {
    font-size: 38px;
    line-height: 120%;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.business-text {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 120%;
    font-style: italic;
    font-family: "Cambria", "Arial", sans-serif;
}

.business-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.business-img {
    width: 100%;
    height: auto;
    max-height: 40vh;
}

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

.business-desc {
    max-height: 40vh;
    overflow-y: auto;
}

.business-wrap.small .business-desc,
.business-wrap.small .business-img {
    max-height: 20vh;
}

.business-wrap.reverse .business-img {
    order: 2;
}

.business-desc p {
    margin: 0 0 16px;
    font-size: 16px;
}

.business-btn {
    margin-left: auto;
    margin-top: 20px;
}

.business-note {
    margin-top: 20px;
    font-size: 16px;
    line-height: 120%;
    font-style: italic;
    font-family: "Cambria", "Arial", sans-serif;
}

.business-note a:hover {
    color: #fff;
}

.business-slider {
    position: relative;
    padding: 0 50px;
    margin-bottom: 40px;
}

.business-slider::after {
    content: "";
    position: absolute;
    top: 100px;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
}

.business-slider .slider-btn {
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 5;
}

.business-slider .slider-btn {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 100px;
    transform: translateY(-50%);
}

.business-slider .slider-btn.prev {
    left: 0;
}

.business-slider .slider-btn.next {
    right: 0;
}

.business-slide {
    display: flex;
    flex-direction: column;
    padding: 0 15px;
}

.business-slide-img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 5px;
    height: 200px;
}

.business-slide-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}

.business-slide-num {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    background-color: #0f0021;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 29px;
    color: #fff;
}

.business-slide-text {
    color: #0e0020;
    font-family: var(--font-roboto);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.22px;
    text-align: center;
    text-wrap: balance;
}

.business-mob-btn {
    background-color: transparent;
    border: none;
    padding: 15px;
    color: #000;
    cursor: pointer;
    font-family: var(--font-roboto);
    display: none;
    align-items: center;
    text-align: left;
    gap: 30px;
    font-size: ;
}

.business-mob-num {
    font-size: 85px;
    font-family: 'Times New Roman';
    font-weight: 700;
    line-height: 0.8;
}

.business-mob-title {
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.4;
}

.business-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.business-slider .swiper-pagination {
    display: none;
}

@media(max-width: 1079px) {
    .business-content {
        transform: translateY(0);
        opacity: 1;
    }
    
    .business-wrap {
        grid-template-columns: 1fr;
    }
    
    .business-wrap.small .business-desc,
    .business-wrap.small .business-img {
        max-height: 40vh;
    }
    
    .business-wrap.reverse .business-img {
        order: 0;
    }

    .business-img {
        margin: 0 -15px;
        width: calc(100% + 30px);
    }

    .business-bottom {
        grid-template-columns: 1fr;
    }
    
    .business-btn {
        margin: 0 auto;
    }
    
    .business-mob-btn {
        display: flex;
    }
    
    .business-mob-btn.active {
        color: #fff;
    }
    
    .business-title,
    .business-subtitle,
    .business-text {
        display: none;
    }
    
    .business-block {
        display: block;
        height: 0;
        overflow: hidden;
        padding: 0 15px;
        position: relative;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        z-index: 1;
        transition: height 0.5s ease;
    }
    
    .business-block.active {
        height: auto;
    }
    
    .business-slider {
        padding: 0;
    }
    
    .business-slider .swiper-pagination {
        display: block;
        position: relative;
        bottom: 0;
        margin-top: 20px;
    }
    
     .business-slider .swiper-pagination-bullet-active {
        background-color: #fff;
        box-shadow: none;
    }
    
    .business-slider .slider-btn,
    .business-slide-num,
    .business-slider::after {
        display: none;
    }
    
    .business-slide {
        padding: 0;
        gap: 20px
    }
    
    .business-slide-img {
        height: 40vh;
        width: calc(100% + 30px);
        margin: 0 -15px;
    }
    
    .business-slide-img img {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    
    .business-slide-text {
        font-size: 20px;
        text-align: left;
    }
    
    .business-desc p,
    .business-desc ul,
    .business-note {
        font-size: 20px;
        line-height: 1.3;
    }
}

/* ===== GEO PAGES (Ховрино и кластер СЗАО) — добавлено 2026-06-26, ред. v2 ===== */

/* --- HERO: рамка акцентного цвета + центровка H1 и подзаголовка --- */
.geo-hero{max-width:860px;margin:0 auto 48px;text-align:center;border:2px solid #B2965C;border-radius:18px;padding:30px 44px;background:rgba(255,255,255,.55);}
.geo-page .geo-title.massage-title{text-align:center;width:fit-content;max-width:100%;white-space:normal;margin:0 auto 14px;}
.geo-page .geo-title.massage-title::after{display:none;}
.geo-hero .geo-hero-sub{text-align:center;margin:0;}

.geo-lead{max-width:1100px;margin:0 auto 50px;font-size:17px;line-height:1.65;}
.geo-lead p{margin:0 0 14px;}
.geo-block{max-width:1100px;margin:0 auto 56px;}
.geo-block > h2,.geo-section > h2{font-size:28px;font-weight:700;margin:0 0 22px;text-align:center;}

.geo-section{max-width:1100px;margin:0 auto 56px;background:rgba(255,255,255,.55);border:2px solid #B2965C;border-radius:18px;padding:36px 44px;}
.geo-section > p{font-size:16px;line-height:1.6;margin:0 0 16px;}
.geo-section ul{list-style:none;padding:0;margin:0;}
.geo-section ul li{position:relative;padding:11px 0 11px 28px;border-bottom:1px solid #f1ebe3;font-size:16px;line-height:1.5;}
.geo-section ul li:last-child{border-bottom:none;}
.geo-section ul li::before{content:"";position:absolute;left:3px;top:19px;width:8px;height:8px;border-radius:50%;background:#B2965C;}
.geo-prices ul li{display:flex;justify-content:space-between;gap:16px;padding-left:0;align-items:baseline;}
.geo-prices ul li::before{display:none;}
.geo-prices ul li strong{color:#B2965C;white-space:nowrap;}

/* --- masters --- */
.geo-masters-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(238px,1fr));gap:28px;margin-top:6px;}
.geo-master{background:#fff;border-radius:16px;overflow:hidden;box-shadow:0 6px 24px rgba(120,90,60,.10);display:flex;flex-direction:column;}
.geo-master-img{aspect-ratio:3/4;overflow:hidden;background:#eee;}
.geo-master-img img{width:100%;height:100%;object-fit:cover;object-position:top center;display:block;}
.geo-master-body{padding:18px 22px 24px;}
.geo-master-name{font-size:22px;font-weight:700;text-transform:uppercase;line-height:1.1;padding-bottom:12px;margin-bottom:12px;position:relative;}
.geo-master-name::after{content:"";position:absolute;left:0;bottom:0;width:36px;height:1px;background:#B2965C;}
.geo-master-sub{font-size:13px;font-style:italic;color:#9a7b5a;margin-bottom:12px;}
.geo-master-desc{font-size:14px;line-height:1.55;}

/* --- faq: фикс ширины + плавность раскрытия --- */
.geo-faq{width:100%;}
.geo-faq details{width:100%;box-sizing:border-box;background:#fff;border-radius:12px;margin-bottom:14px;box-shadow:0 4px 18px rgba(120,90,60,.07);overflow:hidden;}
.geo-faq summary{padding:20px 58px 20px 26px;cursor:pointer;font-weight:600;font-size:17px;list-style:none;position:relative;}
.geo-faq summary::-webkit-details-marker{display:none;}
.geo-faq summary::after{content:"+";position:absolute;right:26px;top:50%;transform:translateY(-50%);font-size:26px;line-height:1;color:#B2965C;font-weight:400;transition:transform .2s ease;}
.geo-faq details[open] summary::after{content:"\2013";}
.geo-faq details > p{padding:0 26px 22px;margin:0;font-size:15px;line-height:1.6;color:#555;}
@keyframes geoFaqOpen{from{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:translateY(0)}}
.geo-faq details[open] > p{animation:geoFaqOpen .28s ease;}

.geo-cta{display:flex;justify-content:center;text-align:center;margin-top:30px;}
.geo-cta-link{display:inline-block;color:#B2965C;font-weight:700;font-size:16px;}

/* ===== MOBILE ===== */
@media(max-width:767px){
  .geo-hero{padding:22px 18px;margin-bottom:34px;}
  .geo-page .geo-title.massage-title,
  .geo-page h1.geo-title.massage-title{font-size:26px;line-height:1.15;padding-right:0;}
  .geo-page .massage-category-title{white-space:normal;font-size:23px;line-height:1.15;gap:14px;}
  .geo-lead{font-size:16px;margin-bottom:30px;}
  .geo-block,.geo-section{margin-bottom:34px;}
  .geo-section{padding:24px 18px;border-radius:14px;}
  .geo-block > h2,.geo-section > h2{font-size:22px;}

  /* мастера: 1 на ряд, горизонтальная компактная карточка */
  .geo-masters-grid{grid-template-columns:1fr;gap:16px;}
  .geo-master{flex-direction:row;align-items:stretch;}
  .geo-master-img{aspect-ratio:auto;width:42%;max-width:150px;flex-shrink:0;}
  .geo-master-body{padding:14px 16px;flex:1;}
  .geo-master-name{font-size:18px;}

  .geo-faq summary{font-size:15px;padding:16px 48px 16px 18px;}
}

/* footer geo links (гео-кластер по районам/метро) */
.footer-geo{display:flex;flex-wrap:wrap;align-items:center;gap:10px 18px;padding:16px 0 4px;font-size:15px;}
.footer-geo-title{font-weight:600;color:#b39658;margin-right:2px;}
.footer-geo a{color:inherit;opacity:.82;text-decoration:none;transition:opacity .2s,color .2s;}
.footer-geo a:hover{opacity:1;color:#b39658;text-decoration:underline;}
@media(max-width:768px){.footer-geo{gap:8px 14px;font-size:14px;}}

/* FAQ answer-first лид (AEO) — внутри .geo-faq */
.geo-faq .faq-lead{font-size:16px;line-height:1.65;color:#444;margin:0 0 24px;padding:16px 20px;background:rgba(179,150,88,.08);border-left:3px solid #b39658;border-radius:6px;}
@media(max-width:767px){.geo-faq .faq-lead{font-size:15px;padding:14px 16px;}}
