@font-face {
  font-family: 'Montserrat-SemiBold';
  src: local('Montserrat-SemiBold'), url(/assets/fonts/Montserrat-SemiBold.ttf) format('truetype');
  font-weight: 600;
  font-style: normal
}

@font-face {
  font-family: 'Gilroy-Bold';
  src: local('Gilroy-Bold'), url(/assets/fonts/Gilroy-Bold.ttf) format('truetype');
  font-weight: 700;
  font-style: normal
}

@font-face {
  font-family: 'Gilroy-Medium';
  src: local('Gilroy-Medium'), url(/assets/fonts/Gilroy-Medium.ttf) format('truetype');
  font-weight: 500;
  font-style: normal
}

.banner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 604px;
  background-repeat: no-repeat;
  background-attachment: local !important;
  background-size: calc(100% + 20px) auto;
  font-family: 'Gilroy-Medium', arial;
  box-sizing: border-box;
  color: #000000;
}

.banner-info-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
}

.banner-info-block__text {
  padding: 40px;
}

.banner-info-block__date {
  color: #ff0000;
}

.banner-info-block__company,
.banner-info-block__price,
.banner-info-block__old {
  font-family: 'Gilroy-Bold', arial;
}

.banner-info-block__company {
  font-size: 18px;
}

.banner-info-block__price-wrapper,
.banner-info-block__old-price-wrapper {
  margin-top: 24px;
}

.banner-info-block__price-wrapper p,
.banner-info-block__old-price-wrapper p {
  margin-top: 0px;
  margin-bottom: 0px;
  line-height: normal;
}

.banner-info-block__price {
  font-size: 42px;
  color: #ff0000;
}

.banner-info-block__old-price {
  font-size: 28px;
}

.banner-info-block__ruble-thin {
  font-size: 34px;
  font-weight: unset;
}

.banner-info-block__ruble-min {
  font-size: 18px;
}

.banner-info-block__text h1 {
  position: relative;
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: 50px;
  font-weight: bold;
}

.banner-info-block__text h1::before {
  content: '% Акция';
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  top: -45px;
  width: 135px;
  height: 35px;
  background-image: url('/assets/images/arrow.svg');
  background-size: 135px 35px;
  font-family: 'Montserrat-SemiBold', arial;
  font-size: 18px;
  color: #fff;
}

.banner-image-block {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-attachment: local !important;
  background-size: cover;
}

.banner-image-block__image-wrapper {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -15vw;
  right: -9vw;
  width: 46vw;
  height: 46vw;
  max-width: 880px;
  max-height: 880px;
  background-color: #5dc3e5;
  border-radius: 100%;
}

.banner-image-block__image {
  position: absolute;
  bottom: 2vw;
  left: 7vw;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 35vw;
  height: 35vw;
  max-width: 680px;
  max-height: 680px;
  border-radius: 100%;
  object-fit: cover;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: none;
}

.carousel-indicators li {
  background-color: rgba(0, 0, 0, 0.5)
}

.carousel-indicators .active {
  background-color: #000;
}

@media (max-width: 1300px) {

  .banner {
    background-size: cover;
    background-position-x: 40% !important;
    background-position-y: -30px !important;
  }

  .banner-info-block__text {
    padding: 20px;
  }

}

@media (max-width: 1280px) {

  .banner {
    flex-direction: column;
    width: 100%;
    height: calc(100vh - 58px);
    background-position-x: 60% !important;
    background-position-y: -100px !important;
  }

  .banner-info-block {
    width: 100vw;
    height: 45vh;
    order: 1;
  }

  .banner-image-block {
    width: 100vw;
    height: 55vh;
    min-height: 450px;
    order: 0;
  }

  .banner-image-block__image-wrapper {
    top: -180px;
    left: unset;
    right: -100px;
    bottom: 26px;
    width: 600px;
    height: 600px;
  }

  .banner-image-block__image {
    left: 90px;
    bottom: 28px;
    width: 480px;
    height: 480px;
  }
}

@media (max-width: 800px) {

  .banner {
    width: 100%;
    background-position-x: 65% !important;
    background-position-y: -100px !important;
  }

  .banner-info-block {
    justify-content: flex-start;
    height: 50%;
  }

  .banner-info-block__company {
    font-size: 12px;
  }

  .banner-info-block__price-wrapper,
  .banner-info-block__old-price-wrapper {
    margin-top: 18px;
  }

  .banner-info-block__price-wrapper p,
  .banner-info-block__old-price-wrapper p {
    margin-top: 0px;
    margin-bottom: 0px;
    line-height: normal;
  }

  .banner-info-block__price {
    font-size: 36px;
    color: #ff0000;
  }

  .banner-info-block__old-price {
    font-size: 22px;
  }

  .banner-info-block__ruble-thin {
    font-size: 28px;
    font-weight: unset;
  }

  .banner-info-block__ruble-min {
    font-size: 12px;
  }

  .banner-info-block__text h1 {
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: bold;
  }

  .banner-info-block__text h1::before {
    content: '% Акция';
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    top: -45px;
    width: 135px;
    height: 35px;
    background-image: url('/assets/images/arrow.svg');
    background-size: 135px 35px;
    font-family: 'Montserrat-SemiBold', arial;
    font-size: 12px;
    color: #fff;
  }

  .banner-image-block {
    height: 50%;
    min-height: unset;
  }

  .banner-image-block__image-wrapper {
    top: -140px;
    left: unset;
    right: -85px;
    bottom: 26px;
    width: 420px;
    height: 420px;
  }

  .banner-image-block__image {
    left: 66px;
    bottom: 18px;
    width: 320px;
    height: 320px;
  }
}

@media (max-height: 768px) and (min-width: 1281px) {

  .banner {
    background-position-y: -50px;
  }

  .main-slider__wrapper {
    height: 540px !important;
  }

  .banner-image-block__image-wrapper {
    top: -18vw;
  }

}