* {
    margin: 0;
    box-sizing: border-box;
	scroll-behavior: smooth;
}

body {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    font-style: normal;
    min-width: 320px;
    color: black;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #111;
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    font-size: 0.9rem;
}

.cookie-banner a {
    color: #ffd700;
    text-decoration: underline;
}

.cookie-banner button {
    background: #ffd700;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: bold;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.container {
	max-width: 1440px;
	min-width: 320px;
	margin: 0 auto;
	padding: 0 20px;
}

a {
    display: inline-flex;
    color: blue;
    text-decoration: none;
    cursor: pointer;

	&:hover {
		color: red;
		transition-duration: 0.3s;
	}
}

button {
    cursor: pointer;

    &:hover {
        opacity: 0.8;
        transition-duration: 0.3s;
    }
}

.header--about {
    padding-top: 35px;
}

.header__nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 35px 0;
}

.header__nav-logo {
    width: 180px;
}

.header__nav-logo-img {
    width: 28px;
    height: 36px;
    margin-right: 10px;
}

.header__nav-logo-info {
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    color: black;

    &:hover {
        opacity: 70%;
    }
}

.header__nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 0;
}

.header__nav-burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background: #000;
    border-radius: 2px;
    transition: 0.3s ease;
    transform-origin: center;
}

.header__nav-burger--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__nav-burger--active span:nth-child(2) {
    opacity: 0;
}

.header__nav-burger--active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.header__nav-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.header__nav-list-item {
    list-style: none;
    margin-left: 40px;
}

.header__nav-list-item-link,
.header__nav-list-item-btn,
.header__info-btn {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    color: black;
}

.header__nav-list-item-btn,
.header__info-btn {
    background-color: #FA6832;
    color: #ffffff;
    border: 0;
    border-radius: 16px;
    padding: 16px 8px;
    text-shadow: 2px 1px 6px rgba(0, 0, 0, 0.7);

    &:hover {
        color: #000000;
        text-shadow: none
    }
}

.header__info {
    background-image: linear-gradient(90deg, #FFD2C1 20%, transparent), url(../img/mainscreen.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 440px;
    padding: 120px 60px;
    border-radius: 16px;
}

.header__info--about {
    background-image: none;
}

.header__info--booking {
    background-image: none;
    padding: 50px 60px;
}

.header__info-title {
    font-weight: 700;
    font-size: 60px;
    line-height: 70px;
    letter-spacing: 0%;
    text-transform: capitalize;
    padding-bottom: 10px;
    width: 585px;
}

.header__info-title--white {
    color: #ffffff;
    text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.7);
}

.header__info-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    width: 385px;
}

.header__info-text--white {
    color: #ffffff;
    text-shadow: 4px 1px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 24px;
}

.main__pophotels {
    padding-top: 70px;
}

.main__pophotels-title,
.main__otherhotels-title,
.main__morehotels-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    padding-bottom: 30px;
}

.main__pophotels-box, 
.main__otherhotels-box,
.main__morehotels-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    margin: 0 -15px;
}

.main__pophotels-box-item, 
.main__otherhotels-box-item,
.main__morehotels-box-item {
    display: flex;
    padding: 0 15px;
    width: 33.33%;
}

.hotel {
    flex: 1;
    display: flex;
    flex-direction: column;
    border: 1px solid #00000033;
    border-radius: 8px;
}

.hotel__img {
    max-width: 100%;
    order: -1;
    display: block;
    height: 300px;
    object-fit: cover;
    width: auto;
    border-radius: 8px 8px 0 0;
}

.hotel__box {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hotel__box-name {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}


.hotel__box-name-info {
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
    text-transform: capitalize;
    padding-right: 10px;
}

.hotel__box-name-rate {
    width: 44px;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0%;
    text-transform: capitalize;
    position: relative;
    align-self: flex-start;

    &::after {
        content: url(../img/star.png);
        display: inline-block;
        width: 20px;
        height: 20px;
        position: absolute;
        top: 4px;
        left: 22px;
    }
}

.hotel__box-info {
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0%;
    text-transform: capitalize;
}

.hotel__box-info--green {
    color: #24AB70;
}

.hotel__box-service {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0 -5px;
    padding-top: 20px;
}

.hotel__box-service-item {
    margin: 0 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.hotel__box-service-item-img {
    width: 24px;
    height: 24px;
    margin-bottom: 2px;
}

.hotel__box-service-item-info {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0%;
    opacity: 0.6;
    text-align: center;
}

.hotellist__box-item-cont-btn,
.hotel__box-btn {
    padding: 15px 30px;
    background-color: #FA6832;
    border: none;
    border-radius: 10px;
    color: #ffffff;
    width: 100%;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0%;
    vertical-align: middle;
    margin-top: auto;
    justify-content: center;
    text-shadow: 2px 1px 6px rgba(0, 0, 0, 0.7);

    &:hover {
        text-shadow: none;
        color: #000000;
    }
}

.facilities {
    display: flex;
    flex-direction: row;
    margin: 0 -15px;
    padding-top: 70px;
}

.facilities__info, .facilities__box {
    padding: 0 15px;
}

.facilities__info {
    width: 40%;
}

.facilities__box {
    width: 60%;
}

.facilities__info-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.facilities__info-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    max-width: 440px;
}

.facilities__box {
    padding: 0 15px;
}

.facilities__box-inn {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    flex-wrap: wrap;
    align-items: stretch;
    margin: 0 -10px;
}

.facilities__box-inn-item {
    display: flex;
    width: 25%;
    padding: 0 10px;
    margin-bottom: 30px;
}

.facilities__box-inn-item-cont {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #00000033;
    border-radius: 16px;
    padding: 40px 10px;
}

.facilities__box-inn-item-cont-img {
    width: 40px;
    height: 40px;
    margin-bottom: 4px;
}

.facilities__box-inn-item-cont-info {
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
}

.main__otherhotels {
    margin-top: 40px;
}

.reviews {
    margin-top: 70px;
}

.reviews__box {
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    background-color: #FAFAFA;
    align-items: center;
}

.reviews__box-item {
    width: 64%;
    position: relative;

    ::before {
        content: "";
        display: block;
        width: 30px;
        height: 30px;
        position: absolute;
        top: 45px;
        left: 15px;
        background-image: url(../img/quoteL.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }

    ::after {
        content: "";
        display: block;
        width: 30px;
        height: 30px;
        position: absolute;
        top: 85px;
        right: 15px;
        background-image: url(../img/quoteR.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
}

.reviews__box-item-info {
    font-weight: 400;
    font-style: italic;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    padding: 50px;
}

.reviews__box-card {
    width: 36%;
    text-align: right;
}

.reviews__box-card-img {
    display: block;
    max-width: 100%;
    object-fit: cover;
}

.main__morehotels, 
.about {
    margin-top: 70px;
}

.about {
    margin-bottom: 130px;
}

.about__box {
    display: flex;
    overflow: hidden;
    background-color: #FFD2C1;
    border-radius: 16px;
}

.about__box-card,
.about__box-info {
    width: 50%;
}

.about__box-card-img {
    display: block;
    width: 100%;
}

.about__box-info {
    padding: 0 30px 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about__box-info-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.about__box-info-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
}

.footer {
    margin: 70px auto 0;
    background-color: #F6F6F6;
    position: fixed;
    bottom: 0;
    max-width: initial;
    width: 100%;
}

.footer__box {
    display: flex;
    flex-direction: row;
    padding: 30px 0;
    justify-content: space-between;
}

.footer__box-info,
.footer__box-privacypolicy {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0%;
    text-align: center;
    margin-right: 20px;
}

.footer__box-privacypolicy {
    color: gray;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modal__content {
  width: 90%;
  max-width: 220px;
  position: relative;
  box-shadow: 0px 0px 5px white;
  border-radius: 16px;
}

.modal__close {
  position: absolute;
  top: -23px;
  right: -21px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.modal__info {
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    background-color: #FA6832;
    color: #ffffff;
    border: 0;
    border-radius: 16px;
    padding: 16px 8px;
    text-shadow: 2px 1px 6px rgba(0, 0, 0, 0.7);
}

.main__contform {
    display: flex;
    flex-direction: row;
    margin-bottom: 120px;
}

.main__contform-box {
    display: flex;
    flex-direction: row;
    margin: 80px -30px 0;
}

.main__contform-box-inner {
    width: 50%;
    padding: 0 30px;
}

.main__contform-box-inner-info {
    display: flex;
    flex-direction: column;
}

.main__contform-box-inner-info-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    letter-spacing: -1%;
    margin-bottom: 20px;
}

.main__contform-box-inner-info-text,
.main__contform-box-inner-info-email,
.main__contform-box-inner-info-location {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #00000099;
}

.main__contform-box-inner-info-text {
    margin-bottom: 24px;
}

.main__contform-box-inner-info-email,
.main__contform-box-inner-info-location {
    padding-left: 40px;
    position: relative;

    &::before {
        content: "";
        width: 24px;
        height: 24px;
        top: 0;
        left: 0;
        display: block;
        position: absolute;
    }
}

.main__contform-box-inner-info-email::before {
    content: url(../img/email.png);
}

.main__contform-box-inner-info-location::before {
    content: url(../img/location.png);
}

.main__contform-box-inner-form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.main__contform-box-inner-form {
    border: 1px solid #00000033;
    border-radius: 16px;
    padding: 24px;
}

.main__contform-box-inner-form-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0%;
    color: #00000099;
    margin-bottom: 4px;
}

.main__contform-box-inner-form-input,
.main__contform-box-inner-form-textarea {
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0%;
    padding: 16px;
    border: 1px solid #00000033;
    border-radius: 16px;
    margin-bottom: 16px;
}

.main__contform-box-inner-form-agreetext {
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0%;
    color: #00000099;
    margin-bottom: 16px;
}

.main__contform-box-inner-form-btn {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 3%;
    vertical-align: middle;
    text-transform: uppercase;
    border-radius: 16px;
    padding: 16px;
    border: none;
    width: 100%;
    background-color: #F7CC46;
} 

.main__privatpolicy,
.main__cookies,
.main__terms {
    display: flex;
    flex-direction: column;
    margin: 70px 40px 120px;
}

.main__privatpolicy-maintitle,
.main__cookies-maintitle,
.main__terms-maintitle {
    font-size: 24px;
    margin-bottom: 5px;
}

.main__privatpolicy-date,
.main__cookies-date,
.main__terms-date {
    font-size: 14px;
    margin-bottom: 30px;
}

.main__privatpolicy-title,
.main__cookies-title,
.main__terms-title,
.main__privatpolicy-list,
.main__cookies-list,
.main__terms-list {
    font-size: 18px;
    margin-bottom: 5px;
}

.main__privatpolicy-info,
.main__cookies-info,
.main__terms-info,
.main__privatpolicy-list-item,
.main__cookies-list-item,
.main__terms--list-item {
    font-size: 14px;
    margin-bottom: 15px;
}

.main__privatpolicy-list-item,
.main__cookies-list-item,
.main__terms--list-item {
    &:first-of-type {
        margin-top: 15px;
    }
}

.background-img {
    background-image: url(../img/bg-aboutus.jpg);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: -35px;
}

.background-img--hoteltypes {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/main-hoteltypes.jpg) center/cover no-repeat;
    background-size: auto;
}

.header__nav {
    background-color: #ffffff70;
    padding: 15px;
    border-radius: 16px;
}

.about-article {
    display: flex;
    flex-direction: row;
    margin: 80px -30px 40px;
}

.about-article__info,
.about-article__img {
    width: 50%;
    padding: 0 30px;
}

.about-article__info-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    letter-spacing: -1%;
    margin-bottom: 20px;
}

.about-article__info-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    padding-bottom: 20px;
}

.about-article__box-img {
    border-radius: 16px;
    display: block;
    max-width: 100%;
}

.differencies--booking {
    margin-top: 80px;
}

.differencies__title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    letter-spacing: -1%;
    text-align: center;
    margin-bottom: 40px;
}

.differencies__box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 -8px 120px;
}

.differencies__box-item {
    padding: 0 8px;
    width: 33.33%;
    display: flex;
}

.differencies__box-item-inner {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 32px;
    background-color: #F7CC461A;
    border-radius: 16px;
    position: relative;
}

.differencies__box-item-inner--1st::before {
    content: url(../img/dif1.svg);
}

.differencies__box-item-inner--2nd::before {
    content: url(../img/dif2.svg);
}

.differencies__box-item-inner--3rd::before {
    content: url(../img/dif3.svg);
}

.differencies__box-item-inner--1st::before,
.differencies__box-item-inner--2nd::before,
.differencies__box-item-inner--3rd::before {
    display: block;
    position: absolute;
    width: 60px;
    height: 60px;
    top: 32px;
    left: 25px;
}

.differencies__box-item-inner-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0%;
    text-transform: capitalize;
    padding-top: 82px;
    margin-bottom: 8px;
    position: relative;
}

.differencies__box-item-inner-info {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
}

.hoteltypes {
    margin-top: 80px;
}

.hoteltypes__title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    letter-spacing: -1%;
    text-align: center;
    margin-bottom: 40px;
}

.hoteltypes__box {
    display: flex;
    flex-direction: row;
    margin: 0 -8px;
}

.hoteltypes__box-item {
    padding: 0 8px;
    width: 25%;
}

.hoteltypes__box-item-btn {
    border-radius: 16px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    height: 250px;
    width: 100%;
    display: flex;
    align-items: end;
    padding: 24px;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #FAFAFA;
    text-shadow: 2px 2px 4px #000000;
    border: none;

    &:hover {
        opacity: 0.8;
        scale: 1.01;
    }
}

.hoteltypes__box-item-btn--ski {
    background-image: url(/img/ski-hotels.jpg);
}

.hoteltypes__box-item-btn--resort {
    background-image: url(/img/resort-hotels.jpg);
}

.hoteltypes__box-item-btn--spa {
    background-image: url(/img/spa-hotels.jpg);
}

.hoteltypes__box-item-btn--casino {
    background-image: url(/img/casino-hotels.jpg);
}

/* .hoteltypes__box-item-link-info {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #FAFAFA;
    text-shadow: 2px 2px 4px #000000;
} */

.hotellist {
    margin-top: 80px;
}

.hotellist__title {
    margin-bottom: 40px;
    font-weight: 600;
    font-size: 56px;
    line-height: 60px;
    letter-spacing: -2%;
    text-align: center;
}

.hotellist__box {
    margin-bottom: 40px;
    display: none;
}

.hotellist__box-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 -30px 80px;
}

.hotellist__box-item:nth-child(even) {
    flex-direction: row-reverse;
}

.hotellist__box-item-cont {
    width: 50%;
    padding: 0 30px;
}

.hotellist__box-item-cont-title {
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    letter-spacing: -1%;
    margin-bottom: 16px;
}

.hotellist__box-item-cont-topic {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0%;
    text-transform: capitalize;
    margin-bottom: 8px;
}

.hotellist__box-item-cont-info {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    margin-bottom: 16px;
}

.hotellist__box-item-cont-btn {
    width: auto;
    padding: 16px 58px;
}

.hotellist__box-item-cont--imgbox {
    overflow: hidden;
}

.hotellist__box-item-cont-img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
    border-radius: 16px;
}



@media (max-width: 991px) {

    .main__pophotels-box, 
    .main__otherhotels-box, 
    .main__morehotels-box {
        flex-wrap: wrap;
        justify-content: center;

    }

    .main__pophotels-box-item, 
    .main__otherhotels-box-item, 
    .main__morehotels-box-item {
        width: 50%;

        &:last-child {
            display: none;
        }
    }

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

    .facilities__info,
    .facilities__box {
        width: 100%;
    }

    .facilities__info-text {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .reviews__box {
        flex-direction: column;
    }

    .reviews__box-item {
        width: 100%;
    }

    .reviews__box-card {
        display: none;
    }

    .main__contform-box {
        margin-top: 20px;
        flex-direction: column;
    }

    .main__contform-box-inner {
        width: 100%;
        margin-bottom: 16px;
    }

    .about-article {
        margin: 64px 0 20px;
        flex-direction: column;
    }

    .about-article__info,
    .about-article__img {
        width: 100%;
        padding: 0;
    }

    .about-article__info-title {
        font-size: 40px;
        line-height: 48px;
        letter-spacing: -1%;
    }

    .differencies--booking {
        margin-top: 64px;
    }

    .differencies__title {
        font-size: 40px;
        line-height: 48px;
        margin-bottom: 24px;
    }

    .differencies__box,
    .differencies__box-item {
        flex-direction: column;
    }

    .differencies__box-item {
        width: 100%;
        margin-bottom: 16px;
    }

    .differencies__box-item-inner {
        padding: 24px 24px 24px 108px;
    }

    .differencies__box-item-inner-title {
        padding-top: 0;
    }

    .differencies__box-item-inner--1st::before,
    .differencies__box-item-inner--2nd::before,
    .differencies__box-item-inner--3rd::before {
        top: 50px;
        left: 24px;
    }

    .hoteltypes {
        margin-top: 64px;
    }

    .hoteltypes__title {
        font-size: 40px;
        line-height: 48px;
        margin-bottom: 24px;
    }

    .hoteltypes__box {
        flex-wrap: wrap;
    }

    .hoteltypes__box-item {
        width: 50%;
        margin-bottom: 16px;
    }
}

@media (max-width: 768px) {

    .header__nav {
        margin-top: 10px;
    }

    .header__nav-logo {
        width: inherit;
    }

    .header__nav-logo-img {
        display: none;
    }

    .header__nav-burger {
        display: flex;
    }

    .header__nav-list {
        display: none;
        flex-direction: column;  
        justify-content: center; 
        position: absolute;
        top: 70px;
        left: -20px;
        width: 100%;
        z-index: 1;
        margin: 0;
        padding: 0
    }

    .header__nav-list--mob {
        display: flex;
    }

    .header__nav-list-item--mob {
        padding: 10px 10px 10px 35px;
        width: 100%;
        background-color: #ffffff;
        border: 1px solid gray;
    }

    .header__nav-list-item-link {
        width: 100%;
    }

    .header__nav-list-item-btn {
        font-weight: 400;
        font-size: 15px;
        line-height: 20px;
        letter-spacing: 0%;
        text-align: center;
        color: black;
        padding: 0;
        background-color: #ffffff;
        border-radius: 0;
        text-shadow: none;

        &:hover {
            color: red;
        }
    }

    .header__info {
        background-image: none;
        background-color: #FFD2C1;
        padding: 60px 16px;
        height: inherit;
    }

    .header__info--about,
    .header__info--booking {
        background: none;
    }

    .header__info-title,
    .header__info-text {
        width: 100%;
    }

    .header__info-title {
        line-height: 100%;
        font-size: 36px;
    }

    .header__info-text {
        font-size: 16px;
    }

    .main__pophotels-box-item, 
    .main__otherhotels-box-item, 
    .main__morehotels-box-item {
        width: 100%;

        &:first-child {
            margin-bottom: 30px;
        }
    }

    .facilities {
        padding-top: 40px;
    }

    .facilities__info-text {
        font-size: 16px;
        line-height: 100%;
    }

    .facilities__box-inn-item {
        width: 50%;
    }

    .about__box-card {
        display: none;
    }

    .about__box-info {
        width: 100%;
        padding: 90px 20px;
        align-items: center;
    }

    .reviews__box-item::after{
        content: "";
        background-image: none;
    }

    .about-article {
        margin-top: 16px;
    }

    .about-article__info-title,
    .differencies__title {
        font-size: 32px;
        line-height: 40px;
    }

    .differencies--booking {
        margin-top: 24px;
    }

    .differencies__title {
        margin-bottom: 16px;
    }

    .differencies__box-item-inner {
        padding: 16px;
    }

    .differencies__box-item-inner-title {
        padding-top: 72px;
    }

    .differencies__box-item-inner--1st::before,
    .differencies__box-item-inner--2nd::before,
    .differencies__box-item-inner--3rd::before {
        top: 16px;
        left: 16px;
        width: 40px;
        height: 40px;
    }

    .hoteltypes {
        margin-top: 32px;
    }

    .hoteltypes__title {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 16px;
    }

    .hoteltypes__box-item {
        width: 100%;
    }

    .hoteltypes__box-item-btn {
        height: 160px;
        background-position: center;
    }

    .main__contform {
        margin-top: -35px;
    }

    .main__contform-box-inner-info-title {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .main__contform-box-inner-info-text {
        line-height: 16px;
    }

    .hotellist__box-item,
    .hotellist__box-item:nth-child(even) {
        flex-direction: column-reverse;
        margin: 0 0 80px;
    }

    .hotellist__box-item-cont {
        width: 100%;
        padding: 0;
    }

    .hotellist__box-item-cont--imgbox {
        margin-bottom: 20px;
    }
}

