* {
    box-sizing: border-box;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
body {
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: currentColor;
}

button {
    font-family: inherit;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

input,
textarea {
    font-family: inherit;
}

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

svg {
    width: 24px;
    height: 24px;
    display: block;
}

address {
    font-style: normal;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

@font-face {
    font-family: "IBM Plex Sans";
    src: url("../fonts/IBMPlexSans.eot");
    src: url("../fonts/IBMPlexSans.eot?#iefix") format("embedded-opentype"), url("../fonts/IBMPlexSans.woff") format("woff"),
        url("../fonts/IBMPlexSans.ttf") format("truetype");
    font-weight: 400;
}
@font-face {
    font-family: "IBM Plex Sans";
    src: url("../fonts/IBMPlexSans-SemiBold.eot");
    src: url("../fonts/IBMPlexSans-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/IBMPlexSans-SemiBold.woff") format("woff"),
        url("../fonts/IBMPlexSans-SemiBold.ttf") format("truetype");
    font-weight: 600;
}
@font-face {
    font-family: "IBM Plex Sans";
    src: url("../fonts/IBMPlexSans-Medium.eot");
    src: url("../fonts/IBMPlexSans-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/IBMPlexSans-Medium.woff") format("woff"),
        url("../fonts/IBMPlexSans-Medium.ttf") format("truetype");
    font-weight: 500;
}
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Regular.eot");
    src: url("../fonts/Poppins-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Regular.woff") format("woff"),
        url("../fonts/Poppins-Regular.ttf") format("truetype");
    font-weight: 400;
}
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-SemiBold.eot");
    src: url("../fonts/Poppins-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-SemiBold.woff") format("woff"),
        url("../fonts/Poppins-SemiBold.ttf") format("truetype");
    font-weight: 600;
}
.container {
    max-width: 320px;
    margin: 0 auto;
    padding: 0 16px;
}
@media screen and (min-width: 768px) {
    .container {
        max-width: 768px;
        padding: 0 24px;
    }
}
@media screen and (min-width: 1440px) {
    .container {
        max-width: 1440px;
        padding: 0 135px;
    }
}

body {
    font-family: "IBM Plex Sans", sans-serif;
    background-color: #f6fafd;
    font-size: 14px;
}

.btn {
    display: inline-block;
    text-align: center;
    background-color: #d3b48e;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 143%;
    text-transform: uppercase;
    color: #fff;
    padding: 24px 0;
}

.btn-full {
    width: 100%;
}

.section {
    padding: 16px 0;
}
@media screen and (min-width: 768px) {
    .section {
        padding: 32px 0;
    }
}
@media screen and (min-width: 1440px) {
    .section {
        padding: 40px 0;
    }
}

.title {
    font-weight: 600;
    font-size: 28px;
    line-height: 0.96;
    letter-spacing: -0.01em;
    text-transform: capitalize;
    text-align: center;
    color: #f5f5f5;
    margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
    .title {
        font-size: 42px;
        line-height: 1.29;
        margin-bottom: 24px;
    }
}
@media screen and (min-width: 1440px) {
    .title {
        font-size: 48px;
        line-height: 1.12;
        margin-bottom: 40px;
    }
}

.header {
    padding: 16px 0;
    position: relative;
}
.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__logo {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.67;
    text-transform: capitalize;
    color: #1c1c1c;
    z-index: 2;
}
.header__nav {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #fff;
    padding: 86px 16px 24px;
    z-index: 1;
}
.header__nav.nav--active {
    display: block;
}
@media screen and (min-width: 768px) {
    .header__nav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 24px;
        position: static;
        background-color: transparent;
        padding: 0;
    }
}
@media screen and (min-width: 1440px) {
    .header__nav {
        gap: 40px;
    }
}
.header__menu {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
    .header__menu {
        flex-direction: row;
        gap: 24px;
        margin-bottom: 0;
    }
}
@media screen and (min-width: 1440px) {
    .header__menu {
        gap: 40px;
    }
}
.header__menu-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.25;
    text-transform: capitalize;
    text-align: center;
    color: #1c1c1c;
}
@media screen and (min-width: 768px) {
    .header__menu-link {
        font-size: 18px;
        font-weight: 400;
    }
}
.header__menu-icon {
    width: 8px;
    height: 8px;
}
.header__menu-item--dropdown {
    position: relative;
}
.header__menu-item--dropdown:hover .header__submenu {
    display: block;
}
@media screen and (min-width: 768px) {
    .header__menu-item--dropdown:hover .header__submenu {
        display: block;
    }
}
.header__submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 5;
}
@media screen and (min-width: 768px) {
    .header__submenu {
        min-width: 200px;
    }
}
.header__submenu-link {
    display: block;
    padding: 8px 12px;
    font-size: 16px;
    color: #1c1c1c;
    text-decoration: none;
}
.header__submenu-link:hover {
    background-color: #f3f3f3;
}
@media screen and (min-width: 768px) {
    .header__button {
        width: 200px;
    }
}
.header__burger {
    z-index: 2;
}
@media screen and (min-width: 768px) {
    .header__burger {
        display: none;
    }
}
.header__burger-icon {
    width: 24px;
    height: 24px;
    stroke: #1c1c1c;
}

.header--fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.hero {
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.4) 0%, rgba(35, 38, 49, 0.4) 100%), url("../images/hero-bg.jpg");
    background-position: center center;
    background-size: cover;
    padding: 48px 0;
}
@media screen and (min-width: 768px) {
    .hero {
        padding: 160px 0;
    }
}
.hero.page-header {
    background-image: linear-gradient(360deg, rgba(0, 0, 0, 0.4) 0%, rgba(35, 38, 49, 0.4) 100%), url("../images/page-hero-bg.jpg");
    background-position: bottom center;
    padding: 54px 0;
}
@media screen and (min-width: 768px) {
    .hero.page-header {
        padding: 64px 0;
    }
}
@media screen and (min-width: 1440px) {
    .hero.page-header {
        padding: 122px 0 102px;
    }
}
.hero__title {
    font-weight: 500;
    font-size: 36px;
    line-height: 1.17;
    letter-spacing: -0.03em;
    text-align: center;
    color: #fff;
    margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
    .hero__title {
        font-size: 54px;
        line-height: 1.11;
    }
}
@media screen and (min-width: 1440px) {
    .hero__title {
        max-width: 1000px;
        font-size: 70px;
        line-height: 1;
        letter-spacing: -0.02em;
        margin: 0 auto 24px;
    }
}
.hero__text {
    font-size: 18px;
    line-height: 1.44;
    text-align: center;
    color: #f6fafd;
    margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
    .hero__button {
        display: flex;
        justify-content: center;
        width: 200px;
        margin: 0 auto;
    }
}

.partners {
    padding: 16px 0;
}
.partners__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}
@media screen and (min-width: 768px) {
    .partners__list {
        gap: 52px;
    }
}
@media screen and (min-width: 1440px) {
    .partners__list {
        gap: 136px;
    }
}
.partners__list-item {
    display: none;
    flex-basis: calc((100% - 64px) / 3);
}
.partners__list-item:nth-child(-n + 3) {
    display: block;
}
@media screen and (min-width: 768px) {
    .partners__list-item {
        display: block;
        flex-basis: calc((100% - 208px) / 5);
    }
}
@media screen and (min-width: 1440px) {
    .partners__list-item {
        flex-basis: calc((100% - 544px) / 6);
    }
}

.booking__title {
    color: #232631;
}
.booking__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media screen and (min-width: 768px) {
    .booking__list {
        flex-direction: row;
        gap: 30px;
    }
}
.booking__list-item:last-child {
    display: none;
}
@media screen and (min-width: 768px) {
    .booking__list-item {
        flex-basis: calc((100% - 30px) / 2);
    }
}
@media screen and (min-width: 1440px) {
    .booking__list-item {
        flex-basis: calc((100% - 60px) / 3);
    }
    .booking__list-item:last-child {
        display: block;
    }
}
.booking__info {
    background-size: cover;
    background-position: center center;
    height: 320px;
}
.booking__info.hotel-1 {
    background-image: linear-gradient(180deg, rgba(35, 38, 49, 0.4) 0%, rgba(35, 38, 49, 0.4) 100%), url("../images/booking-1.webp");
}
.booking__info.hotel-2 {
    background-image: linear-gradient(180deg, rgba(35, 38, 49, 0.4) 0%, rgba(35, 38, 49, 0.4) 100%), url("../images/booking-2.jpg");
}
.booking__info.hotel-3 {
    background-image: linear-gradient(180deg, rgba(35, 38, 49, 0.4) 0%, rgba(35, 38, 49, 0.4) 100%), url("../images/booking-3.jpg");
}
.booking__info-main {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    color: #fff;
    padding: 0 20px 20px;
}
.booking__info-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.booking__info-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.67;
    text-transform: capitalize;
}
.booking__item-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}
.booking__item-rate {
    line-height: 2.14;
    text-transform: capitalize;
}
.booking__item-icon {
    width: 20px;
    height: 20px;
    fill: #f7cc46;
}
.booking__info-service:not(:last-child)::after {
    content: "|";
    margin: 0 12px;
}

.facilities__bg {
    background-color: #232631;
    padding: 32px 0;
}
@media screen and (min-width: 768px) {
    .facilities__bg {
        padding: 64px 0;
    }
}
@media screen and (min-width: 1440px) {
    .facilities__bg {
        padding: 80px 0;
    }
}
.facilities__wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media screen and (min-width: 768px) {
    .facilities__wrapper {
        gap: 24px;
    }
}
@media screen and (min-width: 1440px) {
    .facilities__wrapper {
        flex-direction: row;
        gap: 80px;
        justify-content: space-between;
    }
}
@media screen and (min-width: 1440px) {
    .facilities__info {
        max-width: 472px;
    }
}
.facilities__title {
    text-align: left;
}
@media screen and (min-width: 1440px) {
    .facilities__title {
        margin-bottom: 16px;
    }
}
.facilities__text {
    font-size: 18px;
    line-height: 1.44;
    color: #c3c1c1;
}
.facilities__list {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 8px;
    column-gap: 8px;
    row-gap: 16px;
}
@media screen and (min-width: 768px) {
    .facilities__list {
        gap: 24px;
    }
}
.facilities__list-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-basis: calc((100% - 8px) / 2);
    height: 170px;
    background-color: #303440;
    padding: 0 8px;
}
@media screen and (min-width: 768px) {
    .facilities__list-item {
        flex-basis: calc((100% - 48px) / 3);
    }
}
.facilities__list-icon {
    width: 44px;
    height: 44px;
    fill: #d3b48e;
    margin-bottom: 8px;
}
.facilities__list-text {
    font-size: 16px;
    line-height: 1.62;
    text-align: center;
    color: #fff;
}

.types__title {
    color: #232631;
}
.types__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media screen and (min-width: 768px) {
    .types__list {
        flex-direction: row;
        flex-wrap: wrap;
    }
}
@media screen and (min-width: 768px) {
    .types__list-item {
        flex-basis: calc((100% - 32px) / 2);
    }
}
@media screen and (min-width: 1440px) {
    .types__list-item {
        flex-basis: calc((100% - 48px) / 4);
    }
}
.types__list-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center center;
    background-size: cover;
    height: 158px;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.25;
    text-transform: capitalize;
    color: #fff;
}
.types__list-link.ski-hotels {
    background-image: linear-gradient(360deg, rgba(0, 0, 0, 0.4) 0%, rgba(35, 38, 49, 0.4) 100%), url("../images/type-1.jpg");
}
.types__list-link.resort-hotels {
    background-image: linear-gradient(360deg, rgba(0, 0, 0, 0.4) 0%, rgba(35, 38, 49, 0.4) 100%), url("../images/type-2.jpg");
}
.types__list-link.spa-hotels {
    background-image: linear-gradient(360deg, rgba(0, 0, 0, 0.4) 0%, rgba(35, 38, 49, 0.4) 100%), url("../images/type-3.jpg");
}
.types__list-link.casino-hotels {
    background-image: linear-gradient(360deg, rgba(0, 0, 0, 0.4) 0%, rgba(35, 38, 49, 0.4) 100%), url("../images/type-4.jpg");
}
@media screen and (min-width: 768px) {
    .types__list-link {
        height: 390px;
    }
}

.testimonials__bg {
    background-color: #232631;
    padding: 32px 0;
}
@media screen and (min-width: 768px) {
    .testimonials__bg {
        padding: 64px 0;
    }
}
.testimonials__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media screen and (min-width: 768px) {
    .testimonials__list {
        flex-direction: row;
    }
}
.testimonials__list-item {
    background-color: #303440;
    padding: 16px;
}
.testimonials__list-item:last-child {
    display: none;
}
@media screen and (min-width: 1440px) {
    .testimonials__list-item:last-child {
        display: block;
    }
}
@media screen and (min-width: 768px) {
    .testimonials__list-item {
        flex-basis: calc((100% - 16px) / 2);
    }
}
@media screen and (min-width: 1440px) {
    .testimonials__list-item {
        flex-basis: calc((100% - 32px) / 3);
    }
}
.testimonials__list-icon {
    width: 40px;
    height: 32px;
    fill: #d3b48e;
    margin-bottom: 16px;
}
.testimonials__list-text {
    font-size: 16px;
    line-height: 1.62;
    color: #fff;
    margin-bottom: 16px;
}
.testimonials__list-author {
    font-size: 16px;
    line-height: 1.62;
    color: #c3c1c1;
}

.contact {
    padding-bottom: 0;
}
.contact__bg {
    background-image: url(../images/contact-bg.jpg);
    background-size: cover;
    background-position: center center;
    padding: 30px 0;
}
@media screen and (min-width: 768px) {
    .contact__bg {
        padding: 64px 0;
    }
}
.contact__wrapper {
    background-color: #232631;
    padding: 16px;
}
@media screen and (min-width: 768px) {
    .contact__wrapper {
        padding: 32px 64px;
    }
}
@media screen and (min-width: 1440px) {
    .contact__wrapper {
        max-width: 742px;
        margin: 0 auto;
    }
}
@media screen and (min-width: 768px) {
    .contact__title {
        margin-bottom: 12px;
    }
}
.contact__text {
    font-size: 16px;
    line-height: 1.62;
    text-align: center;
    color: #cac9c8;
    margin-bottom: 32px;
}
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.contact__inputs {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact__input {
    height: 36px;
    background-color: transparent;
    outline: none;
    border: none;
    border-bottom: 1px solid #3d3d3d;
    color: #fff;
}
.contact__input.textarea {
    height: 94px;
    resize: none;
}
@media screen and (min-width: 768px) {
    .contact__button {
        width: 200px;
        margin: 0 auto;
    }
}

.footer {
    padding: 16px 0;
}
@media screen and (min-width: 768px) {
    .footer__wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}
.footer__text,
.footer__link {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.87;
    color: rgba(40, 43, 47, 0.7);
    margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
    .footer__text,
    .footer__link {
        margin-bottom: 0;
    }
}
.footer__list {
    display: flex;
    gap: 16px;
}
.footer__link {
    margin-bottom: 0;
}

.about__wrapper {
    padding: 16px 0;
}
@media screen and (min-width: 768px) {
    .about__wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 48px;
        padding: 64px 0 32px;
    }
}
@media screen and (min-width: 1440px) {
    .about__wrapper {
        gap: 144px;
    }
}
@media screen and (min-width: 768px) {
    .about__content {
        max-width: 344px;
    }
}
@media screen and (min-width: 1440px) {
    .about__content {
        max-width: 504px;
    }
}
.about__title {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.25;
    text-transform: capitalize;
    color: #232631;
    margin-bottom: 16px;
}
.about__text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}
.about__description {
    font-size: 16px;
    line-height: 1.62;
    color: rgba(0, 0, 0, 0.6);
}
.about__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media screen and (min-width: 1440px) {
    .about__image {
        height: 380px;
    }
}

.why-us__title {
    text-align: left;
    color: #232631;
}
@media screen and (min-width: 1440px) {
    .why-us__title {
        text-align: center;
    }
}
.why-us__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media screen and (min-width: 1440px) {
    .why-us__list {
        flex-direction: row;
    }
}
.why-us__list-item {
    background-color: rgba(35, 38, 49, 0.06);
    padding: 16px;
}
@media screen and (min-width: 768px) {
    .why-us__list-item {
        padding: 32px;
    }
}
@media screen and (min-width: 1440px) {
    .why-us__list-item {
        flex-basis: calc((100% - 32px) / 3);
    }
}
.why-us__list-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.25;
    text-transform: capitalize;
    color: #232631;
    margin-bottom: 8px;
}
.why-us__list-text {
    font-size: 16px;
    line-height: 1.62;
    color: rgba(0, 0, 0, 0.6);
}

.hotels {
    padding: 32px 0 16px;
}
@media screen and (min-width: 768px) {
    .hotels {
        padding: 64px 0 32px;
    }
}
@media screen and (min-width: 1440px) {
    .hotels {
        padding: 80px 0 40px;
    }
}
.hotels__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media screen and (min-width: 768px) {
    .hotels__list {
        gap: 24px;
    }
}
.hotels__list-item {
    background-color: rgba(35, 38, 49, 0.06);
}
@media screen and (min-width: 1440px) {
    .hotels__list-item {
        display: flex;
        align-items: center;
    }
}
.hotels__list-content {
    padding: 32px 16px;
}
@media screen and (min-width: 768px) {
    .hotels__list-content {
        padding: 40px;
    }
}
.hotels__list-title {
    font-weight: 600;
    font-size: 28px;
    line-height: 0.96;
    letter-spacing: -0.01em;
    text-transform: capitalize;
    color: #1c1c1c;
    margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
    .hotels__list-title {
        font-size: 48px;
        line-height: 1.12;
    }
}
.hotels__list-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}
.hotels__list-info-title {
    display: inline-block;
    font-size: 18px;
    line-height: 1.44;
    color: #1c1c1c;
    margin-bottom: 8px;
}
.hotels__list-info-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.62;
    color: rgba(0, 0, 0, 0.6);
}
@media screen and (min-width: 768px) {
    .hotels__list-button {
        width: 200px;
    }
}
@media screen and (min-width: 1440px) {
    .hotels__list-image {
        width: 420px;
        height: 576px;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.legal {
    padding: 24px 0;
}
.legal__wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media screen and (min-width: 768px) {
    .legal__wrapper {
        gap: 24px;
    }
}
@media screen and (min-width: 1440px) {
    .legal__wrapper {
        max-width: 760px;
        margin: 0 auto;
    }
}
.legal__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media screen and (min-width: 768px) {
    .legal__content {
        gap: 24px;
    }
}
.legal__title {
    font-weight: 500;
    font-size: 36px;
    line-height: 1.17;
    letter-spacing: -0.03em;
    color: #232631;
}
@media screen and (min-width: 768px) {
    .legal__title {
        font-size: 54px;
        line-height: 1.11;
    }
}
.legal__subtitle {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.25;
    text-transform: capitalize;
    color: #232631;
}
.legal__text,
.legal__list-item {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.62;
    color: rgba(0, 0, 0, 0.6);
}
.legal__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #222;
    color: #fff;
    padding: 16px;
    text-align: center;
    font-size: 14px;
    z-index: 1000;
    display: none;
}

.cookie-banner__content {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.cookie-btn {
    background-color: #1e90ff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}
