:root {
    --font-family-inter: "Inter", sans-serif;
    --font-family-alumni: "Alumni Sans", sans-serif;
    --primary-color: #fcf6d1;
    --secondary-color: #fffefd;
    --nav-height: 70px;
}

body {
    font-family: var(--font-family-inter);
    background-color: #0b0b0b;
}

html {
    scroll-behavior: smooth;
}

.wrapper {
    overflow: hidden;
}

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

.primary-btn {
    width: fit-content;
    display: block;
    font-size: 20px;
    padding: 16px;
    border: 2px solid #ffffef;
    color: #f9f2f2;
    background: transparent;
}

.bordered {
    border-radius: 24px;
    border: 1px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
}

.section {
    padding: var(--nav-height) 32px;
}

.section-title {
    position: relative;
    font-family: var(--font-family-alumni);
    font-weight: 600;
    font-size: 36px;
    line-height: 42px;
    color: var(--primary-color);
}

.section-title::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    width: 87.5px;
    height: 4px;
    background: #7c6a52;
    border-radius: 20px;
}

.section-subtitle {
    font-family: var(--font-family-alumni);
    font-size: 32px;
    font-weight: 300;
    line-height: 38px;
    color: var(--primary-color);
}

/* nav */

.nav {
    position: fixed;
    width: 100%;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    display: flex;
    align-items: center;
    height: var(--nav-height);
    background: #7c6a52;
    border-bottom: 1px solid #7c6a52;
    z-index: 2;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--secondary-color);
}

.nav__logo {
    margin-right: 40px;
    font-weight: 500;
    font-size: 20px;
    text-decoration: underline;
}

.nav-list-wrapper {
    display: flex;
}

.nav-list {
    font-weight: 400;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav .primary-btn {
    font-weight: 700;
}

.mobile-menu {
    display: none;
}

#menu-toggle {
    display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
    position: absolute;

    display: block;
    background-color: var(--primary-color);
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
}

.menu-button {
    top: 50%;
    right: 25px;
}

.menu-button::before {
    content: "";
    margin-top: -8px;
}

.menu-button::after {
    content: "";
    margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-405deg);
}

@media (max-width: 765px) {
    .nav-list,
    .nav-container .primary-btn {
        display: none;
    }
    .mobile-menu {
        display: block;
    }
    .menu-button-container {
        display: flex;
    }
    .menu-mob {
        position: absolute;
        top: 0;
        left: 0;
        margin-top: 45px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #menu-toggle ~ .menu-mob li {
        height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
        opacity: 0;
    }
    #menu-toggle:checked ~ .menu-mob li {
        color: #fff;
        height: 2.5em;
        padding: 0.5em;
        opacity: 1;
        transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    .menu-mob > li {
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0.5em 0;
        width: 100%;
        color: var(--primary-color);
        background: url("8322ba6b_gold_gradient.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .menu-mob > li:not(:last-child) {
        border-bottom: 1px solid #444;
    }
}

/* header */

.header {
    padding-top: var(--nav-height);
    height: calc(100vh - var(--nav-height));
}

.header__block {
    height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__img {
    max-width: 715px;
}

.header__txt-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 510px;
    border-radius: 20px;
    padding: 20px 20px 55px 20px;

    background: url("8322ba6b_gold_gradient.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.header__txt-block .section-title {
    font-size: 48px;
    line-height: 57px;
}

.header__txt {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* about */

.about__block {
    display: flex;
    gap: 100px;
}

.about__block__img-wrap {
    position: relative;
    flex-shrink: 0;
}

.about__hotel {
    max-width: 385px;
}

.about__card {
    position: absolute;
    bottom: -70px;
    left: 85px;
    max-width: 500px;
}

.about__txt-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    max-width: 990px;
    padding: 30px 0;
}

.about__txt {
    color: var(--secondary-color);
}

/* partners */

.partners .section-title {
    margin-bottom: 30px;
}

.partners__list {
    width: 100%;
    display: flex;
    gap: 25px 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-radius: 26px;
    padding: 80px 165px;

    background-image: url("a0600fa5_partners_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.partners__list-item {
    max-width: 155px;
    width: 100%;
}

@media screen and (max-width: 1400px) {
    .partners {
        padding: 0 50px;
    }

    .partners__list {
        justify-content: space-around;
    }
}

@media screen and (max-width: 992px) {
    .partners__title-wrapper {
        flex-direction: column;
    }

    .partners__list-delimetr {
        display: none;
    }

    .partners__list {
        margin: 30px 0;
        flex-direction: column;
    }

    .partners__list:nth-of-type(1) .partners__list-item:nth-child(odd) {
        display: none;
    }
}

/* hotels */

.hotels .section-title {
    margin-bottom: 30px;
}

.hotels__star {
    position: absolute;
    top: -50px;
    right: -20px;
    max-width: 145px;
    max-height: 140px;
}

.hotels__list {
    display: flex;
    gap: 45px;
    flex-wrap: wrap;
    justify-content: center;
}

.hotels__list-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 33px;
    border: 6px solid #765d2a;
    width: 400px;
    height: 600px;
    background-color: #f0f0f0;
    overflow: hidden;
    box-shadow: 4px 8px 10px 0px #00000040;
}

.hotels__list-item__title-wrapper {
    font-family: var(--font-family-alumni);
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 27px 16px;
    background-image: url("8322ba6b_gold_gradient.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.hotels__list-item__rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hotels__list-item__star {
    width: 20px;
    height: 20px;
}

.hotels__list-item__txt {
    padding: 15px 34px;
    font-weight: 300;
    font-size: 20px;
    color: #0b0b0b;
}

.hotels__list-item__hotel {
    max-width: 400px;
}

/* advantages */

.advanages .section-title {
    margin-bottom: 30px;
}

.advanages .section-subtitle {
    margin-bottom: 30px;
}

.advantages__img {
    max-width: 500px;
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.advantages__list {
    display: flex;
    flex-wrap: wrap;
    gap: 100px 50px;
    justify-content: center;
}

.advantages__list-item {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 320px;
    height: 260px;
    padding: 22px 37px;
    border-radius: 22px;
    color: #181818;
    background-image: url("c5a584b7_gold_gradient_2.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.advantages__list-item__title {
    font-family: var(--font-family-alumni);
    font-size: 24px;
    line-height: 29px;
    font-weight: 700;
}

.advantages__list-item__txt {
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
}

/* contact */

.contact__block {
    display: flex;
    gap: 60px;
    padding: 82px 104px;
    border-radius: 20px;
    border: 1px solid #765d2a;
}

.contact-form {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.contact-form__input {
    padding: 15px 7px;
    outline: none;
    color: #f7f7f7;
    font-size: 30px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #676767;
}

.contact__block__txt-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact__img {
    max-width: 500px;
    position: absolute;
    bottom: 0;
}

.contact__block__txt--mobile {
    display: none;
}

/* footer */

.footer__block {
    padding: 30px;
    background-image: url("6ae974bc_footer_bg.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #00000080;
    background-blend-mode: multiply;
}

.footer__txt {
    font-size: 28px;
    line-height: 34px;
    font-weight: 300;
    text-align: center;
    color: #fff;
}

.footer__list {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.footer__list-item {
    text-align: center;
    font-weight: 500;
    font-size: 24px;
    background: #bab6b3;
    padding: 11px 30px;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.footer-note {
    text-align: center;
    font-size: 16px;
    color: var(--secondary-color);
    margin: 30px 0;
}

@media (max-width: 1200px) {
    .header__img {
        max-width: 500px;
    }
}

@media (max-width: 990px) {
    .header .container {
        height: 100%;
        display: flex;
        align-items: center;
    }

    .header__block {
        padding: 30px 20px;
        width: 80%;
        height: fit-content;
        margin: 0 auto;
        border-radius: 20px;
        flex-direction: column-reverse;
        justify-content: unset;
        background: url("8322ba6b_gold_gradient.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .header__txt-block {
        padding: 0;
        background: unset;
        margin-bottom: 20px;
    }

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

    .about__block__img-wrap {
        margin: 0 auto;
    }

    .about__txt-wrapper br {
        display: none;
    }

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

    .contact__block {
        flex-direction: column-reverse;
    }

    .contact__block__txt--mobile {
        display: block;
        font-style: italic;
        font-size: 18px;
        color: var(--primary-color);
        margin-bottom: 40px;
    }

    .contact__block__txt--mobile span {
        font-style: normal;
        text-decoration: underline;
        color: var(--secondary-color);
    }

    .contact-form {
        width: 100%;
    }

    .contact__img {
        position: relative;
        margin: 16px auto 0 auto;
    }

    .footer__list {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .header__txt-block .section-title {
        font-size: 36px;
        line-height: 43px;
    }

    .section-title {
        font-size: 30px;
    }

    .section-subtitle {
        font-size: 21px;
    }

    .partners__list {
        width: 80%;
        padding: 80px 0;
    }

    .hotels__star {
        position: relative;
        top: unset;
        right: unset;
        margin-top: 40px;
    }

    .advantages__list-item--4,
    .advantages__list-item--5,
    .advantages__list-item--6 {
        display: none;
    }

    .footer__txt--mobile {
        display: none;
    }
}

@media (max-width: 595px) {
    .section .container {
        padding: 0;
    }

    .header {
        min-height: 100vh;
        height: 100%;
    }

    .header .container {
        display: block;
        padding-top: 20px;
    }

    .header__block {
        width: 100%;
    }

    .contact__block {
        padding: 20px;
    }

    .hotels__list-item {
        height: 580px;
    }

    .partners__list {
        width: 100%;
    }
}

/* modals */

.wrapper-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.wrapper-modal.show {
    display: block;
}

.wrapper-modal.show {
    display: block;
}

.modal {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 750px;
    max-height: 500px;
    width: 100%;
    height: 100%;
    background: #f1edee;
    border-radius: 16px;
    font-family: "Roboto", sans-serif;
}

.modal_1.show {
    display: block;
}

.modal_2.show {
    display: block;
}

.modal_3.show {
    display: block;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
    cursor: pointer;
}

.modal-close:hover {
    transform: scale(1.1);
}

.modal-containter {
    padding: 50px 60px 20px 60px;
}

.modal-content__title {
    position: relative;
    font-size: 36px;
    line-height: 28px;
    color: #f7f7f7;
    text-align: center;
    padding: 10px 0;
    background-color: #060d13;
}

.modal-content__subtitle {
    font-weight: 500;
    color: #000000;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    line-height: 16px;
    margin: 7px 0;
    text-transform: uppercase;
}

.modal-content__txt {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    text-align: justify;
    font-size: 12px;
}
.modal-content__txt-wrapper {
    margin-top: 15px;
    overflow-y: scroll;
    height: 340px;
    scrollbar-width: thin;
    scrollbar-color: #989898 #d9d9d9;
}
.modal-content__txt-wrapper::-webkit-scrollbar {
    width: 15px;
}
.modal-content__txt-wrapper::-webkit-scrollbar-track {
    background: #d9d9d9;
}
.modal-content__txt-wrapper::-webkit-scrollbar-thumb {
    background-color: #989898;
    border-radius: 20px;
    border: 3px solid #989898;
}

.modal-content__txt-container {
    padding: 16px;
}

@media screen and (max-width: 595px) {
    .modal-containter {
        padding: 40px;
    }

    .modal-close {
        width: 30px;
        height: 30px;
    }

    .modal-content__txt-wrapper {
        height: 350px;
    }
}
/* --- injected clearfix (WaybackScraper) --- */
.clearfix::after{content:"";display:table;clear:both}
.clearfix{display:block}
