.destinations {
  padding: 4.375rem 0 3.9375rem;
  background: var(--gray-background);
}
.destinations__title {
  margin-bottom: 3.75rem;
}
.destinations__slider {
  position: relative;
  display: none;
}
.destinations__slider .swiper {
  width: 100%;
}
.destinations__slider-nav {
  position: absolute;
  right: 0;
  bottom: -2.25rem;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.destinations__slider-nav .swiper-pagination {
  position: static;
  margin: 0 1.875rem;
  line-height: 0;
}
.destinations__tab-btns {
  margin-top: 2.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.destinations__tab-btns > *:not(:last-child) {
  margin-right: 0.9375rem;
}
.destinations__tab-btn {
  -webkit-box-shadow: 0 2px 12px 0 rgba(105, 122, 143, 0.06);
  box-shadow: 0 2px 12px 0 rgba(105, 122, 143, 0.06);
  background: var(--white);
  color: var(--text-gray-middle);
  padding: 0.625rem 1.25rem;
  line-height: 135%;
  border-radius: 2.375rem;
  -webkit-transition: color var(--hover-transition), background-color var(--hover-transition);
  transition: color var(--hover-transition), background-color var(--hover-transition);
}
.destinations__tab-btn.is-active {
  background: var(--orange-primary);
  color: var(--white);
  pointer-events: none;
}
@media (any-hover: hover) {
  .destinations__tab-btn:hover {
    background: var(--orange-primary);
    color: var(--white);
  }
}
.destinations-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
}
.destinations-card__img {
  position: relative;
  line-height: 0;
}
.destinations-card__img > img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.destinations-card__img::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 112.1%;
}
.destinations-card__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 1.25rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: var(--white);
  z-index: 1;
}
.destinations-card__city {
  font-weight: 500;
  font-size: max(1.25rem, 12px);
  line-height: 135%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.destinations-card__city::before {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.3125rem;
  background-image: url('data:image/svg+xml,%3Csvg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0_73_960)"%3E%3Cpath d="M15.3033 13.9144L10 19.2177L4.69667 13.9144C3.64779 12.8655 2.93349 11.5291 2.64411 10.0743C2.35473 8.6194 2.50326 7.11141 3.07092 5.74097C3.63858 4.37053 4.59987 3.19919 5.83324 2.37509C7.0666 1.55098 8.51665 1.11111 10 1.11111C11.4834 1.11111 12.9334 1.55098 14.1668 2.37509C15.4001 3.19919 16.3614 4.37053 16.9291 5.74097C17.4967 7.11141 17.6453 8.6194 17.3559 10.0743C17.0665 11.5291 16.3522 12.8655 15.3033 13.9144ZM10 10.2777C10.442 10.2777 10.866 10.1021 11.1785 9.78956C11.4911 9.477 11.6667 9.05308 11.6667 8.61105C11.6667 8.16902 11.4911 7.7451 11.1785 7.43254C10.866 7.11998 10.442 6.94438 10 6.94438C9.55797 6.94438 9.13405 7.11998 8.82149 7.43254C8.50893 7.7451 8.33334 8.16902 8.33334 8.61105C8.33334 9.05308 8.50893 9.477 8.82149 9.78956C9.13405 10.1021 9.55797 10.2777 10 10.2777Z" fill="%23FDB000" /%3E%3C/g%3E%3Cdefs%3E%3CclipPath id="clip0_73_960"%3E%3Crect width="20" height="20" fill="white" /%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.destinations-card__price {
  font-weight: 400;
}
.destinations-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(52.49%, rgba(43, 42, 48, 0)), to(#23252e));
  background: linear-gradient(180deg, rgba(43, 42, 48, 0) 52.49%, #23252e 100%);
}
@media (max-width: 768px) {
  .destinations {
    padding: 40px 0 32px;
  }
  .destinations .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .destinations__title {
    margin-bottom: 30px;
  }
  .destinations-card__city {
    font-weight: 600;
    font-size: 16px;
  }
  .destinations-card__city::before {
    margin-right: 6px;
  }
  .destinations__slider {
    margin-top: 22px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .destinations__slider-nav {
    margin: 24px auto 0;
    position: relative;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    bottom: unset;
  }
  .destinations__slider-btns > :not(:last-child) {
    margin-right: 9px;
  }
  .destinations__tab-btns {
    margin-top: 0;
  }
  .destinations-card {
    border-radius: 16px;
  }
  .destinations-card:not(:last-child) {
    margin-bottom: 14px;
  }
  .destinations-card__img::before {
    padding-top: 36.2%;
  }
  .destinations-card__bottom {
    padding: 0 20px 18px;
  }
  .destinations__wrapper {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
/*# sourceMappingURL=destinations.css.map */
/*# sourceMappingURL=destinations.css.map */