body {
  background: rgb(232, 234, 239);
}

.hero-hotel {
  background-image: url("../img/hotel-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;

  position: relative;
  margin-bottom: 0;
  padding: 60px;
  isolation: isolate;
}

.hero-hotel::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: #120b32;
  opacity: 0.5;
}

.hero-hotel>h2 {
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
}

@keyframes pushUp {
  from {
    transform: translateY(80px);
    /* Initial position pushed down */
  }

  to {
    transform: translateY(0);
    /* Final position at normal height */
  }
}

.hero-hotel>h1 {
  color: #fff;
  font-family: "KorolevBold", Sans-serif;
  font-size: 55px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3em;
  letter-spacing: 0;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.76);
  text-align: center;
  animation: pushUp 1.5s ease-out;
}

.icons-flex {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.icons-flex i {
  width: 1em;
  height: 1em;
  font-size: 25px;
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  color: #fff;
}

.icons-flex i:hover {
  color: #1b325f;
}

.hotels-wrapper {
  display: flex;
  gap: 1rem;
  position: relative;
  max-width: 1200px;
  margin-top: 3rem;
}

.hotels-wrapper i {
  height: 50px;
  width: 50px;
  color: #fff;
  text-align: center;
  font-size: 2.25rem;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
}

.hotels-wrapper i:first-child {
  left: -35px;
}

.hotels-wrapper i:last-child {
  right: -35px;
}

.hotels-wrapper .carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 4) - 16px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel.no-transition {
  scroll-behavior: auto;
}

.carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.carousel.dragging .card {
  cursor: grab;
  user-select: none;
}

.carousel .card {
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  height: 100%;
  list-style: none;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.pagination i {
  cursor: pointer;
  font-size: 1em;
  margin: 0 5px;
  color: #333;
}
.pagination .active {
  color: #ccc;
}

.bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 5px;
  cursor: pointer;
}

.bullet.active {
  background-color: black;
}

.text {
  text-align: center;
  color: #120b32;
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
}

.dashed-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  border: #7b1222 dashed;
  border-radius: 20px;
  width: 80%;
  margin-inline: auto;
  padding: 2rem;
  background-color: #f8f8f8;
}

.header-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.header-text h3 {
  font-family: "KorolevBold", Sans-serif;
  font-size: 20px;
  text-align: center;
  color: #120b32;
}

.dashed-box h2 {
  color: #7b1222;
  font-family: "KorolevBold", Sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  padding-inline: 1rem;
}

.divider-wrapper {
  width: 90%;
  margin-inline: auto;
  margin-block: 1rem;
}

.divider {
  display: flex;
  align-items: center;
  position: relative;
  gap: 1rem;
}

.line {
  width: 100%;
  position: relative;
  margin-right: 5px;
  border-bottom: 1px black solid;
}

.line-db {
  width: 100%;
  position: relative;
  margin-right: 5px;
  border-bottom: 2px #120b32 solid;
}

.line-white {
  width: 100%;
  position: relative;
  margin-right: 5px;
  border-bottom: 2px #ffff solid;
}

.star {
  width: 1em;
  height: 1em;
  font-weight: 900;
  font-size: 20px;
  text-align: center;
  line-height: 1;
  color: #1b325f;
}

.star-db {
  width: 1em;
  height: 1em;
  font-weight: 900;
  font-size: 20px;
  text-align: center;
  line-height: 1;
  color: #120b32;
}

h3>span {
  text-align: center;
  color: #120b32;
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0px;
}

.deadline-text {
  color: #7b1222;
  font-size: 20px;
  line-height: 1.2em;
  font-weight: 400;
  text-transform: none;
}

.box-flex {
  display: flex;
  justify-content: center;
  gap: 2rem;
  width: 80%;
  margin-inline: auto;
}

.box-flex>* {
  flex: 1 1 49%;
  min-width: 30ch;
}

.whitebox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  margin-block: 2rem;
  text-align: center;
}

.whitebox>i {
  width: 1em;
  height: 1em;
  position: relative;
  display: block;
  font-weight: 900;
  line-height: 1;
  color: #1b325f;
  font-size: 50px;
  text-align: center;
}

.whitebox h3 {
  font-family: "KorolevBold", Sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.whitebox p {
  color: #1b325f;
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
}

.btn-bookhotel {
  padding: 10px 20px;
  font-family: "KorolevBold", Sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background-color: #1b325f;
  color: white;
  cursor: pointer;
  border: none;
}

.btn-bookhotel:hover {
  background-color: #7b1222;
}

.btn-accomodation {
  padding: 10px 20px;
  font-family: "KorolevBold", Sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background-color: #7b1222;
  color: white;
  cursor: pointer;
  border: none;
}

.btn-accomodation:hover {
  background-color: #1b325f;
}

.accommodation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blackbox {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background-color: black;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.blackbox>h2 {
  color: #fff;
  font-family: "KorolevBold", Sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blackbox p {
  color: #ffff;
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
  text-align: left;
}

.divider-small {
  width: 30%;
  margin-block: 1rem;
}

.box-red {
  background: #e79fb1;
  border-radius: 0;
  padding: 1rem;
}

.addons-flex {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: #120b32;
  font-family: "RobotoCondensed", sans-serif;
  font-size: 16px;
}

.addons-flex i {
  font-size: 35px;
}

.text-parking {
  text-align: left;
  color: #120b32;
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 16px;
}

.text-parking ul {
  margin-left: 3rem;
}

.policy {
  text-align: left;
  width: 80%;
  margin-inline: auto;
}

.text a {
  color: #b53253;
  text-decoration: none;
}

.text a:hover {
  color: #0693e3;
}

@media (width <=900px) {
  .box-flex {
    flex-direction: column;
    gap: 0.5rem;
  }

  .whitebox,
  .blackbox,
  .box {
    width: 100%;
  }

  .text {
    margin-inline: 16px;
  }
}

@media (width <=600px) {
  .hotels-wrapper {
    display: none;
  }
  .pagination {
    display: none;
  }
}
