@media screen and (min-width: 1201px) {
  .offer .container {
    width: 1200px;
    padding: 0;
  }
}

.offer {
  margin-top: 70px;
}

.offer-wrapper {
  background-image: url("/img/decoration.png");
  background-repeat: no-repeat;
  background-position: 83% 0;
  display: flex;
  flex-direction: column;
  gap: 30px;

  font-family: 'Montserrat', sans-serif;
  font-style: normal;
}

.offer-title {
  -webkit-text-stroke: 1px #000;
  text-transform: uppercase;
  color: transparent;
  font-weight: 900;
  font-size: 97px;
  line-height: 87.9%;
  /*text-align: center;*/
  margin: 0;

  position: relative;
  z-index: -1;
}

.offer-desc {
  display: block;
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  max-width: 477px;
}

.offer-caption {
  font-weight: 700;
  font-size: 36px;
  line-height: 43px;
  color: #303030;
  max-width: 570px;
}

.pink-wrapper {
  flex-grow: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 30px;
  padding: 50px 0 100px;
}

.pink-caption {
  font-weight: 400;
  font-size: 36px;
  line-height: 44px;
  max-width: 570px;
}

.pink-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: 100vw;
  height: 100%;
  background-color: #FFC5E4;
}

.pink-price {
  display: flex;
  column-gap: 50px;
  text-align: center;
  margin-top: 20px;
}

.price-item {
  display: flex;
  flex-direction: column;
  align-items: center;

  font-weight: 400;
  font-size: 36px;
  line-height: 44px;
  position: relative;
}

.price-item:first-of-type::before {
  content: '';
  position: absolute;
  background-color: #000;
  width: 1px;
  height: 100%;
  right: -25px;
  top: 0;
}

.price-item:last-of-type::before {
  content: '';
  position: absolute;
  background-image: url("/img/heart.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  width: 140px;
  height: 140px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.--bold {
  font-weight: 700;
}

.points-wrapper {
  max-width: 100vw;
  padding-bottom: 40px;

  position: relative;
  overflow: hidden;
}
.slider-points {
  margin-top: 100px;
  width: 100%;
}
.point-item {
  padding-bottom: 10px;
  padding-right: 5px;
  margin-right: 20px;
}
.point-wrapper {
  height: 160px;
  padding: 15px 15px 15px 25px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 9px 4px rgba(0, 0, 0, 0.25);
}
.point-item:last-of-type {
  margin-right: 0;
}
.point-caption {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.point-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
}
.point-caption img {

}
.point-desc {
  font-size: 16px;
  line-height: 140%;
}

.points__slider-control {
  position: absolute;
  left: 0;
  bottom: 5px;

  width: 100%;
  max-width: 100vw;
}
.points__slider-dots .slick-dots {
  bottom: -16px;
}
.points__slider-dots .slick-dots li button::before {
  content: none;
}
.points__slider-dots .slick-dots li button{
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  padding: 0;
}
.points__slider-dots .slick-dots .slick-active button {
  background-color: #0082FF;
}
.points__slider-control .slick-next {
  right: 30%;
}
.points__slider-control .slick-next.slick-arrow::before {
  content: '';
  display: block;
  opacity: 1;
  cursor: pointer;
  width: 30px;
  height: 30px;
  background-image: url(/img/landing/right_h.png);
  background-position: center;
  background-repeat: no-repeat;
}
.points__slider-control .slick-next.slick-arrow.slick-disabled::before {
  background-image: url(/img/landing/right.png);
}
.points__slider-control .slick-prev {
  left: 30%;
}
.points__slider-control .slick-prev.slick-arrow::before {
  content: '';
  display: block;
  opacity: 1;
  cursor: pointer;
  width: 30px;
  height: 30px;
  background-image: url(/img/landing/left_h.png);
  background-position: center;
  background-repeat: no-repeat;
}
.points__slider-control .slick-prev.slick-arrow.slick-disabled::before {
  background-image: url(/img/landing/left.png);
}

@media screen and (max-width: 1200px) {
  .slider-points {
    margin-right: -30px;
  }
}

@media screen and (max-width: 992px) {
  .offer-wrapper {
    position: relative;
    background-image: unset;
  }
  .offer-wrapper::after {
    content: '';
    position: absolute;
    z-index: -1;
    right: 5%;
    top: 10%;
    width: 610px;
    height: 570px;
    background-image: url(/img/decoration.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .offer-title {
    font-size: 97px;
    text-align: center;
  }
  .offer-desc {
    max-width: 352px;
    font-size: 20px;
    line-height: 24px;
  }
  .offer-caption {
    max-width: 317px;
    font-size: 20px;
    line-height: 24px;
  }
  .pink-caption {
    max-width: 352px;
  }
  .price-item{
    font-size: 24px;
    line-height: 29px;
  }
}

@media screen and (max-width: 640px) {
  .points-wrapper {
    margin: 0 -15px;
  }

  .offer-title {
    font-size: 67px;
  }

  .offer-wrapper::after {
    right: 70%;
    top: 5%;
    transform: translateX(50%);
    width: 394px;
    height: 378px;
  }
  .offer-title {
    font-size: 52px;
    margin-bottom: 280px;
  }
  .offer-desc,
  .offer-caption {
    max-width: 100%;
    text-align: center;
    font-size: 20px;
    line-height: 24px;
  }
  .pink-wrapper {
    padding-top: 24px;
    padding-bottom: 74px;
  }
  .pink-price {
    margin-top: 0;
    flex-direction: column;
    row-gap: 50px;
  }
  .pink-caption {
    display: none;
  }
  .price-item .--bold {
    font-size: 32px;
    line-height: 39px;
  }
  .slider-points {
    margin-top: 50px;
  }
}
