@import url("https://fonts.googleapis.com/css2?family=Jost&display=swap");

body {
  margin: 0;
  padding: 32px 40px;
}

.header {
  padding: 30px 0;
  padding-top: 0;
}

.booking-hero__wrap {
  position: relative;
  top: 60px;
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__mobile-btn {
  display: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.header__list {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.header__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__item:not(:last-child) {
  margin-right: 26px;
}

.header__link {
  text-decoration: none;
  font-weight: 400;
  font-size: 1.941747572815534vh;
  line-height: 24px;
  color: rgba(0, 0, 0, 1);
  font-family: Jost, serif;
}

.header__logo-img {
  width: 25.606796116504853vh;
  height: 7.524271844660194vh;
}

.header__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 24px;
  border-radius: 4px;
  border: none;
  font-weight: 600;
  font-family: 'Jost', serif;
  font-size: 16px;
  line-height: 24px;
  transition: 0.5s ease;
  background-color: #09301d;
  color: #fff;
}

.header__btn:hover {
  background-color: #fff;
  color: #09301d;
}

.header__btn:hover .header__btn-img {
  transform: rotate(30deg);
  filter: brightness(0) invert(1);
}

.header__btn-img {
  transition: 0.5s ease;
}

.header__modal {
  position: absolute;
  top: 30px;
  left: 60px;
  background-color: #fff d0;
  border-radius: 4px;
  display: none;
  padding: 15px;
  box-shadow: 0px 0px 8px 2px #341f0a 1A;
}

.header__modal.header__modal--active {
  display: block;
}

.header__modal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header__modal-item:not(:last-child) {
  margin-bottom: 5px;
}

.header__modal-link {
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #09301d;
  font-family: Jost, serif;
  transition: 0.5s ease;
}

.header__modal-link:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 1140px) {
  .header__list {
    gap: 0;
  }
}

@media only screen and (max-width: 850px) {
  .header__nav {
    display: none;
  }

  .header__mobile-btn {
    display: block;
  }

  .header__logo {
    display: none;
  }
}

@media only screen and (max-width: 450px) {
  .header {
    padding: 15px 0;
  }

  .header__btn {
    width: 188px;
    height: 44px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    padding: 10px;
    gap: 5px;
  }
}