@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap");
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input, textarea, select, button {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.hidden {
  display: none;
}

.justify-start {
  justify-content: start;
}
.justify-end {
  justify-content: end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.justify-evenly {
  justify-content: space-evenly;
}

.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.items-stretch {
  align-items: stretch;
}

.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-start {
  text-align: start;
}
.text-end {
  text-align: end;
}

.place-items-start {
  place-items: start;
}
.place-items-end {
  place-items: end;
}
.place-items-center {
  place-items: center;
}
.place-items-baseline {
  place-items: baseline;
}
.place-items-stretch {
  place-items: stretch;
}

.gap-10 {
  gap: 10px;
}
.gap-20 {
  gap: 20px;
}
.gap-30 {
  gap: 30px;
}

.shrink {
  flex-shrink: 1;
}
.shrink-0 {
  flex-shrink: 0;
}

.w-full {
  width: 100%;
}

.h-screen {
  height: 100vh;
}

.cms-button {
  padding: 10px 20px;
  border: none;
  border-radius: 0.6666666667px;
  background: #24b3c3;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  transition: all 0.3s ease;
}
.cms-button:hover {
  color: white;
  background: rgb(28.0519480519, 139.4805194805, 151.9480519481);
}

.cms-title {
  width: 100%;
  padding: 80px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
@media (max-width: 480px) {
  .cms-title {
    padding: 50px 15px;
  }
}
.cms-title__container {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cms-title__container h1 {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .cms-title__container h1 {
    font-size: 28px;
  }
}
.cms-title__container span {
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .cms-title__container span {
    font-size: 14px;
  }
}

.cms-category {
  width: 100%;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-category {
    padding: 0px 15px;
    margin-bottom: 50px;
  }
}
.cms-category__container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-category__container {
    width: 100%;
  }
}
.cms-category__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-category__wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .cms-category__wrapper.mobile-1cols {
    grid-template-columns: repeat(1, 1fr);
  }
}

.cms-team {
  width: 100%;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-team {
    padding: 0px 15px;
    margin-bottom: 50px;
  }
}
.cms-team__container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-team__container {
    width: 100%;
  }
}
.cms-team__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-team__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cms-contact {
  width: 100%;
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-contact {
    padding: 20px 15px;
  }
}
.cms-contact__container {
  width: 1200px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .cms-contact__container {
    width: 100%;
  }
}
.cms-contact__wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 50px 50px 0 50px;
  gap: 60px;
}
@media (max-width: 480px) {
  .cms-contact__wrapper {
    flex-direction: column;
    padding: 0px;
    gap: 30px;
    margin-top: 20px;
  }
}
.cms-contact__wrapper-text {
  display: flex;
  flex-direction: column;
}
.cms-contact__wrapper-text h1 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .cms-contact__wrapper-text h1 {
    font-size: 24px;
  }
}
.cms-contact__wrapper-text h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .cms-contact__wrapper-text h4 {
    font-size: 18px;
  }
}
.cms-contact__wrapper-form {
  padding: 40px;
  border: 1px solid #EEEEEE;
  background: white;
  border-radius: 2px;
  width: 650px;
  margin-top: -100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 480px) {
  .cms-contact__wrapper-form {
    width: 100%;
    margin-top: 0px;
    padding: 20px;
  }
}
.cms-contact__wrapper-form > h3 {
  font-size: 26px;
  font-weight: 600;
}
.cms-contact__wrapper-form > button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background: #24b3c3;
  color: white;
}
.cms-contact__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.cms-contact__items > li {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cms-contact__items > li i {
  width: 65px;
  height: 65px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  color: #24b3c3;
  background: rgba(36, 179, 195, 0.1);
  flex-shrink: 0;
  font-size: 30px;
}
.cms-contact__items > li div {
  display: flex;
  flex-direction: column;
}
.cms-contact__items > li div > span:first-child {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.8;
}
.cms-contact__social {
  display: flex;
  gap: 15px;
}
.cms-contact__social li {
  display: flex;
}
.cms-contact__social a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white !important;
  transition: all 0.3s ease;
}
.cms-contact__social a.uil-facebook-f {
  background: #3b5998;
}
.cms-contact__social a.uil-instagram {
  background: #e4405f;
}
.cms-contact__social a.uil-youtube {
  background: #cd201f;
}
.cms-contact__social a.uil-twitter-alt {
  background: #55acee;
}
.cms-contact__social a.fa-x-twitter {
  background: #262829;
}
.cms-contact__social a.uil-linkedin-alt {
  background: #0077b5;
}
.cms-contact__social a:hover {
  transform: scale(1.1);
}
.cms-contact__map {
  width: 100%;
  height: auto;
  aspect-ratio: 3/1;
  border-radius: 2px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .cms-contact__map {
    aspect-ratio: 1/1;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .cms-contact__map {
    aspect-ratio: 1/1;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .cms-contact__map {
    aspect-ratio: 1/1;
  }
}
.cms-contact__form-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cms-contact__form-row label {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.8;
}
.cms-contact__form-row input, .cms-contact__form-row textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  outline: none;
  transition: all 0.3s ease;
}
.cms-contact__form-row input:focus, .cms-contact__form-row textarea:focus {
  border-color: #24b3c3;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}
.cms-contact__form-row textarea {
  height: 150px;
  resize: none;
}

.cms-page {
  width: 100%;
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-page {
    padding: 20px 15px;
  }
}
.cms-page__container {
  width: 960px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.cms-page__container--large {
  width: 1200px;
}
@media (max-width: 480px) {
  .cms-page__container--large {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .cms-page__container {
    width: 100%;
  }
}
.cms-page__container svg.not-found {
  max-height: 450px;
}
.cms-page__title {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cms-page__title h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 5px;
}
.cms-page__title span {
  font-size: 18px;
  font-weight: 300;
}
.cms-page__title span img {
  max-width: 100% !important;
  height: auto !important;
}
.cms-page__img {
  width: calc(100% + 170px);
  margin-left: -85px;
  border-radius: 2px;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/8;
  background: #EEEEEE;
}
@media (max-width: 480px) {
  .cms-page__img {
    width: 100%;
    margin-left: 0px;
  }
}
.cms-page__content {
  width: 100%;
  line-height: 1.5;
}
.cms-page__content img {
  max-width: 100% !important;
  height: auto !important;
}

.cms-post {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cms-post__img {
  width: 100%;
  display: flex;
  margin-bottom: 10px;
}
.cms-post__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/10;
  background: #EEEEEE;
  border: 1px solid #EEEEEE;
  border-radius: 2px;
}
.cms-post__category {
  font-size: 14px;
  font-weight: 300;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.cms-post__category:hover {
  opacity: 1;
}
.cms-post > h2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .cms-post > h2 {
    font-size: 16px;
  }
}

.cms-user {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cms-user img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 13/16;
  background: #EEEEEE;
  border: 1px solid #EEEEEE;
  border-radius: 2px;
  margin-bottom: 10px;
}
.cms-user > h2 {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .cms-user > h2 {
    font-size: 16px;
  }
}
.cms-user > span {
  font-weight: 300;
  font-size: 14px;
}

.cms-comment {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  border: 1px solid #EEEEEE;
}
.cms-comment__header {
  padding: 15px 20px;
  border-bottom: 1px solid #EEEEEE;
  display: flex;
  font-size: 14px;
  gap: 10px;
  align-items: center;
}
.cms-comment__header span {
  font-weight: 700;
}
.cms-comment__text {
  padding: 20px;
  font-size: 18px;
  line-height: 1.5;
  font-style: italic;
}
@media (max-width: 480px) {
  .cms-comment__text {
    font-size: 16px;
    padding: 15px;
  }
}

.cms-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.cms-pagination a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid #EEEEEE;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.cms-pagination a:hover {
  opacity: 1;
}
.cms-pagination a.active {
  background: #24b3c3;
  color: white;
  border: none;
  opacity: 1;
}

.cms-gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 480px) {
  .cms-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.cms-gallery__item {
  display: flex;
}
.cms-gallery__item img {
  border-radius: 2px;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
  background: #EEEEEE;
  border: 1px solid #EEEEEE;
}

.cms-form {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 20px;
}
.cms-form h2 {
  font-size: 24px;
  font-weight: 600;
}
.cms-form button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background: #24b3c3;
  color: white;
}
.cms-form__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cms-form__item label {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.8;
}
.cms-form__item input, .cms-form__item textarea, .cms-form__item select {
  width: 100%;
  padding: 10px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  outline: none;
  transition: all 0.3s ease;
}
.cms-form__item input:focus, .cms-form__item textarea:focus, .cms-form__item select:focus {
  border-color: #24b3c3;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}
.cms-form__item input:required, .cms-form__item textarea:required, .cms-form__item select:required {
  border-left: 2px solid #cd201f;
}
.cms-form__item textarea {
  height: 150px;
  resize: none;
}

.cms-product {
  width: 100%;
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-product {
    padding: 20px 15px;
  }
}
.cms-product__container {
  width: 1200px;
  display: flex;
  gap: 40px;
}
@media (max-width: 480px) {
  .cms-product__container {
    width: 100%;
    flex-direction: column;
    gap: 30px;
  }
}
.cms-product__gallery {
  width: 610px;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 15px;
  align-self: flex-start;
  position: sticky;
  top: 150px;
}
@media (max-width: 480px) {
  .cms-product__gallery {
    width: 100%;
    position: relative;
    top: 0px;
  }
}
.cms-product__top {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.cms-product__top-wrapper {
  display: flex;
}
.cms-product__top-img {
  display: flex;
  width: 100%;
}
.cms-product__top-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/10;
  background: #EEEEEE;
  border: 1px solid #EEEEEE;
  border-radius: 2px;
}
.cms-product__bottom {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.cms-product__bottom-wrapper {
  display: flex;
}
.cms-product__bottom-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/10;
  background: #EEEEEE;
  border: 1px solid #EEEEEE;
  border-radius: 1px;
  cursor: pointer;
}
.cms-product__bottom-img.swiper-slide-thumb-active {
  border-color: #24b3c3;
}
.cms-product__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cms-product__content h1 {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .cms-product__content h1 {
    font-size: 28px;
  }
}
.cms-product__content-description {
  font-size: 18px;
  font-weight: 300;
}
.cms-product__content-description p:last-child {
  margin-bottom: 0px;
}
.cms-product__item {
  background: white;
  display: flex;
  flex-direction: column;
  border: 1px solid #EEEEEE;
  border-radius: 1px;
  overflow: hidden;
  margin-top: 10px;
}
.cms-product__item.active h2 i {
  transform: rotate(180deg);
}
.cms-product__item.active .cms-product__item-content {
  max-height: 1000px;
  padding: 20px;
  line-height: 1.5;
}
.cms-product__item.active .cms-product__item-content h1 {
  font-size: 24px;
  font-weight: 600;
}
.cms-product__item.active .cms-product__item-content h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.cms-product__item.active .cms-product__item-content h3, .cms-product__item.active .cms-product__item-content h4, .cms-product__item.active .cms-product__item-content h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.cms-product__item.active .cms-product__item-content ul {
  margin: 15px;
}
.cms-product__item.active .cms-product__item-content img {
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
}
.cms-product__item h2 {
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #EEEEEE;
  color: #24b3c3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.cms-product__item h2 i {
  transition: all 0.3s ease;
}
.cms-product__item-content {
  padding: 0px;
  max-height: 0px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cms-catalogs {
  width: 100%;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-catalogs {
    padding: 0px 15px;
    margin-bottom: 50px;
  }
}
.cms-catalogs__container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-catalogs__container {
    width: 100%;
  }
}
.cms-catalogs__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 480px) {
  .cms-catalogs__wrapper {
    grid-template-columns: 1fr;
  }
}

.cms-catalog {
  display: flex;
  width: 100%;
  border: 1px solid #EEEEEE;
  border-radius: 2px;
  padding: 20px;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.cms-catalog:hover {
  border: 1px solid #24b3c3;
  background: rgba(36, 179, 195, 0.1);
}
.cms-catalog i {
  width: 60px;
  height: 60px;
  font-size: 30px;
  color: #24b3c3;
  background: rgba(36, 179, 195, 0.1);
  border-radius: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cms-catalog h2 {
  font-size: 22px;
  font-weight: 600;
}

.cms-img-content {
  width: 100%;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .cms-img-content {
    padding: 0px 15px;
    margin-bottom: 50px;
  }
}
.cms-img-content__container {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 480px) {
  .cms-img-content__container {
    width: 100%;
  }
}
.cms-img-content__item {
  width: 100%;
  display: flex;
  gap: 10px;
}
@media (max-width: 480px) {
  .cms-img-content__item {
    flex-direction: column !important;
  }
}
.cms-img-content__item:hover .cms-img-content__item-text {
  background: #24b3c3;
  color: white;
}
.cms-img-content__item:nth-child(2n) {
  flex-direction: row-reverse;
}
.cms-img-content__item-img {
  width: calc(50% - 5px);
  height: auto;
  display: flex;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .cms-img-content__item-img {
    width: 100%;
  }
}
.cms-img-content__item-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/2;
  background: #EEEEEE;
  border: 1px solid #EEEEEE;
  border-radius: 2px;
}
.cms-img-content__item-text {
  width: calc(50% - 5px);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px;
  font-size: 18px;
  background: rgba(36, 179, 195, 0.03);
  border-radius: 2px;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .cms-img-content__item-text {
    width: 100%;
    padding: 20px;
    font-size: 16px;
  }
}
.cms-img-content__item-text h1,
.cms-img-content__item-text h2,
.cms-img-content__item-text h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .cms-img-content__item-text h1,
  .cms-img-content__item-text h2,
  .cms-img-content__item-text h3 {
    font-size: 18px;
  }
}

/*
font-family: 'Playfair Display', serif;
font-family: 'Rubik', sans-serif;
*/
body {
  font-size: 16px;
  font-family: "Rubik", sans-serif;
  color: #011f23;
}

input, textarea, select, button {
  font-family: "Rubik", sans-serif;
}

a {
  color: #011f23;
  transition: color 0.3s ease;
}
a:hover {
  color: #24b3c3;
}

strong {
  font-weight: 600;
}

p {
  margin-bottom: 15px;
}

.button {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.button--detail {
  font-size: 18px;
  font-weight: 500;
  color: #24b3c3;
}
.button--detail:hover {
  gap: 15px;
}

.header {
  width: 100%;
  height: 215px;
  padding: 0 20px;
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #011f23;
}
@media (max-width: 480px) {
  .header {
    padding: 0 15px;
    height: 130px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header {
    padding: 0 15px;
    height: 130px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header {
    padding: 0 15px;
    height: 130px;
  }
}
.header.active .header__logo img {
  filter: invert(1) grayscale(1) contrast(0.8);
}
.header.active .header__menu {
  color: #011f23;
}
.header.active .header__menu i {
  background: url("../images/menu-close.svg") center center no-repeat;
}
.header.active .header__reservation {
  color: #011f23;
}
.header.active .menu {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 0 50px rgba(1, 31, 35, 0.3137254902);
}
.header__container {
  width: 100%;
  min-width: 1200px;
  max-width: 1340px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}
@media (max-width: 480px) {
  .header__container {
    min-width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__container {
    min-width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__container {
    min-width: 100%;
  }
}
.header__logo {
  display: flex;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.header__logo img {
  max-width: 185px;
  height: 150px;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .header__logo img {
    height: 100px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__logo img {
    height: 100px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__logo img {
    height: 100px;
  }
}
.header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.header__menu i {
  width: 35px;
  height: 35px;
  background: url("../images/menu.svg") center center no-repeat;
  transition: all 0.3s ease;
}
.header__menu:hover {
  color: #24b3c3;
}
.header__menu span {
  display: flex;
}
@media (max-width: 480px) {
  .header__menu span {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__menu span {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__menu span {
    display: none;
  }
}
.header__reservation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.header__reservation svg {
  width: 24px;
  height: 24px;
}
.header__reservation:hover {
  color: #24b3c3;
}
.header__reservation span {
  display: flex;
}
@media (max-width: 480px) {
  .header__reservation span {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .header__reservation span {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__reservation span {
    display: none;
  }
}

.menu {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100vh;
  min-height: 870px;
  background: white;
  padding-top: 215px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .menu {
    min-height: 700px;
    padding-top: 130px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .menu {
    min-height: 700px;
    padding-top: 130px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .menu {
    min-height: 700px;
    padding-top: 130px;
  }
}
.menu__container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu__nav {
  width: 320px;
  display: flex;
  font-size: 36px;
  font-family: "Playfair Display", serif;
}
@media (max-width: 480px) {
  .menu__nav {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .menu__nav {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .menu__nav {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
.menu__nav ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.menu__nav ul li {
  display: flex;
  width: 100%;
}
.menu__nav ul a {
  width: 100%;
  display: flex;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .menu__nav ul a {
    justify-content: center;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .menu__nav ul a {
    justify-content: center;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .menu__nav ul a {
    justify-content: center;
  }
}
.menu__nav ul a:hover {
  padding-left: 10px;
}
.menu__img {
  width: 460px;
  height: 650px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 480px) {
  .menu__img {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .menu__img {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .menu__img {
    display: none;
  }
}
.menu__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 18s ease-in;
}
.menu__img img.active {
  opacity: 1;
  transform: scale(1.5);
}
.menu__contact {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (max-width: 480px) {
  .menu__contact {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .menu__contact {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .menu__contact {
    display: none;
  }
}
.menu__contact-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 18px;
}
.menu__contact-item span:first-child {
  font-size: 14px;
  font-weight: 300;
  color: #011f23;
}
.menu__social {
  display: flex;
  gap: 15px;
  font-size: 24px;
}

.hero {
  width: 100%;
  margin-top: -215px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #011f23;
  color: white;
  position: relative;
  overflow: hidden;
}
@media (max-width: 480px) {
  .hero {
    margin-top: -130px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero {
    margin-top: -130px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    margin-top: -130px;
  }
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 400px;
  background: linear-gradient(180deg, rgba(1, 31, 35, 0.8901960784) 30%, rgba(1, 31, 35, 0) 100%);
}
.hero__container {
  width: 100%;
  min-width: 1200px;
  max-width: 1340px;
  display: flex;
  position: relative;
  z-index: 2;
}
@media (max-width: 480px) {
  .hero__container {
    padding-top: 130px;
    min-width: 100%;
    flex-direction: column;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero__container {
    padding-top: 130px;
    min-width: 100%;
    flex-direction: column;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero__container {
    padding-top: 130px;
    min-width: 100%;
    flex-direction: column;
  }
}
.hero__item {
  width: 100%;
  height: 100vh;
  min-height: 870px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.1254901961);
  transition: background 0.3s ease;
}
@media (max-width: 480px) {
  .hero__item {
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1254901961);
    height: auto;
    min-height: 0;
    padding: 80px 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero__item {
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1254901961);
    height: auto;
    min-height: 0;
    padding: 80px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero__item {
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1254901961);
    height: auto;
    min-height: 0;
    padding: 80px 15px;
  }
}
.hero__item:first-child {
  border-left: none;
}
.hero__item:nth-child(1) {
  background: linear-gradient(270deg, rgba(34, 34, 32, 0.3764705882) 30%, rgba(1, 31, 35, 0) 100%);
}
.hero__item:nth-child(1):hover {
  background: linear-gradient(270deg, rgba(34, 34, 32, 0.5215686275) 30%, rgba(1, 31, 35, 0) 100%);
}
.hero__item:nth-child(2) {
  background: rgba(1, 31, 35, 0.3764705882);
}
.hero__item:nth-child(2):hover {
  background: rgba(34, 34, 32, 0.5215686275);
}
.hero__item:nth-child(3) {
  background: linear-gradient(90deg, rgba(34, 34, 32, 0.3764705882) 30%, rgba(1, 31, 35, 0) 100%);
}
.hero__item:nth-child(3):hover {
  background: linear-gradient(90deg, rgba(34, 34, 32, 0.5215686275) 30%, rgba(1, 31, 35, 0) 100%);
}
.hero__item-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero__item-text h2 {
  font-size: 45px;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  letter-spacing: 3px;
}
@media (max-width: 480px) {
  .hero__item-text h2 {
    font-size: 36px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .hero__item-text h2 {
    font-size: 36px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero__item-text h2 {
    font-size: 36px;
  }
}
.hero__item-text span {
  font-weight: 300;
  letter-spacing: 2px;
}
.hero__img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease, transform 18s ease-in;
}
.hero__img.active {
  opacity: 1;
  transform: scale(1.5);
}
.hero__img.main {
  opacity: 1;
}

.stories {
  width: 100%;
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f7f8;
}
@media (max-width: 480px) {
  .stories {
    padding: 50px 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .stories {
    padding: 50px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .stories {
    padding: 50px 15px;
  }
}
.stories__container {
  width: 100%;
  max-width: 1340px;
  display: flex;
  justify-content: space-around;
}
@media (max-width: 480px) {
  .stories__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .stories__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .stories__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}

.story {
  text-align: center;
  width: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-weight: 300;
}
@media (max-width: 480px) {
  .story {
    width: 100%;
    font-size: 14px;
    gap: 5px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .story {
    width: 100%;
    font-size: 14px;
    gap: 5px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .story {
    width: 100%;
    font-size: 14px;
    gap: 5px;
  }
}
.story img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  outline: 3px solid #c7d4d8;
  outline-offset: 3px;
}
@media (max-width: 480px) {
  .story img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 0;
    outline: none;
    outline-offset: 0;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .story img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 0;
    outline: none;
    outline-offset: 0;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .story img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 0;
    outline: none;
    outline-offset: 0;
  }
}

.section {
  width: 100%;
  padding: 120px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .section {
    padding: 50px 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section {
    padding: 50px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .section {
    padding: 50px 15px;
  }
}
.section--deep {
  background: #f3f7f8;
}
.section--deep .section__container {
  flex-direction: row-reverse;
}
.section--deep .section__gallery-arrows {
  right: auto;
  left: -75px;
}
.section--deep .section__gallery-arrow path {
  fill: #011f23;
}
.section--dark {
  background: #011f23;
  color: white;
}
.section__container {
  width: 100%;
  min-width: 1200px;
  max-width: 1340px;
  display: flex;
  align-items: center;
  gap: 35px;
}
@media (max-width: 480px) {
  .section__container {
    min-width: 100%;
    flex-direction: column !important;
    gap: 20px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section__container {
    min-width: 100%;
    flex-direction: column !important;
    gap: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .section__container {
    min-width: 100%;
    flex-direction: column !important;
    gap: 20px;
  }
}
.section__gallery {
  display: flex;
  position: relative;
  flex-shrink: 0;
  width: 50%;
  height: auto;
  aspect-ratio: 1/1;
  background: #011f23;
}
@media (max-width: 480px) {
  .section__gallery {
    width: 100%;
    aspect-ratio: 1/1;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section__gallery {
    width: 100%;
    aspect-ratio: 1/1;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .section__gallery {
    width: 100%;
    aspect-ratio: 1/1;
  }
}
.section__gallery-arrows {
  position: absolute;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 50px;
  bottom: 50px;
  right: -75px;
}
.section__gallery-arrow {
  display: flex;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
@media (max-width: 480px) {
  .section__gallery-arrow {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section__gallery-arrow {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .section__gallery-arrow {
    display: none;
  }
}
.section__gallery-arrow:hover {
  opacity: 1;
}
.section__slider {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.section__slider-wrapper {
  width: 100%;
  display: flex;
}
.section__slider-item {
  width: 100%;
  height: 100% !important;
  display: flex;
  position: relative;
  color: #f3f7f8;
}
.section__slider-item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section__slider-item-counter {
  position: absolute;
  top: 35px;
  right: 35px;
}
@media (max-width: 480px) {
  .section__slider-item-counter {
    top: 15px;
    right: 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section__slider-item-counter {
    top: 15px;
    right: 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .section__slider-item-counter {
    top: 15px;
    right: 15px;
  }
}
.section__slider-item-counter span {
  font-size: 46px;
  font-family: "Playfair Display", serif;
  line-height: 1;
}
.section__slider-item-counter span:last-child {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 2px;
}
.section__text {
  display: flex;
  flex-direction: column;
}
.section__text h6 {
  font-size: 18px;
  font-weight: 300;
  color: #011f23;
  letter-spacing: 2px;
  margin-bottom: 5px;
}
.section__text h3 {
  font-size: 45px;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
}
@media (max-width: 480px) {
  .section__text h3 {
    font-size: 36px;
    margin-bottom: 5px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .section__text h3 {
    font-size: 36px;
    margin-bottom: 5px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .section__text h3 {
    font-size: 36px;
    margin-bottom: 5px;
  }
}
.section__text-description {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 15px;
}
.section__text-description p:last-child {
  margin-bottom: 0;
}

.comments {
  width: 100%;
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .comments {
    padding: 50px 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .comments {
    padding: 50px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .comments {
    padding: 50px 15px;
  }
}
.comments__container {
  width: 100%;
  max-width: 1340px;
  min-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .comments__container {
    min-width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .comments__container {
    min-width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .comments__container {
    min-width: 100%;
  }
}
.comments__title {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 50px;
}
.comments__title > h4 {
  font-size: 45px;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  margin-bottom: 15px;
}
@media (max-width: 480px) {
  .comments__title > h4 {
    font-size: 36px;
    margin-bottom: 5px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .comments__title > h4 {
    font-size: 36px;
    margin-bottom: 5px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .comments__title > h4 {
    font-size: 36px;
    margin-bottom: 5px;
  }
}
.comments__title > span {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .comments__title > span {
    font-size: 16px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .comments__title > span {
    font-size: 16px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .comments__title > span {
    font-size: 16px;
  }
}
.comments__logo {
  max-width: 185px;
  max-height: 150px;
  margin-bottom: 15px;
  filter: contrast(0.5);
}
@media (max-width: 480px) {
  .comments__logo {
    height: 100px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .comments__logo {
    height: 100px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .comments__logo {
    height: 100px;
  }
}
.comments__slider {
  width: 100%;
  margin-bottom: 50px;
  display: flex;
  overflow: hidden;
}
.comments__slider-wrapper {
  width: 100%;
  display: flex;
}
.comments__arrows {
  display: flex;
  align-items: center;
  gap: 50px;
}
.comments__arrow {
  cursor: pointer;
  display: flex;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.comments__arrow:hover {
  opacity: 1;
}

.comment {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.comment__img {
  display: flex;
  position: relative;
}
@media (max-width: 480px) {
  .comment__img {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .comment__img {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .comment__img {
    display: none;
  }
}
.comment__img img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  object-fit: cover;
}
.comment__img span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f3f7f8;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0px;
  right: 0px;
}
.comment__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.comment__text-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.comment__text-title > span {
  font-size: 18px;
  font-weight: 600;
}
.comment__text-title > div {
  display: flex;
  gap: 5px;
  color: #24b3c3;
}
.comment__text-description {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
}

.instagram {
  width: 100%;
  padding: 120px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f7f8;
}
@media (max-width: 480px) {
  .instagram {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .instagram {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .instagram {
    display: none;
  }
}
.instagram__container {
  width: 900px;
  height: 590px;
  position: relative;
  display: flex;
}
.instagram__text {
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: absolute;
  left: 500px;
  top: 25px;
}
.instagram__text > h5 {
  font-size: 36px;
  font-family: "Playfair Display", serif;
}
.instagram__text > a {
  font-size: 22px;
  color: #011f23;
  letter-spacing: 1px;
}
.instagram__img {
  position: absolute;
  object-fit: cover;
}
.instagram__img--1 {
  width: 160px;
  height: 160px;
  left: 0px;
  top: 85px;
}
.instagram__img--2 {
  width: 160px;
  height: 160px;
  left: 0px;
  top: 275px;
}
.instagram__img--3 {
  width: 280px;
  height: 280px;
  left: 190px;
  top: 0px;
}
.instagram__img--4 {
  width: 280px;
  height: 280px;
  left: 190px;
  top: 310px;
}
.instagram__img--5 {
  width: 160px;
  height: 200px;
  left: 500px;
  top: 195px;
}
.instagram__img--6 {
  width: 160px;
  height: 160px;
  left: 690px;
  top: 195px;
}

.room-features-section {
  display: flex;
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
@media (max-width: 480px) {
  .room-features-section {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .room-features-section {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .room-features-section {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }
}

.room-features-main {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 480px) {
  .room-features-main {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .room-features-main {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .room-features-main {
    grid-template-columns: 1fr;
  }
}

.room-features-block h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}
.room-features-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.room-features-block ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 15px;
}
.room-features-block ul li i {
  font-size: 20px;
  color: #24b3c3;
}

.room-features-aside {
  flex-shrink: 0;
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 480px) {
  .room-features-aside {
    width: 100%;
    gap: 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .room-features-aside {
    width: 100%;
    gap: 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .room-features-aside {
    width: 100%;
    gap: 15px;
  }
}

.room-features-aside-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.room-features-aside-item i {
  font-size: 36px;
  color: #24b3c3;
}
@media (max-width: 480px) {
  .room-features-aside-item i {
    font-size: 28px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .room-features-aside-item i {
    font-size: 28px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .room-features-aside-item i {
    font-size: 28px;
  }
}
.room-features-aside-item div {
  display: flex;
  flex-direction: column;
}
.room-features-aside-item div strong {
  font-size: 16px;
  font-weight: 600;
}
.room-features-aside-item div span {
  font-size: 15px;
}

.room-checkin-info {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 4px;
}
@media (max-width: 480px) {
  .room-checkin-info {
    padding: 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .room-checkin-info {
    padding: 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .room-checkin-info {
    padding: 15px;
  }
}
.room-checkin-info p {
  margin-bottom: 15px;
  font-size: 15px;
}

.room-checkin-times {
  display: flex;
  gap: 30px;
}
@media (max-width: 480px) {
  .room-checkin-times {
    gap: 20px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .room-checkin-times {
    gap: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .room-checkin-times {
    gap: 20px;
  }
}
.room-checkin-times div {
  display: flex;
  flex-direction: column;
}
.room-checkin-times div span {
  font-size: 14px;
  color: #555;
  margin-bottom: 4px;
}
.room-checkin-times div strong {
  font-size: 24px;
  font-weight: 600;
  color: #232321;
}
@media (max-width: 480px) {
  .room-checkin-times div strong {
    font-size: 20px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .room-checkin-times div strong {
    font-size: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .room-checkin-times div strong {
    font-size: 20px;
  }
}

.room-icons-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background-color: #e0e0e0;
  border: 1px solid #e0e0e0;
}
@media (max-width: 480px) {
  .room-icons-section {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    margin-bottom: 20px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .room-icons-section {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    margin-bottom: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .room-icons-section {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    margin-bottom: 20px;
  }
}

.room-icon-item {
  background-color: #fff;
  padding: 20px 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 480px) {
  .room-icon-item {
    padding: 15px 10px;
    gap: 8px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .room-icon-item {
    padding: 15px 10px;
    gap: 8px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .room-icon-item {
    padding: 15px 10px;
    gap: 8px;
  }
}
.room-icon-item i {
  font-size: 32px;
  color: #24b3c3;
  line-height: 1;
}
@media (max-width: 480px) {
  .room-icon-item i {
    font-size: 28px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .room-icon-item i {
    font-size: 28px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .room-icon-item i {
    font-size: 28px;
  }
}
.room-icon-item span {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  line-height: 1.2;
}
@media (max-width: 480px) {
  .room-icon-item span {
    font-size: 12px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .room-icon-item span {
    font-size: 12px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .room-icon-item span {
    font-size: 12px;
  }
}

.room-details {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.room-details:nth-child(2n) {
  flex-direction: row-reverse;
}

.room-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .room-item {
    flex-direction: column !important;
  }
}
.room-item:nth-child(2n) {
  flex-direction: row-reverse;
}
.room-item > img {
  width: 50%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}
@media (max-width: 480px) {
  .room-item > img {
    width: 100%;
    aspect-ratio: 1/1;
  }
}
.room-item__text {
  width: 50%;
  padding: 0 40px;
}
@media (max-width: 480px) {
  .room-item__text {
    width: 100%;
    padding: 10px 0;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .room-item__text {
    width: 100%;
    padding: 10px 0;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .room-item__text {
    width: 100%;
    padding: 10px 0;
  }
}
.room-item__text h1, .room-item__text h2, .room-item__text h3, .room-item__text h4, .room-item__text h5 {
  font-size: 36px;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  margin-bottom: 5px;
}
@media (max-width: 480px) {
  .room-item__text h1, .room-item__text h2, .room-item__text h3, .room-item__text h4, .room-item__text h5 {
    font-size: 28px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .room-item__text h1, .room-item__text h2, .room-item__text h3, .room-item__text h4, .room-item__text h5 {
    font-size: 28px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .room-item__text h1, .room-item__text h2, .room-item__text h3, .room-item__text h4, .room-item__text h5 {
    font-size: 28px;
  }
}
.room-item__text p {
  font-size: 18px;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .room-item__text p {
    font-size: 16px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .room-item__text p {
    font-size: 16px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .room-item__text p {
    font-size: 16px;
  }
}

.footer {
  width: 100%;
  padding: 100px 0;
  background: #011f23;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .footer {
    padding: 50px 15px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer {
    padding: 50px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer {
    padding: 50px 15px;
  }
}
.footer__container {
  width: 100%;
  max-width: 1340px;
  min-width: 1200px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 480px) {
  .footer__container {
    min-width: 100%;
    flex-direction: column;
    gap: 50px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__container {
    min-width: 100%;
    flex-direction: column;
    gap: 50px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__container {
    min-width: 100%;
    flex-direction: column;
    gap: 50px;
  }
}
.footer__logo {
  display: flex;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 480px) {
  .footer__logo {
    display: none;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__logo {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__logo {
    display: none;
  }
}
.footer__logo img {
  max-width: 185px;
  height: 150px;
}
.footer__contact {
  max-width: 375px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.footer__contact a:hover {
  color: #24b3c3;
}
.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 18px;
}
.footer__contact-item span:first-child {
  font-size: 14px;
  font-weight: 300;
  color: #24b3c3;
}
.footer__contact-item a {
  color: white;
}
.footer__social {
  display: flex;
  gap: 15px;
  font-size: 24px;
}
.footer__social a {
  color: white;
}
.footer__copyright {
  max-width: 375px;
  line-height: 1.5;
  text-align: right;
}
@media (max-width: 480px) {
  .footer__copyright {
    text-align: center;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .footer__copyright {
    text-align: center;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer__copyright {
    text-align: center;
  }
}
.footer__copyright a {
  color: #24b3c3;
  text-decoration: underline;
}

/*# sourceMappingURL=main.css.map */
