@import url("https://fonts.googleapis.com/css2?family=Cormorant:wght@400;700&amp;family=Poppins:wght@400;500;600;700&amp;display=swap");

:root {
  scroll-behavior: smooth;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --ff-poppins: "Poppins", sans-serif;
  --ff-cormorant: "Cormorant", serif;
  --inner-padding: 15px;
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--ff-poppins);
  font-size: var(--fw-regular);
  color: #000;
  background-color: #fff;
}

a {
  text-decoration: none;

  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

ul,
ol {
  list-style: none;
}

.container {
  position: relative;
  width: 1500px;
  max-width: 100%;
  padding: 0 var(--inner-padding);
  margin: auto;
}

/*.side-border {
  border-left: 1px solid rgba(112, 112, 112, 0.55);
  border-right: 1px solid rgba(112, 112, 112, 0.55);
}
.side-border.white-border {
  border-color: rgba(255, 255, 255, 0.55);
}*/

.big-title {
  text-align: center;
}
.big-title h3 {
  font-size: 34px;
  font-weight: var(--fw-regular);
  color: #383423;
  text-transform: uppercase;
}
.big-title.white h3 {
  color: #fff;
}

.header {
  position: relative;
  z-index: 999;
  background-color: #fff;
}
.header .inner {
  height: 105px;
  padding-left: 372px;
  display: flex;
  align-items: center;
}
    .header .logo {
        position: absolute;
        width: 258px;
        height: 131px;
        left: var(--inner-padding);
        top: 0;
        background-color: #1f1b20;
    }
        .header .logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            /* padding: 27.9px 18.5px; */
        }
.header .menu nav ul {
  display: flex;
  align-items: center;
}
.header .menu nav ul li {
  margin-right: 49px;
}
.header .menu nav ul li a {
  display: block;
  font-size: 18px;
  color: #707070;
  opacity: 0.55;
}
.header .menu nav ul li a:hover,
.header .menu nav ul li a.active {
  color: #000;
  opacity: 1;
}
.header .others {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
}
.header .others .lang-btn {
  display: block;
  margin-right: 65px;
  font-size: 18px;
  color: #707070;
}
.header .others .lang-btn:hover {
  opacity: 0.85;
}
.header .others .reservation-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 225px;
  height: 105px;
  background-color: #1f1b20;
  color: #fff;
  font-weight: var(--fw-bold);
  font-size: 18px;
  text-transform: uppercase;
}
.header .others .reservation-btn:hover {
  opacity: 0.95;
}

.hero {
    position: relative;
    background: url("../images/uploads/hmz-banner.jpg") center / cover;
    z-index: 1;
}
.hero::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  background: url("../images/hero-overlay.png") repeat-x center bottom;
  z-index: -1;
}
.hero .inner {
  height: 975px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.hero h1.title {
  padding: 0 50px;
  font-size: 55px;
  font-weight: var(--fw-regular);
  color: #fff;
  text-align: center;
}
.hero .reservation-btn {
  position: relative;
  display: block;
  width: 554px;
  height: 134px;
  background-color: #1f1b20;
}
.hero .reservation-btn::before {
  position: absolute;
  width: 134px;
  height: 134px;
  left: 0;
  top: 0;
  content: "";
  background: #fff url("../images/icons/booking.svg") no-repeat center;
}
.hero .reservation-btn span {
  display: block;
  margin-left: 134px;
  line-height: 134px;
  text-align: center;
  font-size: 21px;
  font-weight: var(--fw-bold);
  color: #fff;
}

.welcome .inner {
  padding-top: 210px;
}
.welcome .welcome-slider {
  position: relative;
  margin-bottom: -210px;
  overflow: hidden;
  z-index: 1;
}
.welcome .item {
  display: flex;
}
.welcome .item .image {
  flex-shrink: 0;
  width: 900px;
}
.welcome .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.welcome .item .title {
  position: relative;
  padding: 0 40px 65px 82px;
  margin-left: -222px;
  background-color: #fff;
  font-size: 64px;
  color: #383423;
  line-height: 96px;
  z-index: 1;
}
.welcome .item .title::first-line {
  color: #1f1b20;
}
.welcome .item .title span {
  position: relative;
}
.welcome .item .title span::after {
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0;
  bottom: 0px;
  content: "";
  background-color: #383423;
}
.welcome .item .context {
  padding: 0 40px 235px 88px;
  color: #000;
  opacity: 0.55;
  font-size: 21px;
}
.welcome .item .context p {
  margin-bottom: 45px;
  line-height: 34px;
}
.welcome .swiper-button-prev {
  left: 765px;
  background: url("../images/icons/arrow-left.svg") no-repeat center;
}
.welcome .swiper-button-next {
  left: 970px;
  background: url("../images/icons/arrow-right.svg") no-repeat center;
}
.welcome .swiper-button-prev,
.welcome .swiper-button-next {
  top: auto;
  bottom: 72px;
  width: 64px;
  height: 64px;
}
.welcome .swiper-button-prev::after,
.welcome .swiper-button-next::after {
  display: none;
}

.location-directions {
  position: relative;
  background-color: #1f1b20;
}
.location-directions .inner {
  padding: 60px 0 35px 0;
}
.location-directions .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.location-directions .items .item {
  margin-bottom: 100px;
  padding: 0 70px;
  text-align: center;
  flex-basis: 25%;
}
.location-directions .items .item img {
  width: 77px;
  height: 77px;
  object-fit: contain;
  object-position: bottom;
  margin-bottom: 25px;
}
.location-directions .items .item h4 {
  margin-bottom: 15px;
  font-weight: var(--fw-medium);
  font-size: 27px;
  color: #fff;
}
.location-directions .items .item p {
  font-size: 18px;
  color: #fff;
  opacity: 0.55;
}

.rooms .inner {
  padding-top: 135px;
  margin-bottom: -210px;
}
.rooms .big-title {
  margin-bottom: 80px;
}
.rooms .items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 500px;
  gap: 33px;
}
.rooms .items .item {
  position: relative;
  z-index: 1;
}
.rooms .items .item .image {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.rooms .items .item .image::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  background: url("../images/room-overlay.png") repeat-x center bottom;
}
.rooms .items .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rooms .items .item .content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding-bottom: 70px;
  text-align: center;
}
.rooms .items .item .content .title {
  margin-bottom: 50px;
  font-size: 35px;
  font-weight: var(--fw-semibold);
  color: #fff;
}
.rooms .items .item .content .more-btn {
  display: inline-block;
  padding: 20px 46px;
  font-size: 21px;
  font-weight: var(--fw-semibold);
  color: #fff;
  border: 1px solid #fff;
}
.rooms .items .item .content .more-btn:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.services {
  position: relative;
  background-color: #1f1b20;
}
.services .big-title {
  margin-bottom: 140px;
}
.services .inner {
  padding: 410px 0 105px 0;
}
.services .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.services .items .item {
  margin-bottom: 100px;
  padding: 0 90px;
  text-align: center;
  flex-basis: 33.33%;
}
.services .items .item img {
  width: 77px;
  height: 77px;
  object-fit: contain;
  object-position: bottom;
  margin-bottom: 25px;
}
.services .items .item h4 {
  margin-bottom: 15px;
  font-weight: var(--fw-medium);
  font-size: 27px;
  color: #fff;
}
.services .items .item p {
  font-size: 18px;
  font-weight: var(--fw-medium);
  color: #fff;
  opacity: 0.55;
}

.contact .inner {
  padding-top: 125px;
}
.contact .big-title {
  margin-bottom: 100px;
}
.contact .map {
  position: relative;
  width: 100%;
  height: 675px;
}
.contact .map iframe {
  width: 100%;
  height: 100%;
}
.contact .map .content {
  position: absolute;
  width: 420px;
  height: 375px;
  right: 150px;
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 69px 56px 52px 57px;
  background-color: #fff;
  z-index: 1;
}
.contact .map .content p {
  margin-bottom: 45px;
  font-size: 22px;
  font-family: var(--ff-cormorant);
}
.contact .map .content p {
  margin-bottom: 45px;
  font-size: 22px;
  font-family: var(--ff-cormorant);
  color: #6c6c6c;
}
.contact .map .content p a {
  color: inherit;
}
.contact .map .content p a:hover {
  text-decoration: underline;
}

.footer .inner {
  padding: 95px 140px 100px 120px;
  display: flex;
  justify-content: space-between;
}
.footer .menu {
  display: flex;
  flex-wrap: wrap;
}
.footer .menu .item {
  margin: 22px 0 0 210px;
}
.footer .menu .item h5 {
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: #a1a1a1;
  margin-bottom: 33px;
}
.footer .menu .item nav ul li a {
  display: block;
  margin-bottom: 26px;
  font-size: 13px;
  color: #bb9809;
  text-decoration: underline;
}
.footer .menu .item nav ul li a:hover {
  opacity: 0.75;
}
.footer .copy {
    background-color: #1f1b20;
}
.footer .copy .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
.footer .copy .inner span.copy-text {
  font-size: 15px;
  color: #fff;
}
.footer .copy .inner nav.social-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.footer .copy .inner nav.social-nav ul li {
  margin: 3px 10px;
}
.footer .copy .inner nav.social-nav ul li a {
  padding: 7.5px;
}
.footer .copy .inner nav.social-nav ul li a:hover {
  opacity: 0.75;
}
    .footer .copy .inner a.reservation-btn {
        display: inline-block;
        padding: 54px 70px;
        background-color: #bb9809;
        font-size: 18px;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 2.5px;
    }
.footer .copy .inner a.reservation-btn:hover {
  opacity: 0.9;
}

/* PAGES */

main img {
  max-width: 100%;
}

.banner {
  position: relative;
  z-index: 1;
}
.banner .inner {
  position: relative;
  height: 243px;
}
.banner .bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.banner .bg::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  background: url("../images/banner-overlay.png") repeat-x center bottom;
}
.banner .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .title {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
.banner .title h1 {
  font-size: 43px;
  font-weight: var(--fw-regular);
  color: #fff;
}
.banner .reservation-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 358px;
  height: 87px;
  background-color: #1f1b20;
}
.banner .reservation-btn::before {
  position: absolute;
  width: 87px;
  height: 87px;
  left: 0;
  top: 0;
  content: "";
  background: #fff url("../images/icons/booking.svg") no-repeat center / 40px;
}
.banner .reservation-btn span {
  display: block;
  margin-left: 87px;
  line-height: 87px;
  text-align: center;
  font-size: 13px;
  font-weight: var(--fw-bold);
  color: #fff;
}

.rooms-page .item .inner {
  padding: 45px 0;
}
.rooms-page .item:nth-child(2n + 2) {
  background-color: #fafafa;
}
.rooms-page .item .images {
  margin-bottom: 58.3px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 330px;
  gap: 29.4px;
}
.rooms-page .item .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rooms-page .item .images img:nth-child(1) {
  grid-column: auto / span 3;
  grid-row: auto / span 2;
}

.rooms-page .item .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 51.6px;
}
.rooms-page .item .content h4.title {
  padding-left: 46.5px;
  color: #383423;
  font-weight: var(--fw-bold);
  font-size: 40px;
  font-family: var(--ff-cormorant);
}
.rooms-page .item .content a.reservation-btn {
  width: 357.7px;
  height: 85.33px;
  background-color: #bb9809;
  color: #fff;
  font-size: 18px;
  font-weight: var(--fw-semibold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.rooms-page .item .content a.reservation-btn:hover {
  opacity: 0.95;
}
.rooms-page .item .features {
  border-top: 1px solid rgba(112, 112, 112, 0.34);
  border-bottom: 1px solid rgba(112, 112, 112, 0.34);
  padding: 40px 46.5px;
  font-size: 17px;
  line-height: 2;
  color: #707070;
}

.gallery-page .inner {
  padding: 170px 0;
}
.gallery-page .items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 320px;
  gap: 30px;
}
.gallery-page .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
.gallery-page .item:nth-child(14n + 1),
.gallery-page .item:nth-child(14n + 8) {
  grid-column: auto / span 3;
  grid-row: auto / span 2;
}
.gallery-page .item:nth-child(14n + 5),
.gallery-page .item:nth-child(14n + 12) {
  grid-column: auto / span 1;
  grid-row: auto / span 2;
}
.gallery-page .item:nth-child(14n + 6),
.gallery-page .item:nth-child(14n + 11) {
  grid-column: auto / span 2;
  grid-row: auto / span 2;
}

.basket-btn {
  position: absolute;
  right: 20px;
  top: 125px;
  width: 60px;
  height: 60px;
  background: #fff url("../images/icons/shopping-basket.png") no-repeat center /
    35px;
  box-shadow: var(--shadow-md);
  border-radius: 50%;
  display: block;
}
.basket-btn .badge {
  position: absolute;
  min-width: 22px;
  right: -5px;
  top: 0;
  text-align: center;
  background-color: #e84118;
  border-radius: 50px;
  padding: 2px 6px;
  color: #fff;
  font-weight: var(--fw-semibold);
  font-size: 12px;
  display: none;
}
.basket-btn.sticky {
  position: fixed;
  top: 20px;
}

.products-page .inner {
  padding: 75px 0;
}
.products-page .tabs {
  margin-bottom: 50px;
}
.products-page .tabs ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.products-page .tabs ul li a {
  display: block;
  padding: 10px 20px;
  background-color: #fff;
  color: inherit;
}
.products-page .tabs ul li a:not(.active):hover {
  opacity: 0.7;
}
.products-page .tabs ul li a.active {
  background-color: #1f1b20;
  color: #fff;
}
.products-page .items {
  display: flex;
  flex-wrap: wrap;
  padding: 0 10px;
}
.products-page .item {
  position: relative;
  padding: 0 10px;
  flex-basis: 20%;
  background-color: #fff;
}
.products-page .item .image {
  width: 100%;
  height: 200px;
}
.products-page .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.products-page .item .content {
  padding: 10px;
  text-align: center;
}
.products-page .item .content .title {
  font-size: 17px;
}
.products-page .item .content .price {
  font-size: 23px;
  font-weight: var(--fw-bold);
  opacity: 0.8;
}
.products-page .item .content .old-price {
  font-size: 14px;
  color: #6c6c6c;
  text-decoration: line-through;
}
.products-page .item .unit-wrapper {
  position: absolute;
  right: 20px;
  top: 10px;
  display: flex;
  box-shadow: var(--shadow);
  border-radius: 4px;
  overflow: hidden;
}
.products-page .item .unit-wrapper .decrease-btn,
.products-page .item .unit-wrapper .unit-input {
  display: none;
}
.products-page .item .unit-wrapper button {
  background-color: #fff;
  border: none;
  width: 35px;
  height: 35px;
  font-size: 24.67px;
  color: rgba(0, 0, 0, 0.75);
  font-family: var(--ff-poppins);
  cursor: pointer;
}
.products-page .item .unit-wrapper button:disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.products-page .item .unit-wrapper input {
  width: 40px;
  height: 35px;
  text-align: center;
  border: none;
  background-color: #e8e8e8;
  font-weight: var(--fw-semibold);
  font-family: var(--ff-poppins);
  outline: none !important;
  cursor: default;
}

.basket-page .inner {
  padding: 75px 0;
  display: flex;
}
.basket-page .items {
  width: 70%;
}
.basket-page .item {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
  padding: 0 15px 15px;
  border-bottom: 1px solid #e8e8e8;
}
.basket-page .item .image {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}
.basket-page .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.basket-page .item .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  flex-grow: 1;
  padding: 10px 0 10px 30px;
}
.basket-page .item .content .title {
  font-size: 18px;
}
.basket-page .item .content .price {
  font-size: 26px;
  font-weight: var(--fw-bold);
  opacity: 0.8;
}
.basket-page .item .remove-btn {
  width: 50px;
  height: 50px;
  background: transparent url("../images/icons/bin.png") no-repeat center / 25px;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  flex-shrink: 0;
}
.basket-page .item .remove-btn:hover {
  background-color: #f0f0f0;
}
.basket-page .item .unit-wrapper {
  display: flex;
  flex-direction: column;
  border: 1px solid #e8e8e8;
  margin-left: 25px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.basket-page .item .unit-wrapper button {
  background-color: #fff;
  border: none;
  width: 35px;
  height: 35px;
  font-size: 24.67px;
  color: rgba(0, 0, 0, 0.75);
  font-family: var(--ff-poppins);
  cursor: pointer;
}
.basket-page .item .unit-wrapper button:disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.basket-page .item .unit-wrapper input {
  width: 35px;
  height: 35px;
  text-align: center;
  border: none;
  background-color: #e8e8e8;
  font-weight: var(--fw-semibold);
  font-family: var(--ff-poppins);
  outline: none !important;
  cursor: default;
}
.basket-page .sum-actions {
  width: 30%;
  padding: 0 30px;
}
.basket-page .sum-actions .content {
  position: sticky;
  top: 30px;
  padding: 30px;
  background-color: #f8f8f8;
}
.basket-page .sum-actions .content .title {
  margin-bottom: 20px;
  font-family: var(--ff-cormorant);
  font-weight: var(--fw-bold);
  font-size: 32px;
}
.basket-page .sum-actions .content .table {
  width: 100%;
}
.basket-page .sum-actions .content .table td {
  padding: 10px 0;
  border-bottom: 1px solid #d8d8d8;
}
.basket-page .sum-actions .content .table tr:last-child td {
  border-bottom: none;
  font-weight: var(--fw-semibold);
  font-size: 20px;
}
.basket-page .sum-actions .big-btn {
  width: 100%;
  height: 70px;
  margin-top: 30px;
  background-color: #bb9809;
  color: #fff;
  font-size: 18px;
  font-weight: var(--fw-semibold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  border: none;
}
.basket-page .sum-actions .big-btn:hover {
  opacity: 0.95;
}
.basket-page .sum-actions .big-btn.secondary {
  background-color: transparent;
  color: #707070;
  border: 1px solid #d8d8d8;
  margin-top: 15px;
}
.basket-page .no-data {
  text-align: center;
  padding: 0 100px;
}
.basket-page .no-data h2 {
  margin-bottom: 30px;
  text-align: center;
  font-size: 28px;
  font-weight: var(--fw-semibold);
}
.basket-page .no-data p {
  font-size: 15px;
  color: #707070;
}
.basket-page .no-data a {
  display: inline-block;
  padding: 12px 25px;
  margin-top: 50px;
  background-color: #bb9809;
  color: #fff;
  font-size: 18px;
  font-weight: var(--fw-semibold);
}
.basket-page .done-form {
  width: 70%;
  padding-left: 30px;
}

.basket-page .done-form textarea,
.basket-page .done-form select,
.basket-page .done-form input {
  width: 100%;
  height: 60px;
  margin-bottom: 15px;
  border: 1px solid #d8d8d8;
  padding: 0 30px;
  outline: none !important;
  font-size: 18px;
}
.basket-page .done-form textarea {
  padding: 30px;
  height: unset;
  font-family: var(--ff-poppins);
}

.cookies-message {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 16000161;
  color: #fff;
}
.cookies-message .times {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 22px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  color: #fff;
}
.cookies-message .text {
  font-size: 14px;
}
.cookies-message .buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookies-message .buttons button {
  padding: 7.5px 15px;
  margin-right: 10px;
  border: none;
  cursor: pointer;
  color: #fff;
}
.cookies-message .buttons button.btn-primary {
  background-color: #1f1b20;
}
.cookies-message .buttons button.btn-secondary {
  background-color: rgba(255, 255, 255, 0.05);
}

.scroll-up {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5) url("../images/icons/arrow-up.png") no-repeat
    center / 24px;
  outline: 1px solid rgba(0, 0, 0, 0.25);
  outline-offset: 3px;
  cursor: pointer;
  z-index: 99;
  display: none;
}

.mobile-menu-toggler {
  display: none;
}
.mobile-menu {
  display: none;
}

@media screen and (max-width: 1399.98px) {
  .header .inner {
    padding-left: 310px;
  }
  .header .others .reservation-btn {
    width: 105px;
    font-size: 0;
    background: #1f1b20 url("../images/phone.png") no-repeat center / 42px;
  }

  .welcome .item .image {
    width: 760px;
  }
  .welcome .item .title {
    font-size: 52px;
    line-height: 1.7;
  }
  .welcome .item .context {
    padding: 0 50px 235px 50px;
  }
  .welcome .swiper-button-prev {
    left: 625px;
  }
  .welcome .swiper-button-next {
    left: 830px;
  }

  .location-directions .items .item {
    padding: 0 40px;
  }

  .rooms-page .item .images {
    grid-auto-rows: 280px;
  }

  .footer .inner {
    padding: 40px 60px;
  }
  .footer .menu .item {
    margin: 22px 0 0 140px;
  }

  .basket-page .items,
  .basket-page .done-form {
    width: 65%;
  }
  .basket-page .sum-actions {
    width: 35%;
  }
}
@media screen and (max-width: 1199.98px) {
  .mobile-menu-toggler {
    position: relative;
    display: block;
    width: 105px;
    height: 105px;
    flex-shrink: 0;
    background: #1f1b20 url("../images/icons/hamburger.png") no-repeat center /
      36px;
    z-index: 2;
  }
  .mobile-menu-toggler.opened {
    position: fixed;
    top: 0;
    right: 0;
    background-image: url("../images/icons/close.png");
  }
  .mobile-menu {
    position: fixed;
    display: block;
    width: 400px;
    max-width: 100%;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #1f1b20;

    -webkit-transform: translate(100%);
    transform: translate(100%);
    -webkit-transition: all ease-in-out 0.35s;
    transition: all ease-in-out 0.35s;
  }
  .mobile-menu.opened {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  .mobile-menu nav {
    display: block;
    margin-top: 105px;
    height: calc(100% - 105px);
    overflow: auto;
  }
  .mobile-menu nav ul li {
    display: block;
    margin: 0 50px;
  }
  .mobile-menu nav ul li a {
    display: block;
    padding: 15px 0;
    color: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15px;
  }
  .mobile-menu nav ul li a:hover,
  .mobile-menu nav ul li a.active {
    color: #fff;
  }
  .mobile-menu nav ul li a.reservation-btn {
    margin: 90px 0;
    border-bottom: none;
    background-color: #1f1b20;
    color: #fff;
    text-align: center;
  }

  .header {
    display: flex;
    justify-content: space-between;
  }
  .header .inner {
    padding-left: 0;
  }
  .header .menu,
  .header .others .reservation-btn {
    display: none;
  }
  .header .others .lang-btn {
    line-height: 105px;
    margin-right: 150px;
  }

  .welcome .inner {
    padding-top: 90px;
  }
  .welcome .item .image {
    width: 50%;
  }
  .welcome .item .title {
    margin-left: 0;
    padding: 0 50px 50px 50px;
    font-size: 40px;
  }
  .welcome .item .context {
    padding: 0 50px 235px 50px;
    font-size: 18px;
  }
  .welcome .item .context p {
    margin-bottom: 25px;
  }
  .welcome .swiper-button-prev {
    left: calc(50% - 130px);
  }
  .welcome .swiper-button-next {
    left: calc(50% + 60px);
  }

  .location-directions .items .item {
    flex-basis: 33.33%;
  }
  .location-directions .items .item img {
    width: 65px;
    height: 65px;
  }

  .rooms .inner {
    padding-top: 90px;
  }
  .rooms .items {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 520px;
  }

  .services .items .item {
    padding: 0 50px;
  }
  .services .items .item img {
    width: 65px;
    height: 65px;
  }
  .services .items .item h4 {
    font-size: 22px;
  }
  .services .items .item p {
    font-size: 16px;
  }

  .contact .inner {
    padding-top: 90px;
  }

  .footer .logo img {
    width: 130px;
    margin-top: 20px;
  }
  .footer .copy .inner a.reservation-btn {
    padding: 30px 50px;
    font-size: 16px;
    letter-spacing: 1px;
  }

  .rooms-page .item .inner {
    padding: 90px 0;
  }
  .rooms-page .item .images {
    grid-auto-rows: 240px;
  }

  .gallery-page .inner {
    padding: 90px 0;
  }
  .gallery-page .items {
    grid-auto-rows: 240px;
  }

  .products-page .item {
    flex-basis: 25%;
  }

  .basket-page .items,
  .basket-page .done-form {
    width: 60%;
  }
  .basket-page .sum-actions {
    width: 40%;
  }
}
@media screen and (max-width: 991.98px) {
  .mobile-menu-toggler {
    width: 75px;
    height: 75px;
    background-size: 26px;
  }
  .mobile-menu nav {
    margin-top: 75px;
  }

  .header .inner {
    height: 75px;
  }
  .header .others .lang-btn {
    line-height: 75px;
    margin-right: 110px;
    font-size: 16px;
  }

  .hero .inner {
    height: 720px;
  }
  .hero h1.title {
    font-size: 46px;
  }
  .hero .reservation-btn {
    zoom: 0.85;
  }

  .welcome .welcome-slider {
    margin-bottom: 0;
  }
  .welcome .item {
    display: block;
  }
  .welcome .item .image {
    width: 100%;
  }
  .welcome .item .title {
    padding: 40px 50px;
    font-size: 40px;
    margin: -100px 50px 10px;
  }
  .welcome .item .context {
    padding: 0 100px 90px 100px;
  }
  .welcome .swiper-button-prev,
  .welcome .swiper-button-next {
    display: none;
  }

  .location-directions .inner {
    padding-top: 125px;
  }
  .location-directions .items .item {
    flex-basis: 50%;
  }

  .rooms .items {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 420px;
  }

  .services .items .item {
    flex-basis: 50%;
  }

  .footer .inner {
    display: block;
  }
  .footer .logo {
    text-align: center;
  }
  .footer .menu .item {
    margin: 50px 0 0;
    width: 33.33%;
    text-align: center;
  }
  .footer .copy {
    padding: 25px 0;
    text-align: center;
  }
  .footer .social-nav {
    margin: 25px 0;
  }
  .footer .copy .inner {
    display: block;
  }
  .footer .copy .inner a.reservation-btn {
    padding: 20px 35px;
  }

  .banner .title h1 {
    font-size: 36px;
  }
  .banner .reservation-btn {
    zoom: 0.85;
  }
  .banner .reservation-btn span {
    font-size: 17px;
  }

  .rooms-page .item .images {
    grid-auto-rows: 180px;
    gap: 20px;
  }

  .gallery-page .items {
    grid-auto-rows: 200px;
    gap: 20px;
  }
  

  .basket-btn {
    top: 95px;
  }

  .products-page .item {
    flex-basis: 33.33%;
  }

  .basket-page .inner {
    display: block;
  }
  .basket-page .items,
  .basket-page .done-form {
    width: 100%;
  }
  .basket-page .done-form {
    padding: 0 15px;
  }
  .basket-page .sum-actions {
    width: 100%;
    padding: 0 15px;
  }
}
@media screen and (max-width: 767.98px) {
  .header .logo {
    width: 220px;
    height: 120px;
  }
  .header .logo img {
    padding: 3px;
  }

  .hero .inner {
    height: 620px;
  }
  .hero h1.title {
    font-size: 36px;
  }

  .location-directions .items .item {
    flex-basis: 100%;
  }

  .services .big-title {
    margin-bottom: 75px;
  }
  .services .items .item {
    flex-basis: 100%;
  }

  .contact .map {
    height: auto;
  }
  .contact .map iframe {
    height: 420px;
  }
  .contact .map .content {
    position: relative;
    top: auto;
    bottom: auto;
    right: auto;
    width: 100%;
    height: auto;
    padding: 0 50px 50px;
    background-color: transparent;
    text-align: center;
  }

  .footer .inner {
    padding: 40px 15px;
  }

  .banner .reservation-btn {
    left: 0;
    margin: auto;
    zoom: 0.75;
  }

  .rooms-page .item .images {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .rooms-page .item .images img:nth-child(1) {
    grid-column: auto / span 2;
    grid-row: auto / span 2;
  }
  .rooms-page .item .images img:nth-child(2),
  .rooms-page .item .images img:nth-child(3) {
    grid-column: auto / span 1;
    grid-row: auto / span 1;
  }
  .rooms-page .item .content a.reservation-btn {
    width: 250px;
    height: 60px;
    font-size: 16px;
  }

  .gallery-page .items {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .gallery-page .item:nth-child(14n + 1),
  .gallery-page .item:nth-child(14n + 8) {
    grid-column: auto / span 2;
    grid-row: auto / span 1;
  }

  .products-page .item {
    flex-basis: 50%;
  }

  .basket-page .no-data {
    padding: 0 50px;
  }
}
@media screen and (max-width: 575.98px) {
  .scroll-up {
    zoom: 0.85;
  }

  .mobile-menu {
    width: 100%;
  }

  .side-border {
    border: none;
  }

  .big-title h3 {
    font-size: 28px;
  }

  .header .logo {
    width: 200px;
    height: 100px;
  }
  .header .logo img {
    padding: 15px;
  }

  .hero .reservation-btn {
    zoom: 0.65;
    width: 100%;
  }
  .hero .reservation-btn span {
    font-size: 26px;
  }

  .welcome .item .image {
    height: 320px;
  }
  .welcome .item .title {
    padding: 0;
    margin: 20px 0;
    text-align: center;
    font-size: 32px;
  }
  .welcome .item .title span::after {
    display: none;
  }
  .welcome .item .context {
    padding: 0 0 60px;
    text-align: center;
  }

  .location-directions .items .item {
    padding: 0 25px;
    margin-bottom: 70px;
  }

  .rooms .items {
    grid-auto-rows: 320px;
  }
  .rooms .items .item .content {
    padding-bottom: 50px;
  }
  .rooms .items .item .content .title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .rooms .items .item .content .more-btn {
    zoom: 0.75;
  }

  .services .inner {
    padding-top: 300px;
  }
  .services .items .item {
    padding: 0 25px;
    margin-bottom: 70px;
  }

  .contact .map iframe {
    height: 320px;
  }

  .footer .menu {
    display: block;
  }
  .footer .menu .item {
    margin: 50px 0 0;
    width: 100%;
  }

  .banner .reservation-btn {
    width: 100%;
  }

  .rooms-page .item .images {
    grid-auto-rows: 130px;
  }
  .rooms-page .item .content {
    display: block;
  }
  .rooms-page .item .content h4.title {
    padding-left: 0;
    text-align: center;
  }
  .rooms-page .item .content a.reservation-btn {
    width: 100%;
    margin-top: 30px;
  }
  .rooms-page .item .features {
    padding: 40px 15px;
    text-align: center;
  }

  .gallery-page .items {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-page .item:nth-child(14n + 5),
  .gallery-page .item:nth-child(14n + 12),
  .gallery-page .item:nth-child(14n + 6),
  .gallery-page .item:nth-child(14n + 11) {
    grid-column: auto / span 1;
    grid-row: auto / span 2;
  }

  .products-page .item {
    flex-basis: 100%;
  }
  .products-page .tabs ul li a {
    padding: 7px 15px;
    font-size: 14px;
  }

  .basket-page .item {
    padding: 0 0 15px;
  }
  .basket-page .item .image {
    width: 80px;
    height: 80px;
  }
  .basket-page .item .content .title {
    font-size: 16px;
  }
  .basket-page .item .content .price {
    font-size: 22px;
  }
  .basket-page .item .remove-btn {
    zoom: 0.8;
  }
  .basket-page .item .unit-wrapper {
    margin-left: 15px;
    zoom: 0.8;
  }
  .basket-page .sum-actions {
    padding: 0;
  }
  .basket-page .sum-actions .big-btn {
    height: 56px;
    font-size: 16px;
  }
  .basket-page .no-data {
    padding: 0 15px;
  }
  .basket-page .done-form {
    padding: 0;
  }
}
