@charset "UTF-8";

:root {
    --1: #55682f;
    --2: #8fbc8f;
    --3: #e2faeb;
    --4: #617ea4;
    --5: #87cefa;
    --6: #e0ffff;
    --7: #e9f5ff;
    --cvet-futera: #1b2b2a;
    --cvet-hedera: #37584d;
    --cvet-elementov: #d3bba1;
    --b68f68: #b68f68;
    --cvet-elementov: #7f5231;
    --cvet-teksta-na-temnom-fone: #fff;
    --chernyy-tekst-262626: #262626;
    --fon-aktivnyh-elementov-fcfcfc: #fcfcfc;
    --font-family: "Jost", sans-serif;
    --second-family: "SPSL-New-Cyrillic", sans-serif;
    --third-family: "Raleway", sans-serif;
    --font3: "Montserrat", sans-serif;
}

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

ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    color: black;
}

body,
:where(blockquote, figure):where([class]) {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
    margin-bottom: 0;
}

:where(h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    ul,
    ol,
    dl):where([class]) {
    margin-block: 0;
}

:where(ul[class]) {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

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

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100%;
    line-height: 1.5;
}

@font-face {
    font-family: "SPSL-New-Cyrillic";
    src: url("../fonts/spsl_new_cyrillic.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

body {
    background: #ecf6f2;
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    -moz-column-gap: 20px;
    column-gap: 20px;
}

@media (max-width: 768px) {
    .grid {
        gap: 10px;
    }
}

.container {
    width: 1300px;
    padding: 0 30px;
    margin: 0 auto;
    max-width: 100%;
}

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

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

@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }
}

.container.padding-top {
    padding-top: 100px;
}

@media (max-width: 1200px) {
    .container.padding-top {
        padding-top: 75px;
    }
}

@media (max-width: 768px) {
    .container.padding-top {
        padding-top: 50px;
    }
}

.container.padding-bottom {
    padding-bottom: 100px;
}

@media (max-width: 1200px) {
    .container.padding-bottom {
        padding-bottom: 75px;
    }
}

@media (max-width: 768px) {
    .container.padding-bottom {
        padding-bottom: 50px;
    }
}

.center {
    text-align: center;
}

.title {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 64px;
    color: #2f684d;
    margin-bottom: 50px;
    line-height: 0.8;
}

@media (max-width: 1200px) {
    .title {
        margin-bottom: 35px;
    }
}

@media (max-width: 992px) {
    .title {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 40px;
    }
}

button.prev {
    transform: rotate(180deg);
}

.main_items-arrow {
    position: absolute;
    bottom: -55px;
    width: 40px;
    height: 40px;
    background-image: url("../images/arrow-green.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}

.main_items-arrow.prev {
    transform: rotate(180deg);
    left: calc(50% - 45px);
}

.main_items-arrow.next {
    right: calc(50% - 45px);
}

.btn {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 24px;
    text-align: center;
    color: var(--cvet-teksta-na-temnom-fone);
    line-height: 1;
    background: #2f684d;
    border-radius: 10px;
    padding: 15px 40px 11px 40px;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
}

.header__burger {
    display: none;
}

@media (max-width: 768px) {
    .header__burger {
        display: block;
        position: absolute;
        top: 20px;
        right: 10px;
        width: 40px;
        height: 40px;
        z-index: 10;
    }
}

.header__mobile {
    left: -110%;
    opacity: 0;
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.header__mobile.active {
    left: 0;
    opacity: 1;
}

.header__mobile-content {
    width: 300px;
    max-width: 100%;
    height: 100%;
    background-color: var(--cvet-teksta-na-temnom-fone);
    padding: 15px;
}

.header__mobile-close {
    text-align: right;
}

.header__mobile-close svg {
    width: 37px;
    height: 37px;
}

.header__mobile-menu {
    height: calc(100vh - 130px);
    overflow-y: auto;
    margin-bottom: 20px;
}

.header__mobile-menu>li a {
    align-items: center;
    gap: 10px;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 24px;
    padding: 0px 0;
    display: flex;
    line-height: 0.9;
    margin-bottom: 20px;
    color: #2f684d;
}

.header__mobile-menu>li ul {
    margin-left: 25px;
    margin-bottom: 20px;
    display: none;
}

.header__mobile-menu>li:hover ul {
    display: block;
}

.header__mobile-social {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.header__mobile-social img {
    width: 40px;
    height: 40px;
}

.header__top {
    padding: 16px 0;
}

.header__bottom {
    background-color: rgba(15, 42, 29, 0.7);
}

@media (max-width: 768px) {
    .header__bottom {
        display: none;
    }
}

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

.header__menu a {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 24px;
    color: var(--cvet-teksta-na-temnom-fone);
    padding: 15px 0;
    display: block;
}

.header__menu img {
    transition: all 0.3s ease;
}

.header__menu>li {
    position: relative;
}

.header__menu>li:hover img {
    transform: rotate(180deg);
}

.header__menu>li:hover ul {
    display: block;
}

.header__menu>li>a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__menu>li ul {
    display: none;
    top: 66px;
    position: absolute;
    background-color: rgba(15, 42, 29, 0.7);
    width: 270px;
    right: 0;
    padding: 10px 15px;
}

.header__menu>li ul a {
    padding: 5px 0;
}

.header__logo {
    grid-column: 1/4;
}

@media (max-width: 992px) {
    .header__logo {
        grid-column: 1/6;
    }
}

@media (max-width: 768px) {
    .header__logo {
        grid-column: 1/10;
    }
}

.header__contacts {
    grid-column: 4/13;
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: flex-end;
}

@media (max-width: 992px) {
    .header__contacts {
        grid-column: 6/13;
        gap: 20px;
    }
}

.header__contacts-phone {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 24px;
    text-transform: uppercase;
    color: var(--cvet-teksta-na-temnom-fone);
}

@media (max-width: 992px) {
    .header__contacts-phone {
        display: none;
    }
}

.header__contacts ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 992px) {
    .header__contacts ul img {
        height: 40px;
        width: 40px;
    }
}

@media (max-width: 768px) {
    .header__contacts ul {
        display: none;
    }
}

.header__contacts-btn {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 24px;
    text-align: center;
    color: var(--cvet-teksta-na-temnom-fone);
    line-height: 1;
    background: #2f684d;
    border-radius: 10px;
    padding: 15px 40px 11px 40px;
}

@media (max-width: 768px) {
    .header__contacts-btn {
        display: none;
    }
}

.banner {
    position: relative;
}

.banner__content {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.banner video {
    width: 100%;
    height: 730px;
    -o-object-fit: cover;
    object-fit: cover;
}

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

@media (max-width: 992px) {
    .banner video {
        height: 425px;
    }
}

@media (max-width: 600px) {
    .banner video {
        height: 500px;
    }
}

.banner-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

@media (max-width: 992px) {
    .banner-play {
        top: auto;
        bottom: 75px;
        width: 75px;
    }
}

.about__title {
    display: flex;
    grid-column: 1/6;
    align-items: center;
    vertical-align: middle;
}

@media (max-width: 1200px) {
    .about__title {
        grid-column: 1/13;
    }
}

.about__title h1 {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 64px;
    color: #2f684d;
    line-height: 0.9;
}

@media (max-width: 992px) {
    .about__title h1 {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .about__title h1 {
        font-size: 40px;
        text-align: center;
    }
}

.about__text {
    grid-column: 7/13;
}

@media (max-width: 1200px) {
    .about__text {
        grid-column: 1/13;
        margin-top: 25px;
    }
}

.about__text p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    color: #000;
    margin-bottom: 24px;
}

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

.about__text p b {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 32px;
    line-height: 32px;
    color: #2f684d;
}

@media (max-width: 992px) {
    .about__text p {
        font-size: 18px;
    }
}

.circle {
    background-image: url("../images/сircle-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 720px;
    margin-top: 160px;
}

@media (max-width: 992px) {
    .circle {
        display: none;
    }
}

.circle__content {
    position: relative;
    top: -200px;
}

.circle__content-body {
    margin: 0px auto;
}

.circle__content-img {
    position: absolute;
}

.circle__content-img img.hover {
    display: none;
}

.circle__content-img.active img:not(.hover) {
    display: none;
}

.circle__content-img.active img.hover {
    display: block;
}




.circle__content-t1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.circle__content-t2 {
    top: 55px;
    left: 50%;
}

.circle__content-t3 {
    top: 160px;
    left: calc(50% - 3px);
}

.circle__content-t4 {
    top: 410px;
    left: calc(50% - 3px);
}

.circle__content-t5 {
    top: 409px;
    left: calc(50% - 3px);
}

.circle__content-t6 {
    top: 409px;
    left: calc(50% - 250px);
}

.circle__content-t7 {
    top: 408px;
    left: calc(50% - 355px);
}

.circle__content-t8 {
    top: 158px;
    left: calc(50% - 355px);
}

.circle__content-t9 {
    top: 55px;
    left: calc(50% - 252px);
}

.circle__content-lines {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.services {
    background-image: url("../images/services-bg.jpg");
    background-position: top center;
    background-size: cover;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 50px;
    }
}

@media (max-width: 768px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 30px;
    }

    .services__grid>a:last-child {
        grid-column: 1 / 3;
    }

    .services__grid>a:last-child .services__grid-image {
        width: 200px !important;
        max-width: 100% !important;
        margin: 0px auto !important;
    }
}


@media (max-width: 400px) {
    .services__grid {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 30px;
    }

    .services__grid>a:last-child {
        grid-column: 1 / 2;
    }

    .services__grid>a:last-child .services__grid-image {
        width: 100% !important;
    }

}


.services__grid-image {
    width: 100%;
    height: 525px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 1200px) {
    .services__grid-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .services__grid-image {
        height: 350px;
    }
}

@media (max-width: 400px) {
    .services__grid-image {
        height: 450px;
    }
}

.services h3 {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 32px;
    text-align: center;
    color: #2f684d;
    line-height: 1;
    margin-bottom: 20px;
}

.services-events {
    background-image: url("../images/event-bg.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.services-events .title {
    margin-bottom: 20px;
    line-height: 1;
}

.services-events__desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    color: #000;
}

@media (max-width: 768px) {
    .services-events__desc {
        font-size: 18px;
    }

    .services h3 {
        font-size: 25px;
    }
}

.services-events__slider {
    margin-top: 40px;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: 40px;
}

.services-events__slider-item {
    width: 100%;
    display: block;
    padding: 0px 10px;
}

.services-events__slider-item h3 {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 32px;
    text-align: center;
    color: #2f684d;
    line-height: 1;
    margin-bottom: 20px;
}

.services-events__slider-item div {
    width: 100%;
    height: 525px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 1200px) {
    .services-events__slider-item div {
        height: 425px;
    }
}

@media (max-width: 400px) {
    .services-events__slider-item div {
        height: 525px;
    }
}

.rooms {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.rooms__gallery {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.rooms__gallery>div {
    display: flex;
    gap: 10px;
    margin-bottom: 45px;
    justify-content: flex-end;
}

.rooms__gallery>div button {
    width: 40px;
    height: 40px;
    background-image: url("../images/arrow-green.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0);
    border: none;
}

.rooms__desc {
    grid-column: 1/9;
    background: rgba(15, 42, 29, 0.7);
    padding: 40px 30px;
}

@media (max-width: 1200px) {
    .rooms__desc {
        grid-column: 1/13;
    }
}

@media (max-width: 768px) {
    .rooms__desc {
        padding: 10px;
    }
}

.rooms__desc-types {
    display: flex;
}

@media (max-width: 768px) {
    .rooms__desc-types {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 25px;
    }
}

.rooms__desc-types>div {
    flex: 1;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 30px;
    text-align: center;
    color: #fdf3dd;
    border-bottom: 2px solid #fdf3dd;
    padding: 7px 10px;
    line-height: 0.9;
    cursor: pointer;
}

.rooms__desc-types>div.active,
.rooms__desc-types>div:hover {
    border-bottom: 6px solid #fdf3dd;
}

@media (max-width: 768px) {
    .rooms__desc-types>div {
        padding: 15px 10px;
    }
}

.rooms__desc-content {
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.rooms__desc-content>div {
    margin-top: auto;
    margin-bottom: auto;
}

.rooms__desc-content h3 {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 40px;
    color: var(--cvet-teksta-na-temnom-fone);
    margin-bottom: 20px;
    line-height: 1.1;
}

.rooms__desc-content-more * {
    font-family: var(--font-family);
    font-weight: 500;
    color: var(--cvet-teksta-na-temnom-fone);
    font-size: 18px !important;
}

.rooms__desc-content-more p span {
    font-size: 18px !important;
}

.rooms__desc-content__price {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 24px;
    color: var(--cvet-teksta-na-temnom-fone);
    margin-top: 50px;
    margin-bottom: 50px;
}

.rooms__desc-content__price span {
    font-weight: 500;
}

@media (max-width: 768px) {
    .rooms__desc-content__price {
        margin-bottom: 35px;
        margin-top: 25px;
    }
}

.rooms__desc-content__btn {
    display: flex;
    gap: 40px;
    vertical-align: middle;
    align-items: center;
}

@media (max-width: 768px) {
    .rooms__desc-content__btn {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }
}

.rooms__desc-content__btn a:first-child {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 24px;
    text-align: center;
    color: var(--cvet-teksta-na-temnom-fone);
    background: #2f684d;
    border-radius: 10px;
    padding: 14px 51px 10px 51px;
    line-height: 1;
}

.rooms__desc-content__btn a:nth-child(2) {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 30px;
    text-align: center;
    color: #fdf3dd;
}

.rooms__desc-content__btn div {
    margin-right: 0px;
    margin-left: auto;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    color: var(--cvet-teksta-na-temnom-fone);
}

@media (max-width: 768px) {
    .rooms__desc-content__btn div {
        margin: 0px auto;
    }
}

.rooms__desc-footer {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .rooms__desc-footer {
        flex-direction: column;
        gap: 30px;
    }
}

.rooms__desc-footer__btn {
    flex: 0 0 250px;
    width: 250px;
    display: flex;
    gap: 10px;
}

@media (max-width: 768px) {
    .rooms__desc-footer__btn {
        flex: 0 0 100%;
        width: 100%;
        justify-content: center;
    }
}

.rooms__desc-footer__btn button {
    width: 40px;
    height: 40px;
    background-image: url("../images/arrow-white.svg");
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    background-color: rgba(0, 0, 0, 0);
    margin-top: 4px;
}

.rooms__desc-footer__btn>div div {
    font-family: var(--font-family);
    font-size: 32px;
    color: var(--cvet-teksta-na-temnom-fone);
    font-weight: 300;
}

.rooms__desc-footer__btn>div div span {
    font-weight: 700;
}

.rooms__desc-footer__btn>div p {
    text-align: center;
    margin-top: 5px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: var(--cvet-teksta-na-temnom-fone);
}

.rooms__desc-footer__include {
    flex: 1;
}

.rooms__desc-footer__include ul {
    display: flex;
    flex-wrap: wrap;
}

.rooms__desc-footer__include ul li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 10px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: var(--cvet-teksta-na-temnom-fone);
    display: flex;
    align-items: center;
    box-sizing: border-box;
    gap: 10px;
}

.rooms__desc-footer__include ul li::before {
    content: " ";
    display: block;
    min-width: 30px;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    border: 1px solid var(--cvet-teksta-na-temnom-fone);
}

.rooms__gallery {
    grid-column: 9/13;
}

@media (max-width: 1200px) {
    .rooms__gallery {
        grid-column: 1/13;
        display: none;
    }
}

.evening__top {
    background-image: url("/local/templates/temp_2026/images/evening-bg.jpg");
    background-position: center;
    background-size: cover;
}

.evening__top .title {
    color: white;
    line-height: 1;
    grid-column: 1/7;
    margin-top: 60px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .evening__top .title {
        margin-top: 0px;
        grid-column: 1/13;
    }


    .rooms__desc-footer__include ul li {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.evening__bottom {
    padding-top: 40px;
}

.evening__bottom-content {
    grid-column: 1/7;
}

@media (max-width: 992px) {
    .evening__bottom-content {
        grid-column: 1/13;
    }
}

.evening__bottom-content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .evening__bottom-content p {
        font-size: 18px;
    }
}

.evening__bottom-image {
    position: relative;
    grid-column: 7/13;
}

@media (max-width: 992px) {
    .evening__bottom-image {
        display: none;
    }
}

.evening__bottom-image img {
    position: absolute;
    border-radius: 15px;
    top: -225px;
}

.reviews {
    background-image: url("../images/reviews-bg.jpg");
    background-position: center;
    background-size: cover;
}

.reviews .title {
    line-height: 0.9;
    color: white;
    grid-column: 1/7;
    margin-bottom: 0px;
}

@media (max-width: 768px) {
    .reviews .title {
        grid-column: 1/13;
        text-align: center;
    }
}

.reviews__more {
    grid-column: 7/13;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .reviews__more {
        grid-column: 1/13;
        flex-direction: column;
        margin-top: 20px;
    }
}

.reviews__more-arrows {
    display: flex;
    gap: 10px;
}

.reviews__more-arrows div {
    position: static !important;
    width: 50px;
    height: 50px;
}

.reviews__tabs {
    display: flex;
    margin-top: 55px;
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
    .reviews__tabs {
        display: none;
    }
}

.reviews__tabs div {
    flex: 1;
    cursor: pointer;
    display: block;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 30px;
    text-align: center;
    color: #fdf3dd;
    border-bottom: 2px solid #fdf3dd;
    padding: 7px 10px;
}

.reviews__tabs div:hover,
.reviews__tabs div.active {
    border-bottom: 6px solid #fdf3dd;
}

.reviews__slider {
    margin-left: -9px;
    margin-right: -9px;
    margin-top: 35px;
}

@media (max-width: 1200px) {
    .reviews__slider {
        margin-top: 50px;
    }
}

.reviews__item {
    backdrop-filter: blur(20px);
    background: rgba(29, 55, 55, 0.5);
    border-radius: 15px;
    margin: 0px 9px;
    padding: 20px;
}

.reviews__item-header {
    display: flex;
    gap: 12px;
    align-items: center;
    vertical-align: middle;
    margin-bottom: 20px;
}

.reviews__item-header__img div {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.reviews__item-header__name h4 {
    font-family: var(--third-family);
    font-weight: 500;
    font-size: 18px;
    color: var(--cvet-teksta-na-temnom-fone);
}

.reviews__item-header__name div {
    font-family: var(--font3);
    font-weight: 400;
    font-size: 14px;
    line-height: 142%;
    color: #f9d95b;
}

.reviews__item-header__name div span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    margin-left: 5px;
    color: #e0e0e0;
}

.reviews__item-header__type {
    justify-content: flex-end;
    flex: 1;
    display: flex;
}

.reviews__item-header__type img {
    display: inline-block;
    margin-right: 0px;
    margin-left: auto;
}

.reviews__item p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    color: var(--cvet-teksta-na-temnom-fone);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    height: 216px;
}

.reviews__item-footer {
    margin-top: 20px;
    text-align: right;
}

.reviews__item-footer a {
    display: inline-block;
}

.reviews__item-footer a img {
    display: inline-block;
}

.event {
    position: relative;
}

.event .grid>div {
    grid-column: span 4;
}

@media (max-width: 992px) {
    .event .grid>div {
        grid-column: span 6;
    }

    .event .grid>div:last-child {
        display: none;
    }
}

@media (max-width: 768px) {
    .event .grid>div {
        grid-column: span 12;
    }

    .event .grid>div img {
        margin-bottom: 20px;
    }
}

.event p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    color: #000;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .event p {
        font-size: 18px;
    }
}

.event img {
    border-radius: 15px;
    margin: 0px auto;
}

.event::after {
    content: "";
    z-index: -1;
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    height: 315px;
    width: 100%;
    background-image: url("/local/templates/temp_2026/images/event_mtr.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 1200px) {
    .event::after {
        display: none;
    }
}

.visitor {
    background-image: url("/local/templates/temp_2026/images/visitor_bg.jpg");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}

.visitor__item {
    /* grid-column: span 6; */
    grid-column: 4 / 10;
}

@media (max-width: 1200px) {
    .visitor__item {
        grid-column: span 12;
        margin-bottom: 10px;
        margin-top: 10px;
    }
}

.visitor__item-image {
    min-height: 500px;
    border-radius: 15px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: end;
    justify-content: center;
}

@media (max-width: 1200px) {
    .visitor__item-image {
        min-height: 350px;
    }
}

.visitor__item-image__btn {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .visitor__item-image__btn {
        flex-direction: column;
        gap: 10px;
    }

    .event p {
        text-align: left;
    }
}

.visitor__item-image__btn a {
    min-width: 220px;
}

.visitor__item-content {
    position: relative;
    z-index: 2;
    background: var(--cvet-teksta-na-temnom-fone);
    width: 400px;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: -100px;
    padding: 20px;
    border-radius: 30px;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.visitor__item-content h2 {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 40px;
    text-align: center;
    color: #2f684d;
    line-height: 0.9;
    margin-bottom: 15px;
}

.visitor__item-content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    color: #000;
}

.spa {
    background-image: url("/local/templates/temp_2026/images/spa-bg.jpg");
    background-position: center top;
    background-size: 100% auto;
    background-repeat: no-repeat;
}

@media (max-width: 992px) {
    .spa {
        background-size: cover;
    }
}

.spa .title {
    color: white;
    margin-bottom: 18px;
    line-height: 1;
}

.spa__desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    color: var(--cvet-teksta-na-temnom-fone);
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .spa__desc {
        font-size: 18px;
    }
}

.spa__item {
    grid-column: span 4;
    border-radius: 15px;
    background-position: center;
    background-size: cover;
    min-height: 300px;
    display: flex;
    align-items: end;
    padding: 20px;
}

@media (max-width: 768px) {
    .spa__item {
        margin-top: 25px;
        grid-column: 1/13;
    }
}

.spa__item h3 {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 64px;
    color: var(--cvet-teksta-na-temnom-fone);
    line-height: 0.7;
    text-align: center;
    width: 100%;
}

.why {
    background-image: url("../images/why_bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.why__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .why__grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 50px;
    }
}

@media (max-width: 768px) {
    .why__grid {
        grid-template-columns: repeat(1, 1fr);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        row-gap: 30px;
    }
}

@media (max-width: 1200px) {
    .why__item:last-child {
        grid-column: 1/3;
    }
}

@media (max-width: 768px) {
    .why__item {
        grid-column: 1/2;
    }
}

.why__item img {
    margin: 0px auto;
}

.why__item h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 40px;
    text-align: center;
    line-height: 0.8;
    color: #2f684d;
}

.why__item p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    color: #000;
}

.contact {
    background-image: url("../images/contact_bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact__content {
    grid-column: 1/7;
    backdrop-filter: blur(20px);
    background: rgba(29, 55, 55, 0.6);
    padding-top: 60px;
    padding-bottom: 50px;
    padding-left: 30px;
    padding-right: 30px;
}

@media (max-width: 1200px) {
    .contact__content {
        grid-column: 1/13;
        border-radius: 15px;
    }
}

@media (max-width: 768px) {
    .contact__content {
        padding: 20px;
        margin-top: 20px;
    }
}

.contact__content h2 {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 40px;
    color: #f6f6f6;
    line-height: 0.9;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .contact__content h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

.contact__content ul {
    display: flex;
    gap: 10px;
}

.contact__content ul img {
    height: 40px;
    width: 40px;
}

.contact__content-phone {
    margin-top: 60px;
    margin-bottom: 30px;
}

@media (max-width: 1200px) {
    .contact__content-phone {
        margin-top: 40px;
        margin-bottom: 20px;
    }
}

.contact__content-phone a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 32px;
    text-transform: uppercase;
    color: var(--cvet-teksta-na-temnom-fone);
}

@media (max-width: 768px) {
    .contact__content-phone a {
        font-size: 22px;
    }
}

.contact__content-email {
    margin-bottom: 150px;
}

@media (max-width: 1200px) {
    .contact__content-email {
        margin-bottom: 30px;
    }
}

.contact__content-email a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 24px;
    color: var(--cvet-teksta-na-temnom-fone);
}

@media (max-width: 768px) {
    .contact__content-email a {
        font-size: 19px;
        line-height: 0.9;
    }
}

.contact__map {
    grid-column: 7/13;
    padding-top: 160px;
    padding-bottom: 50px;
}

@media (max-width: 1200px) {
    .contact__map {
        grid-column: 1/13;
        padding-top: 20px;
    }
}

.contact__map iframe {
    border-radius: 20px;
    position: relative;
    z-index: 2;
    width: calc(100% + 200px);
    margin-left: -200px;
    height: 450px;
    border: none;
}

@media (max-width: 1200px) {
    .contact__map iframe {
        margin-left: 0px;
        width: 100%;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .contact__map iframe {
        height: 250px;
    }
}

.footer {
    background: #2f684d;
    padding-top: 50px;
    padding-bottom: 50px;
}

@media (max-width: 992px) {
    .footer .grid {
        row-gap: 40px;
    }
}

.footer__copyright {
    grid-column: 1/4;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    opacity: 0.8;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .footer__copyright {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .footer__copyright {
        grid-column: span 12;
        text-align: center;
    }
}

.footer__social {
    grid-column: 4/7;
}

@media (max-width: 992px) {
    .footer__social {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .footer__social {
        grid-column: span 12;
    }
}

.footer__social ul {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.footer__social ul li a img {
    width: 40px;
}

.footer__text {
    grid-column: 7/10;
    text-align: right;
}

@media (max-width: 992px) {
    .footer__text {
        grid-column: span 6;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .footer__text {
        grid-column: span 12;
        text-align: center;
    }
}

.footer__text a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    opacity: 0.8;
    line-height: 1.4;
}

.footer__logo {
    grid-column: 10/13;
    text-align: right;
}

@media (max-width: 992px) {
    .footer__logo {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .footer__logo {
        grid-column: span 12;
    }
}

.footer__logo img {
    height: 120px;
    margin-right: 0px;
    margin-left: auto;
}

@media (max-width: 992px) {
    .footer__logo img {
        margin: 0px auto;
    }
}

/*# sourceMappingURL=style.css.map */

.search-form .search-form {
    background-color: #2f684dd4;
    padding: 0px 15px;
}