html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

main {
  flex: 1;
}

.promo {
  max-width: 1210px;
  margin: 30px auto;
  position: relative;
}
@media (max-width: 568px) {
  .promo {
    margin: 15px -5px 30px;
  }
}
.promo__back {
  position: absolute;
  left: 0;
  top: 8px;
}
.promo__title {
  font-size: 26px;
  font-weight: 600;
  line-height: 50px;
  text-align: center;
  color: #f60;
  margin: 0 0 20px;
}
@media (max-width: 568px) {
  .promo__title {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 30px;
  }
}
.promo__filter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}
@media (max-width: 568px) {
  .promo__filter {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.promo__filter-title {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #464646;
}
.promo__filter-list {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 568px) {
  .promo__filter-list {
    gap: 10px;
  }
}
.promo__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (max-width: 568px) {
  .promo__list {
    margin-bottom: 50px;
  }
}

.page-back {
  display: block;
  width: 19px;
  height: 34px;
  background: url(/assets/i/images/arrow-back.svg) center no-repeat;
}
@media (max-width: 568px) {
  .page-back {
    width: 30px;
    height: 30px;
    background-size: contain;
  }
}

.filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ff732d;
  border-radius: 25px;
  padding: 0 11px;
  min-width: 123px;
  height: 30px;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #464646;
}
@media (max-width: 568px) {
  .filter-button {
    min-width: 0;
    padding: 0 15px;
    font-size: 12px;
  }
}
.filter-button:hover {
  text-decoration: none;
}
.filter-button:hover, .filter-button.active {
  color: #fff;
  box-shadow: 0 0 7px 2px rgba(0, 0, 0, 0.15);
  background: linear-gradient(90deg, #f60 0%, #ff1572 100%);
}

.promo-card {
  display: flex;
  min-height: 330px;
  border-radius: 8px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #ddd;
  overflow: hidden;
  text-decoration: none;
  transition: 0.2s;
}
@media (max-width: 992px) {
  .promo-card {
    flex-direction: column;
  }
}
.promo-card__cover {
  width: 540px;
  padding: 0;
  margin: 0;
  border-right: 5px solid #ff732d;
}
@media (max-width: 1200px) {
  .promo-card__cover {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .promo-card__cover {
    width: 100%;
    border-right: none;
    border-bottom: 5px solid #ff732d;
  }
}

.promo-card__cover .img_desc {display: block !important;}
.promo-card__cover .img_mob {display:none !important;}

@media (max-width: 768px) {
  .promo-card__cover .img_desc {display: none !important;}
  .promo-card__cover .img_mob {display:block !important;}
  .promo-card__cover {
    height: 315px;
  }
}
.promo-card__cover img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.promo-card__wrap {
  flex: 1;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  text-align: left;
  padding: 10px 20px 10px 74px;
}
@media (max-width: 1200px) {
  .promo-card__wrap {
    padding: 10px 70px 10px 30px;
  }
}
@media (max-width: 568px) {
  .promo-card__wrap {
    padding: 10px 12px 80px;
  }
}
.promo-card__wrap::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  background-color: rgba(255, 115, 45, 0.47);
  background-image: url(/assets/i/images/more-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: 0.3s;
}
/*.promo-card._bg1 .promo-card__wrap {
  background-image: url(/assets/i/images/promo-card-bg-1.png);
}
.promo-card._bg2 .promo-card__wrap {
  background-image: url(/assets/i/images/promo-card-bg-2.png);
}
.promo-card._bg3 .promo-card__wrap {
  background-image: url(/assets/i/images/promo-card-bg-3.png);
}*/
.promo-card:hover {
  box-shadow: 0px 0px 17.1px 6px rgba(0, 0, 0, 0.2509803922);
  text-decoration: none;
}
.promo-card:hover .promo-card__wrap::after {
  background-color: #F32F2F;
}
.promo-card__sale {
  font-weight: 500;
  font-size: 96px;
  color: #ffe6d9;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: -5px;
}
@media (max-width: 568px) {
  .promo-card__sale {
    font-size: 65px;
  }
}
.promo-card__title {
  font-weight: 500;
  font-size: 32px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
  margin-bottom: 10px;
}
@media (max-width: 568px) {
  .promo-card__title {
    font-size: 24px;
  }
}
.promo-card__descr {
  font-weight: 400;
  font-size: 16px;
  max-width: 500px;
}
.promo-card__descr ul,
.promo-card__descr p {
  font-size: 15px;
  line-height: 1.4;
  margin: 0 0 15px;
}
.promo-card__descr ul:last-child,
.promo-card__descr p:last-child {
  margin-bottom: 0;
}
.promo-card__descr strong, .promo-card__descr b {
  font-weight: 500;
}

.promo-page {
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.25);
  text-decoration: none;
  border-radius: 50px;
  position: relative;
}
@media (max-width: 568px) {
  .promo-page {
    border-radius: 8px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  }
}
.promo-page__cover {
  height: 450px;
  padding: 0;
  margin: 0;
  border-bottom: 5px solid #ff732d;
  border-radius: 50px 50px 8px 8px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.promotions_item .img_desc {display:block;}
.promotions_item .img_mob {display:none;}

.promo-page__cover .img_desc {display:block;}
.promo-page__cover .img_mob {display:none;}


@media (max-width: 768px) {
  .promo-page__cover .img_desc {display:none;}
  .promo-page__cover .img_mob {display:block;}
  .promo-page__cover {
    height: 315px;
    border-radius: 8px 8px 0 0;
    box-shadow: none;
  }
}
.promo-page__cover img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.promo-page__wrap {
  display: flex;
  justify-content: center;
  padding: 60px 20px 50px 20px;
  background: #ffd5c0;
  border-radius: 0 0 50px 50px;
  margin-top: -10px;
}
@media (max-width: 1200px) {
  .promo-page__wrap {
    padding: 60px 50px 50px 50px;
    justify-content: flex-start;
  }
}
@media (max-width: 568px) {
  .promo-page__wrap {
    padding: 20px;
    margin: 0;
    border-radius: 0 0 8px 8px;
  }
}
.promo-page__sale {
  position: absolute;
  z-index: 5;
  left: -17px;
  top: 30px;
  width: 293px;
  height: 140px;
  display: flex;
  align-items: flex-end;
  padding: 0 0 5px 20px;
  font-weight: 600;
  font-size: 90px;
  color: #fff;
  background: url(/assets/i/images/sale-label.svg) center no-repeat;
}
@media (max-width: 568px) {
  .promo-page__sale {
    left: -9px;
    top: 12px;
    font-size: 24px;
    width: 94px;
    height: 42px;
    padding: 0 0 4px 15px;
    background-image: url(/assets/i/images/sale-label-mob.svg);
  }
}
.promo-page__descr {
  font-weight: 400;
  font-size: 16px;
  max-width: 820px;
  margin-left: 100px;
  padding-left: 15px;
  border-left: 5px solid #fff;
  color: #5A5D62;
  text-align: left;
}
@media (max-width: 1200px) {
  .promo-page__descr {
    max-width: 100%;
    border: none;
    margin: 0;
    padding-left: 0;
  }
}
.promo-page__descr ul,
.promo-page__descr p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0 0 15px;
}
.promo-page__descr ul:last-child,
.promo-page__descr p:last-child {
  margin-bottom: 0;
}
.promo-page__descr ul small,
.promo-page__descr p small {
  display: block;
}
.promo-page__descr ul small a,
.promo-page__descr p small a {
  color: #5A5D62;
}
.promo-page__descr ul small a:hover,
.promo-page__descr p small a:hover {
  text-decoration: none;
}
.promo-page__descr strong, .promo-page__descr b {
  font-weight: 500;
}

@media (min-width: 992px) {
  .show-mobile {
    display: none;
  }
}

.nowrap {
  white-space: nowrap;
}/*# sourceMappingURL=promo-style.css.map */