html * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Corbel", sans-serif;
}
html main {
  position: relative;
}

.backTop {
  position: fixed;
  bottom: 10%;
  left: 3%;
  font-size: 30px;
  color: white;
  background-color: black;
  padding: 10px;
  border-radius: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: 0.4s ease-in-out;
}
@media (max-width: 768px) {
  .backTop {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

.backTop.hidden {
  transform: translateX(-200%) rotate(-90deg);
}

.page-image img {
  height: auto;
  max-width: 100%;
  width: auto;
}
.page-image--mobile {
  display: block;
}
@media (min-width: 768px) {
  .page-image--mobile {
    display: none;
  }
}
.page-image--desktop {
  display: none;
}
@media (min-width: 768px) {
  .page-image--desktop {
    display: block;
  }
}

.top-content {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 50px;
  max-width: 1600px;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
}
@media (max-width: 576px) {
  .top-content svg {
    transform: scale(0.8);
    height: 23px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .top-content {
    top: 25px;
  }
}
@media (max-width: 768px) {
  .top-content {
    flex-direction: column;
    top: 23vw;
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .top-content {
    gap: 10px;
  }
}
@media (max-width: 400px) {
  .top-content {
    top: 22vw;
    gap: 5px;
  }
}
.top-content__left ul {
  display: flex;
  gap: 35px;
  align-items: center;
}
.top-content__left ul li {
  color: white;
  font-size: 20px;
  list-style-type: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}
@media (min-width: 992px) {
  .top-content__left ul li::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 2px;
    background-color: white;
    content: "";
    transition: 0.4s;
  }
  .top-content__left ul li:hover::after {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .top-content__left ul {
    gap: 15px;
  }
  .top-content__left ul li {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .top-content__left ul {
    justify-content: center;
  }
  .top-content__left ul li {
    font-size: 18px;
  }
}
@media (max-width: 400px) {
  .top-content__left ul li {
    font-size: 15px;
  }
}
.top-content__right {
  display: flex;
  gap: 35px;
}
.top-content__right a {
  display: flex;
  gap: 20px;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 20px;
}
.top-content__right .wrapper {
  display: flex;
  gap: 15px;
}
@media (max-width: 768px) {
  .top-content__right .wrapper {
    gap: 15px;
  }
}
@media (max-width: 576px) {
  .top-content__right .wrapper {
    gap: 5px;
  }
}
@media (max-width: 768px) {
  .top-content__right {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .top-content__right {
    justify-content: center;
  }
  .top-content__right a {
    font-size: 14px;
  }
}
@media (max-width: 360px) {
  .top-content__right a {
    font-size: 12px;
  }
}

.booker {
  background-color: black;
  border-radius: 30px;
  position: fixed;
  bottom: 10%;
  right: 3%;
  padding: 10px 20px 15px 20px;
  transition: 0.6s ease-in-out;
}
.booker a {
  display: flex;
  gap: 20px;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 20px;
}
@media (max-width: 768px) {
  .booker a {
    font-size: 14px;
    gap: 10px;
  }
}

.booker.hidden {
  transform: translateX(120%);
}