:root {
    --font-family: 'Roboto', sans-serif;
    --border-color: rgba(147,147,147,0.1);
    --background-color: #F3F4F6;
    --ghost-color: #939393;
    --secondary-color: #6B7280;
    --primary-color: #096844;
    --primary-rgb-01: rgba(7, 111, 72, 0.1);
    --primary-color-hover: #2D8B68;
    --heading-color: #111827;
    --text-color: #0E2D4B;
    --border-radius: 4px;
}

*:hover,
*:focus,
*:focus-visible {
    outline: none !important;
}

*:focus,
*:focus-visible {
    box-shadow: none !important;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    height: 100%;
    color: var(--text-color);
    padding: 0;
    margin: 0;
}

body * {
    font-family: var(--font-family);
    box-sizing: border-box;
}

a {
    color: var(--primary-color);
}

a:hover {
    color: var(--primary-color-hover);
}

svg {
    stroke: var(--secondary-color);
}

.lh-0{
	line-height: 0 !important;
}

.title-wrapper{
    margin-top: 8px;
}

@media(min-width: 768px){
   .title-wrapper{
        margin-top: 10px;
    } 
}

h1, .h1{
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0.005em;
    color: var(--heading-color);
    margin-top: 0;
    margin-bottom: 22px;
}

@media(min-width: 768px){
    h1, .h1{
        font-size: 40px;
        line-height: 48px;
        margin-bottom: 28px;
    }
}

h2, .h2{
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    color: var(--heading-color);
    margin-top: 0;
    margin-bottom: 22px;
}

@media(min-width: 768px){
    h2, .h2{
        font-size: 32px;
        line-height: 44px;
        margin-bottom: 18px;
    }
}

.btn{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    font-size: 16px;
    font-weight: 900;
    line-height: 18px;
    border: 0;
    border-radius: var(--border-radius);
    letter-spacing: 0.005em;
    text-decoration: none;
    cursor: pointer;
    padding: 0 32px;
}

.btn--primary{
    color: #fff;
    background: var(--primary-color);
}

.btn--primary > *{
    color: #fff;
}

.btn--primary:hover,
.btn.btn--primary-hover:hover{
    color: #fff;
    background: var(--primary-color-hover);
}

.btn--big{
    height: 52px;
}

.btn--white{
    font-weight: 500;
    color: var(--heading-color);
    background: #fff;
}

.btn--white:hover{
    color: var(--primary-color);
}

.btn--primary-opacity{
    color: var(--primary-color);
    background: var(--primary-rgb-01);
}

.btn--primary-opacity:hover{
    color: #fff;
    background: var(--primary-color-hover);
}

.btn--grey{
    position: relative;
    font-weight: 500;
    color: var(--ghost-color);
    background: transparent;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.btn--grey:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    background: var(--ghost-color);
    opacity: 0.2;
}

.btn--grey:hover{
    color: var(--secondary-color);
}

.btn--primary-border{
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn--primary-border:hover{
    color: var(--primary-color-hover);
    border: 1px solid var(--primary-color-hover);
}

.section-padding{
    --offset-padding: 42px;
    padding-top: var(--offset-padding);
    padding-bottom: var(--offset-padding);
}

@media(min-width: 1200px){
    .section-padding{
        --offset-padding: 80px;
    }
}

section.section-padding-half{
    --offset-padding: 32px;
    padding-top: var(--offset-padding);
    padding-bottom: var(--offset-padding);
}

@media(min-width: 1200px){
    section.section-padding-half{
        --offset-padding: 40px;
    }
}

.section-margin{
    --offset: 64px;
    margin-top: var(--offset);
    margin-bottom: var(--offset);
}

@media(min-width: 1200px){
    .section-margin{
        --offset: 80px;
    }
}

section.section-margin-half{
    --offset: 32px;
    margin-top: var(--offset);
    margin-bottom: var(--offset);
}

@media(min-width: 1200px){
    section.section-margin-half{
        --offset: 40px;
    }
}

section.section-margin-top-half{
    --offset: 32px;
    margin-top: var(--offset);
}

@media(min-width: 1200px){
    section.section-margin-top-half{
        --offset: 40px;
    }
}

.section-dark{
    background: var(--heading-color);
}

.section-border-bottom{
    border-bottom: 1px solid var(--border-color);
}

.section-descriprion{
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: var(--text-color);
    margin-bottom: 32px;
}

@media(min-width: 1200px){
    .section-descriprion{
        font-size: 20px;
        line-height: 32px;
        margin-bottom: 32px;
    }
}

h1 + .section-descriprion,
.h1 + .section-descriprion{
    margin-bottom: 32px;
}

@media(min-width: 1200px){
    h1 + .section-descriprion,
    .h1 + .section-descriprion{
        margin-bottom: 40px;
    }
}

.nowrap{
    white-space: nowrap;
}

.modal-city{
    position: absolute;
    top: calc(100% + 10px);
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.4);
    padding: 30px 14px;
    z-index: 100;
}

.modal-city:before{
    content: '';
    position: absolute;
    left: 26px; 
    top: -19px;
    border: 10px solid transparent;
    border-bottom: 10px solid #fff;
}

.modal-city-title{
    font-weight: 400;
    font-size: 14px;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.modal-city-title span{
    font-weight: 600;
}

.modal-city-btns{
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 17px;
}

.header-btn-compare{
    min-width: 48px;
    width: 48px;
    padding: 0;
    margin-left: 13px;
}

.header-btn-compare svg{
    stroke: transparent;
}

.header-btn-compare:hover svg path{
    fill: #fff;
}

.header-btn-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    width: 48px;
    height: 48px;
    background-color: rgba(7, 111, 72, 0.10);
    border-radius: var(--border-radius);
    cursor: pointer;
    margin-left: 13px;
    transition: background-color .2s;
}

.header-btn-cart:not(:hover) svg {
    stroke: var(--primary-color);
}

.header-btn-cart:hover svg {
    stroke: #fff;
}

.fixed-header{
    position: absolute;
    top: -100%;
    transition: 1s;
}

.fixed-header.is-active{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 18px 0;
    transition: 1s;
    z-index: 100;
}

.fixed-header.is-active-mobile{
    position: sticky;
    top: 0;
    right: 0;
    background: #fff;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    z-index: 3001;
    transition: all ease 0.5s;
    margin: 0;
    padding: 10px 0 10px;
}

.fixed-header svg{
    stroke: transparent;
}

.fixed-header .header-catalog-btn{
    width: 173px;
    margin-left: 12px;
}

.fixed-header:not('.is-active-mobile') .header-search-container{
    margin: 0 43px;
}

#mobile-menu,
#mobile-menu-catalog {
    display: none;
}

#mobile-menu:target,
#mobile-menu-catalog:target {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1000;
}

.mobile-menu-inner{
    overflow-y: auto;
    padding-bottom: 54px;
}

.mobile-menu-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 60px;
    font-weight: 500;
    font-size: 24px;
    color: var(--heading-color);
    border-bottom: 1px solid var(--border-color);
    padding: 0 20px;
}

.mobile-menu-title a{
    line-height: 0;
}

.header-networks {
    display: flex;
    gap: 8px;
    padding: 0 20px 24px;
}

.header-networks a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    display: inline-block;
    min-width: 40px;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius);
    text-decoration: none;
    overflow: hidden;
}

.header-networks a svg {
    stroke: transparent;
}

.header-top {
    height: 43px;
    border-bottom: 1px solid var(--border-color);
}

@media(min-width: 768px) {
    .header-top {
        height: 47px;
    }
}

.header-bar {
    text-decoration: none;
}

.header-location{
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: var(--heading-color);
    text-decoration: none;
}

.header-location svg {
    stroke: var(--secondary-color);
}

.header-phone-list,
.header-email-list{
    gap: 16px;
    padding: 24px 20px;
}

@media(min-width: 768px) {
    .header-phone-list {
        gap: 32px;
        padding: 0;
    }

    .header-phone-list .phone-item:nth-child(n+3){
        display: none;
    }
}

.header-email-title{
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: var(--ghost-color);
    margin-bottom: -12px;
}

.header-phone-list .phone-item{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media(min-width: 1200px){
    .header-phone-list .phone-item{
        flex-direction: row;
        align-items: center;
        gap: 11px;
    }
}

.header-phone-list .phone-item a,
.header-email-item a {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: var(--heading-color);
    text-decoration: none;
}

@media(min-width: 768px) {
    .header-phone-list .phone-item a {
        font-weight: 600;
    }
}

.header-phone-list .phone-item-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: var(--ghost-color);
}

@media(min-width: 768px){
    .header-phone-list .phone-item-desc{
        font-size: 14px;
        line-height: 16px;
    }
}

.header-middle{
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

@media(min-width: 768px){
    .header-middle{
        padding: 18px 0;
    }
}

.header-logo{
    max-width: 150px;
}

@media(min-width: 576px){
    .header-logo{
        max-width: auto;
    }
}

.header-logo img{
    max-width: 100%;
}

.header-catalog-btn{
    width: 100%;
}

@media(min-width: 768px){
    .header-catalog-btn{
        margin-left: 32px;
    }
}

.header-search-container{
    width: 100%;
    height: 48px;
    margin: 0 13px;
}

.is-active-mobile .header-search-container{
    margin: 0;
}

@media(min-width: 992px){
    .header-search-container{
        margin: 0 43px;
    }
}

.header-search-container div{
    position: relative;
    width: 100%;
    height: 100%;
}

.header-search-btn{
    min-width: 48px;
    width: 48px;
    padding: 0;
    margin-left: 13px;
}

.header-search-btn svg{
    stroke: var(--primary-color);
}

.header-search-btn:hover svg{
    stroke: #fff;
}

.header-compare-count,
.header-basket-count{
    position: absolute;
    right: -10px;
    top: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: 400;
    line-height: 13.2px;
    letter-spacing: 0.005em;
    white-space: nowrap;
    color: #FFF;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    background-color: var(--primary-color);
}

.footer-title{
    display: inline-block;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: var(--heading-color);
    text-decoration: none;
    padding: 16px 0;
}

.footer-image{
    height: 200px;
}

@media(min-width: 768px){
    .footer-image{
        height: auto;
    }
}

.footer-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-form{
    margin-bottom: 30px;
}

@media(min-width: 768px){
    .footer-form{
        margin-bottom: 20px;
    }
}

.footer-phone-list{
    gap: 16px;
    margin-bottom: 30px;
}

@media(min-width: 768px){
    .footer-phone-list{
        gap: 12px;
    }
}

.footer-phone-list .phone-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-phone-list .phone-item a {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: var(--heading-color);
    text-decoration: none;
}

.footer-phone-list .phone-item a:hover{
    color: var(--primary-color);
}

.footer-phone-list .phone-item-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: var(--ghost-color);
}

.footer-region-contact-list{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media(min-width: 768px){
    .footer-region-contact-list{
        gap: 12px;
    }
}

.footer-region-contact{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-region-contact span{
    display: inline-block;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: var(--ghost-color);
    text-decoration: none;
}

.footer-region-contact span:last-child,
.footer-region-contact a{
    display: inline-block;
    color: var(--heading-color);
    text-decoration: none;
}

.footer-networks{
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.footer-networks a{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    display: inline-block;
    min-width: 40px;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius);
    overflow: hidden;
    text-decoration: none;
}

.footer-networks a svg{
    stroke: transparent;
}

.footer-networks a:hover svg rect{
    fill: var(--primary-color-hover);
    fill-opacity: 1;
}

.footer-networks a:hover svg path{
    fill: #fff;
}

.footer-bottom{
    padding: 16px 0;
}

@media(min-width: 768px){
    .footer-bottom{
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }
}

.footer-copyright,
.footer-agree{
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: var(--ghost-color);
    text-decoration: none;
}

.footer-panel{
    position: sticky;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: var(--primary-color);
    padding: 8px 21px 7px;
    z-index: 1000;
}

.footer-panel a{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-weight: 400;
    font-size: 10px;
    line-height: 16px;
    color: #fff;
    text-decoration: none;
}

.footer-panel svg{
    stroke: transparent;
}

.footer-panel .count-products{
    position: absolute;
    top: -5px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    font-weight: 700;
    font-size: 10px;
    line-height: 11px;
    color: #fff;
    background: #CB2027;
    border-radius: 50%;
}