@-webkit-keyframes scrollAnimation {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes scrollAnimation {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

/* title */
.title {
    font-family: 'DIN 2014';
    font-style: normal;
    font-weight: 600;
    font-size: 53px;
    line-height: 52px;
    text-transform: uppercase;
    color: #FFFFFF;   
}
.subtitle {
    margin-top: 16px;
    
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    color: #D2D2D2;   
}
@media screen and (max-width: 992px) {
    .title {
        font-size: 42px;
        line-height: 42px;
    }
    .subtitle {
        margin-top: 13px;
        font-size: 20px;
        line-height: 24px;
    }
}
@media screen and (max-width: 768px) {
    .title {
        font-size: 36px;
        line-height: 36px;
    }
    .subtitle {
        margin-top: 10px;
        font-size: 16px;
        line-height: 18px;
    }
}
@media screen and (max-width: 576px) {
    .title {
        font-size: 28px;
        line-height: 28px;
    }
    .subtitle {
        margin-top: 8px;
        font-size: 13px;
        line-height: 13px;
    }
}

/* section-title */
.section-title {
    font-family: 'DIN 2014';
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #151515;   
}
.section-title.white {
    color: #fff;   
}
@media screen and (max-width: 768px) {
    .section-title {
        font-size: 30px;
        line-height: 30px;
    }
}
@media screen and (max-width: 576px) {
    .section-title {
        font-size: 26px;
        line-height: 26px;
    }
}


/* button */
.button {
    padding: 12px 25px;
    
    border: 1px solid var(--main-color);
    outline: none !important;
    background: var(--main-color);
    border-radius: 32px;
    
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 15px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #FFFFFF;
    
    -webkit-transition: 0.4s all;
    
    -o-transition: 0.4s all;
    
    transition: 0.4s all;
    
    white-space: nowrap;
}
.button_white {
    border: 1px solid #fff;
    background: none;
    color: #fff;
}
.button.button_white:hover {
    color: #151515;
    text-decoration: none;
}
.button_purple {
    background: #fff;
    color: var(--main-color);
}
.button.button_purple:hover {
    background: var(--main-color);
    color: #fff;
    text-decoration: none;
}
.button:hover {
    color: var(--main-color);
    background: #fff;
    text-decoration: none;
}
@media screen and (max-width: 1300px) {
    .header_button {
        padding: 12px 20px;
        font-size: 14px;
        line-height: 14px;
    }
}
@media screen and (max-width: 1200px) {
    .header_button {
        padding: 10px 18px;
        font-size: 13px;
        line-height: 13px;
    }
}
@media screen and (max-width: 992px) {
    .header_button {
        padding: 8px 16px;
        font-size: 12px;
        line-height: 12px;
    }
}
@media screen and (max-width: 768px) {
    .header_button {
        padding: 7px 14px;
        font-size: 11px;
        line-height: 10px;
    }
    .button_white {
        padding: 10px 20px;
        font-size: 14px;
        line-height: 15px;
    }
    .product_button {
        padding: 8px 20px;
        font-size: 14px;
        line-height: 14px;
    }
}














/* header */
.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
    
    padding: 10px 0;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.header_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
}
.header_up {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 258px;
       -moz-column-gap: 258px;
            column-gap: 258px;
}
.header_up-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 94px;
       -moz-column-gap: 94px;
            column-gap: 94px;
}
.header_logo {
    text-decoration: none;   
}
.header_logo img {
    width: 156px;
    height: 39px;
    -o-object-fit: contain;
       object-fit: contain;
}
.header_city {
    position: relative;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 7px;
       -moz-column-gap: 7px;
            column-gap: 7px;
    
    cursor: pointer;
}
.city {
    display: none;
    position: absolute;
    left: 0;
    top: 30px;
    padding: 20px 40px;
    background: #fff;
    z-index: 200;
    box-shadow: 0px 1px 4px lightgray;
}
.city-btns {
    margin-top: 12px;
    display: flex;
    column-gap: 20px;
} 
.city-title {
    white-space: nowrap;
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    color: #151515;
}
.city-btns button {
    white-space: nowrap;
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color: #151515;
    
    border: 1px solid lightgray;
    outline: none !important;
    
    padding: 10px;
    transition: 0.4s all;
}
.city-btns button:hover {
    border: 1px solid var(--main-color);
    background: var(--main-color);
    color: #fff;
}
.city-close {
    position: absolute;
    top: 10px;
    right: 10px;
}
.city-close svg {
    width: 24px;
    height: 24px;
    background: none;
}
@media screen and (max-width: 576px) {
    .city {
        left: unset;
        right: 0;
        padding: 20px 40px;
    }
    .city-close {
        position: absolute;
        top: 0px;
        right: 1px;
    }
    .city-title {
        font-size: 15px;
        line-height: 15px;
    }
    .city-btns button {
        font-size: 13px;
        line-height: 12px;
        padding: 6px
    }
}
.header_city-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 2px;
       -moz-column-gap: 2px;
            column-gap: 2px
}
.header_cities {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    display: none;
}
.header_cities-inner {
    padding: 80px;
    
    display: -ms-grid;
        
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
        grid-template: auto / repeat(3, 1fr);
    gap: 30px
}
.header_cities-close {
    position: absolute;
    right: 50px;
    top: 30px;
    cursor: pointer;
}
.header_cities-city {

    margin-top: 30px;
    
    display: -ms-grid;
    
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
        grid-template: auto / repeat(3, 1fr);
    gap: 10px;
}
.header_cities-close svg {
    width: 60px;
    height: 60px;
}
.header_cities a {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #151515;   
}
.header_city-inner svg {
    margin-top: 2px;   
}
.header_city-inner span {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #151515;
}
.header_cities-country {
    font-family: 'DIN 2014';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #151515;  
}
@media screen and (max-width: 1200px) {
    .header_cities-close svg {
        width: 50px;
        height: 50px;
    }
    .header_cities-inner {
        padding: 60px;
    }
    .header_cities-city {
        margin-top: 20px;
        -ms-grid-rows: auto;
        -ms-grid-columns: (1fr)[2];
            grid-template: auto / repeat(2, 1fr);
    }
}
@media screen and (max-width: 992px) {
    .header_cities-inner {
        -ms-grid-rows: auto;
        -ms-grid-columns: (1fr)[2];
            grid-template: auto / repeat(2, 1fr)
    }
}
@media screen and (max-width: 768px) {
    .header_cities-inner {
        -ms-grid-rows: auto;
        -ms-grid-columns: (1fr)[1];
            grid-template: auto / repeat(1, 1fr)
    }
}
@media screen and (max-width: 576px) {
    .header_cities-inner {
        -ms-grid-rows: auto;
        -ms-grid-columns: (1fr)[1];
            grid-template: auto / repeat(1, 1fr);
    }
    .header_cities-inner {
        padding: 40px;
    }
    .header_cities-city {
        -ms-grid-rows: auto;
        -ms-grid-columns: (1fr)[1];
            grid-template: auto / repeat(1, 1fr);
    }
    .header_cities-close {
        right: 10px;
        top: 10px;
    }
}

.header_up-right {
    width: 100%;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-column-gap: 44px;
       -moz-column-gap: 44px;
            column-gap: 44px;
}
.header_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 48px;
       -moz-column-gap: 48px;
            column-gap: 48px;
}
.header_info-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
}
.header_info-item svg {
    width: 23px;
    height: 23px;
}
.header_info-item a {
    white-space: nowrap;
    
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    color: #151515;
    
    -webkit-transition: 0.4s all;
    
    -o-transition: 0.4s all;
    
    transition: 0.4s all;
}
.header_info-item a:hover {
    color: var(--main-color);
    text-decoration: none;
}
.header_down {
    position: relative;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 67px;
       -moz-column-gap: 67px;
            column-gap: 67px;
}
.header_down:before {
    content: "";
    position: absolute;
    left: 0;
    top: -10px;
    width: 100%;
    height: 1px;
    background: #DADADA;
}
.header_down-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 18px;
       -moz-column-gap: 18px;
            column-gap: 18px;
}
.header_down-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
}
.header_down-button svg rect {
    fill: #fff;
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
}
.header_down-button:hover svg rect {
    fill: var(--main-color);   
}
.header_search {
    width: 350px;   
}
.header_menu {
    width: 100%;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
}
.header_menu-item {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #151515;
    
    white-space: nowrap;
    
    -webkit-transition: 0.4s all;
    
    -o-transition: 0.4s all;
    
    transition: 0.4s all;
}
.header_menu-item:hover {
    color: var(--main-color);
    text-decoration: none;
}
@media screen and (max-width: 1300px) {
    .header_up-left {
        -webkit-column-gap: 70px;
           -moz-column-gap: 70px;
                column-gap: 70px;
    }
    .header_up {
        -webkit-column-gap: 198px;
           -moz-column-gap: 198px;
                column-gap: 198px;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
    .header_up-right {
        width: unset;   
    }
    .header_search {
        width: 320px;
    }
    .header_down {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-column-gap: 60px;
           -moz-column-gap: 60px;
                column-gap: 60px;
    }
    .header_menu {
        width: unset;
        -webkit-column-gap: 40px;
           -moz-column-gap: 40px;
                column-gap: 40px;
    }
}
@media screen and (max-width: 1200px) {
    .header_wrapper {
        row-gap: 16px;   
    }
    .header_down:before {
        top: -8px;   
    }
    .header_logo img {
        width: 140px;
        height: auto;
    }
    .header_up-left {
        -webkit-column-gap: 30px;
           -moz-column-gap: 30px;
                column-gap: 30px;
    }
    .header_info {
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;   
    }
    .header_up-right {
        -webkit-column-gap: 30px;
           -moz-column-gap: 30px;
                column-gap: 30px;    
    }
    .header_info-item a {
        font-size: 15px;
        line-height: 15px;
    }
    .header_up {
        -webkit-column-gap: 100px;
           -moz-column-gap: 100px;
                column-gap: 100px;
    }
    .header_down-button svg {
        width: 15px;   
    }
    .header_search {
        width: 240px;
    }
    .header_down-left {
        -webkit-column-gap: 10px;
           -moz-column-gap: 10px;
                column-gap: 10px;   
    }
    .header_down {
        -webkit-column-gap: 40px;
           -moz-column-gap: 40px;
                column-gap: 40px;
    }
    .header_menu-item {
        font-size: 15px;
        line-height: 15px;
    }
    .header_menu {
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;   
    }
}
@media screen and (max-width: 992px) {
    .header_info-item.mail {
        display: none;   
    }
    .header_menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: fixed;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        row-gap: 10px;
        width: auto;
        right: 20px;
        border-radius: 20px;
        top: -100%;
        background: #fff;
        padding: 10px 20px;
        z-index: 100;
        
        -webkit-transition: 0.6s all;
        
        -o-transition: 0.6s all;
        
        transition: 0.6s all;
    }
    .header_menu.active {
        top: 110px;   
    }
}
@media screen and (max-width: 768px) {
    .header {
        padding: 6px 0;   
    }
    .header_menu {
        right: 10px;   
    }
    .header_menu.active {
        top: 90px;   
    }
    .header_wrapper {
        row-gap: 12px;
    }
    .header_info {
        display: none;   
    }
    .header_down:before {
        top: -6px;
    }
    .header_up {
        -webkit-column-gap: 60px;
           -moz-column-gap: 60px;
                column-gap: 60px;
    }
    .header_logo img {
        width: 100px;
        height: auto;
    }
    .header_city > svg {
        width: 20px;
        height: 20px;
    }
    .header_city-inner span {
        font-size: 15px;
        line-height: 15px;
    }
    .header_up {
        -webkit-column-gap: 40px;
           -moz-column-gap: 40px;
                column-gap: 40px;
    }
}
@media screen and (max-width: 576px) {
    .header_search .ss-search-form__input input {
        display: none;   
    }
    .header_up-left {
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .header_up {
        -webkit-column-gap: 30px;
           -moz-column-gap: 30px;
                column-gap: 30px;
    }
    .header_search {
        width: auto;
    }
    .header_down {
        -webkit-column-gap: 30px;
           -moz-column-gap: 30px;
                column-gap: 30px;
    }
    .header_up-right {
        display: none;   
    }
    .header_up-left {
        width: 100%;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
}



/* burger */
.burger {
    display: none;
    height: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 20;
    cursor: pointer;
    
    -webkit-transition: 0.4s all;
    
    -o-transition: 0.4s all;
    
    transition: 0.4s all;
}
.burger span {
    display: block;
    width: 24px;
    height: 4px;
    background: var(--main-color);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.burger.active span {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;  
}
.burger.active span:nth-child(1) {
    -webkit-transform: rotate(-45deg) translate(-2px, 6px);
        -ms-transform: rotate(-45deg) translate(-2px, 6px);
            transform: rotate(-45deg) translate(-2px, 6px); 
}
.burger.active span:nth-child(2) {
    width: 0;
}
.burger.active span:nth-child(3) {
    -webkit-transform: rotate(45deg) translate(-2px, -5px);
        -ms-transform: rotate(45deg) translate(-2px, -5px);
            transform: rotate(45deg) translate(-2px, -5px);
}
@media screen and (max-width: 992px) {
    .burger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;   
    }
}

/* lAYOUT */
.layout {
    position: relative;
}
.layout__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    height: 100%;
    -webkit-filter: brightness(50%);
            filter: brightness(50%); 
}
.layout__wrapper {
    margin-top: 120px;
    max-height: 100vh;
    height: calc(100vh - 120px);
    padding: 0 0 40px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: center;
    position: relative;
}
.layout__wrapper.full {
    height: 100vh;
}
.layout__wrapper.small {
    height: 493px;  
}
.layout__link {
    position: absolute;
    left: 0;
    bottom: 46px;
    cursor: pointer;
    
    -webkit-animation: scrollAnimation 1s ease-in-out infinite alternate;
    
            animation: scrollAnimation 1s ease-in-out infinite alternate;
}
.layout__link svg path {
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;   
}
.layout__link:hover svg path {
    fill: #fff; 
}
.layout__link a:hover {
    text-decoration: none;
}
.layout__fixed {
    position: fixed;
    right: 15px;
    bottom: 20px;
    z-index: 10;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 6px;
}
.layout__fixed a {
    display: block;
    width: 40px;
    height: 40px;
}
.layout__title {
    max-width: 592px;   
}
.layout__subtitle {
    max-width: 578px;
}
@media screen and (max-width: 1200px) {
    .layout__wrapper {
        margin-top: 106px;
        padding: 0 0 20px 0;   
    }
    .layout__wrapper {
        height: calc(100vh - 106px);
    }
    .layout__wrapper.small {
        height: 400px;
    }
}
@media screen and (max-width: 992px) {
    .layout__wrapper {
        margin-top: 102px;
    }
    .layout__wrapper {
        height: calc(100vh - 102px);
    }
    .layout__wrapper.small {
        height: 340px;   
    }
    .layout__link {
        bottom: 20px;
    }
}
@media screen and (max-width: 768px) {
    .layout__wrapper {
        margin-top: 80px;
    }
    .layout__wrapper {
        height: calc(90vh - 80px);
    }
    .layout__wrapper.small {
        height: 300px;
    }
}
@media screen and (max-width: 576px) {
    .layout__wrapper {
        height: calc(70vh - 60px);
    }
    .layout__wrapper.small {
        height: 306px;   
    }
}

/* контакты */
.contacts_content {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
        grid-template: auto / repeat(3, 1fr);
    gap: 30px;
}
.contacts_block {
    padding: 30px 22px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 44px;
       -moz-column-gap: 44px;
            column-gap: 44px;
    
    background: #fff;
    border: 1px solid #EAEAEA;
    border-radius: 4px;   
}
.contacts_block-info {
    position: relative;   
}
.contacts_block-info:before {
    content: "";
    position: absolute;
    left: -22px;
    top: 0;
    height: 100%;
    width: 1px;
    background: #CFCFCF;
}
.contacts_block-name {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #868686;   
}
.contacts_block-value {
    margin-top: 3px;
    
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
    color: #222222;
    
    -webkit-transition: 0.4s all;
    
    -o-transition: 0.4s all;
    
    transition: 0.4s all;
}
a.contacts_block-value:hover {
    color: var(--main-color);
    text-decoration: none;
}
.contacts_map {
    margin-top: 18px;   
}
.contacts_map iframe {
    border: none !important;   
    outline: none !important;   
}
@media screen and (max-width: 1300px) {
    .contacts_content {
        gap: 20px;   
    }
    .contacts_block {
        padding: 24px 20px;
    }
}
@media screen and (max-width: 1200px) {
    .contacts_block {
        padding: 20px;
        -webkit-column-gap: 30px;
           -moz-column-gap: 30px;
                column-gap: 30px;
    }
    .contacts_block-info:before {
        left: -16px;   
    }
    .contacts_block-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        row-gap: 2px;
    }
    .contacts_block-inner span {
        display: none;   
    }
    .contacts_map iframe {
        height: 340px;
    }
}
@media screen and (max-width: 992px) {
    .contacts_content {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 10px 1fr;
            grid-template: auto / repeat(2, 1fr);
        gap: 10px;
    }
    .contacts_block-inner {
        display: block;   
    }
    .contacts_block-inner span {
        display: inline;   
    }
    .contacts_block.tel {
        -ms-grid-column-span: 2;
        grid-column: span 2;   
    }
}
@media screen and (max-width: 768px) {
    .contacts_map iframe {
        height: 300px;
    }   
}
@media screen and (max-width: 576px) {
    .contacts_content {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
            grid-template: auto / 1fr;
    }
    .contacts_block.tel {
        grid-column: unset;   
    }
    .contacts_block-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        row-gap: 2px;
    }
    .contacts_block-inner span {
        display: none;   
    }
}

/* blog */
.blog__content {
    display: -ms-grid;
    display: grid;
    grid-template: auto / repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}
.blog__content.count {
    grid-template: auto / repeat(auto-fit, minmax(280px, 384px));
}
.blog__card {
    border: 1px solid #E7E7E7;
    border-radius: 5px;
}
.blog__card-img {
    position: relative;   
}
.blog__card-img img {
    cursor: pointer;
    
    max-width: 384px;
    height: 271px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.blog__card-date {
    position: absolute;
    left: 21px;
    bottom: -15px;
    
    
    padding: 6px 14px 6px 15px;
    background: #5A47FB;
    border-radius: 28px;
    
    
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 21px;
    color: #FFFFFF;
}
.blog__card-block {
    padding: 32px 20px 20px 20px;
    
}
.blog__card-title {
    display: block;
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    color: #151515;
    
    -webkit-transition: 0.4s all;
    
    -o-transition: 0.4s all;
    
    transition: 0.4s all;
}
.blog__card-text {
    margin-top: 6px;
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #666666;
}
.blog__card-link {
    margin-top: 38px;
    position: relative;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 7px;
       -moz-column-gap: 7px;
            column-gap: 7px;
}
.blog__card-link:before {
    content: "";
    position: absolute;
    left: 0;
    top: -17px;
    width: 100%;
    height: 1px;
    background: #E7E7E7;
}
.blog__card-link span {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: #5A47FB;
}
.blog__card-link:hover {
    text-decoration: none;
}
.blog__card-link svg {
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;   
}
.blog__card-link:hover svg {
   -webkit-transform: translateX(20px);
       -ms-transform: translateX(20px);
           transform: translateX(20px);
}
@media screen and (max-width: 1200px) {
    .blog__content {
        gap: 20px;   
    }
    .blog__card-img img {
        height: 220px;   
    }
    .blog__card-date {
        left: 15px;
        font-size: 14px;
        line-height: 18px;   
    }
    .blog__card-title {
        font-size: 16px;
        line-height: 16px;
    }
    .blog__card-block {
        padding: 30px 16px 16px;
    }
    .blog__card-text {
        margin-top: 10px;
        font-size: 14px;
        line-height: 18px;
    }
    .blog__card-link {
        margin-top: 30px;
    }
    .blog__card-link:before {
        top: -15px;   
    }
}
@media screen and (max-width: 992px) {
    .blog__content {
        grid-template: auto / repeat(auto-fit, minmax(220px, 1fr));
        gap: 12px;
    }
    .blog__content.count {
        grid-template: auto / repeat(auto-fit, minmax(220px, 280px));
    }
    .blog__card-img img {
        height: 180px;
    }
    .blog__card-date {
        left: 10px;
        font-size: 12px;
        line-height: 12px;
        bottom: -10px;
        padding: 5px 10px 5px 11px;
    }
    .blog__card-block {
        padding: 20px 12px 12px;
    }
    .blog__card-title {
        font-size: 14px;
        line-height: 16px;
    }
    .blog__card-text {
        margin-top: 6px;
        font-size: 12px;
        line-height: 15px;
    }
    .blog__card-link span {
        font-size: 13px;
        line-height: 13px;
    }
    .blog__card-link {
        margin-top: 20px;
    }
    .blog__card-link:before {
        top: -10px;
    }
}
@media screen and (max-width: 768px) {
    .blog__content.count {
        -ms-grid-rows: auto;
        -ms-grid-columns: (1fr)[2];
            grid-template: auto / repeat(2, 1fr);
    }   
}
@media screen and (max-width: 576px) {
    .blog__card-img img {
        max-width: 450px;
        height: 160px;
    }   
}
@media screen and (max-width: 478px) {
    .blog__content.count {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
            grid-template: auto / 1fr;
    }   
}

/* Пагинация */
.pagination {
    margin: 60px auto 0;   
}
.pagination__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.pagination__list {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 34px;
       -moz-column-gap: 34px;
            column-gap: 34px;
    border: 1px solid #DFDFDF;
    padding: 13px 34px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.pagination__item {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: #444444;   
}
.pagination__list li.active > .pagination__item {
    color: var(--main-color);    
}
.pagination__arrow {
    width: 37px;
    height: 37px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #E8E8E8;
}

/* post */
.post_slider .slick-track{display:-webkit-box;display:-ms-flexbox;display:flex}
.post_slider .slick-slide{height:auto}
.post_slider .slick-track{margin-left:0}
@media screen and (max-width: 480px) {
    .slide_space .slick-slide{margin:0 16px}   
}
.slide_space .slick-list{margin:0 -16px}

.post-img {
    max-width: 384px;
    max-height: 271px;
    width: 100%;
    height: 100%;
}
.post_up {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
}
.post-title {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 30px;
    color: #151515;   
}
.post-subtitle {
    margin-top: 12px;
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    color: #151515;   
}
.post-date {
    position: relative;
    margin-top: 28px;
    
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    color: #888888;
}
.post-date:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 1px;
    background: #E7E7E7;
}
.post-text {
    margin-top: 30px;
    width: 100%;
    
    color: #666;
    font-size: 17px;
    font-family: Proxima Soft;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
}
.post-text p, ul, ol, dl {
    margin-bottom: 8px;   
}
.post-text ul, ol, dl {
    padding-left: 20px; 
}
.post_slider {
    margin-top: 40px;   
}
@media screen and (max-width: 992px) {
    .post-img {
        max-width: 260px;
    }
    .post-title {
        font-size: 20px;
        line-height: 22px;
    }
    .post-subtitle {
        margin-top: 10px;
        font-size: 16px;
        line-height: 16px;
    }
    .post-date {
        font-size: 14px;
        line-height: 14px;
    }
}
@media screen and (max-width: 768px) {
    .post-img {
        max-width: 300px;
    }
    .post-title {
        font-size: 18px;
        line-height: 20px;
    }
    .post-subtitle {
        margin-top: 20px;
        font-size: 16px;
        line-height: 16px;
    }
    .post_up {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        row-gap: 20px;
    }
    .post-text {
        font-size: 14px;
        line-height: 16px;
    }
}

/* about */
.about_text {
    margin-top: 14px;
    
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #555555;   
}
.about_text p {
    margin-bottom: 8px;   
}
.about_text p:nth-last-child(1) {
    margin-bottom: unset;   
}
.about_content {
    margin-top: 38px;   
}
.about_card {
    width: 100%;
    height: 365px;
    -o-object-fit: cover;
       object-fit: cover;
    cursor: pointer;
}
@media screen and (max-width: 1300px) {
    .about_card {
        height: 280px;
    }
}
@media screen and (max-width: 1200px) {
    .about_card {
        height: 240px;
    }
    .about_text {
        margin-top: 10px;
        font-size: 15px;
        line-height: 21px;
    }
    .about_content {
        margin-top: 30px;
    }
}
@media screen and (max-width: 992px) {
    .about_text {
        font-size: 14px;
        line-height: 20px;
    }
    .about_content {
        margin-top: 20px;
    }   
}
@media screen and (max-width: 768px) {
    .about_text {
        font-size: 13px;
        line-height: 18px;
    }
    .about_text p {
        margin-bottom: 4px;
    }
    .about_card {
        height: 220px;
    }
}
@media screen and (max-width: 576px) {
    .about_content {
        margin-top: 14px;
    }
    .about_text {
        font-size: 12px;
        line-height: 14px;
    }
    .about_card {
        height: 180px;
    }
}


/* slider pagination */
.pagi {
    margin-top: 40px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.pagi .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #898989;
    border-radius: 60px;
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
}
.pagi .swiper-pagination-bullet-active {
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
    background: #151515;
    border-radius: 60px;
    width: 42px;
    height: 6px;
}
@media screen and (max-width: 768px) {
    .pagi {
        margin-top: 20px;
    } 
}

/* digit */
.digit_content {
    margin-top: 42px;
    display: -ms-grid;
    display: grid;
    grid-template: auto / repeat(auto-fit, minmax(100px, 1fr));
    -webkit-column-gap: 148px;
       -moz-column-gap: 148px;
            column-gap: 148px;
    row-gap: 30px;
}
.digit_card {
    position: relative;   
}
.digit_svg {
    position: absolute;
    right: -54px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.digit_value {
    font-family: 'DIN 2014';
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #5A47FB;
}
.digit_text {
    margin-top: 5px;
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 24px;
    color: #555555;
}
@media screen and (max-width: 1300px) {
    .digit_content {
        margin-top: 30px;
        -webkit-column-gap: 80px;
           -moz-column-gap: 80px;
                column-gap: 80px;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }
    .digit_svg {
        right: -20px;
    }
}
@media screen and (max-width: 1200px) {
    .digit_svg {
        right: -30px;
    }
}
@media screen and (max-width: 992px) {
    .digit_svg {
        display: none;
    }
    .digit_content {
        margin-top: 20px;
        
        display: -ms-grid;
        
        display: grid;
        grid-template: auto / repeat(auto-fit, minmax(100px, 1fr));
        -webkit-column-gap: 40px;
           -moz-column-gap: 40px;
                column-gap: 40px;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        row-gap: 20px;
    }
    .digit_text {
        margin-top: 4px;
        font-size: 16px;
        line-height: 18px;
    }
    .digit_value {
        font-size: 38px;
        line-height: 42px;
    }
}
@media screen and (max-width: 768px) {
    .digit_value {
        font-size: 32px;
        line-height: 36px;
    }
    .digit_text {
        margin-top: 4px;
        font-size: 14px;
        line-height: 14px;
    }
}

.license__cards {
    position: relative;
    margin-top: 32px; 
}
.license__card {
    position: relative;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;   
 
}
.license__card-img {
    position: absolute;
    top: 16px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 249px;
    height: 339px;
    max-height: 339px;
    max-width: 249px;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0 auto;
}
.license-prev, .license-next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    
    width: 44px;
    height: 44px;
    border: 1px solid #CFCFCF;
    border-radius: 100%;
    background: var(--color-white);
}
.license-prev:focus, .license-next:focus {
    outline: none;
}
.license-prev {
    position: absolute;
    left: -54px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.license-next {
    position: absolute;
    right: -54px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
@media screen and (max-width: 1300px) {
   .license-prev {
      right: -50px;  
   }
   .license-prev {
      left: -44px;  
   }
   .license-next {
      right: -44px;  
   }
    .license-prev, .license-next {
        width: 34px;
        height: 34px;
    }
    .license__card-subtract {
        width: 260px;
        height: auto;
        -o-object-fit: cover;
           object-fit: cover;
    }
    .license__card-img {
        position: absolute;
        top: 16px;
        width: 230px;
        height: 313px;
    }
}
@media screen and (max-width: 1200px) {
    .license-prev {
        left: -34px;  
    }
    .license-next {
        right: -34px;  
    }
}
@media screen and (max-width: 992px) {
    .license-prev {
      left: 0px;  
   }
   .license-next {
      right: 0px;  
   }
}
@media screen and (max-width: 768px) {
    .license__card-subtract {
        width: 200px;
    }
    .license__card-img {
        position: absolute;
        top: 12px;
        width: 178px;
        height: 241px;
    }
    .license__cards {
        margin-top: 20px;
    }
}
@media screen and (max-width: 634px) {
    .license__card-subtract {
        margin: 0 auto;   
    }
}

/* Slick */
/* Slick */
.slick-initialized .slick-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;   
}
.slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -moz-column-gap: 15px;
    -webkit-column-gap: 15px;
    column-gap: 15px;
}
.slider-prev, .slider-next {
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    
    width: 32px;
    height: 32px;
    border: 1px solid #C8C8C8;
    background: #ffffff;
    border-radius: 100%;
}
.slider-prev:focus, .slider-next:focus {
    outline: none;
}
.slider-prev {
    position: absolute;
    left: -40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.slider-next {
    position: absolute;
    right: -40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.slick-dots {
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -moz-column-gap: 8px;
  -webkit-column-gap: 8px;
          column-gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.slick-dots li button {
    border: none;
  
    width: 6px;
    height: 6px;
    
    background: #898989;
    border-radius: 60px;
  
    font-size: 0;
    -webkit-transition: .6s ease-in-out;
    -o-transition: .6s ease-in-out;
    transition: .6s ease-in-out;
}
.slick-dots li.slick-active button {
    -webkit-transition: .6s ease-in-out;
    -o-transition: .6s ease-in-out;
    transition: .6s ease-in-out;
    width: 43px;
    background: #151515;
    border-radius: 60px;
    outline: none;
    border: none;
}
@media screen and (max-width: 992px) {
    .slider-next {
        right: -30px;
    }
    .slider-prev {
        left: -30px;
    }
}
@media screen and (max-width: 768px) {
    .slick-dots {
        bottom: -30px;
    }
}

/* Партнеры */
.partners__content {
    margin-top: 35px;
    position: relative;
}
.partners__content2{
    margin-top: 14px;
    margin-bottom:80px
    position: relative;
}
.partners__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    
    width: 166px;
    height: 90px;
    
    background: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 4px;
}
.partners__card img {
    padding: 5px;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
@media screen and (max-width: 992px) {
    .partners {
        margin-top: 20px;   
    }
}
@media screen and (max-width: 576px) {
    .partners {
        margin-top: 20px;   
    }
    .partners__title span {
        line-height: 26px;   
    }
    .partners__title svg {
        right: 40px;
        bottom: 7px;
    }
    .partners__content {
        margin-top: 20px;
    }
    .partners__content2{
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

/* offer */
.offer_content {
    margin-top: 40px;
    
    display: -ms-grid;
    
    display: grid;
    grid-template: auto / repeat(auto-fit, minmax(140px, 1fr));
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 113px;
       -moz-column-gap: 113px;
            column-gap: 113px;
    row-gap: 30px;
}
.offer_card {
    position: relative;   
}
.offer_card img {
    width: 60px;
    height: 60px;
    -o-object-fit: contain;
       object-fit: contain;
}
.offer_card-title {
    margin-top: 36px;
    
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    color: #151515;
}
.offer_card-text {
    margin-top: 10px;
    
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #666666;
}
@media screen and (max-width: 1300px) {
    .offer_content {
        -webkit-column-gap: 50px;
           -moz-column-gap: 50px;
                column-gap: 50px;   
    }
}
@media screen and (max-width: 1200px) {
    .offer_card-title {
        margin-top: 16px;
        font-size: 15px;
        line-height: 20px;
    }
    .offer_card-text {
        margin-top: 5px;
        font-size: 13px;
        line-height: 15px;
    }
}
@media screen and (max-width: 992px) {
    .offer_card img {
        width: 50px;
        height: 50px;
    }
}

/* del */
.del {
    margin-top: 90px;
    
    padding: 20px 0;
    position: relative;
    height: 551px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.del_bg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-filter: brightness(50%);
            filter: brightness(50%); 
}
.del-text {
    max-width: 532px;
    margin-top: 14px;
    
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 32px;
    color: #EBEBEB;
}
.del_button {
    margin-top: 31px;   
}
@media screen and (max-width: 1300px) {
    .del {
        height: 500px;
    }
}
@media screen and (max-width: 1200px) {
    .del {
        margin-top: 70px;
        height: 400px;
    }
    .del-text {
        margin-top: 10px;
        font-size: 20px;
        line-height: 24px;
    }
}
@media screen and (max-width: 992px) {
    .del {
        margin-top: 50px;
        height: 360px;
    }
    .del_button {
        margin-top: 20px;
    }
}
@media screen and (max-width: 768px) {
    .del {
        margin-top: 40px;
        height: 300px;
    }
    .del-text {
        margin-top: 10px;
        font-size: 16px;
        line-height: 20px;
    }
}
@media screen and (max-width: 768px) {
    .del-text {
        margin-top: 10px;
        font-size: 14px;
        line-height: 18px;
    }
}

/* our-proj */
.our-proj_content {
    margin-top: 32px;   
}
@media screen and (max-width: 992px) {
    .our-proj_content {
        margin-top: 20px;   
    }   
}

/* call */

.callForm {
    margin-top: 34px;   
}
.callForm-data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 14px;
       -moz-column-gap: 14px;
            column-gap: 14px;
    max-width: 384px;
    width: 100%;
}
.callForm-data input {
    width: 100%;
    padding: 2px 0;
    background: none;
    border: none;
    outline: none;
    
    border-bottom: 1px solid #fff;
    
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #EBEBEB;
}
.callForm-data input::-webkit-input-placeholder {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #EBEBEB;   
}
.callForm-data input::-moz-placeholder {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #EBEBEB;   
}
.callForm-data input:-ms-input-placeholder {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #EBEBEB;   
}
.callForm-data input::-ms-input-placeholder {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #EBEBEB;   
}
.callForm-data input::placeholder {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: #EBEBEB;   
}
.callForm_button {
    margin-top: 53px;   
}
@media screen and (max-width: 1200px) {
    .callForm {
        margin-top: 30px;
    }
    .callForm_button {
        margin-top: 40px;   
    }
}
@media screen and (max-width: 992px) {
    .callForm-data {
        margin-top: 30px;
        max-width: 320px;
    }
    .callForm-data input {
        font-size: 16px;
        line-height: 24px;
    }
    .callForm-data input::-webkit-input-placeholder {
        font-size: 16px;
        line-height: 24px;
    }
    .callForm-data input::-moz-placeholder {
        font-size: 16px;
        line-height: 24px;
    }
    .callForm-data input:-ms-input-placeholder {
        font-size: 16px;
        line-height: 24px;
    }
    .callForm-data input::-ms-input-placeholder {
        font-size: 16px;
        line-height: 24px;
    }
    .callForm-data input::placeholder {
        font-size: 16px;
        line-height: 24px;
    }
    .callForm_button {
        margin-top: 40px;   
    }
}

/* our-about */
.our-about_wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 714px 15px 1fr;
        grid-template: auto / 714px 1fr;
    gap: 15px;
}
.our-about_block {
    position: relative;
    
    padding: 20px 37px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.our-about_block-img {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-filter: brightness(50%);
            filter: brightness(50%);
    border-radius: 4px;  
}
.our-about_block-text {
    margin-top: 14px;
    
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}
.our-about_block-text p {
    margin-bottom: 6px;   
}
.our-about_button {
    margin-top: 29px;
    max-width: 184px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;    
}
.our-about_button:hover {
    text-decoration: none;   
}
.our-about_content {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 15px 1fr;
        grid-template: auto / repeat(2, 1fr);
    gap: 15px;
}
.our-about_card {
    padding: 74px 29px 64px 29px;
    background: #EFEFEF;
    border-radius: 4px;   
}
@media screen and (max-width: 1300px) {
    .our-about_wrapper {
        -ms-grid-rows: auto;
        -ms-grid-columns: 660px 1fr;
            grid-template: auto / 660px 1fr;
    }
}
@media screen and (max-width: 1200px) {
    .our-about_wrapper {
        -ms-grid-rows: auto;
        -ms-grid-columns: 500px 1fr;
            grid-template: auto / 500px 1fr;
    }
    .our-about_card {
        padding: 50px 20px;
    }
    .our-about_block-text {
        margin-top: 10px;
        font-size: 14px;
        line-height: 20px;
    }
    .our-about_button {
        margin-top: 20px;
        max-width: 160px;
    }
}
@media screen and (max-width: 992px) {
    .our-about_wrapper {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
            grid-template: auto / 1fr;
    }
    .our-about_card {
        padding: 30px 20px;
    }
    .our-about_block {
        padding: 40px 20px;
    }
}
@media screen and (max-width: 768px) {
    .our-about_block-text {
        margin-top: 10px;
        font-size: 13px;
        line-height: 18px;
    }
    .our-about_button {
        margin-top: 16px;
        max-width: 140px;
    }
}
@media screen and (max-width: 576px) {
    .our-about_card {
        padding: 20px 18px;
    }
    .our-about_content {
        gap: 10px;  
    }
    .our-about_block {
        padding: 20px 18px;
    }
    .our-about_wrapper {
        gap: 10px;
    }
    .our-about_block-text {
        font-size: 11px;
        line-height: 15px;
    }
}

/* catalog */
.catalog {
    min-height: calc(100vh - 690px);   
}
.catalog_content {    
    display: -ms-grid;    
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 280px 26px 1fr;
        grid-template: auto / 280px 1fr;
    -webkit-column-gap: 26px;
       -moz-column-gap: 26px;
            column-gap: 26px;
}
.catalog_menu {
    -ms-flex-item-align: start;
        -ms-grid-row-align: start;
        align-self: start;
    border: 1px solid #E5E5E5;
    border-radius: 10px;       
}
.menu_head {
    padding: 23px 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    border-bottom: 1px solid #F3F3F3;
    margin-bottom: 18px;
}
.menu_head span {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    color: #151515;  
}
.catalog_ul {
    list-style-type: none;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.catalog-title {
    margin-top: 10px;
    position: relative;
    
    color: #151515;
    font-size: 38px;
    font-family: 'DIN 2014';
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 2.28px;
    text-transform: uppercase;
}
.catalog-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 24px;
    height: 2px;
    background: var(--main-color);
}
.catalog-buy {
    margin-top: 20px;
    
    color: #555;
    font-size: 16px;
    font-family: Proxima Soft;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
.catalog-buy a {
    white-space: nowrap;
    
    color: var(--main-color);
    font-size: 16px;
    font-family: Proxima Soft;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
}
.catalog-buy a:hover {
    color: var(--main-color);
    text-decoration: none;
}
.catalog_a {
    padding: 6px 8px 6px;
    
    display: -ms-grid;
    
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 12px 10px 1fr;
        grid-template: auto / 12px 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    
    color: #333;
    font-size: 14px;
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.catalog_a:hover {
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
    color: var(--main-color);
    text-decoration: none;
}
.catalog_li.active .catalog_a {
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
    color: var(--main-color);
    text-decoration: none;
}
.catalog_li.active .catalog_a svg circle {
    fill: var(--main-color);
    stroke: var(--main-color);
}
.catalog_li.active .catalog_a svg path {
    stroke: #fff;
}
.catalog_li.active .catalog_a svg path.ert {
    display: none;
}
.childmenu {
    display: none;
    list-style-type: none;
    padding: 7px;
    padding-left: 30px;
    
    -webkit-box-orient: vertical;
    
    -webkit-box-direction: normal;
    
        -ms-flex-direction: column;
    
            flex-direction: column;
    row-gap: 4px;
}
.childmenu.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;   
}
.childmenu_a {
    color: #333;
    font-size: 14px;
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.childmenu .childmenu_a:hover {
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
    color: var(--main-color);
    text-decoration: none;
}
.childmenu_li.active .childmenu_a {
    text-decoration: underline;
}
.childmenu_li {
    line-height: 16px;   
}
.catalog_items {
    margin-top: 10px;
    -ms-flex-item-align: start;
        -ms-grid-row-align: start;
        align-self: start;
}

.childmenu2 {
    list-style-type: circle;
}
.childmenu_li.active .childmenu2 {
    display: block;   
}
.catalog_li.active .childmenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.catalog-path a {
    color: #666;
    font-size: 16px;
    font-family: Proxima Soft;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    
    -webkit-transition: 0.4s all;
    
    -o-transition: 0.4s all;
    
    transition: 0.4s all;
}
.catalog-path a:hover {
    color: var(--main-color);
    text-decoration: none;
}

/* product */
.product_list {
    margin-top: 40px;
    
    display: -ms-grid;
    
    display: grid;
    grid-template: auto / repeat(auto-fit, minmax(240px, 1fr));
}
.product_list.count {
    grid-template: auto / repeat(auto-fit, minmax(240px, 314px));
}
.product_soon {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    color: #151515;
    z-index: 10;
    position: relative;
}
.product_item {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    -webkit-transition: background 0.6s, -webkit-transform 0.6s, -webkit-box-shadow 0.6s;
    transition: background 0.6s, -webkit-transform 0.6s, -webkit-box-shadow 0.6s;
    -o-transition: transform 0.6s, background 0.6s, box-shadow 0.6s;
    transition: transform 0.6s, background 0.6s, box-shadow 0.6s;
    transition: transform 0.6s, background 0.6s, box-shadow 0.6s, -webkit-transform 0.6s, -webkit-box-shadow 0.6s;
    outline: none !important;
    
    padding: 12px 12px 27px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    row-gap: 22px;
}
.product-inner {
    padding: 32px 6px 0 6px;   
}
.product_reason {
    padding: 0 6px;   
}
.product_item.stock::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(238, 238, 238, 0.5);
  z-index: 1;
}
.product_stock {
    margin-bottom: 10px;
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #151515;
    z-index: 10;
    position: relative;   
}
.product_item:hover {
    -webkit-transform: scale(1.01);
        -ms-transform: scale(1.01);
            transform: scale(1.01);
    background: #FFFFFF;
    border: none;
    -webkit-box-shadow: 0px 4px 40px rgba(85, 85, 85, 0.2);
            box-shadow: 0px 4px 40px rgba(85, 85, 85, 0.2);
}
.product_item.anim:hover {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    -webkit-box-shadow: 0px 4px 40px rgba(85, 85, 85, 0.2);
            box-shadow: 0px 4px 40px rgba(85, 85, 85, 0.2);
}
.product_images {
    padding: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.product_content img {    
    cursor: pointer;
    max-width: 400px;
    width: 100%;
    height: 310px;
    -o-object-fit: contain;
       object-fit: contain;
}
.product_name {
    margin-top: 10px;
    
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #151515; 
}
.product_category {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 13px;
    color: #888888;
}
.product_block {
    margin-top: 14px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 14px;
       -moz-column-gap: 14px;
            column-gap: 14px;
}
.product_link {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.product_button {
    position: relative;
    width: 100%;
    z-index: 2;
}
.link_for-catalog {
    width: 50px;
    height: 50px;
    display: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
    background: var(--main-color);
    border-radius: 100%;
    z-index: 200;
    position: fixed;
    right: 20px;
    bottom: 20px;
}
@media screen and (max-width: 1300px) {
    .product_content img {
        max-height: 280px;
    }
}
@media screen and (max-width: 1200px) {
    .product_list {
        margin-top: 30px;
    }
    .catalog_content {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 260px 20px 1fr;
            grid-template: auto / 260px 1fr;
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .product_content img {
        max-height: 240px;
    }
    .product-inner {
        padding: 20px 6px 0 6px;
    }
}
@media screen and (max-width: 992px) {
    .product_item {
        padding: 10px;   
    }
    .product-inner {
        padding: 14px 0 0 0;
    }
    .product_reason {
        padding: 0;
    }
    .product_list {
        margin-top: 20px;
    }
    .menu_head {
        padding: 20px;
    }
    .product_list.count {
        grid-template: auto / repeat(auto-fit, minmax(220px, auto));
    }
    .catalog_a {
        padding: 8px 8px 8px 20px;
        font-size: 14px;
        line-height: 16px;
    }
    .catalog_content {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 240px 20px 1fr;
            grid-template: auto / 240px 1fr;
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .product_button {
        padding: 10px 20px;
        font-size: 14px;
        line-height: 14px;
    }
    .product_name {
        font-size: 14px;
        line-height: 18px;
    }
    .product_list {
        display: -ms-grid;
        display: grid;
        grid-template: auto / repeat(auto-fit, minmax(220px, 1fr));
    }
    .product_content img {
        max-height: 200px;
    }
    .product_descr {
        font-size: 13px;
        line-height: 16px;
    }
    .product_block svg {
        width: 30px;
        height: 30px;
    }
}
@media screen and (max-width: 768px) {
    .product_list.count {
        grid-template: auto / repeat(auto-fit, minmax(220px, auto));
    }
    .catalog_menu {
        position: fixed;
        left: -100%;
        top: 0;
        width: 50%;
        height: 100vh;
        overflow: auto;
        -webkit-transition: 0.4s all;
        -o-transition: 0.4s all;
        transition: 0.4s all;
        z-index: 200;
        background: #fff;
    }
    .catalog_menu.active {
        left: 0;
    }
    .catalog_content {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
            grid-template: auto / 1fr;
        -webkit-column-gap: 0;
           -moz-column-gap: 0;
                column-gap: 0;
    }
    .link_for-catalog {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;   
    }
}
@media screen and (max-width: 576px) {
    .product_item {
        row-gap: 14px;    
    }
    .product_list {
        display: -ms-grid;
        display: grid;
        grid-template: auto / repeat(auto-fit, minmax(180px, 1fr));
    }
    .product_images {
        padding: 10px;
        height: 160px;
    }
    .product_content img {
        max-height: 180px;
    }
    .product_name {
        font-size: 13px;
        line-height: 14px;
    }
    .product_descr {
        font-size: 10px;
        line-height: 12px;
    }
    .product_block {
        margin-top: 10px;
        -webkit-column-gap: 10px;
           -moz-column-gap: 10px;
                column-gap: 10px;
    }
    .product_price {
        font-size: 12px;
        line-height: 13px;
    }
    .product_block svg {
        width: 26px;
        height: 26px;
    }  
    .catalog_menu {
        width: 100%; 
    }
    .product_stock {
        font-size: 15px;
        line-height: 18px;
    }
}

/* страница продукта */
.prod_block {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 592px 63px 1fr;
        grid-template: auto / 592px 1fr;
    -webkit-column-gap: 63px;
       -moz-column-gap: 63px;
            column-gap: 63px;
    
    -webkit-box-align: center;
    
        -ms-flex-align: center;
    
            align-items: center;
}
.prod_img img {
    max-width: 592px;
    width: 100%;
    height: 544px;
    -o-object-fit: contain;
       object-fit: contain;
    cursor: pointer;
}
.prod_title {
    font-family: 'DIN 2014';
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
    line-height: 30px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #151515;
}
.prod_opis {
    margin-top: 30px;
    
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #151515;
}
.prod_descr {
    margin-top: 9px;
    
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #555555;
}
.prod_price {
    margin-top: 12px;
    
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #555555;
}
.prod_stock {
    margin-top: 10px;
    
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color: #151515;
}
.prod_price span {
    color: #151515;
}
.prod_buttons {
    position: relative;
    margin-top: 53px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
}
.prod_buttons:before {
    content: "";
    position: absolute;
    left: 0;
    top: -29px;
    width: 100%;
    height: 1px;
    background: #D3D3D3;
}
@media screen and (max-width: 1300px) {
    .prod_block {
        -ms-grid-rows: auto;
        -ms-grid-columns: 540px 50px 1fr;
            grid-template: auto / 540px 1fr;
        -webkit-column-gap: 50px;
           -moz-column-gap: 50px;
                column-gap: 50px;
    }
    .prod_img img {
        height: 500px;   
    }
}
@media screen and (max-width: 1200px) {
    .prod_block {
        -ms-grid-rows: auto;
        -ms-grid-columns: 440px 40px 1fr;
            grid-template: auto / 440px 1fr;
        -webkit-column-gap: 40px;
           -moz-column-gap: 40px;
                column-gap: 40px;
    }
    .prod_info {
        padding: 20px 0;   
    }
    .prod_img img {
        height: 100%;   
    }
    .prod_img {
        height: 100%;
    }
    .prod_opis {
        margin-top: 20px;
    }
    .prod_descr {
        margin-top: 9px;
        font-size: 15px;
        line-height: 22px;
    }
    .prod_buttons {
        margin-top: 40px;
    }
    .prod_buttons:before {
        top: -20px;
    }
}
@media screen and (max-width: 992px) {
    .prod_block {
        -ms-grid-rows: auto;
        -ms-grid-columns: 340px 30px 1fr;
            grid-template: auto / 340px 1fr;
        -webkit-column-gap: 30px;
           -moz-column-gap: 30px;
                column-gap: 30px;
    }
    .prod_title {
        font-size: 22px;
        line-height: 26px;
    }
    .prod_opis {
        margin-top: 14px;
        font-size: 15px;
        line-height: 16px;
    }
    .prod_descr {
        margin-top: 9px;
        font-size: 13px;
        line-height: 18px;
    }
    .prod_price {
        margin-top: 10px;
        font-size: 15px;
        line-height: 18px;
    }
    .prod_buttons {
        margin-top: 30px;
    }
    .prod_buttons .button {
        padding: 10px 20px;
        font-size: 14px;
        line-height: 14px;
    }
    .prod_buttons:before {
        top: -18px;
    }
}
@media screen and (max-width: 768px) {
    .prod_block {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
            grid-template: auto / 1fr;
        row-gap: 30px;
    }
    .prod_img img {
        max-width: 705px;
        height: 240px;
    }
    .prod_info {
        padding: 0;
    }
}
@media screen and (max-width: 576px) {
    .prod_block {
        row-gap: 20px;
    }
    .prod_img img {
        height: 200px;
    }
    .prod_title {
        font-size: 18px;
        line-height: 22px;
    }
    .prod_buttons .button {
        width: 100%;
        text-align: center;
    }
}
@media screen and (max-width: 340px) {
    .prod_buttons {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        row-gap: 10px;
    }   
}

/* tab */
.prod_tab {
    margin-top: 50px;   
}
.prod_spec-up {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 64px;
       -moz-column-gap: 64px;
            column-gap: 64px;
    
    position: relative;
}
.prod_spec-up:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    background: #D3D3D3;
}
.prod_spec-item {
    position: relative;
    
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 38px;
    color: #333333;   
    
    cursor: pointer;
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
}
.prod_spec-item:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 3px;
    background: #5A47FB;
    
    -webkit-transition: 0.4s all;
    
    -o-transition: 0.4s all;
    
    transition: 0.4s all;
}
.prod_spec-item:hover {
    color: #5A47FB;   
}
.prod_spec-item:hover:before {
    width: 100%;   
}
.prod_spec-item.active {
    color: #5A47FB;    
}
.prod_spec-item.active:before {
    width: 100%;    
}
.prod_spec-info {
    margin-top: 36px;   
}
.prod_spec-block {
    display: none;   
}
.prod_spec-block-descr {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #555555;
}
.prod_spec-block-descr p {
    margin-bottom: 8px;   
}
.prod_spec-block-descr ul, ol, dl {
    padding-left: 20px;   
}
.prod_spec-block-descr h1, h2, h3, h4, h5, h6 {
    margin-bottom: 8px;   
}
.prod_spec-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
}
.prod_spec-list-title {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #151515;
}
.prod_spec-list-value {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #151515;
}
@media screen and (max-width: 992px) {
    .prod_tab {
        margin-top: 40px;
    }
    .prod_spec-up {
        -webkit-column-gap: 40px;
           -moz-column-gap: 40px;
                column-gap: 40px;
    }
    .prod_spec-item {
        font-size: 18px;
        line-height: 28px;
    }
    .prod_spec-info {
        margin-top: 20px;
    }
    .prod_spec-block-descr {
        font-size: 14px;
        line-height: 20px;
    }
    .prod_spec-list {
        -webkit-column-gap: 4px;
           -moz-column-gap: 4px;
                column-gap: 4px;
    }
    .prod_spec-list-title, .prod_spec-list-value {
        font-size: 16px;
        line-height: 20px;
    }
}
@media screen and (max-width: 576px) {
    .prod_tab {
        margin-top: 0;
    }
    .prod_spec-up {
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .prod_spec-item {
        font-size: 16px;
        line-height: 28px;
    }
    .prod_spec-block-descr {
        font-size: 13px;
        line-height: 15px;
    }
    .prod_spec-list-title, .prod_spec-list-value {
        font-size: 14px;
        line-height: 16px;
    }
    .prod_spec-list {
        -webkit-column-gap: 4px;
           -moz-column-gap: 4px;
                column-gap: 4px;
    }
}

.menu_catalog {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 200;
    padding: 100px;
    overflow: auto;
}
.menu_catalog-close {
    position: absolute;
    top: 60px;
    right: 60px;
    cursor: pointer;
}
.menu_catalog-close svg {
    width: 60px;
    height: 60px;
}
.menu_catalog-content {
    margin-top: 40px;
    
    display: -ms-grid;
    
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr;
        grid-template: auto / 1fr;
    gap: 40px;
}
.menu_catalog-main {
    font-family: 'DIN 2014';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #151515;
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
}
.menu_catalog-main:hover {
    color: var(--main-color);
    text-decoration: none;
}
.menu_catalog-childs {
    margin-top: 14px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 8px;
}
.menu_catalog-child {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #151515;
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
}
.menu_catalog-child:hover {
    color: var(--main-color);
    text-decoration: none;
}
@media screen and (max-width: 1300px) {
    .menu_catalog {
        padding: 60px;   
    }
    .menu_catalog-close {
        top: 40px;
        right: 40px;
    }
}
@media screen and (max-width: 1200px) {
    .menu_catalog {
        padding: 40px;   
    }
    .menu_catalog-close {
        top: 20px;
        right: 20px;
    }
    .menu_catalog-close svg {
        width: 50px;
        height: 50px;
    }
}
@media screen and (max-width: 992px) {
    .menu_catalog-content {
        margin-top: 30px;
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
            grid-template: auto / 1fr;
        gap: 30px;
    }
    .menu_catalog-main {
        font-size: 16px;
        line-height: 18px;
        display: block;
    }
    .menu_catalog-child {
        font-size: 15px;
        line-height: 18px;
    }
}
@media screen and (max-width: 576px) {
    .menu_catalog {
        padding: 20px;
    }
    .menu_catalog-close svg {
        width: 40px;
        height: 40px;
    }
    .menu_catalog-content {
        gap: 20px;
    }
}

.menu_catalog-childs.wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 20px 1fr;
        grid-template: auto / repeat(2, 1fr);
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
}
.menu_catalog-childs.wrap2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
        grid-template: auto / repeat(3, 1fr);
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
}
.menu_catalog-childs.wrap3 {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
        grid-template: auto / repeat(4, 1fr);
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
}
.menu_catalog-childs.wrap4 {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
        grid-template: auto / repeat(5, 1fr);
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
}
@media screen and (max-width: 1200px) {
    .menu_catalog-childs.wrap {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
            grid-template: auto / repeat(1, 1fr);
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .menu_catalog-childs.wrap2 {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 20px 1fr;
            grid-template: auto / repeat(2, 1fr);
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .menu_catalog-childs.wrap3 {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
            grid-template: auto / repeat(3, 1fr);
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .menu_catalog-childs.wrap4 {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
            grid-template: auto / repeat(4, 1fr);
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }     
}
@media screen and (max-width: 992px) {
    .menu_catalog-childs.wrap {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
            grid-template: auto / repeat(1, 1fr);
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .menu_catalog-childs.wrap2 {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
            grid-template: auto / repeat(1, 1fr);
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .menu_catalog-childs.wrap3 {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 20px 1fr;
            grid-template: auto / repeat(2, 1fr);
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .menu_catalog-childs.wrap4 {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
            grid-template: auto / repeat(3, 1fr);
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }     
}
@media screen and (max-width: 768px) {
    .menu_catalog-childs.wrap4 {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 20px 1fr;
            grid-template: auto / repeat(2, 1fr);
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .menu_catalog-childs {
        row-gap: 4px;   
    }
}
@media screen and (max-width: 576px) {
    .menu_catalog-childs.wrap3 {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
            grid-template: auto / repeat(1, 1fr);
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .menu_catalog-childs.wrap4 {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
            grid-template: auto / repeat(1, 1fr);
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }    
}

.tovar_wrapper {
    position: relative;   
}
.tovar-content {
    margin-top: 32px;
    display: -ms-grid;
    display: grid;
}
@media screen and (max-width: 576px) {
   .tovar-content {
        margin-top: 32px;   
    }    
}

/* swiper */
.swiper-button-next:after, .swiper-button-prev:after {
    content: none !important;   
}
.swiper-button-next {
    right: -40px;
    top: 50%;
    transform: translateY(30px);
}
.swiper-button-prev {
    left: -40px;
    top: 50%;
    transform: translateY(30px);
}
.swiper-button-next svg, .swiper-button-prev svg {
    width: 36px;
    height: 36px;
}
.swiper-button-next svg path, .swiper-button-prev svg path {
    transition: 0.4s all;
}
.swiper-button-next:hover svg path:nth-child(1), .swiper-button-prev:hover svg path:nth-child(1) {
    stroke: var(--main-color);
}
@media screen and (max-width: 1200px) {
    .swiper-button-next {
        right: -38px;   
    }
    .swiper-button-prev {
        left: -38px;   
    }   
}
@media screen and (max-width: 992px) {
    .swiper-button-next svg, .swiper-button-prev svg {
        width: 30px;
        height: 30px;
    }
    .swiper-button-next {
        right: -20px;   
    }
    .swiper-button-prev {
        left: -20px;   
    } 
    .tovar_wrapper {
        padding: 0 20px;   
    }
}
@media screen and (max-width: 768px) {
    .tovar_wrapper {
        padding: 0; 
    }
    .swiper-button-next {
        display: none;
    }
    .swiper-button-prev {
        display: none;  
    }  
}


/* страница поиск */
.poisk-title {
    position: relative;   
}
.poisk-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 1px;
    background: #F1F1F1;
}
.poisk__search {
    margin-top: 40px;   
}
.poisk__search .ss-search-form__input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
}
.poisk__search .ss-search-form__input input {
    padding: 10px;
    background: #FFFFFF;
    border: 1px solid var(--main-color) !important;
    text-align: left;
    border-radius: 10px;
    width: 100%;
    
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-edge: cap;
    color: #151515;
}
.poisk__search .ss-search-form__input input::-webkit-input-placeholder {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-transform: none;
    text-decoration: none;
    text-edge: cap;
    color: #999999;
}
.poisk__search .ss-search-form__input input::-moz-placeholder {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-transform: none;
    text-decoration: none;
    text-edge: cap;
    color: #999999;
}
.poisk__search .ss-search-form__input input:-ms-input-placeholder {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-transform: none;
    text-decoration: none;
    text-edge: cap;
    color: #999999;
}
.poisk__search .ss-search-form__input input::-ms-input-placeholder {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-transform: none;
    text-decoration: none;
    text-edge: cap;
    color: #999999;
}
.poisk__search .ss-search-form__input input::placeholder {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    leading-trim: both;
    text-transform: none;
    text-decoration: none;
    text-edge: cap;
    color: #999999;
}
.poisk__search .ss-search-form__submit {
    padding: 15px;
    border-radius: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    outline: none !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid var(--main-color) !important;  
}
.poisk__search .ss-search-form__submit:hover {
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
    background: #BE2529;
    color: #fff;
}
.poisk__search .ss-search-form__submit:hover svg path{
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
    fill: #DD137B;
    stroke: #fff;
}
.poisk__result {
    margin-top: 40px;   
}
.poisk__result p {
    font-family: 'Proxima Soft';
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #586667;
}
.poisk__result .ss-result__title a {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    text-transform: uppercase;
    color: #151515;
    text-decoration: none;
}
.poisk__result .ss-result__title a:hover {
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
    text-decoration: none;
    color: var(--main-color)
}
.poisk__result .ss-result__text {
    margin-top: 10px;
    
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #586667;
}
.poisk__result .ss-result__text mark {
    padding: 0.2em;
    color: #151515;
}
.poisk__result .ss-result__url a {
    margin-top: 12px;
    display: block;
    
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.6;
    color: var(--main-color);
    text-decoration: none;
}
.poisk__result .ss-result hr {
    margin-top: 20px;   
}

/* header_search */
.header_search-link {
    display: none;
    height: 30px;
    width: 30px;
    border-radius: 32px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #EEEEEE;
}
.header_search .ss-search-form__input {
    padding-left: 20px;
    background: #EEEEEE;
    border-radius: 32px;
    
    height: 39px;
    
    display: -ms-grid;
    
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 40px;
        grid-template: auto / 1fr 40px;
}
.header_search .ss-search-form__input input {
    border: none !important;
    background: none;
    
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #151515;
}
.header_search .ss-search-form__input input::-webkit-input-placeholder {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #858585;
}
.header_search .ss-search-form__input input::-moz-placeholder {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #858585;
}
.header_search .ss-search-form__input input:-ms-input-placeholder {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #858585;
}
.header_search .ss-search-form__input input::-ms-input-placeholder {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #858585;
}
.header_search .ss-search-form__input input::placeholder {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #858585;
}
.header_search .ss-search-form__input .ss-search-form__submit {
    border: none !important;
    outline: none !important;
    
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    
    border-radius: 32px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
@media screen and (max-width: 992px) {
    .header_search .ss-search-form__input {
        padding-left: 16px;
        height: 32px;
    }
}
@media screen and (max-width: 768px) {
    .header_search .ss-search-form__input {
        padding-left: 14px;
        height: 30px;
    }
}
@media screen and (max-width: 576px) {
    .header_search > form {
        display: none;
    }
    .header_search-link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;   
    }
}

/* footer */
.footer {
    margin-top: 100px;
    padding: 15px 0 30px;
    background: #222222;
}
.footer_up {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.footer_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-column-gap: 17px;
       -moz-column-gap: 17px;
            column-gap: 17px;
}
.footer_block-title {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    color: #ABABAB;
}
.footer_block-value {
    display: block;
    margin-top: 3px;
    
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
    
    -webkit-transition: 0.4s all;
    
    -o-transition: 0.4s all;
    
    transition: 0.4s all;
}
a.footer_block-value:hover {
    color: var(--main-color);
    text-decoration: none;
}
.footer_block-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
}
.footer_main {
    margin-top: 70px;
    position: relative;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
    justify-content: space-between;
}
.footer_main:before {
    content: "";
    position: absolute;
    left: 0;
    top: -32px;
    width: 100%;
    height: 1px;
    background: #2C2C2C;
}
.footer_content-title {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    color: #FFFFFF;
}
.footer_content-inner {
    margin-top: 24px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
     /*   -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 6px;*/
    flex-direction: row;
    row-gap: 6px;
    gap: 20px;
}
.footer_content-item {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 25px;
    color: #C0C0C0;
}
.footer_content-item:hover {
    color: #C0C0C0;  
}
.footer_content-inner.catalog {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: auto 42px auto 42px auto;
        grid-template: auto / repeat(3, auto);
    -webkit-column-gap: 42px;
       -moz-column-gap: 42px;
            column-gap: 42px;
}
.footer_button {
    height: 100%;
    max-height: 48px;
}
@media screen and (max-width: 1300px) {
    .footer_main {
        margin-top: 60px;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        row-gap: 30px;
    }
    .footer_content-inner.catalog {
        -webkit-column-gap: 56px;
           -moz-column-gap: 56px;
                column-gap: 56px;
    }
}
@media screen and (max-width: 1200px) {
    .footer {
        margin-top: 80px;
    }
    .footer_content-inner.catalog {
        -webkit-column-gap: 36px;
           -moz-column-gap: 36px;
                column-gap: 36px;
    }
}
@media screen and (max-width: 992px) {
    .footer {
        margin-top: 60px;
    }
    .footer_up {
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: (1fr)[2];
            grid-template: auto / repeat(2, 1fr);
        row-gap: 10px;
    }
    .footer_content-inner.catalog {
        -webkit-column-gap: 56px;
           -moz-column-gap: 56px;
                column-gap: 56px;
        -ms-grid-rows: auto;
        -ms-grid-columns: auto 56px auto;
            grid-template: auto / repeat(2, auto);
    }
}
@media screen and (max-width: 768px) {
    .footer {
        margin-top: 50px;
    }
    .footer_block:nth-child(1) {
        -ms-grid-column-span: 2;
        grid-column: span 2;
    }
    .footer_content.prod {
        display: none;   
    }
}
@media screen and (max-width: 576px) {
    .footer_block:nth-child(1) {
        grid-column: unset;
    }
    .footer_up {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr;
            grid-template: auto / 1fr;
    }
    .footer_block-value {
        font-size: 16px;
        line-height: 22px;
    }
    .footer_content-inner {
        margin-top: 14px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        row-gap: 3px;
    }
    .footer_main {
        margin-top: 30px;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        row-gap: 20px;
    }
    .footer_main:before {
        top: -15px;
    }
}

/* footer_under */
.footer_under {
    margin-top: 60px;
    position: relative;
}
.footer_under:before {
    content: "";
    position: absolute;
    left: 0;
    top: -27px;
    width: 100%;
    height: 1px;
    background: #2C2C2C;
}
.footer_under span {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 14px;
    color: #FFFFFF;   
}
.footer_under a {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 300;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    color: #FFFFFF;   
}
.footer_under a:hover {
    color: #FFFFFF;  
}
@media screen and (max-width: 768px) {
    .footer_under {
        margin-top: 40px;
    }
    .footer_under:before {
        top: -17px;
    }
}


/* prodFrom */
.prod_form {
    padding: 84px 43px 75px; 
    background: #FFFFFF;
    border-radius: 5px;
    -ms-flex-item-align: start;
        -ms-grid-row-align: start;
        align-self: start;
}
.prod_form-title {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #151515;
}
.prod_form-decsr {
    margin-top: 18px;
    
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #666666;
}
.button_whatsapp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    
    margin-top: 7px;
    width: 100%;
    height: 50px;
    background: #4CC85B;
    border-radius: 4px;
    border: 1px solid #4CC85B;
}
.button_whatsapp:hover {
    color: #4CC85B; 
}
.prodForm {
    margin-top: 36px;   
}
.prodForm-data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 17px;
}
.prodForm-data input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    
    width: 100%;
    padding: 10px 18px;
    height: 50px;
    background: #F8F8F8;
    border-radius: 4px;
    border: none !important;
    outline: none !important;   
}
.prodForm-data input::-webkit-input-placeholder {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #666666;   
}
.prodForm-data input::-moz-placeholder {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #666666;   
}
.prodForm-data input:-ms-input-placeholder {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #666666;   
}
.prodForm-data input::-ms-input-placeholder {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #666666;   
}
.prodForm-data input::placeholder {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #666666;   
}
.prodForm-data input {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #151515;   
}
.prodForm__button {
    margin-top: 36px;
    height: 50px;
    width: 100%;
}
@media screen and (max-width: 1200px) {
    .prod_back:before {
        bottom: -10px;
    }
    .prod_content {
        margin-top: 50px;
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: minmax(400px, 824px) 20px 340px;
            grid-template: auto / minmax(400px, 824px) 340px;
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .prod_form {
        padding: 60px 30px 50px;
    }
    .prod_spec {
        margin-top: 30px;
    }
}
@media screen and (max-width: 992px) {
    .prod_content {
        margin-top: 40px;
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: minmax(400px, 824px) 20px 260px;
            grid-template: auto / minmax(400px, 824px) 260px;
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .prod_form {
        padding: 40px 20px 40px;
    }
    .prod_form-title {
        font-size: 20px;
        line-height: 20px;
    }
    .prod_form-decsr {
        margin-top: 14px;
        font-size: 14px;
        line-height: 18px;
    }
    .prodForm {
        margin-top: 20px;
    }
    .prodForm-data {
        row-gap: 12px;
    }
    .prodForm__button {
        margin-top: 20px;
        height: 40px;
    }
    .button_whatsapp {
        height: 40px;   
    }
    .prod_spec {
        margin-top: 20px;
    }
    .prod_spec-item {
        font-size: 16px;
        line-height: 24px;
    }
    .prod_spec-up {
        -webkit-column-gap: 30px;
           -moz-column-gap: 30px;
                column-gap: 30px;
    }
    .prod_spec-info {
        margin-top: 20px;
    }
    .prod_spec-block {
        font-size: 14px;
        line-height: 20px;
    }
    .prod-slide {
        padding: 10px;
    }
}
@media screen and (max-width: 768px) {
    .prod_content {
        margin-top: 40px;
        display: -ms-grid;
        display: grid;
        -ms-grid-rows: auto;
        -ms-grid-columns: 100%;
            grid-template: auto / 100%;
        row-gap: 30px;
    }
}
@media screen and (max-width: 576px) {
    .prod_spec {
        margin-top: 20px;
    }
    .prod_title {
        margin-top: 10px;
    }
    .prod_thumbs {
        margin-top: 20px;
        padding: 20px;
    }
    .prodSlider {
        margin-top: 10px;
    }
    .prod_spec-up {
        -webkit-column-gap: 20px;
           -moz-column-gap: 20px;
                column-gap: 20px;
    }
    .prod_spec-item {
        font-size: 14px;
        line-height: 22px;
    }
    .prod_spec-block {
        font-size: 12px;
        line-height: 16px;
    }
    .prod_form {
        padding: 20px;
    }
}


/* modal */
.modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 200;
}
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 396px;
    height: auto;
    z-index: 500;
}
.modal-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.75);
}
.modal-close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}
.modal-close svg {
    width: 34px;
    height: 34px;
}
.prod_form.modal-content {
    padding: 40px;
}
@media screen and (max-width: 576px) {
    .modal-content {
        width: 90%;   
    }
    .prod_form.modal-content {
        padding: 20px;
    }
    .modal-close {
        right: 6px;
        top: 6px;
    }
    .modal-close svg {
        width: 30px;
        height: 30px;
    }
}

/* menu */
.childmenu_li.active .childmenu2 {
    display: block;
}
.childmenu2 {
    display: none;
    margin-top: 3px;
    margin-bottom: 3px;
    margin-left: 10px;
    list-style-type: none;
}
.childmenu2 li {
    position: relative;   
}
.childmenu2 li:before {
    content: '·';
    position: absolute;
    left: -10px;
    top: 50%;
    -webkit-transform: translateY(-60%);
        -ms-transform: translateY(-60%);
            transform: translateY(-60%);
    font-size: 30px;
    line-height: 16px;
    color: #000;
}
.childmenu2 a {
    color: #333;
    font-size: 14px;
    font-family: Proxima Soft;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.childmenu2 a.active {
    text-decoration: underline;   
}

/* prodPagi */
.prodPagi ul.pagination {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 50px;
    list-style-type: none;
}
.prodPagi .pagination > li a.pagin-arrow {
    background: #F6F6F6;
    border: 1px solid #D7D7D7 !important;
    border-radius: 2px;
    font-weight: 700; 
    letter-spacing: 2px;
    color: #333333;
    margin-right: 1px;
    margin-left: 1px;
}
.prodPagi .pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    background: #ea2d37;
    color: #fff;
    border-color: #ea2d37;
}
.prodPagi .pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    background-color: var(--main-color);
    border-color: #ea2d37;
    background: #F6F6F6;
    border: 1px solid #D7D7D7;
    border-radius: 2px;
    font-weight: 700; 
    letter-spacing: 2px;
    color: #333333;
}
.prodPagi .pagination > li > a, .pagination > li > span {
    color: #ea2d37;
    font-weight: 700;
    font-size: 18px;
    line-height: 31px; 
    letter-spacing: 2px;
    color: #333333;
    font-weight: 700;
    font-size: 18px;
    line-height: 31px; 
    letter-spacing: 2px;
    color: #333333;
    border: none;
}
.prodPagi .pagination > li {
  display: inline;
}
.prodPagi .pagination > li > a,
.prodPagi .pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.6;
  text-decoration: none;
  color: var(--main-color);
  background-color: #ffffff;
  border: 1px solid #dddddd;
  margin-left: -1px;
}
.prodPagi .pagination > li:first-child > a,
.prodPagi .pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.prodPagi .pagination > li:last-child > a,
.prodPagi .pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.prodPagi .pagination > li > a:hover,
.prodPagi .pagination > li > span:hover,
.prodPagi .pagination > li > a:focus,
.prodPagi .pagination > li > span:focus {
  z-index: 2;
  color: #216a94;
  background-color: #eeeeee;
  border-color: #dddddd;
}
.prodPagi .pagination > .active > a,
.prodPagi .pagination > .active > span,
.prodPagi .pagination > .active > a:hover,
.prodPagi .pagination > .active > span:hover,
.prodPagi .pagination > .active > a:focus,
.prodPagi .pagination > .active > span:focus {
  z-index: 3;
  color: #ffffff;
  background-color: var(--main-color);
  border-color: var(--main-color);
  cursor: default;
}
.prodPagi .pagination > .disabled > span,
.prodPagi .pagination > .disabled > span:hover,
.prodPagi .pagination > .disabled > span:focus,
.prodPagi .pagination > .disabled > a,
.prodPagi .pagination > .disabled > a:hover,
.prodPagi .pagination > .disabled > a:focus {
  color: #777777;
  background-color: #ffffff;
  border-color: #dddddd;
  cursor: not-allowed;
}
.prodPagi .pagination-lg > li > a,
.prodPagi .pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 20px;
  line-height: 1.3333333;
}
.prodPagi .pagination-lg > li:first-child > a,
.prodPagi .pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}
.prodPagi .pagination-lg > li:last-child > a,
.prodPagi .pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}
.prodPagi .pagination-sm > li > a,
.prodPagi .pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.5;
}
.prodPagi .pagination-sm > li:first-child > a,
.prodPagi .pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.prodPagi .pagination-sm > li:last-child > a,
.prodPagi .pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

.dop-category {
    margin-top: 60px;   
}
.dop-category_wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr 32px 1fr 32px 1fr;
        grid-template: auto / repeat(3, 1fr);
    gap: 32px;
}
.dop-category_card {
    position: relative;
    padding: 18px 20px 32px 11px;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 48px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    
    border-radius: 4px;
    background: #EFEFEF;
    
    cursor: pointer;
    -webkit-transition: 0.8s all;
    -o-transition: 0.8s all;
    transition: 0.8s all;
}
.dop-category-title {
    padding-left: 10px;
    
    color: #151515;
    font-size: 14px;
    font-family: Proxima Soft;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
    
    -webkit-transition: 0.8s all;
    
    -o-transition: 0.8s all;
    
    transition: 0.8s all;
}
.dop-category_card a {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.dop-category_card svg path {
    -webkit-transition: 0.8s all;
    -o-transition: 0.8s all;
    transition: 0.8s all;  
}
.dop-category_card:hover {
    background: var(--main-color);   
}
.dop-category_card:hover svg path {
    stroke: #fff;
}
.dop-category_card:hover .dop-category-title {
    color: #fff;   
}
@media screen and (max-width: 1200px) {
    .dop-category {
        margin-top: 40px;
    }
    .dop-category_wrapper {
        gap: 20px;
    }
    .dop-category_card {
        position: relative;
        padding: 18px 18px 22px 8px;
        row-gap: 30px;
    }
    .dop-category-title {
        font-size: 12px;
        line-height: 110%;
    }
    .catalog-title {
        font-size: 34px;
    }
    .catalog-buy, .catalog-buy a {
        font-size: 14px;
        line-height: 18px;
    }
}
@media screen and (max-width: 992px) {
    .catalog-title {
        font-size: 28px;
    }
    .catalog-buy, .catalog-buy a {
        font-size: 12px;
        line-height: 16px;
    }
    .dop-category_wrapper {
        -ms-grid-rows: auto;
        -ms-grid-columns: 1fr 10px 1fr;
            grid-template: auto / repeat(2, 1fr);
        gap: 10px;
    }
    .dop-category {
        margin-top: 20px;
    }
}
@media screen and (max-width: 576px) {
    .catalog-title {
        font-size: 24px;
        line-height: 100%;
    }
    .dop-category_card svg {
        width: 15px;   
    }
    .dop-category_card {
        position: relative;
        padding: 12px 12px 16px 6px;
        row-gap: 20px;
    }
    .dop-category-title {
        padding-left: 6px;
        font-size: 10px;
        line-height: 110%;
    }
}

/* seo-text */
.seo-text_wrapper {
    margin-top: 60px;
}
.seo-text_wrapper p {
    margin-bottom: 8px;   
}

/* accordion */
.accordion-head {
    cursor: pointer;   
}
.accordion-body {
    height: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}


/* fillials */
.fillials_content {
    margin-top: 30px;
    
    display: -ms-grid;
    
    display: grid;
    -ms-grid-rows: auto;
    -ms-grid-columns: 1fr;
        grid-template: auto / 1fr;
    row-gap: 30px;
}
.fillials_content-head {
    position: relative;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    
    color: #333;
    font-size: 20px;
    font-family: Proxima Soft;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
}
.fillials_content-head:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: #EAEAEA;
}
.fillials_content-body {
    display: -ms-grid;
    display: grid;
    grid-template: auto / repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}
.fillials_content-city {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
    
    margin-bottom: 10px;
}
.fillials_content-city span {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: var(--main-color);
}
.fillials_content-item {
    margin-top: 4px;
    
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #222222;
}
.fillials_content-item span:nth-child(1) {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #222222;
}
.fillials_content-item span:nth-child(2) {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #222222;
}
.fillials_content-item a {
    font-family: 'Proxima Soft';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: var(--main-color);
    
    -webkit-transition: 0.4s all;
    
    -o-transition: 0.4s all;
    
    transition: 0.4s all;
}
.fillials_content-head svg {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    transition: 0.5s all;
}
.fillials_content-head.active svg {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    transition: 0.5s all;
}
@media screen and (max-width: 768px) {
    .fillials_content-body {
        gap: 20px;   
    }
    .fillials_content-head {
        font-size: 18px;
        line-height: 20px;
    }
}
.layout-slider .slick-track{
    -webkit-column-gap: 0 !important;
    column-gap: 0 !important;
}
.layout-slider .slick-slide{
    display: flex;
    flex-direction: column;
}

.layout .partners__card{
    background: rgba(229, 229, 229, 0.4);
    border: none;
    margin-right: 5px;
}









