/* Стили для страницы dress-clinic */
/* Скопировано с tezis-shop.ru */

/* Основные стили для страницы selection/dress-clinic */
.main__selection {
    padding: 0 40px 81px;
    max-width: 1520px;
    margin: 0 auto;
}

.main_content h2 {
    text-transform: none;
}

@media (max-width: 1199px) {
    .main__selection {
        padding: 0 20px 52px;
    }
}

.selection {
    display: flex;
    flex-direction: column;
}

.selection__head {
    margin-bottom: 81px;
}

@media (max-width: 1199px) {
    .selection__head {
        margin-bottom: 40px;
    }
}

.selection__section-item:not(:last-child) {
    margin-bottom: 81px;
}

@media (max-width: 1199px) {
    .selection__section-item:not(:last-child) {
        margin-bottom: 40px;
    }
}

.selection__section-item--short {
    width: 100%;
    margin: 0 auto;

}

@media (max-width: 1199px) {
    .selection__section-item--short {
        padding-right: 0;
        padding-left: 0;
    }
}

.selection__title {
    margin-top: 0;
    margin-bottom: 46px;
    font-size: 35px;
    font-weight: 500;
    line-height: 42px;
    text-align: start;
}

.selection__title .no-mobile {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

@media (max-width: 1199px) {
    .selection__title {
        margin-bottom: 16px;
        font-size: 28px;
    }
}

.selection__list {
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 342px));
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    margin: 30px 0 0;
    justify-content: center;
}

@media (max-width: 1199px) {
    .selection__list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        justify-content: stretch;
    }
}

@media (min-width: 1000px) and (max-width: 1199px) {
    .selection__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
    }
}

@media (max-width: 767px) {
    .selection__list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.selection__img-box {
    display: flex;
    margin-bottom: 31px;
}

@media (max-width: 1199px) {
    .selection__img-box {
        margin-bottom: 12px;
    }
}

.selection__img {
    width: 100%;
    height: 100%;
    max-height: 274px;
    object-fit: cover;
    border-bottom: 4px solid #715399;
}

@media (max-width: 1199px) {
    .selection__img {
        max-height: 159px;
        object-position: top;
    }
}

.selection__subtitle {
    margin-top: 0;
    margin-bottom: 7px;
    font-weight: 400;
    font-size: 25px;
    line-height: 1.4;
    color: #715399;
}

@media (max-width: 1199px) {
    .selection__subtitle {
        font-size: 17px;
    }
}

.selection__text {
    font-size: 19px;
    line-height: 1.3;
}

@media (max-width: 1199px) {
    .selection__text {
        font-size: 13px;
    }
}

.selection__item {
    max-width: 342px;
    width: 100%;
}

/* Head styles */
.head--selection {
    display: grid;
    grid-template-columns: 100% 1fr;
    color: #000;
    background-color: #e5e5e5;
    position: relative;
    background-image: url(/upload/dress-clinic/head/head-selection.jpg);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

@media (min-width: 1200px) {
    .head--selection {
        grid-template-columns: 504px 616px;
    }
}

@media (min-width: 1400px) {
    .head--selection {
        height: 466px;
    }
}

.head__content {
    z-index: 1;
    grid-column: 1;
    grid-row: 1;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 1399px) {
    .head__content {
        padding-top: 40px;
        padding-bottom: 50px;
        padding-left: 50px;
    }
}

@media (max-width: 1199px) {
    .head__content {
        padding: 40px 10px 125px;
    }
}

.head__title {
    font-weight: 600;
    font-size: 28px;
    text-transform: uppercase;
    line-height: 1.1;
}

@media (max-width: 1399px) {
    .head__title {
        margin-bottom: 20px;
        font-size: 27px;
    }
}

@media (max-width: 1199px) {
    .head__title {
        margin-bottom: 20px;
    }

    .head__title,
    .head__title--size-36 {
        font-size: 20px;
    }
}

.head__text {
    font-size: 19px;
    line-height: 1.3;
}

/* Button styles */
.button {
    display: inline-block;
    width: -moz-max-content;
    width: max-content;
    min-height: auto;
    padding: 15px 34px 17px;
    font-weight: 500;
    font-size: 19px;
    line-height: 1.42;
    color: #fff;
    white-space: nowrap;
    background-color: #000;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    z-index: 0;
    overflow: hidden;
    outline: 0;
    transition: all .3s ease-in;
    border: none;
}

.button--purple {
    background-color: #715399;
    border-radius: 30px;
}

.button--fit-content {
    width: auto;
}

@media (min-width: 1200px) {
    .button--purple::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        width: 300%;
        height: 100%;
        background: linear-gradient(90deg, #715399 20%, #a36bdc);
        transition: transform .3s ease-in;
        transform: translateX(-100%);
    }

    .button--purple:hover::before {
        transform: translateX(0);
    }
}

.button:hover {
    color: #fff;
    text-decoration: none;
}

.head__picture--selection {
    display: none;
}

@media (max-width: 1199px) {
    .head--selection {
        background-image: url(/upload/dress-clinic/head/head-selection-tab.jpg);
    }
}

@media (max-width: 767px) {
    .head--selection {
        background-image: url(/upload/dress-clinic/head/head-selection-mob.jpg);
    }
}

/* Application styles */
.application {
    position: relative;
    padding-top: 70px;
    padding-bottom: 90px;
    background-color: #f3edfb;
}

.application--selection {
    background-color: #e4e9ec;
}

.application__bg {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-position: right;
}

.application--selection .application__bg {
    object-position: 0;
}

.application__bg,
.application__bg--cover {
    object-fit: cover;
}

/* Description styles */
.description__title {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 35px;
    font-weight: 500;
    line-height: 42px;
    text-align: start;
}

.description__text {
    font-size: 19px;
    line-height: 1.3;
    margin-bottom: 16px;
}

.description__text * {
    font-size: 19px;
    line-height: 1.3;
}

/* Shipment contacts styles */
.shipment.contacts {
    max-width: 100%;
}

.shipment__spb--selection {
    padding: 50px 0 50px 60px;
    margin: 0 0 95px;
}

.contacts__title--shipment {
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: start;
    line-height: 1.1;
}

.contacts__description--shipment {
    font-size: 19px;
    line-height: 1.3;
    margin-bottom: 0;
    max-width: 820px;
}

@media (max-width: 1199px) {
    .shipment.contacts {
        width: 100%;
        padding: 0 20px;
    }

    .shipment__spb--selection {
        padding: 40px 20px 60px;
        margin: 0 0 60px;
    }

    .contacts__title--shipment {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .shipment__spb--selection {
        padding: 30px 15px 50px;
        margin: 0 0 40px;
    }

    .contacts__title--shipment {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .contacts__description--shipment {
        font-size: 13px;
    }
    .shipment.contacts {
        padding: 0;
    }
}

/* FAQ styles */
.faq__list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    gap: 27px;
}

.faq__item {
    padding: 0;
    margin: 0;
}

.faq__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 27px 43px 27px 40px;
    cursor: pointer;
    background-color: #f5f5f5;
    transition: background-color 0.3s ease;
}

.faq__head:hover {
    background-color: #eeeeee;
}

.faq__head.active {
    background-color: #e5e5e5;
}

.faq__question {
    font-size: 25px;
    font-weight: 400;
    line-height: 35px;
    color: #000;
    margin: 0;
    padding: 0;
    flex: 1;
}

.faq__content {
    padding: 0 40px;
    background-color: #f5f5f5;
}

.faq__answer {
    font-size: 19px;
    line-height: 1.3;
    color: #000;
    margin: 0;
    padding: 0 0 36px;
}

.faq__answer .link {
    color: #715399;
    text-decoration: underline;
    font-size: 19px;
}

.faq__answer .link:hover {
    text-decoration: none;
}

.arrow-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.arrow-button--faq {
    width: 14px;
    height: 25px;
}

.arrow-button__icon {
    width: 100%;
    height: 100%;
    fill: #715399;
}

.faq__head.active .arrow-button {
    transform: rotate(180deg);
}

@media (max-width: 1199px) {
    .faq__head {
        padding: 20px 25px;
    }

    .faq__question {
        font-size: 20px;
        line-height: 28px;
    }

    .faq__content {
        padding: 0 25px;
    }

    .faq__answer {
        font-size: 16px;
        padding: 0 0 25px;
    }
}

@media (max-width: 767px) {
    .faq__head {
        padding: 15px 20px;
    }

    .faq__question {
        font-size: 18px;
        line-height: 25px;
    }

    .faq__content {
        padding: 0 20px;
    }

    .faq__answer {
        font-size: 14px;
        padding: 0 0 20px;
    }

    .arrow-button--faq {
        width: 12px;
        height: 20px;
    }
}

/* Reviews styles */
.selection__reviews {
    margin-bottom: 81px;
}

.reviews__title {
    font-size: 35px;
    font-weight: 500;
    line-height: 42px;
    margin-bottom: 0;
}

.reviews__link {
    font-size: 25px;
    color: #715399;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.reviews__link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.reviews__item {
    padding: 43px 64px 31px 52px;
    flex-shrink: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.reviews__logo {
    width: 260px;
    height: 104px;
    margin-bottom: 17px;
    object-fit: contain;
}

.reviews__quote {
    margin: 0;
}

.reviews__author-name {
    font-size: 19px;
    font-weight: 500;
    line-height: 1.4;
    color: #000;
    margin-bottom: 5px;
}

.reviews__author-position {
    font-size: 16px;
    line-height: 1.4;
    color: #888;
}

.reviews__text {
    font-size: 19px;
    line-height: 1.3;
    color: #000;
    margin: 0;
}

.reviews__slider-container, .selection__slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.reviews__slider-wrapper, .selection__slider-wrapper {
    position: relative;
    flex: 1;
    max-width: 100%;
    overflow: hidden;
}

.reviews__wrapper {
    flex: 1;
    max-width: 100%;
    overflow: hidden;
    width: 100%;
}

.reviews__list {
    display: flex;
}

.reviews__wrapper .swiper-slide {
    width: calc(50% - 13px);
    max-width: none;
    flex-shrink: 0;
}

@media (max-width: 1199px) {
    .reviews__wrapper .swiper-slide {
        width: 100%;
        max-width: calc(100% - 110px);
    }
}

@media (max-width: 767px) {
    .reviews__wrapper .swiper-slide {
        width: 100%;
        max-width: calc(100% - 80px);
    }
}

.reviews__navigation {
    display: none;
}

.reviews__button {
    width: 50px;
    height: 50px;
    /*border-radius: 50%;*/
    background-color: #715399;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
    cursor: pointer;
    border: none;
    padding: 0;
}

.reviews__button:hover {
    background-color: #5a4280;
}

.reviews__button {
    color: #fff;
}

.reviews__button svg,
.reviews__button .arrow-button__icon {
    width: 14px;
    height: 25px;
    display: block;
    flex-shrink: 0;
    color: #fff;
}

.reviews__button svg path {
    stroke: #fff;
    fill: none;
}

.reviews__button--prev {
    transform: rotate(180deg);
    flex-shrink: 0;
}

.reviews__button--next {
    flex-shrink: 0;
}

@media (max-width: 1199px) {
    .selection__reviews {
        margin-bottom: 40px;
    }

    .reviews__head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .reviews__title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .reviews__link {
        font-size: 20px;
    }

    .reviews__item {
        padding: 30px 40px 25px;
    }

    .reviews__logo {
        width: 200px;
        height: 80px;
        margin-bottom: 15px;
    }

    .reviews__author-name {
        font-size: 17px;
    }

    .reviews__text {
        font-size: 16px;
    }

    .reviews__button {
        width: 40px;
        height: 40px;
    }

    .reviews__slider-container, .selection__slider-container {
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .reviews__head {
        margin-bottom: 20px;
    }

    .reviews__title {
        font-size: 20px;
        margin-bottom: 15px;
        line-height: 23.6px;
    }

    .reviews__link {
        font-size: 18px;
    }

    .reviews__item {
        padding: 20px 25px 20px;
    }

    .reviews__logo {
        width: 150px;
        height: 60px;
        margin-bottom: 12px;
    }

    .reviews__author-name {
        font-size: 16px;
    }

    .reviews__author-position {
        font-size: 14px;
    }

    .reviews__text {
        font-size: 14px;
    }

    .reviews__button {
        width: 35px;
        height: 35px;
    }

    .reviews__button svg,
    .reviews__button .arrow-button__icon {
        width: 12px;
        height: 20px;
        fill: #fff !important;
    }

    .reviews__slider-container {
        gap: 10px;
    }
    .selection__reviews {
        margin-bottom: 0;
    }
    .application__title {

        font-size: 20px;
        font-weight: 500;
    }
}

 .shipment__spb {
	 margin-top: 98px;
	 padding: 50px 0 83px 60px;
	 background-color: #f8f0e5;
	 background-image: url("./img/shipment-delivery-block.jpg");
	 background-repeat: no-repeat;
	 background-size: cover;
}
 @media (max-width: 1199px) {
	 .shipment__spb {
		 margin-top: 45px;
		 padding: 40px 48px 46px 48px;
		 background-image: url("./img/shipment-delivery-block-tab.jpg");
	}
}
 @media (max-width: 767px) {
	 .shipment__spb {
		 margin-top: 40px;
		 padding: 25px 20px 125px 20px;
		 background-image: url("./img/shipment-delivery-block-mob.jpg");
	}
}

.faq__list {
	 margin: 0;
	 padding: 0;
	 list-style: none;
	 display: grid;
	 gap: 27px;
}
 .faq__head {
	 display: flex;
	 justify-content: space-between;
	 padding-top: 27px;
	 padding-right: 43px;
	 padding-bottom: 27px;
	 padding-left: 40px;
	 background-color: #faf7ff;
	 cursor: pointer;
	 transition: all 0.3s ease-in;
}
 .show .faq__head {
	 background-color: #f4edff;
}
 .faq__head:hover, .faq__head:focus-within {
	 background-color: #f4edff;
}
 .faq__question {
	 margin-top: 0;
	 margin-bottom: 0;
	 font-size: 25px;
	 line-height: 1.4;
}
 .faq__content {
	 max-height: 0;
	 padding-right: 43px;
	 padding-left: 40px;
	 overflow: hidden;
	 background-color: #faf7ff;
	 visibility: hidden;
	 transition: all 0.3s;
	 transition: all 0.3s;
}
 .show .faq__content {
	 background-color: #f4edff;
}
 .faq__answer {
	 max-width: 728px;
	 padding-bottom: 36px;
}
 .faq__answer--indigo {
	 color: #715399;
	 font-style: italic;
}
 .faq__show-btn {
	 opacity: 0.6;
	 transition: all 0.3s;
}
 .show .faq__show-btn {
	 color: #715399;
	 border-color: #715399;
	 transform: rotate(90deg);
	 opacity: 1;
}
 .show .faq__show-btn:hover {
	 transform: rotate(90deg) scale(1.1);
}
 @media (max-width: 767px) {
	 .faq__list {
		 gap: 10px;
	}
	 .faq__head {
		 padding-top: 15px;
		 padding-right: 19px;
		 padding-bottom: 18px;
		 padding-left: 19px;
	}
	 .faq__question {
		 max-width: 80%;
		 font-size: 13px;
	}
	 .faq__content {
		 padding-right: 24px;
		 padding-left: 19px;
	}
	 .faq__answer {
		 padding-bottom: 21px;
		 font-size: 13px;
	}
}

.reviews__button {
  color: #e3e3e3 !important;
  border-color: #e3e3e3 !important;
  pointer-events: all;
  touch-action: auto;
}

 .banner--loyality .banner__img-box {
	 grid-column: 1/-1;
	 grid-row: 1/-1;
	 background-image: url("./img/loyality-banner-img.png");
	 background-position: bottom right;
	 background-size: contain;
}

 .banner--selection .banner__img-box {
	 background-image: url("./img/selection-banner-img.jpg");
}

@media (max-width: 1199px) {
    .banner--loyality .banner__img-box {
		 grid-column: auto;
		 grid-row: auto;
		 height: 160px;
         margin-bottom: 0;
	}
     .banner--selection .banner__img-box {
		 background-image: url("./img/selection-banner-img-tab.jpg");
	}
}

 @media (max-width: 1199px) and (orientation: portrait) {
	 .banner--selection .banner__img-box {
		 grid-column: 1;
	}
}

@media (max-width: 767px) {
     .banner--selection .banner__img-box {
		 background-image: url("./img/selection-banner-img-mob.jpg");
	}
}

.reviews__wrapper {
	 max-width: calc(100% - 64px);
	 margin-left: 0;
}
 .reviews__list {
	 margin: 0;
	 padding: 0;
	 list-style: none;
	 display: flex;
}
 .reviews__head {
	 display: flex;
	 align-items: baseline;
	 margin-bottom: 54px;
}
 .reviews__head--about {
	 flex-direction: column;
	 margin-bottom: 40px;
}
 .reviews__title {
	 margin-top: 0;
	 margin-bottom: 0;
}
 .reviews__link {
	 margin-left: 26px;
	 padding-left: 0;
	 font-weight: 400;
	 font-size: 25px;
	 line-height: 1.4;
	 font-family: "Lato", Helvetica, Arial, sans-serif;
	 color: #715399;
	 transition: 0.2s ease-in-out;
}
 .reviews__link:hover, .reviews__link:focus {
	 color: #715399;
}
 .reviews__link:active {
	 opacity: 0.5;
}
 .reviews__item {
	 height: auto;
	 padding: 30px 40px;
	 border: 1px solid #e3e3e3;
	 border-bottom: 2px solid #705399;
}
 .reviews__item--about {
	 display: flex;
	 padding: 52px 50px 70px 57px;
}
 .reviews__icon {
	 flex-shrink: 0;
	 grid-row: -1;
	 width: 110px;
	 height: 110px;
	 background-color: #fff;
	 background-repeat: no-repeat;
	 background-position: 50%;
	 background-size: 50%;
	 border-radius: 50%;
}
 .reviews__icon--female {
	 background-image: url("../img/reviews/icon-1.svg");
}
 .reviews__icon--male {
	 background-image: url("../img/reviews/icon-2.svg");
}
 .reviews__quote {
	 margin: 0;
}
 .reviews__quote--about {
	 display: grid;
	 grid-template-columns: 110px 1fr;
	 grid-template-rows: min-content auto;
	 column-gap: 28px;
}
 .reviews__logo {
	 height: 104px;
	 margin-bottom: 17px;
	 object-position: left;
	 object-fit: contain;
}
 .reviews__author {
	 display: flex;
	 align-items: baseline;
	 margin-bottom: 5px;
}
 .reviews__author-name {
	 font-weight: 500;
	 font-size: 21px;
	 line-height: 1.4;
	 font-family: "Lato", Helvetica, Arial, sans-serif;
	 color: #715399;
}
 .reviews__author-position {
	 margin-left: 14px;
	 font-size: 19px;
	 line-height: 1.4;
	 color: #c7c7c7;
}
 .reviews__text {
	 margin-top: 0;
	 margin-bottom: 0;
	 font-size: 19px;
	 line-height: 1.4;
	 font-style: italic;
}
 .reviews__text--about {
	 max-width: 874px;
	 margin-top: 20px;
	 font-style: normal;
}
 .reviews__text--fw-500 {
	 font-weight: 500;
}
 .reviews__text--size-27 {
	 font-size: 27px;
}
 .reviews__text--purple {
	 color: #715399;
}
 .reviews__text--style-normal {
	 font-style: normal;
}
 .reviews__slider-wrapper {
	 position: relative;
}
 .reviews__navigation {
	 position: absolute;
	 top: 50%;
	 left: 0;
	 display: flex;
	 justify-content: flex-end;
	 width: 100%;
	 transform: translateY(-50%);
	 pointer-events: none;
	 touch-action: none;
}
 .reviews__button {
	 color: #e3e3e3;
	 border-color: #e3e3e3;
	 pointer-events: all;
	 touch-action: auto;
}
 .reviews__button:hover, .reviews__button:focus {
	 color: #715399;
	 border-color: #715399;
}
 .reviews__button--prev {
	 transform: rotate(180deg);
}
 .reviews__footer {
	 display: flex;
	 flex-wrap: wrap;
	 align-items: center;
	 gap: 20px;
	 margin-top: 40px;
}
 .reviews__logos {
	 display: flex;
	 flex-wrap: wrap;
	 align-items: center;
	 gap: 30px;
}
.banner__content--loyality .button--purple {
    border-radius: unset;
}
.banner__content--loyality {
    padding: 40px 0 40px 70px !important;
}
.banner--selection .banner__content {
    padding-right: 25px;
    padding-left: 40px;
}
 @media (max-width: 1199px) {
	 .reviews__item {
		 padding-top: 19px;
		 padding-right: 18px;
		 padding-bottom: 26px;
		 padding-left: 19px;
	}
	 .reviews__item--about {
		 position: relative;
		 align-items: center;
		 padding-top: 54px;
		 padding-right: 48px;
		 padding-bottom: 55px;
		 padding-left: 57px;
	}
	 .reviews__icon {
		 margin-right: 25px;
	}
	 .reviews__head--about {
		 margin-bottom: 30px;
	}
	 .reviews__text {
		 font-size: 16px;
	}
	 .reviews__quote--about {
		 grid-template-columns: 110px 1fr;
		 column-gap: 26px;
	}
	 .reviews__author-name {
		 font-size: 20px;
	}
	 .reviews__author--about {
		 margin-bottom: 5px;
	}
    .banner__content--loyality {
        padding: 30px 10px 10px !important;
    }
}
 @media (max-width: 767px) {
	 .reviews__wrapper {
		 width: 100vw;
		 max-width: none;
		 margin-right: -10px;
		 margin-left: -10px;
		 padding-right: 10px;
		 padding-left: 10px;
	}
	 .reviews__item {
		 min-width: auto;
		 max-width: 264px;
	}
	 .reviews__item--about {
		 display: block;
		 padding: 19px 19px 26px 19px;
	}
	 .reviews__head {
		 flex-direction: column;
		 margin-bottom: 16px;
	}
	 .reviews__link {
		 margin-left: 0;
		 font-size: 20px;
	}
	 .reviews__logo {
		 width: 110px;
		 height: 43px;
		 margin-bottom: 0;
	}
	 .reviews__images {
		 margin-right: -10px;
		 margin-bottom: 40px;
		 margin-left: -10px;
		 overflow: hidden;
		 overflow-x: auto;
	}
	 .reviews__image {
		 min-width: 254px;
	}
	 .reviews__author {
		 flex-direction: column;
	}
	 .reviews__author--about {
		 align-self: center;
	}
	 .reviews__author-name {
		 font-size: 15px;
	}
	 .reviews__icon {
		 grid-row: 1;
		 width: 36px;
		 height: 36px;
	}
	 .reviews__quote--about {
		 grid-template-columns: 36px 1fr;
		 grid-template-rows: min-content auto;
		 column-gap: 10px;
		 row-gap: 14px;
	}
	 .reviews__author-position {
		 margin-left: 0;
		 font-size: 15px;
	}
	 .reviews__text {
		 grid-column: -1;
		 font-size: 12px;
	}
	 .reviews__text--about {
		 font-size: 13px;
	}
	 .reviews__text--size-27 {
		 font-size: 18px;
	}
	 .reviews__navigation {
		 display: none;
	}
	 .reviews__footer {
		 margin-top: 25px;
	}
    .head__text {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .button--purple {
        padding: 12px 19px !important;
    }
    .description__title {
        font-size: 20px;
        line-height: 1.18;
        font-weight: 600;
    }
    .description__text, .description__text b {
        font-size: 13px;
    }
    .description__text b {

        font-weight: 600;
    }
    .selection__title {
        font-size: 20px;
    }
    .banner__title--loyality {

        font-size: 18px !important;
    }
    .banner--selection .banner__link {
        padding: 11px;
    }
}
 