@charset "UTF-8";

/*Обнуление*/
* {
    padding: 0;
    margin: 0;
    border: 0;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}
.grecaptcha-badge {
    display: none !important;
}
nav,
footer,
header,
aside {
    display: block;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    margin: 0;
    transition: 0.3s ease all;
}

body.lock {
    overflow: hidden;
}

input,
button,
textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

a {
    color: #fff;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

h1 {
    color: #424242;
    font-family: Rubik;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 45px;
}

h2 {
    color: #424242;
    font-family: Rubik;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 35px;
}
@media(max-width: 991px) {
    h1, h2 {
       margin-bottom: 35px;
    }
}
@media(max-width: 770px) {
    h1, h2 {
        font-size: 25px;
        margin-bottom: 25px;
    }
}

h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

body {
    font-family: "Roboto flex";
    font-size: 16px;
    color: #fff;
    background-color: #fff;
}

[class*="_flex"] {
    display: flex;
}


[class*="__container"] {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0px 40px;

}

@media (max-width: 1100px) {

    [class*="__container"] {
        padding: 0px 30px;
    }
}

@media (max-width: 768px) {

    [class*="__container"] {
        padding: 0px 15px;
    }
}

.form-agreed {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
	font-size: 14px;
	line-height: 17px;
}

.form-agreed input {
    margin-top: 6px;
	width: auto !important;
}
span[data-name="agreed_373"] {
	margin-bottom: 0;
}
.form-agreed__hide {
	display: none;
}

.form-agreed a {
	text-decoration: underline;
}
.popup .form-agreed a {
	color: #fff;
}
.support .form-agreed a {
	color: #000;
}
.woocommerce-info {
    text-align: center;
    color: #000;
    font-size: 21px;
    margin-bottom: 30px;
}
.added_to_cart {
	display: none !important;
}

.page-main {
    padding-top: 80px;
    padding-bottom: 65px;
}
@media(max-width: 991px) {
    .page-main {
    padding-top: 50px;
    padding-bottom: 40px;
    }
}
@media(max-width: 768px) {
    .page-main {
    padding-top: 30px;
    padding-bottom: 30px;
    }
}

.mb20 {
    margin-bottom: 20px;
}
.mb65 {
    margin-bottom: 65px;
}
.mb100 {
    margin-bottom: 100px;
}
@media(max-width: 540px) {
    .mb65 {margin-bottom: 40px;}
}

.button {
    width: 100%;
    height: 60px;
    border-radius: 6px;
    background: #02A69E;
    color: #fff;
    outline: none;
    font-size: 18px;
    border-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    cursor: pointer;
    transition: color .3s;
}
.button:hover {
    background: linear-gradient(180deg, #021B19 6.77%, #004946 100%);
}
.button-2 {
    width: 100%;
    height: 60px;
    font-size: 18px;
    border-radius: 6px;
    background: #fff;
    color: #424242;
    box-shadow: 0px 4px 4px 0px #00000040;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    cursor: pointer;
    transition: color .3s;
}
.button-2:hover {
    background: #02A69E;
    color: #fff;
}

.form-input {
    position: relative;
}
.form-input label {
    width: 100%;
    font-size: 18px;
    color: #000;
    margin-bottom: 5px;
    display: block;
}
.form-input input {
    border: 1px solid #02A69E;
    background: #fff;
    height: 60px;
    width: 100%;
    border-radius: 5px;
    padding: 0px 15px;
    font-size: 18px;
}
.form-input input::-moz-placeholder {
    color: #bbb;
    opacity: 1;
}
.form-input input:-ms-input-placeholder {
    color: #bbb;
    opacity: 1;
}
.form-input input::placeholder {
    color: #bbb;
    opacity: 1;
}
.form-input input::-webkit-input-placeholder {
    color: #bbb;
    opacity: 1;
}
.form-input__error {
    color: red;
    position: absolute;
    bottom: 0;
    line-height: 55px;
    margin: auto;
    right: 10px;
    opacity: 0;
    font-size: 18px;
    z-index: 1;
}
.error input {
    border-color: red;
}
.error .form-input__error {
    opacity: 1;
}
.form-input input:required:focus:invalid {
    border-color: red;
}
.form-input input:required:focus:invalid + span::before {
    content: "*";
    display: block;
    color: red;
    position: absolute;
    bottom: 0;
    line-height: 55px;
    margin: auto;
    right: 10px;
    font-size: 18px;
    z-index: 1;
}

.form-input input:required + span::before {
    content: "*";
    display: block;
    color: #02A69E;
    position: absolute;
    bottom: 0;
    line-height: 55px;
    margin: auto;
    right: 10px;
    font-size: 18px;
    z-index: 1;
}
.form-input input:required {
    padding: 0 25px 0 15px;
}


.form-list {
    width: 100%;
}
.form-list label {
    padding-left: 20px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 5px;
    cursor: pointer;
    color: #000;
}
.form-list label:last-child {
    margin-bottom: 0;
}
.form-list input {
    position: absolute;
    left: 0;
    top: 4px;
}
.form-list label span {
    font-weight: 600;
    color: #646464;
}
.form-list__load {
    display: block;
    width: 100%;
    text-align: center;
}
.form-list__load:before {
    display: inline-block;
    content: "";
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 3px solid #02A69E;
    background: #fff;
    border-top-color: transparent;
    -webkit-animation: rotate .5s infinite linear;
    animation: rotate .5s infinite linear;
}
.form-list__mess {
    margin-top: 20px;
    color: red;
}


.form-select {
    position: relative;
}
.form-select label {
    width: 100%;
    font-size: 18px;
    color: #000;
    margin-bottom: 5px;
    display: block;
}
.form-select__wrapper {
    background: #fff;
    position: relative;
}
.form-select__head {
    height: 60px;
    border-radius: 5px;
    border: 1px solid #02A69E;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    justify-content: space-between;
    padding: 0 50px 0 15px;
}
.form-select__wrapper span {
    color: #9b9b9b;
}
.form-select__arrow {
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.form-select__list {
    left: 0;
    right: 0;
    padding: 15px;
    border-radius: 0 0 5px 5px;
    background: #fff;
    border: 1px solid #02A69E;
    border-top: 0;
    position: absolute;
    z-index: 2;
    max-height: 300px;
    overflow: auto;
    top: calc(100% + -4px);
    display: none;
}
.form-select__load {
    display: none;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 3px solid #02A69E;
    background: #fff;
    border-top-color: transparent;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
    -webkit-animation: rotate .5s infinite linear;
    animation: rotate .5s infinite linear;
}
.form-select ul .form-select__load {
    left: 0;
    right: 0;
}
.form-select__list:after {
    left: 15px;
    right: 15px;
    position: absolute;
    top: 0;
    content: "";
    height: 1px;
    background: #02A69E;
}
.form-select__list li {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
}
.form-select__list li.active span,
.form-select__list li:hover span {
    color: #02a69e;
}
.form-select__list li:last-child {
    margin-bottom: 0;
}

.form-search {
    width: 100%;
}
.form-search label {
    width: 100%;
    font-size: 18px;
    color: #000;
    margin-bottom: 5px;
    display: block;
}
.form-search input {
    border: 1px solid #02A69E;
    background: #fff;
    height: 60px;
    width: 100%;
    border-radius: 5px;
    padding: 0 50px 0 15px;
    font-size: 18px;
}
.form-search__row {
    position: relative;
}
@-webkit-keyframes rotate { 0% {transform: rotate(0deg);} 100% { transform: rotate(360deg);} }
@keyframes rotate { 0% {transform: rotate(0deg);} 100% { transform: rotate(360deg);} }
.form-search__load {
    display: none;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 3px solid #02A69E;
    background: #fff;
    border-top-color: transparent;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
    -webkit-animation: rotate .5s infinite linear;
    animation: rotate .5s infinite linear
}
.form-search__image {
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.form-search__result {
    left: 0;
    right: 0;
    padding: 15px;
    max-height: 300px;
    overflow: auto;
    border-radius: 0 0 5px 5px;
    background: #fff;
    border: 1px solid #02A69E;
    border-top: 0;
    position: absolute;
    z-index: 2;
    top: calc(100% + -4px);
    display: none;
}
.form-search__result:after {
    left: 15px;
    right: 15px;
    position: absolute;
    top: 0;
    content: "";
    height: 1px;
    background: #02A69E;
}
.form-search__result li {
    color: #000;
    margin-bottom: 10px;
    cursor: pointer;
}
.form-search__result li:last-child {
    margin-bottom: 0;
}
.form-search__result li:hover {
    color: #02a69e;
}
#search_city {
    width: 360px;
    max-width: 100%;
}



.form-textarea label {
    width: 100%;
    font-size: 18px;
    color: #000;
    margin-bottom: 5px;
    display: block;
}
.form-textarea textarea {
    border: 1px solid #02A69E;
    background: #fff;
    height: 160px;
    width: 100%;
    border-radius: 5px;
    padding: 15px;
    font-size: 18px;
}
.form-textarea textarea::-moz-placeholder {
    color: #bbb;
    opacity: 1;
}
.form-textarea textarea:-ms-input-placeholder {
    color: #bbb;
    opacity: 1;
}
.form-textarea textarea::placeholder {
    color: #bbb;
    opacity: 1;
}
.form-textarea textarea::-webkit-input-placeholder {
    color: #bbb;
    opacity: 1;
}


.delivery-method label {
    width: 100%;
    font-size: 18px;
    color: #000;
    margin-bottom: 20px;
    display: block;
}
.delivery-method__wrapper {
    display: flex;
}
.delivery-method__wrapper span {
    border: 1px solid #9B9B9B;
    width: 240px;
    line-height: 55px;
    border-radius: 5px;
    text-align: center;
    color: #000;
    margin-right: 25px;
    cursor: pointer;
}
.delivery-method__wrapper span.active {
    border: 3px solid #02A69E;
}
.delivery-method__wrapper span:last-child {
    margin-right: 0;
}
@media(max-width: 550px) {
    .delivery-method__wrapper span {
        width: 165px;
        margin-right: 10px;
    }
    .delivery-method__wrapper span:last-child {
        margin-right: 0;
    }
}
@media(max-width: 380px) {
    .delivery-method__wrapper span {
        width: 135px;
    }
}


.city-select {
    display: flex;
    align-items: center;
}
.city-select__location {
    margin-right: 5px;
}
.city-select__title {
    font-size: 18px;
    margin-right: 10px;
    color: #000;
}

.confirm {
    font-size: 14px;
    color: #000;
    font-size: 17px;
    font-weight: 300;
}
.confirm a {
    text-decoration: underline;
    color: #000;
}
.confirm a:hover {
    color: #02A69E;
}

/*=========================== COMMON ELEMENTS ==========================================*/
.btn {
    color: #626262;
    font-size: 18px;
    font-weight: 700;
    padding: 20px 69px;
    border-radius: 6px;
}

.btn_white {
    background: #FFF
}

.btn_green {
    background: #02A69E
}

.btn:hover {
    background: #DEF2EC
}

/*  PHONE AND SOCIAL BLOCK*/
.phone-soc {
    font-size: 18px;
}

.phone-soc div {
    margin-bottom: 10px;
}
.phone-soc div a:hover {
    color: #02a69e;
}

.phone-soc__socials {
    display: flex !important;
    justify-content: flex-start;
    align-items: center;
    gap: 17px;
    display: block;
    font-weight: 400;
}
.phone-soc__socials a:hover path {
    fill: #02a69e;
}

/* Header ============================================================================ */
.header {
    z-index: 4;
    position: relative;
    background: #fff;
    border-bottom: 1px solid #02A69E;
}

.header_home {
    background: transparent;
    border-bottom: 0;
    margin-bottom: -104px;
}


.header__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0px;
    gap: 5px;
}

.menu {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    max-width: 600px;
    justify-content: space-between;
    font-weight: 300;
}

.menu li {
    margin-right: 16px;
}

.menu li:last-child {
    margin-right: 0;
}

.menu li a {

    color: #000;
}

.header_home .menu li a {
    color: #fff;
}

.menu li a:hover {
    color: #00cec4;
}

.header__contacts {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.header__phone {
    font-size: 21px;
    font-weight: 700;
    color: #000;
}

.header_home .header__phone {
    color: #fff;
}
.header_home .header__call {
    color: #909090;
}

.header__menu_number:hover {
    color: #00cec4;
}

.header__call {
    color: #909090;
    font-size: 14px;
    font-weight: 300;
    text-decoration-line: underline;
}

.header__cart {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #02A69E;
    transition: 0.3s ease all;
    position: relative;
}
.header__cart span {
    font-size: 8px;
    text-align: center;
    display: inline-block;
    margin-left: 9px;
    border-radius: 50%;
    width: 25px;
    line-height: 25px;
    position: absolute;
    left: -13px;
    top: -13px;
    font-size: 14px;
    background-color: #A2AAAA;
    color: #fff;
}

.header__cart.active {
    visibility: hidden;
    opacity: 0;
}

.header__cart:hover path {
    fill: #00ccc2;
}
.header__cart:hover a {
    background-color: transparent;
}
.header__cart:hover {
    background-color: #fff;
	outline: 1px solid #02A69E;
}

.header__mobile-contacts {
    display: none;
}

.header__burger {
    display: none;
}

@media (max-width: 1100px) {

    .header_home {
        margin-bottom: -97px;
    }
    .header__phone {
        font-size: 18px;
    }

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

    .header__logo img {
        max-width: 150px;
    }
}

@media (max-width: 992px) {
    .header__burger.active {
        height: 19px;
    }

    .header__burger.active::after,
    .header__burger.active::before {
        background-color: #fff;
    }

    .header__burger {
        flex: 0 0 31px;
        display: block;
        position: relative;
        width: 32px;
        height: 17px;
        position: relative;
        z-index: 0;
        margin-left: 14px;
        z-index: 3;
    }

    .header__burger span {
        position: absolute;
        background-color: #474747;
        position: absolute;
        left: 0;
        width: 100%;
        height: 5px;
        top: 7px;
        transition: all 0.3s ease 0s;
    }

    .header__burger::before,
    .header__burger::after {
        content: '';
        background-color: #474747;
        position: absolute;
        width: 100%;
        height: 5px;
        left: 0;
        transition: all 0.3s ease 0s;
    }

    .header_home .header__burger::before,
    .header_home .header__burger::after,
    .header_home .header__burger span {
        background-color: #fff;
    }

    .header__burger::before {
        top: -1px;
    }

    .header__burger::after {
        bottom: -3px;
    }

    .header__burger.active::before {
        transform: rotate(45deg);
        top: 7px;
    }

    .header__burger.active span {
        transform: scale(0);
    }

    .header__burger.active::after {
        transform: rotate(-45deg);
        bottom: 7px;
    }

    .header__wrap {
        display: flex;
        justify-content: unset;
    }

    .header__logo {
        flex: 1 1 auto;
        z-index: 3;
    }

    .header__logo img {
        max-width: 137px;
    }

    .header__menu {
        height: 100%;
    }

    .header__menu {
        position: fixed;
        top: 0px;
        left: -200%;
        transition: 0.3s ease all;
        background: linear-gradient(180deg, #021B19 6.77%, #004946 100%);
        width: 100%;
        z-index: 2;
        max-width: 100%;
        display: flex;
        flex-direction: column
    }

    .header__menu.active {
        left: 0;
    }

    .menu {
        flex-direction: column;
        align-items: start;
        transition: 0.3s ease all;
        gap: 18px;
        padding: 120px 15px 30px 15px;

        height: 100%;
        width: 100%;
        justify-content: flex-start;
        z-index: 2;
        max-width: 100%;
    }

    .menu li {
        width: 100%;
    }

    .header__menu::after {
        display: flex;
        align-items: center;
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        background: linear-gradient(180deg, rgba(2, 166, 147, 0.00) 2.08%, rgba(23, 200, 179, 0.23) 52.60%, rgba(3, 105, 93, 0.00) 100%);
        width: 100%;
        height: 70%;
        z-index: -1;
    }

    .menu li a {
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        display: block;
    }

    .header__mobile-contacts {
        display: block;
        font-size: 18px;
        font-weight: 600;
        padding: 120px 15px 30px 15px;
    }

}

@media (max-width: 500px) {
    .header__contacts {
        display: none;
    }
}


/*-------------------HOME BANNER-------------------------------------------------*/
.home-first {
    position: relative;
    z-index: 3;
    padding-top: 104px;
    background: linear-gradient(180deg, #021B19 6.77%, #004946 100%);
    /* background: url(../imgs/bg-home.png); */
    background-size: cover;
}
.home-first:after {
    content: "";
    background: linear-gradient(180deg, rgba(2, 166, 147, 0.00) 2.08%, rgba(23, 200, 179, 0.23) 52.60%, rgba(3, 105, 93, 0.00) 100%);
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 90%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
}

.home-first:before {
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 40%;
    left: 0;
    right: 0;
    bottom: 0;
}
.vb-bg {
    background: linear-gradient(180deg, #021B19 6.77%, #004946 100%);
}

.video-banner__container {
    overflow: hidden;
}
.video-banner {
    display: flex;
    padding: 107px 0px 65px 0px;
    gap: 50px;
}

.video-banner__left {
    flex: 0 1 60%;
    margin-left: 77px;
    display: flex;
    flex-direction: column;
}

.video-banner__title {
    font-family: Rubik;
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
    max-width: 450px;
    margin-bottom: 46px;
	color: #fff;
}

.video-banner__title span {
    font-family: Rubik;
    font-size: 66px;
    font-weight: 700;
    line-height: 120%;
}

.video-banner__subtitle {
    font-size: 24px;
    line-height: 28px;
    font-weight: 300;
    flex: 1 1 auto;
    max-height: 150px;
    max-width: 285px;
    position: relative;
}

.video-banner__button {
    position: absolute;
    right: -80%;
    top: -40px;
    border-radius: 50%;
    cursor: pointer;
}

.video-banner__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.video-banner__card {
    border-radius: 8px;
    border: 1px solid #02A69E;
    box-shadow: 0px 0px 6px 0px #8EFFFA;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    height: 52px;
    line-height: 14px;
    font-weight: 500;
    max-width: 175px;
    width: 100%;
}
.video-banner__card span {
    width: 99px;
}

.video-banner__right {
    flex: 0 1 40%;
    position: relative;
    top: -30px;
}

.video-banner__right-shadow {
    position: absolute;
    bottom: -10%;
    right: 2%;
    z-index: -1;
}

.timer {
    border-radius: 9px;
    background: linear-gradient(180deg, #02A69E 0%, #065753 100%);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: -20px;
    z-index: 999;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: auto;
    width: 1200px;
}
.timer-fixed {
    position: fixed;
    bottom: 20px;
}

.timer__image {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 60px;
}

.timer__image img {
    margin-top: -15px;
}

.timer__image span {
    color: #F1F1F1;
    font-size: 20px;
    max-width: 155px;
    line-height: 23px;
}

.timer__clock {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-right: 26px;
}

.hour,
.minute,
.second {
    text-align: center;
}

.hour-numbers,
.minute-numbers,
.second-numbers {
    position: relative;
    margin-bottom: 10px;
}

.hour-numbers::before,
.minute-numbers::before {
    content: '';
    position: absolute;
    top: 18px;
    right: -20px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #1f1f1f;
}

.hour-numbers::after,
.minute-numbers::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -20px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #1f1f1f;
}

.hour-numbers span,
.minute-numbers span,
.second-numbers span {
    font-size: 48px;
    font-weight: 600;
    border-radius: 9px;
    background: linear-gradient(180deg, #3C3C3C 0%, #0C0C0C 100%);
    padding: 3px 10px;
}

.timer__wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.timer__price {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 32px;
    font-weight: 700;
}

.timer__price span {
    color: rgba(255, 255, 255, 0.49);
    font-size: 36px;
    text-decoration: line-through;
    display: flex;
    font-weight: 300;
    align-items: center;
    margin-right: 26px;
}

.timer__percent {
    font-size: 8px;
    text-align: center;
    display: inline-block;
    margin-left: 9px;
    border-radius: 50%;
    width: 45px;
    line-height: 45px;
    font-size: 14px;
    background-color: #fff;
    color: #000;
}

.timer__add {
    margin-left: 22px;
    width: 60px !important;
}
.timer__button {
    width: 200px;
}

.timer {
    display: flex;
    align-items: center;
    gap: 5px;
}
.timer-v .timer__price {
    flex-direction: column;
    font-size: 26px;
}
.timer-v .timer__price span {
    font-size: 20px;
}
.timer-v .timer__price .timer__percent {
    position: absolute;
    font-size: 8px;
    width: 26px;
    line-height: 26px;
    right: -8px;
    top: -13px;
}


@media (max-width: 1240px) {
    .timer {
        width: 980px;
    }
    .hour-numbers span, .minute-numbers span, .second-numbers span {
        font-size: 30px;
    }
    .timer__price {
        font-size: 26px;
    }
    .timer__price span {
        font-size: 28px;
    }
    .timer-v .timer__image {
        margin-right: 10px;
    }
}
@media(max-width: 1100px) {
    .home-first {
        padding-top: 97px;
    }
    .video-banner__right img {
        width: 400px;
        margin-top: 85px;
    }
    .video-banner__right {
        left: -80px;
    }
    .video-banner__button {
        right: -50%;
    }
    .video-banner__right img {
        width: 355px;
    }
    .video-banner__right {
        left: -170px;
        margin-bottom: 40px;
    }
}
@media (max-width: 1000px) {
    .timer {
        width: 840px;
        height: 106px;
    }
    .timer__image {
        padding-left: 20px;
    }
    .timer__image img {
        display: none;
    }
    .hour-numbers span, .minute-numbers span, .second-numbers span {
        font-size: 22px;
    }
}
@media (max-width: 900px) {
    .timer {
        width: 710px;
        height: auto;
        flex-wrap: wrap;
        padding-bottom: 20px;
    }
    .timer__clock {
        padding-left: 20px;
    }
    .hour-numbers span, .minute-numbers span, .second-numbers span {
        font-size: 20px;
    }
    .timer__image {
        text-align: center;
        margin-bottom: 5px;
        width: 100%;    
        margin-top: 10px;
        margin-right: 0;
    }
    .timer__image span {
        max-width: 100%;
        width: 100%;
    }
    .timer__image img {
        display: none;
    }
}
@media (max-width: 768px) {
    

    .header-mobile-only {
        display: flex;
        flex: 1 1 auto;
        text-align: center;
    }

    .timer__price-wrap {
        margin: 0;
        width: 100%;
        justify-content: center;
    }

    .hour-numbers span,
    .minute-numbers span,
    .second-numbers span {
        font-size: 24px;
        font-weight: 600;
        border-radius: 9px;
        background: linear-gradient(180deg, #3C3C3C 0%, #0C0C0C 100%);
        padding: 2px 8px;
    }

    .hour-numbers::after,
    .minute-numbers::after {
        top: 7px;
        right: -7px;
        width: 3px;
        height: 3px;
    }

    .hour-numbers::before,
    .minute-numbers::before {
        top: 15px;
        right: -7px;
        width: 3px;
        height: 3px;
    }

    .timer__image span {
        max-width: 100%;
        margin: 0 0px 5px 0px;
    }

    .timer__image img {
        display: none;
    }

    .timer__clock {
        gap: 10px;
        max-width: 353px;
        width: 100%;
        margin: 0px 0px 10px 0px;
    }

    .header__timer {
        flex-direction: column;
        padding-bottom: 20px;
        border-radius: 0;
        margin-left: -15px;
        margin-right: -15px;
    }

    .header__button_absolute {
        right: auto;
        left: 0;
        top: 130%;
        z-index: 1;
    }

    .header__button_absolute img {
        width: 80%;
    }

    .video-banner__card {
        display: flex;
        align-items: start;
        flex-direction: column;
        height: auto;
        gap: 10px;
        font-size: 12px;
        font-weight: 500;
        max-width: 175px;
        width: 100%;
        padding: 8px;
    }

    .video-banner__card img {
        max-height: 35px;
        max-width: 30px;
    }

    .video-banner__cards {
        gap: 9px;
    }

    .video-banner__card img {
        flex: 1 1 auto;
    }

    .video-banner__right {
        position: absolute;
        top: 312px;
        right: 0;
        text-align: right;
    }

    .video-banner__rightimg {
        width: 80%;
    }

    .header::after {
        display: none;
    }

    .video-banner__title {
        margin-bottom: 18px;
    }

    .video-banner__subtitle {
        font-size: 19px;
        max-height: 150px;
        margin-bottom: 269px;
        max-width: 255px;
        position: relative;
    }

    .video-banner__title span {
        font-size: 50px;
        max-width: 100%;
    }

    .video-banner__left {
        flex: 0 1 100%;
        margin-left: 0px;
        display: flex;
        flex-direction: column;
    }

    .video-banner__wrap {
        display: flex;
        flex-direction: column;
        margin: 0px 0px 24px 0px;
        gap: 0px;
    }

    .video-banner {
        padding: 25px 0px 32px 0px;
    }

    .home-station {
        padding-top: 150px;
    }

    .video-banner__button {
        right: auto;
        position: absolute;
        top: auto;
    }

    .video-banner__right-shadow {
        display: none;
    }

    .video-banner__right img {
        width: 305px;
    }

    .timer {
        max-width: 100%;
        border-radius: 0;
        bottom: auto;
    }
    .timer-fixed {
        bottom: 0;
    }
    .timer__clock {
        margin: 0;
        padding: 0px 10px;
        justify-content: center;
        max-width: 100%;
        margin-bottom: 15px;
        font-size: 14px;
    }
    .timer__price {
        font-size: 26px;
    }
    .timer__price span {
        font-size: 26px;
    }
    .hour-numbers span, .minute-numbers span, .second-numbers span {
        font-size: 18px;
    }
    .timer__wrap {
        width: 100%;
        max-width: 100%;
        padding: 0px 10px;
        margin-right: 0;
    }
    .timer__wrap a {
        width: 70%;
        text-align: center;
    }

    .video-banner__right img {
        margin-top: 0;
    }
    
    .timer-v .timer__wrap a{
        width: 100%;
    }

}

@media (max-width: 500px) {
    .video-banner__right {
        top: 335px;
    }
    .video-banner__right img {
        width: 230px;
    }
    .video-banner__subtitle {
        margin-bottom: 230px;
    }
    .video-banner__button img {
        width: 80px;
    }

    .video-banner__title span {
        font-size: 47px;
    }
}
@media (max-width: 430px) {
    .video-banner__cards {
        display: inline-flex;
    }
    .video-banner__card {
        display: inline-block;
        /* width: auto; */
    }
    .video-banner__card img {
        display: block;
        height: 35px;
        margin-bottom: 15px;
    }
}
@media (max-width: 350px) {
    .video-banner__title span {font-size: 40px;}
}

/* FOOTER ===========================================================================================*/
.footer {
    padding: 65px 0px 35px;
    background: linear-gradient(180deg, #021B19 6.77%, #004946 100%);
    /* background-image: url(../imgs/bg-footer.png); */
    background-size: cover;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.footer:before {
    content: "";
    background: linear-gradient(180deg, rgba(2, 166, 147, 0.00) 2.08%, rgba(23, 200, 179, 0.23) 52.60%, rgba(3, 105, 93, 0.00) 100%);
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 613px;
    left: 0;
    right: 0;
    top: 100px;
}

.footer__flexbox {
    display: flex;
    justify-content: space-between;
}

.footer__logo {
    flex: 1 1 auto;
}

.footer__logo img {
    max-width: 183px;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 20px;
    column-gap: 40px;
    flex: 0 1 60%;
    justify-content: center;
}

.footer__grid a,
.footer-socials {
    font-size: 16px;
    font-weight: 400;
}
.footer__grid a:hover {
    color: #02A69E;
}

.footer__document {
    margin-top: 52px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 15px;
}
.footer__document span {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .footer {
        padding: 37px 0px 66px 0px;
    }

    .footer__flexbox {
        flex-direction: column;
        gap: 40px;
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 20px;
        column-gap: 0px;
        flex: 0 1 60%;
        justify-content: space-between;
    }

    .footer__grid li:nth-child(1) {
        order: 1;
    }

    .footer__grid li:nth-child(2) {
        order: 2;
    }

    .footer__grid li:nth-child(3) {
        order: 7;
    }

    .footer__grid li:nth-child(4) {
        order: 3;
    }

    .footer__grid li:nth-child(5) {
        order: 4;
    }

    .footer__grid li:nth-child(6) {
        order: 7;
    }

    .footer__grid li:nth-child(7) {
        order: 5;
    }

    .footer__grid li:nth-child(8) {
        order: 6;
    }

    .footer__grid li {
        max-width: 149px;
    }

    .footer__grid a {
        font-size: 16px;
        font-weight: 400;
        display: flex;
    }

    .footer__document {
        margin-top: 40px;
        text-align: left;
    }
}

/*=====================HOME INDEX ====================================================================*/




.main-title {
    color: #02A69E;
    font-family: Rubik;
    font-size: 32px;
    font-weight: 700;
    line-height: 110%;
}

.main-text {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
}

.main-subtext {
    font-size: 14px;
}

.main-button {
    transition: 0.3s ease all;
}

.main-button:hover {
    background: #DEF2EC;
}

.main-button:active {
    background: #02A69E;
    color: #fff;
}

.main-h1 {
    color: #424242;
    font-family: Rubik;
    font-size: 32px;
    font-weight: 700;
    line-height: 135%;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 25px;
        font-weight: 700;
        line-height: 110%;
    }
}

.main-subbutton {
    transition: 0.3s ease all;
    background: #02A69E;
    color: #fff;
}

.main-subbutton:hover {
    background: #DEF2EC;
    color: #02A69E;
}

.main-subbutton:active {
    background: linear-gradient(180deg, #021B19 6.77%, #004946 100%);
    color: #fff;
}

.main-bag-button {
    background-color: #A2AAAA;
}

.main-bag-button:hover img {
    transition: 0.3s ease all;
    filter: invert(41%) sepia(5%) saturate(6%) hue-rotate(26deg) brightness(90%) contrast(86%);
}

.main-bag-button:active {
    transition: 0.3s ease all;
    background-color: #02A69E;
}

.main-bag-button:active img {
    filter: unset;
}


/* HOME STATION SECTION ============================================================================*/
.home-station {
    margin: 91px 0px 19px 0px;
}

.home-station__columns {
    display: flex;
    padding: 31px 20px 72px 80px;
    border-radius: 42px;
    background: #F4F4F4;
    gap: 58px;
}

.shome-station__content {
    flex: 0 1 55%;
}

.home-station__title {
    max-width: 420px;
    margin-bottom: 40px;
}
.home-station__img2 img {
	width: 100%;
}
.home-station__subtitle {
    max-width: 488px;
    margin-bottom: 50px;
}

.home-station__card {
    display: flex;
    background: linear-gradient(180deg, #021B19 6.77%, #004946 100%);
    border-radius: 35px;
    gap: 24px;
    height: 133px;
}


.home-station__img {
    position: relative;
    flex: 0 1 157px;
}

.home-station__img img {
    position: absolute;
	width: 156px;
    top: -12px;
    left: -49px;
    z-index: 1;
}

.home-station__text {
    padding-top: 23px;
}
.home-station__title2 {
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 20px;
}

.home-station__subtitle2 {
    font-size: 18px;
    line-height: 120%;
    padding-right: 40px;
}

.home-station__img2 {
    flex: 0 1 50%;
	width: 50%;
}
@media (max-width: 1080px) {
    
    .home-station__columns {
      flex-direction: column;
      padding: 25px 10px 16px 15px;
      gap: 25px;
    }
    .home-station__title {
      max-width: 100%;
      margin-bottom: 13px;
    }
    .home-station__subtitle {
      max-width: 100%;
      margin-bottom: 93px;
    }
    .home-station__card {
      flex-direction: column;
      gap: 24px;
      height: auto;
      padding: 0px 15px 15px 15px;
    }
    .home-station__img{
      position: relative;
      flex: 0 1 10px;
    }
    .home-station__img img{
      width: 130px;
      top: -75px;
      left: 50%;
      margin-left: -65px;
    }
    .home-station__title2 {
      font-size: 16px;
      margin-bottom: 10px;
    }
    .home-station__subtitle2 {
      font-size: 16px;
      padding-right: 40px;
    }
	.home-station__img2{
      width: 100%;
    }
    .home-station__img2 img{
      width: 100%;
    }
  }


/* banner SECTION ============================================================================*/
.banner {
    height: 416px;
    background-image: url(../imgs/banner-1.jpg);
    width: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.banner__container {
    position: relative;
}

.banner__absolute {
    position: absolute;
    top: calc(50% + 107px);
    border-radius: 0px 24px 24px 0px;
    background: rgba(3, 28, 27, 0.70);
    padding: 18px 27px 33px 80px;
	height: 214px;
}
.banner__background {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 0;
    top: 0;
    background-size: cover;
    background-position: center;
    display: none;
}
.banner__absolute::before {
    content: '';
    position: absolute;
    top: calc(50% - 107px);
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(3, 28, 27, 0.70);
}

.banner__absolute.right {
    right: 0;
    border-radius: 24px 0 0 24px;
    padding: 18px 80px 33px 25px;
}
.banner__absolute.right::before {
    left: auto;
    right: -100%;
}

.banner__title {
    font-family: Rubik;
    font-size: 32px;
    font-weight: 700;
    line-height: 110%;
    max-width: 380px;
    margin-bottom: 28px;
	color: #fff;
}

.banner__subtitle {
    color: #fff;
    max-width: 380px;
}
@media (max-width: 1080px) {
    .banner {
      height: 348px;
      width: calc(100% - 0px);
      margin: 0 auto;
      background: none !important;
      position: relative;
    }
    .banner__background {
        display: block;
        width: calc(100% - 30px);
        border-radius: 42px;
        z-index: -1;
    }
    .banner__container {
      position: relative;
    }
    .banner__absolute {
      position: absolute;
      top: calc(50% + 70px);
      border-radius: 0px 24px 24px 0px;
      padding: 31px 17px 31px 0px;
      margin-right: 21px;
    }
    .banner__absolute::before{
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      z-index: 1;
    }
    .banner__absolute.right {
        padding: 31px 0 31px 17px;
    }
    .banner__title {
        font-size: 28px;
    }
    .banner__absolute_title {
      font-size: 25px;
      font-weight: 700;
      line-height: 110%;
    }
    .banner__absolute_subtitle {
      font-family: Roboto Flex;
      font-size: 16px;
      line-height: 120%; 
    }
}
@media(max-width: 580px) {
    .banner__absolute.right {
        border-radius: 0px 24px 24px 0px;
        left: 0;
        right: auto;
    }
    .banner__absolute.right::before {
        right: auto;
        left: -100%;
    }
    .banner__background {
        background-position: left;
    }
    .home-wet .banner__background {
        margin: auto;
        height: 210px;
        border-radius: 28px;
        position: static;
        background-position: right;
    }
    .home-wet .banner__absolute {
        position: relative;
        width: 397px;
        max-width: 100%;
        margin-bottom: 25px;
    }
    .home-wet {
        height: auto;
    }
}
@media(max-width: 380px) {
    .banner__title {font-size: 22px;}
    .banner__absolute {height: 260px;top: calc(50% + 44px);}
}


/* CLEAN SECTION ===========================================================================*/
.clean {
    margin: 32px 0px 37px 0px;
}

.clean__columns {
    display: flex;
    gap: 22px;
}

.clean__img {
    flex: 0 1 60%;
}

.clean__bg img {
    width: 100%;
    border-radius: 20px;
}

.clean__content {
    flex: 0 1 40%;
    border-radius: 42px;
    background: #F4F4F4;
    padding: 25px 55px 38px;
}
.clean__title {
    margin-bottom: 23px;
}
.clean__subtitle {
    color: #000;
    margin-bottom: 23px;
}

.clean__img img {
    border-radius: 28px;
    width: 100%;
}
@media (max-width: 1080px) {
    .clean {
      margin: 25px 0px 33px 0px;
    }
    .clean__columns {
      gap: 26px;
      flex-direction: column-reverse;
    }
    .clean__img img{
      border-radius: 28px;
    }
    .clean__content {
      padding: 29px 10px 22px 13px;
    }
    .clean__subtitle {
      color: #000;
    }
    .clean__img img{
      border-radius: 28px;
      width: 100%;
    }
  }


/*WET SECTION ===========================================================================================*/
.home-wet {
    background-image: url(../imgs/banner-2.jpg);
}

/* RECOGNITION SECTION ============================================================================*/
.recognition {
    margin: 43px 0px 50px 0px;
}

.recognition__columns {
    display: flex;
    gap: 20px;
}

.recognition__content {
    border-radius: 42px;
    background: #F4F4F4;
    flex: 0 1 40%;
    padding: 55px 97px 80px 55px;
}

.recognition__title {
    margin-bottom: 33px;
}

.recognition__subtitle {
    color: #000;
}

.recognition__images {
    flex: 0 1 60%;
}
.recognition__images img {
    width: 100%;
}

.recognition__img {
    display: none;
}
@media (max-width: 1080px) {
    .recognition {
      margin: 44px 0px 21px 0px;
    }
    .recognition__columns {
      display: block;
    }
    .recognition__content {
      padding: 29px 10px 22px 13px;
    }
    .recognition__title {
      margin-bottom: 16px;
    }
    .recognition__subtitle {
      margin-bottom: 24px;
    }
    .recognition__images {
      display: none;
    }
    .recognition__img {
      display: block;
    }
    .recognition__img:not(:last-child) {
      margin-bottom: 40px;
    }
    .recognition__img img{
      width: 100%;
      border-radius: 26px;
    }
  }


/* BIG SECTION ===============================================================================*/


.battery__columns {
    display: flex;
    gap: 20px;
}

.battery__img {
    flex: 0 1 60%;
}

.battery__img img {
    width: 100%;
    border-radius: 39px;
}

.battery__content {
    flex: 0 1 40%;
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.battery__box {
    border-radius: 42px;
    background: #F4F4F4;
    padding: 94px 95px 105px 63px;
    flex: 1 1 auto;
}

.battery__title {
    margin-bottom: 39px;
}

.battery__subtitle {
    color: #000;
}

.battery__hours {
    border-radius: 24px;
    background: linear-gradient(180deg, #021B19 6.77%, #004946 100%);
    display: flex;
    align-items: center;
    gap: 58px;
    justify-content: center;
    padding: 16px 10px;
}

.battery__column {
    max-width: 148px;
}

.battery__column span {
    font-family: 'Roboto Flex';
}

.battery__big {
    font-size: 40px;
    font-weight: 700;
    line-height: 100%;
}

.battery__middle {
    font-size: 18px;
    line-height: 120%;
}

.battery__little {
    font-size: 12px;
    line-height: 120%;
}
@media (max-width: 1240px) {
    .battery__box {
        padding: 94px 75px 105px 63px;
      }
}
@media (max-width: 1080px) {
    .battery__columns {
      flex-direction: column-reverse;
    }
    .battery__box {
      padding: 29px 10px 22px 13px;
    }
    .battery__title {
      margin-bottom: 24px;
    }
    .battery__hours {
      gap: 0;
    }
    .battery__big {
      font-size: 30px;
      line-height: 150%;  
    }
    .battery__middle {
      font-size: 18px;
    }
    .battery__little {
      font-size: 12px;
    }
  }


/* CONTROL SECTION ====================================================================================*/
.control {
    margin: 63px 0px 102px 0px;
}

.control__columns {
    display: flex;
    gap: 20px;
}

.control__content {
    flex: 0 1 40%;
    padding: 104px 50px 0px 55px;
    border-radius: 42px;
    background: #F4F4F4;
}

.control__title {
    margin-bottom: 39px;
}

.control__subtitle {
    margin-bottom: 33px;
    color: #000;
    max-width: 320px;
}

.control__text {
/*     color: #9A9F9F; */
	color: #000;
/*     font-size: 18px; */
    line-height: 120%;
    margin-bottom: 24px;
    max-width: 350px;
}

.control__images {
    display: flex;
    align-items: center;
    gap: 46px;
}

.control__img {
    flex: 0 1 60%;
}

.control__img img {
    width: 100%;
    border-radius: 26px;
}
@media (max-width: 1080px) {
    .control {
      margin: 33px 0px 53px 0px;
    }
    .control__columns {
      display: flex;
      flex-direction: column;
    }
    .control__content {
      padding: 29px 10px 22px 13px;
    }
    .control__subtitle {
      margin: 11px 0px;
    }
    .control__text {
      font-size: 18px;
      font-weight: 600;
      line-height: 120%;
    }
    .control__images {
      gap: 30px;
      row-gap: 10px;
      flex-wrap: wrap;
    }
    .control__images img:last-child{
      max-width: 148px;
    }
}


/* FUNCTION SECTION =======================================================================================*/

.functions h2 {
    text-align: center;
    margin-bottom: 29px;
}
.functions__slider {
    padding-left: 280px;
}
.functions__image {
    width: 35%;
}
.functions__wrapper {
    width: 63%;
    display: flex;
    flex-wrap: wrap;
    padding: 30px 0;
    align-items: center;
}
.functions__wrapper img {
	width: 75%
}
.functions__row {
    display: flex;
    justify-content: space-between;
}
.functions__title {
    color: #424242;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}
.functions__text {
    color: #424242;
    font-size: 18px;
    font-weight: 500;
    width: 390px;
    margin-bottom: 10px;
}

.functions .slick-arrow {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 180px;
    background: #02A69E;
    width: 70px;
    height: 70px;
    border-radius: 100%;
}
.functions .slick-next {
    left: auto;
    right: 0;
}
.functions .slick-dots {
    position: absolute;
    left: 0;
    top: 0;
}
.functions .slick-dots li {
    margin-bottom: 20px;
}
.functions .slick-dots li:last-child {
    margin-bottom: 0;
}
.functions .slick-dots button {
    width: 100px;
    height: 100px;
    font-size: 30px;
    border-radius: 13px;
    background-color: #C8CACA;
    color: #fff;
}
.functions .slick-active button {
    background: linear-gradient(180deg, #021B19 6.77%, #004946 100%), linear-gradient(0deg, #C8CACA, #C8CACA);

}
@media(max-width: 1280px) {
    .functions .slick-dots button {
        width: 60px;
        height: 60px;
    }
    .functions__slider {
        padding-left: 180px;
    }
    .functions .slick-arrow {
        left: 95px;
    }
    .functions .slick-next {
        left: auto;
        right: 0;
    }
    .slick-slide img {
        width: 100%;
    }
    .functions__wrapper img {
        width: 75%;
    }
}
@media(max-width: 990px) {
    .functions__text {
        width: 100%;
    }
}
@media(max-width: 770px) {
    .functions .slick-dots {
        display: flex;
        justify-content: space-between;
        bottom: -70px;
        top: auto;
        right: 0;
        width: 100%;
    }
    .functions .slick-arrow {
        left: 0;
    }
    .functions .slick-next {
        left: auto;
        right: 0;
    }
    .functions__slider {
        padding-left: 90px;
    }
}
@media(max-width: 580px) {
    .functions__wrapper {
        width: 100%;
        padding: 0;
    }
    .functions__row {
        flex-wrap: wrap;
        position: relative;
    }
    .functions__image {
        position: absolute;
        right: 0;
        bottom: 0;
        width: auto;
        display: flex;
        align-items: flex-end;
    }
    .functions__image img {
        width: auto;
        height: 100%;
    }
    .functions__slider {
        padding-left: 0;
    }
    .functions h2 {
        text-align: left;
    }
    .functions {
        padding-bottom: 50px;
    }
    .functions .slick-dots {
        bottom: -105px;
    }
    .functions .slick-arrow {height: 70px;width: 70px;top: 180px;}
    .functions__wrapper img {
        width: 70%;
        max-height: 100%;
        margin-top: 35px;
    }
}
@media(max-width: 450px) {
    #slick-slide03 .functions__wrapper img {
        margin-top: 0px;
    }
}
@media(max-width: 380px) {
    .functions .slick-dots button {width: 45px;height: 45px;}
    #slick-slide03 .functions__wrapper img {
        margin-top: -11px;
    }
}



/* MAP SECTION =====================================================================================*/
.map {
    margin: 50px 0px 90px;
    overflow: hidden;
}

.map__columns {
    display: flex;
    align-items: center;
    gap: 50px;
}

.map__content {
    flex: 0 1 40%;
}

.map__title {
    margin-bottom: 27px;
}

.map__subtitle {
    color: #000;
}

.map__img {
    flex: 0 1 60%;
    max-width: 800px;
}
@media (max-width: 1080px) {
    .map {
      margin: 55px 0px;
    }
    .map__columns {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    .map__title {
      margin-bottom: 12px;
    }
    .map__img img{
      width: 178%;
    }
    .map__box {
      grid-template-columns: repeat(1, 1fr);
      margin-top: 27px;
      gap: 10px;
    }
    .map__card {
      padding: 10px 10px 20px 10px;
      text-align: center;
    }
    .map__title {
      margin: 10px 0px 20px 0px;
    }
}



/* CHAR SECTION ======================================================================================*/
.specifications {
    margin-bottom: 45px;
}

.specifications__columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.specifications__content {
    color: #242424;
    border-radius: 42px;
    background: #F4F4F4;
    padding: 21px 100px 38px;
}
.specifications__img img {
	width: 100%;
}
.specifications__title {
    margin-bottom: 20px;
}

.specifications__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.specifications__item {
    padding-bottom: 10px;
    border-bottom: 1px solid #d1d1d1;
}

.specifications__button {
    color: #069A93;
    font-size: 19.586px;
    font-weight: 700;
    text-decoration: underline;
}
@media (max-width: 1080px) {
    .specifications {
      margin-bottom: 31px;
    }
    .specifications__columns {
      grid-template-columns: repeat(1, 1fr);
      gap: 30px;
    }
    .specifications__content {
      padding: 24px 12px 38px;
    }
    .specifications__title {
      margin-bottom: 20px;
      font-size: 25px;
      font-weight: 700;
      line-height: 135%;
    }
    .cspecifications__list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 32px;
    }
    .specifications__item {
      padding-bottom: 10px;
      border-bottom: 1px solid #d1d1d1;
      font-size: 14px;
    }
    .specifications__button {
      color: #069A93;
      font-size: 15.586px;
      font-weight: 700;
      text-decoration: underline;
    }
    .specifications__img img{
      width: 90%;
    }
    .specifications__img{
      text-align: center;
    }
  }



/* KIT SECTION ===================================================================================*/
.equipment {
    margin-bottom: 94px;
}

.equipment__columns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.equipment__img {
    flex: 0 1 60%;
}

.equipment__img img {
    width: 100%;
}

.equipment__columns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.equipment__content {
    flex: 0 1 40%;
    border-radius: 42px;
    background: #F4F4F4;
    padding: 34px 62px 38px 36px;
    color: #424242;
}

.equipment__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.equipment__item {
    padding-bottom: 10px;
    border-bottom: 1px solid #d1d1d1;
}

.equipment__content {
    flex: 0 1 40%;
    border-radius: 42px;
    background: #F4F4F4;
    padding: 34px 62px 38px 36px;
    color: #424242;
}

.equipment__title {
    margin-bottom: 14px;
}
@media (max-width: 1080px) {
    .equipment {
      margin-bottom: 51px;
    }
    .equipment__columns {
      flex-direction: column-reverse;
      gap: 31px;
    }
    .equipment__img img{
      border-radius: 28px;
    }
    .equipment__content {
      padding: 24px 12px 32px;
      color: #424242;
    }
    .equipment__title {
      margin-bottom: 14px;
    }
    .equipment__list {
      margin-bottom: 0;
    }
    .equipment__item {
      font-size: 14px;
      font-weight: 400;
      line-height: 150%;
    }
}



/* QA SECTION ====================================================================================*/
.qa {
    margin-bottom: 113px;
}

.qa__container {
    padding: 0px 95px;
}

.qa__title {
    margin-bottom: 38px;
}

.qa__questions {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.qa__question {
    padding: 22px 30px 22px 0px;
    border-radius: 33px;
    display: flex;
    background: #02A69E;
    cursor: pointer;
    user-select: none;
}

.qa__plus {
    flex: 0 0 67px;
    position: relative;
    transition: 0.3s ease all;
}

.qa__question.active {
    background: #F4F4F4;
}

.qa__plus::before {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(50% - 10px);
    background-color: #fff;
    height: 3px;
    width: 20px;
    transition: 0.3s ease all;
}

.qa__question.active .qa__plus::before {
    background-color: #646464;
}

.qa__plus::after {
    content: '';
    position: absolute;
    top: calc(50% - 8px);
    left: calc(50% - 1px);
    background-color: #fff;
    height: 20px;
    width: 3px;
    transition: 0.3s ease all;
}

.qa__question.active .qa__plus::after {
    background-color: #646464;
    transform: scale(0);
}

.qa__text {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s ease all;
}

.qa__question.active .qa__text {
    color: #000;
    margin-bottom: 7px;
}

.qa__answer {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    transition: 0.3s ease all;
    max-height: 0;
    visibility: hidden;
    opacity: 0;
}

.qa__question.active .qa__answer {
    visibility: visible;
    opacity: 1;
    color: #000;
    visibility: visible;
    opacity: 1;
    max-height: 500px;
}

@media (max-width: 768px) {
    .home-qa {
        margin-bottom: 91px;
    }

    .qa__container {
        padding: 0px 15px;
    }

    .qa__title {
        margin-bottom: 25px;
    }

    .qa__questions {
        gap: 14px;
    }

    .qa__question {
        padding: 10px 10px 10px 0px;
        border-radius: 10px;
    }

    .qa__plus {
        flex: 0 0 45px;
    }


    .qa__plus::before {
        content: '';
        position: absolute;
        top: 50%;
        left: calc(50% - 10px);
        background-color: #fff;
        height: 3px;
        width: 20px;
        transition: 0.3s ease all;
    }

    .qa__question.active .qa__plus::before {
        background-color: #646464;
        top: 10px;
    }


    .qa__text {
        font-size: 14px;
    }

    .qa__answer {
        font-size: 14px;
        font-weight: 400;
    }
}

/* INSTRUCTION PAGE =======================================================================================*/
/* INSTRUCTION PAGE =======================================================================================*/
.instruction__header::before,
.instruction__header::after {
    display: none;
}

.instruction__header {
    background: #fff;
    border-bottom: 1px solid #02A69E;
}

.instruction__header a {
    color: #000;
}


.instruction__columns {
    display: flex;
    gap: 75px;
}

.instruction__img img {
	width: 135px;
}

.instruction__column {
    flex: 0 1 55%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.instruction__item a {
    color: #575757;
    font-family: Roboto Flex;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    gap: 15px;
    align-items: center;
}


.instruction__download {
    position: relative;
    padding: 20px 24px 38px 30px;
    flex: 1 1 auto;
    max-width: 489px;
}

.instruction__download::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #021B19 6.77%, #004946 100%);
    z-index: -1;
    border-radius: 26px;
}

.intruction__title {
    font-family: Roboto Flex;
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 28px;
}

.instruction__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 38px;
}

.instruction__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

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

.instruction__box img {
    max-width: 50px;
}


@media (max-width: 768px) {
    .instruction {
        margin: 31px 0px 0px 0px;
    }

    .instruction__columns {
        flex-direction: column;
        gap: 70px;
    }

    .instruction__column {
        grid-template-columns: repeat(1, 1fr);
        gap: 34px;
    }

    .instruction__item a {
        max-width: 300px;
    }

    .instruction__download {
        padding: 14px 17px 32px 14px;
    }

    .intruction__title {
        padding-bottom: 19px;
    }

    .instruction__wrapper {
        display: block;
    }

    .instruction__box {
        gap: 19px;
    }

    .instruction__box img {
        max-width: 98px;
        width: 100%;
    }

    .instruction__img {
        display: none;
    }

    .instruction__header a {
        color: #fff;
    }
}

/* VIDEO SECTION ==============================================================================*/
.video {
    margin: -40px 0px 68px 0px;
}

.video__columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 18px;
    row-gap: 48px;
}

.video__card {
    border-radius: 42px;
    background: #F4F4F4;
}
.video__img {
    border-radius: 42px;
    overflow: hidden;
    height: 190px;
}
.video__img img {
    width: 100%;
    cursor: pointer;
    transition: all .3s;
}
.video__img img:hover {
    transform: scale(1.1);
}

.video__content {
    padding: 23px;
}
.video__title {
    color: #02A69E;
    font-family: Rubik;
    font-size: 24px;
    font-weight: 700;
    line-height: 110%;
    margin-bottom: 20px;
    cursor: pointer;
}

.video__text {
    color: #000;
    font-family: Roboto Flex;
    font-size: 18px;
    line-height: 120%;
}

@media (max-width: 768px) {
    .video {
        margin: 58px 0px 51px 0px;
    }

    .video__columns {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 31px;
    }


    .video__img img {
        width: 100%;
        border-radius: 42px;
    }
}

/* PAYMENT PAGE ============================================================================================*/
/* PAYMENT PAGE ============================================================================================*/

.payment__subtitle {
    color: #02A69E;
    font-family: Rubik;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 37px;
}
.payment__row {
    display: flex;
    justify-content: space-between;
}
.payment__left {
    width: 60%;
}
.payment__left #point_list {
    display: none !important;
}
.payment__right {
    width: 37%;
}
.payment__method {
    border-bottom: 1px solid #000000;
    padding-bottom: 30px;
    margin-bottom: 35px;
}
.payment__colons {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.payment__colon {
    width: 45%;
}
.payment__info {
    border-radius: 4px;
    border: 1px solid red;
    padding: 10px;
    display: none;
}
.payment__title2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #000;
}
.payment__subtitle2 {
    color: #000;
    font-size: 16px;
}
.payment__colon .delivery-service__colons {
    width: 100%;
}


@media (max-width: 990px) {
    .payment__row {
        flex-wrap: wrap;
    }
    .payment__left {
        width: 100%;
    }
    .payment__right {
        width: 100%;
    }

    .payment__colon {
        width: 100%;
        margin-bottom: 30px;
    }
    .payment__colons:last-child {
        margin-bottom: 0;
    }
}


/* SUPPORT SECTION ==================================================================================*/
.support {
    margin-bottom: 67px;
    color: #000;
}

.support__columns {
    display: flex;
    gap: 40px;
    border-radius: 42px;
    background: #F4F4F4;
}

.support__img {
    flex: 0 1 35%;
}

.support__title {
    padding: 63px 0px 0px 82px;
}
.support__row {
    display: flex;
    justify-content: space-between;
}
.support__content {
    width: 45%;
    padding-top: 63px;
    padding-right: 40px;
}
.support__input {
    width: 47%;
}
.support__row {
    margin-bottom: 39px;
}
.support__comment {
    margin-bottom: 40px;
}
.support__buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.support__files label {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.support__files img {
    margin-right: 10px;
}
.support__files input {
    display: none;
}
.support__button {
    width: 260px;
}
.support__tg {
    padding-top: 20px;
    padding-bottom: 20px;
}
.support__tg svg {
    flex: none;
}
.support__tg a {
    width: 100%;
    height: 45px;
    gap: 5px;
    padding: 0 10px;
    border-radius: 6px;
    color: #000;
    border: 1px solid #02A69E;
    outline: none;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    transition: all .3s;
}
.support__tg a:hover {
    background-color: #02A69E; 
    color: #fff;
}
.wpcf7-spinner {
    display: none;
}

@media (max-width: 1140px) {
    .support__title {
        padding: 63px 0px 0px 38px;
    }
    .support__img img{
        width: 380px;
    }
    .support__content {
        width: 50%;
    }
}
@media (max-width: 990px) {
    .support {
        margin-bottom: 76px;
    }
    .support__columns {
        flex-direction: column;
        gap: 29px;
        padding: 32px 31px 34px 28px;
    }
    .support__content {
        width: 100%;
        padding: 0;
    }
    .support__title {
        padding: 0;
        font-size: 25px;
        margin-bottom: 40px;
        text-align: center;
    }
    .support__img {
        display: none;
    }
}
@media (max-width: 550px) {
    .support__row {
        flex-wrap: wrap;
    }
    .support__input {
        width: 100%;
        margin-bottom: 20px;
    }
    .support__input:last-child {
        margin-bottom: 0;
    }
    .support__buttons {
        flex-wrap: wrap;
    }
    .support__files label {
        width: 100%;
        margin-bottom: 25px;
    }
    .support__button {
        width: 100%;
    }
}


/* ============= NEW STYLE ================== */



/* ============= ABOUT PAGE ================== */

.content__text {
    color: #424242;
}

.content__text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 24px;
}
.content__text h2,
.content__text h3 {
    font-family: Rubik;
    font-size: 24px;
    font-weight: 700;
    line-height: 110%;
    margin: 40px 0px 25px 0px;
}
.content__text ul {
    padding-left: 20px;
    margin-bottom: 20px;
}
.content__text ul li {
    font-size: 18px;
    list-style: disc; 
    line-height: 24px;
}
.content__text p:last-child {
    margin-bottom: 0;
}
.content__text a {
    color: #424242;
}
.content__text a:hover {
    color: #004946;
}

@media(max-width: 770px) {
    .content__text p, .content__text ul li {
        font-size: 16px;
        line-height: 21px;
    }
    .content__text h2, .content__text h3 {
        font-size: 21px;
    }
}





.advantages__rows {
    display: flex;
    justify-content: space-between;
}

.advantages__item {
    width: 32%;
    text-align: center;
    border-radius: 24px;
    background-color: #02A69E;
    padding: 25px 10px;
    font-size: 18px;
    line-height: 21px;
}

.advantages__image {
    margin-bottom: 7px;
}

.advantages__title {
    margin-bottom: 20px;
    font-weight: 600;
}
.advantages__text {
    font-weight: 400;
}

@media(max-width: 980px) {
    .advantages__item {
        font-size: 16px;
    }
}

@media(max-width: 770px) {
    .advantages__rows {
        flex-wrap: wrap;
    }

    .advantages__item {
        width: 100%;
        margin-bottom: 25px;
        min-height: auto;
        padding: 25px;
    }

    .advantages__itemL:last-child {
        margin-bottom: 0;
    }

    .advantages__text br {
        display: none;
    }
}






.company-history__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.company-history__row {
    width: 995px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 145px;
}

.company-history__row:last-child {
    margin-bottom: 0;
}

.company-history__number span {
    display: block;
    width: 100%;
    color: #02a69e;
    border: 2px solid #02A69E;
    background: #fff;
    text-align: center;
    width: 184px;
    line-height: 184px;
    border-radius: 100%;
    font-size: 48px;
    font-family: Rubik;
    font-weight: 700;
    position: relative;
}

.company-history__number span:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
    top: calc(100% + 0px);
    width: 1px;
    height: 145px;
    border: 1px dashed #02A69E;
}

.company-history__row:last-child span:before {
    display: none;
}

.company-history__content {
    position: absolute;
    left: 0;
    width: 35%;
}

.company-history__content p {
    color: #424242;
    font-size: 18px;
    line-height: 21px;
}

.company-history__right {
    left: auto;
    right: 0;
}

@media(max-width: 990px) {
    .company-history__content p {
        font-size: 16px;
    }

    .company-history__number span {
        width: 127px;
        line-height: 124px;
        font-size: 34px;
    }

    .company-history__number span:before {
        height: 200px;
    }

    .company-history__row {
        margin-bottom: 100px;
    }

    .company-history__row:last-child {
        margin-bottom: 0;
    }

    .company-history__content {
        width: 40%;
    }
}

@media(max-width: 770px) {
    .company-history__row {
        justify-content: flex-start;
    }

    .company-history__content {
        position: static;
        width: auto;
        padding-left: 15px;
    }

    .company-history__content p {
        font-size: 14px;
    }
}









/* ============= PAGE CONTACT ================== */

.page-contact__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.page-contact__content {
    width: 45%;
    font-size: 18px;
    color: #424242;
    line-height: 24px;
}
.page-contact__content a {
    color: #424242;
}
.page-contact__wrapper {
    margin-bottom: 60px;
}
.page-contact__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.page-contact__item:last-child {
    margin-bottom: 0;
}
.page-contact__item img {
    margin-right: 15px;
}
.page-contact__title {
    display: block;
    font-family: Rubik;
    font-weight: 700;
}
.page-contact__time {
    margin-bottom: 60px;
}
.page-contact__maps {
    width: 45%;
	position: relative;
	overflow: hidden;
	border-radius: 20px;
}
.page-contact__maps iframe {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
}
@media(max-width: 990px) {
    .page-contact__row {
        flex-wrap: wrap;
    }
    .page-contact__content {
        width: 100%;
        order: 2;
    }
    .page-contact__maps {
        width: 100%;
        order: 1;
        margin-bottom: 35px;
    }
}
@media(max-width: 770px) {
    .page-contact__content {
        font-size: 14px;
        line-height: 18px;
    }
    .page-contact__item img {
        width: 34px;
        margin-right: 20px;
    }
}




/* ============= PAGE CART ================== */

.page-cart__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.page-cart__left {
    width: 70%;
}
.page-cart__update {
    display: none !important;
}
.page-cart__right {
    width: 30%;
}
.product-info {
    margin-bottom: 35px;
    display: flex;
}
.product-info:last-child {
    margin-bottom: 0;
}
.product-info__wrapper {
    position: relative;
    padding-right: 50px;
    width: 60%;
}
.product-info__image {
    width: 160px;
    height: 155px;
    border-radius: 15px;
    border: 1px solid #636363;
    margin-right: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-info__image img {
    max-width: 90%;
    max-height: 90%;
}
.product-info__row {
    display: flex;
    justify-content: space-between;
    height: 104px;
}
.product-info__name {
    color: #424242;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    width: 70%;
}
.product-info__price {
    color: #424242;
    font-size: 27px;
    font-style: normal;
    font-weight: 700;
    width: 25%;
}
.product-info__close {
    position: absolute;
    top: 0;
    right: 0;
}



.product-count {
    display: flex;
    align-items: center;
}
.product-count__butt {
    border-radius: 8px;
    border: 1px solid #02A69E;
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all .3s;
}
.product-count__butt:after {
    content: "";
    height: 0;
    width: 19px;
    border: 3.5px solid #646464;
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.product-count__plus:before {
    content: "";
    width: 0;
    height: 14px;
    border: 2.5px solid #646464;
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.product-count__plus:after {
    width: 14px;
    border: 2.5px solid #646464;
}
.product-count__butt:hover {
    background: #02A69E;
}
.product-count__butt:hover:after,
.product-count__butt:hover:before {
    border-color: #fff;
}
.product-count__input {
    border-color: transparent;
    background: transparent;
    width: 30px !important;
    height: 40px;
    margin: 0px 5px;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
}



.cart-total {
    background: #F4F4F4;
    border-radius: 15px;
    padding: 30px;
}
.cart-total__title {
    font-size: 20px;
    color: #424242;
    margin-bottom: 20px;
    display: block;
}
.cart-total__count {
    display: flex;
    justify-content: space-between;
    font-size: 26px;
    font-weight: 700;
    color: #424242;
    margin-bottom: 35px;
}
.cart-total__summa {
    display: none;
}
.cart-total__delivery {
    display: none;
}


.product-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    row-gap: 65px;
}
.product-cards__image {
    height: 275px;
    border: 1px solid #02A69E;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    margin-bottom: 18px;
}
.product-cards__image img {
    max-width: 90%;
    max-height: 90%;
}
.product-cards__more {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    opacity: 0;
    transition: all .3s;
}
.product-cards__more a {
    width: 90%;
}
.product-cards__image:hover .product-cards__more {
    opacity: 1;
}
.product-cards__price {
    font-weight: 700;
    font-size: 20px;
    color: #424242;
    margin-bottom: 10px;
}
.product-cards__name {
    color: #424242;
    line-height: 21px;
    height: 40px;
    display: block;
    margin-bottom: 20px;
}
.product-cards__buttons {
    display: flex;
    justify-content: space-between;
}
.product-cards__byu {
    width: 200px;
}
.add_to_cart_button {
    width: 60px;
    height: 60px;
    background: #A2AAAA;
    border-radius: 100%;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.add_to_cart_button:hover {
    background: #02A69E;
}
.add_to_cart_button.active {
    background: #02A69E;
}

@media(max-width: 1180px) {
    .product-info__name {
        font-size: 18px;
    }
    .product-info__image {
        margin-right: 15px;
    }
    .product-info__price {
        font-size: 21px;
    }
    .cart-total__count {
        font-size: 18px;
    }
    .product-cards__name {
        height: 63px;
    }
    .product-cards__byu {
        width: 160px;
    }
    .product-cards__image {
        height: 200px;
    }
}
@media(max-width: 990px) {
    .page-cart__row {
        flex-wrap: wrap;
    }
    .page-cart__left {
        width: 100%;
        margin-bottom: 40px;
    }
    .page-cart__right {
        width: 100%;
    }
    .product-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-cards__name {
        height: auto;
    }
    .product-cards__buttons
    {
        justify-content: flex-start;
    }
    .add_to_cart_button
    {
        margin-left: 20px;
    }
    .product-cards__byu {
        width: 200px;
    }
}
@media(max-width: 770px) {
    .product-info__row {
        flex-wrap: wrap;
    }
    .product-info__name {
        width: 100%;
    }
    .product-info__price {
        width: 100%;
    }
    .product-count__butt {
        width: 34px;
        height: 34px;
    }
    .product-count__butt:after {
        width: 12px;
        border-width: 1.5px;
    }
    .product-count__plus:before {
        height: 10px;
        border-width: 1px;
    }
    .product-count__plus:after {
        width: 10px;
        border-width: 1px;
    }
}
@media(max-width: 576px) {
    .product-cards{
        grid-template-columns: repeat(1, 1fr);
    }
}
@media(max-width: 500px) {
    .product-info__name {
        font-size: 14px;
    }
    .product-info__row {
        height: 115px;
    }
    .product-count__butt {
        width: 34px;
        height: 34px;
    }
    .product-count__butt:after {
        width: 12px;
    }
    .product-count__plus:before {
        height: 10px;
    }
    .product-cards {
        row-gap: 40px;
        column-gap: 12px;
    }
    .product-count__plus:after {
        width: 10px;
    }
    .product-cards__name {
        font-weight: 600;
        height: 40px;
        margin-bottom: 10px;
    }

    .product-cards__image {
        height: 170px;
    }
    .product-cards
    {
      /*  padding: 0 15px;*/
    }
}
@media(max-width: 380px) {
     .product-cards__buttons
    {
        justify-content: space-between;
    }
}





/* ============= ORDER PAGE ================== */
.page-order__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.page-order__left {
    width: 70%;
}
.page-order__update {
    display: none !important;
}
.page-order__right {
    width: 30%;
}
.page-order .woocommerce-notice {
    display: none;
}
.page-order .woocommerce-order-overview {
    display: none;
}
.page-order {
    color: #000;
}
.order-form {
    width: 80%;
}
.order-form__row {
    display: flex;
    align-items: flex-end;
    margin-bottom: 30px;
}
.order-form__input {
    margin-right: 15px;
    width: 100%;
}
.order-form__input:last-child {
    margin-right: 0;
}
.order-form__phone {
    width: 55%;
}
.order-form__next {
    width: 280px;
}
.order-form__step2 {
    display: none;
}
.order-form__title {
    font-size: 22px;
    list-style: 40px;
    margin-bottom: 40px;
    color: #000;
}
.order-form__title span {
    display: inline-block;
    background: #02A69E;
    width: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    margin-right: 20px;
    border-radius: 40px;
    border: 1px solid #02A69E;
}
.order-form__hr {
    background: #000000;
    margin-bottom: 30px;
    height: 1px;
}
.order-form__title2 span {
    background: transparent;
    color: #000;
}

.order-form__delivery {
    width: 328px;
    max-width: 100%;
}
.order-form__search {
    margin-bottom: 30px;
}
.order-form__street {
    width: 50%;
}
.order-form__dom {
    width: 25%;
}
.order-form__corpus {
    width: 25%;
}
.order-form__street input,
.order-form__flat input,
.order-form__floor input,
.order-form__entrance input,
.order-form__dom input,
.order-form__corpus input {
    background: #fff;
}
.order-form .order-button__load {
    position: static;
}
#point_list {
    display: none;
}
.delivery-service {
    display: none;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}
.delivery-service__colons {
    width: 48%;
}
.delivery-service label {
    width: 100%;
    font-size: 18px;
    color: #000;
    margin-bottom: 20px;
    display: block;
}
.delivery-service .form-select__list {
    position: static;
    border-top: 1px solid #02A69E;
    background: #fff;
    border-radius: 5px;
    display: block;
    height: 300px;
}
.delivery-service .form-select__head {
    display: none;
}
@media(max-width: 990px) {
    .page-order__row {
        flex-wrap: wrap;
    }
    .page-order__left {
        width: 100%;
        margin-bottom: 40px;
    }
    .page-order__right {
        width: 100%;
    }
}
@media(max-width: 700px) {
    .delivery-service {
        flex-wrap: wrap;
    }
    .delivery-service__colons {
        width: 100%;
        margin-bottom: 30px;
    }
    .delivery-service__colons:last-child {
        margin-bottom: 0;
    }
    .delivery-service .form-select__list {
        position: absolute;
        border-top: 0;
        border-radius: 0 0 5px 5px;
        height: auto;
        display: none;
        background: #EAEAEA;
    }
    .delivery-service .form-select__head {
        display: flex;
    }
}



.order-form__payment {
    width: 328px;
    max-width: 100%;
    margin-bottom: 50px;
}

.order-form__add {
    color: #02a69e;
    text-decoration: underline;
    cursor: pointer;
    margin-bottom: 60px;
}
.order-form__hide {
    display: none;
    margin-bottom: 30px;
}
.order-form__button {
    width: 260px;
    max-width: 100%;
}

.order-form__pickup {
    display: none;
}
.order-form__city {
    margin-bottom: 40px;
}
.order-form__error {
    margin-top: 20px;
    color: red;
    font-size: 16px;
}
.order-form__courier {
    display: none;
}

.point-issue__tabs {
    display: flex;
    margin-bottom: 30px;
}
.point-issue__link {
    font-size: 18px;
    color: #000;
    margin-right: 25px;
    cursor: pointer;
}
.point-issue__link:last-child {
    margin-right: 0;
}
.point-issue__link.active {
    color: #02a69e;
    text-decoration: underline;
}

.order-form__point {
    margin-bottom: 40px;
}

@media(max-width: 1120px) {
    .order-form {width: 90%;}
}
@media(max-width: 990px) {
    .order-form {width: 100%;}
}
@media(max-width: 600px) {
    .order-form__next {
        width: 100%;
    }
    .confirm {
        font-size: 14px;
    }
    .confirm br {
        display: none;
    }
    .order-form__row {
        flex-wrap: wrap;
    }
    .order-form__input {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .order-form__phone {
        width: 100%;
        margin-bottom: 30px;
    }
    .order-form__input:last-child {
        margin-bottom: 0;
    }
    .order-form__street, .order-form__dom, .order-form__corpus {
        width: 100%;
    }
}














.page-thank {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}
.page-thank h1 {
    margin-bottom: 60px;
    width: 100%;
}
.page-thank__button {
    width: 345px;
    margin-bottom: 20px;
}
.page-thank__title {
    color: #000;
    font-size: 20px;
    width: 100%;
    margin-bottom: 30px;
}
.page-thank__subtitle {
    color: #0000007D;
    font-size: 20px;
    width: 100%;
}
@media(max-width: 500px) {
    .page-thank h1 br {
        display: none;
    }
}








/* ======================== POPUP ======================= */
.wpcf7-response-output {
    display: none;
}
.popup {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    overflow: auto;
    z-index: 99;
    background: rgba(0, 0, 0, 0.25);
}
.popup__close {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}
.popup__wrapper {
    background-image: url(../imgs/popup-bg.jpg);
    background-size: cover;
    width: 650px;
    height: 660px;
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 50px;
}
.popup__arrows {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}
.popup__title {
    display: block;
    text-align: center;
    font-weight: 700;
    font-size: 34px;
}
.popup__text {
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    font-weight: 300;
}
.popup-input {
    position: relative;
    margin-bottom: 20px;
}
.popup-input input {
    height: 65px;
    width: 100%;
    font-size: 18px;
    color: #fff;
    border-radius: 6px;
    border: 1px solid #FFFFFF;
    padding: 0px 29px;
    outline: none;
    background: transparent;
}
.popup-req {
    position: absolute;
    line-height: 65px;
    top: 0;
    right: 15px;
    color: #fff;
}
.popup__confirm {
    padding-top: 20px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    line-height: 16px;
}
.popup__phone {
    display: block;
    text-align: center;
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 50px;
}
.popup__social {
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup__social a {
    margin-right: 30px;
}
.popup__social a:last-child {
    margin-right: 0;
}


.popup-call {
    display: none;
}
.popup-call__inner {
    width: 350px;
    max-width: 95%;
}
.popup-call__title {
    margin-bottom: 50px;
}
.popup-call__text {
    margin-bottom: 25px;
}


.popup-thank {
    display: none;
}
.popup-thank__inner {
    width: 490px;
    max-width: 95%;
}
.popup-thank__title {
    margin-bottom: 10px;
}
.popup-thank__text {
    text-decoration: underline;
    cursor: pointer;
}
.popup-thank__number {
    margin-bottom: 50px;
    font-size: 24px;
}


.popup-thank1 {
    display: none;
}
.popup-thank1__inner {
    width: 490px;
    max-width: 95%;
}
.popup-thank1__title {
    margin-bottom: 15px;
}
.popup-thank1__subtitle {
    margin-bottom: 50px;
    font-size: 24px;
    font-weight: 400;
}
.popup-thank1__text {
    margin-bottom: 50px;
}



.popup-order {
    display: none;
}
.popup-order__inner {
    width: 360px;
    max-width: 95%;
}
.popup-order__title {
    font-size: 25px;
    margin-bottom: 20px;
}
.popup-order__text {
    margin-bottom: 25px;
    font-weight: 300;
}
.popup-order__image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}
.popup-order__image img {
    max-width: 90%;
    max-height: 90%;
}


@media(max-width: 700px) {
    .popup__wrapper {
        width: 325px;
    }
    .popup__title {
        font-size: 21px;
    }
}



.popup-video {
    position: fixed;
    display: none;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    overflow: auto;
    z-index: 99;
    background: rgba(0, 0, 0, 0.25);
}
.popup-video .close {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}
.popup-video__wrapper {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 400px;
    width: 700px;
    overflow: hidden;
}
.popup-video__wrapper iframe {
    width: 100%;
    height: 100%;
}

@media(max-width: 770px) {
    .popup-video__wrapper {
        width: 335px;
        height: 330px;
    }
}

.check-cart {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    overflow: auto;
    display: none;
    z-index: 99;
    background: rgba(0, 0, 0, 0.25);
}
.check-cart__close {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}
.check-cart__wrapper {
    background-image: url(../imgs/popup-bg.jpg);
    background-size: cover;
    width: 450px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.check-cart__arrows {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}
.check-cart__title {
    display: block;
    text-align: center;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 40px;
}
.check-cart .button-2 {
    margin-bottom: 15px;
}
.check-cart__text {
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    font-weight: 300;
    text-decoration: underline;
    cursor: pointer;
}
@media(max-width: 550px) {
    .check-cart__wrapper {width: 290px;padding: 15px;}
}



#order_review {
    color: #000;
    opacity: 0;
    display: none;
}

#cookie-banner {
  position: fixed;
  bottom: 10px;
  right: 10px;
	left: 10px;
	margin: auto;
  max-width: 94%;
	text-align: right;
	align-items: flex-end;
	gap: 10px;
  width: 704px;
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  z-index: 99999999999999999999999999;
  box-shadow: 0 0px 8px 4px rgba(0, 0, 0, 0.2);
}

#cookie-banner p {
  font-size: 14px;
	text-align: left;
    color: #424242;
}
#cookie-banner a {
  text-decoration: underline;
  color: #424242;
}
#cookie-banner a:hover {
    color: #02A69E;
}

#cookie-close-btn {
  height: 45px;
	min-width: 150px;
	line-height: 45px;
}
@media(max-width: 770px) {
	#cookie-banner {
		flex-direction: column;
	}
}