.offers-slider .slick-track {
  display: flex !important;
  align-items: stretch;
}
.offers-slider__slide {
  position: relative;
  display: grid !important;
  place-items: center;
  isolation: isolate;
  height: auto !important;
}
@media only screen and (min-width: 1200px) {
  .offers-slider__slide {
    justify-items: start;
    align-items: center;
    min-height: 35rem;
  }
}
.offers-slider__slide > * {
  grid-area: 1/1;
}
.offers-slider__slide::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(16, 61, 90) 0%, rgba(16, 61, 90, 0.7) 60%, rgba(16, 61, 90, 0) 100%);
}
@media only screen and (min-width: 1200px) {
  .offers-slider__slide::after {
    background: linear-gradient(to right, rgb(16, 61, 90) 0%, rgba(16, 61, 90, 0.7) 60%, rgba(16, 61, 90, 0) 100%);
  }
}
.offers-slider__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 1200px) {
  .offers-slider__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
}
.offers-slider__title {
  color: white;
  font-size: clamp(2.25rem, 1.714rem + 1.429vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  padding: 2rem 3rem;
  padding-top: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.offers-slider__info {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  text-align: center;
  color: white;
  padding: 4rem 1rem;
  padding-bottom: 8rem;
  width: 80%;
  max-width: 45rem;
}
@media only screen and (min-width: 1200px) {
  .offers-slider__info {
    max-width: 65%;
    padding: 4rem 8rem;
  }
}
.offers-slider__info p {
  font-size: clamp(1.25rem, 0.857rem + 1.048vw, 1.8rem);
  line-height: 1.2;
  margin: 0;
}
.offers-slider__info a {
  width: 80%;
  max-width: 20rem;
}
.offers-slider .slick-arrow {
  position: absolute;
  z-index: 2;
  bottom: 4rem;
  right: 4rem;
  width: 3rem;
  height: 3rem;
  border-radius: 0;
  border: none;
  background: rgba(0, 132, 208, 0.8) url(../img/arrow-right-white.svg) no-repeat center;
  background-size: 35%;
  text-indent: -9999px;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
}
.offers-slider .slick-arrow.slick-prev {
  right: 8.5rem;
  background: rgba(0, 132, 208, 0.8) url(../img/arrow-left-white.svg) no-repeat center;
  background-size: 35%;
}
@media (hover: hover) and (pointer: fine) {
  .offers-slider .slick-arrow:hover, .offers-slider .slick-arrow:focus {
    opacity: 0.5;
  }
}
.offers-slider .slick-dots {
  position: absolute;
  bottom: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100vw;
}
.offers-slider .slick-dots li button {
  width: 1.5rem;
  height: 1.5rem;
  text-indent: -9999px;
  border-radius: 50%;
  border: 2px solid white;
  background: rgba(0, 132, 208, 0.8);
  margin: 0;
  padding: 0;
}
.offers-slider .slick-dots li.slick-active button {
  background: white;
}
