@import "../fonts/gilroy/stylesheet.css";

body {
    margin: 0px;
    margin-top: 80px;
    padding: 0px;
    overflow-x: hidden;
}
body.no-scroll {
    overflow-y: hidden;
}
body.no-scroll section,
body.no-scroll section::before,
body.no-scroll section::after,
body.no-scroll section *,
body.no-scroll footer,
body.no-scroll footer * {
    z-index: 0;
}
body.no-scroll header,
body.no-scroll header *,
body.no-scroll img {
    z-index: 1;
}
@media (max-width: 1055px) {
    body {
        margin-top: 75px;
    }
}
@media (max-width: 500px), (max-height: 510px) {
    body {
        margin-top: 55px;
    }
}
* {
    font-family: 'Gilroy';
    font-style: normal;
}
*:focus {
    outline: none;
}
a, a:hover {
    text-decoration: none;
}
.blue-btn {
    background-color: #372960;
    color: #fff;
    transition: all .3s;
}
.blue-btn:hover {
    background-color: #43307A;
}
.blue-btn:active {
    background-color: #563F9A;
}
.orange-btn {
    background-color: #EF7F1A;
    color: #fff;
    transition: all .3s;
}
.orange-btn:hover {
    background-color: #EE9646;
}
.orange-btn:active {
    background-color: #FAB476;
}




.popup-fade {
    display: none;
}
.popup-fade:before {
    content: '';
    background: rgba(50, 50, 50, 0.75);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /*opacity: 0.7;*/
    z-index: 100;
}
.popup {
    position: fixed;
    top: 15%;
    left: 50%;
    padding: 25px 25px 40px;
    width: 450px;
    margin-left: -200px;
    background: #fff;
    z-index: 101;
    /*opacity: 1;*/
}
.popup-close {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}
.popup-header {
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;
    color: #323232;
    margin-bottom: 10px;
}
.request-success-modal .popup-header {
    text-align: center;
}
.popup-text {
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    color: #323232;
    margin-bottom: 15px;
}
.popup-body form {
    display: flex;
    flex-wrap: wrap;
}
.form-field {
    margin-top: 20px;
    width: 100%;
}
.form-field.short-form {
    width: 50%;
}
.form-field-label {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    color: #323232;
}
.input-text,
.input-textarea {
    width: calc(100% - 35px);
    /*height: 40px;*/
    background: #E5E5E5;
    border: none;
    border-radius: 6px;
    padding: 11px 15px;
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    color: #323232;
}
.input-text::placeholder,
.input-textarea::placeholder {
    font-weight: normal;
    font-size: 13px;
    line-height: 18px;
    color: #323232;
}
.input-text.input_invalid,
.input-textarea.input_invalid {
    background-color: #BD1821 !important;
    border-color: #BD1821 !important;
    color: #fff !important;
}
.input-text.input_invalid::placeholder,
.input-textarea.input_invalid::placeholder {
    color: #fff !important;
}
.input-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
#label-input-checkbox {
    display: flex;
    align-items: flex-start;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    color: #323232;
}
.input-checkbox + #label-input-checkbox::before {
    cursor: pointer;
    content: '';
    display: block;
    width: 20px;
    min-width: 20px;
    height: 20px;
    border: none;
    border-radius: 2px;
    margin-right: 12px;
    background: #372960;
}
.input-checkbox:checked + #label-input-checkbox::before {
    content: "\2713";
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);
    font-size: 16px;
    line-height: 18px;
    color: #f3f3f3;
    text-align: center;
}
.popup-btn {
    border: none;
    cursor: pointer;
    width: 164px;
    margin-top: 30px;
    border-radius: 6px;
    padding: 20px 30px;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.request-success-modal .popup-btn {
    margin: 25px auto 0;
}
/*input:-internal-autofill-selected {*/
/*    background-color: #E5E5E5 !important;*/
/*}*/
input {outline: none;}
input:-webkit-autofill {
    -webkit-box-shadow: inset 0 0 0 50px #E5E5E5 !important; /* Цвет фона */
    /*-webkit-text-fill-color: #999 !important; !* цвет текста *!*/
    /*color: #999 !important; !* цвет текста *!*/
}
@media (max-width: 768px) {
    .popup {
        left: 45%;
    }
}
@media (max-width: 576px) {
    .popup {
        left: 50%;
        top: 5%;
        width: 300px;
        margin-left: -170px;
    }
}
@media (max-width: 400px) {
    .popup {
        left: 0;
        right: 0;
        width: unset;
        margin-left: 0;
    }
    .send-modal .popup {
        top: 0;
        bottom: 0;
        overflow-y: auto;
    }
}
@media (max-height: 510px) {
    .popup {
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        overflow-y: auto;
        width: unset;
        margin-left: 0;
    }
}




#cookie_notification{
    display: none;
    position: fixed;
    bottom: 0px;
    left: 120px;
    right: 120px;
    /*left: 50%;*/
    /*width: 1600px;*/
    /*max-width: 90%;*/
    /*transform: translateX(-50%);*/
    padding: 11px 0;
    background-color: #372960;
    z-index: 10;
}
.cookie_notification__container {
    display: flex;
}
.cookie_notification__block {
    display: flex;
    margin: 0 auto;
    width: 1090px;
}
#cookie_notification p {
    margin: 0;
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
}
#cookie_notification p a {
    color: #FFFFFF;
    text-decoration: underline;
}
#cookie_notification p a:hover {
    opacity: 0.6;
}
.cookie_accept {
    padding: 12px 20px;
    margin-left: 50px;
    margin-top: auto;
    margin-bottom: auto;
    height: 40px;
    cursor: pointer;
    border-radius: 6px;
    border: 2px solid #FFFFFF;
    font-weight: 800;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background-color: #372960;
    transition: all .3s;
}
.cookie_accept:hover {
    color: #372960;
    background-color: #fff;
}
@media (max-width: 1600px) {
    #cookie_notification {
        left: 70px;
        right: 70px;
    }
}
@media (max-width: 1280px) {
    #cookie_notification {
        left: 85px;
        right: 85px;
        padding: 11px 50px;
    }
}
@media (max-width: 1055px) {
    #cookie_notification {
        left: 47px;
        right: 47px;
    }
}
@media (max-width: 768px) {
    #cookie_notification {
        left: 38px;
        right: 38px;
    }
    .cookie_notification__block {
        flex-wrap: wrap;
    }
    .cookie_accept {
        margin: 10px auto 0;
    }
}
@media (max-width: 700px), (max-height: 450px) {
    #cookie_notification{
        bottom: 46px;
        max-width: 100%;
        width: unset;
        left: 0;
        right: 0;
        transform: unset;
    }
}

.fixed-buttons {
    position: fixed;
    right: 0;
    top: 320px;
    z-index: 100;
}
.fixed-btn {
    position: relative;
    cursor: pointer;
    background-color: #EF7F1A;
    margin-bottom: 2px;
    padding: 19px;
    padding-bottom: 15px;
    transition: all .3s;
}
.fixed-btn:active {
    background-color: #372960;
}
.fixed-btn-popup {
    display: none;
    position: absolute;
    top: 17px;
    right: 82px;
    min-width: 175px;
    background-color: #372960;
    border-radius: 5px;
    padding: 6px 12px;
    font-weight: bold;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    text-align: center;
}
.fixed-btn-popup::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 7px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-left: 8px solid #372960;
    border-bottom: 8px solid transparent;
}
.send-btn .fixed-btn-popup {
    top: 6px;
}
.send-btn .fixed-btn-popup::after {
    top: 16px;
}
.fixed-btn:hover .fixed-btn-popup {
    display: block;
}
@media (min-width: 701px) and (min-height: 451px) {
    .button-up {
        position: fixed;
        z-index: 100;
        right: 0;
        bottom: 100px;
        background-color: #372960;
        padding: 17px 21px 17px 20px;
    }
    .button-up:active {
        background-color: #EF7F1A;
    }
}
@media(hover: hover) and (pointer: fine) {
    .fixed-btn:hover {
        background-color: #372960;
    }
}
@media(hover: hover) and (pointer: fine) and (min-width: 701px) {
    .button-up:hover {
        background-color: #EF7F1A;
    }
}
@media (max-height: 820px) {
    .fixed-buttons {
        top: 200px;
    }
}
@media (max-height: 820px) and (min-width: 701px) {
    .button-up {
        top: 460px;
        bottom: unset;
    }
}
@media (max-height: 675px) {
    .fixed-buttons {
        top: 90px;
    }
}
@media (max-height: 675px) and (min-width: 701px) {
    .button-up {
        top: 350px;
    }
}
@media (max-height: 560px) and (min-width: 701px) {
    .button-up {
        top: 300px;
    }
}
@media (max-height: 510px) {
    .fixed-buttons {
        top: 57px;
    }
}
@media (max-height: 510px) and (min-width: 701px) {
    .button-up {
        top: 243px;
    }
}
@media (max-width: 700px), (max-height: 450px) {
    .fixed-buttons {
        background-color: #EF7F1A;
        left: 0;
        bottom: 0;
        top: unset;
        display: flex;
        /*justify-content: space-between;*/
        padding: 0 25px;
        z-index: 9999;
    }
    .fixed-buttons-block {
        margin: 0 auto;
        display: flex;
    }
    .fixed-btn {
        margin: 0;
        padding: 10px 28px;
        top: unset;
    }
    .fixed-btn:hover .fixed-btn-popup {
        display: none;
    }
}




.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    color: #fff;
    background-color: #EF7F1A;
    padding: 18px 120px 23px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    min-height: 43px;
}
.header__logo-and-menu {
    display: flex;
    flex-wrap: wrap;
}
.header__logo {
    margin-right: 40px;
    min-width: 180px;
    min-height: 40px;
}
.header__menu {
    display: flex;
    flex-wrap: wrap;
    margin: auto 0;
    /*width: 1128px;*/
    justify-content: space-between;
}
.header__menu-item {
    margin: 0 15px;
}
.header__menu-item a {
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: all .5s;
}
.header__menu-item a:before {
    content: '';
    position: absolute;
    transition: transform 0.5s ease;
    left: -15px;
    bottom: -10px;
    width: calc(100% + 30px);
    height: 3px;
    border-radius: 2px;
    background: #372960;
    transform: scaleX(0);
}
.header__menu-item.active a:before {
    transform: scaleX(1);
}
.header__menu-item:hover,
.header__menu-item.active {
    /*margin-right: 14px;*/
}
.header__menu-item:hover a,
.header__menu-item.active a {
    font-weight: 800;
    color: #372960;
    /*margin-right: -1px;*/
}
.header__phone {
    margin: auto 0;
    margin-left: 50px;
}
.header__phone a {
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    text-align: right;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: all .5s;
}
.header__phone i {
    color: #fff;
    transition: all .5s;
    margin-right: 10px;
}
.header__phone:hover a,
.header__phone:hover i {
    /*font-weight: 800;*/
    color: #372960;
    cursor: pointer;
}
.header__hidden-menu-btn {
    display: none;
    cursor: pointer;
    position: relative;
}
.header__hidden-menu {
    position: absolute;
    top: 26px;
    display: none;
    width: 200px;
    background-color: #fff;
}
.header__hidden-menu .mobile-menu__item {
    display: none;
}
/* 1890 1820 1720 1600 1450 1250*/
@media (max-width: 1860px) {
    .header__menu-item:nth-child(8) {
        display: none;
    }
    .header__hidden-menu .mobile-menu__item:nth-child(8) {
        display: block;
    }
    .header__hidden-menu-btn {
        display: block;
    }
}
@media (max-width: 1780px) {
    .header__menu-item:nth-child(7) {
        display: none;
    }
    .header__hidden-menu .mobile-menu__item:nth-child(7) {
        display: block;
    }
}
@media (max-width: 1675px) {
    .header__menu-item:nth-child(6) {
        display: none;
    }
    .header__hidden-menu .mobile-menu__item:nth-child(6) {
        display: block;
    }
}
@media (max-width: 1600px) {
    .header {
        padding: 18px 70px 23px;
    }
    .header__logo {
        margin-right: 30px;
    }
    .header__phone {
        margin-left: 45px;
    }
}
@media (max-width: 1400px) {
    .header__logo {
        margin-right: 20px;
    }
    .header__phone {
        margin-left: 30px;
    }
}
@media (max-width: 1370px) {
    .header__menu-item:nth-child(5) {
        display: none;
    }
    .header__hidden-menu .mobile-menu__item:nth-child(5) {
        display: block;
    }
}
@media (max-width: 1280px) {
    .header {
        padding-left: 85px;
        padding-right: 85px;
    }
    .header__logo {
        margin-right: 15px;
    }
}
/*@media (max-width: 1210px) {*/
/*    .header__logo-and-menu {*/
/*        flex: 0 0 100%;*/
/*        max-width: 100%;*/
/*    }*/
/*    .header__logo {*/
/*        margin-right: 0px;*/
/*        min-width: 215px;*/
/*        min-height: 50px;*/
/*    }*/
/*    .header__logo img {*/
/*        width: 215px;*/
/*    }*/
/*    .header__logo,*/
/*    .header__phone {*/
/*        flex: 0 0 20%;*/
/*        max-width: 20%;*/
/*        padding-right: 15px;*/
/*    }*/
/*    .header__menu {*/
/*        flex: 0 0 calc(80% - 30px);*/
/*        max-width: calc(80% - 30px);*/
/*        padding-left: 15px;*/
/*        justify-content: space-between;*/
/*    }*/
/*    .header__menu-item {*/
/*        margin: 0;*/
/*    }*/
/*    .header__phone a {*/
/*        font-size: 18px;*/
/*    }*/
/*    .header__phone i {*/
/*        display: none;*/
/*    }*/
/*}*/
@media (max-width: 1215px) {
    .header__menu-item:nth-child(4) {
        display: none;
    }
    .header__hidden-menu .mobile-menu__item:nth-child(4) {
        display: block;
    }
}
/*@media (max-width: 1120px) {*/
/*    .header {*/
/*        padding: 18px 20px 23px;*/
/*    }*/
/*}*/
@media (max-width: 1055px) {
    .header {
        display: none;
    }
    .header__phone {
        margin-left: 25px;
    }
    .header__phone a {
        font-size: 18px;
    }
    .header__phone i {
        display: inline-block;
    }
}
@media (max-width: 505px) {
    .header__phone a {
        font-size: 16px;
    }
    .header__phone i {
        display: none;
    }
}

.mobile-header-container {
    display: none;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1003;
    position: fixed;
}
.mobile-header {
    min-height: 35px;
    color: #fff;
    background-color: #EF7F1A;
    padding: 18px 47px 23px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.mobile-header__btn-and-logo {
    display: flex;
    flex-wrap: wrap;
}
.mobile-header__btn {
    margin: auto 0px;
    width: 16px;
    height: 14px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
.mobile-header__btn span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.mobile-header__btn span:nth-child(1) {
    top: 0px;
}
.mobile-header__btn span:nth-child(2) {
    top: 6px;
    /*left: 50%;*/
    /*width: 100%;*/
}
.mobile-header__btn span:nth-child(3) {
    top: 12px;
}
.mobile-header__btn.open span:nth-child(1) {
    top: 6px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}
.mobile-header__btn.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}
.mobile-header__btn.open span:nth-child(3) {
    top: 6px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.mobile-header__logo {
    margin: auto 0;
    margin-left: 25px;
}
.mobile-header__phone {
    flex: unset;
    max-width: unset;
    padding-right: 0px;
}
.mobile-header__phone i {
    margin-right: 17px;
}
.mobile-menu__list {
    position: relative;
    display: none;
    padding: 30px 0px;
    height: calc(100vh - 135px);
    overflow-y: auto;
    background-color: #fff;
}
.mobile-menu__item {
    padding: 15px 0px;
    transition: all .5s;
    text-align: center;
}
.mobile-menu__item:hover {
    background-color: #372960;
}
.mobile-menu__item a {
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #372960;
}
.mobile-menu__item:hover a {
    color: #fff;
}
@media (max-width: 1055px) {
    .mobile-header-container {
        display: block;
    }
}
@media (max-width: 768px) {
    .mobile-header {
        padding-left: 38px;
        padding-right: 38px;
    }
}
@media (max-width: 670px) {
    .mobile-menu__item:nth-child(5) {
        display: none;
    }
}
@media (max-width: 576px) {
    .mobile-header {
        padding-left: 33px;
        padding-right: 33px;
    }
}
@media (max-width: 500px) {
    .mobile-header {
        padding: 10px 20px;
    }
}
@media (max-width: 450px), (max-height: 510px) {
    .mobile-header {
        padding: 10px;
    }
    .mobile-header__logo {
        margin-left: 15px;
    }
    .mobile-header__logo img {
        width: 60px;
    }
}
@media (max-height: 510px) {
    .mobile-menu__list {
        height: calc(100vh - 114px);
    }
}



.main-section {
    position: relative;
    /*margin-bottom: 120px;*/
}
.main-section__bg img {
    display: none;
    width: 100%;
}
.main-section__bg .picture-1920 {
    display: block;
}
.main-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: 0px solid #372960;
    border-top: 594px solid #372960;
    border-right: 1276px solid transparent;
    border-bottom: 0px solid transparent;
}
.main-section:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 782px solid transparent;
    border-top: 0px solid transparent;
    border-right: 150px solid #fff;
    border-bottom: 354px solid #fff;
}
.main-section__left-corner {
    position: absolute;
    left: 120px;
    top: 55px;
}
.main-section__left-corner-text {
    margin-top: 20px;
    font-weight: 500;
    font-size: 35px;
    line-height: 25px;
    color: #FFFFFF;
}
@media (max-width: 1600px) {
    .main-section__left-corner {
        left: 70px;
    }
    .main-section__left-corner-text {
        margin-top: 10px;
        font-size: 30px;
    }
}
@media (max-width: 1440px) {
    .main-section__left-corner {
        top: 30px;
    }
    .main-section__left-corner-logo img {
        width: 600px;
    }
    .main-section__left-corner-text {
        margin-top: 20px;
        /*line-height: 30px;*/
    }
    .main-section:before {
        border-left: 0px solid #372960;
        border-top: 550px solid #372960;
        border-right: 1000px solid transparent;
        border-bottom: 0px solid transparent;
    }
    .main-section:after {
        border-left: 450px solid transparent;
        border-top: 0px solid transparent;
        border-right: 160px solid #fff;
        border-bottom: 273px solid #fff;
    }
}
@media (max-width: 1280px) {
    img.picture-1920 {
        display: none !important;
    }
    img.picture-1280 {
        display: block;
    }
    .main-section__left-corner {
        /*left: 85px;*/
    }
    .main-section__left-corner-logo img {
        width: 550px;
    }
    .main-section__left-corner-text {
        margin-top: 10px;
    }
    .main-section:before {
        border-left: 0px solid #372960;
        border-top: 478px solid #372960;
        border-right: 870px solid transparent;
        border-bottom: 0px solid transparent;
    }
    .main-section:after {
        border-left: 450px solid transparent;
        border-top: 0px solid transparent;
        border-right: 160px solid #fff;
        border-bottom: 300px solid #fff;
    }
}
@media (max-width: 1120px) {
    .main-section__left-corner {
        left: 20px;
    }
    .main-section__list {
        left: 20px;
        right: 20px;
    }
}
@media (max-width: 1024px) {
    .main-section__left-corner {
        left: 47px;
    }
    .main-section__left-corner-logo img {
        width: 400px;
    }
    .main-section__left-corner-text {
        font-size: 22px;
    }
    .main-section:before {
        border-left: 0px solid #372960;
        border-top: 379px solid #372960;
        border-right: 687px solid transparent;
        border-bottom: 0px solid transparent;
    }
    .main-section:after {
        border-left: 385px solid transparent;
        border-top: 0px solid transparent;
        border-right: 80px solid #fff;
        border-bottom: 206px solid #fff;
    }
}
@media (max-width: 768px) {
    img.picture-1280 {
        display: none !important;
    }
    img.picture-768 {
        display: block;
    }
    .main-section__left-corner {
        left: 38px;
    }
    .main-section__left-corner-logo img {
        width: 300px;
    }
    .main-section__left-corner-text {
        font-size: 18px;
        line-height: 20px;
    }
    .main-section:before {
        border-left: 0px solid #372960;
        border-top: 300px solid #372960;
        border-right: 550px solid transparent;
        border-bottom: 0px solid transparent;
    }
    .main-section:after {
        border-left: 385px solid transparent;
        border-top: 0px solid transparent;
        border-right: 80px solid #fff;
        border-bottom: 206px solid #fff;
    }
}
@media (max-width: 576px) {
    .main-section__left-corner {
        left: 33px;
    }
    .main-section__left-corner-logo img {
        width: 250px;
    }
    .main-section__left-corner-text {
        margin-top: 5px;
        font-size: 16px;
        width: 180px;
    }
    .main-section:before {
        border-left: 0px solid #372960;
        border-top: 250px solid #372960;
        border-right: 450px solid transparent;
        border-bottom: 0px solid transparent;
    }
    .main-section:after {
        border-left: 270px solid transparent;
        border-top: 0px solid transparent;
        border-right: 60px solid #fff;
        border-bottom: 146px solid #fff;
    }
}
@media (max-width: 500px) {
    img.picture-768 {
        display: none !important;
    }
    img.picture-300 {
        display: block;
    }
    .main-section:before {
        border-left: 0px solid #372960;
        border-top: 200px solid #372960;
        border-right: 450px solid transparent;
        border-bottom: 0px solid transparent;
    }
    .main-section:after {
        display: none;
    }
    .main-section__left-corner {
        top: 20px;
        left: 30px;
    }
    .main-section__left-corner-logo img {
        width: 175px;
    }
    .main-section__left-corner-text {
        width: 155px;
    }
    /*.main-section__item img {*/
    /*    width: 110px;*/
    /*}*/
}



.main-section__list-block {
    margin-top: -220px;
    display: flex;
}
.main-section__list {
    margin: 0 auto;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 1110px;
}
@media (max-width: 1280px) {
    .main-section__list-block {
        padding: 0 85px;
    }
    .main-section__list {
        width: 100%;
    }
}
@media (max-width: 1120px) {
    .main-section__list-block {
        margin-top: -120px;
    }
    .main-section__item > img {
        width: 150px;
    }
}
@media (max-width: 1024px) {
    .main-section__list-block {
        padding: 0 47px;
    }
}
@media (max-width: 900px) {
    .main-section__list-block {
        margin-top: -80px;
    }
    .main-section__item img {
        width: 130px;
    }
}
@media (max-width: 768px) {
    .main-section__list-block {
        padding: 0 38px;
    }
    .main-section__item img {
        width: 110px;
    }
}
@media (max-width: 660px) {
    .main-section__item img {
        width: 90px;
    }
}
@media (max-width: 576px) {
    .main-section__list-block {
        margin-top: -40px;
        padding: 0 33px;
    }
}
@media (max-width: 550px) {
    .main-section__list-block {
        margin-top: -140px;
        padding: 0 30px;
    }
    .main-section__list {
        justify-content: center;
    }
    .main-section__item {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 10px;
        text-align: center;
    }
    .main-section__item img {
        width: 150px;
    }
    /*.main-section__item:nth-child(-2n+4) {*/
    /*    margin-left: 20px;*/
    /*}*/
}
@media (max-width: 500px) {
    .main-section__list-block {
        margin-top: -260px;
    }
    /*.main-section__item:nth-child(-2n+3) {*/
    /*    text-align: left;*/
    /*}*/
    /*.main-section__item:nth-child(-2n+4) {*/
    /*    text-align: right;*/
    /*}*/
}
@media (max-width: 400px) {
    .main-section__item img {
        width: 110px;
    }
}



.brand-section {
    position: relative;
    /*margin-top: 120px;*/
    /*padding-bottom: 170px;*/
    padding: 125px 0px 170px;
}
.brand-section > div {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.brand-section__logo {
    font-weight: bold;
    font-size: 35px;
    line-height: 45px;
    text-align: center;
    color: #1F1B20;
}
.brand-section__bold-text {
    font-weight: bold;
    font-size: 35px;
    line-height: 45px;
    text-align: center;
    color: #1F1B20;
}
.brand-section__text {
    margin: 20px 0;
    font-weight: normal;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #1F1B20;
}
.brand-section__map {
    text-align: center;
}
.brand-section__map img {
    width: 100%;
}
@media (max-width: 1600px) {
    .brand-section__bold-text {
        font-size: 30px;
        line-height: 35px;
    }
}
@media (max-width: 1280px) {
    .brand-section {
        padding: 100px 85px;
    }
    .brand-section > div {
        width: 100%;
    }
}
@media (max-width: 1024px) {
    .brand-section {
        padding: 100px 47px;
    }
    .brand-section__logo img {
        width: 130px;
    }
    .brand-section__bold-text {
        font-size: 22px;
        line-height: 26px;
    }
    .brand-section__text {
        font-size: 16px;
        line-height: 26px;
    }
}
@media (max-width: 768px) {
    .brand-section {
        padding: 70px 38px 55px;
    }
}
@media (max-width: 576px) {
    .brand-section {
        padding: 50px 33px 70px;
    }
}
@media (max-width: 450px) {
    .brand-section {
        padding: 50px 30px;
    }
}



.tabs-section {
    background: #372960;
    padding: 134px 0 80px;
    position: relative;
    display: flex;
    /*margin-bottom: 334px;*/
}
.tabs-section__container {
    margin: 0 auto;
    width: 1110px;
    z-index: 3;
}
.tabs-section:after {
    content: '';
    position: absolute;
    bottom: -334px;
    right: 120px;
    width: 0;
    height: 0;
    border-left: 490px solid transparent;
    border-top: 334px solid #372960;
    border-right: 110px solid #372960;
    border-bottom: 0px solid transparent;
}
.tabs-section__smesitel {
    position: absolute;
    z-index: 1;
    bottom: -334px;
    right: 209px;
}
.tabs-section__tab-block {
    display: none;
}
.tabs-section__tab-block.active {
    display: block;
}
.tab-block__header {
    margin-bottom: 30px;
    font-weight: 800;
    font-size: 183px;
    line-height: 140px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}
.tab-block__text {
    max-width: 825px;
    font-weight: normal;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
}
.tabs-section__tab-navigation {
    margin-top: 30px;
}
.tab-navigation__item {
    width: 50px;
    height: 3px;
    background: #fff;
    margin: 0 15px;
    display: inline-block;
    transition: all .3s;
    cursor: pointer;
}
.tab-navigation__item:hover {
    width: 80px;
    height: 7px;
}
.tab-navigation__item:first-of-type {
    margin-left: 0px;
}
.tab-navigation__item:last-of-type {
    margin-right: 0px;
}
.tab-navigation__item.active {
    width: 80px;
    height: 7px;
    background: #EF7F1A;
}
@media (max-width: 1890px) {
    .tab-block__header {
        font-size: 150px;
        margin-bottom: 10px;
    }
}
@media (max-width: 1600px) {
    .tabs-section:after {
        right: 70px;
    }
    .tabs-section__smesitel {
        right: 140px;
        bottom: -347px;
    }
    .tab-block__header {
        font-size: 130px;
    }
}
@media (max-width: 1440px) {
    .tabs-section {
        padding: 155px 0 90px;
    }
    .tab-block__header {
        font-size: 100px;
        line-height: 120px;
    }
    .tab-block__text {
        max-width: 620px;
    }
}
@media (max-width: 1280px) {
    .tabs-section {
        padding-left: 85px;
        padding-right: 85px;
    }
    .tabs-section__container {
        width: 100%;
    }
    .tabs-section:after {
        right: 85px;
        bottom: -191px;
        border-left: 490px solid transparent;
        border-top: 334px solid #372960;
        border-right: 52px solid #372960;
        border-bottom: 0px solid transparent;
    }
    .tabs-section__smesitel {
        width: 718px;
        right: 136px;
        bottom: -180px;
    }
}
@media (max-width: 1024px) {
    .tabs-section {
        padding: 120px 47px 80px;
    }
    .tabs-section:after {
        right: 47px;
        bottom: -128px;
        z-index: -1;
        border-left: 187px solid transparent;
        border-top: 128px solid #372960;
        border-right: 64px solid #372960;
        border-bottom: 0px solid transparent;
    }
    .tabs-section__smesitel {
        width: 650px;
        right: 73px;
        bottom: -143px;
    }
    .tab-block__header {
        font-size: 85px;
        line-height: 100px;
    }
    .tab-block__text {
        max-width: 523px;
        font-size: 16px;
        line-height: 26px;
    }
    .tabs-section__tab-navigation {
        margin-top: 50px;
    }
}
@media (max-width: 860px) {
    .tab-block__text {
        max-width: 500px;
    }
}
@media (max-width: 768px) {
    .tabs-section {
        padding: 100px 38px 90px;
    }
    .tabs-section:after,
    .tabs-section__smesitel {
        display: none;
    }
    .tab-block__header {
        text-align: center;
        font-size: 110px;
        line-height: 130px;
    }
    .tab-block__text {
        max-width: none;
        width: 100%;
        text-align: center;
    }
    .tabs-section__tab-navigation {
        text-align: center;
    }
}
@media (max-width: 720px) {
    .tab-block__header {
        font-size: 80px;
        line-height: 110px;
        margin-bottom: 20px;
    }
}
@media (max-width: 576px) {
    .tabs-section {
        padding: 75px 33px 90px;
    }
}
@media (max-width: 540px) {
    .tab-block__header {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 30px;
    }
}
@media (max-width: 500px) {
    .tabs-section {
        padding: 75px 30px 90px;
    }
}



.catalog-section {
    padding: 350px 0 100px;
    display: flex;
}
.catalog-section-block {
    margin: 0 auto;
    display: grid;
    grid-template-areas: "catalog-section__list calalog-section__filter";
    width: 1110px;
}
.catalog-section__list {
    /*width: 74.3243%;*/
    width: 825px;
}
.list__header {
    display: flex;
    justify-content: space-between;
    padding: 11px 20px;
    border-top: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
    margin-bottom: 40px;
}
.header__styles-buttons {
    display: flex;
    width: 58px;
}
.mobile-filter-btn {
    display: none;
}
.header__styles-button {
    margin: auto 0;
    cursor: pointer;
}
.header__styles-button svg path {
    transition: all .3s;
}
.header__styles-button.active svg path,
.header__styles-button:hover svg path {
    fill: #EF7F1A;
}
.short-style-btn {
    margin-right: 15px;
}
.header__sort {
    display: flex;
    width: 295px;
}
.header__sort-label {
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    color: #1F1B20;
    margin: auto 20px auto 0;
}
.header__sort-select {
    position: relative;
}
.sort-select__current-value {
    display: flex;
    border: 1px solid #E6E6E6;
    /*font-family: FontAwesome, Gilroy;*/
    height: 26px;
    width: 138px;
    padding: 0 10px;

    appearance: none !important;
    background-position: right 13px center;
    background-image: url(../images/select-arrow-icon.png);
    background-repeat: no-repeat;
}
.sort-select__current-value-text {
    margin: auto 0;
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    color: #1F1B20;
}
.sort-select__list {
    display: none;
    position: absolute;
    top: 28px;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 3;
    border: 1px solid #E6E6E6;
    border-top: none;
}
.sort-select__list.active {
    display: block;
}
.sort-select__item {
    padding: 4px 10px;
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    color: #1F1B20;
}
.sort-select__item:hover {
    background-color: #F5F5F5;
}
.sort-select__item.active {
    background-color: #372960;
    color: #fff;
}


.catalog-section__list-filter {
    display: none;
}
/*.short-style-list {*/
/*    display: flex;*/
/*    flex-wrap: wrap;*/
/*}*/
.short-style-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(155px, 255px));
    column-gap: 30px;
    row-gap: 30px;
}
.product-list__item {
    background-color: #372960;
    position: relative;
    cursor: pointer;
}
.product-list__item.hidden-item {
    display: none;
}
.short-style-list .product-list__item {
    border-radius: 0px 0px 15px 15px;
}
/*.short-style-list .product-list__item {*/
/*    width: 255px;*/
/*}*/
/*.short-style-list .product-list__item:not(:nth-child(-n+3)) {*/
/*    margin-top: 30px;*/
/*}*/
/*.short-style-list .product-list__item:not(:nth-of-type(3n)) {*/
/*    margin-right: 30px;*/
/*}*/
.product__photo {
    border: 1px solid #E6E6E6;
    background-color: #fff;
}
.short-style-list .product__photo {
    border-bottom: none;
    display: flex;
}
.product__photo img {
    width: 100%;
    max-width: 300px;
    margin: auto;
}
.short-style-list .product__text {
    /*background-color: #372960;*/
    padding: 25px 20px 35px;
    border-radius: 0px 0px 15px 15px;
}
.full-style-list {
    display: grid;
    grid-template-columns: repeat(1, minmax(155px, 1fr));
    row-gap: 30px;
}
.full-style-list .product-list__item {
    display: flex;
    border-radius: 0px 15px 15px 0px;
}
/*.full-style-list .product-list__item:not(:nth-child(-n+1)) {*/
/*    margin-top: 30px;*/
/*}*/
.full-style-list .product__photo {
    width: 255px;
    border-right: none;
}
.full-style-list .product__text {
    width: 510px;
    /*background-color: #372960;*/
    border-radius: 0px 15px 15px 0px;
    padding: 45px 30px;
}
.product__article {
    font-weight: normal;
    font-size: 12px;
    line-height: 14px;
    color: #FFFFFF;
    margin-bottom: 8px;
}
.product__name {
    font-weight: bold;
    font-size: 20px;
    line-height: 18px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 10px;
    min-height: 36px;
}
.product__desc {
    font-weight: normal;
    font-size: 16px;
    line-height: 16px;
    color: #E5E5E5;
    /*margin-bottom: 30px;*/
}
.product__short-desc {
    /*min-height: 32px;*/
    margin-bottom: 30px;
}
.product__price {
    font-weight: bold;
    font-size: 20px;
    line-height: 18px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-top: 10px;
    position: absolute;
    bottom: 35px;
}
.short-style-list .product__full-desc,
.short-style-list .product__props-table,
.short-style-list .product__show-props-btn,
.full-style-list .product__short-desc {
    display: none;
}
.product__props-table {
    display: none;
    margin-top: 20px;
    width: 100%;
    border-spacing: 0px;
}
.product__props-table.active {
    display: table;
}
.props-table__prop .prop-header,
.props-table__prop .prop-text {
    padding: 11px 0 10px;
    border-bottom: 1px solid #C4C4C4;
}
.prop-header {
    font-weight: bold;
    font-size: 16px;
    line-height: 18px;
    color: #FFFFFF;
}
.prop-text {
    font-weight: normal;
    font-size: 16px;
    line-height: 16px;
    color: #E5E5E5;
    padding-left: 20px !important;
}
.product__show-props-btn {
    cursor: pointer;
    margin-top: 20px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-decoration-line: underline;
    color: #FFFFFF;
    margin-bottom: 30px;
}
.show-more-btn-block {
    display: flex;
    margin-top: 90px;
}
.show-more-btn-block > div {
    margin: 0 auto;
}
.show-more-btn {
    display: none;
    cursor: pointer;
    border-radius: 6px;
    border: none;
    font-weight: 800;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 20px 65px 19px 64px;
}
.hide-more-products {
    margin-top: 15px;
    display: none;
    cursor: pointer;
    border-radius: 6px;
    border: 2px solid #372960;
    font-weight: 800;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 17px 30px 16px;
    background-color: #fff;
    color: #372960;
    transition: all .3s;
}
.hide-more-products:active {
    background: rgba(55, 41, 96, 0.3);
}

.catalog-section__filter {
    /*width: 22.9729%;*/
    width: 255px;
    margin-left: 30px;
}
.mobile-filter__header {
    display: none;
    background-color: #EF7F1A;
    padding: 17px 10px;
}
.mobile-filter__reset-btn {
    position: absolute;
    left: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #FFFFFF;
}
.mobile-filter__text {
    font-weight: bold;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    color: #372960;
}
.mobile-filter__close-btn {
    position: absolute;
    right: 10px;
    top: 16px;
}
.mobile-filter__show-result-btn {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 46px;
    background-color: #372960;
    padding: 20px 27px 19px;
    font-weight: 800;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FFFFFF;
}
.filter-section {
    position: relative;
}
.filter-section__header {
    /*margin-bottom: 25px;*/
    background-color: #F5F5F5;
    border-radius: 5px 0px 0px 5px;
    border-left: 5px solid #EF7F1A;
    padding: 16px 18px;
    font-weight: bold;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.03em;
    color: #372960;
}
.filter-section__block {
    margin-top: 20px;
    margin-bottom: 30px;
}
.filter-category-item {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    transition: background-color .3s;
}
.filter-category-item.active {
    background-color: #372960;
}
.filter-category-item-name {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.03em;
    color: #1F1B20;
    transition: color .3s;
}
.filter-category-item-count {
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    text-align: right;
    letter-spacing: 0.03em;
    color: #372960;
    transition: color .3s;
}
.filter-category-item.active > div {
    color: #fff;
}


#filter-price,
#mobile-filter-price {
    cursor: pointer;
    height: 4px;
    background-color: #777777;
    border-radius: 0;
    border: none;
    padding: 0 3px;
    z-index: 0;
}
#filter-price .ui-slider-range,
#mobile-filter-price .ui-slider-range {
    background-color: #EF7F1A;
}
#filter-price .ui-slider-handle,
#mobile-filter-price .ui-slider-handle {
    cursor: pointer;
    border: 3px solid #EF7F1A;
    border-radius: 50%;
    background-color: #fff;
    width: 16px;
    height: 16px;
    top: -8px;
}
.filter-inputs {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    padding: 0 20px;
}
.filter-price-label {
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.03em;
    color: #1F1B20;
    margin: auto 1px 3px;
}
.filter-price-input {
    width: 44px;
    height: 20px;
    border: none;
    background-color: #F5F5F5;
    margin: 0 1px;
    padding: 2px 8px;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.03em;
    color: #1F1B20;
}
#min-price {
    margin-right: 10px;
}
#max-price {
    margin-left: 10px;
}
.filter-price-btn {
    display: none;
    width: 100%;
    background-color: #EF7F1A;
    border-radius: 5px;
    border: none;
    margin-top: 20px;
    padding: 2px 0;
    cursor: pointer;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    transition: background-color .3s;
}
.filter-price-btn:hover {
    background-color: #372960;
}
#filter-price .ui-slider-handle:focus,
.filter-price-input:focus,
.filter-price-btn:focus {
    outline: none;
}
.filter-tags {
    display: flex;
    flex-wrap: wrap;
}
.filter-hidden-tags-container {
    display: none;
}
.filter-hidden-tags-block {
    display: flex;
    flex-wrap: wrap;
}
.filter-tags-item {
    cursor: pointer;
    background-color: #FFFFFF;
    border: 2px solid #372960;
    padding: 10px 20px;
    margin-right: 15px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.03em;
    color: #372960;
    transition: all .3s;
    /*height: 16px;*/
}
.filter-tags-item.hidden-tag {
    display: none;
}
.filter-tags-item.active {
    background-color: #372960;
    color: #fff;
}
.filter-tags-more-btn {
    width: 100%;
    cursor: pointer;
    margin: 10px auto;
    border: 2px solid #EF7F1A;
    border-radius: 6px;
    font-weight: 800;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #EF7F1A;
    background-color: #fff;
    padding: 12px 30px;
    transition: all .3s;
}
.filter-tags-more-btn:active {
    background: rgba(239, 127, 26, 0.3);
}
.filter-tags-hide-btn {
    display: none;
    width: 100%;
    cursor: pointer;
    margin: 10px auto;
    border-radius: 6px;
    font-weight: 800;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #EF7F1A;
    background-color: #fff;
    padding: 12px 30px;
    transition: all .3s;
}
.filter-tags-hide-btn:active {
    color: #372960;
}
.mobile-list__header {
    display: none;
    justify-content: space-between;
    padding: 11px 20px;
    border-top: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
    order: 1;
    width: 100%;
    margin-bottom: 15px;
}
.mobile-filter__list {
    height: 415px;
    overflow-y: auto;
}
.filter-section__header-btn {
    display: none;
}
.filter-section__header-btn.active {
    transform: rotate(180deg);
}
.filter-section__header-btn svg {
    margin: auto 0;
}
@media(hover: hover) and (pointer: fine) {
    .filter-category-item:not(.active):hover {
        background-color: #F5F5F5;
    }
    .filter-category-item:not(.active):hover > div {
        color: #1F1B20;
    }
    .filter-tags-item:hover {
        background-color: #372960;
        color: #fff;
    }
    .hide-more-products:hover {
        background: rgba(55, 41, 96, 0.1);
        color: #372960;
    }
    .filter-tags-more-btn:hover {
        background: rgba(239, 127, 26, 0.1);
    }
    .filter-tags-hide-btn:hover {
        color: #372960;
    }
}

@media (max-width: 1600px) {
    .catalog-section {
        padding: 350px 0 150px;
    }
    .list__header {
        padding: 11px 10px;
    }
}
@media (max-width: 1440px) {
    .catalog-section {
        padding: 400px 0 195px;
    }
}
@media (max-width: 1280px) {
    .catalog-section {
        padding: 200px 85px 115px;
    }
    .catalog-section-block {
        width: 100%;
    }
    .catalog-section__list {
        width: 100%;
    }
    .catalog-section__filter {
        /*width: calc(100% - 30px);*/
        max-width: 255px;
    }
    /*.product__short-desc {*/
    /*    min-height: 48px;*/
    /*}*/
}
@media (max-width: 1070px) and (min-width: 1025px),
(max-width: 930px) and (min-width: 801px) {
    .short-style-list .product__text {
        padding: 10px 10px 15px;
    }
}
@media (max-width: 1024px) {
    .catalog-section {
        padding: 185px 47px 125px;
    }
    .catalog-section__list {
        width: 100%;
    }
    .list__header {
        padding: 11px 0px 11px 20px;
    }
    .short-style-list {
        grid-template-columns: repeat(3, minmax(100px, 210px));
    }
    .product__name {
        font-size: 16px;
        margin-bottom: 2px;
    }
    .product__desc {
        font-size: 14px;
    }
    .product__price {
        font-size: 16px;
        margin-top: 2px;
    }
    .catalog-section__filter {
        /*width: calc(100% - 30px);*/
        max-width: 210px;
    }
    .filter-inputs {
        padding: 0;
    }
    .filter-price-btn {
        margin-top: 20px;
    }
}
@media (max-width: 800px) {
    .short-style-list {
        grid-template-columns: repeat(2, minmax(150px, 1fr));
    }
}
@media (max-width: 768px) {
    .catalog-section {
        padding: 110px 38px 120px;
    }
}
@media (max-width: 700px) {
    .catalog-section-block {
        display: flex;
        flex-wrap: wrap;
    }
    .list__header {
        display: none;
    }
    .mobile-list__header {
        display: flex;

    }
    .catalog-section__filter {
        order: 2;
        width: 100%;
        max-width: unset;
        margin-left: 0;
    }
    .filter__list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        row-gap: 10px;
        column-gap: 30px;
        margin-bottom: 35px;
    }
    .catalog-section__list {
        order: 3;
    }
    .filter-section__header-btn {
        display: flex;
    }
    .filter-price-btn {
        height: 40px;
    }
    .tags-block {
        padding: 20px 0;
    }
    .filter-tags-item {
        text-align: left;
        line-height: 14px;
    }
}
@media (max-width: 700px) and (min-width: 501px) {
    .filter-section__header {
        display: flex;
        justify-content: space-between;
    }
    .filter-section__block {
        display: none;
        position: absolute;
        top: 45px;
        left: 0;
        right: 0;
        height: auto;
        max-height: 180px;
        overflow-y: auto;
        z-index: 2;
        background-color: #fff;
        border: 1px solid #E5E5E5;
        border-top: none;
        margin: 0;
        /*padding: 20px 0;*/
    }
    .filter-section__block.active {
        display: block;
    }
    .filter-price-block.active {
        padding: 20px;
    }
    .tags-block {
        padding-left: 22px;
        padding-right: 22px;
    }
}
@media (max-width: 576px) {
    .catalog-section {
        padding: 80px 33px;
    }
    .filter-section__block.filter-price-block {
        padding: 20px 12px;
    }
    #min-price,
    #max-price {
        margin: 0;
    }
}
@media (max-width: 500px) {
    .catalog-section {
        padding: 30px 30px 80px;
    }
    .mobile-list__header {
        border: none;
        padding: 0;
        margin-bottom: 30px;
    }
    .header__styles-button,
    .header__sort-label {
        display: none;
    }
    .mobile-filter-btn {
        display: block;
    }
    .header__sort {
        width: unset;
        min-width: 160px;
    }
    .sort-select__current-value {
        height: 40px;
    }
    .sort-select__list {
        top: 42px;
    }
    .sort-select__item {
        padding: 11px;
    }
    .show-more-btn-block > div {
        width: 100%;
    }
    .show-more-btn {
        padding: 20px;
    }

    .catalog-section__filter {
        display: none;
        position: fixed;
        top: 55px;
        padding-top: 2px;
        left: 0;
        right: 0;
        height: 100vh;
        z-index: 5;
        background-color: #fff;
    }
    .filter__list {
        display: block;
        height: calc(100vh - 210px);
        overflow-y: auto;
    }
    .filter-section {
        margin-top: 2px;
    }
    .filter-section__block {
        display: none;
        margin: 0;
    }
    .filter-category-item {
        background-color: #F5F5F5;
        padding: 13px 10px 14px;
        margin-top: 2px;
    }
    .filter-category-item > div {
        font-size: 16px;
        line-height: 18px;
    }
    .filter-tags {
        padding: 25px 10px;
    }
    .block-2 {
        padding: 25px 10px;
    }
    #mobile-filter-price {
        width: 95%;
        margin: 0 auto;
    }
    .filter-section__header {
        background-color: #E7E7E7;
        padding: 16px 10px;
        display: flex;
        justify-content: space-between;
        border: none;
        border-radius: 0;
    }
    .filter-section__header-text {
        font-weight: bold;
        font-size: 16px;
        line-height: 18px;
        letter-spacing: 0.03em;
        color: #372960;
    }
    .mobile-filter__header {
        display: block;
    }
    .mobile-filter__show-result-btn {
        display: block;
    }
    .filter-section__block.filter-price-block {
        padding: 20px;
    }
    .filter-section__header-btn {
        margin-right: 6px;
    }
}
@media (max-width: 425px) {
    .short-style-list {
        grid-template-columns: repeat(1, minmax(150px, 1fr));
    }
    .product__short-desc,
    .product__name {
        min-height: unset;
    }
}


.advantages-section {
    background-color: #F5F5F5;
    padding: 50px 120px 100px;
    position: relative;
}
.advantages-section:after {
    content: '';
    position: absolute;
    bottom: -312px;
    right: 120px;
    width: 0;
    height: 0;
    border-left: 450px solid transparent;
    border-top: 312px solid #F5F5F5;
    border-right: 70px solid #F5F5F5;
    border-bottom: 0px solid transparent;
}
.advantages-section__smesitel {
    position: absolute;
    z-index: 1;
    bottom: -245px;
    right: 228px;
}
.advantages-section__logo img {
    width: 100%;
}
.advantages-section__header {
    position: relative;
    margin-top: 5px;
    font-weight: bold;
    font-size: 40px;
    line-height: 40px;
    color: #372960;
    z-index: 3;
}
.advantages-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 1110px;
    margin-left: -15px;
    margin-top: 80px;
}
.advantages-item {
    display: flex;
    flex: 0 0 30%;
    max-width: 30%;
    margin: 0 15px 36px;
    z-index: 2;
}
.advantages-item__img {
    margin-right: 20px;
}
.mob-adv-img {
    display: none;
}
.advantages-item__header {
    margin: auto 0;
    font-weight: bold;
    font-size: 20px;
    line-height: 22px;
    color: #372960;
}
@media (max-width: 1770px) {
    .advantages-section__header {
        max-width: 455px;
    }
}
@media (max-width: 1600px) {
    .advantages-section {
        padding: 50px 70px 84px;
    }
    .advantages-section:after {
        right: 70px;
    }
    .advantages-section__smesitel {
        right: 178px;
    }
    .advantages-list {
        margin-top: 60px;
    }
}
@media (max-width: 1440px) {
    .advantages-section {
        padding: 50px 70px 35px;
    }
    .advantages-section:after {
        bottom: -250px;
    }
    .advantages-section__smesitel {
        bottom: -220px;
        right: 122px;
    }
    .advantages-section__header {
        font-size: 30px;
        line-height: 30px;
    }
    .advantages-list {
        width: 780px;
        margin-top: 80px;
    }
    .advantages-item {
        flex: 0 0 45%;
        max-width: 45%;
        margin: 0 15px 45px;
    }
}
@media (max-width: 1280px) {
    .advantages-section {
        padding: 55px 85px 35px;
    }
    .advantages-section:after {
        bottom: -120px;
        right: 85px;
    }
    .advantages-section__smesitel {
        bottom: -123px;
        right: 101px;
        width: 588px;
    }
    .advantages-section__header {
        margin-top: 15px;
    }
    .advantages-list {
        margin-top: 60px;
        width: 700px;
    }
    .adv-img {
        width: 60px;
    }
}
@media (max-width: 1110px) {
    .advantages-section__smesitel {
        width: 543px;
        bottom: -126px;
        right: 101px;
    }
}
@media (max-width: 1110px) and (min-width: 1025px) {
    .advantages-section__header {
        max-width: 320px;
    }
}
@media (max-width: 1050px) {
    .advantages-list {
        width: 630px;
    }
    .advantages-item {
        margin: 0 15px 25px;
    }
    .advantages-item__header {
        font-size: 18px;
        line-height: 20px;
    }
}
@media (max-width: 1024px) {
    .advantages-section {
        padding: 35px 47px 40px;
    }
    .advantages-section:after {
        bottom: -87px;
        right: 47px;
    }
    .advantages-section__smesitel {
        bottom: -92px;
        right: 70px;
        width: 480px;
    }
    .advantages-section__header {
        font-size: 22px;
    }
}
@media (max-width: 980px) {
    .advantages-section__smesitel {
        width: 430px;
    }
}
@media (max-width: 930px) {
    .advantages-section:after,
    .advantages-section__smesitel {
        display: none;
    }
    .advantages-list {
        width: calc(100% + 15px);
    }
}
@media (max-width: 768px) {
    .advantages-section {
        padding: 60px 38px 80px;
    }
    .advantages-list {
        margin-left: 0px;
        margin-top: 50px;
    }
    .advantages-item {
        margin: 0 15px 30px 0;
    }
    .advantages-item__img {
        margin-right: 10px;
    }
}
@media (max-width: 576px) {
    .advantages-section {
        padding: 60px 33px 80px;
    }
    .advantages-item {
        margin: 0 15px 40px 0;
    }
}
@media (max-width: 500px) {
    .advantages-section {
        padding: 35px 30px 0px;
    }
    .advantages-section__header {
        line-height: 24px;
        text-align: center;
        font-weight: 800;
    }
    .advantages-list {
        margin-top: 30px;
        width: 100%;
    }
    .advantages-item {
        display: block;
        flex: 0 0 100%;
        max-width: 100%;
        z-index: unset;
        margin: 0 auto 45px;
    }
    .advantages-item__img {
        margin-right: 0px;
    }
    .adv-img {
        display: none;
    }
    .mob-adv-img {
        display: block;
        margin: 0 auto;
    }
    .advantages-item__header {
        margin: 10px auto 0;
        text-align: center;
        width: 215px;
        font-weight: 800;
    }
}



.factors-section {
    padding: 225px 120px 0px;
}
.factors-section__header-1 {
    display: flex;
    flex-wrap: wrap;
    font-weight: bold;
    font-size: 45px;
    line-height: 45px;
    color: #372960;
    margin-bottom: 15px;
}
.factors-section__header-1 img {
    margin: auto 0;
    margin-left: 20px;
}
.factors-section__header-2 {
    font-weight: normal;
    font-size: 28px;
    line-height: 30px;
    color: #372960;
}
.factors-section__scheme {
    position: relative;
    margin-top: 90px;
}
.scheme-svg {
    width: 100%;
    height: 415px;
    display: none;
}
.scheme-svg-1 {
    display: block;
}

.scheme-item {
    position: absolute;
    display: flex;
}
.scheme-item__text {
    margin: auto 0;
    font-weight: bold;
    font-size: 19px;
    line-height: 20px;
    color: #FFFFFF;
}
.scheme-item-1 {
    left: 4.4047%;
    right: 69.9404%;
    top: 7px;
}
.scheme-item-2 {
    left: 36.9047%;
    right: 41.6666%;
    top: 7px;
}
.scheme-item-3 {
    left: 68.75%;
    right: 9.404%;
    top: 7px;
}
.scheme-item-4 {
    left: 68.75%;
    right: 9.404%;
    top: 36.6265%;
}
.scheme-item-5 {
    left: 36.9047%;
    right: 41.6666%;
    top: 36.6265%;
}
.scheme-item-6 {
    bottom: 65px;
    left: 4.4047%;
    width: 307px;
}
.scheme-item-6__formula-price {
    margin-top: 20px;
    font-weight: bold;
    font-size: 19px;
    line-height: 20px;
    color: #FFFFFF;
}
.scheme-item-6__formula-price-2 {
    display: none;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
    color: #FFFFFF;
}
.scheme-item-6__price {
    font-weight: bold;
    font-size: 37px;
    line-height: 37px;
    color: #FFFFFF;
}
.scheme-item-7 {
    /*border: 1px solid #000;*/
    /*padding: 12px 0;*/

    bottom: 22px;
    /*right: 7.9452%;*/
    left: 45.9589%;
    width: 675px;
}
.scheme-item-7__text {
    font-weight: 600;
    font-size: 19px;
    line-height: 20px;
    color: #372960;
}
@media (max-width: 1600px) {
    .factors-section {
        padding: 225px 70px 0px;
    }
}
@media (max-width: 1440px) {
    .factors-section {
        padding-top: 200px;
    }
    .factors-section__header-1 {
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 0px;
    }
    .factors-section__header-1 img {
        width: 115px;
        margin-left: 15px;
    }
    .factors-section__header-2 {
        font-size: 24px;
        line-height: 28px;
    }
    .factors-section__scheme {
        margin-top: 60px;
    }
    .scheme-item__text,
    .scheme-item-6__formula-price {
        font-size: 16px;
        line-height: 18px;
    }
    .scheme-item-7__text {
        font-size: 16px;
        line-height: 20px;
    }

    .scheme-item-1,
    .scheme-item-6 {
        left: 2.6115%;
    }
    .scheme-item-2,
    .scheme-item-5 {
        left: 35.1538%;
        right: 39.4615%;
    }
    .scheme-item-3,
    .scheme-item-4 {
        right: 3.8461%;
    }
    .scheme-item-7 {
        left: 44.5384%;
        width: 615px;
    }
}
@media (max-width: 1280px) {
    .factors-section {
        padding: 180px 85px 0px;
    }
    .scheme-item-6__price {
        font-size: 30px;
        line-height: 30px;
    }
    .scheme-item-7 {
        left: 40.5384%;
        width: 550px;
    }
}
@media (max-width: 1150px) {
    .scheme-item__icon img {
        width: 90px;
    }
    .scheme-item-1,
    .scheme-item-6 {
        left: 1.8367%;
        width: 250px;
    }
    .scheme-item-7 {
        left: 42.5384%;
        bottom: 12px;
        width: 430px;
    }
}
@media (max-width: 1024px) {
    .factors-section {
        padding: 100px 47px 0;
    }
    .factors-section__header-1 {
        font-size: 35px;
    }
    .factors-section__header-1 img {
        width: 100px;
    }
    .factors-section__header-2 {
        font-size: 22px;
    }
    .factors-section__scheme {
        margin-top: 40px;
    }
    .scheme-svg-1 {
        display: none;
    }
    .scheme-svg-2 {
        display: block;
    }
    .scheme-item__icon img {
        width: 70px;
    }

    .scheme-item-1,
    .scheme-item-2,
    .scheme-item-3 {
        top: 27px;
    }
    .scheme-item-4,
    .scheme-item-5 {
        top: 171px;
    }
    .scheme-item-6 {
        top: 222px;
    }
    .scheme-item-2,
    .scheme-item-5 {
        left: 36.9892%;
        right: 38.2795%;
    }
    .scheme-item-3,
    .scheme-item-4 {
        left: 70.8602%;
        right: 3.5161%;
    }
    .scheme-item-7 {
        left: 48.8924%;
        width: 425px;
    }
}
@media (max-width: 915px) {
    /*.scheme-svg-2 {*/
    /*    display: none;*/
    /*}*/
    /*.scheme-svg-3{*/
    /*    display: block;*/
    /*}*/
    .scheme-item {
        flex-wrap: wrap;
    }
    .scheme-item__text,
    .scheme-item-6__formula-price {
        font-size: 14px;
    }
    .scheme-item-6__price {
        font-size: 27px;
        line-height: 27px;
    }
    .scheme-item-7 {
        left: 49.8924%;
        bottom: 6px;
        width: 300px;
    }
    .scheme-item-7__text {
        font-size: 14px;
        line-height: 16px;
    }
    .scheme-item-1,
    .scheme-item-2,
    .scheme-item-3 {
        top: -2px;
    }
    .scheme-item-4,
    .scheme-item-5 {
        top: 149px;
    }
    .scheme-item-6 {
        top: 185px;
    }
    .scheme-item-1,
    .scheme-item-6 {
        left: 1.8367%;
        width: 220px;
    }
    .scheme-item-3,
    .scheme-item-4 {
        right: 10px;
    }
}
@media (max-width: 768px) {
    .factors-section {
        padding: 70px 38px 0;
    }
    .factors-section__header-1 {
        font-size: 30px;
    }
    .factors-section__scheme {
        margin-top: 50px;
    }
    .scheme-item__icon img {
        width: 50px;
    }
    .scheme-item-1,
    .scheme-item-2,
    .scheme-item-3 {
        top: 2px;
    }
    .scheme-item-1,
    .scheme-item-6 {
        left: 2%;
        width: 170px;
    }
    .scheme-item-2,
    .scheme-item-5 {
        left: 37%;
        right: 39%;
    }
}
@media (max-width: 670px) {
    .factors-section {
        display: none;
    }
    .factors-section__header-1 {
        font-size: 25px;
    }
    .factors-section__header-1 img {
        width: 87px;
    }
    .scheme-svg-2 {
        display: none;
    }
    .scheme-svg-4{
        display: block;
        height: 430px;
    }
    .scheme-item-6__formula-price {
        display: none;
    }
    .scheme-item-6__formula-price-2 {
        display: block;
    }
    .scheme-item-1,
    .scheme-item-6 {
        left: 1%;
        right: unset;
        width: 150px;
    }
    .scheme-item-6 {
        top: 149px;
        bottom: unset;
        width: 120px;
    }
    .scheme-item-7 {
        left: 41px;
        right: 41px;
        bottom: 18px;
        width: unset;
    }
    .scheme-item-3,
    .scheme-item-4 {
        right: 0.5%;
        left: unset;
        width: 130px;
    }
    .scheme-item-2,
    .scheme-item-5 {
        width: 100px;
    }
}
@media (max-width: 602px) {
    .scheme-item-7 {
        bottom: 10px;
    }
}
@media (max-width: 576px) {
    .factors-section {
        padding: 50px 33px 0;
    }
    .factors-section__header-1 {
        font-size: 22px;
    }
    .factors-section__header-1 img {
        width: 80px;
        margin-left: 5px;
    }
    .factors-section__scheme {
        margin-top: 40px;
    }
}
@media (max-width: 508px) {
    .scheme-item-7 {
        bottom: 4px;
    }
}
@media (max-width: 500px) {
    .factors-section {
        display: none;
    }
}
/*.scheme-line-1,*/
/*.scheme-line-2 {*/
/*    display: flex;*/
/*    width: 100%;*/
/*}*/
/*.scheme-line-1 img,*/
/*.scheme-line-2 img,*/
/*.scheme-line-3 img {*/
/*    width: 100%;*/
/*}*/
/*.scheme-line-2 {*/
/*    margin-top: -30px;*/
/*}*/
/*.scheme-line-3 {*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    right: 0;*/
/*    width: 60.7534%;*/
/*}*/


/*.scheme-line-1__item {*/
/*    */
/*}*/
/*.scheme-line-1__item img {*/
/*    width: 100%;*/
/*}*/
/*.scheme-line-1__item-1 {*/
/*    flex: 0 0 37%;*/
/*    max-width: 37%;*/
/*}*/
/*.scheme-line-1__item-2 {*/
/*    flex: 0 0 32%;*/
/*    max-width: 32%;*/
/*}*/
/*.scheme-line-1__item-3 {*/
/*    flex: 0 0 31%;*/
/*    max-width: 31%;*/
/*}*/
/*.scheme-line-1__item-2,*/
/*.scheme-line-1__item-3 {*/
/*    margin-left: -30px;*/
/*}*/



.marketplace-section {
    margin: 360px auto 80px;
    width: 1110px;
}
.marketplace-section__header {
    font-weight: bold;
    font-size: 35px;
    line-height: 45px;
    text-align: center;
    color: #1F1B20;
}
.marketplace-section__text {
    margin: 20px 0 70px;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #1F1B20;
}
.marketplace-section__icons {
    position: relative;
    width: 625px;
    margin: 0 auto;
    z-index: 1;
}
.marketplace-section__icons-mobile {
    display: none;
}
.icons__row-1 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.icons__row-2 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 25px 0 40px;
}
.icons__row-3 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
@media (max-width: 1700px) {
    .marketplace-section {
        width: 730px;
    }
}
@media (max-width: 1600px) {
    .marketplace-section {
        margin-top: 380px;
    }
    .marketplace-section__header {
        font-size: 30px;
        line-height: 35px;
    }
    .marketplace-section__text {
        margin-bottom: 45px;
    }
}
@media (max-width: 1320px) and (min-width: 1281px) {
    .marketplace-section,
    .marketplace-section__icons {
        width: 500px;
    }
}
@media (max-width: 1280px) {
    .marketplace-section {
        margin-top: 90px;
    }
    .marketplace-section__text {
        margin-top: 30px;
        margin-bottom: 215px;
    }
}
@media (max-width: 1170px) and (min-width: 1025px) {
    .marketplace-section__icons {
        width: 500px;
    }
}
@media (max-width: 1024px) and (min-width: 901px) {
    .marketplace-section__icons {
        width: 400px;
    }
}
@media (max-width: 1024px) {
    .marketplace-section {
        margin-top: 65px;
        margin-bottom: 50px;
    }
    .marketplace-section__header {
        font-size: 22px;
        line-height: 26px;
    }
    .marketplace-section__header img {
        width: 63px;
    }
    .marketplace-section__text {
        margin-bottom: 195px;
        font-size: 16px;
        line-height: 26px;
    }
}
@media (max-width: 900px) {
    .marketplace-section__text {
        margin-bottom: 50px;
    }
}
@media (max-width: 768px) {
    .marketplace-section {
        margin: 0;
        padding: 70px 38px 110px;
        width: unset;
    }
    .marketplace-section__icons {
        width: unset;
    }
}
@media (max-width: 576px) {
    .marketplace-section {
        padding: 60px 33px 110px;
    }
}
@media (max-width: 500px) {
    .marketplace-section {
        padding: 40px 30px 60px;
    }
    .marketplace-section__text {
        margin-top: 10px;
        margin-bottom: 40px;
    }
    .marketplace-section__icons {
        display: none;
    }
    .marketplace-section__icons-mobile {
        display: block;
    }
    .icons__icon {
        margin: 0 auto;
    }
    .icons__block {
        display: grid;
    }
    .icons__block:not(:last-child) {
        margin-bottom: 40px;
    }
    .icons__block > .icons__icon:first-of-type {
        margin-bottom: 25px;
    }
}



.parsing-section {
    position: relative;
    display: flex;
    background-color: #372960;
    padding: 55px 0 95px;
}
.parsing-section:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: 203px solid #F5F5F5;
    border-top: 0px solid transparent;
    border-right: 300px solid transparent;
    border-bottom: 352px solid #F5F5F5;
}
.parsing-section__smesitel-1 {
    position: absolute;
    bottom: 198px;
    left: 18px;
}
.parsing-section__smesitel-2 {
    position: absolute;
    display: none;
    bottom: 228px;
    left: 12px;
}
.parsing-section__smesitel-3 {
    position: absolute;
    display: none;
    bottom: 225px;
    left: 15px;
}
.parsing-section__smesitel-4 {
    position: absolute;
    display: none;
    bottom: 329px;
    left: 12px;
}
.parsing-section__container {
    margin: 0 auto;
    width: 850px;
    text-align: center;
}
.parsing-section__header {
    margin: 15px 0 30px;
    font-weight: bold;
    font-size: 35px;
    line-height: 45px;
    text-align: center;
    color: #FFFFFF;
}
.parsing-section__text {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #FFFFFF;
}
@media (max-width: 1600px) {
    .parsing-section {
        padding: 70px 0 85px;
    }
    .parsing-section__container {
        width: 700px;
    }
    .parsing-section__header {
        font-size: 30px;
        line-height: 35px;
    }
}
@media (max-width: 1440px) {
    .parsing-section__smesitel-1 {
        display: none;
    }
    .parsing-section__smesitel-2 {
        display: block;
    }
    .parsing-section:before {
        bottom: unset;
        top: 0;
        border-left: 132px solid #fff;
        border-top: 334px solid #fff;
        border-right: 224px solid transparent;
        border-bottom: 0px solid transparent;
    }
    .parsing-section__container {
        width: 920px;
    }
    .parsing-section__header img {
        width: 112px;
    }
    .parsing-section__header {
        font-size: 30px;
        line-height: 35px;
    }
}
@media (max-width: 1280px) {
    .parsing-section__smesitel-2 {
        display: none;
    }
    .parsing-section__smesitel-3 {
        display: block;
    }
    .parsing-section:before {
        top: -21px;
        border-left: 148px solid #fff;
        border-top: 281px solid #fff;
        border-right: 190px solid transparent;
        border-bottom: 0px solid transparent;
        z-index: 0;
    }
}
@media (max-width: 1200px) {
    .parsing-section__container {
        width: 730px;
    }
    .parsing-section__smesitel-3 {
        bottom: 282px;
        left: 16px;
    }
}
@media (max-width: 1024px) {
    .parsing-section__smesitel-3 {
        display: none;
    }
    .parsing-section__smesitel-4 {
        display: block;
    }
    .parsing-section:before {
        top: -148px;
        border-left: 109px solid #fff;
        border-top: 334px solid #fff;
        border-right: 229px solid transparent;
        border-bottom: 0px solid transparent;
    }
    .parsing-section__header {
        font-size: 22px;
        line-height: 26px;
    }
    .parsing-section__header img {
        width: 70px;
    }
    .parsing-section__text {
        font-size: 16px;
        line-height: 26px;
    }
}
@media (max-width: 1024px) and (min-width: 901px) {
    .icons__row-3 .icons__icon img {
        width: 135px;
    }
}
@media (max-width: 900px) {
    .parsing-section__smesitel-4,
    .parsing-section:before {
        display: none;
    }
}
@media (max-width: 768px) {
    .parsing-section {
        padding: 55px 38px 85px;
    }
}
@media (max-width: 576px) {
    .parsing-section {
        padding: 60px 33px 75px;
    }
}
@media (max-width: 500px) {
    .parsing-section {
        padding: 75px 30px 85px;
    }
}



.service-section {
    padding: 130px 0 70px;
    display: flex;
    background-color: #F5F5F5;
}
.service-section-container {
    margin: 0 auto;
    width: 930px;
    text-align: center;
}
.service-section__header {
    font-weight: bold;
    font-size: 55px;
    line-height: 42px;
    text-align: center;
    color: #372960;
    margin: 0 auto 55px;
    width: 550px;
}
.service-section__icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.icons__item {
    flex: 0 0 26%;
    max-width: 26%;
}
.item-text {
    margin-top: 30px;
    font-weight: 800;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    text-transform: uppercase;
    color: #372960;
    /*width: 255px;*/
}
.item-text a {
    color: #EF7F1A;
}
.service-section__buttons-container {
    display: flex;
}
.service-section__buttons {
    margin: 0 auto;
    display: flex;
}
.service-section__buttons > div + div {
    margin-left: 20px;
}
.service-section__button {
    border-radius: 30%;
    background-color: #EF7F1A;
    transition: all .3s;
    cursor: pointer;
    /*width: 45px;*/
    /*height: 45px;*/
}
.service-section__button:hover {
    background-color: #372960;
}
.service-inst-btn {
    padding: 12px 11px 7px 12px;
}
.service-vk-btn {
    padding: 15px 9px 11px 10px;
}
.service-youtube-btn {
    padding: 13px 9px 9px 9px;
}
.service-youtube-btn path + path {
    transition: all .3s;
}
.service-youtube-btn:hover path + path {
    fill: #372960;
}
.service-facebook-btn {
    padding: 10px 16px 6px 17px;
}
.service-section__image {
    margin-top: 70px;
}
@media (max-width: 1600px) {
    .service-section {
        padding: 85px 0;
    }
    .service-section__header {
        font-size: 45px;
        line-height: 40px;
        margin-bottom: 60px;
    }
    .service-section__image {
        margin-top: 90px;
    }
}
@media (max-width: 1440px) {
    .service-section {
        padding: 105px 0 55px;
    }
    .service-section__header {
        font-size: 40px;
        margin-bottom: 45px;
    }
    .service-section__image {
        margin-top: 80px;
    }
}
@media (max-width: 1280px) {
    .service-section {
        padding: 105px 0 95px;
    }
    .service-section__image {
        margin-top: 105px;
    }
    .service-section__image img {
        width: 680px;
    }
}
@media (max-width: 1024px) {
    .service-section {
        padding: 115px 47px 45px;
    }
    .service-section-container {
        width: 100%;
    }
    .service-section__header {
        font-size: 35px;
        line-height: 35px;
        width: 435px;
    }
    .item-icon img {
        width: 150px;
    }
    .item-text {
        margin-top: 25px;
        font-size: 16px;
        line-height: 24px;
    }
    .service-section__image {
        margin-top: 70px;
    }
    .service-section__image img {
        width: 600px;
    }
    .item-text .phone-link {
        display: block;
    }
    .service-section__icons {
        margin-bottom: 10px;
    }
}
@media (max-width: 768px) {
    .service-section {
        padding: 115px 38px 30px;
    }
    .item-icon img {
        width: 110px;
    }
    .item-text {
        font-size: 14px;
        line-height: 20px;
    }
    .service-section__image {
        margin-top: 50px;
    }
    .service-section__image img {
        width: 500px;
    }
}
@media (max-width: 576px) {
    .service-section {
        padding: 75px 33px;
    }
    .service-section__icons {
        justify-content: center;
    }
    .icons__item {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 30px;
    }
    .item-text {
        width: 210px;
        margin-left: auto;
        margin-right: auto;
    }
    .item-text .phone-link {
        display: inline-block;
    }
    .service-section__image {
        margin-top: 70px;
    }
    .service-section__image img {
        width: 450px;
    }
}
@media (max-width: 500px) {
    .service-section {
        padding: 85px 30px 30px;
    }
    .service-section__header {
        width: 100%;
    }
    .icons__item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .service-section__image {
        margin-top: 40px;
    }
    .service-section__image img {
        width: 240px;
    }
}



.footer {
    position: relative;
    display: flex;
    background-color: #F5F5F5;
    width: 100%;
}
.footer-bg {
    width: 100%;
    display: none;
}
.footer-bg-1 {
    display: block;
}
.contacts-block {
    position: absolute;
    width: 350px;
    left: 21.0416%;
    bottom: 45px;
}
.contacts-header {
    font-weight: 800;
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 30px;
}
.contacts-item {
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
}
.contacts-item svg {
    margin-right: 10px;
}
.footer-mobile {
    display: none;
    position: relative;
    background-color: #F5F5F5;
    width: 100%;
}
.footer-mobile-container {
    background-color: #EF7F1A;
    padding: 30px 0;
    display: flex;
}
.footer-mobile-logo {
    width: 100%;
    margin-bottom: -5px;
}
@media (max-width: 1600px) {
    .contacts-block {
        left: 15.25%;
        bottom: unset;
        top: 50px;
    }
}
@media (max-width: 1440px) {
    .contacts-block {
        left: 12.4305%;
        top: 40px;
    }
}
@media (max-width: 1280px) {
    .contacts-block {
        left: 7.8125%;
        top: 23%;
        bottom: 12%;
    }
    .contacts-header {
        margin-bottom: 15px;
    }
}
@media (max-width: 1024px) {
    .footer-bg-1 {
        display: none;
    }
    .footer-bg-2 {
        display: block;
    }
    .contacts-block {
        left: 47px;
        top: unset;
        bottom: 8.5163%;
        width: 310px;
    }
    .contacts-header {
        margin-bottom: 10px;
        font-size: 18px;
    }
    .contacts-item {
        font-size: 14px;
    }
}
@media (max-width: 890px) {
    .footer {
        display: none;
    }
    .footer-mobile {
        display: block;
    }
    .contacts-block {
        left: unset;
        top: unset;
        bottom: unset;
        position: relative;
        width: 310px;
        text-align: center;
        margin: 0 auto;
    }
}
@media (max-width: 576px) {
    .contacts-block {
        left: unset;
        top: unset;
        bottom: unset;
        position: relative;
        width: 200px;
        text-align: center;
        margin: 0 auto;
    }
}
@media (max-width: 500px) {
    .footer-mobile-container {
        padding: 30px;
    }
}


.product-modal__popup {
    width: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    background-color: transparent;
    /*z-index: 10000;*/
    padding: 0;
    /*width: 1110px;*/
    /*top: 10%;*/
    /*left: 30%;*/
    /*min-height: 620px;*/
    /*border-radius: 15px;*/
    /*padding: 0;*/
    /*background-color: transparent;*/
    /*z-index: 10000;*/

    /*left: 50%;*/
    /*top: 50%;*/
    /*transform: translate(-50%, -50%);*/
}
.product-modal__container {
    position: relative;
    width: 1110px;
    max-width: 100%;
    max-height: 100%;
    border-radius: 15px;
}
.product-modal__close-btn {
    top: 30px;
    right: 30px;
}
.product-modal__body {
    display: flex;
    /*flex-wrap: wrap;*/
}
.product-modal__gallery-block {
    box-sizing: border-box;
    /*flex: 0 0 43%;*/
    /*max-width: 43%;*/
    width: 475px;
    padding: 65px;
    background-color: #fff;
    border-radius: 15px 0px 0px 15px;
}
.product-modal__info-block {
    box-sizing: border-box;
    /*flex: 0 0 57%;*/
    /*max-width: 57%;*/
    width: 635px;
    background-color: #372960;
    padding: 45px 95px 45px 30px;
    border-radius: 0px 15px 15px 0px;
}
.product-modal__props-table {
    display: table;
}
.product-modal__name {
    min-height: unset;
}
.product-modal__price {
    font-weight: normal;
    font-size: 20px;
    line-height: 20px;
    color: #FFFFFF;
    position: static;
    margin-top: 40px;
    text-transform: unset;
}
.product-modal__price span {
    font-weight: bold;
    margin-left: 20px;
}
.one-image-slider-block {
    position: relative;
    /*height: 355px;*/
    margin-bottom: 15px;
}
.one-image-slider {
    /*margin-top: 20px;*/
    /*margin-bottom: 15px;*/
    /*padding: 0 120px;*/
}
.one-image-slider .slide {
    position: relative;
    width: 100%;
    height: 350px;
}
.one-image-slider .slide:after {
    content: '';
    display: block;
    padding-top: 70%;
}
.one-image-slider .slide-img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.slider__prev-btn {
    cursor: pointer;
    position: absolute;
    z-index: 1;
    left: -40px;
    width: 20px;
    height: 20px;
    border-radius: 90px;
    transform: scaleX(-1);
    transition: all .3s;
}
.slider__prev-btn-icon {
    position: inherit;
    right: 5px;
    top: 5px;
}
.slider__next-btn {
    cursor: pointer;
    position: absolute;
    z-index: 1;
    right: -40px;
    width: 20px;
    height: 20px;
    border-radius: 90px;
    transition: all .3s;
}
.slider__next-btn-icon {
    position: inherit;
    left: 7px;
    top: 5px;
}
.one-image-slider__prev-btn,
.one-image-slider__next-btn {
    top: 48%;
}
.images-slider-block {
    position: relative;
    /*height: 355px;*/
}
.images-slider {
    /*width: 100%;*/
    width: calc(100% + 10px);
    margin: 0 -5px;
    height: 112px;
}
.images-slider .slide {
    position: relative;
    /*width: 22% !important;*/
    margin: 0 4px;
    /*padding: 2px;*/
    height: 110px;
    border-radius: 5px;
    border: 1px solid #fff;
}
/*.images-slider .slide + .slide {*/
/*    margin-left: 10px;*/
/*}*/
.images-slider .slide:after {
    content: '';
    display: block;
    padding-top: 76%;
}
.images-slider .slide:focus {
    outline: none;
}
.images-slider .slide-img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    /*border: 1px solid #fff;*/
    border-radius: 5px;
}
.images-slider .slide.slick-current {
    border-color: #E5E5E5;
}
.images-slider__prev-btn,
.images-slider__next-btn {
    background-color: #372960;
    top: 40%;
}
.images-slider__prev-btn svg rect,
.images-slider__next-btn svg rect {
    fill: #fff;
}
.images-slider__prev-btn:hover,
.images-slider__next-btn:hover {
    /*background-color: #EF7F1A;*/
    opacity: 0.8;
}
.images-slider__prev-btn:active,
.images-slider__next-btn:active {
    /*background-color: #AFADB2;*/
    opacity: 0.6;
}
.one-image-slider-block .slick-arrow.slick-disabled,
.images-slider-block .slick-arrow.slick-disabled {
    display: block !important;
}
.one-image-slider-block .slick-arrow.slick-disabled,
.images-slider-block .slick-arrow.btn-disabled {
    background-color: #E0DFE1;
    cursor: unset;
}
.slide-youtube .slide-img {
    display: flex;
}
.slide-youtube .video-play-btn {
    margin: auto;
    filter: drop-shadow(0px 0px 19px rgba(0, 0, 0, 0.35));
    cursor: pointer;
}
.slide-youtube:hover .video-play-btn path {
    fill: #E0DFE1;
}
@media (max-width: 1200px) {
    .product-modal__container {
        width: 100%;
        border-radius: 0;
    }
    .product-modal__gallery-block {
        flex: 0 0 50%;
        max-width: 50%;
        border-radius: 0;
    }
    .product-modal__info-block {
        flex: 0 0 50%;
        max-width: 50%;
        border-radius: 0;
    }
}
@media (max-width: 1000px) {
    .product-modal__info-block {
        padding-right: 65px;
    }
}
@media (max-width: 700px) {
    .product-modal__popup {
        bottom: 46px;
    }
    .product-modal__body {
        flex-wrap: wrap;
    }
    .product-modal__container {
        overflow: auto;
    }
    .product-modal__gallery-block {
        flex: 0 0 100%;
        max-width: 100%;
        order: 2;
        padding: 45px 38px;
    }
    .product-modal__info-block {
        flex: 0 0 100%;
        max-width: 100%;
        order: 1;
        padding: 45px 38px;
    }
    .one-image-slider {
        padding: 0 20px;
    }
    .images-slider {
        /*width: calc(100% + 10px);*/
        /*margin: 0 -5px;*/
        /*height: 112px;*/
        padding: 0 20px;
    }
    .slider__prev-btn {
        left: -20px;
    }
    .slider__next-btn {
        right: -20px;
    }
}