.burger_menu {
  position: relative;
  margin: 1.25rem;
  width: 1.25rem;
  height: 0.75rem;
  align-self: center;
}
.burger_menu div {
  position: relative;
  height: 0.125rem;
  width: 1.25rem;
  background-color: black;
}
.burger_menu .burger_menu--first {
  transition: 500ms;
  top: 0;
}
.burger_menu .burger_menu--first--crossed {
  top: 0.3125rem;
  rotate: 45deg;
}
.burger_menu .burger_menu--middle {
  transition: 500ms;
  justify-self: center;
  top: 0.1875rem;
}
.burger_menu .burger_menu--middle--crossed {
  width: 0%;
}
.burger_menu .burger_menu--last {
  transition: 500ms;
  top: 0.375rem;
}
.burger_menu .burger_menu--last--crossed {
  top: 0.0625rem;
  rotate: -45deg;
}

@media screen and (min-width: 1000px) {
  .burger_menu {
    display: none;
  }
}
nav {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 100%;
  left: 0;
  top: 4.3125rem;
  padding: 1rem 1.25rem;
  transition: 200ms ease-in-out;
  transform-origin: top;
  background-color: white;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2901960784);
  z-index: 12;
}
nav.deploy_nav--active {
  transform: scaleY(1);
}
nav.deploy_nav--non_active {
  transform: scaleY(0);
}
nav.header--nav {
  display: none;
}
nav a {
  color: #111111;
  font-family: "Archivo";
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-align: left;
  align-self: flex-start;
  margin-block: 1rem;
}

@media screen and (min-width: 1000px) {
  nav {
    display: flex;
    flex-direction: row;
    position: relative;
    top: 0;
    padding: 0;
  }
  nav.deploy_nav--active, nav.deploy_nav--non_active {
    display: none;
  }
  nav.header--nav {
    display: flex;
    position: relative;
    width: 40%;
    left: 0;
    padding: 0;
    background-color: white;
    box-shadow: none;
    z-index: 12;
  }
  nav.header--nav a {
    display: inline-block;
    margin: 0 auto;
    height: 100%;
    width: 25%;
    align-content: center;
  }
  nav a {
    text-align: center;
  }
}
@media screen and (min-width: 1051px) {
  nav.header--nav {
    left: 3rem;
  }
}
.desktop_header {
  display: none;
  font-family: "Roboto";
  font-weight: 400;
  font-size: 1rem;
  line-height: 100%;
  color: white;
}

.header--wrapper {
  display: flex;
  flex-direction: row;
  position: sticky;
  top: 0;
  background-color: white;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2901960784);
  z-index: 99;
}

.logo {
  display: flex;
  align-self: center;
  font-family: "Archivo";
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2.6px;
  color: #111111;
}
.logo h1 {
  align-self: center;
  order: 2;
  font-size: 0.8rem;
  width: 8.5rem;
  margin-left: 1rem;
}
.logo h1 span {
  font-weight: 400;
}
.logo img {
  order: 1;
  width: 2.25rem;
  height: 2.25rem;
  box-shadow: 0px 14px 24px 0px rgba(139, 139, 139, 0.2509803922);
}

.header_buttons {
  margin-left: auto;
}

.header_buttons--user {
  background-color: transparent;
  border: none;
  margin-block: 1.4rem;
  margin-right: 1.4rem;
  line-height: 0;
}
@media screen and (min-width: 1000px) {
  .header_buttons--user {
    margin: 0.4375rem 0 0.4375rem 1.25rem;
    padding: 1.25rem;
    border: 1px solid rgba(133, 133, 133, 0.3019607843);
  }
}

.header_buttons--search {
  background-color: transparent;
  border: none;
  margin-block: 1.4rem;
  margin-right: 1.4rem;
  line-height: 0;
}
@media screen and (min-width: 1000px) {
  .header_buttons--search {
    margin: 0.4375rem 0 0.4375rem 1.25rem;
    padding: 1.25rem;
    border: 1px solid rgba(133, 133, 133, 0.3019607843);
  }
}

@media screen and (min-width: 1000px) {
  header {
    position: relative;
    background-color: #222222;
    height: 6.25rem;
  }
  .desktop_header {
    display: block;
    position: relative;
    margin: 0 auto;
    padding: 0.6875rem 0;
    width: 74%;
  }
  .header--wrapper {
    position: relative;
    margin: 0 auto;
    padding: 1.25rem;
    width: 74%;
    height: 7.5rem;
    box-shadow: none;
  }
  .logo h1 {
    font-size: 1.6rem;
  }
  .logo img {
    order: 1;
    width: 5rem;
    height: 5rem;
    box-shadow: 0px 14px 24px 0px rgba(139, 139, 139, 0.2509803922);
  }
  .header_buttons {
    position: relative;
    right: 0;
  }
}
@media screen and (min-width: 1246px) {
  .header_buttons {
    position: relative;
    right: 10%;
  }
}
footer {
  background-image: url("../img/footer background.png");
  background-color: rgba(255, 255, 255, 0.98);
  background-blend-mode: lighten;
}

.footer {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}

.footer__data__logo {
  display: flex;
  margin-bottom: 3.125rem;
  font-family: "Archivo";
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.6px;
  color: #111111;
}
.footer__data__logo h1 {
  align-self: center;
  order: 2;
  font-size: 1.625rem;
  width: 4rem;
  margin-left: 1.75rem;
}
.footer__data__logo h1 span {
  font-weight: 400;
}
.footer__data__logo img {
  order: 1;
  box-shadow: 0px 14px 24px 0px rgba(139, 139, 139, 0.1490196078);
}

.footer__data__description {
  color: #777777;
  font-family: "Archivo";
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.625rem;
  margin-bottom: 2rem;
}

.footer__data__social_media {
  display: flex;
  margin-bottom: 2rem;
}

.footer__data__social_media__link {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.625rem;
  background-color: #F8F8F8;
}

.footer__data__social_media__link--twitter {
  background-color: #BEAD8E;
}

.footer__services--title, .footer__contact--title {
  font-family: "Old Standard TT";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer__services__types {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 18.75rem;
  color: #777777;
  font-family: "Roboto";
  font-weight: 400;
  font-size: 1rem;
  line-height: 3rem;
  margin-bottom: 2rem;
}

.footer__contact {
  width: 60%;
}

.footer__contact__contact_card {
  display: flex;
  margin-bottom: 3.75rem;
}

.footer__contact__cc__text {
  margin-left: 1.25rem;
  width: 100%;
}

.footer__contact__cc__text--name {
  font-family: "Old Standard TT";
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: #222222;
}

.footer__contact__cc__text--type {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 100%;
  color: #777777;
}

.footer__legal {
  background-color: #F8F8F8;
  width: 100%;
  padding-block: 0.4375rem;
}

.footer__legal__text {
  font-family: "Roboto";
  font-weight: 700;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: -0.48px;
  color: #222222;
  padding: 0.75rem 1.25rem;
}

@media screen and (min-width: 1000px) {
  .footer {
    flex-direction: row;
    justify-content: space-between;
    width: 65%;
    height: 34.5rem;
    margin: 0 auto;
    padding: 0;
  }
  .footer__data, .footer__services, .footer__contact {
    padding-block: 6.25rem;
  }
  .footer__data {
    width: 25%;
  }
  .footer__services {
    width: 33%;
  }
  .footer__contact {
    width: 20%;
  }
  .footer__legal {
    display: flex;
    justify-content: space-around;
    height: 5rem;
    padding: 0;
  }
  .footer__legal__text {
    padding: 2rem 1.25rem;
  }
}
html, * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-width: 320px;
}

button, input[type=submit] {
  cursor: pointer;
}

a {
  text-decoration: none;
}

.main__header {
  position: relative;
  background-image: url("../img/hotel-room-2.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: white;
}
.main__header__bg_color {
  background-color: rgba(51, 51, 51, 0.7882352941);
}
.main__header__text {
  padding-inline: 1.25rem;
  padding-block: 4.6875rem;
}
.main__header__text--luxury {
  width: 80%;
  margin-bottom: 1.25rem;
  font-family: "Archivo";
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1.125rem;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}
.main__header__text--details, .main__header__text--details > pre {
  font-family: "Old Standard TT";
  font-weight: 400;
  font-size: 3.5rem;
  line-height: 3.75rem;
  letter-spacing: -1.2px;
}
.main__header__buttons {
  padding-inline: 1.25rem;
  padding-bottom: 4.6875rem;
}
.main__header__buttons__tour {
  width: 70%;
  padding: 1.25rem;
  border: none;
  background-color: #BEAD8E;
  font-family: "Archivo";
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 100%;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.5rem;
}
.main__header__buttons__learn {
  width: 70%;
  padding: 1.25rem;
  border: none;
  background-color: #BEAD8E;
  font-family: "Archivo";
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 100%;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: white;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.33);
}

.breadcrumbs {
  position: absolute;
  bottom: 0;
  right: 1.25rem;
  padding: 1rem 1.875rem;
  background-color: white;
  color: #222222;
  font-family: "Archivo";
  font-weight: 700;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: -0.48px;
}
.breadcrumbs span {
  color: #BEAD8E;
}

@media screen and (min-width: 1000px) {
  .main__header {
    height: 22rem;
  }
  .main__header__bg_color {
    height: 22rem;
  }
  .main__header__text {
    position: relative;
    left: 20%;
    top: 6.5rem;
    width: 50%;
  }
  .main__header__text--details {
    font-size: 4.5rem;
    line-height: 4.5rem;
    letter-spacing: -2.16px;
  }
  .main__header--index {
    height: 43.75rem;
  }
  .main__header--index__bg_color {
    height: 43.75rem;
  }
  .main__header--index__text {
    padding-bottom: 2rem;
  }
  .main__header--index__text--luxury {
    font-size: 0.875rem;
  }
  .main__header--index__text--details, .main__header--index__text--details > pre {
    font-size: 7.5rem;
    line-height: 8.125rem;
    letter-spacing: -3.6px;
  }
  .main__header--index__buttons {
    position: relative;
    display: flex;
    flex-direction: row;
    top: 6.5rem;
    left: 20%;
    width: 50%;
  }
  .main__header--index__buttons button {
    margin: 0 1.875rem 0 0;
    width: 13.5rem;
  }
  .breadcrumbs {
    right: 20%;
    padding: 1.25rem 2.5rem;
  }
}
.burger_menu {
  position: relative;
  margin: 1.25rem;
  width: 1.25rem;
  height: 0.75rem;
  align-self: center;
}
.burger_menu div {
  position: relative;
  height: 0.125rem;
  width: 1.25rem;
  background-color: black;
}
.burger_menu .burger_menu--first {
  transition: 500ms;
  top: 0;
}
.burger_menu .burger_menu--first--crossed {
  top: 0.3125rem;
  rotate: 45deg;
}
.burger_menu .burger_menu--middle {
  transition: 500ms;
  justify-self: center;
  top: 0.1875rem;
}
.burger_menu .burger_menu--middle--crossed {
  width: 0%;
}
.burger_menu .burger_menu--last {
  transition: 500ms;
  top: 0.375rem;
}
.burger_menu .burger_menu--last--crossed {
  top: 0.0625rem;
  rotate: -45deg;
}

@media screen and (min-width: 1000px) {
  .burger_menu {
    display: none;
  }
}
nav {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 100%;
  left: 0;
  top: 4.3125rem;
  padding: 1rem 1.25rem;
  transition: 200ms ease-in-out;
  transform-origin: top;
  background-color: white;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2901960784);
  z-index: 12;
}
nav.deploy_nav--active {
  transform: scaleY(1);
}
nav.deploy_nav--non_active {
  transform: scaleY(0);
}
nav.header--nav {
  display: none;
}
nav a {
  color: #111111;
  font-family: "Archivo";
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-align: left;
  align-self: flex-start;
  margin-block: 1rem;
}

@media screen and (min-width: 1000px) {
  nav {
    display: flex;
    flex-direction: row;
    position: relative;
    top: 0;
    padding: 0;
  }
  nav.deploy_nav--active, nav.deploy_nav--non_active {
    display: none;
  }
  nav.header--nav {
    display: flex;
    position: relative;
    width: 40%;
    left: 0;
    padding: 0;
    background-color: white;
    box-shadow: none;
    z-index: 12;
  }
  nav.header--nav a {
    display: inline-block;
    margin: 0 auto;
    height: 100%;
    width: 25%;
    align-content: center;
  }
  nav a {
    text-align: center;
  }
}
@media screen and (min-width: 1051px) {
  nav.header--nav {
    left: 3rem;
  }
}
.desktop_header {
  display: none;
  font-family: "Roboto";
  font-weight: 400;
  font-size: 1rem;
  line-height: 100%;
  color: white;
}

.header--wrapper {
  display: flex;
  flex-direction: row;
  position: sticky;
  top: 0;
  background-color: white;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2901960784);
  z-index: 99;
}

.logo {
  display: flex;
  align-self: center;
  font-family: "Archivo";
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2.6px;
  color: #111111;
}
.logo h1 {
  align-self: center;
  order: 2;
  font-size: 0.8rem;
  width: 8.5rem;
  margin-left: 1rem;
}
.logo h1 span {
  font-weight: 400;
}
.logo img {
  order: 1;
  width: 2.25rem;
  height: 2.25rem;
  box-shadow: 0px 14px 24px 0px rgba(139, 139, 139, 0.2509803922);
}

.header_buttons {
  margin-left: auto;
}

.header_buttons--user {
  background-color: transparent;
  border: none;
  margin-block: 1.4rem;
  margin-right: 1.4rem;
  line-height: 0;
}
@media screen and (min-width: 1000px) {
  .header_buttons--user {
    margin: 0.4375rem 0 0.4375rem 1.25rem;
    padding: 1.25rem;
    border: 1px solid rgba(133, 133, 133, 0.3019607843);
  }
}

.header_buttons--search {
  background-color: transparent;
  border: none;
  margin-block: 1.4rem;
  margin-right: 1.4rem;
  line-height: 0;
}
@media screen and (min-width: 1000px) {
  .header_buttons--search {
    margin: 0.4375rem 0 0.4375rem 1.25rem;
    padding: 1.25rem;
    border: 1px solid rgba(133, 133, 133, 0.3019607843);
  }
}

@media screen and (min-width: 1000px) {
  header {
    position: relative;
    background-color: #222222;
    height: 6.25rem;
  }
  .desktop_header {
    display: block;
    position: relative;
    margin: 0 auto;
    padding: 0.6875rem 0;
    width: 74%;
  }
  .header--wrapper {
    position: relative;
    margin: 0 auto;
    padding: 1.25rem;
    width: 74%;
    height: 7.5rem;
    box-shadow: none;
  }
  .logo h1 {
    font-size: 1.6rem;
  }
  .logo img {
    order: 1;
    width: 5rem;
    height: 5rem;
    box-shadow: 0px 14px 24px 0px rgba(139, 139, 139, 0.2509803922);
  }
  .header_buttons {
    position: relative;
    right: 0;
  }
}
@media screen and (min-width: 1246px) {
  .header_buttons {
    position: relative;
    right: 10%;
  }
}
footer {
  background-image: url("../img/footer background.png");
  background-color: rgba(255, 255, 255, 0.98);
  background-blend-mode: lighten;
}

.footer {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}

.footer__data__logo {
  display: flex;
  margin-bottom: 3.125rem;
  font-family: "Archivo";
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.6px;
  color: #111111;
}
.footer__data__logo h1 {
  align-self: center;
  order: 2;
  font-size: 1.625rem;
  width: 4rem;
  margin-left: 1.75rem;
}
.footer__data__logo h1 span {
  font-weight: 400;
}
.footer__data__logo img {
  order: 1;
  box-shadow: 0px 14px 24px 0px rgba(139, 139, 139, 0.1490196078);
}

.footer__data__description {
  color: #777777;
  font-family: "Archivo";
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.625rem;
  margin-bottom: 2rem;
}

.footer__data__social_media {
  display: flex;
  margin-bottom: 2rem;
}

.footer__data__social_media__link {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.625rem;
  background-color: #F8F8F8;
}

.footer__data__social_media__link--twitter {
  background-color: #BEAD8E;
}

.footer__services--title, .footer__contact--title {
  font-family: "Old Standard TT";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer__services__types {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 18.75rem;
  color: #777777;
  font-family: "Roboto";
  font-weight: 400;
  font-size: 1rem;
  line-height: 3rem;
  margin-bottom: 2rem;
}

.footer__contact {
  width: 60%;
}

.footer__contact__contact_card {
  display: flex;
  margin-bottom: 3.75rem;
}

.footer__contact__cc__text {
  margin-left: 1.25rem;
  width: 100%;
}

.footer__contact__cc__text--name {
  font-family: "Old Standard TT";
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: #222222;
}

.footer__contact__cc__text--type {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 100%;
  color: #777777;
}

.footer__legal {
  background-color: #F8F8F8;
  width: 100%;
  padding-block: 0.4375rem;
}

.footer__legal__text {
  font-family: "Roboto";
  font-weight: 700;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: -0.48px;
  color: #222222;
  padding: 0.75rem 1.25rem;
}

@media screen and (min-width: 1000px) {
  .footer {
    flex-direction: row;
    justify-content: space-between;
    width: 65%;
    height: 34.5rem;
    margin: 0 auto;
    padding: 0;
  }
  .footer__data, .footer__services, .footer__contact {
    padding-block: 6.25rem;
  }
  .footer__data {
    width: 25%;
  }
  .footer__services {
    width: 33%;
  }
  .footer__contact {
    width: 20%;
  }
  .footer__legal {
    display: flex;
    justify-content: space-around;
    height: 5rem;
    padding: 0;
  }
  .footer__legal__text {
    padding: 2rem 1.25rem;
  }
}
html, * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-width: 320px;
}

button, input[type=submit] {
  cursor: pointer;
}

a {
  text-decoration: none;
}

.main__header {
  position: relative;
  background-image: url("../img/hotel-room-2.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: white;
}
.main__header__bg_color {
  background-color: rgba(51, 51, 51, 0.7882352941);
}
.main__header__text {
  padding-inline: 1.25rem;
  padding-block: 4.6875rem;
}
.main__header__text--luxury {
  width: 80%;
  margin-bottom: 1.25rem;
  font-family: "Archivo";
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1.125rem;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}
.main__header__text--details, .main__header__text--details > pre {
  font-family: "Old Standard TT";
  font-weight: 400;
  font-size: 3.5rem;
  line-height: 3.75rem;
  letter-spacing: -1.2px;
}
.main__header__buttons {
  padding-inline: 1.25rem;
  padding-bottom: 4.6875rem;
}
.main__header__buttons__tour {
  width: 70%;
  padding: 1.25rem;
  border: none;
  background-color: #BEAD8E;
  font-family: "Archivo";
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 100%;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.5rem;
}
.main__header__buttons__learn {
  width: 70%;
  padding: 1.25rem;
  border: none;
  background-color: #BEAD8E;
  font-family: "Archivo";
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 100%;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: white;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.33);
}

.breadcrumbs {
  position: absolute;
  bottom: 0;
  right: 1.25rem;
  padding: 1rem 1.875rem;
  background-color: white;
  color: #222222;
  font-family: "Archivo";
  font-weight: 700;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: -0.48px;
}
.breadcrumbs span {
  color: #BEAD8E;
}

@media screen and (min-width: 1000px) {
  .main__header {
    height: 22rem;
  }
  .main__header__bg_color {
    height: 22rem;
  }
  .main__header__text {
    position: relative;
    left: 20%;
    top: 6.5rem;
    width: 50%;
  }
  .main__header__text--details {
    font-size: 4.5rem;
    line-height: 4.5rem;
    letter-spacing: -2.16px;
  }
  .main__header--index {
    height: 43.75rem;
  }
  .main__header--index__bg_color {
    height: 43.75rem;
  }
  .main__header--index__text {
    padding-bottom: 2rem;
  }
  .main__header--index__text--luxury {
    font-size: 0.875rem;
  }
  .main__header--index__text--details, .main__header--index__text--details > pre {
    font-size: 7.5rem;
    line-height: 8.125rem;
    letter-spacing: -3.6px;
  }
  .main__header--index__buttons {
    position: relative;
    display: flex;
    flex-direction: row;
    top: 6.5rem;
    left: 20%;
    width: 50%;
  }
  .main__header--index__buttons button {
    margin: 0 1.875rem 0 0;
    width: 13.5rem;
  }
  .breadcrumbs {
    right: 20%;
    padding: 1.25rem 2.5rem;
  }
}
.swiper_complete .swiper-pagination, .swiper-only-pagination .swiper-pagination {
  bottom: 0;
}

.swiper-only-pagination {
  text-align: center;
}

.page-number,
.swiper_complete .custom-button-prev--rooms,
.swiper_complete .custom-button-next--rooms,
.swiper-only-pagination .custom-button-prev--rooms,
.swiper-only-pagination .custom-button-next--rooms {
  background-color: transparent;
  border: none;
  display: inline-flex;
  justify-content: center;
  align-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: 2rem;
  height: 2rem;
  line-height: 1.25rem;
  color: #222222;
}

.page-number {
  font-family: "Oswald";
  font-weight: 700;
  font-size: 0.875rem;
}
.page-number:not(:last-child) {
  margin-right: 0.625rem;
}

.active {
  background-color: #BEAD8E;
  color: white;
}

.swiper_complete .custom-button-prev--rooms,
.swiper_complete .custom-button-next--rooms,
.swiper-only-pagination .custom-button-prev--rooms,
.swiper-only-pagination .custom-button-next--rooms {
  font-family: "Archivo";
  font-weight: 400;
  font-size: 1.25rem;
}

.custom-button-prev--rooms::after, .custom-button-next--rooms::after {
  display: none;
}

.swiper_complete .custom-button-prev--rooms, .swiper-only-pagination .custom-button-prev--rooms {
  margin-right: 0.625rem;
}

.swiper .custom-button-prev--only_navigation, .swiper .custom-button-next--only_navigation {
  top: 6.25rem;
  position: absolute;
  display: inline-flex;
  justify-content: center;
  align-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: 2rem;
  height: 2rem;
  line-height: 1.25rem;
  cursor: pointer;
  z-index: 3;
}

.custom-button-prev--only_navigation {
  color: #111111;
  background-color: white;
  left: 1rem;
}

.custom-button-next--only_navigation {
  color: white;
  background-color: #BEAD8E;
  right: 1rem;
}

.room__card {
  display: flex;
  flex-direction: column;
  margin: 1.25rem;
  text-align: center;
}
.room__card__bottom {
  position: relative;
  background-color: white;
}
.room__card__bottom__icons {
  position: relative;
  bottom: 1.375rem;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  width: fit-content;
  background-color: white;
  box-shadow: 0px 8px 16px 0px rgba(138, 138, 138, 0.0509803922);
}
.room__card__bottom__icons > :not(:last-child) {
  padding-right: 1rem;
}
.room__card__bottom__type {
  font-family: "Old Standard TT";
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.5rem;
  letter-spacing: -0.72px;
  color: #222222;
}
.room__card__bottom__description {
  padding: 0.625rem;
  font-family: "Roboto";
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #777777;
}
.room__card__bottom__pricing {
  display: flex;
  justify-content: space-evenly;
  margin: auto;
  margin-block: 0.625rem 1.875rem;
  width: 70%;
}
.room__card__bottom__pricing__price, .room__card__bottom__pricing__book {
  font-family: "Archivo";
  font-weight: 700;
  font-size: 1rem;
  line-height: 100%;
}
.room__card__bottom__pricing__price {
  color: #BEAD8E;
}
.room__card__bottom__pricing hr {
  display: none;
  position: relative;
  align-self: flex-end;
  width: 20%;
  right: 0;
  margin-block: 1rem 0.5rem;
  border: 1px solid #F1F1F1;
}
.room__card__bottom__pricing__book {
  color: #BDBDBD;
}

@media screen and (min-width: 1000px) {
  .room__card {
    margin: 0 auto;
    padding-right: 1rem;
  }
  .room__card--list {
    display: flex;
    flex-direction: row;
    margin-bottom: 1.875rem;
  }
  .room__card--list img {
    width: 50%;
    height: 100%;
    max-height: 19rem;
  }
  .room__card--list__bottom {
    position: relative;
    padding: 1.5rem 0 1.5rem 2.5rem;
    text-align: left;
    background-color: white;
  }
  .room__card--list__bottom__icons {
    display: flex;
    flex-direction: row;
    left: 0;
    bottom: 0;
    width: fit-content;
    height: 3rem;
    margin: 0 0.5rem 2.5rem 0;
    padding: 0.75rem 1.5rem;
  }
  .room__card--list__bottom__icons > img {
    width: 1.875rem;
  }
  .room__card--list__bottom__icons > :not(:last-child) {
    padding-right: 0;
  }
  .room__card--list__bottom__type {
    width: 55%;
  }
  .room__card--list__bottom__description {
    width: 60%;
    margin-top: 1rem;
    padding: 0;
  }
  .room__card--list__bottom__pricing {
    flex-direction: column;
    position: absolute;
    margin: 0;
    width: auto;
    top: 35%;
    right: 0;
    text-align: right;
  }
  .room__card--list__bottom__pricing__price span {
    font-size: 2.5rem;
  }
  .room__card--list__bottom__pricing hr {
    display: block;
  }
}
.rooms__view {
  display: none;
}

@media screen and (min-width: 1000px) {
  .rooms {
    top: -5rem;
    width: 60%;
    margin: 0 auto 7rem auto;
  }
  .rooms__view {
    display: block;
    position: sticky;
    top: 7rem;
    width: 15%;
    height: 5rem;
    margin: 7rem 0 0 2.5%;
    padding: 1rem 0;
    font-family: "Archivo";
    font-weight: 400;
    font-size: 0.875rem;
    background-color: #BEAD8E;
    color: #F8F8F8;
    border: 0;
  }
  .rooms--wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.main__availability, .main__arrival {
  padding: 2.5rem;
}
.main__availability form, .main__arrival form {
  display: flex;
  flex-direction: column;
}
.main__availability form p, .main__arrival form p {
  text-align: center;
  font-family: "Archivo";
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 100%;
  letter-spacing: -0.54px;
  color: #222222;
}
.main__availability form label, .main__arrival form label {
  display: flex;
  flex-direction: column;
  margin-block: 1.25rem;
  font-family: "Archivo";
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 100%;
  color: #222222;
}
.main__availability form label input, .main__arrival form label input {
  margin-block: 0.5rem;
  padding: 1.5625rem 1.25rem;
  width: 100%;
  border: 0;
  outline: none;
  background-color: #F8F8F8;
  font-family: "Archivo";
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 100%;
  color: #777777;
}
.main__availability form label .input_not_visible, .main__arrival form label .input_not_visible {
  display: none;
}
.main__availability form label .input_background_image, .main__arrival form label .input_background_image {
  background-repeat: no-repeat;
  background-position-y: center;
  background-position-x: calc(100% - 1.875rem);
}
.main__availability form label .input_background_image__calendar, .main__arrival form label .input_background_image__calendar {
  background-image: url("../img/calendar.svg");
}
.main__availability form input[type=submit], .main__arrival form input[type=submit] {
  width: 100%;
  padding: 1.25rem;
  border: none;
  background-color: #BEAD8E;
  font-family: "Archivo";
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 100%;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: white;
}

.main__info {
  margin: 3rem 1.25rem;
}
.main__info h3 {
  font-family: "Archivo";
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 100%;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: #777777;
}
.main__info p {
  margin-block: 0.625rem;
  font-family: "Old Standard TT";
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 3rem;
  letter-spacing: -1.44px;
  color: #222222;
}
.main__info h4 {
  font-family: "Archivo";
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.6875rem;
  color: #BEAD8E;
}
.main__info h4 span {
  font-size: 0.8125rem;
}
.main__info img {
  width: 100%;
}

.main__description {
  margin: 2.5rem 1.25rem;
  font-family: "Roboto";
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #777777;
}

@media screen and (min-width: 1000px) {
  .main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 60%;
    margin: 0 auto;
  }
  .main__info {
    grid-column: 1/3;
    margin: 3rem 0 0 0;
  }
  .main__info__text {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 1rem;
    width: 95%;
    padding: 2rem;
    background-color: white;
  }
  .main__info__text h3 {
    grid-column: 1/4;
  }
  .main__info__text p {
    grid-column: 1/4;
  }
  .main__info__text h4 {
    grid-column: 4;
  }
  .main__info__image {
    position: relative;
    bottom: 4.875rem;
    z-index: -1;
  }
  .main__description {
    grid-column: 1/3;
    margin: 0 0 2.5rem 0;
  }
}
.main__amenities {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 1.25rem;
}
.main__amenities h3 {
  width: 100%;
  font-family: "Old Standard TT";
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 1.875rem;
  color: #222222;
}
.main__amenities hr {
  width: 100%;
  margin-block: 1rem 1.5rem;
  border: 1px solid #F1F1F1;
}
.main__amenities__amenitie {
  display: flex;
  width: 50%;
  padding-block: 0.625rem;
}
.main__amenities__amenitie img {
  width: 1rem;
}
.main__amenities__amenitie p {
  padding: 0.25rem;
  font-family: "Roboto";
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 100%;
  color: #777777;
}

@media screen and (min-width: 1000px) {
  .main__amenities {
    position: relative;
    display: grid;
    grid-template-rows: repeat(auto, 5fr);
    left: 20%;
    width: 45%;
    padding: 3rem;
  }
  .main__amenities h3 {
    margin-bottom: 1rem;
    grid-row: 1;
    margin: 0;
  }
  .main__amenities hr {
    grid-row: 2;
    grid-column: 1/4;
  }
  .main__amenities__amenitie {
    align-self: center;
    padding: 0 0 1rem 0;
  }
  .main__amenities__amenitie--ac, .main__amenities__amenitie--wifi, .main__amenities__amenitie--breakfast {
    grid-row: 3;
  }
  .main__amenities__amenitie--kitchen, .main__amenities__amenitie--cleaning, .main__amenities__amenitie--shower {
    grid-row: 4;
  }
  .main__amenities__amenitie--groceries, .main__amenities__amenitie--bed, .main__amenities__amenitie--shop {
    grid-row: 5;
  }
  .main__amenities__amenitie--towel, .main__amenities__amenitie--support, .main__amenities__amenitie--locker_key {
    grid-row: 6;
  }
  .main__amenities__amenitie--security, .main__amenities__amenitie--team {
    grid-row: 7;
  }
}
.main__founder {
  margin: 3.75rem 1.5625rem;
  text-align: center;
}
.main__founder__images {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 40%;
}
.main__founder__images * {
  border-radius: 999px;
}
.main__founder__images--founder {
  width: 100%;
}
.main__founder__images--verified {
  position: absolute;
  right: 0;
}
.main__founder__name {
  margin-top: 1.25rem;
  font-family: "Old Standard TT";
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 1.875rem;
  letter-spacing: -0.9px;
  color: #222222;
}
.main__founder__position {
  padding: 0.9375rem;
  font-family: "Archivo";
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 100%;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: #BEAD8E;
}
.main__founder__descrpition {
  font-family: "Archivo";
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #777777;
}

@media screen and (min-width: 1000px) {
  .main__founder {
    position: relative;
    left: 20%;
    margin: 0;
    padding: 3.75rem 1.6rem;
    width: 20%;
    box-shadow: 0px 14px 24px 0px rgba(190, 173, 142, 0.2705882353);
  }
  .main__founder__name {
    margin-top: 1.75rem;
  }
  .main__founder__position {
    padding: 1rem 1rem 1.5rem 1rem;
  }
}
.main__cancellation {
  margin: 1.25rem;
}
.main__cancellation hr {
  width: 100%;
  margin-block: 1rem 1.5rem;
  border: 1px solid #F1F1F1;
}
.main__cancellation__title {
  font-family: "Old Standard TT";
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 1.875rem;
  color: #222222;
}
.main__cancellation__description {
  margin-block: 2.8125rem 5.625rem;
  font-family: "Roboto";
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #777777;
}

@media screen and (min-width: 1000px) {
  .main__cancellation {
    position: relative;
    left: 20%;
    width: 45%;
    margin: 5.375rem 0 0 0;
    padding: 3rem;
  }
}
.main__related_rooms--title {
  margin: 1.25rem;
  font-family: "Old Standard TT";
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 1.875rem;
  color: #222222;
}
.main__related_rooms hr {
  width: 100%;
  margin-block: 1rem 1.5rem;
  border: 1px solid #F1F1F1;
}

@media screen and (min-width: 1000px) {
  .main__related_rooms {
    width: 60%;
    margin: 0 auto;
  }
  .main__related_rooms--title {
    margin: 0;
  }
  .main__related_rooms--wrapper {
    display: flex;
    flex-direction: row;
  }
  .main__related_rooms--card {
    width: 33%;
  }
  .custom-button-prev--only_navigation, .custom-button-next--only_navigation {
    display: none;
  }
}

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