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

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

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

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

@font-face {
    font-family: "Proxima Nova";
    font-display: swap;
    src: url("../fonts/ProximaNova-Semibold.woff") format("woff"), url("../fonts/ProximaNova-Semibold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Proxima Nova";
    font-display: swap;
    src: url("../fonts/ProximaNova-Bold.woff") format("woff"), url("../fonts/ProximaNova-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}

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

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












/**
 *
 * Scrollbar
 *
 */

body::-webkit-scrollbar {
    width: 4px;
    background-color: #f9f9fd;
}
body::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background-color: var(--main-color);
}
body::-webkit-scrollbar-track {
    background-color: #ccc;
}
html {
    scroll-behavior: smooth;
}







/**
 *
 * Global styles
 *
 */

body b,
body strong {
    font-weight: bold;
}
body._lock {
    overflow-y: hidden;
}
a{
    color: var(--text-color);
    transition: .15s;
}
a:hover:not(.add_to_cart_button, .not-hover),
a:hover p,
a:hover span {
    color: var(--green-color);
}
.container {
    max-width: 1400px;
    padding-inline: 20px;
    margin: 0 auto;
}
.container-medium{
    max-width: 1720px;
}
.container-large{
    max-width: 1800px;
}
.container-fluid{
    max-width: 1920px;
    padding-inline: 10px;
}










/* buttons */
.btn,
.button{
    background: var(--green-color);
    padding: 16px 0;
    border-radius: 5px;
    color: var(--white-color) !important;
    transition: .2s ease-out;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    line-height: 100% !important;
}
.btn-default{
    max-width: 250px;
}
.btn-large{
    max-width: 300px;
}
.button{
    padding: 8px;
    width: fit-content;
}






/* inputs */
input:not([type='radio'], [type='number']){
    border: 1px solid rgba(18, 18, 115, 0.50);
    border-radius: 5px;
    font-size: 16px;
    line-height: 24px;
}
.input-error{
    border: 1px solid red !important;
}
.input:focus{
    border: 1px solid var(--green-color);
}
.btn:hover,
.button:hover {
    background-color: #6B95FF;
}
.btn-checkout{
    background: none;
    color: var(--text-color) !important;
    border: 1.5px solid var(--text-color);
}
.btn-checkout:hover{
    background: var(--text-color);
    color: var(--white-color) !important;
    border: 1.5px solid var(--text-color);
}
.hidden {
    display: none !important;
}
.inherit-text-style * {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}
.background-overlay{
    background: rgba(242, 239, 239);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: .3s;
}
.bg{
    border-radius: 60px;
    max-width: 1880px;
    margin-inline: auto;
    padding-inline: 0 !important;
}
.t-12{
    font-size: 12px;
}
.t-14{
    font-size: 14px;
}
.t-16{
    font-size: 16px;
}
.t-18{
    font-size: 18px;
}
.t-20{
    font-size: 20px;
}
.t-30{
    font-size: 30px;
}
.t-40{
    font-size: 40px;
}
.t-50{
    font-size: 50px;
}
.t-60{
    font-size: 60px;
}
.t-100{
    font-size: 100px;
}
.t-150{
    font-size: 100px;
}
.t-200{
    font-size: 200px;
}
.t-medium{
    font-weight: 500;
}
.t-semibold{
    font-weight: 600;
}
.t-bold{
    font-weight: 700;
}
.t-black{
    font-weight: 900;
}
.t-underline{
    text-decoration: underline;
}
.t-uppercase{
    text-transform: uppercase;
}
.roboto{
    font-family: Roboto;
}
.nunito{
    font-family: Nunito;
}
.t-white{
    color: var(--white-color) !important;
}
.t-black{
    color: var(--black-color);
}
.t-green{
    color: var(--green-color);
}
.title-h1{
    font-size: 60px !important;
    line-height: 66px !important;
}
.title-h2{
    font-size: 50px !important;
    line-height: 55px !important;
}
.title-h3{
    font-size: 45px;
    line-height: 55px;
}
.title-h4{
    font-size: var(--h4) !important;
    line-height: var(--h4) !important;
}
.title-h5{
    font-size: 35px;
    line-height: 43px;
}
.title-h6{
    font-size: 30px;
    line-height: 33px;
}
.title-paragraph{
    font-size: 25px;
    line-height: 30px;
}
.title{
    font-size: 20px !important;
    line-height: 24px !important;
}
.paragraph{
    font-size: 18px !important;
    line-height: 27px !important;
}
.hint{
    font-size: 14px;
    line-height: 21px;
}
.op8{
    opacity: .8;
}



:root{
    --white-color: #ffffff;
    --black-color: #000000;
    --text-color: #0C0C41;
    --main-color: #121273;
    --green-color: #9CCC14;
    --gray-color: #C9C9C9;
    --h1: 40px;
    --h2: 32px;
    --h3: 28px;
    --h4: 24px;
    --h5: 20px;
    --h6: 18px;
}

@media screen and (max-width: 1025px) {
    .title-h1{
        font-size: 35px !important;
        line-height: 110% !important;
    }

    .title-h2{
        font-size: 35px !important;
        line-height: 110% !important;
    }

    .title-h3{
        font-size: 32px;
        line-height: 36px;
    }

    .title-h5{
        font-size: 24px;
        line-height: 26px;
    }

    .title-h6{
        font-size: 20px;
        line-height: 120%;
    }

    .title-paragraph{
        font-size: 20px;
        line-height: 120%;
    }
}

@media screen and (max-width: 1025px) {
    .bg{
        border-radius: 40px;
    }
}

@media screen and (max-width: 767px) {
    .bg{
        border-radius: 20px;
    }

    .container{
        padding-inline: 10px;
    }

    input{
        padding: 8px;
        border: 1px solid var(--main-color);
        border-radius: 5px;
    }

    .title-h1{
        font-size: 30px !important;
        line-height: 34px !important;
    }

    .title-h2{
        font-size: 28px !important;
        line-height: 32px !important;
    }

    .title-h3{
        font-size: 24px;
        line-height: 28px;
    }

    .title-h5{
        font-size: 20px;
        line-height: 22px;
    }

    .title-paragraph{
        font-size: 16px !important;
        line-height: 120% !important;
    }

    .title{
        font-size: 18px !important;
        line-height: 120%;
    }

}

@media screen and (max-width: 370px) {
    .title-h2{
        font-size: 24px !important;
        line-height: 28px !important;
    }
}







/* Null styles */
* {
    padding: 0px;
    margin: 0px;
    border: 0px;
}

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

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

aside,
nav,
footer,
header,
section {
    display: block;
}

body {
    font-family: "Proxima Nova";
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    line-height: 24px;
    font-size: 16px;
    color: var(--text-color);
}

input,
button,
textarea {
    font-family: "Proxima Nova";
}

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

button {
    cursor: pointer;
}

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

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

a:hover {
    text-decoration: none;
}

ul li,
ul {
    list-style: none;
}

img {
    vertical-align: top;
    width: 100%;
}

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

input {
    -webkit-appearance: none;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type='number'],
input[type="number"]:hover,
input[type="number"]:focus {
    -webkit-appearance: none;
    appearance: none;
    -moz-appearance: textfield;
}






















/* 404 */
.not-found{
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.not-found__title{
    font-size: 250px;
    line-height: 250px;
    margin-bottom: 10px;
}

.not-found__message{
    font-size: 32px;
    line-height: 32px;
}

.not-found__redirect{
    padding: 12px;
    margin-top: 20px;
    max-width: 240px;
    font-size: 20px;
    line-height: 20px;
}

@media screen and (max-width: 1600px) {
    .not-found__title{
        font-size: 200px;
        line-height: 200px;
    }

    .not-found__message{
        font-size: 28px;
        line-height: 28px;
    }
}

@media screen and (max-width: 1400px) {

    .not-found__message{
        font-size: 24px;
        line-height: 24px;
    }
}

@media screen and (max-width: 1025px) {
    .not-found__title{
        font-size: 150px;
        line-height: 150px;
    }

    .not-found__message{
        font-size: 22px;
        line-height: 22px;
    }

    .not-found__redirect{
        max-width: 200px;
        font-size: 18px;
        line-height: 18px;
    }

}

@media screen and (max-width: 767px) {
    .not-found__title{
        font-size: 120px;
        line-height: 120px;
    }

    .not-found__message{
        font-size: 20px;
        line-height: 20px;
    }

    .not-found__redirect{
        padding: 10px;
        max-width: 150px;
        font-size: 16px;
        line-height: 16px;
    }
}

@media screen and (max-width: 370px) {
    .not-found__title{
        font-size: 100px;
        line-height: 100px;
    }

    .not-found__message{
        font-size: 18px;
        line-height: 18px;
    }
}











/* custom styles */
.redirect-link{
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.redirect-link path{
    transition: .15s;
}

.redirect-link:hover span{
    color: var(--green-color) !important;
}

.redirect-link:hover path{
    fill: var(--green-color);
}


















/* page styles */

/*.type-page h1{*/
/*    font-size: ;*/
/*}*/


#breadcrumbs,
.woocommerce-breadcrumb{
    margin-bottom: 15px;
}



.breadcrumb-separator{
    margin-inline: 5px;
}

.page-content__title{
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 25px;
}

.page-content__image{
    margin-bottom: 10px;
}

.page-content__image img{
    height: 500px;
    object-fit: cover;
}

.page-content__body p{
    margin-block: 5px;
    line-height: 20px;
}

.page-content__body ul{
    padding-left: 15px;
    margin-block: 15px;
}

.page-content__body ul li{
    list-style: disc;
    margin-block: 5px;
}

@media screen and (max-width: 1600px) {
    .page-content__image img{
        height: 450px;
    }
}

@media screen and (max-width: 1400px) {
    .page-content__image img{
        height: 400px;
    }
}

@media screen and (max-width: 1025px) {
    .page-content__title{
        font-size: 28px;
        line-height: 28px;
    }

    .page-content__image img{
        height: 350px;
    }
}

@media screen and (max-width: 767px) {
    .page-content__title{
        font-size: 24px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .page-content__image img{
        height: 300px;
    }
}

@media screen and (max-width: 400px) {
    .page-content__image img{
        height: 280px;
    }
}















/* Cart styles */
.cart-icon-wrapper{
    position: relative;
}

.cart-icon{
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background: var(--main-color);
    transition: .2s ease-out;
}

.cart-icon:hover{
    background: var(--green-color);
}

.cart-counter{
    width: 25px;
    height: 25px;
    border-radius: 25px;
    background: var(--white-color);
    box-shadow: 1px 1px 5px 0px rgba(12, 12, 65, 0.10);
    font-size: 14px;
    line-height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -10px;
    top: -10px;
    color: var(--text-color) !important;
}



















/* load more */
.load-more-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.load-more {
    background: var(--white-color);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--main-color);
    color: var(--main-color);
    font-size: 16px;
    line-height: 18px;
    transition: .3s ease-out;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.load-more:hover {
    transform: translateY(5px);
    border: 2px solid var(--green-color);
    color: var(--green-color);
}

.load-more.loading {
    transform: translateY(0);
}

.load-more.loading:hover {
    border: var(--green-color);
}


.load-more.loading:after {
    content: "";
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    border-radius: 50%;
    border: 2px solid var(--main-color);
    border-top-color: var(--green-color);
    animation: spin 2s linear infinite;
    opacity: 1;
}

@media screen and (max-width: 767px) {
    .load-more{
        width: 80px;
        height: 80px;
        font-size: 14px;
        line-height: 14px;
    }
}











/* Search results */
.search-form{
    display: flex;
    justify-content: center;
    position: relative;
}

.search-wrapper{
    position: relative;
}

.search-field{
    width: 420px;
    min-height: 50px;
    padding: 15px;
}

.search-form label{
    width: 100%;
}

.search-submit{
    width: 44px;
    height: 44px;
    border-radius: 3px;
    background: var(--main-color);
    transition: .2s ease-out;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 4px;
    top: 50%;
    transform: translate(0, -50%);
}

.search-submit:hover{
    background: var(--green-color);
}

.search-results:not(body){
    max-width: 100%;
    margin-inline: auto;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-out;
    position: absolute;
    width: 100%;
    background: var(--white-color);
    z-index: 5;
}

.search-item__title{
    font-size: 12px;
    line-height: 16px;
}

.search-results__all{
    text-align: center;
    display: block;
}

.search-form.active + .search-results:not(body){
    opacity: 1;
    visibility: visible;
}

.search-item{
    padding: 5px;
    column-gap: 10px;
    display: grid;
    grid-template-columns: 50px 1fr;
}

.search-item__image img{
    border-radius: 5px;
    object-fit: contain;
}

.search-item__body{
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}







/* auth-form */
.auth-wrapper{
    max-width: 600px;
    margin-inline: auto;
}

.auth-title{
    text-align: center;
    margin-bottom: 30px;
}

.auth-form{
    padding: 30px;
    border-radius: 30px;
    background: #FFF;
    box-shadow: 0px 0px 15px 0px rgba(18, 18, 115, 0.10);
}

.auth-form label:not(.woocommerce-form-login__rememberme){
    display: block;
}

.auth-form input[type='password'],
.auth-form input[type='email'],
.auth-form input[type='text']{
    padding: 12px 8px;
    width: 100%;
    margin-bottom: 15px;
}

.register-form{
    margin-top: 30px;
    margin-bottom: 60px;
}

.woocommerce-form-register__submit{
    margin-top: 20px;
    padding-block: 18px;
    width: 100%;
}

.form-row label{
    margin-bottom: 5px;
    display: block;
}

.woocommerce-error{
    margin-bottom: 20px;
    padding-left: 0 !important;
}

.woocommerce-error li{
    list-style: none !important;
}

.woocommerce-form-login .form-row:last-of-type{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 1025px) {
    .woocommerce-form-register__submit{
        padding-block: 12px;
    }
}

@media screen and (max-width: 767px) {
    .auth-form input[type='password'],
    .auth-form input[type='email'],
    .auth-form input[type='text']{
        padding: 8px;
    }

    .woocommerce-form-register__submit{
        padding-block: 10px;
    }
}




















/* bookmark styles */
.product-content__action.loading{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-content__action.loading svg{
    width: 0 !important;
}

.product-content__action.loading:after{
    content: "";
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #ccc;
    border-top-color: var(--main-color);
    animation: spin 1s infinite linear;
}













/* breadcrumb styles */
#breadcrumbs .container{
    padding: 0;
}













/* mobile bar */
.mobile-bar{
    display: none;
}

@media screen and (max-width: 767px) {
    .mobile-bar{
        display: block;
    }

    .mobile-bar__wrapper{
        padding: 20px;
        position: fixed;
        bottom: 0;
        background: var(--white-color);
        width: 100%;
        z-index: 100;
    }

    .mobile-bar__items{
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
}




/* mobile menu */
.mobile-wrapper{
    display: none;
}

@media screen and (max-width: 1025px) {


}




/* close icon */
.close-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    position: absolute;
    cursor: pointer;
    top: 20px;
    right: 20px;
}

.close-icon:after,
.close-icon:before{
    content: "";
    background: var(--main-color);
    width: 30px;
    height: 2px;
    border-radius: 1px;
    transition: .2s ease-out;
    position: absolute;
}

.close-icon:after{
    transform: rotate(45deg);
}

.close-icon:before{
    transform: rotate(-45deg);
}

.close-icon:hover:after,
.close-icon:hover:before{
    background: #6B95FF;
}





















/* header */
.header{
    position: relative;
    z-index: 1000;
}

.header__wrapper{
    display: grid;
    grid-template-columns: 340px 1fr;
    column-gap: 60px;
    padding-top: 20px;
}

.header__menu-wrapper{
    display: flex;
    flex-direction: column;
    row-gap: 13px;
    padding-top: 20px;
}

.header-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 80px;
    max-width: 1240px;
}

.header-contacts,
.header-top__menu .menu{
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.menu-item-has-children{
    position: relative;
}

.sub-menu{
    position: absolute;
    left: 0;
    padding: 10px;
    background: var(--white-color);
    width: 300px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    box-shadow: 0px 0px 15px 0px rgba(18, 18, 115, 0.10);
    /* max-height: 320px; */
    overflow-y: auto;
}
.main-navigation .sub-menu a {
    padding: 5px 0;
}

.sub-menu::-webkit-scrollbar {
    width: 6px;
    background-color: #f9f9fd;
}

.sub-menu::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: 0px 1px 7px 0px rgba(143, 129, 156, 0.40);
    background-color: var(--green-color);
}

.sub-menu::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #F3F3F6;
    box-shadow: 0px 1px 7px 0px rgba(143, 129, 156, 0.40) inset;
}

.sub-menu a{
    font-size: 18px;
    line-height: 20px;
    justify-content: start;
    font-weight: 400 !important;
}

.menu-item-has-children path,
.menu-item-has-children svg{
    transition: .3s;
}

.menu-item-has-children:hover > a path{
    stroke: var(--green-color);
}

.menu-item-has-children:hover > a svg{
    transform: rotate(180deg);
}

.menu-item-has-children:hover > .sub-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.menu-item-has-children:hover:after{
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 15px;
}

.sub-menu-toggle{
    width: 24px;
    height: 24px;
    z-index: 1;
}

.sub-menu .menu-item-has-children:hover > a svg{
    transform: rotate(-90deg);
}

.sub-menu .sub-menu {
    transform: translate(0, -40px) !important;
    left: 295px;
}

.header-top__menu .menu a,
.header-contacts li:not(:last-of-type),
.header-contacts li:not(:last-of-type) a{
    font-size: 18px;
    line-height: 27px;
}

.header-contact,
.header-contact a{
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.main-navigation .menu{
    display: flex;
    column-gap: 62px;
    align-items: center;
}

.main-navigation .menu a{
    font-size: 22px;
    font-weight: 600;
    line-height: 33px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    column-gap: 10px;
    position: relative;
}

.main-navigation .menu > .menu-item-has-children > a:after{
    content: "";
    width: 1px;
    height: 27px;
    background: var(--text-color);
    opacity: .5;
    position: absolute;
    right: -31px;
}

.main-navigation .menu > .menu-item:last-of-type svg{
    display: none;
}

.header-main{
    display: flex;
    align-items: center;
    column-gap: 40px;
}

.header-main__wrapper{
    display: flex;
    align-items: center;
    column-gap: 45px;
}

.search-button{
    display: none;
}

.header__logo-mobile{
    display: none;
    width: fit-content;
}

.search-open{
    display: none;
}

.search__main{
    width: 100%;
}

@media screen and (max-width: 1800px) {
    .header__wrapper{
        grid-template-columns: 300px 1fr;
    }

    .header__logo img{
        width: 300px;
    }

    .main-navigation .menu{
        column-gap: 45px;
    }

    .main-navigation .menu a{
        font-size: 20px;
        line-height: 30px;
    }

    .sub-menu{
        /* width: 250px; */
    }

    .sub-menu .sub-menu{
        left: 245px;
    }

    .sub-menu a{
        font-size: 18px !important;
        line-height: 20px !important;
    }

    .main-navigation .menu .menu-item:not(:last-of-type) a:after{
        right: -22.5px;
    }
}

@media screen and (max-width: 1700px) {
    .header .search-field{
        width: 380px;
    }
}

@media screen and (max-width: 1650px) {
    .header__wrapper{
        grid-template-columns: 260px 1fr;
        column-gap: 45px;
    }

    .header__logo img{
        width: 260px;
    }
}

@media screen and (max-width: 1600px) {
    .header-top{
        margin-right: 60px;
    }

    .header-contacts{
        column-gap: 15px;
    }

    .header .search-field{
        width: 340px;
    }
}

@media screen and (max-width: 1550px) {
    .header__wrapper{
        grid-template-columns: 220px 1fr;
        column-gap: 30px;
    }

    .header__logo img{
        width: 220px;
    }

    .main-navigation .menu{
        column-gap: 30px;
    }

    .main-navigation .menu .menu-item:not(:last-of-type) a:after{
        right: -15px;
    }
}

@media screen and (max-width: 1450px) {
    .header__wrapper{
        grid-template-columns: 200px 1fr;
    }

    .header-main{
        column-gap: 25px;
    }

    .header-main__wrapper{
        column-gap: 30px;
    }

    .header__logo img{
        width: 200px;
    }

    .header-top{
        column-gap: 30px;
    }

    .header-contact svg{
        width: 20px;
        height: 20px;
    }

    .header-top__menu .menu a, .header-contacts li, .header-contacts a{
        font-size: 16px;
        line-height: 22px;
    }

    .sub-menu{
        /* width: 230px; */
    }

    .sub-menu .sub-menu{
        left: 225px;
    }

    .sub-menu a{
        font-size: 16px !important;
        line-height: 18px !important;
    }

    .main-navigation .menu a {
        font-size: 18px;
        line-height: 24px;
    }
}

@media screen and (max-width: 1350px) {
    .header .search-field{
        width: 300px;
    }
}

@media screen and (max-width: 1300px) {
    .header__wrapper{
        grid-template-columns: 180px 1fr;
        column-gap: 20px;
    }

    .header__logo img{
        width: 180px;
    }

    .header-top{
        column-gap: 60px;
    }

    .main-navigation .menu{
        column-gap: 25px;
    }

    .main-navigation .menu a{
        column-gap: 5px;
    }

    .header-contact svg{
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 1250px) {
    .header .search-field{
        width: 250px;
    }

    .header-top__menu .menu a{
        font-size: 14px !important;
    }

    .header-contact,
    .header-contact a{
        font-size: 16px !important;
        line-height: 150% !important;
        column-gap: 5px;
    }
}

@media screen and (max-width: 1200px){
    .header-main{
        justify-content: space-between;
        column-gap: 15px;
    }

    .header-main__wrapper{
        column-gap: 10px;
    }

    .header-top{
        column-gap: 30px;
        margin-right: 0;
    }

    .header-contacts, .header-top__menu .menu{
        column-gap: 15px;
    }

    .header-contact svg {
        width: 18px;
        height: 18px;
    }

    .header__menu-wrapper{
        row-gap: 10px;
    }

    .main-navigation .menu{
        column-gap: 15px;
    }

    .main-navigation .menu a {
        font-size: 16px;
        line-height: 20px;
    }

    .main-navigation .menu a svg{
        width: 20px;
        height: 20px;
    }

    .main-navigation .menu .menu-item:not(:last-of-type) a:after {
        right: -7.5px;
    }

    .sub-menu{
        /* width: 200px; */
    }

    .sub-menu .sub-menu{
        left: 195px;
    }

    .sub-menu a{
        font-size: 14px !important;
        line-height: 16px !important;
    }

    .header .search-field{
        width: 300px;
        min-height: 40px;
        padding: 7px;
    }

    .header .search-submit{
        width: 33px;
        height: 33px;
    }

    .cart-icon{
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 1150px) {
    .header .search-field{
        width: 270px;
    }

    .header-top__menu .menu{
        column-gap: 10px;
    }
}

@media screen and (max-width: 1100px) {
    .header .search-field{
        width: 200px;
    }

}

@media screen and (max-width: 1050px) {
    .header-contact{
        display: block;
    }

    .header-contact svg{
        display: none;
    }
}

@media screen and (max-width: 1025px) {
    .header__wrapper{
        grid-template-columns: 50px 210px 1fr;
        column-gap: 20px;
        align-items: end;
    }

    .burger{
        position: relative;
        width: 50px;
        height: 50px;
        background: #121273;
        border-radius: 3px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .burger__wrapper{
        position: absolute;
        width: 30px;
        height: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .burger-icon{
        width: 100%;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        height: 2px;
        border-radius: 2px;
        background: var(--white-color);
    }

    .burger__wrapper:after,
    .burger__wrapper:before{
        content: "";
        position: absolute;
        background: var(--white-color);
        width: 100%;
        height: 2px;
        border-radius: 2px;
    }

    .burger__wrapper:after{
        top: 0;
    }

    .burger__wrapper:before{
        bottom: 0;
    }

    .mobile-wrapper{
        display: block;
    }

    .mobile-menu__wrapper{
        position: fixed;
        left: -100%;
        top: 0;
        border-radius: 0px 30px 30px 0px;
        box-shadow: 0px 0px 15px 0px rgba(18, 18, 115, 0.10);
        background: var(--white-color);
        width: 100%;
        height: 100%;
        max-width: 420px;
        transition: .4s;
        z-index: 1000;
    }

    .mobile-menu__scroll{
        padding-top: 20px;
        padding-inline: 40px;
        overflow-y: auto;
        max-height: calc(100vh - 50px);
        margin-right: 5px;
        margin-top: 30px;
    }

    .mobile-menu__content{
        position: relative;
        margin-top: -20px;
    }

    .mobile-menu__scroll::-webkit-scrollbar {
        width: 4px;
        background-color: #f9f9fd;
    }

    .mobile-menu__scroll::-webkit-scrollbar-thumb {
        border-radius: 5px;
        box-shadow: 0px 1px 7px 0px rgba(143, 129, 156, 0.40);
        background-color: var(--green-color);
    }

    .mobile-menu__scroll::-webkit-scrollbar-track {
        border-radius: 5px;
        background: #F3F3F6;
        box-shadow: 0px 1px 7px 0px rgba(143, 129, 156, 0.40) inset;
    }

    .mobile-menu__close{
        top: 0;
        right: -15px;
    }

    .mobile-menu__close:after,
    .mobile-menu__close:before{
        width: 35px;
    }

    .mobile-menu__logo{
        margin-bottom: 30px;
    }

    .mobile-menu__logo img{
        width: 210px;
        height: 60px;
    }

    .mobile-menu__search{
        margin-bottom: 22.5px;
    }

    .mobile-menu__search .search-field{
        padding: 5px 15px;
        width: 100% !important;
        min-height: 50px;
    }

    .mobile-menu.active .mobile-menu__wrapper{
        left: 0;
    }

    .mobile-menu.active .background-overlay{
        visibility: visible;
        opacity: .5;
    }

    .header__logo{
        margin-bottom: 6px;
    }

    .header__logo img{
        width: 210px;
        height: 60px;
    }

    .header__menu-wrapper{
        align-items: end;
        padding-top: 0;
    }

    .header-main__wrapper{
        column-gap: 20px;
    }

    .header .search-field{
        padding: 15px;
        max-height: 50px;
        width: 355px;
    }

    .header .search-submit{
        width: 44px;
        height: 44px;
    }

    .cart-icon{
        width: 50px;
        height: 50px;
    }

    .main-navigation,
    .header-top{
        display: none;
    }

    #mobile-menu .menu-item:not(.menu-item-has-children) .sub-menu-toggle{
        display: none;
    }

    #mobile-menu .menu-item-has-children{
        display: flex;
        column-gap: 10px;
        align-items: center;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    #mobile-menu .menu-item.active{
        flex-direction: row-reverse;
        padding: 5px 10px;
        justify-content: start;
        position: relative;
    }

    #mobile-menu .sub-menu .menu-item.active{
        padding: 0;
    }

    #mobile-menu .sub-menu .menu-item.active:after{
        display: none;
    }

    #mobile-menu .menu-item.active:after{
        content: "";
        position: absolute;
        width: 100%;
        min-height: 37px;
        border-radius: 10px;
        background: #FAFAFC;
        top: 8px;
    }

    #mobile-menu .menu-item.active svg {
        transform: rotate(180deg);
    }

    #mobile-menu .menu-item a{
        display: block;
        font-size: 18px;
        font-weight: 600;
        line-height: 150%;
        padding-block: 7.5px;
    }

    #mobile-menu .menu-item.active > a{
        margin-bottom: 7.5px;
    }

    #mobile-menu .menu-item.active > .sub-menu-toggle{
        margin-top: -8px;
    }

    #mobile-menu .menu-item-has-children a{
        display: flex;
        align-items: center;
        justify-content: start;
        flex-direction: row-reverse;
        column-gap: 10px;
        z-index: 1;
    }

    #mobile-menu .menu-item-has-children a svg{
        transform: rotate(270deg);
    }

    .sub-menu {
        display: none;
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 0;
        row-gap: 0;
        transform: none !important;
    }

    #mobile-menu .menu-item.active > .sub-menu{
        display: block;
    }

    .sub-menu .sub-menu{
        transform: none !important;
    }

    .sub-menu .menu-item-has-children > a{
        font-weight: 600 !important;
    }

    .sub-menu a {
        padding-block: 7.5px !important;
        font-size: 18px !important;
        line-height: 24px !important;
        text-align: start;
    }

    .sub-menu .menu-item-has-children svg{
        transform: none !important;
    }

    .sub-menu .menu-item-has-children.active svg{
        transform: rotate(180deg) !important;
    }

    .mobile-menu__redirect{
        padding-block: 21px;
    }

    .mobile-menu .header-contacts{
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        row-gap: 15px;
        align-items: start;
    }

    .mobile-menu__other{
        margin-top: 22.5px;
        padding-top: 30px;
        border-top: 1px solid rgba(12, 12, 65, 0.3);
    }

    .header-contact,
    .header-contact a{
        display: flex;
        align-items: center;
        column-gap: 10px;
        font-size: 18px !important;
        line-height: 150% !important;
    }

    .header-contact svg{
        display: block;
    }

    .after-contacts{
        margin-top: 60px;
        display: flex;
        align-items: center;
        flex-direction: column;
        row-gap: 15px;
    }

    .after-contact{
        display: flex;
        flex-direction: column;
        row-gap: 10px;
    }

    .after-contact__title{
        display: flex;
        align-items: center;
        column-gap: 10px;
    }



}

@media screen and (max-width: 767px) {
    .header__wrapper{
        grid-template-columns: 40px 50px 1fr;
    }

    .header__wrapper,
    .header-main__wrapper{
        column-gap: 10px;
    }

    .header__wrapper{
        position: relative;
    }

    .header__logo{
        display: none;
    }

    .search-wrapper{
        position: static;
    }

    .header__logo-mobile{
        display: block;
    }

    .search-open{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 5px;
        background: var(--main-color);
        transition: .2s ease-out;
    }

    .header-main__wrapper .search-form{
        position: absolute;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        left: 0;
        right: 0;
        top: 60px;
        text-align: center;
        padding-block: 15px;
        background: var(--white-color);
        border-radius: 0 0 5px 5px;
    }

    .search-wrapper._active .search-form{
        opacity: 1;
        visibility: visible;
        top: 70px;
    }

    .header-main__wrapper .search-field{
        width: 100%;
        height: 50px;
    }

    .header-main__wrapper .search__main{
        width: 100%;
        max-width: 400px;
        position: relative;
    }

    .header-main__wrapper .search-results:not(body){
        left: 0;
        top: 140px;
    }

    .header__logo-mobile img{
        width: 49px;
        height: 49px;
    }

    .mobile-menu__scroll{
        padding-top: 10px;
        padding-inline: 20px;
    }

    .mobile-menu__logo{
        margin-bottom: 15px;
    }

    .mobile-menu__logo img{
        width: 175px;
        height: 50px;
    }

    .mobile-menu__close{
        top: 10px;
        right: 0
    }

    .mobile-menu__other{
        padding-top: 15px;
    }

    .after-contacts{
        margin-top: 30px;
    }

    .cart-icon{
        width: 40px;
        height: 40px;
    }

    .cart-icon svg{
        width: 24px;
        height: 24px;
    }

    .cart-counter{
        font-size: 12px;
    }

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

    .burger__wrapper{
        width: 24px;
        height: 12px;
    }
}

@media screen and (max-width: 420px) {
    .mobile-menu__wrapper{
        border-radius: 0;
    }

    .mobile-menu__scroll{
        margin-top: 5px;
        padding-top: 30px;
        max-height: calc(100vh - 20px);
    }

}

/*@media screen and (max-width: 370px) {*/
/*    .header .search-open{*/
/*        width: 40px;*/
/*        height: 40px;*/
/*        border-radius: 5px;*/
/*        background: var(--main-color);*/
/*        display: block;*/
/*    }*/

/*    .header .search-form{*/
/*        display: none;*/
/*    }*/
/*}*/


































/* Product Card */
.product-content{
    border: 1px solid rgba(12, 12, 65, 0.15);
    border-radius: 10px;
    background: var(--white-color);
    padding: 15px 15px 20px 15px;
}

.product-content__image{
    margin-bottom: 6.75px;
}

.product-content__image img{
    border-radius: 10px;
    width: 100%;
    height: 230px;
    object-fit: contain;
}

.product-item__name{
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    display: block;
    height: 63px;
    overflow: hidden;
    transition: .2s;
}

.product-content__footer{
    display: grid;
    grid-template-columns: 130px 60px;
    justify-content: space-between;
    column-gap: 20px;
    align-items: center;
    position: relative;
    margin-top: 35px;
    height: 33px;
}

.product-content__brand img{
    max-height: 33px;
    object-fit: contain;
}

.product-content__link{
    width: 60px;
    height: 60px;
    background: #6B95FF;
    border-radius: 50%;
    transition: .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: -5px;
    bottom: -10px;
}

.product-content__link:hover{
    background: var(--green-color);
}

@media screen and (max-width: 1500px) {
    .product-content__image img{
        height: 200px;
    }
}

@media screen and (max-width: 1025px) {
    .product-content__image{
        margin-bottom: 6px;
    }

    .product-content__image img{
        height: 185px;
    }

    .product-item__name{
        font-size: 16px;
        line-height: 120%;
        height: 56px;
    }

    .product-content__link{
        width: 50px;
        height: 50px;
    }

    .product-content__footer{
        grid-template-columns: 130px 50px;
    }
}

@media screen and (max-width: 767px) {
    .product-content{
        padding: 5px 5px 10px 5px;
    }

    .product-content__image{
        margin-bottom: 10px;
    }

    .product-content__image img{
        height: 145px;
    }

    .product-item__name{
        font-size: 12px;
        line-height: 120%;
        height: 42px;
    }

    .product-content__link{
        width: 40px;
        height: 40px;
        right: 0;
        bottom: 0;
    }

    .product-content__link svg{
        width: 17px;
    }

    .product-content__footer{
        margin-top: 30px;
        grid-template-columns: 100px 40px;
    }
}

@media screen and (max-width: 370px) {
    .product-item__name{
        text-align: center;
    }

    .product-content__footer{
        margin-top: 10px;
    }
}













/* cf7 form */
.wpcf7{
    position: relative;
}

.wpcf7-response-output{
    border-radius: 10px;
    position: absolute;
    margin-top: 10px !important;
    background: var(--white-color);
    box-shadow: 0px 0px 15px 0px rgba(18, 18, 115, 0.10);
    border: none !important;
    width: 100%;
    text-align: center;
}

.wpcf7 input[type='text'],
.wpcf7 input[type='email'],
.wpcf7 input[type='tel']{
    margin-top: 10px;
    padding: 7px 15px;
    width: 100%;
}

.text-label{
    display: block;
    margin-bottom: 20px;
}

.radio-wrapper{
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 0fr 1fr;
    column-gap: 15px;
    align-items: center;
}

.contact-choose{
    background: rgba(12, 12, 65, 0.1);
    color: var(--text-color) !important;
    padding-block: 9px;
    line-height: 150% !important;
}

.contact-choose.active,
.contact-choose:hover{
    background: var(--text-color);
    color: var(--white-color) !important;
}

.contact-choose:not(.active) + .wpcf7-form-control-wrap{
    display: none;
}

.radio-wrapper .contact-choose:first-child {
    grid-column: 1;
    grid-row: 1;
}

.radio-wrapper .wpcf7-form-control-wrap + .contact-choose{
    grid-column: 2;
    grid-row: 1;
}

.radio-wrapper .wpcf7-form-control-wrap{
    grid-column: 1/3;
}

.field-wrapper .wpcf7-form-control-wrap{
    display: none !important;
}

.field-wrapper .wpcf7-form-control-wrap.active{
    display: block !important;
}

.file-upload-wrapper{
    margin-top: 20px;
}

.file-upload-wrapper svg{
    min-width: 24px;
}

.file-upload-wrapper p{
    display: flex;
    align-items: start;
    column-gap: 10px;
    flex-direction: row-reverse;
    justify-content: start;
}

.file-upload-wrapper.file-loaded p {
    display: none;
}

.wpcf7 .upload-btn{
    border: none;
    margin-top: 20px;
    padding-block: 17px;
}

.wpcf7 .upload-btn:disabled{
    opacity: .6;
    background: var(--green-color) !important;
}

.wpcf7-file {
    position: absolute;
    width: 100%;
    height: 70px;
    top: -50px;
    opacity: 0;
}

.wpcf7-spinner{
    display: none;
}

.file-loaded .wpcf7-file {
    display: none;
}

.textarea-label{
    display: block;
    margin-top: 20px;
}

.wpcf7 textarea{
    margin-top: 10px;
    border: 1px solid rgba(18, 18, 115, 0.5);
    border-radius: 5px;
    background: var(--white-color);
    height: 100px;
    width: 100%;
    padding: 7px 15px;
}

.wpcf7 textarea::placeholder{
    opacity: 0.6;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
}

@media screen and (max-width: 1025px) {
    .wpcf7 .upload-btn{
        margin-top: 30px;
    }
}

@media screen and (max-width: 767px) {
    .wpcf7 .upload-btn{
        line-height: 17px;
        margin-top: 20px;
    }

    .wpcf7-file{
        top: -45px;
        height: 60px;
    }
}

@media screen and (max-width: 450px) {
    .wpcf7 .wpcf7-radio{
        grid-template-columns: 100%;
        row-gap: 10px;
    }

    .radio-wrapper{
        grid-template-columns: 100%;
        row-gap: 3px;
        text-align: center;
    }
}



























/* advice */
.advice{
    margin-top: 100px;
    margin-bottom: 60px;
}

.advice-bg{
    border-radius: 30px;
    max-width: 1640px;
    margin-inline: auto;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.container-advice{
    max-width: 1420px;
    padding-inline: 0;
}

.advice__wrapper{
    display: grid;
    grid-template-columns: 1fr 420px;
    column-gap: 250px;
    padding: 40px;
}

.advice__content{
    margin-top: 20px;
}

.advice__title{
    margin-bottom: 30px;
}

.advice__text{
    max-width: 480px;
}

.advice__text p{
    line-height: 120%;
}

.advice__form .contact-choose{
    background: rgba(255, 255, 255, 0.3);
    color: var(--white-color) !important;
}

.advice__form .contact-choose:hover,
.advice__form .contact-choose.active{
    color: var(--text-color) !important;
    background: var(--white-color);
}

.advice__form path{
    stroke: var(--white-color);
}

@media screen and (max-width: 1450px) {
    .advice__wrapper{
        column-gap: 60px;
    }
}

@media screen and (max-width: 1025px) {
    .advice{
        margin-top: 60px;
        margin-bottom: 40px;
    }

    .advice__content{
        margin-top: 0;
    }

    .advice__title{
        max-width: 800px;
        margin-bottom: 15px;
    }

    .advice__wrapper{
        grid-template-columns: 100%;
        row-gap: 40px;
    }
}

@media screen and (max-width: 767px) {
    .advice{
        margin-bottom: 30px;
    }

    .advice-bg{
        border-radius: 20px;
    }

    .container-advice.container{
        padding-inline: 0;
    }

    .advice__wrapper{
        padding: 30px 20px;
        row-gap: 30px;
    }
}
























/* footer */
.footer{
    margin-bottom: 60px;
}

.footer__wrapper{
    display: grid;
    grid-template-columns: 400px 1fr;
    column-gap: 125px;
    align-items: center;
}

.footer__logo{
    grid-row: 1/3;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    margin-bottom: 65px;
}

.footer__logo img{
    height: 117px;
}

.footer__menu{
    align-self: end;
}

.footer__menu .menu{
    display: flex;
    column-gap: 50px;
}

.footer__menu .menu a{
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}

.footer__contacts{
    display: flex;
    column-gap: 120px;
    grid-row: 2;
    grid-column: 2;
}

.footer__contacts .row{
    display: flex;
    align-items: center;
}

.footer__contacts .row:first-of-type{
    column-gap: 120px;
}

.footer__contacts .row:first-of-type .footer-contact a{
    white-space: nowrap;
}

.footer__contacts .row:last-of-type{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 300px));
    column-gap: 50px;
	row-gap: 10px;
}

.contact-title{
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.footer-contact,
.footer-contact a{
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 20px;
    line-height: 30px;
}

.footer__other{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(12, 12, 65, 0.3);
    column-gap: 30px;
}

.other-item{
    opacity: .8;
    text-align: center;
}

@media screen and (max-width: 1750px) {
    .footer__wrapper{
        grid-template-columns: 350px 1fr;
        column-gap: 80px;
    }
}

@media screen and (max-width: 1650px) {
    .footer__wrapper{
        grid-template-columns: 290px 1fr;
        column-gap: 80px;
    }

    .footer__menu .menu{
        column-gap: 30px;
    }

    .footer__contacts,
    .footer__contacts .row:first-of-type,
    .footer__contacts .row:last-of-type{
        column-gap: 80px;
    }
}

@media screen and (max-width: 1500px) {
    .footer__contacts,
    .footer__wrapper,
    .footer__contacts .row:first-of-type,
    .footer__contacts .row:last-of-type{
        column-gap: 60px;
    }
}

@media screen and (max-width: 1400px) {
    .footer__contacts,
    .footer__wrapper{
        column-gap: 40px;
    }

    .footer__contacts .row:first-of-type,
    .footer__contacts .row:last-of-type{
        column-gap: 50px;
    }

    .footer__contacts .row:first-of-type .footer-contact{
        margin-bottom: 5px;
    }

    .footer-contact, .footer-contact a,
    .footer__menu .menu a{
        font-size: 18px;
        line-height: 20px;
    }

    .footer__contacts .row:last-of-type{
        grid-template-columns: repeat(2, minmax(0, 240px));
    }
}

@media screen and (max-width: 1300px) {
    .footer__wrapper{
        grid-template-columns: 240px 1fr;
    }

    .footer__logo{
        row-gap: 0;
    }

    .footer__logo img{
        height: 90px;
        width: 240px;
    }

    .footer__contacts,
    .footer__wrapper,
    .footer__contacts .row:first-of-type,
    .footer__contacts .row:last-of-type{
        column-gap: 30px;
    }
}

@media screen and (max-width: 1200px) {
    .footer__menu .menu{
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer__wrapper{
        grid-template-columns: 200px 1fr;
    }

    .footer__logo img{
        width: 200px;
        height: 80px;
    }
}

@media screen and (max-width: 1150px) {
    .footer__wrapper{
        column-gap: 15px;
        row-gap: 10px;
    }

    .footer__contacts, .footer__contacts .row:first-of-type, .footer__contacts .row:last-of-type{
        column-gap: 20px;
    }
}

@media screen and (max-width: 1100px) {
    .footer__contacts .row:last-of-type {
        grid-template-columns: repeat(2, minmax(0, 220px));
    }

    .footer-contact,
    .footer-contact a{
        font-size: 16px !important;
        line-height: 20px !important;
    }

    .footer-contact svg{
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 1025px) {
    .footer__wrapper{
        grid-template-columns: repeat(2, 1fr);
        column-gap: 60px;
        row-gap: 0;
    }

    .footer__logo{
        grid-row: 1;
        align-self: start;
        margin-bottom: 0;
    }

    .footer__logo img{
        width: 280px;
        height: 81px;
    }

    .footer__text{
        margin-top: 20px;
    }

    .footer__menu{
        grid-row: 2;
        grid-column: 1;
        align-self: start;
    }

    .footer__menu .menu{
        flex-direction: column;
        row-gap: 20px;
    }

    .footer__contacts{
        grid-column: 2;
        grid-row: 1/3;
        row-gap: 30px;
        margin-top: 60px;
    }

    .footer__contacts,
    .footer__contacts .row{
        display: flex !important;
        flex-direction: column;
    }

    .footer__contacts .row{
        align-items: start;
        row-gap: 30px;
    }

    .footer-contact, .footer-contact a, .footer__menu .menu a{
        font-size: 20px !important;
        line-height: 150% !important;
    }

    .footer-contact-text{
        font-size: 18px !important;
        line-height: 130% !important;
    }


    .row .column{
        max-width: 300px;
    }

    .footer__other{
        flex-direction: column;
        align-items: start;
        margin-top: 60px;
    }

    .other-item{
        text-align: start;
    }
}

@media screen and (max-width: 650px) {
    .footer__wrapper{
        column-gap: 45px;
    }
}

@media screen and (max-width: 600px) {
    .footer__wrapper{
        column-gap: 30px;
    }
}

@media screen and (max-width: 550px) {
    .footer__wrapper{
        grid-template-columns: 100%;
        row-gap: 30px;
    }

    .footer-contact-wrapper{
        display: flex;
        column-gap: 20px;
        align-items: center;
    }

    .footer-contact-wrapper .footer-contact{
        white-space: nowrap;
    }

    .footer__text{
        margin-top: 15px;
        max-width: 355px;
    }

    .footer__menu{
        grid-row: auto;
        grid-column: auto;
    }

    .footer__contacts{
        margin-top: 0;
        grid-column: auto;
        grid-row: auto;
    }

    .footer__other{
        margin-top: 30px;
    }
}

@media screen and (max-width: 370px) {
    .footer-contact-wrapper{
        flex-direction: column;
        row-gap: 5px;
    }
}



/*@media screen and (max-width: 1400px) {*/
/*    .footer__menus,*/
/*    .footer__contacts{*/
/*        flex-direction: column;*/
/*        row-gap: 15px;*/
/*        align-items: center;*/
/*    }*/
/*}*/

/*@media screen and (max-width: 1025px) {*/
/*    .footer__wrapper{*/
/*        grid-template-columns: 100%;*/
/*        row-gap: 30px;*/
/*    }*/

/*    .footer-text {*/
/*        max-width: 400px;*/
/*        text-align: center;*/
/*        margin-inline: auto;*/
/*    }*/

/*    .footer__main{*/
/*        margin-top: 0;*/
/*    }*/

/*    .footer__other{*/
/*        grid-column: auto;*/
/*        padding-top: 15px;*/
/*        margin-top: 30px;*/
/*    }*/
/*}*/

/*@media screen and (max-width: 767px) {*/
/*    .footer{*/
/*        margin-bottom: 120px;*/
/*    }*/

/*    .footer__main{*/
/*        row-gap: 20px;*/
/*    }*/

/*    .footer__contacts{*/
/*        row-gap: 10px;*/
/*    }*/

/*    .footer__menus{*/
/*        row-gap: 5px;*/
/*    }*/

/*    .footer__contacts .row{*/
/*        row-gap: 10px;*/
/*        flex-direction: column;*/
/*        text-align: center;*/
/*    }*/

/*    .footer__menu .menu,*/
/*    .footer__sub-menu .menu{*/
/*        text-align: center;*/
/*        flex-direction: column;*/
/*        row-gap: 5px;*/
/*    }*/

/*    .footer__other{*/
/*        flex-direction: column;*/
/*        row-gap: 15px;*/
/*        text-align: center;*/
/*    }*/
/*}*/






















/* brand item */
.brand-item{
    background: var(--white-color);
    height: fit-content;
}

.brand-item__image{
    width: 100%;
    height: 125px;
    background: #FAFAFC;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
}

.brand-item__image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-item__description{
    margin-top: 15px;
    line-height: 23.4px;
}

@media screen and (max-width: 1025px) {
    .brand-item__image img{
        height: 50px;
    }
}

@media screen and (max-width: 767px) {
    .brand-item__description{
        margin-top: 10px;
    }
}

@media screen and (max-width: 450px) {
    .brand-item__image{
        padding: 17px;
        height: 71px;
    }

    .brand-item__image img{
        height: 30px;
    }

    .brand-item__description{
        font-size: 14px !important;
        line-height: 130% !important;
    }
}
















/* breadcrumb */
.woocommerce-breadcrumb{
    text-transform: uppercase;
}












/* call item */
.call-item-wrapper{
    position: fixed;
    bottom: 40px;
    right: 80px;
    display: flex;
    justify-content: center;
    row-gap: 10px;
    flex-direction: column-reverse;
    padding-top: 20px;
    z-index: 50;
}

.call-item{
    display: flex;
    align-items: center;
    column-gap: 10px;
    width: fit-content;
    margin-left: auto;
}

.call-item span:first-of-type{
    background:rgba(0, 0, 0, 0.78);
    border-radius: 20px;
    padding: 5px;
}

.call-item:hover a{
    color: var(--green-color);
}

.call-items{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-right: 8px;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: -84px;
    bottom: 70px;
}

.call-item-wrapper:hover .call-items,
.call-item-wrapper.active .call-items{
    opacity: 1;
    visibility: visible;
    transform: translateY(-10px);
}

.call-item__icon{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: relative;
    background: var(--green-color);
}

.call-item__icon:after{
    content: "";
    width: 35px;
    height: 35px;
    border-radius: 50%;
    position: absolute;
    border: 1px solid var(--white-color);
    transition: .2s;
}

.call-item__icon svg{
    width: 20px;
    height: 20px;
    fill: var(--white-color);
}

.call-item__icon-main{
    width: 60px;
    height: 60px;
    cursor: pointer;
}

.call-item__icon-main svg{
    width: 35px;
    height: 35px;
}

.call-item__icon-main:after{
    width: 50px;
    height: 50px;
}

.call-item path{
    transition: .2s;
}

@media screen and (max-width: 1800px) {
    .call-item-wrapper{
        right: 20px;
    }
}


@media screen and (max-width: 1400px) {
    .call-item{
        right: 10px;
    }
}

@media screen and (max-width: 767px) {
    /* call item */
    .call-item-wrapper{
        bottom: 90px;
        padding-top: 16px;
    }

    .call-items{
        bottom: 50px;
    }

    .call-item__icon{
        width: 35px;
        height: 35px;
    }

    .call-item__icon svg{
        width: 20px;
        height: 20px;
    }

    .call-item__icon:after{
        width: 30px;
        height: 30px;
    }

    .call-item__icon-main{
        width: 45px;
        height: 45px;
    }

    .call-item__icon-main:after{
        width: 38px;
        height: 38px;
    }

    .call-item__icon-main svg{
        width: 25px;
        height: 25px;
    }
}























/* popup */
.popup.active .background-overlay{
    opacity: .5;
    visibility: visible;
}

.popup__wrapper{
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 650px;
    width: 100%;
    height: fit-content;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 1000;
}

.popup.active .popup__wrapper{
    opacity: 1;
    visibility: visible;
}

.popup__close{
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    z-index: 5;
}






















/* thanks page */
.thanks-form{
    max-width: 550px;
    margin-inline: auto;
    margin-block: 60px;
    text-align: center;
    min-height: 400px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.thanks-form__title{
    margin-bottom: 15px;
}

.thanks-form__text{
    margin-bottom: 20px;
}

.thanks-form__btn{
    max-width: 260px;
    margin-inline: auto;
}

@media screen and (max-width: 1025px){
    .thanks-form__btn{
        max-width: 220px;
    }
}

@media screen and (max-width: 767px) {
    .thanks-form__btn{
        max-width: 180px;
    }
}













/* cart item variation */
.variation dt,
.variation dd{
    display: inline-block !important;
}


















/* block with hexagon */
.hexagon-bg{
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    top: 50%;
    transform: translate(0, -50%);
    z-index: -1;
}

.hexagon-bg img{
    width: 100%;
    height: 100%;
}

.hexagon-block{
    grid-template-columns: 520px 1fr;
}

.hexagon-blocks__wrapper{
    display: grid;
    grid-template-columns: 438px 260px;
    column-gap: 25px;
    align-items: start;
    min-height: 697px;
    position: relative;
}

.hexagon{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hexagon img{
    opacity: .6;
    width: 260px;
    height: 360px;
    object-fit: contain;
}

.hexagon-content{
    position: absolute;
    display: flex;
    align-items: center;
    flex-direction: column;
    row-gap: 5px;
}

.hexagon-content__image img{
    width: 80px;
    height: 80px;
}

.hexagon-content__text{
    font-size: 25px;
    line-height: 32px;
    max-width: 200px;
}

.hexagon:first-of-type img{
    width: 438px;
    height: 506px;
}

.hexagon:first-of-type .hexagon-content{
    row-gap: 20px;
}

.hexagon:first-of-type .hexagon-content__image img{
    width: 110px;
    height: 110px;
}

.hexagon:first-of-type .hexagon-content__text{
    font-size: 28px;
    line-height: 36px;
    max-width: 358px;
}

.hexagon:nth-child(2){
    margin-top: 120px;
}

.hexagon:nth-child(3){
    position: absolute;
    right: 145px;
    top: 370px;
}

@media screen and (max-width: 1600px) {
    .hexagon-blocks__wrapper{
        grid-template-columns: 360px 220px;
        min-height: 580px;
        justify-content: center;
    }

    .hexagon:first-of-type img {
        width: 360px;
        height: 420px;
    }

    .hexagon img {
        width: 220px;
        height: 320px;
    }

    .hexagon:first-of-type .hexagon-content__image img{
        width: 100px;
        height: 100px;
    }

    .hexagon-content__image img{
        width: 70px;
        height: 70px;
    }

    .hexagon-content__text{
        font-size: 22px;
        line-height: 26px;
    }

    .hexagon:first-of-type .hexagon-content__text{
        font-size: 25px;
        line-height: 32px;
        max-width: 320px;
    }

    .hexagon:nth-child(2) {
        margin-top: 100px;
    }

    .hexagon:nth-child(3) {
        right: inherit;
        left: 315px;
        top: 300px;
    }

}

@media screen and (max-width: 1400px) {
    .hexagon-block{
        grid-template-columns: 1fr 580px;
    }

    .hexagon-blocks__wrapper{
        grid-template-columns: 320px 220px;
    }

    .hexagon:nth-child(2) {
        margin-top: 80px;
    }

    .hexagon:nth-child(3) {
        left: 225px;
        top: 280px;
    }

    .hexagon:first-of-type > img {
        width: 320px;
        height: 380px;
    }

    .hexagon > img {
        width: 220px;
        height: 300px;
    }
}

@media screen and (max-width: 1200px) {
    .hexagon-block {
        grid-template-columns: 1fr 510px;
    }

    .hexagon-blocks__wrapper{
        grid-template-columns: 280px 180px;
        column-gap: 20px;
        min-height: 460px;
    }

    .hexagon:nth-child(2) {
        margin-top: 70px;
    }

    .hexagon:nth-child(3) {
        left: 210px;
        top: 235px;
    }

    .hexagon:first-of-type img {
        width: 280px;
        height: 320px;
    }

    .hexagon img {
        width: 180px;
        height: 260px;
    }

    .hexagon:first-of-type .hexagon-content__image img{
        width: 80px;
        height: 80px;
    }

    .hexagon-content__image img{
        width: 60px;
        height: 60px;
    }

    .hexagon-content__text{
        font-size: 18px;
        line-height: 22px;
    }

    .hexagon:first-of-type .hexagon-content__text{
        font-size: 20px;
        line-height: 24px;
        max-width: 250px;
    }
}

@media screen and (max-width: 1025px) {
    .hexagon-bg{
        top: 80%;
    }

    .hexagon-block{
        grid-template-columns: 100%;
        row-gap: 40px;
    }

    .hexagon-blocks__wrapper{
        grid-template-columns: 393px 234px;
        min-height: 650px;
    }

    .hexagon:first-of-type img {
        width: 393px;
        height: 454px;
    }

    .hexagon img {
        width: 234px;
        height: 269px;
    }

    .hexagon:first-of-type .hexagon-content__image img{
        width: 98.8px;
        height: 98.8px;
    }

    .hexagon-content__image img{
        width: 71.9px;
        height: 71.9px;
    }

    .hexagon-content__text{
        font-size: 20px;
        line-height: 130%;
    }

    .hexagon:first-of-type .hexagon-content__text{
        font-size: 25px;
        line-height: 130%;
        max-width: 320px;
    }

    .hexagon:nth-child(2) {
        margin-top: 130px;
    }

    .hexagon:nth-child(3) {
        left: 180px;
        top: 355px;
        right: 20px;
    }
}

@media screen and (max-width: 767px) {
    .hexagon-bg{
        display: none;
    }

    .hexagon-blocks{
        background-image: url("/wp-content/uploads/2023/06/hexagon-bg.png");
        background-repeat: no-repeat;
        background-size: cover;
    }

    .hexagon-blocks__wrapper{
        grid-template-columns: 100%;
        min-height: fit-content;
    }

    .hexagon > img {
        width: 300px;
        height: 360px;
    }

    .hexagon:nth-child(1){
        margin-right: auto;
    }

    .hexagon:nth-child(2){
        margin-right: 17px;
        margin-left: auto;
    }

    .hexagon:nth-child(2),
    .hexagon:nth-child(3){
        margin-top: -80px;
    }

    .hexagon:nth-child(3){
        margin-left: 38px;
        margin-right: auto;
        position: static;
    }

    .hexagon:first-of-type .hexagon-content{
        row-gap: 10px;
    }

    .hexagon-content__image img{
        width: 90px;
        height: 90px;
    }
}

@media screen and (max-width: 550px) {
    .hexagon:nth-child(2){
        margin-top: -50px;
    }

    .hexagon:nth-child(3){
        margin-top: -40px;
    }

    .hexagon > img {
        width: 193.246px;
        height: 222.976px;
    }

    .hexagon:first-of-type > img{
        width: 235px;
        height: 271.484px;
    }

    .hexagon-content__image img{
        width: 59.46px;
        height: 59.46px;
    }

    .hexagon:first-of-type .hexagon-content__image img {
        width: 59.018px;
        height: 59.018px;
    }

    .hexagon-content__text,
    .hexagon:first-of-type .hexagon-content__text{
        font-size: 16px;
        line-height: 130%;
        max-width: 180px;
    }

    .hexagon:first-of-type .hexagon-content__text{
        max-width: 190px;
    }
}

@media screen and (max-width: 370px) {
    .hexagon:nth-child(2){
        margin-right: 0;
    }

    .hexagon:nth-child(3){
        margin-left: 10px;
    }

    .hexagon:nth-child(2),
    .hexagon:nth-child(3){
        margin-top: -50px;
    }

    .hexagon > img {
        width: 173.246px;
        height: 202.976px;
    }

    .hexagon:first-of-type > img {
        width: 215px;
        height: 251.484px;
    }
}














.container-page-header{
    max-width: 1680px !important;
}

.page-header{
    margin-top: 25px;
    padding: 30px 60px;
    border-radius: 30px;
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-header__breadcrumbs #breadcrumbs span{
    color: rgba(255, 255, 255, 0.7);
}

.page-header__breadcrumbs #breadcrumbs span a{
    color: var(--white-color);
}

.page-header__breadcrumbs #breadcrumbs span a:hover{
    color: var(--white-color);
}

@media screen and (max-width: 1200px) {
    .page-header{
        padding: 30px;
    }
}

@media screen and (max-width: 1025px) {
    .page-header{
        margin-top: 30px;
    }

    .page-header__breadcrumbs #breadcrumbs{
        margin-bottom: 10px;
    }

    .page-header__title{
        font-size: 40px !important;
        line-height: 120% !important;
    }
}

@media screen and (max-width: 767px) {
    .page-header{
        margin-top: 20px;
        padding: 20px 30px;
        border-radius: 20px;
    }

    .page-header__breadcrumbs #breadcrumbs{
        font-size: 12px;
        line-height: 120%;
    }

    .page-header__title{
        font-size: 25px !important;
    }
}

@media screen and (max-width: 370px) {
    .page-header{
        padding: 20px;
    }
}












/* form styles*/
.custom-form{
    border-radius: 30px;
    background: var(--white-color);
    box-shadow: 0px 0px 15px 0px rgba(18, 18, 115, 0.10);
    padding: 40px;
    height: fit-content;
}

.custom-form__title{
    max-width: 420px;
    margin-bottom: 30px;
    width: calc(100% - 40px);
}

.custom-form-popup{
    padding: 40px 60px;
    max-height: 100vh;
    overflow-y: auto;
}

.custom-form .wpcf7-form-control-wrap{
    display: block;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .custom-form{
        padding: 30px 20px;
    }

    .custom-form__title{
        font-size: 18px;
    }
}
































/* banner */
.banner{
    margin-top: 25px;
}

.banner-bg{
    padding-top: 125px;
    padding-bottom: 60px;
    background: #FAFAFC;
}

.banner__wrapper{
    padding: 80px 80px 100px 80px;
    border-radius: 30px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}

.banner__breadcrumbs{
    margin-bottom: 10px;
}

.banner__breadcrumbs #breadcrumbs span{
    color: rgba(255, 255, 255, 0.7);
}

.banner__breadcrumbs #breadcrumbs span a{
    color: var(--white-color);
}

.banner__breadcrumbs #breadcrumbs span a:hover{
    color: var(--white-color);
}

.banner__main{
    position: relative;
}

.banner__title{
    max-width: 567px;
}

.banner__text{
    margin-top: 30px;
}

.banner__image{
    position: absolute;
    right: 310px;
    top: 50%;
    transform: translate(0, -50%);
}

.banner .btn{
    margin-top: 60px;
    padding-block: 21px;
    min-height: 60px;
}

.banner__image-mobile{
    display: none;
}

@media screen and (max-width: 1600px) {
    .banner__wrapper{
        padding: 80px;
    }

    .banner__image{
        right: 80px;
        max-width: 500px;
        max-height: 450px;
    }
}

@media screen and (max-width: 1400px) {
    .banner__image{
        right: 0;
    }
}

@media screen and (max-width: 1300px) {
    .banner__title.title-h2{
        font-size: 45px !important;
        line-height: 120% !important;
    }

    .banner__image{
        max-width: 400px;
        right: -20px;
    }
}

@media screen and (max-width: 1100px) {
    .banner__image{
        max-width: 350px;
    }
}

@media screen and (max-width: 1025px) {
    .banner-bg{
        padding-top: 125px;
        padding-bottom: 40px;
    }

    .banner__wrapper{
        padding: 60px;
        min-height: 455px;
    }

    .banner__breadcrumbs #breadcrumbs{
        margin-bottom: 10px;
    }

    .banner__title.title-h2{
        font-size: 40px !important;
        line-height: 120% !important;
    }

    .banner__image{
        bottom: 100px;
    }
}

@media screen and (max-width: 930px) {
    .banner__image {
        max-width: 316px;
        max-height: 344px;
    }
}

@media screen and (max-width: 767px) {
    .banner-bg{
        padding-top: 125px;
        padding-bottom: 30px;
    }

    .banner__wrapper{
        padding: 30px 20px;
        min-height: 415px;
        position: relative;
    }

    .banner__breadcrumbs #breadcrumbs{
        font-size: 12px;
        line-height: 120%;
    }

    .banner__title.title-h2{
        font-size: 25px !important;
        max-width: 295px;
    }

    .banner__text{
        margin-top: 15px;
    }

    .banner .btn{
        position: static;
        max-width: 100%;
        margin-top: 0;
    }

    .banner__image{
        display: none;
        position: static;
        transform: none;
        margin-inline: auto;
    }

    .banner__image-mobile{
        display: block;
    }
}

@media screen and (max-width: 370px) {
    .banner__title.title-h2{
        font-size: 22px !important;
    }
}












/* add to cart ajax */
.added_to_cart{
    display: none;
}
















/* simple text page */
.page-content__body {
    margin-top: 40px;
}

.page-content__body h2 {
    font-size: 30px;
    line-height: 33px;
    font-weight: 700;
    margin-bottom: 30px;
}

.page-content__body .ol,
.page-content__body ol,
.page-content__body ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.page-content__body .ol .li,
.page-content__body ol li {
    margin-bottom: 15px;
}

.page-content__body .descr,
.page-content__body p {
    margin-bottom: 15px;
}

.page-content__body table,
.page-content__body th,
.page-content__body td {
    border: 1px solid #d8d8d8;
    font-size: inherit;
    line-height: inherit;
}

.page-content__body table {
    border-collapse: collapse;
}

.page-content__body table th,
.page-content__body table td {
    padding: 10px;
}










/* new styles */
.single_add_to_cart_button.loading{
    position: relative;
    cursor: not-allowed;
}

.single_add_to_cart_button.loading:before{
    content: "";
    position: absolute;
    border: 6px solid #f3f3f3;
    border-top: 6px solid var(--main-color);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single_add_to_cart_button.loading:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: .8;
}

.single_add_to_cart_button.added{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

