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

body {
  min-width: 320px;
}

a {
  text-decoration: none;
  color: inherit;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

.header {
  height: 5rem;
  width: 100%;
  background-color: #000000;
  position: fixed;
  z-index: 2;
  top: 0;
}
.header__comfortable {
  display: none;
}
.header__menu {
  top: 0;
  background-color: #FFFFFF;
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
  column-count: 4;
  padding: 0.4rem 0rem;
  box-shadow: 0 0.1px 5px 0px gray;
  z-index: 2;
  width: 100%;
}
.header__menu .hamburguer-container {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.5rem 2rem 0 0rem;
}
.header__menu .hamburguer-container .hamburguer {
  width: 1.2rem;
  height: 1.2rem;
}
.header__menu .hamburguer-container .close-icon {
  width: 0.9rem;
  margin-top: 0.1rem;
  margin-left: 0.1rem;
}
.header__menu .title-container {
  display: flex;
  justify-content: center;
  width: 10rem;
  column-count: 2;
  padding-right: 5rem;
}
.header__menu .title-container .web-icon-container {
  margin-right: 1rem;
  width: 2rem;
  height: 2rem;
  box-shadow: 0px 14px 24px 0px rgba(139, 139, 139, 0.2509803922);
}
.header__menu .title-container .web-icon-container img {
  margin: 0.6rem 0.6rem;
}
.header__menu .title-container .web-title-container {
  break-inside: avoid;
}
.header__menu .title-container .web-title-container {
  padding-top: 0.5rem;
}
.header__menu .links {
  display: none;
}
.header__menu .account-search-container {
  break-inside: avoid;
  display: flex;
  flex-direction: row;
}
.header__menu .account-search-container img {
  padding: 0.5rem;
}

.menu-extended {
  position: fixed;
  top: 1.5rem;
  left: -2rem;
  background-color: #FFFFFF;
  display: none;
  height: auto;
  width: 100%;
  text-align: left;
  margin: 2rem;
  z-index: 1;
  overflow: visible;
  visibility: visible;
  padding: 0.5rem 0;
}
.menu-extended .menu-link {
  font-family: "Archivo";
  font-weight: 600;
  margin: 1.5rem;
}

.menu-extended {
  position: fixed;
  top: 1.5rem;
  left: -2rem;
  background-color: #FFFFFF;
  display: none;
  height: auto;
  width: 100%;
  text-align: left;
  margin: 2rem;
  z-index: 10;
  overflow: visible;
  visibility: visible;
  padding: 0.5rem 0;
}
.menu-extended .menu-link {
  font-family: "Archivo";
  font-weight: 600;
  margin: 1.5rem;
}

@media screen and (min-width: 1000px) {
  .header {
    height: 5rem;
    padding: 0 10%;
  }
  .header__comfortable {
    display: block;
    color: #FFFFFF;
    font-family: "Roboto";
  }
  .header__menu {
    justify-content: flex-start;
    gap: 10%;
  }
  .header__menu .hamburguer-container {
    display: none;
  }
  .header__menu .title-container {
    justify-content: flex-start;
    margin-left: 1rem;
    width: 20rem;
  }
  .header__menu .title-container .web-icon-container {
    width: 5rem;
    height: 5rem;
  }
  .header__menu .title-container .web-icon-container img {
    width: 1.94rem;
    margin: 1.5rem;
  }
  .header__menu .title-container .web-title-container img {
    width: 8.56rem;
    margin: 1rem;
  }
  .header__menu .links {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
  }
  .header__menu .links .menu-link {
    font-family: "Archivo";
  }
  .header__menu .account-search-container {
    display: flex;
    flex-direction: row;
    margin-left: auto;
    height: 3rem;
    margin-top: auto;
    margin-bottom: auto;
  }
  .header__menu .account-search-container .account-container, .header__menu .account-search-container .search-container {
    border: 1px solid rgba(133, 133, 133, 0.3019607843);
    margin: 0 0.5rem;
  }
}
.about-us-title {
  background-color: #333333;
  display: flex;
  flex-direction: column;
  padding: 8rem 1rem 0rem 1rem;
}
.about-us-title .ultimate-luxury-container {
  width: 70%;
  height: 2rem;
  margin: 0.6rem 0;
}
.about-us-title .ultimate-luxury-container h2 {
  font-family: "Archivo";
  font-size: 0.75rem;
  color: #FFFFFF;
  letter-spacing: 2.8px;
}
.about-us-title .luxury-title-container {
  width: 95%;
  height: 7.5rem;
  margin: 1rem 0;
}
.about-us-title .luxury-title-container h1 {
  color: #FFFFFF;
  font-family: "Old Standard TT";
  font-size: 3.4rem;
  font-weight: 400;
  letter-spacing: -1.2px;
}
.about-us-title .tour-learn-btn-container {
  margin: 2rem 0 0 0;
}
.about-us-title .tour-learn-btn-container button {
  min-width: 60%;
  height: 3.75rem;
  font-family: "Archivo";
  padding: 1rem 2rem;
}
@media screen and (min-width: 1000px) {
  .about-us-title .tour-learn-btn-container button {
    margin: 0 1rem;
    min-width: 20%;
  }
}
.about-us-title .tour-learn-btn-container button.btn--light {
  min-width: 60%;
  height: 3.75rem;
  font-family: "Archivo";
  padding: 1rem 2rem;
  background-color: #BEAD8E;
  border: none;
  margin-bottom: 0.7rem;
  color: #FFFFFF;
  letter-spacing: 2.8px;
}
@media screen and (min-width: 1000px) {
  .about-us-title .tour-learn-btn-container button.btn--light {
    margin: 0 1rem;
    min-width: 20%;
  }
}
.about-us-title .tour-learn-btn-container button.btn--dark {
  min-width: 60%;
  height: 3.75rem;
  font-family: "Archivo";
  padding: 1rem 2rem;
  border: solid;
  background-color: transparent;
  border-color: #6e6e6e;
  margin-top: 0.7rem;
  color: #FFFFFF;
  letter-spacing: 2.8px;
}
@media screen and (min-width: 1000px) {
  .about-us-title .tour-learn-btn-container button.btn--dark {
    margin: 0 1rem;
    min-width: 20%;
  }
}
.about-us-title .breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  width: 50%;
  height: 3rem;
  margin: 0 1rem 0 50%;
}
.about-us-title .breadcrumb p {
  font-family: "Archivo";
  font-weight: 700;
}
.about-us-title .breadcrumb p span {
  color: #BEAD8E;
  padding-left: 0 0.5rem;
}
@media screen and (min-width: 1000px) {
  .about-us-title .ultimate-luxury-container h2 {
    font-size: 1rem;
  }
  .about-us-title .luxury-title-container {
    height: auto;
  }
  .about-us-title .luxury-title-container h1 {
    font-size: 7.5rem;
  }
}

.video-presentation {
  padding: 1rem;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.video-presentation p {
  font-family: "Old Standard TT";
  font-weight: 400;
  font-size: 2rem;
}

.hotel-benefits {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.hotel-benefits .benefit {
  width: 50%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.hotel-benefits .benefit img {
  width: 4rem;
  fill: #BEAD8E;
}
.hotel-benefits .benefit svg {
  fill: #BEAD8E;
}
.hotel-benefits .benefit h6 {
  font-family: "Archivo";
  letter-spacing: 2.4px;
  padding: 1rem;
  font-size: 0.9rem;
}

.restaurant {
  padding: 4rem 1rem;
}
.restaurant .restaurant-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.restaurant h6 {
  font-family: "Archivo";
  letter-spacing: 2.8px;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 1rem 0;
}
.restaurant h2 {
  font-family: "Old Standard TT";
  letter-spacing: -1.2px;
  font-weight: 400;
  line-height: 60px;
}
.restaurant p {
  font-family: "Archivo";
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 24px;
  padding: 1rem 0;
}
.restaurant .btn-book-now {
  min-width: 60%;
  height: 3.75rem;
  font-family: "Archivo";
  padding: 1rem 2rem;
  min-width: 60%;
  height: 3.75rem;
  font-family: "Archivo";
  padding: 1rem 2rem;
  background-color: #BEAD8E;
  border: none;
  margin-bottom: 0.7rem;
  color: #FFFFFF;
  letter-spacing: 2.8px;
}
@media screen and (min-width: 1000px) {
  .restaurant .btn-book-now {
    margin: 0 1rem;
    min-width: 20%;
  }
}
@media screen and (min-width: 1000px) {
  .restaurant .btn-book-now {
    margin: 0 1rem;
    min-width: 20%;
  }
}
.restaurant h2 {
  font-size: 2.5rem;
}
.restaurant p {
  padding-right: 2.5rem;
}

.core-features {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.core-features--dark {
  background-color: #222222;
}
.core-features h6 {
  font-family: "Archivo";
  color: #777777;
  font-size: 1rem;
  letter-spacing: 2.8px;
  color: #FFFFFF;
}
.core-features h2 {
  font-family: "Old Standard TT";
  font-weight: 400;
  font-size: 3rem;
  padding: 1rem 0;
  color: #FFFFFF;
}
.core-features p {
  font-family: "Archivo";
  color: #777777;
  line-height: 24px;
  font-size: 1rem;
}
.core-features .swiper-core-features {
  display: flex;
  flex-direction: column;
  text-align: left;
  break-inside: avoid;
  padding-bottom: 2rem;
  overflow: hidden;
}
.core-features .swiper-core-features .swiper-wrapper .swiper-slide {
  padding: 1rem;
}
.core-features .swiper-core-features .swiper-wrapper .swiper-slide--dark {
  background-color: #292929;
}
.core-features .swiper-core-features .swiper-wrapper .swiper-slide .hotel-feature img {
  padding: 3rem 0 2rem 1rem;
}
.core-features .swiper-core-features .swiper-wrapper .swiper-slide .hotel-feature .field-container h2 {
  font-family: "Old Standard TT";
  font-size: 1.8rem;
}
.core-features .swiper-core-features .swiper-wrapper .swiper-slide .bg-1 {
  margin-right: 1.5rem;
  background-size: 9rem;
  background-repeat: no-repeat;
  background-position: top right;
}
.core-features .swiper-core-features .swiper-wrapper .swiper-slide .bg-1--dark {
  background-image: url("./../../Images/01-dark.svg");
}
.core-features .swiper-core-features .swiper-wrapper .swiper-slide .bg-2 {
  margin-right: 1.5rem;
  background-size: 9rem;
  background-repeat: no-repeat;
  background-position: top right;
}
.core-features .swiper-core-features .swiper-wrapper .swiper-slide .bg-2--dark {
  background-image: url("./../../Images/02-dark.svg");
}
.core-features .swiper-core-features .swiper-wrapper .swiper-slide .bg-3 {
  margin-right: 1.5rem;
  background-size: 9rem;
  background-repeat: no-repeat;
  background-position: top right;
}
.core-features .swiper-core-features .swiper-wrapper .swiper-slide .bg-3--dark {
  background-image: url("./../../Images/03-dark.svg");
}
.core-features .swiper-core-features .swiper-wrapper .swiper-slide .bg-4 {
  margin-right: 1.5rem;
  background-size: 9rem;
  background-repeat: no-repeat;
  background-position: top right;
}
.core-features .swiper-core-features .swiper-wrapper .swiper-slide .bg-4--dark {
  background-image: url("./../../Images/04-dark.svg");
}
.core-features .swiper-core-features .swiper-wrapper .swiper-slide .bg-5 {
  margin-right: 1.5rem;
  background-size: 9rem;
  background-repeat: no-repeat;
  background-position: top right;
}
.core-features .swiper-core-features .swiper-wrapper .swiper-slide .bg-5--dark {
  background-image: url("./../../Images/05-dark.svg");
}
.core-features .swiper-core-features .swiper-wrapper .swiper-slide .bg-6 {
  margin-right: 1.5rem;
  background-size: 9rem;
  background-repeat: no-repeat;
  background-position: top right;
}
.core-features .swiper-core-features .swiper-wrapper .swiper-slide .bg-6--dark {
  background-image: url("./../../Images/06-dark.svg");
}
.core-features .swiper-core-features .swiper-pagination-core-facilities {
  position: relative;
  top: 2rem;
  transform: translateX(35%);
}
.core-features .swiper-core-features .swiper-pagination-core-facilities .swiper-pagination-bullet-active {
  background-color: #BEAD8E;
  color: white;
}

.fun-facts-container {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 1rem;
}
.fun-facts-container h6 {
  font-family: "Archivo";
}
.fun-facts-container h2 {
  font-family: "Old Standqard TT";
  font-weight: 400;
  font-size: 3rem;
  padding-right: 3rem;
}
.fun-facts-container .fun-facts .fun-fact {
  display: flex;
  flex-direction: row;
  padding: 1rem;
  justify-content: space-evenly;
}
.fun-facts-container .fun-facts .fun-fact img {
  padding: 0 1rem;
}
.fun-facts-container .fun-facts .fun-fact .fun-fact-data {
  width: 50%;
}
.fun-facts-container .fun-facts .fun-fact .fun-fact-data h2 {
  font-family: "Old Standard TT";
}
.fun-facts-container .fun-facts .fun-fact .fun-fact-data P {
  font-family: "Roboto";
  color: #777777;
}
.fun-facts-container .images .swiper-images {
  break-inside: avoid;
  padding-bottom: 2rem;
  overflow: hidden;
}
.fun-facts-container .images .swiper-images .swiper-wrapper .swiper-slide img {
  padding: 1rem;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.fun-facts-container .images .swiper-images .swiper-pagination-images {
  position: relative;
  top: 2rem;
  transform: translateX(35%);
}
.fun-facts-container .images .swiper-images .swiper-pagination-images .swiper-pagination-bullet-active {
  background-color: #BEAD8E;
  color: white;
}

.hotel-resume {
  background-image: url("./../../../Images/bg-resume.png");
  display: flex;
  flex-direction: column;
  padding: 3rem 1rem 1rem 1rem;
}
.hotel-resume .hotel-info-container .hotel-title-icon-container {
  display: flex;
  flex-direction: row;
  padding-bottom: 1rem;
}
.hotel-resume .hotel-info-container .hotel-title-icon-container .web-icon-container {
  padding: 1rem 1.5rem;
  background-color: #BEAD8E;
  height: 4.5rem;
}
.hotel-resume .hotel-info-container .hotel-title-icon-container .web-icon-container P {
  color: #FFFFFF;
  font-family: "Archivo";
  font-weight: 700;
  font-size: 2.5rem;
}
.hotel-resume .hotel-info-container .web-title-container {
  padding: 1rem 2rem;
}
.hotel-resume .hotel-info-container .web-title-container img {
  width: 8rem;
}
.hotel-resume .hotel-info-container .hotel-description {
  font-family: "Archivo";
  font-size: 1rem;
  font-weight: 400;
  color: #777777;
  line-height: 26px;
  padding: 1rem 1rem 1rem 0;
}
.hotel-resume .hotel-info-container .social-links {
  width: 75%;
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
}
.hotel-resume .hotel-info-container .social-links .link-container {
  background-color: #BEAD8E;
  padding: 0.5rem;
}
.hotel-resume .hotel-info-container .social-links img {
  width: 1.5rem;
}
.hotel-resume .services-container {
  padding: 2rem 0;
  width: 10rem;
}
.hotel-resume .services-container h2 {
  font-family: "Old Standard TT";
  font-weight: 400;
}
.hotel-resume .services-container .services-list {
  height: 20rem;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.hotel-resume .services-container .services-list p {
  font-family: "Roboto";
  color: #777777;
  padding: 1rem 0;
}
.hotel-resume .contact-us-container h2 {
  font-family: "Old Standard TT";
  font-weight: 400;
}
.hotel-resume .contact-us-container .contact-methods .contact-method {
  display: flex;
  flex-direction: row;
  padding: 1rem;
}
.hotel-resume .contact-us-container .contact-methods .contact-method img {
  padding-right: 1rem;
}
.hotel-resume .contact-us-container .contact-methods .contact-method .field-container h6 {
  font-family: "Old Standard TT";
  font-size: 1.2rem;
  font-weight: 400;
}
.hotel-resume .contact-us-container .contact-methods .contact-method .field-container p {
  font-family: "Old Standard TT";
  font-size: 0.8rem;
  color: #777777;
}

@media screen and (min-width: 1000px) {
  .hotel-resume {
    padding: 5rem 5%;
    flex-direction: row;
    justify-content: space-evenly;
  }
  .hotel-resume .hotel-info-container {
    width: 40%;
  }
  .hotel-resume .services-container {
    width: 20rem;
  }
}
footer {
  background-color: #F8F8F8;
  padding: 1rem;
}
footer .footer-line p {
  font-family: "Roboto";
  font-weight: 700;
  padding: 0.5rem 0;
}
footer .footer-line p span {
  padding: 0 0.5rem;
}

/*# sourceMappingURL=about-us-page.css.map */
