:root{
    --black: #23211D;
}
@font-face {
    font-family: "Bebas-Neue";
    src: local("Bebas-Neue"), url(/css/fonts/Bebas-Neue.ttf) format("truetype");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Roboto";
    src: local("Roboto"), url(/css/fonts/Roboto-Regular.ttf) format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Roboto";
    src: local("Roboto"), url(/css/fonts/Roboto-Medium.ttf) format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Roboto";
    src: local("Roboto"), url(/css/fonts/Roboto-Light.ttf) format("truetype");
    font-weight: 300;
    font-style: normal;
}
html {
    font-family: "Roboto";
    font-style: normal;
    font-size: 16px;
}

html {
  scroll-behavior: smooth;
}

body{
    margin: 0;
}
.container{
    max-width: 1240px;
    /* max-width: 1170px; */
    width: calc(100% - 50px);
    margin: 0 auto;
    padding: 0 25px;
}
nav{
    padding: 35px 0;
    display: flex;
    align-items: center;
}
.logo{
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo-title{
    color: #69A44B;
    font-size: 20px;
    margin-left: 7px;
    text-transform: uppercase;
}
.nav-links{
    display: flex;
    gap: 90px;
    margin-left: 150px;
}
.nav-link{
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--black);
}
.nav-mobile-bar{
    display: none;
    justify-content: space-between;
}
.nav-mobile-back{
    margin: 0 !important;
}
footer{
    background-color: #AEC8A1;
    padding: 35px 0;
}
.footer{
    display: flex;
    justify-content: space-between;
}
.footer-bottom{
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    font-size: 14px;
}
.footer-logo{
    color: #fff;
    font-size: 20px;
    margin-left: 7px;
    text-transform: uppercase;
}
.footer-apps{
    text-align: center;
}
.footer-apps > a{
    display: block;
    margin-bottom: 15px;
}
.footer-links{
    display: flex;
    gap: 40px;

}
.footer-links>div>*{
    margin-bottom: 10px;
}
.footer-links>div{
    width: 170px;
}
.footer-link{
    text-decoration: none;
    color: var(--black);
    display: block;
}
.banner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.banner-category{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url(/images/lists.png);
    background-repeat: no-repeat;
    background-position: center;
}
.banner-text-block{
    width: 100%;
    max-width: 480px;
}
.banner-prod-text-block{
    width: 100%;
    max-width: 600px;
}
.banner-h1{
    font-family: "Bebas-Neue";
    font-size: 64px;
    font-weight: 400;
    margin-bottom: 20px;
}
.banner-sub-text{
    font-size: 36px;
    margin-bottom: 30px;
}
.banner-norm-text{
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
}
.banner-img{
    width: 100%;
    max-width: fit-content;
}
.btn{
    background-color: #C94123;
    color: #fff;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 600;
    padding: 14px 22px;
    border: none;
    cursor: pointer;
}
.btn:hover{
    opacity: .9;
}
.btn-green{
    background-color: #AEC8A1;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    padding: 14px 22px;
    border: none;
    cursor: pointer;
}
.btn-green:hover{
    opacity: .9;
}
.filters-wrap{
    /* position: relative; */
    margin: 120px 0;
}
.filters{
    display: flex;
    /* position: absolute; */
    overflow-x: scroll;
    
    left: 0;
    /* justify-content: center; */
}
.filters-instructions{
    display: flex;
    /* position: absolute; */
    overflow-x: scroll;
    
    left: 0;
    justify-content: center;
}
.filters::-webkit-scrollbar {
    display: none;
}
.filters-instructions::-webkit-scrollbar {
    display: none;
}
.filter{
    background-color: #fff;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 22px;
    border: 1px solid #C94123;
    cursor: pointer;
    margin-right: 16px;
    text-decoration: none;
    color: var(--black);
    white-space: nowrap;
}
.filter:hover{
    background-color: #C94123;
    color: #fff;
}
.filter-active{
    background-color: #C94123;
    color: #fff;
}
.product-h1{
    font-size: 50px;
    text-align: center;
    font-weight: 400;
    margin: 120px 0 60px;
    font-family: "Bebas-Neue";
    text-transform: uppercase;
}
.form-h1{
    font-size: 50px;
    text-align: center;
    font-weight: 400;
    font-family: "Bebas-Neue";
    text-transform: uppercase;
    margin-bottom: 30px;
}
.form-error {
    color: red;
    margin: 15px auto;
    text-align: center;
}

.products-list{
    display: flex;
    justify-content: center;
}
.product-item{
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 290px;
}
.product-item-line{
    background-image: url(/images/product-line.png);
    height: 36px;
}
.product-item-name{
    font-size: 36px;
    text-align: center;
}
.product-item-bottom-one{
    width: 100%;
}
.about{
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 110px 0 120px;
}
.about-h1{
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: "Bebas-Neue";
    text-transform: uppercase;
}
.about-text{
    font-size: 24px;
}
.main-overlay{
    background-image: url(/images/back_1.png);
    background-repeat: no-repeat;
    /* background-position-x: center; */
    background-position: right 60% top 0;
}
.map{
    margin: 120px 0;
}
.map-h1{
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 60px;
    font-family: "Bebas-Neue";
    text-transform: uppercase;
    text-align: center;
}
.back-btn{
    font-size: 16px;
    color: #9C9C9C;
    display: flex;
    align-items: center;
    text-decoration: none;
    margin: 35px 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
}
.feedback-form-container{
    padding: 120px 0;
}
.form-text{
    font-size: 16px;
    margin-bottom: 30px;
    text-align: center;
}
.feedback-form{
    display: flex;
    gap: 30px;
    justify-content: center;
}
.feedback-input{
    border: 1px solid #989898;
    padding: 14px 22px;
    border-radius: 30px;
}
.products-container{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.products-item{
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    background: #FFFFFF;
    border: 1px solid #AEC8A1;
    border-radius: 20px;
    max-width: 312px;
}
.products-item.vip {
    border: 1px solid #C94123;
    position: relative;
}
.products-item.vip::before {
    content: 'VIP';
    position: absolute;
    display: block;
    padding: 3px 13px;
    left: 30px;
    top: 0;
    border-radius: 0px 0px 10px 10px;
    color: #fff;
    background-color: #C94123;
}
.products-item.power {
    border: 1px solid #E18315;
    position: relative;
}
.products-item.power::before {
    content: 'POWER';
    position: absolute;
    display: block;
    padding: 3px 13px;
    left: 30px;
    top: 0;
    border-radius: 0px 0px 10px 10px;
    color: #fff;
    background-color: #E18315;
}
.products-item.opti {
    border: 1px solid #EBD300;
    position: relative;
}
.products-item.opti::before {
    content: 'OPTI';
    position: absolute;
    display: block;
    padding: 3px 13px;
    left: 30px;
    top: 0;
    border-radius: 0px 0px 10px 10px;
    color: #fff;
    background-color: #EBD300;
}
.analog-product {
    position: relative;
}
.analog-product::after {
    content: 'АНАЛОГ';
    position: absolute;
    display: block;
    padding: 3px 13px;
    right: 30px;
    top: 0;
    border-radius: 0px 0px 10px 10px;
    color: #fff;
    background-color: #AEC8A1;
}
.product-item-name{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: "Bebas-Neue";
    text-transform: uppercase;
    text-align: center;
}
.product-item-desc{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 10px;
    width: 310px;
}
.product-item-label{
    color: #C94123;
}
.product-item-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
.product-item-link{
    font-weight: 600;
    font-size: 16px;
    color: #69A44B;
}
.banner-prod-one-desc{
    margin: 35px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.product-h2{
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 35px;
    font-family: "Bebas-Neue";
    text-transform: uppercase;
    text-align: center;
}
.instruction-h2{
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 35px;
    font-family: "Bebas-Neue";
    text-transform: uppercase;
    /* text-align: center; */
}
.product-one-har{
    padding: 120px 0;
    padding: 0px auto;
}
.product-one-prem{
    margin-bottom: 120px;
}
.product-one-har-white{
    padding: 10px 20px;
    width: calc(100% - 40px);
    max-width: 360px;
    display: flex;
    justify-content: space-between;
    border: 1px solid #D9D9D9;
    background-color: #fff;
    border-radius: 30px;
    margin: 10px auto;
}
.product-one-har-gray{
    padding: 10px 20px;
    width: calc(100% - 40px);
    max-width: 360px;
    display: flex;
    justify-content: space-between;
    border: 1px solid #F3F0EB;
    background-color: #F3F0EB;
    border-radius: 30px;
    margin: 0 auto;
}
.contacts{
    padding: 55px 0 120px;
}
.contacts-wrap{
    padding: 55px 0 120px;
    background-image: url(/images/contact_back.png);
    background-position: top -10% left 73%;
    background-repeat: no-repeat;
}
.article-wrap{
    padding: 55px 0 120px;
    background-image: url(/images/article-one-back.png);
    background-position: top -6% center;
    background-repeat: no-repeat;
    min-height: 55vh;
}
.contact-h1{
    font-size: 64px;
    font-weight: 400;
    /* margin-bottom: 35px; */
    font-family: "Bebas-Neue";
    text-transform: uppercase;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.office-name{
    font-size: 24px;
    line-height: 28px;
    text-align: center;

    /* GW/dark-green */

    color: #69A44B;
}
.header404{
    font-size: 24px;
    line-height: 28px;
    text-align: center;

    /* GW/dark-green */
    height: 49vh;
    color: #69A44B;
}
.office-address{
    width: 100%;
    margin: 35px auto;
    text-align: center;
    max-width: 600px;
}
.contacts-personal{
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 80px;
}
.contacts-personal-one{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 10px;

    width: 193px;
}
.contacts-personal-one-name{
    font-weight: 600;
    text-transform: uppercase;
}
.contact-link{
    display: flex;
    gap: 7px;
    align-items: center;
    text-decoration: none;
    color: var(--black);
}
.banner-category-img,
.product-one-img {
    width: 100%;
    max-width: 440px;
}
.banner-prod-one-desc-line{
    margin-bottom: 10px;
}
.articles-h1{
    font-size: 64px;
    font-weight: 400;
    /* margin-bottom: 35px; */
    font-family: "Bebas-Neue";
    text-transform: uppercase;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.articles-container{
    display: flex;
    gap: 30px;
    margin-bottom: 120px;
    flex-wrap: wrap;
}
.article{
    box-sizing: border-box;

    /* Auto layout */

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    gap: 20px;

    max-width: 370px;
    width: 100%;
    height: 629px;

    /* GW/white */

    background: #FFFFFF;
    /* GW/light-green */

    border: 1px solid #AEC8A1;
    border-radius: 20px;
    text-decoration: none;
}
.article-img{
    width: 310px;
    min-height: 150px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.article-title{
    font-family: "Bebas-Neue";
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
}
.article-title-card{
    font-family: "Bebas-Neue";
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    min-height: 100px;
}
.article-date{
    color: #C94123;
    font-weight: 400;
    margin: 20px 0;
    text-decoration: none;
}
.article-text{
    overflow: hidden;
    color: var(--black);
    text-decoration: none;
}
.article-text-card{
    overflow: hidden;
    color: var(--black);
    text-decoration: none;
    position: relative;
    max-width: 320px;
}
.article-text-card:after {
    content: "";
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 2em;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white 100%);
    pointer-events: none;
}
.article-h1{
    font-size: 64px;
    font-weight: 400;
    /* margin-bottom: 35px; */
    font-family: "Bebas-Neue";
    text-transform: uppercase;
}
.article-text{
    margin: 80px 0px;
}
.article-one-img{
    width: 100%;
    height: 460px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.product-one-img{
    /* background-image: url(/images/product-back.png); */
    background-size: cover;
}
.product-wrap{
    background-image: url(/images/product-har-back.png);
    background-repeat: no-repeat;
    background-position: top 10% center;
}
.category-wrap{
    background-image: url(/images/category-back.png);
    background-repeat: no-repeat;
    background-position: top 10% center;
}

/* Dropdown Button */
.dropbtn {
    border: none;
    font-family: "Roboto";
    font-style: normal;
    font-size: 16px;
    color: var(--black);
    text-transform: uppercase;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    gap: 2px;
    align-items: center;
    padding: 0px;
}
.dropbtn>svg{
    transition: all .2s ease;
}
.dropdown:hover .dropbtn>svg{
    transform: rotate(90deg);
    
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    z-index: 1;
    padding: 40px;
    border: 1px solid #D9D9D9;
    box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    background-color: #fff;
    gap: 50px;
}
.nav-link-drop-separator{
    width: 1px;
    border-left: 1px dashed #69A44B; 
}
/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    /* padding: 12px 16px; */
    text-decoration: none;
    display: block;
    width: 200px;
}
.lang-link{
    width: unset !important;
    text-transform: uppercase;
}
.dropdown-link-container{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 30px;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    color: #C94123;
}
.nav-link-drop-active{
    color: #C94123 !important;
}
.nav-mobile-btn{
    display: none;
    border: none;
    background-color: transparent;
    cursor: pointer;
}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: flex;}

/* Change the background color of the dropdown button when the dropdown content is shown */
/* .dropdown:hover .dropbtn {background-color: #3e8e41;} */
.mobile_app{
    display: flex;
    align-items: center;
    margin: 140px auto;
    justify-content: space-between;
}
.mobile_app_left_block{
    width: 100%;
    max-width: 450px;
}
.mobile_app_header{
    font-size: 50px;
    font-family: "Bebas-Neue";
    font-weight: 400;
    margin-bottom: 10px;
}
.mobile_app_text{
    font-family: "Roboto";
    font-size: 24px;
}
.mobile_app_download{
    font-family: "Roboto";
    font-size: 14px;
    margin: 30px 0 10px;
}
.mobile_app_pic{
    width: 100%;
    max-width: 570px;
    height: 338px;
    background-image: url(/images/mobile.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.mobile_app_btns{
    display: flex;
    gap: 30px;
}
.apple-app-btn{
    display: block;
    width: 100%;
    max-width: 163px;
    height: 42px;
    background-image: url(/images/apple-btn.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.google-app-btn{
    display: block;
    width: 100%;
    max-width: 163px;
    height: 42px;
    background-image: url(/images/google-btn.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.footer-app-header{
    text-align: center;
    margin-bottom: 15px;
}
.privicy_table, .privicy_table_td {
    border-collapse: collapse;
    border: 1px solid;
    padding: 10px;
}
.partners{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 50px auto;
}
.partner-item{
    width: 100%;
    max-width: 300px;
}
.partner-description{
    margin: 10px auto;
    text-align: center;
}
.vk-video{
    display: block;
    width: 85px;
    height: 21px;
    background-image: url(/images/vk_video.png);
    background-size:cover;
    background-position: center;
}
.youtube-video{
    display: block;
    width: 82px;
    height: 21px;
    background-image: url(/images/youtube.png);
    background-size:cover;
    background-position: center;
}
.instruction-box{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    background-color: #fff;
}
.instruct-video-card{
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: calc(50% - 90px);
    border: 1px solid #AEC8A1;
}
.instruct-video-card_social{
    display: flex;
    gap: 16px;
    height: 21px;
}
.instruct-video-card_img{
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}
.instruct-photo-card_img{
    height: 690px;
    border-radius: 16px;
    cursor: pointer;
}
.instruct-photo-english{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #23211D;
    font-size: 24px;
    cursor: pointer;
    margin-top: 10px;
    height: 34px;
}
.img-modal{
    display: none;
    background-color: rgba(0, 0, 0, 0.4);
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
}
.video-modal{
    display: none;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
}
.video-modal iframe {
    /* flex: 1;
    border: none; */
    width: 80vw;
    height: 80vh;
}
.addMoreButton{
    display: flex;
    border: none;
    background-color: transparent;
    align-items: center;
    gap: 20px;
    font-size: 18px;
    cursor: pointer;
}
.preloader{
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: -1;
    border: 5px solid #f3f3f3; /* Светлый серый фон круга */
    border-top: 5px solid #AEC8A1; /* Синяя активная часть */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}