/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

html {
  scroll-behavior: smooth;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type='submit'] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type='file'] {
  max-width: 100%;
}

@font-face {
  font-family: 'Inter';
  src: url('/fontsDRaJOHi/inter-variablefontDRaJOHi.woff2')
    format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Alata';
  src: url('/fontsDRaJOHi/alata-regularDRaJOHi.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}

.headerDRaJOHi {
  background: #151514;
}

.headerDRaJOHi__container {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.headerDRaJOHi__logo img {
  width: 80px;
  height: 50px;
  object-fit: contain;
  display: block;
}

.navDRaJOHi__list {
  list-style: none;
  display: flex;
  gap: 80px;
  margin: 0;
  padding: 0;
}

.navDRaJOHi__list a {
  color: #fff;
  font-family: Alata, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.navDRaJOHi__list a:hover {
  opacity: 0.7;
}

.burgerDRaJOHi {
  display: none;
  width: 32px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burgerDRaJOHi span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
}

.burgerDRaJOHi span:not(:last-child) {
  margin-bottom: 6px;
}

.mobileDRaJOHi {
  position: fixed;
  inset: 72px 0 0 0;
  background: #151514;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 100;
}

.mobileDRaJOHi.is-open {
  transform: translateX(0);
}

.mobileDRaJOHi__list {
  list-style: none;
  margin: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobileDRaJOHi__list a {
  color: #fff;
  font-family: Alata, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .navDRaJOHi {
    display: none;
  }

  .burgerDRaJOHi {
    display: block;
  }
}

.heroDRaJOHi {
  position: relative;
  min-height: 520px;
  height: 100vh;
  display: flex;
  align-items: center;
  background: url('/imagesDRaJOHi/heromainhotelDRaJOHi.webp') center / cover
    no-repeat;
}

.heroDRaJOHi::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.heroDRaJOHi__container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.heroDRaJOHi__title {
  margin: 0 0 20px;
  color: #fff;
  text-align: center;
  font-family: Alata;
  font-size: 50px;
  font-weight: 400;
  line-height: 120%;
}

.heroDRaJOHi__desc {
  margin: 0 auto 32px;
  max-width: 900px;
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
}

.heroDRaJOHi__btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  background: #0171bc;
  color: #fff;
  font-family: Alata;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  text-decoration: none;
}

@media (max-width: 768px) {
  .heroDRaJOHi {
    min-height: 420px;
    background: url('/imagesDRaJOHi/heromainhotelmbDRaJOHi.webp') center / cover
      no-repeat;
    height: auto;
  }

  .heroDRaJOHi__container {
    padding: 40px 26px;
  }

  .heroDRaJOHi__title {
    font-size: 22px;
    line-height: 120%;
    margin-bottom: 14px;
  }

  .heroDRaJOHi__desc {
    font-size: 14px;
    line-height: 130%;
    margin-bottom: 24px;
  }

  .heroDRaJOHi__btn {
    font-size: 16px;
    padding: 14px 32px;
  }
}

.aboutDRaJOHi {
  padding: 50px 0;
  background: #fff;
}

.aboutDRaJOHi__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.aboutDRaJOHi__title {
  margin: 0 0 20px;
  color: #282828;
  font-family: Alata;
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
}

.aboutDRaJOHi__text {
  margin: 0;
  color: #3d3d3d;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.aboutDRaJOHi__imageWrap {
  flex: 0 0 auto;
}

.aboutDRaJOHi__image {
  width: 539px;
  height: 358px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 1024px) {
  .aboutDRaJOHi__container {
    gap: 40px;
  }

  .aboutDRaJOHi__title {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .aboutDRaJOHi__text {
    font-size: 15px;
  }

  .aboutDRaJOHi__image {
    width: 420px;
    height: auto;
    aspect-ratio: 539 / 358;
  }
}

@media (max-width: 768px) {
  .aboutDRaJOHi__container {
    flex-direction: column;
    gap: 24px;
  }

  .aboutDRaJOHi__title {
    font-size: 20px;
    margin-bottom: 16px;
    text-align: left;
  }

  .aboutDRaJOHi__text {
    font-size: 16px;
  }

  .aboutDRaJOHi__image {
    width: 328px;
    height: auto;
    aspect-ratio: 164 / 109;
  }
}

.bestDRaJOHi {
  background: #050f1d;
  padding: 60px 0;
}

.bestDRaJOHi__title {
  color: #fff;
  font-family: Alata;
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.bestDRaJOHi__subtitle {
  color: #fff;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}

.bestDRaJOHi__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0;
  margin: 0;
}

.bestDRaJOHi__card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bestDRaJOHi__image {
  width: 100%;
  height: 255px;
  object-fit: cover;
}

.bestDRaJOHi__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bestDRaJOHi__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.bestDRaJOHi__cardTitle {
  color: #282828;
  font-family: Alata;
  font-size: 20px;
  font-weight: 400;
}

.bestDRaJOHi__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Istok Web';
  font-size: 16px;
  color: #3d3d3d;
}

.bestDRaJOHi__rating img {
  width: 18.723px;
  height: 18.723px;
}

.bestDRaJOHi__rating span {
  color: #626262;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.bestDRaJOHi__meta {
  color: #3d3d3d;
  font-family: Inter;
  font-size: 12px;
  margin-bottom: 10px;
}

.bestDRaJOHi__desc {
  color: #3d3d3d;
  font-family: Inter;
  font-size: 12px;
  margin-bottom: auto;
}

.bestDRaJOHi__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.bestDRaJOHi__price {
  color: #3d3d3d;
  font-family: 'Istok Web', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.bestDRaJOHi__price span {
  color: #0171bc;
}

.bestDRaJOHi__btn {
  background: #0171bc;
  color: #fff;
  font-family: Alata;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .bestDRaJOHi__list {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .bestDRaJOHi__subtitle {
    font-size: 14px;
  }

  .bestDRaJOHi__list {
    grid-template-columns: 1fr;
  }
}

.servicesDRaJOHi {
  padding: 60px 0;
}

.servicesDRaJOHi__title {
  color: #282828;
  font-family: Alata;
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.servicesDRaJOHi__subtitle {
  color: #3d3d3d;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 32px;
  max-width: 760px;
}

.servicesDRaJOHi__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.servicesDRaJOHi__item {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(5, 15, 29, 0.5);
  background: #fcfcfc;
  box-shadow: 0 4px 4px rgba(139, 139, 139, 0.14);
  text-align: center;
}

.servicesDRaJOHi__icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 16px;
}

.servicesDRaJOHi__itemTitle {
  color: #282828;
  font-family: Alata;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 10px;
}

.servicesDRaJOHi__itemText {
  color: #3d3d3d;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .servicesDRaJOHi__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .servicesDRaJOHi__subtitle {
    font-size: 14px;
  }

  .servicesDRaJOHi__list {
    grid-template-columns: 1fr;
  }

  .servicesDRaJOHi__itemTitle {
    font-size: 20px;
  }

  .servicesDRaJOHi__itemText {
    font-size: 14px;
  }
}

.statsDRaJOHi {
  background: url('/imagesDRaJOHi/hotelpoolDRaJOHi.webp') center / cover
    no-repeat;
  padding: 80px 0;
}

.statsDRaJOHi__list {
  list-style: none;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
}

.statsDRaJOHi__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.statsDRaJOHi__value {
  color: #fff;
  text-align: center;
  font-family: Alata;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.statsDRaJOHi__label {
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1024px) {
  .statsDRaJOHi__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }
}

@media (max-width: 740px) {
  .statsDRaJOHi {
    padding: 50px 0;
  }

  .statsDRaJOHi__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }

  .statsDRaJOHi__value {
    font-size: 40px;
  }

  .statsDRaJOHi__label {
    font-size: 16px;
  }
}

.reviewsDRaJOHi {
  padding: 80px 0;
}

.reviewsDRaJOHi__list {
  list-style: none;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.reviewsDRaJOHi__item {
  border-radius: 20px;
  background: #050f1d;
  padding: 30px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.reviewsDRaJOHi__text {
  color: #fff;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 24px;
}

.reviewsDRaJOHi__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviewsDRaJOHi__author img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewsDRaJOHi__name {
  color: #fff;
  font-family: Alata;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1024px) {
  .reviewsDRaJOHi__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 740px) {
  .reviewsDRaJOHi {
    padding: 50px 0;
  }

  .reviewsDRaJOHi__item {
    background: #031d41;
    padding: 24px;
  }

  .reviewsDRaJOHi__text {
    font-size: 16px;
  }

  .reviewsDRaJOHi__name {
    font-size: 20px;
  }
}

.contactDRaJOHi {
  padding: 50px 0;
  background: #fff;
}

.contactDRaJOHi__container {
  display: grid;
  grid-template-columns: 1fr 539px;
  gap: 60px;
  align-items: stretch;
}

.contactDRaJOHi__title {
  margin: 0 0 12px;
  color: #282828;
  font-family: Alata, sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.contactDRaJOHi__subtitle {
  margin: 0 0 22px;
  color: #3d3d3d;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  max-width: 520px;
}

.contactDRaJOHi__form {
  display: grid;
  gap: 14px;
  align-content: start;
}

.contactDRaJOHi__field {
  display: block;
}

.contactDRaJOHi__input,
.contactDRaJOHi__textarea {
  width: 100%;
  color: #3d3d3d;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;

  border-radius: 10px;
  border: 1px solid #bcb2b2;
  background: #fff;

  padding: 14px 16px;
  outline: none;
}

.contactDRaJOHi__input::placeholder,
.contactDRaJOHi__textarea::placeholder {
  color: #3d3d3d;
  opacity: 0.85;
}

.contactDRaJOHi__input:focus,
.contactDRaJOHi__textarea:focus {
  border-color: #0171bc;
}

.contactDRaJOHi__textarea {
  min-height: 120px;
  resize: vertical;
}

.contactDRaJOHi__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;

  padding: 14px 32px;
  border-radius: 6px;
  background: #0171bc;
  border: none;
  cursor: pointer;

  color: #fff;
  font-family: Alata, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

.contactDRaJOHi__success {
  margin: 8px 0 0;
  color: #0171bc;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contactDRaJOHi__right {
  width: 539px;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.contactDRaJOHi__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .contactDRaJOHi__container {
    grid-template-columns: 1fr 420px;
    gap: 32px;
  }

  .contactDRaJOHi__right {
    width: 420px;
  }
}

@media (max-width: 740px) {
  .contactDRaJOHi {
    padding: 50px 0;
  }

  .contactDRaJOHi__container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contactDRaJOHi__title {
    font-size: 20px;
  }

  .contactDRaJOHi__subtitle {
    font-size: 14px;
    max-width: 100%;
  }

  .contactDRaJOHi__btn {
    width: 100%;
  }

  .contactDRaJOHi__right {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 328 / 218;
  }

  .contactDRaJOHi__img {
    height: 100%;
  }
}

.footerDRaJOHi {
  background: #0f0f0f;
  color: #fefefe;
  padding: 60px 0 30px;
}

.footerDRaJOHi__container {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 30px;
  align-items: start;
}

.footerDRaJOHi__logo img {
  max-width: 140px;
  height: auto;
}

.footerDRaJOHi__title {
  color: #fefefe;
  font-family: Alata;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footerDRaJOHi__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footerDRaJOHi__list li {
  margin-bottom: 10px;
}

.footerDRaJOHi__list a {
  color: #fefefe;
  font-family: Alata;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.footerDRaJOHi__list a:hover {
  text-decoration: underline;
}

.footerDRaJOHi__text {
  color: #fefefe;
  font-family: Inter;
  font-size: 14px;
  line-height: normal;
  margin-bottom: 14px;
}

.footerDRaJOHi__bottom {
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footerDRaJOHi__bottom p {
  color: #fff;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1024px) {
  .footerDRaJOHi__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .footerDRaJOHi {
    padding: 40px 0 24px;
  }

  .footerDRaJOHi__container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footerDRaJOHi__bottom {
    flex-direction: column;
    text-align: center;
  }
}

.heroDRaJOHi.hero-tophotelDRaJOhi {
  background: url('/imagesDRaJOHi/hero-top-hotelDRaJOHi.webp') center / cover
    no-repeat;
}

.heroDRaJOHi.hero-luxuryhotelDRaJOhi {
  background: url('/imagesDRaJOHi/heroluxuryhotelDRaJOHi.webp') center / cover
    no-repeat;
}

.heroDRaJOHi.about-usheroDRaJOHi {
  background: url('/imagesDRaJOHi/aboutuspersonalDRaJOHi.webp') center / cover
    no-repeat;
}

.heroDRaJOHi.hero-contactlDRaJOhi {
  background: url('/imagesDRaJOHi/contactwomenDRaJOHi.webp') center / cover
    no-repeat;
}

@media (max-width: 600px) {
  .heroDRaJOHi.about-usheroDRaJOHi {
    background: url('/imagesDRaJOHi/aboutuspersonalmbDRaJOHi.webp') center /
      cover no-repeat;
  }
}

.hotelsDRaJOHi {
  padding: 50px 0;
  background: #fff;
}

.hotelsDRaJOHi__title {
  margin-bottom: 14px;
  color: #282828;
  font-family: Alata;
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
}

.hotelsDRaJOHi__desc {
  max-width: 760px;
  margin-bottom: 30px;
  color: #3d3d3d;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
}

.hotelsDRaJOHi__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hotelCardDRaJOHi {
  display: flex;
  height: 277px;
  border-radius: 10px;
  border: 1px solid rgba(5, 15, 29, 0.4);
  background: #fff;
  overflow: hidden;
}

.hotelCardDRaJOHi__image {
  width: 420px;
  height: 100%;
  flex-shrink: 0;
}

.hotelCardDRaJOHi__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.hotelCardDRaJOHi__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.hotelCardDRaJOHi__head h3 {
  margin: 0;
  color: #282828;
  font-family: Alata;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.hotelCardDRaJOHi__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.hotelCardDRaJOHi__rating img {
  width: 18.7px;
  height: 18.7px;
}

.hotelCardDRaJOHi__rating span {
  color: #626262;
  font-family: Inter;
  font-size: 14px;
  font-weight: 300;
}

.hotelCardDRaJOHi__meta {
  margin-bottom: 12px;
  color: #3d3d3d;
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
}

.hotelCardDRaJOHi__text {
  margin-bottom: auto;
  color: #3d3d3d;
  font-family: Inter;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}

.hotelCardDRaJOHi__bottom {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hotelCardDRaJOHi__price {
  font-family: 'Istok Web', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #3d3d3d;
}

.hotelCardDRaJOHi__price span {
  color: #0171bc;
}

.hotelCardDRaJOHi__btn {
  padding: 10px 24px;
  border-radius: 6px;
  background: #0171bc;
  color: #fff;
  font-family: Alata;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .hotelCardDRaJOHi {
    height: auto;
  }

  .hotelCardDRaJOHi__image {
    width: 50%;
    height: auto;
  }

  .hotelCardDRaJOHi__image img {
    height: auto;
    aspect-ratio: 539 / 277;
  }
}

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

  .hotelCardDRaJOHi {
    flex-direction: column;
    height: auto;
  }

  .hotelCardDRaJOHi__image {
    width: 100%;
  }

  .hotelCardDRaJOHi__image img {
    height: 255px;
  }

  .hotelCardDRaJOHi__content {
    padding: 16px;
  }
}

.statsDRaJOHi.top-hotelstatsDRaJOHi {
  background: url('/imagesDRaJOHi/top-hotel-poolDRaJOHi.webp') center / cover
    no-repeat;
}

.statsDRaJOHi.luxury-hotelstatsDRaJOHi {
  background: url('/imagesDRaJOHi/luxuryhotellobbyDRaJOHi.webp') center / cover
    no-repeat;
}
.about-pageDRaJOHi .aboutDRaJOHi {
  padding: 60px 0;
  background: #fff;
}

.about-pageDRaJOHi .aboutDRaJOHi__container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.about-pageDRaJOHi .aboutDRaJOHi__row {
  display: grid;
  grid-template-columns: 539px 1fr;
  align-items: center;
  gap: 60px;
}

.about-pageDRaJOHi .aboutDRaJOHi__row--reverse {
  grid-template-columns: 1fr 539px;
}

.about-pageDRaJOHi .aboutDRaJOHi__row--reverse .aboutDRaJOHi__media {
  order: 2;
}

.about-pageDRaJOHi .aboutDRaJOHi__row--reverse .aboutDRaJOHi__content {
  order: 1;
}

.about-pageDRaJOHi .aboutDRaJOHi__media img {
  width: 539px;
  height: 358px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.about-pageDRaJOHi .aboutDRaJOHi__title {
  margin: 0 0 20px;
  color: #282828;
  font-family: Alata;
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
}

.about-pageDRaJOHi .aboutDRaJOHi__text {
  color: #3d3d3d;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .about-pageDRaJOHi .aboutDRaJOHi__row,
  .about-pageDRaJOHi .aboutDRaJOHi__row--reverse {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .about-pageDRaJOHi .aboutDRaJOHi__media img {
    width: 100%;
    height: auto;
    aspect-ratio: 539 / 358;
  }
}

@media (max-width: 768px) {
  .about-pageDRaJOHi .aboutDRaJOHi {
    padding: 40px 0;
  }

  .about-pageDRaJOHi .aboutDRaJOHi__container {
    gap: 50px;
  }

  .about-pageDRaJOHi .aboutDRaJOHi__row,
  .about-pageDRaJOHi .aboutDRaJOHi__row--reverse {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-pageDRaJOHi .aboutDRaJOHi__row--reverse .aboutDRaJOHi__media,
  .about-pageDRaJOHi .aboutDRaJOHi__row--reverse .aboutDRaJOHi__content {
    order: initial;
  }

  .about-pageDRaJOHi .aboutDRaJOHi__title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .about-pageDRaJOHi .aboutDRaJOHi__text {
    font-size: 14px;
  }

  .about-pageDRaJOHi .aboutDRaJOHi__media img {
    width: 100%;
    height: auto;
    aspect-ratio: 164 / 109;
  }
}

.terms {
  padding: 50px 0;
  background: #fff;
}

.terms h1 {
  color: #282828;
  text-align: center;
  font-family: Alata;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}

.terms h2 {
  color: #282828;
  font-family: 'Alata', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 16px;
}

.terms p {
  color: #3d3d3d;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 20px;
}

.terms ul {
  list-style-type: disc;
  margin-bottom: 20px;
}

.terms li {
  color: #3d3d3d;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  list-style-type: disc;
  margin-left: 15px;
}

@media (max-width: 900px) {
  .terms {
    padding: 40px 0;
  }

  .terms h1 {
    color: #282828;
    text-align: center;
    font-family: Alata;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }

  .terms h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
