.hero {
  margin-bottom: 30px;
  position: relative;
  z-index: 10;
  height:450px;
}

.hero__slider {
  height: 100%;
  overflow: hidden;
}

.grid-3{

  display: flex;
  flex-wrap: wrap;
  gap: 20px;

}

.grid-3 .grid-item {
  flex: 0 0 calc(33% - 30px);
}


.hero__slide-content {
  min-height: 620px;
  background: linear-gradient(121.1deg, rgba(51, 51, 51, 0.48) 7.37%, rgba(51, 51, 51, 0.18) 91.54%);
  max-width: 660px;
  display: flex;
  flex-direction: column;
  align-items: start;
  color: #fff;
  padding: 80px 56px 120px;
}

.hero__slide-content h1 {
  
  font-size: 45px;
  font-weight: 700;
  line-height: 47px;
  margin-bottom: 15px;
}

.hero__slide-content p {
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 30px;
}

.hero__button {
  min-width: 200px;
}

.hero__slider-pagination-wrapper {
  position: absolute;
  height: 100px;
  width: 100%;
  z-index: 20;
  bottom: 0;
  max-width: 1200px;
  margin: 0 auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.hero .swiper-pagination {
  bottom: 0 !important;
  height: 100%;
  bottom: auto;
  display: flex;
  justify-content: end;
  gap: 6px;
  padding: 0 20px;
}

.hero .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  flex: 0 0 10px;
  margin: 0 !important;
  display: block;
  background: #CECECE !important;
  border-radius: 50%;
  opacity: 1 !important;
}

.hero .swiper-pagination-bullet-active {
  background: #FFD300 !important;
}

.top-cruises__item-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: -webkit-transform 0.6s cubic-bezier(0.37, 0, 0.63, 1);
  transition: transform 0.6s cubic-bezier(0.37, 0, 0.63, 1);
  transition: transform 0.6s cubic-bezier(0.37, 0, 0.63, 1), -webkit-transform 0.6s cubic-bezier(0.37, 0, 0.63, 1);
  will-change: transform;
}

.top-cruises__item {
  color: #fff;
  min-height: 260px;
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
}

.top-cruises__item:hover .top-cruises__item-image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.top-cruises__item > div {
  padding: 14px 20px;
  background-color: rgba(51, 51, 51, 0.4509803922);
  display: flex;
  flex-direction: column;
  min-height: 100px;
  width: 100%;
}

.top-cruises__item h3 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 4px;
  font-weight: 700;
}

.promo-grid__wrap {
  display: flex;
  flex-direction: column;
}

.promo-grid .grid-2 {
  gap: 30px 40px;
}

.promo-grid__item {
  padding: 10px;
  padding-left: 120px;
  background-repeat: no-repeat;
  background-position: 0 10px;
  background-size: 100px 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2px;
  transition: all 0.3s ease 0s;
  min-height: 120px;
}

.promo-grid__item:hover {
  background-color: #E8E8E8;
}

.promo-grid__item h3 {
  font-size: 20px;
  line-height: 1.25;
  color: var(--colorBlue);
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.promo-grid__item h4 {
  font-weight: 700;
}

.promo-grid__item time {
  color: rgba(51, 51, 51, 0.7490196078);
  font-size: 14px;
  line-height: 1.21;
  font-weight: 400;
}

.promo-grid__item p {
  font-size: 14px;
  line-height: 1.21;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.promo-grid__item a {
  align-self: end;
}

.promo-grid .button {
  margin: 30px auto 0;
  min-width: 250px;
}

.home-filters {
  position: relative;
  margin-top: -80px;
  z-index: 20;
  margin-bottom: 50px;

}

.home-filters__form {
  padding: 0 15px;
  background-color: #fff;
  display: flex;
  gap: 30px;
  border-radius: 5px;
  width: 100%;
}

.home-filters__form .button {
  flex: 0 0 168px;
  min-width: 168px;
  height: 40px;
  background: #fdd853;
  border-radius: 13px;
  color: #000099;
  transition: all 0.3s ease;


}

.home-filters__items {
  flex: 1 1 auto;
  display: flex;
  gap: 14px;
}

.home-filters__item {
  flex: 1;
  height: 40px;
}

.home-filters__item_date {
  position: relative;
  cursor: pointer;
}

.home-filters__item_date input {
  width: 100%;
  height: 100%;
  padding-left: 14px;
  padding-right: 36px;
  border-radius: 5px;
  border: 1px solid var(--colorBlue);
  color: var(--colorBlue);
  font-size: 16px;
  font-family: "Calibri", sans-serif;
}

.home-filters__item_date::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url("/home/img/calendar.png") center/contain no-repeat;
  pointer-events: none;
}

.cruise-logo span {
  display: block;
  height: 60px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: relative;
}

.gallery-slider {
  position: relative;
  overflow: hidden;
}


.slider-btn {
  cursor: pointer;
  width: 24px;
  height:24px;
  position: absolute;
  z-index: 100;
  background-color:rgba(35, 35, 35, 0.11);
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.slider-btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("/upload/img/icons/chevron-right_w.svg") center/contain no-repeat;
}

.slider-btn-prev {
  left: -3px;
}

.slider-btn-prev::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.slider-btn-next {
  right: -3px;
}

.hero__slider .slider-btn-prev{
  left:5px;
}

.hero__slider .slider-btn-next{
  right: 5px;
}

@media (max-width: 1200px) {
  .hero .swiper-pagination {
    justify-content: center;
  }

  .home-filters__form {
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    gap: 20px;
    padding: 24px 56px;
  }

  .home-filters__form .button {
    flex: 1 1 auto;
    align-self: center;
  }

  .home-filters__items {
    flex-wrap: wrap;
    gap: 20px 16px;
  }

  .home-filters__item {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 998px) {
  .hero {
    margin-bottom: 150px;
  }

  .hero__slide-content {
    min-height: 800px;
    padding-top: 155px;
    padding-bottom: 270px;
    max-width: 530px;
  }

  .hero__slide-content h1 {
    font-size: 40px;
    line-height: 60px;
    margin-bottom: 12px;
  }

  .hero__slide-content p {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 40px;
  }

  .hero__slider-pagination-wrapper {
    height: 220px;
  }

  .home-filters {
    margin-top: -310px;
  }
}

@media (max-width: 768px) {
  .home-filters__form {
    max-width: 562px;
  }
}

@media (max-width: 576px) {
  
  .hero {
    margin-bottom: 110px;
  }

  .hero__slide-content {
    min-height: 670px;
    padding: 60px 32px 310px 16px;
    max-width: none;
    margin-left: -16px;
    width: calc(100% + 32px);
  }

  .hero__slide-content h1 {
    font-size: 35px;
    line-height: 44px;
  }

  .hero__slide-content p {
    font-size: 20px;
    line-height: 24.5px;
    margin-bottom: 30px;
  }

  .hero__slider-pagination-wrapper {
    height: 25px;
  }

  .hero .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    flex: 0 0 8px;
  }

  .top-cruises__item {
    min-height: auto;
    aspect-ratio: 1;
  }

  .top-cruises__item > div {
    padding: 8px;
    min-height: 75px;
  }

  .top-cruises__item h3 {
    font-size: 15px;
  }

  .top-cruises__item p {
    font-size: 13px;
  }

  .promo-grid__item {
    background-size: 77px;
    padding-left: 90px;
  }

  .promo-grid__item h3 {
    font-size: 16px;
  }

  .promo-grid__item h4 {
    font-size: 14px;
  }

  .promo-grid__item time {
    font-size: 12px;
  }

  .promo-grid__item p {
    font-size: 12px;
  }

  .home-filters {
    margin-top: -345px;
  }

  .home-filters__form {
    padding: 20px 28px;
    gap: 18px;
  }

  .home-filters__form .button {
    height: 35px;
    width: 100%;
  }

  .home-filters__items {
    gap: 10px;
  }

  .home-filters__item {
    flex: 0 0 100%;
    height: 35px;
  }

  .grid-4 .grid-item  {
      flex: 0 0 calc(50% - 10px);
  }

  .grid-3 .grid-item {
    flex: 0 0 calc(50% - 10px);
  }


}

.loader_svg{
  background:#fff;
  text-align:center;
  padding:25px;
  border-radius: 5px;
}

.loader_svg img{
  height:46px;
}
