/* Страница Акции */

.salesPromo{
    top: -35px;
    width: 100%;
    position: relative;
    text-align: center;
    font-family: Dimkin;
    font-weight: 300;
    font-size: 60px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    /* margin-bottom: -70px; */
    background: url('/local/templates/main/images/shutterstock_2219258589.jpg') no-repeat center;
    background-size: cover;
    width: 100%;
    left: 0px;
    right: 0;
    text-align: center;
    display: grid;
    justify-content: center;
    align-content: center;
    color: #FFFFFF;
    height: 200px;
}
.salesPromo::before{
    content: '';
    position: absolute;
    top: 0;
    background: rgba(0, 0, 0, 0.65);
    width: 100%;
    height: 100%;
}
.salesPromoText{
    font-family: Dimkin;
    font-family: Dimkin;
    font-weight: 300;
    font-size: 60px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    position: absolute;
    text-align: center;
    justify-self: center;
    align-self: center;
    text-transform: uppercase;
    color: #FFFFFF;
}
.promoTextOne{
    margin-bottom: 60px;
}
.salesItems{
    margin-bottom: 60px;
}
.promoBanner{
    margin-bottom: 60px;
}
.promoBanner img {
    object-fit: cover;
}



/* FAQ Page */

.faq p {
    font-size: 14px;
}
.faq__h2 {
    margin-bottom: 36px;
}
.faq_hg {
    font-weight: 600;
    color: #006F56;
}
.faq__hero {
	position: relative;
	background: url('/local/templates/main/images/faq/faq_hero_img_bg.webp') no-repeat;
	background-size: cover;
	background-position: 45% 61%;
	padding: 60px 0;
	margin-top: -36px;
}

.faq__hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.faq__hero .container {
	position: relative;
	z-index: 2;
}

.faq__hero-title {
	text-align: center;
	font-family: Dimkin;
	font-weight: 300;
	font-size: 60px;
	color: #fff;
	margin: 0;
}

.faq {
    max-width: 920px;
    margin: 0 auto;
}

.js-faq-container:first-child {
    margin-top: 70px; 
}

.js-faq-container {
    margin-top: 70px;
}

.faq__header {
    padding-bottom: 28px;
    border-bottom: 2px solid #E5E5E5;
}

.faq__header-special p:first-of-type {
    margin-top: 20px;
}

.faq__header p {
    margin-top: 14px;
    margin-bottom: 0px;
}

.faq__header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq__title {
    margin: 0;
    color: #006F56;
}

.faq__toggle-all {
    user-select: none;
    cursor: pointer;
    font-size: 14px;
    color: #252627;
}

.faq__toggle-all:hover {
    text-decoration: underline;
}

.faq__item {
    border-bottom: 2px solid #E5E5E5;
}

.faq__question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 27px;
    padding-bottom: 27px;
}

.faq__subtitle {
    user-select: none;
    margin: 0;
}

.faq__answer {
    display: none;
}
.faq__video-wrapper {
    max-height: 365px;
    overflow: hidden;
    margin: 0 auto;
    margin: 20px auto;
    border-radius: 8px;
    position: relative; 
    width: 100%; 
    height: 365px; 
}
.faq__video {
    width: 100%;
    height: 100%;
    max-height: 365px;
    object-fit: cover;
    display: block;
}

.faq__answer ul {
    list-style: disc;
    padding-left: 1.2em;
}

.faq__answer li {
    font-size: 14px;
}

.faq__answer li::marker {
    color: #006F56;
}

.faq__answer img {
    border-radius: 8px;
}

.faq__answer p {
    margin-top: 12px;
    margin-bottom: 12px;
}

.faq__answer p:first-child {
    margin-top: 0;
}

.faq__answer p:last-child {
    margin-bottom: 27px;
}

.faq__item.active .faq__answer {
	display: block;
}

.faq__item.active .faq__subtitle {
	color: #006F56;
}

.faq__item.active .faq-toggle::before,
.faq__item.active .faq-toggle::after {
	background-color: #006F56;
}

.faq__images img {
    width: 100%;
    max-height: 393px;
    object-fit: cover;
    margin-top: 12px;
}

.faq-toggle {
	width: 14px;
	height: 14px;
	position: relative;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.faq-toggle::before,
.faq-toggle::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 14px;
	height: 2px;
	background-color: #252627;
	transition: transform 0.3s ease;
	transform: translate(-50%, -50%);
}

.faq-toggle::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq-toggle.active::after {
	transform: translate(-50%, -50%) rotate(0deg);
}

.faq__video-preloader {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	font-weight: bold;
	color: #333;
	z-index: 2;
}
.faq__video-preloader .dots::after {
	content: '';
	display: inline-block;
	width: 1ch;
	animation: dots 1s steps(3, end) infinite;
}
@keyframes dots {
	0%, 20% { content: ''; }
	40% { content: '.'; }
	60% { content: '..'; }
	80%, 100% { content: '...'; }
}
.faq__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 968px) {
    .js-faq-container:first-child {
        margin-top: 40px;
    }
    .js-faq-container {
        margin-top: 50px;
    }
    .faq__header p {
        margin-top: 10px;
    }
    .faq__question {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .faq__answer p {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .faq__answer li {
        font-size: 12px;
    }
    .faq__answer p:last-child {
        margin-bottom: 20px;
    }
    .faq_table {
        margin-top: 14px !important;
    }
    .faq p {
        font-size: 12px;
    }
    .faq__hero {
        background-position: 0% 90%;
    }
    .faq__images img {
        max-height: 327px;
    }
    .faq__h2 {
        margin-bottom: 24px;
    }
}

@media (max-width: 768px) {
    .faq__hero {
        background-size: 115%;
        background-position: 100% 95%;
    }
}

@media (max-width: 600px) {
    .faq__hero {
        background-size: 145%;
        background-position: 100% 100%;
    }
    .faq__toggle-all {
        display: none;
    }
}

@media (max-width: 475px) {
    .faq_table {
        margin-top: 4px !important;
    }
    .js-faq-container:first-child {
        margin-top: 30px;
    }
    .js-faq-container {
        margin-top: 40px;
    }
    .faq__hero {
        background-size: 200%;
        background-position: 100% 90%;
    }
}

/* FAQ Table */

.faq_table table,
.faq_table th,
.faq_table td {
    font-size: 14px;
}

.faq_table {
    margin-top: 24px;
    padding: 16px;
    padding-bottom: 0;
}

.faq_table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #00704B;
  border-radius: 10px;
  table-layout: auto;
}

.faq_table th,
.faq_table td {
  border: 1px solid #00704B;
  padding: 10px 22px;
  text-align: left;
  vertical-align: top;
  hyphens: auto;
}

.faq_table td:not(:first-child) {
  text-align: center;
  vertical-align: middle;
}

.faq_table th {
  color: #006F56;
  font-weight: bold;
  text-align: center;
}

.faq_table td:first-child {
  font-weight: bold;
  width: 25%;
  color: #006F56;
}

.faq_table td:nth-child(2),
.faq_table td:nth-child(3) {
  width: 37.5%;
}

.faq_table thead th:first-child {
  border-top-left-radius: 10px;
}

.faq_table thead th:last-child {
  border-top-right-radius: 10px;
}

.faq_table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

.faq_table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

@media(max-width: 968px) {
    .faq_table table,
    .faq_table th,
    .faq_table td {
        font-size: 12px;
    }
    .faq_table th,
    .faq_table td {
        padding: 10px 16px;
    }
}

@media(max-width: 475px) {
    .faq_table table,
    .faq_table th,
    .faq_table td {
        font-size: 10px;
    }
    .faq_table th,
    .faq_table td {
        padding: 10px 9px;
    }
}


/* ===== Main Page ===== */

/* Main page buttons */

.mp-btn-container {
    text-align: center;
}

/* Main page city choose */
.rectangleRegionsMobile {
    display: none;
}
@media(max-width: 968px) {
    .rectangleRegionsMobile {
        display: grid;
        justify-content: center;
        padding-bottom: 15px;
        padding-top: 0;
        margin-top: -20px;
    }
}

/* Mainpage headers */
.mp-title-link-more {
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
}
.mp-title-link-more-mobile {
    display: none;
}
.mp-header {
    margin-bottom: 36px;
}
.mp-header h2 {
    max-width: 722px;
}
@media (max-width: 968px) {
    .mp-title-link-more {
        font-size: 16px;
    }
}
@media (max-width: 475px) {
    .mp-title-link-more {
        display: none;
    }
    .mp-title-link-more-mobile {
        display: block;
        margin-top: 20px;
        margin-bottom: 50px;
        text-decoration: underline;
        text-align: center;
    }
    .mp-header {
        margin-bottom: 16px;
    }
}

/* Categories block */
.categories {
    margin-top: 70px;
    margin-bottom: 70px;
}
.categories-header p {
    margin-top: 12px;
    margin-bottom: -6px;
}
.categories .mp-btn-container {
    margin-top: 14px;
}
@media (max-width: 968px) {
    .categories {
        margin-top: 40px;
        margin-bottom: 60px;
    }
}
@media (max-width: 968px) {
    .categories {
        margin-top: 40px;
        margin-bottom: 50px;
    }
    .categories-header p {
        font-size: 12px;
    }
}

/* Benefits */
.benefits {
    padding-top: 20px;
    padding-bottom: 20px;
}
.benefits__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}
.benefits__item {
    display: flex;
    align-items: center;
    gap: 21px;
}
.benefits__icon {
    width: 100px;
    flex-shrink: 0;
}
.benefits__text {
    font-weight: bold;
}
@media (min-width: 969px) and (max-width: 1042px) {
    .benefits__item {
        gap: 15px;
    }
}
@media (max-width: 968px) {
    .benefits__container {
        grid-template-columns: repeat(2, 1fr);
        padding-bottom: 11px;
        max-width: 600px;
    }
    .benefits__text {
        font-size: 16px;
    }
    .benefits__item {
        max-width: 263px;
    }
}
@media (max-width: 475px) {
    .benefits__icon {
        width: 82px;
        height: 82px;
    }
    .benefits__text {
        font-size: 10px;
    }
    .benefits__container {
        gap: 20px;
    }
    .benefits__item {
        max-width: 263px;
        gap: 7px;
    }
}

/* Bestsellers */
.bestsellers {
    margin-top: 98px;
    margin-bottom: 60px;
}
.bestsellers .mp-btn-container {
    margin-top: 48px;
}
@media (max-width: 968px) {
    .bestsellers {
        margin-top: 60px;
    }
    .bestsellers .mp-btn-container {
        margin-top: 32px;
    }
}
@media (max-width: 475px) {
    .bestsellers {
        margin-bottom: 50px;
    }
}

/* Rewards block */
.rewards {
    margin-bottom: 70px;
}
@media(max-width: 968px) {
    .rewards {
        margin-bottom: 60px;
    }
}
@media(max-width: 600px) {
    .rewards {
        margin-bottom: 50px;
    }
}

/* Delivery block */
.delivery {
    padding: 11px;
}
.delivery__content {
    display: flex;
    gap: 20px;
    align-items: stretch;
}
.delivery__text-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.delivery__text-block h2 {
    margin-top: 0;
    margin-bottom: 0;
}
.delivery__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
}
.delivery__info {
    display: flex;
    align-items: center;
    gap: 13px;
}
.delivery__icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    fill: currentColor;
}
.delivery__image {
    flex: 2;
}
.delivery__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}
@media(max-width: 968px) {
    .delivery__image {
        flex: 1.5;
    }
}
@media(max-width: 600px) {
    .delivery__image {
        flex: 1;
    }
    .delivery__content {
        flex-direction: column;
    }
}
@media(max-width: 475px) {
    .delivery__text-block h2 {
        margin-bottom: 4px;
    }
}

/* Reviews block */

.reviews {
    margin-top: 75px;
    margin-bottom: 80px;
}
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
}
@media(max-width: 968px) {
    .reviews {
        margin-top: 60px;
        margin-bottom: 60px;
    }
    .reviews-header {
        margin-bottom: 24px;
    }
}
@media(max-width: 600px) {
    .reviews {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .reviews-header {
        margin-bottom: 16px;
    }
}



/* ===== Terms of offer ===== */

.terms-of-offer__section h1 {
    margin-bottom: 36px;
}
.terms-of-offer__text {
    max-width: 920px;
    margin: 0 auto;
}
@media(max-width: 968px) {
    .terms-of-offer__section p {
        font-size: 14px;
    }
    .terms-of-offer__section h1 {
        font-size: 24px;
        margin-bottom: 24px;
    }
}
@media(max-width: 475px) {
    .terms-of-offer__section h1 {
        margin-bottom: 16px;
    }
    .terms-of-offer__section p {
        font-size: 12px;
    }
}



/* ===== Payment and delivery ===== */

.payment-and-delivery__section h2 {
    font-size: 24px;
}
.payment-and-delivery__section h1 {
    margin-bottom: 36px;
}
.tabs__button[data-target="pane-delivery"]::before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 48px;
  margin-right: 12px;
  background: url("/local/templates/main/images/pad-img-tab-1.svg") no-repeat center / contain;
  vertical-align: middle;
}
.tabs__button[data-target="pane-payment"]::before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 48px;
  margin-right: 12px;
  background: url("/local/templates/main/images/pad-img-tab-2.svg") no-repeat center / contain;
  vertical-align: middle;
}
.tabs {
  display: block;
}
.tabs__head {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.tabs__button {
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    padding-right: 34px;
    padding-left: 18px;
    height: 72px;
    text-align: left;
    border-radius: 8px;
    background: white;
    border: none;
}
.tabs__button[aria-pressed="true"],
.tabs__button--active {
    border: 1px solid #006F56;
}
.tabs__cities {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin: 6px 0 20px;
}
.tabs__cities .btn {
    font-size: 14px;
    font-weight: 400;
    width: 255px;
}
.tabs__city--active {
    border: 1px solid black;
}
.tabs__body {
  display: block;
}
.tabs__pane {
  display: none;
}
.tabs__pane--active {
  display: block;
}
.delivery {
  display: block;
  gap: 16px;
}
.delivery__section {
  margin-bottom: 22px;
}
.delivery__headline {
  font-size: 18px;
  margin: 0 0 8px;
}
.headline-link {
    text-decoration: underline;
    color: #275DAD;
}
.delivery__box {
  background: #f5f1e9;
  padding: 24px 32px;
  border-radius: 6px;
  border: 1px solid #eee;
  margin-bottom: 12px;
}

.delivery__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
.delivery__table th,
.delivery__table td {
  padding: 10px 8px;
  border-bottom: 1px solid #eee;
  text-align: left;
  font-size: 14px;
}
.delivery__table th {
  font-weight: 400;
  color: var(--muted);
  font-size: 13px;
}
.banner {
  height: 120px;
  border-radius: 8px;
  border: 1px dashed #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  margin: 12px 0;
}
.partners {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}
.partners__item {
  min-width: 80px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #f0f0f0;
  color: var(--muted);
  font-size: 13px;
  padding: 8px;
}
@media (min-width: 760px) {
  .tabs__head {
    align-items: center;
  }

  .delivery__table th,
  .delivery__table td {
    font-size: 15px;
  }
}

/* Oplata Dolyami */

.oplata-dolyami__title {
    margin-bottom: 36px;
}

.oplata-dolyami__banner {
  height: 120px;
  border-radius: 8px;
  border: 1px dashed #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  margin: 12px 0;
}

.partners {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}

.partners__item {
  min-width: 80px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #f0f0f0;
  color: var(--muted);
  font-size: 13px;
  padding: 8px;
}
.payment-split__footer {
    padding: 24px 32px;
    font-size: 14px;
    color: #006F56;
    font-weight: 600;
    border: 1px solid #C3C3C3;
    border-radius: 8px;
}



/* ===== Guarantees and returns ===== */

.guarantees-and-returns {
    width: 100%;
    height: 180px;
    background: url('/local/templates/main/images/guarantees-and-returns/guarantees-and-returns.png') center/cover no-repeat;
    transform: scaleX(-1);
    position: relative;
    background-position: 0% 100%;
    margin-top: -36px;
    background-size: 108%;
    margin-bottom: 16px;
}
.guarantees-and-returns .page-banner-title {
    transform: scaleX(-1);
    text-transform: uppercase;
}
.guarantees-and-returns__overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}
.text-container h1 {
    margin-bottom: 36px;
}
@media(max-width: 1470px) {
    .guarantees-and-returns {
        background-position: 0% 100%;
        background-size: 160%;
    }
}
@media(max-width: 968px) {
    .guarantees-and-returns {
        margin-bottom: 4px;
    }
    .guarantees-and-returns {
        background-position: 18% 100%;
        background-size: 200%;
    }
}
@media(max-width: 700px) {
    .guarantees-and-returns {
        background-position: 20% 100%;
        background-size: 253%;
    }
}
@media(max-width: 630px) {
    .guarantees-and-returns {
        background-position: 40% 100%;
        background-size: 292%;    
    }
}
@media(max-width: 475px) {
    .guarantees-and-returns {
        background-position: 40% 100%;
        background-size: 480%;
    }
}



/* ===== Cooperation ===== */

.cooperation__header {
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    height: 180px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.cooperation__title {
    font-size: 45px;
    margin-bottom: 8px;
}
.cooperation__main-title {
    text-align: center;
    margin-bottom: 36px;
}
.cooperation__subtitle {
    color: white;
    font-weight: 500;
}
.cooperation__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* всегда 2 в ряд */
    gap: 45px;
    max-width: 740px;
    margin: 0 auto;
}
.cooperation-banner {
    width: 100%;
    height: 180px;
    background: url('/local/templates/main/images/cooperation/cooperation.png') center/cover no-repeat;
    position: relative;
    margin-top: -36px;
    margin-bottom: 36px;
}
.cooperation-banner__overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);    
}
.cooperation__item {
    display: flex;
    align-items: center;
}
.cooperation__icon {
    display: block;
    margin-right: 30px;
}
.cooperation__text {
    font-size: 16px;
    font-weight: 600;
    color: #006F56;
}
.cooperation__note {
    max-width: 1110px;
    text-align: center;
    margin: 0 auto;
    margin-top: 36px;
    background: #f7f5f0;
    padding: 32px;
    font-size: 14px;
    line-height: 1.4;
    border-radius: 8px;
}
.cooperation__note p {
    max-width: 730px;
    margin: 0 auto;
    font-weight: bold;
}
@media(max-width: 968px) {
    .cooperation-banner {
        background-position: 80% 100%;
    }
}
@media (max-width: 768px) {
    .cooperation__list {
        gap: 32px;
    }
    .cooperation__icon {
        margin-right: 18px;
        width: 48px;
    }
    .cooperation__main-title {
        margin-bottom: 24px;
    }
    .cooperation__text {
        font-size: 14px;
    }
}
@media (max-width: 475px) {
    .cooperation__list {
        gap: 24px;
    }
    .cooperation__icon {
        margin-right: 12px;
        width: 32px;
    }
    .cooperation__text {
        font-size: 12px;
    }
}



/* ===== About ===== */

.about__block-img {
    margin-bottom: 32px;
}
.about__section hr {
    color: #F4F1E7;
}
.about__slide {
    text-align: center;
}
.about__slide img {
    max-width: 168px;
    max-height: 168px;
    height: 168px;
    width: 100%;
    color: transparent;
}
.about__slide-img-wrapper {
    min-height: 168px;
}
.about__slide h4 {
    margin-bottom: 12px;
}
.about__slider-nav .swiper-button-next, 
.about__slider-nav .swiper-button-prev {
  top: 85px;
  color: black;
}
.about__slider-nav .swiper-button-next::after, 
.about__slider-nav .swiper-button-prev::after {
  font-size: 16px;
}
.about__slider-nav .swiper-button-next {
  right: 0;
}
.about__slider-nav .swiper-button-prev {
  left: 0;
}
.about__infographic img {
    width: 100%;
}
.certs {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 24px;
}
.certs a {
	display: block;
	height: 265px;
}
.certs img {
	height: 100%;
	width: auto;
	object-fit: cover;
	border-radius: 6px;
	display: block;
}
@media(max-width: 968px) {
    .about__block-img {
        margin-bottom: 24px;
    }
    .about__infographic {
        position: relative;
        height: 292px;
        overflow-x: auto;
        overflow-y: hidden;
        min-width: 100vw;
        padding-bottom: 32px;
        cursor: grab;

        scrollbar-width: thin;
        scrollbar-color: #999 transparent;
    }
    .about__infographic:active {
        cursor: grabbing;
    }
    .about__infographic::-webkit-scrollbar {
        height: 6px;
    }
    .about__infographic::-webkit-scrollbar-track {
        background: transparent;
    }
    .about__infographic::-webkit-scrollbar-thumb {
        background-color: #999;
        border-radius: 3px;
    }
    .about__infographic::-webkit-scrollbar-thumb:hover {
        background-color: #666;
    }
    .about__infographic img {
        height: 292px;
        width: auto;
        min-width: 920px;
        display: block;
        padding-right: 95px;

        user-select: none;
        -webkit-user-drag: none;
        -khtml-user-drag: none;
        -moz-user-drag: none;
        -o-user-drag: none;
        user-drag: none;
        pointer-events: none; 
    }
}
@media (max-width: 768px) {
    .about__infographic img {
        padding-right: 62px;
    }
}
@media (max-width: 475px) {
    .mobile-none-br {
        display: none;
    }
    .about__block-img {
        margin-bottom: 16px;
    }
    .about__slider-nav .swiper-button-next {
        right: -9px;
    }
    .about__slider-nav .swiper-button-prev {
        left: -9px;
    }
}
@media (max-width: 425px) {
	.certs {
		flex-wrap: nowrap;
		justify-content: center;
	}
	.certs a {
		height: 200px;
	}
}


/* ===== Reviews ===== */

.reviews-banner {
    width: 100%;
    height: 180px;
    background: url('/local/templates/main/images/reviews/reviews-banner.png') center/cover no-repeat;
    position: relative;
    margin-top: -36px;
    margin-bottom: 36px;
}
.reviews-banner__overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);    
}



/* ===== Catalog ===== */

.breadcrumb-wrapper {
    margin-bottom: 8px; 
    display: flex;
    align-items: center;
}