@charset "UTF-8";

/** Подключение шрифтов локально из папки "./src/fonts" */

@font-face {
    font-family: Rubik;
    font-display: swap;
    src: url("fonts/Rubik-Medium.woff2") format("woff2"), url("fonts/Rubik-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: Rubik;
    font-display: swap;
    src: url("fonts/Rubik-Regular.woff2") format("woff2"), url("fonts/Rubik-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

/** Подключение переменных */

/** Подключение sass function и mixins и extends стилей */

@-webkit-keyframes shake {
    from {
        top: -1%;
    }

    to {
        top: 1%;
    }
}

@keyframes shake {
    from {
        top: -1%;
    }

    to {
        top: 1%;
    }
}

@-webkit-keyframes blinker {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

@keyframes blinker {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

/** Общие параметры, шаблоны(заготовки) и вспомогательные классы */

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

html {
    font-size: 12px;
}

body {
    background-color: #fff;
    overflow-y: hidden;
    font-family: "Rubik";
    line-height: 1.3;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

ul,
ol,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #113D63;
    font-weight: bold;
    font-family: "Rubik";
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3,
h4,
h5,
h6 {
    font-size: 2rem;
}

p {
    margin: 0;
    font-size: 1.5rem;
}

a {
    color: #237FCF;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

a:hover {
    text-decoration: none;
}

a[href*="tel:"] {
    white-space: nowrap;
}

section {
    margin-top: 4rem;
    position: relative;
}

input {
    width: 100%;
    display: block;
    font-size: 0.93rem;
    letter-spacing: 0;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    padding: 0.8rem 1.2rem;
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

input:focus {
    border-color: #282828;
}

input:focus-visible {
    outline: none;
    text-indent: 5px;
}

select:focus {
    border-color: #282828;
}

textarea:focus {
    border-color: #282828;
}

textarea:focus-visible {
    outline: none;
    text-indent: 5px;
}

.main {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.container {
    max-width: 1200px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    height: 100%;
    position: relative;
}

.container_vertical {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
}

.section-title {
    text-align: center;
}

.text {
    color: #282828;
    font-size: 1.5rem;
    font-weight: 400;
}

.text_huge {
    color: #113D63;
    font-size: 2.5rem;
}

.text_large {
    color: #282828;
    font-size: 1.75rem;
}

.text_small {
    color: #282828;
    font-size: 1.25rem;
}

.text_accent {
    color: #113D63;
}

.text_bold {
    font-weight: 700;
}

.text_light_bold {
    font-weight: 500;
}

.btn {
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #F5F5F5;
    background: #237FCF;
    font-size: 1.7rem;
    padding: 1rem 2rem;
    border-radius: 5px;
    border: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.btn svg {
    fill: none;
}

.btn__icon {
    width: 1em;
    height: 1em;
}

.btn_dark {
    color: #FFFFFF;
    background: #000000;
}

.btn_slim {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.btn_inactive {
    pointer-events: none;
    opacity: 0.5;
}

.btn:focus {
    outline: none;
}

.slider_centered img {
    -webkit-transition: height 0.2s;
    transition: height 0.2s;
    height: 80%;
}

.slider_centered__item_center img {
    height: 100% !important;
}

.slider__wrapper {
    padding: 20px;
}

.slider__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.slider__item-wrapper {
    width: 85%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.slider__nav-btn {
    width: 5rem;
    height: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #113D63;
    background: #237FCF;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
}

.slider__nav-btn svg {
    fill: none;
}

.popup {
    z-index: 1050;
    text-align: center;
}

.popup__frame {
    border-radius: 5px;
    width: 700px;
}

/* =============== WooCommerce CSS ================ */
.single-product__summury{
	margin-top: 30px;
	position: relative;
	display: flex;
}

.single-product__title{
	font-size: 30px;
	font-weight: 500;
    padding-top: 0;
    margin-bottom: 20px;
	color: #000000;
}

.single-product__model{
	margin: 0 0 10px 0;
	font-size: 1.7rem;
}

.single-product__price{
  margin-bottom: 20px;
}
	
.single-product__price bdi{
	font-size: 30px;
	font-weight: 500;
    padding-top: 0;
	color: #cc007d;
}

.single-product__left{
	flex: 0 0 42%;
	margin-right: 20px;
	display: flex;
	flex-direction: column;
}
.single-product__right{
	flex: 0 0 50%;
	position:relative;
	display: flex;
	flex-direction: column;
}

.single-product__gallery{
	display: flex;
	flex-wrap: wrap;
}

.single-product__img:nth-child(1), .single-product__img:nth-child(2){
	width: calc(50% - 12px);
}

.single-product__img.oneThird{
 	width: calc(33.3% - 16px);
}

.single-product__img{
	margin: 0 24px 0 0;
}

.single-product__img:nth-child(2){
	margin-right: 0;
}

.single-product__img:last-child{
	margin-right: 0;
}

.single-product__img img{
	cursor: zoom-in;
}

.single-product__details{
	position: sticky;
	top:0;
}
.single-product__variation-add-to-cart{
	display: flex; 
	align-items: center;
	gap: 10px;
}
.product-category, .product-brand, .product-tag{
		display: flex;
		font-size: 14px;
	}
.product-tags, .product-brands{
	margin-left: 5px;
	display: flex;
    gap: 5px;

}
	
.add_to_cart_advantages{
	margin-bottom: 12px;
}

ul.wp-block-list {
    margin: 0 0 1.5em;
    padding-left: 20px;
	list-style: disc;
}

ul.wp-block-list li {
	font-size: 15px;
	list-style: disc;
	color: #232323;
}

@media (max-width:540px){
	.single-product__summury{
		flex-direction: column;
	}
	.single-product__variation-add-to-cart{
		align-items: stretch;
	}
	
	.uk-tab>*{
		padding-left: 10px;
	}
	
	.tabs__items-tab li a {
    font-size: 13px;
}
	
	.uk-tab>*>a {
		padding: 5px 5px;
	}
	
	.single-product__img:nth-child(1), .single-product__img:nth-child(2){
    width: auto;
}
	
}

.woocommerce-breadcrumb{
	margin-top: 30px;
}

/* Стилизация кнопки "Добавить в корзину" */
.single_add_to_cart_button {
    background-color: #000; /* Цвет фона */
    color: #fff; /* Цвет текста */
    border: none; /* Убираем стандартную границу */
    padding: 15px 30px; /* Отступы */
    font-size: 16px; /* Размер шрифта */
    text-transform: none; /* Преобразуем текст в верхний регистр */
    cursor: pointer; /* Курсор-стрелка */
    border-radius: 5px; /* Скругленные углы */
    transition: all 0.3s ease; /* Плавный переход цвета */
}

/* Стили при наведении на кнопку */
.single_add_to_cart_button:hover {
    opacity: .8; /* Цвет фона при наведении */
}

.added_to_cart {
	display: none !important;
}

/* Стили для кнопки "Добавить в корзину" на мобильных устройствах */
@media (max-width: 767px) {
    .add-to-cart .single_add_to_cart_button {
        padding: 12px 20px; /* Уменьшаем отступы на маленьких экранах */
        font-size: 14px; /* Меньший размер шрифта */
    }
}

/** БЕМ блоки используемые во всё проекте */

.tabs__items-tab li a {
	font-size: 15px;
}

@media (max-width: 426px){
	.tabs__items-tab li a {
    font-size: 13px;
}
	
}

.header__bottom .uk-active a {
    background-color: #f5f5f5;
    color: #cc007d;
}

b, strong {
    font-weight: 500 !important;
}

.uk-navbar-dropdown {
    border-radius: 5px 5px 5px 5px;
    padding: 20px 0px 20px 0px;
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    border-style: solid;
    border-width: 2px 0px 0px 0px;
    border-color: #cc007d;
    min-width: 250px;
    max-width: 500px;
}

.uk-navbar-nav>li.uk-active>a {
    color: #9bc03b;
}

.uk-navbar-nav>li>a {
    color: #000;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.uk-navbar-nav>li:hover>a,
.uk-navbar-nav>li>a[aria-expanded=true] {
    color: #9bc03b;
}

.uk-input,
.uk-select,
.uk-textarea {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: 1.5rem;
    border-radius: 5px;
}

.uk-accordion-content {
    margin: 0;
}

.uk-accordion-title {
    font-size: inherit;
    margin: 0;
}

.uk-accordion-title :first-child {
    margin: 0;
}

.uk-accordion-title::before {
    width: 1em;
    height: 1em;
    background-size: 100%;
}

.uk-dotnav>.uk-active>* {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    background-color: #113D63;
    border-color: transparent;
}

.uk-dotnav>*>* {
    width: 1rem;
    height: 1rem;
    background-color: #237FCF;
    border: none;
}

.uk-slidenav {
    color: #113D63;
}

.uk-lightbox-button {
    color: #FFFFFF;
}

.uk-modal-full {
    background: rgba(0, 0, 0, 0.6666666667);
}

.lined-section:before {
    content: "";
    position: absolute;
    top: calc(50% - 100px);
    left: 0%;
    width: 100%;
    height: 200px;
    background: #14c2e7;
    opacity: 0.1;
}

.lined-section .container {
    z-index: 1;
}

/** Подключение стилей отдельных блоков и секций */

.header {
    z-index: 1005;
    background-color: #f5f5f5;
}

.header__container {
    max-width: 1200px;
}

.header__top {
    max-width: 1200px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 10px;
    background-color: #f5f5f5;
}

.header__top-wrapper {
    background-color: #f5f5f5;
}

.header__menu-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.header__links-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

.header__links-item {
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.header__links-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #9bc03b;
    border-radius: 100%;
}

.header__links-link:hover {
    background-color: #8dae37;
    color: #f5f5f5;
}

.header__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.header__search {
    width: 40%;
}

.header__search-input {
    width: 100%;
    min-height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-style: solid;
    border-color: #9bc03b;
    background: transparent;
    border-width: 2px;
    border-style: solid;
    border-radius: 5px;
}

.header__search-input button {
    background-color: transparent;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
    border-radius: 0;
    margin: 0;
    border: 0;
    padding: 10px 20px;
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    background: none;
    line-height: 1;
    min-width: 0;
    cursor: pointer;
    -webkit-appearance: none;
}

.header__search-input input {
    margin: 0;
    border: 0;
    padding: 10px 20px;
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    background: none;
    line-height: 1;
    min-width: 0;
    font-size: 14px;
    -webkit-appearance: none;
}

.header__search-input input::-webkit-input-placeholder {
    color: #000;
}

.header__search-input input::-moz-placeholder {
    color: #000;
}

.header__search-input input:-ms-input-placeholder {
    color: #000;
}

.header__search-input input::-ms-input-placeholder {
    color: #000;
}

.header__search-input input::placeholder {
    color: #000;
}

.header__tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
    gap: 0 !important;
}

.header__tel-link {
    font-size: 26px;
    font-weight: 500;
    color: #000;
}

.header__tel-desc {
    font-size: 15px;
    font-weight: 400;
    color: #000;
}

.header__tel-desc span {
    font-weight: 500;
}

.header__cart .count {
    position: absolute;
    height: 20px;
    width: 20px;
    white-space: nowrap;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin: -5px 0 0 -8px;
    background-color: #cc007d;
}

.header__menu-list {
    margin: 0;
    padding-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
}

.header__menu-list li {
    list-style-type: none;
}

.header__menu-link {
    color: #282828;
    font-family: "Rubik" !important;
    font-weight: 500;
}

.header__drop-menu-container {
    padding: 10px;
    background: rgba(255, 255, 255, 0.9294117647);
    border-radius: 15px;
}

.header__drop-menu {
    margin: 0;
    margin-top: 0;
    padding-left: 0;
}

.header__drop-menu-item {
    list-style-type: none;
}

.header__drop-menu-link {
    color: #282828;
}

.header__logo-title {
    font-family: "Circe", sans-serif;
    font-size: 2em !important;
}

.header__bottom {
    margin-top: 1em;
    padding-top: 1em;
    padding-bottom: 1em;
    background-color: #f5f5f5;
}

.header__bottom-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

.header__menu-link {
    font-size: 1.3em !important;
    min-height: auto !important;
}

.header__dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 50px;
}

.header__dropdown-column {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
}

.header__dropdown-title {
    font-size: 2em;
    font-weight: bold;
    color: #000 !important;
}

.header__dropdown-title:hover {
    text-decoration: underline !important;
}

.header__dropdown-link {
    color: inherit;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
}

.header__dropdown-link:hover {
    background-color: #f5f5f5;
    color: #cc007d;
}

.header__mobile-recall-btn {
    height: 40px;
    padding: 10px 15px;
}

.header__mobile-nav-wrapper {
    display: none;
    gap: 5px;
}

.icon-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.icon-card__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.icon-card__title {
    -moz-text-align-last: left;
    text-align-last: left;
    color: #113D63;
    font-size: 1.7em;
}

.icon-card__descr {
    -moz-text-align-last: left;
    text-align-last: left;
    font-size: 1.35em;
}

.icon-card__logo-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header__burger-btn {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    background: #8ec300;
    padding: 10px;
    border: 0;
}

.header__burger-btn_active .header__burger-line:nth-child(1) {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-135deg);
    -ms-transform: translate(-50%, -50%) rotate(-135deg);
    transform: translate(-50%, -50%) rotate(-135deg);
}

.header__burger-btn_active .header__burger-line:nth-child(2) {
    opacity: 0;
}

.header__burger-btn_active .header__burger-line:nth-child(3) {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
    -ms-transform: translate(-50%, -50%) rotate(135deg);
    transform: translate(-50%, -50%) rotate(135deg);
}

.header__burger-line {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 3px;
    width: 20px;
    border-radius: 10px;
    background: #F5F5F5;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.header__burger-line:nth-child(1) {
    top: calc(50% - 6px);
}

.header__burger-line:nth-child(3) {
    top: calc(50% + 6px);
}

.header__burger-menu {
    z-index: 1000;
}

.header__burger-menu-content {
    padding: 100px 20px 20px;
    background: #fff;
}

.header__burger-menu-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: auto;
}

.header__burger-menu-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 0px;
    border-bottom: 1px solid #113D63;
    list-style-type: none;
}

.header__burger-menu-item_text {
    text-align: center;
}

.header__burger-menu-btn {
    width: 100%;
}

.header__burger-menu-link {
    color: #113D63 !important;
}

.header__burger-menu-text {
    color: #113D63 !important;
    font-size: 1.5rem;
}

.header__burger-menu .header__dropdown-link{
	color: #113D63 !important;
}

.header__burger-menu-social-btns {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header .header__burger-menu-social-btn {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
}

.footer {
    border-top: 1px solid #dddddd;
    margin-top: 50px;
    padding: 60px 30px 60px 30px;
}

.footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer__column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    padding: 15px;
    gap: 10px;
}

.footer__company {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.footer__info {
    position: relative;
}

.footer__info-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.footer__info-title:before {
    content: url(../images/icons/i.svg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 24px;
    height: 24px;
    padding: 3px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 15px;
    border: 3px solid #9bc03b;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.footer__info-title:hover {
    color: #cc007d;
}

.footer__info-title:hover:before {
    border: 3px solid #cc007d;
}

.footer__info-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
}

.footer__info-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer__info-item:before {
    content: "";
    position: relative;
    min-width: 5px;
    height: 5px;
    border-radius: 50%;
    margin: 0;
    margin-top: -2px;
    margin-right: 10px;
    background-color: #cccccc;
}

.footer__info-link {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
}

.footer__info-link:hover {
    color: #cc007d;
}

.footer__pills {
    position: relative;
}

.footer__pills-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.footer__pills-title:before {
    content: url(../images/icons/pills.svg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 3px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 15px;
    border: 3px solid #9bc03b;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.footer__pills-title:hover {
    color: #cc007d;
}

.footer__pills-title:hover:before {
    border: 3px solid #cc007d;
}

.footer__pills-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
}

.footer__pills-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer__pills-item:before {
    content: "";
    min-width: 5px;
    height: 5px;
    border-radius: 50%;
    margin: 0;
    margin-top: -2px;
    margin-right: 10px;
    position: static;
    background-color: #cccccc;
}

.footer__pills-link {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 20px;
}

.footer__pills-link:hover {
    color: #cc007d;
}

.footer__contacts-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.footer__contacts-title:before {
    content: url(../images/icons/man.svg);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 24px;
    height: 24px;
    padding: 3px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 15px;
    border: 3px solid #9bc03b;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.footer__contacts-title:hover {
    color: #cc007d;
}

.footer__contacts-title:hover:before {
    border: 3px solid #cc007d;
}

.footer__contacts-desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 18px;
    font-weight: 500;
    gap: 10px;
}

.footer__contacts-desc a {
    font-size: 22px;
    color: #9bc03b;
}

.footer__contacts-desc a:hover {
    color: #cc007d;
}

.company__name {
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
}

.company__copy {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
}

.company__eng {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
}

.callback-popup {
    z-index: 1050;
}

.callback-popup__frame {
    border-radius: 5px;
    width: 700px;
}

.callback-popup__phone-input {
    border-radius: 5px;
}

.callback-popup__success {
    z-index: 1050;
}

.up-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    font-size: 18px !important;
    padding: 0;
    width: 55px;
    height: 55px;
    line-height: 55px;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background-color: #8ec300;
    border-color: #8ec300;
    color: #fff;
    border-radius: 5px;
}

.up-btn svg {
    margin: 0 auto;
}

.up-btn:hover {
    background-color: #5f7f00;
    border-color: #5f7f00;
    color: #fff;
}

.banners__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

.banner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    padding: 25px 25px 25px 25px;
    border-radius: 5px;
}

.banner:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    z-index: 1;
}

.banner:hover:after {
    opacity: 1;
}

.banner:hover .banner__btn {
    color: #282828;
    background-color: #DCDCDC;
}

.banner:nth-of-type(1) {
    width: 50.885%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.banner:nth-of-type(1) .banner__title {
    margin-bottom: 30px;
    font-size: 30px;
    text-align: right;
    line-height: 1.2;
}

.banner:nth-of-type(1) .banner__desc {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    line-height: 2.1em;
    letter-spacing: 0.1px;
    text-align: right;
}

.banner:nth-of-type(2) {
    width: 32.108%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.banner:nth-of-type(2) h2 {
    text-align: center;
}

.banner:nth-of-type(2) p {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    line-height: 2.1em;
    letter-spacing: 0.1px;
    text-align: center;
}

.banner:nth-of-type(2) .banner__btn {
    margin: 0 auto;
}

.banner:nth-of-type(3) {
    width: 16.339%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.banner:nth-of-type(3) h2 {
    text-align: center;
}

.banner:nth-of-type(3) .banner__btn {
    margin: 0 auto;
}

.banner__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7em;
    letter-spacing: 0.1px;
    color: #fff;
    border-color: #fff;
    z-index: 2;
}

.banner__desc {
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7em;
    letter-spacing: 0.1px;
    color: #fff;
    border-color: #fff;
    z-index: 2;
}

.banner__btn {
    font-weight: bold;
    text-transform: none;
    font-style: normal;
    line-height: 1.8em;
    padding: 0.5rem 2rem;
    font-size: 1.2rem;
    color: #f5f5f5;
    background-color: #9bc03b;
    border-style: none;
    border-radius: 39px;
    z-index: 2;
}

.banner__btn:nth-of-type(1) {
    margin-left: auto;
}

.banner__img {
    position: relative;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #fff;
    width: 100%;
    margin: 0;
}

.banner img {
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.wc-carousel__content {
    margin-bottom: 4rem;
}

.wc-carousel__top {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.wc-carousel__content {
    margin-bottom: 4rem;
}

.wc-carousel__title {
	padding-right: 10px;
    margin: 0;
	white-space: nowrap;
	font-size: 30px;
	font-weight: 500;
	color: #000;
}

.wc-carousel__line {
    height: 1px;
    background-color: #ebebeb;
	 flex-grow: 1;
    transition: width 0.3s ease;
}

.wc-carousel__controls {
	padding-left: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
}

.wc-carousel__controls .uk-slidenav-previous {
    margin: 0;
    font-size: 12px;
    display: block;
    text-align: center;
    color: #999;
    background: transparent;
    border: 2px solid #999;
    border-radius: 0;
    line-height: 21px;
    border-radius: 50%;
    font-weight: 700;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.wc-carousel__controls .uk-slidenav-previous:hover {
    color: #fff;
    background: #9BC03B;
    border-color: #9BC03B;
}

.wc-carousel__controls .uk-slidenav-previous svg {
    width: 12px;
    height: 12px;
}

.wc-carousel__controls .uk-slidenav-next {
    margin: 0;
    font-size: 12px;
    display: block;
    text-align: center;
    color: #999;
    background: transparent;
    border: 2px solid #999;
    border-radius: 0;
    line-height: 21px;
    border-radius: 50%;
    font-weight: 700;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.wc-carousel__controls .uk-slidenav-next:hover {
    color: #fff;
    background: #9BC03B;
    border-color: #9BC03B;
}

.wc-carousel__controls .uk-slidenav-next svg {
    width: 12px;
    height: 12px;
}

.wc-card {
    padding: 20px 30px;
    border: 2px solid #ebebeb;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.wc-card__title {
    font-size: 15px;
    margin-bottom: 5px;
    color: #000;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.wc-card__tags {
	margin-bottom: 5px;
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.wc-card__tag {
	display:flex;
}

.wc-card__tag-link{
    padding: 3px 3px 0 3px;
    border: 2px solid #ebebeb;
    border-radius: 8px;
    color: #262626;
	transition: all .3s ease;
   
}

  .wc-card__tag-link:hover{
	color: #fff;
	background: #cc007d;
	border: 2px solid #cc007d;  
}  

.wc-card__img {
	display: flex;
    overflow: hidden;
    justify-content: center;
    min-height: 216px;
}

.wc-card__img img{
	object-fit: contain;
}

.wc-card__desc {
	margin-top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
	border-top: 1px solid #ebebeb;
    padding-top: 0px;
    min-height: 55px;
    overflow: hidden;
}

.wc-card__price {
    font-size: 18px !important;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    color: #cc007d;
}

.wc-card__cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    background-color: #fff;
    font-size: 0;
    width: 38px;
    height: 38px;
    border-radius: 2px;
    border: 1px solid #e1e1e1;
}

.wc-card__cart:hover {
    background-color: #cc007d;
}

.wc-card__cart:hover path {
    fill: #fff;
}

.consultation {
    margin-top: 80px;
}

.consultation__content {
    min-height: 280px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    padding: 35px;
    border-radius: 5px;
}

.consultation__content:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    z-index: 1;
}

.consultation__content:hover:after {
    opacity: 1;
}

.consultation__content:hover .banner__btn {
    color: #282828;
    background-color: #DCDCDC;
}

.consultation__title {
    font-size: 23px;
    font-weight: 500;
    line-height: 1.7em;
    letter-spacing: 0.1px;
    color: #fff;
    border-color: #fff;
    z-index: 2;
}

.consultation__desc {
    margin-bottom: 30px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7em;
    letter-spacing: 0.1px;
    color: #fff;
    border-color: #fff;
    z-index: 2;
}

.consultation__btn {
    margin: 0 auto;
    font-family: "Rubik";
    font-weight: 500;
    text-transform: none;
    font-style: normal;
    line-height: 1.8em;
    padding: 1.5rem 4rem;
    font-size: 14px;
    color: #f5f5f5;
    background-color: #CC007D;
    border-style: none;
    border-radius: 50px;
    z-index: 2;
}

.dostavka__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
}

.dostavka__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.dostavka__card {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333%;
    flex: 0 0 33.333%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px;
}

.dostavka__card-img {
    padding: 0px 60px 20px 60px;
}

.dostavka__card-title {
    font-size: 19px;
    font-weight: 500;
    text-align: center;
}

.dostavka__card-title a {
    border-bottom: 1px dashed black;
    color: #eb6d81;
}

.dostavka__card-desc {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.875;
    text-align: center;
    color: #232323;
}

.dostavka__card-desc a {
    border-bottom: 1px dashed black;
    color: #eb6d81;
}

.dostavka__middle {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-column-align: center;
    justify-self: center;
}

.dostavka__btn {
    padding: 12px 35px;
    font-size: 14px;
    line-height: 1.875;
    font-weight: 500;
    border-radius: 5px;
    background-color: #8ec300;
    border-color: #8ec300;
    color: #fff;
}

.dostavka__btn:hover {
    color: #fff;
    background-color: #5f7f00;
    border-color: #5f7f00;
}

.dostavka__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.dostavka__block {
    margin-top: 120px;
    margin-bottom: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: 0px 0px 15px 1px rgba(133, 133, 133, 0.35);
    box-shadow: 0px 0px 15px 1px rgba(133, 133, 133, 0.35);
    padding: 40px 10px !important;
    margin: 90px 0px 0px 0px;
}

.dostavka__block:nth-of-type(3) {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.dostavka__block:nth-of-type(3) .dostavka__block-info {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.dostavka__block:nth-of-type(3) .dostavka__block-info .dostavka__block-title {
    margin: 0;
}

.dostavka__block:nth-of-type(3) .dostavka__block-info .dostavka__btn {
    margin-top: 20px;
}

.dostavka__block-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    padding: 0px 20px 20px 20px;
}

.dostavka__block-ems {
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.dostavka__block-ems p {
    width: 100%;
    color: #b66d00;
    font-family: "Rubik", Sans-serif;
    font-weight: 400;
    line-height: 1.8em;
    margin: 0px 0px 0px 0px;
    padding: 10px 0px 10px 0px;
    background-color: #fff3c9;
    border-style: solid;
    border-color: #ffd44f;
}

.dostavka__block-ems img {
    width: 600px;
}

.dostavka__block-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.dostavka__block-title {
    font-size: 18px;
    font-weight: 500;
    color: #000;
}

.dostavka__block-desc {
    font-size: 15px;
    line-height: 1.875;
}

.dostavka__block-desc h4 {
    margin: 0;
    margin-top: 20px;
    font-size: 15px;
    font-weight: 500;
    color: #000;
}

.cookie-note {
    display: none;
    z-index: 2000;
    position: fixed;
    bottom: 0px;
    width: 80%;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 15px;
    background-color: #F4F4FC;
    border: 2px solid #9bc03b;
    border-radius: 5px 5px 0 0;
}

.cookie-note__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.cookie-note__text a{
	color: #9bc03b;
}

.cookie-note__accept-btn {
    -ms-flex-negative: 0;
    flex-shrink: 0;
	background: #9bc03b;
}

.popup {
    z-index: 1050;
    text-align: center;
}

.popup__frame {
    border-radius: 5px;
    width: 700px;
}

@media (max-width: 1200.98px) {
    html {
        font-size: 11px;
    }

    .header__save-icon {
        display: none;
    }

    .header__search {
        gap: 10px;
    }

    .header__container {
        padding: 0 !important;
    }

    .header__dropdown {
        gap: 10px;
    }

    .header__menu-container {
        padding: 0 10px !important;
    }

    .header__burger-btn {
        display: block;
    }

    .footer-links__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        gap: 15px;
        padding: 40px 0px;
    }

    .footer-links__column {
        gap: 10px;
    }

    .footer__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px;
    }

    .footer__column {
        text-align: center;
    }

    .footer__payment-img {
        width: 15%;
    }

    .dostavka__top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .dostavka__block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .cookie-note {
        width: 100%;
    }
}

@media (max-width: 768.98px) {
    html {
        font-size: 10px;
    }

    .header {
        padding: 10px 20px;
    }

    .header__top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px;
        padding: 0;
    }

    .header__search {
        width: 100%;
    }

    .header__links-list {
        display: none;
    }

    .header__phone-icon {
        display: none;
    }

    .header__bottom .header__bottom-content nav {
        display: none;
    }

    .header__recall-btn {
        display: none;
    }

    .header__mobile-nav-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .header__logo-title {
        font-size: 1.5em !important;
    }

    .header__logo-descr {
        font-size: 1.2em !important;
    }

    .header__logo-icon {
        gap: 5px;
    }

    .callback-popup__title {
        font-size: 1.9em;
    }

    .banners__content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .banner {
        -ms-flex-line-pack: center;
        align-content: center;
    }

    .banner h2 {
        font-size: 15px;
    }

    .banner:nth-of-type(1) {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .banner:nth-of-type(2) {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
        flex: 0 0 48%;
    }

    .banner:nth-of-type(3) {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }
	
	@media (max-width: 426.98px) {
		 .banner:nth-of-type(2) {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .banner:nth-of-type(3) {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
	}

    .cookie-note__content {
        text-align: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (max-width: 375.98px) {
    .banner:nth-of-type(1) {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .banner:nth-of-type(2) {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .banner:nth-of-type(3) {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}

@media (any-hover: hover) {
    a:hover {
        color: #282828;
    }

    .btn:hover {
        text-decoration: none;
        color: #282828;
        background: #DCDCDC;
    }

    .btn_dark:hover {
        color: #000000;
        background: #DCDCDC;
    }

    .header__drop-menu-link:hover {
        color: #282828;
        text-decoration: none;
    }
}
