@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Poppins:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap");
* {
  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;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #1c1c1c;
  background-color: #fff;
}

.no-scroll {
  overflow: hidden;
}

.container {
  max-width: 320px;
  padding: 0 16px;
  margin: 0 auto;
}
@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;
  }
}

.btn {
  display: inline-block;
  width: 100%;
  background-color: #ff621f;
  text-align: center;
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  border-radius: 8px;
  transition: background-color 0.3s ease-in-out;
  padding: 20px 32px;
}
.btn:is(:hover, :focus) {
  background-color: #07ac9e;
}
@media screen and (min-width: 768px) {
  .btn {
    width: auto;
  }
}

.title {
  font-weight: 600;
  font-size: 38px;
  line-height: 1.16;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .title {
    font-size: 48px;
    line-height: 1.25;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .title {
    margin-bottom: 40px;
  }
}
.title--highlight {
  color: #07ac9e;
  font-style: italic;
}

.header {
  position: relative;
  background-color: #fbfbec;
  padding: 20px 0;
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  font-weight: 600;
  line-height: 1.87;
  text-transform: capitalize;
}
.header__nav {
  display: none;
  position: absolute;
  flex-direction: column;
  left: 0;
  top: 100%;
  background-color: #fff;
  width: 100%;
  padding: 32px 16px;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: flex;
    align-items: center;
    flex-direction: row;
    position: static;
    padding: 0;
    width: auto;
    background-color: transparent;
    gap: 16px;
  }
}
@media screen and (min-width: 1440px) {
  .header__nav {
    gap: 40px;
  }
}
.header__nav--active {
  display: flex;
}
.header__burger--active svg use:first-child {
  display: none;
}
.header__burger--active svg use:last-child {
  display: block;
}
.header__sublist--active {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .header__list {
    flex-direction: row;
    gap: 16px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1440px) {
  .header__list {
    gap: 40px;
  }
}
.header__list-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .header__list-link {
    font-weight: 400;
    font-size: 18px;
  }
}
.header__arrow {
  width: 8px;
  height: 8px;
  fill: #1c1c1c;
}
.header__sublist {
  display: none;
}
.header__list-item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .header__list-item:hover .header__sublist {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.header__sublist {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  padding: 16px 0;
  border: 1px solid #ff621f;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  z-index: 10;
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
@media screen and (min-width: 768px) {
  .header__sublist {
    display: block;
  }
}
.header__sublist-subitem:not(:last-child) {
  margin-bottom: 8px;
}
.header__sublist-sublink {
  display: block;
  padding: 8px 16px;
  font-size: 16px;
  color: #1c1c1c;
  text-decoration: none;
  text-transform: capitalize;
  transition: background-color 0.2s;
}
.header__sublist-sublink:hover {
  background-color: #07ac9e;
}
@media screen and (min-width: 768px) {
  .header__burger {
    display: none;
  }
}
.header__burger-icon use:last-child {
  display: none;
}

.hero {
  background-color: #fbfbec;
}
.hero--about .hero__wrapper {
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .hero--about .hero__wrapper {
    gap: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .hero--about .hero__wrapper {
    flex-direction: column;
    gap: 40px;
  }
}
.hero--about .hero__content {
  width: 100%;
}
.hero--about .hero__title {
  margin-bottom: 0;
}
@media screen and (min-width: 1440px) {
  .hero--about .hero__title {
    text-align: center;
    font-size: 64px;
    line-height: 1.09;
    letter-spacing: -0.02em;
  }
}
.hero--about .hero__img {
  width: 100%;
}
.hero__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  padding: 32px 0;
}
@media screen and (min-width: 768px) {
  .hero__wrapper {
    gap: 16px;
    padding: 64px 0;
  }
}
@media screen and (min-width: 1440px) {
  .hero__wrapper {
    flex-direction: row;
    gap: 60px;
  }
}
@media screen and (min-width: 1440px) {
  .hero__content {
    width: 55%;
  }
}
.hero__title {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .hero__title {
    font-size: 64px;
    line-height: 1.09;
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1440px) {
  .hero__title {
    font-size: 70px;
    line-height: 1;
    margin-bottom: 24px;
  }
}
.hero__title--highlight {
  color: #07ac9e;
  font-style: italic;
}
.hero__text {
  font-family: "Inter", sans-serif;
  font-size: 21px;
  line-height: 1.38;
  color: #4a4a4a;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .hero__text {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1440px) {
  .hero__text {
    margin-bottom: 24px;
  }
}
.hero__img {
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media screen and (min-width: 768px) {
  .hero__img {
    height: 300px;
  }
}
@media screen and (min-width: 1440px) {
  .hero__img {
    width: 45%;
    height: 410px;
  }
}
.hero__fly {
  display: none;
}
@media screen and (min-width: 768px) {
  .hero__fly {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 497px;
    height: 163px;
  }
}
@media screen and (min-width: 1440px) {
  .hero__fly {
    top: 0;
    right: 50%;
    transform: translateX(50%);
  }
}

.logos {
  background-color: #fbfbec;
  padding: 16px 0;
}
@media screen and (min-width: 768px) {
  .logos {
    padding: 40px 0;
  }
}
.logos__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .logos__list {
    gap: 52px;
  }
}
@media screen and (min-width: 1440px) {
  .logos__list {
    gap: 136px;
  }
}
.logos__item {
  flex-basis: calc((100% - 50px) / 2);
}
@media screen and (min-width: 768px) {
  .logos__item {
    flex-basis: calc((100% - 208px) / 5);
  }
}
@media screen and (min-width: 1440px) {
  .logos__item {
    flex-basis: calc((100% - 544px) / 5);
  }
}
.logos__item:last-child {
  display: none;
}
@media screen and (min-width: 768px) {
  .logos__item:last-child {
    display: block;
  }
}

.facilities {
  background-color: #f5f5f7;
  padding: 64px 0 32px;
}
@media screen and (min-width: 1440px) {
  .facilities {
    padding: 80px 0 40px;
  }
}
.facilities .title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .facilities .title {
    padding: 0 24px;
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1440px) {
  .facilities .title {
    max-width: 640px;
    margin: 0 auto 16px;
  }
}
.facilities__text {
  font-size: 18px;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (min-width: 1440px) {
  .facilities__text {
    margin-bottom: 40px;
  }
}
.facilities__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .facilities__list {
    justify-content: center;
    gap: 16px;
  }
}
@media screen and (min-width: 1440px) {
  .facilities__list {
    gap: 42px;
  }
}
.facilities__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-basis: calc((100% - 8px) / 2);
  box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.2);
  background: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 24px 0;
}
@media screen and (min-width: 768px) {
  .facilities__item {
    flex-basis: calc((100% - 32px) / 3);
    padding: 44px 0;
  }
}
@media screen and (min-width: 1440px) {
  .facilities__item {
    flex-basis: calc((100% - 168px) / 5);
    padding: 54px 0;
  }
}
.facilities__item-icon {
  width: 52px;
  height: 52px;
  fill: #07ac9e;
}
.facilities__item-title {
  font-weight: 500;
  font-size: 16px;
}

.popular {
  padding: 16px 0 32px;
}
@media screen and (min-width: 768px) {
  .popular {
    padding: 32px 0 64px;
  }
}
@media screen and (min-width: 1440px) {
  .popular {
    padding: 40px 0 80px;
  }
}
.popular__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .popular__list {
    flex-direction: row;
  }
}
.popular__item {
  box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .popular__item {
    flex-basis: calc((100% - 24px) / 2);
  }
}
.popular__item:last-child {
  display: none;
}
@media screen and (min-width: 1440px) {
  .popular__item:last-child {
    display: block;
  }
}
.popular__img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.popular__item-content {
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .popular__item-content {
    padding: 20px;
  }
}
.popular__item-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.popular__item-title {
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .popular__item-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.22;
  }
}
.popular__item-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  line-height: 2.14;
  text-transform: capitalize;
}
.popular__item-star {
  width: 20px;
  height: 20px;
  fill: #f7cc46;
}
.popular__item-text {
  font-size: 12px;
  line-height: 1.25;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .popular__item-text {
    font-size: 14px;
    line-height: 1.57;
  }
}
.popular__item-features {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.popular__item-feature {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  line-height: 1.25;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
}
.popular__item-icon {
  fill: #07ac9e;
  margin: 0 auto 4px;
}
.popular .btn {
  width: 100%;
}

.types {
  padding: 32px 0 16px;
}
@media screen and (min-width: 768px) {
  .types {
    padding: 64px 0 32px;
  }
}
@media screen and (min-width: 1440px) {
  .types {
    padding: 80px 0 40px;
  }
}
.types .title {
  text-align: center;
}
.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__item {
    flex-basis: calc((100% - 16px) / 2);
  }
}
@media screen and (min-width: 1440px) {
  .types__item {
    flex-basis: calc((100% - 48px) / 4);
  }
}
.types__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .types__img {
    height: 224px;
  }
}
.types__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.22;
  text-transform: capitalize;
  text-align: center;
}

.about {
  padding: 16px 0 32px;
}
@media screen and (min-width: 768px) {
  .about {
    padding: 32px 0 64px;
  }
}
@media screen and (min-width: 1440px) {
  .about {
    padding: 40px 0 80px;
  }
}
.about .title {
  margin-bottom: 24px;
}
@media screen and (min-width: 1440px) {
  .about .title {
    margin-bottom: 40px;
  }
}
.about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1440px) {
  .about__wrapper {
    flex-direction: row;
    gap: 94px;
  }
}
@media screen and (min-width: 1440px) {
  .about__info {
    width: 52%;
  }
}
.about__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about__item {
  display: flex;
  gap: 16px;
}
.about__item-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: #07ac9e;
  border-radius: 8px;
}
.about__item-icon {
  width: 25px;
  height: 25px;
  fill: #fff;
}
.about__item-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.22;
  text-transform: capitalize;
  margin-bottom: 8px;
}
.about__item-text {
  font-size: 14px;
  line-height: 1.57;
  color: rgba(0, 0, 0, 0.6);
}
.about__img {
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media screen and (min-width: 1440px) {
  .about__img {
    width: 48%;
    height: auto;
  }
}

.testimonials {
  position: relative;
  padding: 32px 0;
}
@media screen and (min-width: 768px) {
  .testimonials {
    padding: 64px 0;
  }
}
@media screen and (min-width: 1440px) {
  .testimonials {
    padding: 80px 0;
  }
}
@media screen and (min-width: 1440px) {
  .testimonials .title {
    text-align: center;
  }
}
.testimonials__wrapper {
  position: relative;
}
@media screen and (min-width: 1440px) {
  .testimonials__wrapper {
    max-width: 756px;
    margin: 0 auto;
  }
}
.testimonials__list {
  display: flex;
}
@media screen and (min-width: 768px) {
  .testimonials__list {
    max-width: 580px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1440px) {
  .testimonials__list {
    max-width: 620px;
  }
}
.testimonials__item {
  background-color: #f5f5f7;
  border-radius: 16px;
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .testimonials__item {
    padding: 40px;
  }
}
.testimonials__item:not(:first-child) {
  display: none;
}
.testimonials__item-icon {
  width: 40px;
  height: 40px;
  fill: #07ac9e;
  margin-bottom: 16px;
}
.testimonials__item-text {
  font-style: italic;
  line-height: 1.69;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .testimonials__item-text {
    font-size: 24px;
    line-height: 1.25;
  }
}
.testimonials__item-author {
  font-weight: 400;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.6);
}
.testimonials__arrows {
  display: none;
}
@media screen and (min-width: 768px) {
  .testimonials__arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
  }
}
.testimonials__arrow {
  width: 40px;
  height: 40px;
  background-color: #f5f5f7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials__arrow:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.testimonials__arrow--prev {
  position: absolute;
  left: 0;
}
.testimonials__arrow-icon {
  fill: none;
  stroke: #1c1c1c;
}
.testimonials__arrow--next {
  position: absolute;
  right: 0;
}
.testimonials__decor {
  display: none;
}
@media screen and (min-width: 768px) {
  .testimonials__decor {
    display: block;
    position: absolute;
    right: 0;
    top: 26px;
    width: 156px;
    height: 187px;
  }
}

.contact {
  background-color: #f5f5f7;
  padding: 32px 0 16px;
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 64px 0 32px;
  }
}
@media screen and (min-width: 1440px) {
  .contact {
    padding: 80px 0 40px;
  }
}
.contact__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1440px) {
  .contact__wrapper {
    flex-direction: row;
    gap: 80px;
  }
}
@media screen and (min-width: 768px) {
  .contact .title {
    margin-bottom: 16px;
  }
}
.contact__text {
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.6);
}
@media screen and (min-width: 1440px) {
  .contact__text {
    margin-bottom: 105px;
  }
}
.contact__img {
  display: none;
}
@media screen and (min-width: 1440px) {
  .contact__img {
    display: block;
    width: 539px;
    border-radius: 8px;
  }
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #fff;
  border-radius: 8px;
  padding: 16px;
}
.contact__label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact__label-text {
  font-size: 14px;
  line-height: 1.57;
}
.contact__input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  height: 54px;
  border-radius: 8px;
  outline: none;
  padding: 16px;
}
.contact__input:is(:focus, :hover) {
  border-color: #ff621f;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.contact__input--textarea {
  height: 176px;
  resize: none;
}
.contact__input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.contact__input::placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.contact__message {
  font-size: 12px;
  line-height: 1.25;
  color: rgba(0, 0, 0, 0.6);
}

.footer {
  background-color: #f5f5f7;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding: 16px 0;
}
@media screen and (min-width: 1440px) {
  .footer {
    padding: 20px 0;
  }
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .footer__wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer__text, .footer__link {
  font-size: 14px;
  line-height: 1.57;
  color: rgba(0, 0, 0, 0.6);
}
@media screen and (min-width: 768px) {
  .footer__text, .footer__link {
    font-size: 16px;
    line-height: 1.75;
  }
}
.footer__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .footer__list {
    gap: 16px;
  }
}

.about-page {
  padding: 32px 0 16px;
}
@media screen and (min-width: 768px) {
  .about-page {
    padding: 64px 0 32px;
  }
}
@media screen and (min-width: 1440px) {
  .about-page {
    padding: 80px 0 40px;
  }
}
.about-page__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1440px) {
  .about-page__wrapper {
    flex-direction: row;
    gap: 60px;
  }
}
.about-page__block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .about-page__block {
    align-items: flex-start;
  }
}
@media screen and (min-width: 1440px) {
  .about-page__block {
    width: 50%;
  }
}
.about-page__text {
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.6);
}

.legal {
  padding: 16px 0;
}
@media screen and (min-width: 1440px) {
  .legal {
    padding: 32px 0;
  }
}
.legal__wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1440px) {
  .legal__wrapper {
    gap: 24px;
  }
}
.legal__title {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .legal__title {
    font-size: 64px;
    line-height: 1.09;
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .legal__title {
    font-size: 70px;
    line-height: 1;
    margin-bottom: 32px;
  }
}
.legal__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .legal__content {
    gap: 16px;
  }
}
.legal__subtitle {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.25;
  text-transform: capitalize;
}
.legal__text, .legal__list-item {
  font-size: 14px;
  line-height: 1.57;
  color: rgba(0, 0, 0, 0.6);
}
.legal__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hotels {
  padding: 32px 0;
}
@media screen and (min-width: 768px) {
  .hotels {
    padding: 64px 0;
  }
}
@media screen and (min-width: 1440px) {
  .hotels {
    padding: 80px 0;
  }
}
.hotels__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .hotels__list {
    gap: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .hotels__list {
    gap: 40px;
  }
}
.hotels__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #f5f5f7;
  border-radius: 8px;
  overflow: hidden;
  padding: 16px;
}
@media screen and (min-width: 768px) {
  .hotels__item {
    gap: 24px;
    padding: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .hotels__item {
    flex-direction: row;
    padding: 0;
  }
}
@media screen and (min-width: 1440px) {
  .hotels__item:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1440px) {
  .hotels__item-info {
    max-width: 706px;
    padding: 24px 40px;
  }
}
.hotels__item-title {
  font-weight: 600;
  font-size: 38px;
  line-height: 1.16;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .hotels__item-title {
    font-size: 46px;
    line-height: 1.09;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .hotels__item-title {
    font-size: 48px;
    line-height: 1.25;
  }
}
.hotels__item-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .hotels__item-features {
    margin-bottom: 24px;
  }
}
.hotels__feature-subtitle {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.22;
  text-transform: capitalize;
  margin-bottom: 8px;
}
.hotels__feature-text {
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.6);
}
.hotels__item-images {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .hotels__item-images {
    flex-direction: row;
  }
}
@media screen and (min-width: 1440px) {
  .hotels__item-images {
    flex-direction: column;
    flex-grow: 1;
  }
}
@media screen and (min-width: 768px) {
  .hotels__images-item {
    flex-basis: calc((100% - 32px) / 3);
  }
}
.hotels__item-img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .hotels__item-img {
    height: 240px;
  }
}
@media screen and (min-width: 1440px) {
  .hotels__item-img {
    height: 188px;
  }
}

.contact__status {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.contact__status--loading {
  color: #1c1c1c;
  background-color: #fbfbec;
}
.contact__status--success {
  color: #fff;
  background-color: #07ac9e;
}
.contact__status--error {
  color: #fff;
  background-color: #ff621f;
}