body {
    margin: 0;
    padding: 0;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

h1,
h2,
h3 {
    margin: 0;
    padding: 0;
}

* {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.4;
    box-sizing: border-box;
    color: #000000;
    font-weight: 400;
}

blockquote {
    margin: 0px;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none !important;
}

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

input {
    outline: none;
    padding: 0;
}

.container::after {
    display: none;
}

.container::before {
    display: none;
}

.all-page-content-scroll {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.container {
    padding: 0;
    margin: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 1300px;

    width: calc(100% - 60px);
}

.fs14 {
    font-size: 14px;
}

.fs16 {
    font-size: 16px;
}

.fs20 {
    font-size: 20px;
}

.fs18 {
    font-size: 18px;
}

.fs23 {
    font-size: 23px;
}

.fs30 {
    font-size: 30px;
}

.fw4 {
    font-weight: 400;
}

.fw3 {
    font-weight: 300;
}

.fw6 {
    font-weight: 600;
}

.fw7 {
    font-weight: 700;
}

.header-top {
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
}

.header-logo {
    max-height: 91px;
}

.header-menu {
    margin-left: auto;
    margin-right: 26px;
}

.header-menu ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-menu ul li:not(:first-child) {
    margin-left: 20px;
}

.header-menu ul li:not(:last-child) {
    margin-right: 20px;
}

.header-menu ul li a {
    color: rgba(101, 101, 101, 1);

}

.header-phone {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 40px;
}

.header-phone-absolute-obv {
    position: absolute;
    right: 0px;
    top: calc(100% + 15px);
    /*display: none;*/
    z-index: -3;
    opacity: 0;
    pointer-events: none;
}

.header-phone-absolute {
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2);
    padding: 15px;
    padding-top: 20px;


    display: flex;

    background: #fff;
    z-index: 3;
    flex-direction: column;
    min-width: 330px;


    animation: slidein_2 0.3s 1 linear;
}

.header-phone-open:hover .header-phone-absolute-obv {
    display: flex;
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
}

.header-phone-open {
    transform: rotateX(0deg);

}

.header .zi4 {
    position: relative;
    z-index: 4;
}

.header-phone-open svg {
    transition: all 0.3s;
}

.header-phone-open:hover .header-phone-open-svg {
    transition: all 0.3s;
    transform: rotateX(180deg);
}

.header-phone-absolute-obv {
    margin-top: -30px;
    padding-top: 30px;
}

@keyframes slidein_2 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}

.header-phone-absolute-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-phone-open-phone-1ur {
    margin-right: 7px;
}

.header-phone-open {
    margin-left: 7px;
}

.header-phone a {
    color: #B58F52;

}

.header-phone-absolute-top a {
    color: rgba(0, 0, 0, 1);
}

.header-phone-absolute-center {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-top: 15px;
    margin-bottom: 15px;
    gap: 10px;
}

.header-phone-absolute-center a {
    color: #000;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 300;
}

.button-yellow {
    width: 100%;
    padding: 12px;
    background: #AD8444;
    border: 1px solid #AD8444;
    transition: all 0.3s;
    text-align: center;
    color: #fff;
    font-weight: 600;
}

.button-yellow:hover {
    background: #fff;
    color: #AD8444;
}

.header-search {
    line-height: 0;
    position: relative;
    display: flex;
    height: 30px;
    align-items: center;
    justify-content: center;
}

.header-search * {
    line-height: 0;
}

.header-search-icon-open {
    cursor: pointer;
}

.header-phone-open {
    cursor: pointer;
}

.header-search-input {
    position: absolute;
    width: 213px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0px;
    right: -230px;
    background: #fff;
    z-index: 4;
    display: flex;
    transition: all 0.4s;
}

.header-search-input input {
    width: 100%;
    height: 100%;
    padding: 7px;
    background: #fff;
    border: none;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.16);
    padding-right: 28px;
}

.header-search-input form {
    width: 100%;
    height: 100%;
    padding: 0;
    z-index: 2;
}

.header-search-input-none {
    width: 0px;
    overflow: hidden;

    opacity: 0;
}

.header-search-icon-close {
    z-index: 2;
    cursor: pointer;
    position: absolute;
    right: 13px;
    height: 30px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-search-icon-close svg {
    max-width: 14px;
}

.do-not-allocate {
    user-select: none;
}

.header-bottom__wrapper {
    position: relative;
}

/*дальше меню синее*/
.header-bottom__wrapper {
    width: 100%;
    padding-top: 27px;
    padding-bottom: 27px;
    background: rgba(55, 55, 55, .9);
    display: flex;

}

.header {
    width: 100%;
    position: relative;
}

.header-bottom__wrapper {
    width: 100%;

}

.header-bottom__wrapper ul {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 100px;
}

.header-bottom__wrapper a {
    color: #fff;
    font-weight: 600;
}

.header-bottom__wrapper a svg {
    margin-left: 5px;
}

.slider-top {
    width: 100%;
    position: relative;
}

body {
    min-height: 100px;
}

.slider-top .swiper-wrapper {
    padding-bottom: 93px
}

body .swiper-pagination-bullet {
    width: 16px;
    height: 16px;


    /* background: var(--swiper-pagination-bullet-inactive-color,#000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2); */
}

.btn-nostyle {
    border: none;
    margin: 0;
    padding: 0;
    background: transparent;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 22px;
    height: 22px;
}

.swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-pagination.swiper-pagination-horizontal * {
    transition: all 0.4s;
}

.swiper-pagination-bullet {
    background: #fff !important;
    border: 1px solid #AD8444 !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%) !important;
}

.button-prev-pos {
    position: absolute;
    top: calc(50% - 30px);
    left: 0;
    z-index: 2;
    line-height: 1;
}

.button-next-pos {
    position: absolute;
    top: calc(50% - 30px);
    right: 0;
    z-index: 2;
    line-height: 1;
}

.style-button * {
    transition: all 0.3s;
}

.style-button:hover rect {
    fill: #AD8444;
}


.style-button {
    cursor: pointer;
}

.style-button:hover path {
    stroke: #fff;
}

.slider-top-img {
    position: relative;
}

.slider-top-img-mob {
    position: relative;
}

.big-button {
    padding: 15px 20px;
    color: #fff;
    background: #4D4D4D;
    transition: all 0.3s;
    border: none;
}

.big-button:hover {
    background: rgba(77, 77, 77, 0.78);
}

.big-button-slider-top {
    position: absolute;
    top: calc(80% - 30px);
    top: 85%;
    /*left: calc((100vw - 1300px) / 2);*/
    right: 23.113%;
    z-index: 2;
    line-height: 1;
    border-radius: 10px 0px;
}


.style-button.button-prev-pos svg {
    box-shadow: -4px 4px 8px 0px rgba(0, 0, 0, 0.13);
}

.style-button.button-next-pos svg {
    box-shadow: -4px 4px 8px 0px rgba(0, 0, 0, 0.13);
}

@media(max-width:1360px) {
    .container {
        max-width: 1100px;
    }

    .header-menu ul li:not(:first-child) {
        margin-left: 8px;
    }

    .header-menu ul li:not(:last-child) {
        margin-right: 8px;
    }

    .header-logo {
        max-width: 160px;
    }

    .fs14 {
        font-size: 13px;
    }

    .fs16 {
        font-size: 15px;
    }

    .fs20 {
        font-size: 19px;
    }

    .fs18 {
        font-size: 17px;
    }

    .fs30 {
        font-size: 28px;
    }

    .button-prev-pos {
        left: calc((100vw - 1100px) / 2);
    }

    .button-next-pos {
        right: calc((100vw - 1100px) / 2);
    }

    .big-button-slider-top {
        /* left: calc((100vw - 1100px) / 2);
        left: 16.113%; */

    }
}

@media(max-width:1160px) {
    .container {
        max-width: 1000px;
    }

    .header-menu ul li {
        margin-left: 9px;
    }

    .header-menu ul li {
        margin-right: 9px;
    }

    .button-prev-pos {
        left: calc((100vw - 1000px) / 2);
    }

    .button-next-pos {
        right: calc((100vw - 1000px) / 2);
    }

    .big-button-slider-top {
        /* left: calc((100vw - 1000px) / 2);
        left: 16.113%; */
        top: 83%;
    }

    .header-menu ul {
        flex-wrap: wrap;
        padding-left: 15px;
        padding-right: 15px;
    }

    .header-search {
        margin-right: 17px;
    }

    .header-phone {
        flex-shrink: 0;
    }
}



@media(max-width:1060px) {
    .container {
        max-width: 800px;
    }

    .header-menu ul li {
        margin-top: 1px;
        margin-bottom: 1px;
        margin-left: 7px;
    }

    .header-menu ul li {
        margin-right: 7px;
    }

    .header-logo {
        max-width: 140px;
    }

    .fs14 {
        font-size: 12px;
    }

    .fs16 {
        font-size: 14px;
    }

    .fs20 {
        font-size: 18px;
    }

    .fs18 {
        font-size: 16px;
    }

    .fs30 {
        font-size: 26px;
    }

    .button-prev-pos {
        left: calc((100vw - 800px) / 2);
    }

    .button-next-pos {
        right: calc((100vw - 800px) / 2);
    }

    .big-button-slider-top {
        /* left: calc((100vw - 800px) / 2);
        left: 16.113%; */
        top: 82%;
    }

    .header-menu ul {
        flex-wrap: wrap;
        padding-left: 15px;
        padding-right: 15px;
    }

    .header-search {
        margin-right: 17px;
    }

    .header-menu ul {
        justify-content: center;
    }
}


@media(max-width:860px) {
    .container {
        max-width: 707px;
    }


    .header-logo {
        max-width: 125px;
    }

    .fs14 {
        font-size: 12px;
    }

    .fs16 {
        font-size: 14px;
    }

    .fs20 {
        font-size: 16px;
    }

    .fs18 {
        font-size: 15px;
    }

    .fs30 {
        font-size: 24px;
    }

    .button-prev-pos {
        left: calc((100vw - 707px) / 2);
    }

    .button-next-pos {
        right: calc((100vw - 707px) / 2);
    }

    .big-button-slider-top {
        /* left: calc((100vw - 707px) / 2);
        left: 16.113%; */
        padding: 10px 8px;
        font-size: 14px;
        top: 82%;
    }

    .header-menu ul {
        flex-wrap: wrap;
        padding-left: 10px;
        padding-right: 10px;
    }

    .header-search {
        margin-right: 17px;
    }

    .header-menu ul {
        justify-content: center;
    }
}

@media(max-width:867px) and (min-width:768px) {
    .header-search-input {
        right: -210px;
        width: 193px;
    }
}

@media(max-width:767px) {
    .header-menu {
        display: none;
    }

    .header-search {
        display: none;
    }

    .mob-menu {
        width: 100%;
        padding-bottom: 40px;
    }

    .mob-menu .header-search {
        display: flex;
    }

    .header-search-input {
        left: -230px;
        right: auto;
    }

    .header-search {
        margin-right: 0px;
        margin-left: auto;
    }

    .header-phone-open {
        display: none;
    }

    .header-bottom__wrapper {
        display: none;
    }

    .container {
        max-width: calc(100% - 30px);
        width: calc(100% - 30px);
    }

    .header-phone-open-phone-1ur {
        margin-right: 0px;
    }

    .fs16 {
        font-size: 16px;
    }

    .header-logo {
        max-width: 130px;
    }

    .header {
        min-height: 83px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-phone-absolute-center {
        justify-content: flex-start;
        width: 100%;
    }

    .header-phone-absolute-center a {
        margin-right: 28px;
    }

    .header-search {
        height: 34px;
    }

    .header-search-input {
        height: 34px;
    }

    .header-search-icon-close {
        height: 34px;
    }
}

.mob-menu-open {
    width: 27px;
    height: 18px;
    align-items: normal;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mob-menu-open div {
    width: 100%;
    height: 2px;
    background-color: #020202;
    cursor: pointer;
}

.mob-menu-mail {
    color: #000;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 300;
    font-size: 16px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.mob-menu .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.mob-menu-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.mob-menu-nav ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mob-menu-nav ul li {
    width: fit-content;
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.open-mob-menu-nav-2ur-div {
    align-items: center;
    justify-content: center;
    display: flex;
}

.mob-menu-nav ul li a {
    font-size: 18px;
    font-weight: 400;
    color: rgba(0, 0, 0, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mob-menu-nav ul li .open-mob-menu-nav-2ur {
    margin-left: 15px;
}

.mob-menu-nav-1 {
    padding-bottom: 30px;
}

.mob-menu-nav-2 {
    border-top: 1px solid rgba(214, 214, 214, 1);
    padding-top: 30px;
}

.mob-menu-nav-2ur {
    transition: all 0.3s;
    height: 0px;
    overflow: auto;
    display: block !important;
}

.mob-menu-nav ul li ul li a {
    font-size: 15px;
}

@media(min-width:768px) {

    .mob-menu-open {
        display: none;
    }

    .mob-menu {
        display: none;
    }
}

.open-mob-menu-nav-2ur {
    transition: all 0.3s;
    position: relative;
    top: 1px;
    user-select: none;
    transform: rotate(90deg);

    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;

}

.open-mob-menu-nav-2ur * {
    pointer-events: none;
}

.open-mob-menu-nav-2ur-active {
    transform: rotate(-90deg);
}

.big-button-blue {
    transition: all 0.3s;
    border: 1px solid #AD8444;
    border-radius: 10px 0px;
    background: #AD8444;
}

.big-button-blue:hover {
    background: none;
    color: #AD8444;
    border: 1px solid #AD8444;
}

.big-button-mob {
    width: 298px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 13px;
    padding-bottom: 13px;
    margin-top: 30px;
    font-size: 18px;
}

.mob-menu-open * {
    transition: all 0.1s;
    opacity: 1;
}

.mob-menu-open-active div:nth-child(1) {
    position: relative;
    transform: rotate(45deg);
    top: 8px;
}

.mob-menu-open-active div:nth-child(3) {
    position: relative;
    transform: rotate(-45deg);
    top: -8px;
}

.mob-menu-open-active div:nth-child(2) {
    opacity: 0;
}

@media(max-width:767px) {
    .swiper-slide .slider-top-img {
        display: none;
    }

    .slider-top .swiper-wrapper {
        padding-top: 0px;
    }

    .header-top {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

@media(min-width:768px) {
    .swiper-slide .slider-top-img-mob {
        display: none;
    }
}

.slider-top-img-mob img {
    width: 100%;
}

.slider-top-img-mob .big-button-slider-top {
    bottom: 26px;
    top: auto;
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

@media(max-width:767px) {
    .button-prev-pos {
        top: calc(100% - 39px);
        left: 15px;
        z-index: 11;
    }

    .button-next-pos {
        top: calc(100% - 39px);
        right: 15px;
        z-index: 11;
    }

    .swiper-container-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        bottom: 4px;
    }
}

@media(max-width:370px) {
    .header-logo {
        max-width: 120px;
    }

    .header-phone-open-phone-1ur {
        font-size: 15px;
    }
}

@media(max-width:340px) {
    .mob-menu-open {
        transform: scale(0.86);
        top: 1px;
        position: relative;
    }

    .header-logo {
        max-width: 110px;
    }

    .header-phone-open-phone-1ur {
        font-size: 14px;
    }
}

.title-section {
    font-weight: 700;
    font-size: 50px;
    color: #303030;
}

.title-section--yellow {
    color: #AD8444;
}

.slider-top {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-bottom: 20px;
}

section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.popular-categories {
    background: #f7f7f7;
}

.category-preview {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.category-preview-item-first {
    position: relative;
    width: calc(100% - 33.3333333%);
    background-image: url(../../frontend/img/group232.png);
    background-size: cover;
    transition: all 5s ease;
}

.category-preview-item-first-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.category-preview-item-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.category-preview-item {
    position: relative;
    width: calc(100% / 3);

    background-image: url(../../frontend/img/group231.png);
    background-size: cover;

}

.title-section-padding {
    padding-bottom: 30px;
}

.content-padding {
    margin-top: 40px;
    margin-bottom: 40px;
}

.category-preview-item-title {
    position: absolute;
    top: 30px;
    left: 0;
    font-weight: 600;
    font-size: 23px;
    text-transform: uppercase;
    color: #fff;
    box-sizing: border-box;
    padding: 10px 30px;
    border-image: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%) 20;
    border-width: 1px;
    /* border-image: linear-gradient(#f6b73c, #4d9f0c) 30; */
    border-style: solid;
    transition: all .3s ease;
}

/* 
.category-preview-item-title span {
    background: transparent;
    display: block;
    z-index: 3;
    position: relative;
    color: #fff;
} */

/* 
.category-preview-item-title::after {
    content: '';
    background-color: #025EBA;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

} */



.category-preview .category-preview-item-first:nth-child(1) {
    border-right: 6px solid #f7f7f7;
    border-bottom: 4px solid #f7f7f7;
}

.category-preview .category-preview-item:nth-child(2) {
    border-bottom: 4px solid rgb(247 247 247);
}

.category-preview .category-preview-item:nth-child(3n) {
    border-right: 6px solid rgb(247 247 247);
    border-bottom: 4px solid rgb(247 247 247);
}

.category-preview .category-preview-item:nth-child(3n + 1) {
    border-right: 6px solid rgb(247 247 247);
    border-bottom: 4px solid rgb(247 247 247);
}

.category-preview .category-preview-item:nth-child(3n + 2) {
    border-bottom: 4px solid rgb(247 247 247);
}

.category-preview .category-preview-item:nth-last-child(-n+3) {
    border-bottom: 4px solid rgb(247 247 247);
}

.category-preview .category-preview-item:nth-last-child(-n+3) .category-preview-item-img {
    position: relative;
    bottom: 0;
}


.category-preview-item-first-img img {
    max-height: 100%;
}

.category-preview-item-img img {
    max-height: 240px;
}

.category-preview-item-title {
    z-index: 2;
}



.category-preview-item-first-img {
    padding-left: 20px;
    padding-top: 20px;
}

.category-preview-item-img {
    padding-left: 20px;
    padding-top: 20px;
}

.category-preview-item {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

@media (max-width: 1360px) {
    .content-padding {
        margin-top: 35px;
        margin-bottom: 35px;
    }

    .title-section {
        font-size: 38px;
    }

    section {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .category-preview-item-title::after {
        width: 70px;
    }

    .category-preview-item-img {
        max-height: 300px;
        padding-top: 20px;
    }

    .category-preview-item-first-img {
        max-height: 300px;

    }

    .category-preview-item-title {
        top: 30px;
        left: 0px;
        font-size: 23px;
    }
}

@media (max-width: 1160px) {
    .content-padding {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .title-section {
        font-size: 36px;
    }

    section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .category-preview-item-title::after {
        width: 60px;
    }

    .category-preview-item-title {
        top: 25px;
        left: 0px;
        font-size: 21px;
    }

    .category-preview-item-img {
        max-height: 250px;
        padding-top: 40px;
    }
}

@media (max-width: 1060px) {
    .content-padding {
        margin-top: 27px;
        margin-bottom: 27px;
    }

    .title-section {
        font-size: 32px;
    }

    .title-section-padding {
        padding-bottom: 25px;
    }

    section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .category-preview-item-title {
        top: 20px;
        left: 0;
        font-size: 16px;
    }

    .category-preview-item-img {
        max-height: 240px;
        padding-top: 50px;
    }
}

@media (max-width: 767px) {
    .content-padding {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .title-section {
        font-size: 28px;
    }

    .title-section-padding {
        padding-bottom: 20px;
    }

    section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .category-preview-item-title {
        font-size: 18px;
    }

    .category-preview-item-img {
        max-height: 214px;
    }

    .category-preview-item-title::after {
        width: 50px;
    }
}


.popular-categories {
    width: 100%;
    position: relative;
}

.title-section {
    line-height: 1.14;
}

@media (max-width: 567px) {
    .popular-categories .container {
        width: 100%;
        max-width: 100%;
    }

    .popular-categories .title-section-padding {
        padding-bottom: 15px;
    }

    .popular-categories .button-prev-pos {
        top: calc(100% - 89px);
    }

    .popular-categories .button-next-pos {
        top: calc(100% - 89px);
    }

    .popular-categories .swiper-container-horizontal>.swiper-pagination-bullets,
    .popular-categories .swiper-pagination-custom,
    .popular-categories .swiper-pagination-fraction {
        bottom: 54px;
    }

    .popular-categories {
        padding-bottom: 90px;
    }

    .content-padding {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .slider-top {
        margin-bottom: 30px;
    }

    .category-preview-item-img {
        padding-left: 0px;
    }

    .category-preview-item-first-img {
        overflow: hidden;
    }

    .category-preview-item-first-img img {
        width: 177%;
        max-width: 200%;
        right: -77%;
        position: relative;
    }

    .category-preview-item-img {
        max-height: fit-content;
    }

    .category-preview-item-first-img {
        max-height: fit-content;
    }

    .category-preview-item-first {
        position: relative;
        width: 100%;
    }

    .swiper-categories-mob {
        background-color: #fff;
    }

    .category-preview-item-img {
        padding-top: 0px;
    }

    .category-preview-item-heigth-mob {
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
    }

    .category-preview-item-title {
        font-size: 22px;
    }

    section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.swiper * {
    user-select: none;
}


@media (max-width: 385px) {
    .category-preview-item-title {
        font-size: 17px;
        padding: 10px;
    }

}

@media (min-width: 767px) {
    .swiper-categories-mob {
        display: none;
    }

}

@media (max-width: 767px) {

    .category-preview {
        display: none;
    }

    .category-preview-item {
        position: relative;
        width: calc(100% / 1);
    }

    .category-preview-item-first {
        width: calc(100% / 1);
        display: block;
    }

    .category-preview-item-first-img {
        max-height: 360px;
    }
}

.product-catalog {
    width: 100%;
    position: relative;
}

.product-catalog-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-catalog-top .ssilka-style {
    position: relative;
    top: 2px;
}

.ssilka-style {
    transition: all 0.3s;
    padding: 14px 25px;
    display: flex;
    width: fit-content;
    width: 223px;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #4d4d4d;
    border: 1px solid #ad8444;
    color: #fff;
}

.ssilka-style:hover {
    background: #AD8444;
    color: #fff;
}

.product-preview {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    column-gap: 3px;
    row-gap: 20px;
}

.product-preview-item {
    border: 1px solid #B4B4B4;
    padding-right: 30px;
    padding-left: 30px;
    padding-top: 25px;
    padding-bottom: 25px;
    position: relative;
    width: 33%;
    flex-direction: column;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.product-preview-item-colors {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    margin-top: 7px;
    margin-bottom: 7px;
}

.product-preview-item-colors div {
    display: flex;
    cursor: pointer;
}

.product-preview-item-img {
    width: 100%;
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    margin-bottom: 20px;
}

.product-preview-item-title {
    margin-top: 5px;
    margin-bottom: 20px;
    width: 100%;
}

.product-preview-item-price {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-preview-item-main {
    font-weight: 600;
    color: #AD8444;
    font-size: 33px;
}

.product-preview-item-old s {
    color: #6F6F6F;
    font-size: 15px;
}

.product-preview-item-hit {
    z-index: 10;
    width: auto;
    height: 31px;
    padding-left: 5px;
    padding-right: 5px;
    color: #fff;
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #AD8444;
    font-size: 17px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
}

.decktop-menu-2ur {
    padding-top: 0px;
    margin-top: 0px;
    position: absolute;
    width: 300px;
    left: 0px;
    top: 11px;
    /* display: none; */
    transition: all 0.4s;
    z-index: -3;
    opacity: 0;
    pointer-events: none;
}

.decktop-menu-2ur ul {
    width: 100%;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.06);
    background: #fff;
    padding: 10px 15px;
    display: flex;
    margin-top: 40px;
    flex-direction: column;
    gap: 15px;
}

.header {
    z-index: 3;
}

.decktop-menu-2ur ul li a {
    color: #373737;
    font-size: 17px;
    font-weight: 400;
}

.header-bottom__wrapper ul li:hover .decktop-menu-2ur {
    display: flex;
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
    z-index: 10;
}

.header-bottom__wrapper ul li:hover svg {

    transform: rotateX(180deg);
}

.header-bottom__wrapper ul li {
    position: relative;
}


.product-preview-item-img {
    border: 1px solid #fff;
}


@media (max-width: 1360px) {
    .product-preview-item-main {
        font-size: 32px;
    }

    .product-preview-item-old s {
        font-size: 16px;
    }
}

@media (max-width: 1060px) {
    .product-preview-item-main {
        font-size: 24px;
    }

    .product-preview-item-old s {
        font-size: 15px;
    }

    .ssilka-style {
        padding: 12px 21px;
        width: 213px;
    }
}

.mob-menu-open {
    cursor: pointer;
}

@media (max-width: 860px) {
    .ssilka-style {
        padding: 10px 21px;
        width: 203px;
    }

    .product-preview-item-main {
        font-size: 21px;
    }

    .product-preview-item-old s {
        font-size: 14px;
    }

    .product-preview-item {
        padding-right: 20px;
        padding-left: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .product-preview-item {
        width: calc(100% / 2);
    }
}

@media (max-width: 567px) {
    .product-preview {
        display: none;
    }

    .product-catalog-top .ssilka-style {
        display: none;
    }

    .product-preview-item {
        width: calc(100% / 1);
    }

    .product-preview-item {
        border: 1px solid #B4B4B4;
    }

    .popular-categories .title-section {
        padding-left: 15px;
    }

    .ssilka-style-product-mob {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        left: 0px;
        bottom: 0px;
        position: absolute;
    }

    .ssilka-style-product-mob .ssilka-style {
        display: flex;
        padding: 14px 21px;
        width: 223px;
    }

    .ssilka-style-product-mob {
        bottom: -8px;
    }

    .product-catalog .swiper-pagination {
        display: none;
    }

    .product-preview-item-main {
        font-size: 27px;
        text-align: center;
    }

    .product-preview-item-old s {
        font-size: 17px;
    }

    .product-preview-item-title {
        font-size: 20px;
    }
}


.product-catalog .product-preview {
    margin-bottom: 0px;
}

.order-section {
    padding-top: 50px;
    padding-bottom: 110px;
    background-attachment: scroll;
    background-position: 50%;
    background-repeat: none;
    background-size: cover;
    -o-background-size: cover;
    position: relative;
    background: rgba(221, 191, 163, 0.13);
}

.order-section .container {
    display: flex;

    justify-content: center;
    flex-wrap: wrap;
}

.order-section-left {
    width: 57%;
    display: flex;
    flex-direction: column;
}

.order-section-rigth {
    width: 43%;
    display: flex;
    flex-direction: column;
    padding-top: ;
}



.order-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 110px;
    margin-bottom: 70px;
    position: relative;
    background-color: #fff;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 75px;
    padding-left: 30px;
}

.order-title {
    font-weight: 700;
    font-size: 42px;
    line-height: 128%;
    color: #303030;
}

input {
    outline: none;
    border: none;
    user-select: none;
}

button {
    user-select: none;
}

button {
    outline: none;
    border: none;
}

.order-form input {
    width: 240px;
    height: 53px;
    padding: 5px 22px;
    color: #373737;
    font-size: 20px;
    position: relative;
    z-index: 2;
    display: inline-flex;
    padding: 13px 25px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid #AD8444;
    background: #FFF;
}

.order-form button {
    transition: all 0.3s;
    width: 240px;
    height: 53px;
    padding: 5px 22px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: 1px solid #AD8444;
    background: #303030;
    position: relative;
    z-index: 2;
}



.order-form button:hover {
    background: rgba(2, 94, 186, 0);
    color: #AD8444;
    font-weight: 600;
    border: 1px solid #AD8444;
}

.order-form input::placeholder {
    color: #373737;
    font-size: 20px;
}


.order-section-rigth {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-end;
}

.order-section-rigth-item {
    width: 467px;
    padding-bottom: 35px;
    display: flex;
    gap: 55px;
    border-bottom: 1px solid rgba(182, 182, 182, 1)
}

.order-section-rigth-item-icon {
    flex-shrink: 0;
}

.order-section-rigth-item-text {
    display: flex;
    flex-direction: column;
}

.order-section-rigth-item-text-title {
    color: #4d4d4d;
}

.order-section-rigth-item-text-desc {
    color: #4d4d4d;
    padding-top: 10px;
}


@media (max-width: 1360px) {
    .order-section-rigth-item-icon img {
        max-width: 48px;
    }

    .order-section-rigth-item {
        width: 437px;
        padding-bottom: 33px;
        gap: 47px;
    }

}

@media (max-width: 1160px) {
    .order-section-rigth-item-icon img {
        max-width: 44px;
    }

    .order-section-rigth-item {
        width: 407px;
        padding-bottom: 30px;
        gap: 31px;
    }
}

.order-section-rigth-item {
    max-width: 95%;
}

@media (max-width: 1060px) {
    .order-section-rigth-item-icon img {
        max-width: 44px;
    }

    .order-section-rigth-item {
        width: 100%;
        padding-bottom: 25px;
        gap: 31px;
    }

    .order-section-left .title-section {
        max-width: 394px;
    }

    .order-section-rigth {
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .order-section-left {
        width: 100%;
    }

    .order-section-rigth {
        width: 100%;
    }

    .order-section-rigth-item {
        max-width: 100%;
    }

    .order-form {
        margin-bottom: 20px;
        margin-top: 64px;
    }

    .order-section {
        padding-top: 165px;
    }

    .order-section-left {
        order: 1;
    }

    .order-section .title-section {
        position: absolute;
        top: 40px;
    }

    .order-section-rigth-item {
        padding-bottom: 20px;
    }

    .order-section-rigth {
        gap: 20px;
    }

    .product-catalog .button-prev-pos {
        top: calc(100% - 89px);
    }

    .product-catalog .button-next-pos {
        top: calc(100% - 89px);
    }

    .product-catalog .swiper-container-horizontal>.swiper-pagination-bullets,
    .product-catalog .swiper-pagination-custom,
    .product-catalog .swiper-pagination-fraction {
        bottom: 54px;
    }

    .product-catalog {
        padding-bottom: 95px;
    }

    .product-catalog .ssilka-style-product-mob {
        bottom: 43px;
    }
}


.our-work-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.our-work-top .ssilka-style {
    position: relative;
    top: 2px;
}

.our-work-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 344px;
    gap: 2px;
}

.our-work-preview-item {
    background-attachment: scroll;
    background-position: 50%;
    background-repeat: none;
    background-size: cover;
    -o-background-size: cover;
    position: relative;
}

.our-work-preview-item.big-l {
    grid-column-start: 1;
    grid-column-end: 3;
}

.our-work-preview-item.big-r {
    grid-column-start: 2;
    grid-column-end: 4;
}

.our-work-preview-item-icon {
    position: absolute;
    right: 20px;
    top: 20px;
}

.moyka-section {
    background: radial-gradient(322.71% 100.19% at 40.94% 43.46%, rgb(255, 255, 255) 32.273662090301514%, rgb(180, 180, 180) 100%);
    position: relative;
    padding-bottom: 20px;
}

.moyka-section::after {
    content: '';
    background-image: url(../img/moyka.png);
    background-repeat: no-repeat;
    width: 60%;
    height: 932px;
    position: absolute;
    bottom: -123px;
    right: 0;
}

.moyka-wrapper {
    padding-top: 60px;
    padding-left: 24px;
}

.moyka-item {
    padding-top: 48px;
    padding-bottom: 60px;
    display: flex;
    gap: 32px;
    max-width: 437px;
    border-bottom: 1px solid #4d4d4d;
    position: relative;
    z-index: 2;
}

.moyka-item:last-child {
    border-bottom: none;
}

.moyka-item__num {
    min-width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #373737;
    color: #fff;
    font-weight: 800;
    font-size: 28px;
}

.moyka-item__title {
    font-weight: 600;
    font-size: 30px;
    color: #4d4d4d;
    margin-bottom: 5px;
}

.moyka-item__text {
    font-size: 18px;
    color: #4d4d4d;
}

@media (max-width: 1360px) {
    .our-work-preview-item {
        min-height: 314px;
    }
}

@media (max-width: 1160px) {
    .our-work-preview-item {
        min-height: 284px;
    }
}

@media (max-width: 1060px) {
    .our-work-preview-item {
        min-height: 224px;
    }
}

@media (max-width: 860px) {
    .our-work-preview-item {
        min-height: 194px;
    }
}

@media (max-width: 700px) {
    .our-work-preview-item {
        min-height: 174px;
    }

    .our-work-preview {
        gap: 15px;
    }

    .our-work-preview-item {
        width: calc((100% / 3) - 10px);
    }

    .our-work-preview-item-icon {
        right: 15px;
        top: 15px;
    }
}

.our-work {
    position: relative;
}

@media (max-width: 650px) {
    .our-work-preview-item {
        min-height: 154px;
    }
}

@media (max-width: 567px) {
    .our-work-top .ssilka-style {
        display: none;
    }

    .our-work .button-prev-pos {
        top: calc(100% - 89px);
    }

    .our-work .button-next-pos {
        top: calc(100% - 89px);
    }

    .our-work .swiper-container-horizontal>.swiper-pagination-bullets,
    .our-work .swiper-pagination-custom,
    .our-work .swiper-pagination-fraction {
        bottom: 54px;
    }

    .our-work {
        padding-bottom: 95px;
    }

    .our-work .ssilka-style-product-mob {
        bottom: 43px;
    }

    .our-work-preview-decktop {
        display: none;
    }

    .our-work .swiper-pagination {
        display: none;
    }

    .our-work-preview-item {
        width: 100%;
        height: fit-content;
    }

    .our-work-preview-item img {
        width: 100%;

    }

    .our-work .container {
        width: 100%;
        max-width: 100%;
    }

    .our-work .title-section {
        padding-left: 15px;
    }
}


.product-preview-item-fon-hover {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.72);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s;
}

/* .product-preview-item-fon-hover .ssilka-style{
    background-color: rgba(2, 94, 186, 1);
    color: #fff;
} */
.product-preview-item:hover .product-preview-item-fon-hover {
    z-index: 1;
    opacity: 1;
    display: none;
}

.product-preview-item-img {
    transition: all .3s ease;
}

.product-preview-item:hover .product-preview-item-img {
    transform: scale(1.12);
}



.swiper-categories-mob .product-preview-item-fon-hover {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.62);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    cursor: pointer;
    opacity: 0 !important;
    transition: all 0.3s;
}


.our-work-preview-item-hover-fon {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.62);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s;
}

.our-work-preview-item:hover .our-work-preview-item-hover-fon {
    opacity: 1;
}

.our-work-preview-item-hover-fon span {
    max-width: calc(100% - 30px);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #000;
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .our-work-preview-item:hover .our-work-preview-item-hover-fon {
        opacity: 0;
    }
}

.fancybox__container *,
.fancybox__container::after,
.fancybox__container::before {
    color: #fff
}


/*22 05 2023*/


.work-map {
    overflow: hidden;
    width: 100%;
    position: relative;
    background: rgba(245, 245, 245, 1);
    padding-top: 60px;
    padding-bottom: 50px;
}

.work-map-fon-left {
    background: linear-gradient(90deg, #FFFFFF 43.21%, #FFFFFF 69.58%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 45%;
    z-index: 1;
}

.work-map .container {
    z-index: 2;
    position: relative;
}

.work-map-content {
    width: 100%;
    position: relative;
    margin-top: 0px;
    padding-top: 0px;
    display: flex;
    flex-wrap: wrap;
    z-index: 2;
}

.work-map-content-car {
    width: 100%;
    margin-left: -28%;
    display: flex;
    align-items: flex-end;
    margin-bottom: -11.5%;
    justify-content: center;
    padding-right: 10px;
    width: 920px;
}

.work-map-content-map {
    width: 50%;
    padding-right: 20px;
    padding-left: 40px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-map-content-elements {
    width: 100%;
    left: 0px;
    top: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    position: absolute;
    margin-left: -20px;
}

.work-map-content-element {
    min-width: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.work-map-content-element-text {
    font-size: 17px;
}

@media (max-width: 1632px) {
    .work-map-content-elements {
        gap: 10px;
    }
}

@media (max-width: 1600px) {
    .work-map-content-element {
        min-width: 135px;
    }

    .work-map-content-element-img {
        max-width: 67px;
    }

    .work-map-content-element-text {
        font-size: 15px;
    }
}

@media (max-width: 1510px) {
    .work-map-content-car {
        width: 100%;
    }

    .work-map-content-map {
        width: 49%;
    }
}

@media (max-width: 1460px) {
    .work-map-content-car {
        width: 100%;
    }

    .work-map-content-map {
        width: 47%;
    }
}

@media (max-width: 1400px) {

    .work-map-content-car {
        width: 100%;
    }

    .work-map-content-map {
        width: 46%;
    }
}

@media (max-width: 1320px) {
    .work-map-content-car {
        width: 100%;
    }

    .work-map-content-map {
        width: 46%;
    }

    .work-map-content-element-text {
        font-size: 14px;
    }

    .work-map-content-element {
        min-width: 128px;
    }

    .work-map-content-elements {
        gap: 5px;
    }
}

@media (max-width: 1240px) {
    .work-map-content-elements {
        top: 25px;
    }
}

@media (max-width: 1140px) {
    .work-map-content-elements {
        top: 20px;
    }

    .work-map-content-elements {
        margin-left: -10px;
    }
}

@media (min-width: 1081px) {
    .work-map-content-car-img-min {
        display: none;
    }

    .work-map-content-car-img-cr {
        display: none;
    }
}

@media (max-width: 1080px) {
    .work-map-content-car-img-max {
        display: none;
    }

    .work-map-content-car-img-cr {
        display: flex;
    }

    .work-map-content-car-img-min {
        display: none;
    }
}

@media (max-width: 767px) {
    .work-map-content-car-img-cr {
        display: none;
    }

    .work-map-content-car-img-min {
        display: flex;
    }
}

@media (max-width: 1080px) {
    .work-map-content-element-img {
        max-width: 89px;
    }

    .work-map-content {
        margin-top: 20px;
    }

    .work-map {
        padding-bottom: 10px;
    }

    .work-map-content-elements {
        margin-left: 0px;
    }

    .work-map-content-elements {
        gap: 1px;
    }

    .work-map-content-element-text {
        position: relative;
        left: -7px;
    }

    .work-map-content-car {
        padding-bottom: 14%;
        width: 94%;
        margin-top: -20%;
        z-index: 3;
        margin-top: -14%;
        left: 0px;
        margin-left: -12%;
        position: relative;
        order: -1;
        padding-right: 0px;
        padding-left: 0px;
    }

    .work-map-fon-left {
        display: none;
    }

    .work-map-content-elements {
        order: 0;
        order: -3;
        margin-top: 10px;
        margin-bottom: 40px;
        position: relative;
        left: 0;
        top: 0;
        padding-right: 0px;
        padding-left: 0px;
    }

    .work-map-content-map {
        width: 100%;
        left: 0px;
        position: relative;
        order: -2;
        padding-right: 0px;
        padding-left: 0px;
    }

    .work-map-content-map img {
        width: 100%;
    }
}

@media (max-width: 400px) {
    .work-map-content-element {
        min-width: 110px;
    }

    .work-map-content-element-text {
        font-size: 13px;
    }

    .work-map-content-element-img {
        max-width: 79px;
    }

    .work-map-content-element-text {
        position: relative;
        left: 0px;
    }
}

@media (max-width: 345px) {
    .work-map-content-element {
        min-width: 104px;
    }

    .work-map-content-element-text {
        font-size: 12px;
    }

    .work-map-content-element-img {
        max-width: 73px;
    }
}

@media (max-width: 360px) {
    .ssilka-style-product-mob .ssilka-style {
        width: 191px;
    }
}

.about-company {
    padding-top: 0px;
    padding-bottom: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about-company-img {
    width: 43%;
    display: flex;
    align-items: center;
    justify-content: end;
    height: fit-content;
}

.about-company-text {
    width: 55%;
    padding-left: 37px;
    padding-top: 50px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: calc((100vw - 1300px) / 2);
}

.about-company-text-p {
    font-size: 19px;
    line-height: 1.5;
    max-width: 700px;
    max-width: 100%;
    width: 100%;

}

.about-company .title-section {
    text-align: center;
}

.about-company-text-p:not(:first-child) {
    margin-top: 15px;
}



.ul-stule-d {
    margin-top: 7px;
    margin-bottom: 7px;
    width: 100%;
}

.ul-stule-d li {

    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 400;
    position: relative;
    color: #343434;
    padding-left: 10px;
    margin-top: 4px;
    margin-bottom: 4px;
    padding-left: 13px;
    max-width: calc(100% - 10px);
    left: 10px;
}

.ul-stule-d li::before {
    content: url(../img/li.svg);
    position: absolute;
    left: -10px;
    top: 0;
}


@media (max-width: 1360px) {
    .about-company-text-p {

        padding-right: calc((100vw - 1100px) / 2);
    }

    .ul-stule-d {

        padding-right: calc((100vw - 1100px) / 2);
    }

    .about-company-text-p {
        font-size: 18px;
    }

    .about-company-text {
        padding-left: 30px;
    }

    .about-company-img {
        padding-right: 10px;
    }
}

@media (max-width: 1160px) {
    .about-company-text {
        padding-left: 20px;
    }

    .about-company-text-p {
        font-size: 17px;
    }

    .ul-stule-d li {
        font-size: 14px;
    }

    .about-company-text-p:not(:first-child) {
        margin-top: 10px;
    }

    .about-company-text-p {
        padding-right: calc((100vw - 1000px) / 2);
    }

    .ul-stule-d {
        padding-right: calc((100vw - 1000px) / 2);
    }
}


@media (max-width: 1060px) {
    .about-company-text-p {
        font-size: 17px;
    }

    .ul-stule-d li {
        font-size: 14px;
    }

    .about-company-text-p {
        padding-right: calc((100vw - 800px) / 2);
    }

    .ul-stule-d {
        padding-right: calc((100vw - 800px) / 2);
    }

    .ul-stule-d {
        margin-top: 3px;
        margin-bottom: 7px;
    }
}


@media (max-width: 767px) {
    .ul-stule-d li {
        font-size: 15px;
    }

    .about-company-text {
        width: 100%;
    }

    .about-company-text {
        padding-right: 15px;
        padding-left: 15px;
    }

    .about-company-img {
        padding-left: 0px;
        padding-right: 0px;
        width: 100%;
    }

    .about-company {
        padding-top: 115px;
        position: relative;
    }

    .about-company .title-section {
        top: 40px;
        position: absolute;
        left: 15px;
    }

    .about-company-text {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .ul-stule-d li {
        margin-top: 8px;
        margin-bottom: 8px;
    }
}


.advantages {
    width: 100%;
    position: relative;

    background-attachment: scroll;
    background-position: 50%;
    background-repeat: none;
    background-size: cover;
    -o-background-size: cover;
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
}

.title-fff {
    font-weight: 700;
    font-size: 30px;
    color: #4D4D4D;
    padding-left: 120px;
}

.advantages .title-section {
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 30px;
}

.advantages-elements {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 8px;
    max-width: 1190px;
    margin: 0 auto;
}

.advantages-element {
    display: flex;
    align-items: flex-start;
    margin-top: 8px;
    margin-bottom: 8px;
    background: linear-gradient(0deg, rgba(77, 77, 77, 0.72) 0%, rgba(77, 77, 77, 0.72) 100%), rgba(0, 0, 0, 0.44);
    backdrop-filter: blur(19px);
    padding: 15px;
}

.advantages-element:last-child {
    grid-column-start: 1;
    grid-column-end: 3;
}

.advantages-element-order {
    position: relative;
    width: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.advantages-element-text {
    width: 100%;
    font-size: 19px;
    color: #fff;
    font-weight: 400;
    color: #DEDEDE;
    padding-left: 25px;
}

.advantages-element-order-number {
    font-weight: 800;
    color: rgba(77, 77, 77, 0.72);
    z-index: 2;
    position: relative;
    top: 6px;
    left: 12px;
    font-size: 54px;
    -webkit-text-stroke: 1px #FFFFFF;
    text-stroke: 1px #FFFFFF;
}

.advantages-element-order-img {
    position: absolute;
    display: none;
}

@media (max-width: 1360px) {
    .advantages-element-text {
        font-size: 18px;
    }

    .title-fff {
        font-size: 28px;
    }
}

@media (max-width: 1060px) {
    .advantages-element-text {
        font-size: 17px;
    }

    .title-fff {
        font-size: 26px;
    }
}

.advantages-elements-fon-mob {
    display: none;
}

.advantages-elements-fon-mob-2 {
    display: none;
}

@media (max-width: 767px) {
    .advantages-element-text {
        font-size: 17px;
    }

    .title-fff {
        font-size: 26px;
    }

    .advantages-element {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .advantages-element {
        flex-wrap: wrap;
    }

    .advantages-element-text {
        padding-left: 0px;
        padding-top: 5px;
        position: relative;
        top: -33px;
    }

    .advantages-element-order {
        position: relative;
        top: -33px;
    }

    .advantages-element:last-child {
        padding-bottom: 0px;
    }

    .advantages-elements {
        margin-top: 15px;
    }

    .advantages-elements {
        position: relative;
    }

    .advantages-element {
        /* background: none;
        padding-left: 0px;
        padding-right: 0px; */
        margin-bottom: 20px;
    }

    .advantages-elements-fon-mob {
        position: absolute;
        top: 0px;
        left: 0px;
        height: calc(100% - 7px);
        width: calc(100% + 60px);
        left: -30px;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.44)), linear-gradient(0deg, rgba(2, 94, 186, 0.13), rgba(2, 94, 186, 0.13));
        display: flex;
    }

    .advantages {
        padding-bottom: 33px;
    }

    .advantages-elements-fon-mob-2 {
        display: flex;
        position: absolute;
        top: 0px;
        left: -15px;
    }
}

.reviews {
    position: relative;

    padding-bottom: 0px;
}

.swiper3 {
    width: calc(100% - 26px);
    position: relative;
    left: 11px;

    padding-bottom: 80px;
}

.swiper3-container {
    width: calc(100% + 22px);
    position: relative;
    left: -11px;
    overflow: hidden;
}

.reviews-element {
    width: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.11);
    padding: 24px;
}

.reviews-element-client {
    width: 100%;
    display: flex;
}

.reviews-element-client-left {
    display: flex;
    align-items: center;
    gap: 17px;
    justify-content: center;
}

.reviews-element-client-rigth {
    flex-shrink: 0;
    margin-left: auto;
    color: #BFBFBF;
}

.reviews-element-client-left-rigth {
    display: flex;

    flex-direction: column;
    justify-content: center;
}

.reviews-element-client-left-rigth-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: 2px;
}

.reviews-element-text {
    color: #373737;
    margin-top: 25px;
    margin-bottom: 0px;
}

.mySwiper2 {
    margin-top: 25px;
}

.swiper3 .swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 4px;
}

.swiper3 .button-prev-pos {
    top: calc(100% - 39px);
    left: 0px;
    z-index: 11;
}

.swiper3 .button-next-pos {
    top: calc(100% - 39px);
    right: 0px;
    z-index: 11;
}

@media (max-width: 767px) {
    .swiper3 .button-prev-pos {
        left: 15px;
    }

    .swiper3 .button-next-pos {
        right: 15px;
    }

    .reviews-element {
        padding: 15px;
    }
}


.reviews-element {
    overflow: hidden;
}

.mySwiper {
    overflow: hidden;
    margin-top: 5px;
}

.mySwiper .swiper-slide {
    width: 61.8px !important;
    height: 61.8px !important;
    display: flex;
    cursor: pointer;
    align-items: center;
    overflow: hidden;
    justify-content: center;
    margin-top: 5px;
    margin-bottom: 5px;
}

.reviews-element-text {
    border: 1px solid #fff;
}

.mySwiper .swiper-slide:last-child {
    margin-right: 0px !important;
}

.mySwiper .swiper-slide img {
    max-width: 170%;
}


.mySwiper2 {
    position: relative;
    overflow: hidden;
}

.mySwiper .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
}


.swiper-button-next-asd-vl {
    position: absolute;
    right: 10px;
    top: calc(50% - 22px);
    z-index: 3;
}

.swiper-button-disabled {
    opacity: 0.5;
}

.swiper-button-prev-asd-vl {
    position: absolute;
    left: 10px;
    top: calc(50% - 22px);
    z-index: 3;
}

.reviews-element-client-rigth {
    position: relative;
    top: 5px;
}

.reviews-element-client-left-left {
    width: 73px;
}

@media (max-width: 767px) {
    .reviews-element-client-left-rigth-name {
        font-size: 20px;
    }

    .reviews-element-client-rigth {
        font-size: 15px;
    }

    .swiper3 {
        width: calc(100% - 0px);
        left: 0px;
    }

    .swiper3-container {
        width: calc(100% + 30px);
        left: -15px;
    }

    .mySwiper2 img {
        width: 100%;
    }

    .swiper3 .swiper-slide-active {
        background: #fff;
    }

    .reviews-element-text {
        font-size: 15px;
    }

    .swiper3 {
        padding-bottom: 65px;
    }

    .swiper-button-next-asd-vl circle {
        fill: #000 !important;
    }

    .swiper-button-prev-asd-vl circle {
        fill: #000 !important;
    }
}

.answers-on-questions-content {
    position: relative;
    width: 100%;
    align-items: flex-end;
    display: flex;
}

.answers-on-questions-content-r {
    flex-shrink: 0;
    padding-left: 0px;
    position: relative;
    right: -30px;
    bottom: -152px;
}

.answers-on-questions-content-l {
    width: 100%;
    padding-right: 40px;

}



.answers-on-questions-content-l-text {
    font-size: 17px;
    margin-bottom: 30px;
}

.answers-on-questions-content-l-text:not(:nth-child(2)) {
    padding-top: 30px;
}


.answers-on-questions-content-l-element {
    display: flex;
    padding-bottom: 15px;
    margin-top: 35px;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 0.5px solid rgba(180, 180, 180, 1)
}

.answers-on-questions-content-l-element-title {

    font-weight: 400;
    user-select: none;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.answers-on-questions-content-l-element-title-text {
    width: 100%;
    font-size: 19px;
}

.answers-on-questions-content-l-element-title-icon {
    flex-shrink: 0;
    position: relative;
    top: -2px;

}

.answers-on-questions-content-l-element-text {
    max-height: 0px;
    transition: all 0.3s;
    overflow: hidden;
}

.answers-on-questions-content-l-element-title-icon {
    height: fit-content;
    display: flex;
}

.answersActive .answers-on-questions-content-l-element-title-icon {
    transition: all 0.3s;
    transform: rotateX(180deg);
}

.answers-on-questions-content-l-element-text {
    font-size: 17px;
    font-weight: 300;
}

@media (max-width: 1160px) {
    .answers-on-questions-content-r {
        max-width: 280px;
    }
}

@media (max-width: 1060px) {
    .answers-on-questions-content-r {
        max-width: 230px;
    }

    .answers-on-questions-content-l {
        padding-right: 20px;
    }

    .answers-on-questions-content-l-element-title-text {
        font-size: 18px;
    }
}

.answers-on-questions-content-l-element-title-text {
    padding-right: 20px;
}

@media (max-width: 767px) {
    .answers-on-questions-content-l-element-title-text {
        font-size: 17px;
    }

    .answers-on-questions-content-r {
        display: none;
    }

    .answers-on-questions-content-l {
        padding-right: 0px;
    }

    .answers-on-questions-content-l-element-text {
        font-size: 15px;
    }

    .answers-on-questions-content-l-element {
        margin-top: 25px;
    }
}

@media (min-width: 1161px) {
    .answers-on-questions {
        padding-top: 75px;
    }
}

.blockquote {
    width: 100%;
    padding: 0px;
    background-attachment: scroll;
    background-position: 50%;
    background-repeat: none;
    background-size: cover;
    -o-background-size: cover;
    position: relative;
}

.blockquote blockquote {
    background: rgba(0, 0, 0, 0.56);
    padding: 70px 60px;
    border: none;
    text-align: center;
    font-size: 25.5px;
    font-weight: 400;
    color: #fff;
}

.blockquote blockquote p {
    padding: 0px;
    margin: 0px;
    margin-bottom: 9px;
    font-size: 25.5px;
    font-weight: 400;
    color: #fff;
}

.blockquote blockquote a {
    font-weight: 800;
    font-size: 25.5px;
    margin-left: 8px;
    color: #fff;
}

@media (max-width: 1200px) {
    .blockquote blockquote {
        font-size: 23px;
    }

    .blockquote blockquote p {
        font-size: 23px;
    }

    .blockquote blockquote a {
        font-size: 23px;
    }
}

@media (max-width: 1100px) {
    .blockquote blockquote {
        font-size: 22px;
    }

    .blockquote blockquote p {
        font-size: 22px;
    }

    .blockquote blockquote a {
        font-size: 22px;
    }
}

@media (max-width: 1000px) {
    .blockquote blockquote {
        font-size: 21px;
    }

    .blockquote blockquote p {
        font-size: 21px;
    }

    .blockquote blockquote a {
        font-size: 21px;
    }
}

@media (max-width: 870px) {
    .blockquote blockquote {
        font-size: 20px;
    }

    .blockquote blockquote p {
        font-size: 20px;
    }

    .blockquote blockquote a {
        font-size: 20px;
    }

    .blockquote blockquote {
        padding: 40px 40px;
    }
}

@media (max-width: 767px) {
    .blockquote blockquote {
        font-size: 19px;
        display: flex;
        flex-direction: column;
    }

    .blockquote blockquote p {
        font-size: 19px;
    }

    .blockquote blockquote a {
        font-size: 19px;
    }

    .blockquote .container {
        max-width: 100%;
        width: 100%;
    }

    .blockquote {
        width: 100%;
        padding: 0px 0px;
    }

    .blockquote blockquote {
        padding: 40px 15px;
    }

    .blockquote blockquote a {
        margin-left: 0px;
        margin-top: 4px;
    }
}



.footer {
    background: rgba(249, 249, 249, 1);


    box-shadow: 0px -4px 7px 0px rgba(0, 0, 0, 0.07);
    padding-top: 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-bottom: 70px;
}

.footer-top {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.footer-top .container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.footer-bottom {
    width: 100%;
    position: relative;
    border-top: 1px solid rgba(240, 240, 240, 1)
}

.footer-top-block {
    display: flex;
    padding-top: 4px;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 50px;
    padding-right: 15px;
    border-right: 1px solid rgba(217, 217, 217, 1);
}

.footer-top-block-1 {
    padding-left: 0px !important;
    width: 18%;
}

.footer-top-block-2 {
    width: 28%;
}

.footer-top-block-3 {
    width: 26%;
}

.footer-top-block-4 {
    border-right: 0px solid rgba(217, 217, 217, 1);
    padding-right: 0px !important;
    width: 28%;
}

.footer-tel {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 5px;
    margin-top: 5px;
}

.footer-logo {
    margin-bottom: 14px;
}

.footer-mail {
    margin-bottom: 11px;
    margin-top: 9px;
    display: flex;
    align-items: center;
}

.footer-mail span {
    font-weight: 600;
    margin-right: 5px;
    font-size: 20px;
}

.footer-mail a {
    font-weight: 400;
    font-size: 20px;
    color: #000;

}

.footer-top-block-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
}

.footer-top-block-title svg {
    display: none;
}

.footer-top-block-title span {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

.footer-top-block ul {
    display: flex;
    flex-direction: column;
}

.footer-top-block ul li {
    margin-top: 5px;
    margin-bottom: 5px;
}

.footer-top-block ul li a {
    color: rgba(55, 55, 55, 1);
    font-size: 20px;
    font-weight: 400;
}

.footer-top-block-3-adres {
    color: rgba(55, 55, 55, 1);
    font-size: 20px;
    font-weight: 400;
    margin-top: 5px;
    margin-bottom: 5px;
}

.footer-top-block-title-povt {
    margin-top: 25px;
}

.footer-top-block-3-reiting {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 25px;
}

.footer-top-block-3-reiting-top {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-top-block-3-reiting-top-text {
    color: rgba(55, 55, 55, 1);
    font-size: 20px;
    font-weight: 400;
    position: relative;
    top: 2px;
}

.footer-top-block-3-reiting-bottom {
    color: rgba(55, 55, 55, 1);
    font-size: 20px;
    font-weight: 400;
    margin-top: 1px;
}

.footer-soc {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 10px;
    margin-top: 10px;
}


.footer-bottom .container {
    width: 100%;
    position: relative;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
}

.footer-bottom-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.footer-bottom-2-text {
    font-size: 16px;
    font-weight: 300;
}

.footer-bottom-1 {
    color: #414141;
    font-size: 20px;
    font-weight: 300;
}

.footer-bottom-3 {
    color: #414141;
    font-size: 20px;
    font-weight: 300;
}

.footer-bottom-2-text {
    color: #414141;
    font-size: 16px;
    font-weight: 300;
}

.footer-bottom {
    padding-top: 30px;
}

.footer-top {
    padding-bottom: 50px;
}

.footer-top-block * {
    line-height: 1.2;
}

@media (max-width: 1360px) {
    .footer-top-block {
        padding-left: 40px;
    }

    .footer-top * {
        font-size: 17px !important;
    }

    .footer-bottom-1 {
        font-size: 17px;
    }

    .footer-bottom-3 {
        font-size: 17px;
    }

    .footer-top-block-1 {
        width: 20%;
    }

    .footer-top-block-2 {
        width: 26%;
    }

    .footer-logo {
        max-width: 177px;
    }
}

@media (max-width: 1160px) {
    .footer-logo {
        max-width: 167px;
    }

    .footer-top-block {
        padding-left: 30px;
    }

    .footer-bottom-2-text {
        font-size: 14px;
    }

    .footer-top * {
        font-size: 16px !important;
    }

    .footer-bottom-1 {
        font-size: 16px;
    }

    .footer-bottom-3 {
        font-size: 16px;
    }

    .footer-top-block-3-reiting-top {
        gap: 25px;
    }
}

.footer-mail {
    flex-wrap: wrap;
}

.footer-top-block-3-reiting-bottom {
    margin-top: 5px;
}

.footer-mail a {
    white-space: nowrap;
}


@media (max-width: 1060px) {
    .footer-top-block-3-reiting-top {
        gap: 20px;
    }

    .footer-logo {
        max-width: 157px;
    }

    .footer-top-block {
        padding-left: 15px;
    }

    .footer-top * {
        font-size: 15px !important;
    }

    .footer-bottom-1 {
        font-size: 15px;
    }

    .footer-bottom-2-text {
        font-size: 13px;
    }

    .footer-bottom-3 {
        font-size: 15px;
    }

    .footer {
        padding-top: 50px;
    }

    .footer-top {
        padding-bottom: 40px;
    }

    .footer-bottom {
        padding-top: 20px;
    }
}

@media (max-width: 860px) {
    .footer-bottom {
        padding-top: 5px;
        border: none;
    }

    .footer {
        padding-top: 20px;
    }

    .footer-top {
        padding-bottom: 20px;
    }

    .footer-top-block-3-reiting-top {
        gap: 15px;
    }

    .footer-top-block {
        border: none;
        width: 50%;
    }

    .footer-top-block-3 {
        padding-left: 0px;
    }

    .footer-top-block {
        padding-bottom: 18px;
        padding-top: 18px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .footer-bottom-2 {
        order: 1;
        margin-top: 10px;
    }


    .footer-logo {
        max-width: 157px;
    }

    .footer-top * {
        font-size: 15px !important;
    }

    .footer-bottom-1 {
        font-size: 15px;
    }

    .footer-bottom-2-text {
        font-size: 13px;
    }

    .footer-bottom-3 {
        font-size: 15px;
    }
}

.footer-top-adres {
    width: 100%;
    display: flex;
    flex-direction: column;


}


@media (max-width: 600px) {
    body .footer-top-block-3 {
        padding-top: 1px;
    }

    .footer-top-block-3-reiting {
        margin-top: 10px;
    }

    .footer-top-block-3-reiting-top {
        gap: 25px;
    }

    body .footer-top-block-1 {
        padding-bottom: 5px;
    }

    body .footer-top-block-2 {
        padding-top: 5px;
    }

    .footer-top-adres {
        margin-bottom: 8px;
        margin-top: 8px;
        flex-direction: row;
    }

    .footer-top-adres .footer-top-block-3-adres {
        margin-left: 10px;
    }

    .footer-top-adres .footer-top-block-title {
        gap: 0px;
    }

    .footer-top-block ul li {
        margin-top: 7px;
        margin-bottom: 7px;
    }

    .footer-top {
        padding-bottom: 16px;
    }

    .footer-top-block-1 {
        margin-top: 8px;
    }

    body .footer-top-adres * {
        font-size: 16px !important;
        margin-top: 0px;
        margin-bottom: 0px;

    }

    .footer-top-block {
        padding-right: 0px !important;
    }

    .footer-top-adres .footer-top-block-title::after {
        content: ':';
    }

    .footer-top-block {
        padding-left: 0px;
        width: 100%;
    }

    .footer-top * {
        font-size: 20px !important;
    }

    .footer-bottom-1 {
        font-size: 20px;
    }

    .footer-bottom-3 {
        font-size: 20px;
    }

    .footer-bottom-2-text {
        font-size: 16px;
    }

    .footer {
        background: #fff;
    }

    .footer-top-block-4 {
        order: -4;
    }

    .footer-top-block-3 {
        order: -3;
    }

    .footer-top-block-title {
        user-select: none;
        cursor: pointer;
    }

    .footer-top-block-title svg {
        display: flex;
        position: relative;
        top: 1px;
    }

    .munu-footor {
        transition: all 0.3s;
        overflow: hidden;
        max-height: 0px;
    }

    .footer-logo {
        margin-bottom: 11px;
    }

    .footer-tel {
        margin-bottom: 5px;
        margin-top: 5px;
    }

    .footer-top-block {
        padding-bottom: 13px;
        padding-top: 13px;
    }

    .title-fff {
        padding-left: 0;
    }
}

@media (max-width: 355px) {
    body .footer-top-adres * {
        font-size: 14px !important;
    }

    .footer-top * {
        font-size: 18px !important;
    }

    .footer-bottom-1 {
        font-size: 18px;
    }

    .footer-bottom-3 {
        font-size: 18px;
    }
}

.up-top svg {
    cursor: pointer;
    transition: all 0.3s;
}

.up-top svg * {
    transition: all 0.3s;
}

.up-top svg:hover rect {

    fill: #fff;
}

.up-top svg {
    border: 1px solid rgba(2, 94, 186, 0);
}

.up-top svg:hover {
    border: 1px solid #AD8444;
}

.up-top svg:hover path {
    stroke: #AD8444;
}


.up-top {
    order: -6;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    z-index: 16;
    margin-top: 15px;
    margin-bottom: 20px;
}

@media (min-width: 601px) {
    .up-top {
        position: fixed;
        left: 20px;
        bottom: 40px
    }
}

.footer-top-block-title svg {
    transition: all 0.3s;
}

.munuFooterActive svg {

    transform: rotate(90deg);
}


.bread-crumbs {
    width: 100%;
    position: relative;
}

.bread-crumbs .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.bread-crumbs-right {
    margin-left: 9px;
    margin-right: 9px;
}

.bread-crumbs * {
    font-size: 15px;
}

.bread-crumbs a {
    color: #AD8444;
}

.bread-crumbs {
    margin-top: 40px;
}

.page-filter .product-catalog {
    padding-top: 70px;
    padding-bottom: 70px;
}

.section-filter {
    padding-top: 70px;
    padding-bottom: 0px;
}

.section-filter-functional {
    width: 100%;
    padding: 30px;
    background: #ffeec1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.section-filter-functional-left {
    display: flex;
    flex-wrap: wrap;
    width: 52%;
    align-items: center;
}

.title-section-filter {
    width: 100%;
    padding: 0px;
    padding-top: 70px;
    position: relative;

}

.filter-functional-element {
    user-select: none;
    padding: 12px 20px;
    background: #fff;
    width: fit-content;
    cursor: pointer;
}

.filter-functional-element-icon {
    margin-left: 15px;
}

.filter-functional-element {
    display: flex;
    align-items: center;
}


.filter-functional-element-text {
    font-weight: 400;
    font-size: 19px;
}


.filter-functional-element {
    min-height: 53px;
    position: relative;
}

.filter-functional-elements-dropdown {
    min-width: 100%;
    display: none;
    align-items: flex-start;
    flex-direction: column;
    position: absolute;
    top: 53px;
    left: 0px;
}

.filter-dropdown-el {
    min-width: 100%;
    padding: 10px;
    background: #fff;
    text-align: center;
    justify-content: center;
    min-height: 53px;
    display: flex;
    /* border-top: 1px solid rgba(2, 94, 186, 1); */
}

.filter-dropdown-el span {
    display: flex;
    line-height: 1;
    font-size: 17px;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
}

.filter-dropdown-el:hover {
    transition: all 0.3s;
    background: rgba(2, 94, 186, 1);
}

.filter-dropdown-el:hover span {
    color: #fff;
    transition: all 0.3s;
}

.section-filter {
    position: relative;
    z-index: 3;
}


.section-filter-functional-rigth {
    width: 48%;
    display: flex;
    align-items: center;
    padding-left: 20px;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.section-filter-functional-rigth-sort {
    font-size: 19px;
    font-weight: 700;
}

.section-filter-functional-rigth-sort-elem {
    font-size: 19px;
    font-weight: 400;
}

.section-filter-functional-left {
    padding-right: 20px;
    gap: 24px;
}

@media (min-width: 1361px) {
    .page-filter .title-section1 {
        font-size: 48px;
    }
}

.section-filter-functional-rigth-sort-elem {
    user-select: none;
    cursor: pointer;
}

.filter-functional-element-active .filter-functional-elements-dropdown {
    display: flex;
}

.filter-functional-element-active svg {
    display: flex;
    transform: rotateX(180deg);
}

.filter-functional-element:nth-child(1) {
    z-index: 6;
}

.filter-functional-element:nth-child(2) {
    z-index: 5;
}

.filter-functional-element:nth-child(3) {
    z-index: 4;
}

.filter-functional-element:nth-child(4) {
    z-index: 3;
}

@media (max-width: 1360px) {
    .filter-functional-element {
        padding: 10px 16px;
    }

    .filter-functional-element {
        min-height: 49px;
    }

    .filter-dropdown-el {
        min-height: 49px;
    }

    .filter-functional-elements-dropdown {
        top: 49px;
    }

    .section-filter-functional {
        padding: 25px;
    }

    .section-filter-functional-left {
        padding-right: 15px;
    }

    .section-filter-functional-rigth-sort {
        font-size: 17px;
    }

    .section-filter-functional-rigth-sort-elem {
        font-size: 17px;
    }

    .section-filter-functional-rigth {
        padding-left: 15px;
    }

    .section-filter-functional-rigth {
        gap: 15px;
    }

    .filter-functional-element-text {
        font-size: 18px;
    }

    .filter-functional-element-icon {
        margin-left: 12px;
    }

    .section-filter-functional-left {
        gap: 20px;
    }

    .section-filter {
        padding-top: 60px;
    }

    .page-filter .product-catalog {
        padding-top: 60px;
    }

    .title-section-filter {
        padding-top: 60px;
    }
}

@media (max-width: 1060px) {
    .filter-dropdown-el span {
        font-size: 15px;
    }

    .filter-dropdown-el {
        min-height: 45px;
    }

    .filter-functional-element {
        min-height: 45px;
    }

    .filter-functional-elements-dropdown {
        top: 45px;
    }

    .filter-functional-elements-dropdown {
        max-width: 220px;
    }

    .filter-dropdown-el {
        max-width: 100%;
    }

    .filter-dropdown-el span {
        white-space: initial;
        line-height: 1.4;
    }

    .title-section-filter {
        padding-top: 50px;
    }

    .section-filter-functional-rigth {
        justify-content: flex-start;
    }

    .section-filter {
        padding-top: 50px;
    }

    .page-filter .product-catalog {
        padding-top: 50px;
    }
}

@media (max-width: 860px) {
    .title-section-filter {
        padding-top: 40px;
    }

    .section-filter {
        padding-top: 40px;
    }

    .page-filter .product-catalog {
        padding-top: 40px;
    }
}

.page-filter .content-padding {
    margin-top: 15px;
}

@media (max-width: 767px) {
    .section-filter-functional-left {
        width: 100%;
        justify-content: center;
        padding-right: 15px;
    }

    .section-filter-functional-rigth {
        width: 100%;
        padding-left: 0px;
        margin-top: 20px;
        justify-content: center;
    }

    .filter-functional-element {
        min-width: 150px;
    }

    .title-section-filter {
        padding-top: 35px;
    }

    .section-filter {
        padding-top: 15px;
    }

    .page-filter .product-catalog {
        padding-top: 35px;
    }

}

@media (max-width: 567px) {
    .page-filter .product-catalog {
        padding-bottom: 95px;
    }

    .page-filter .product-preview {
        display: flex;
    }
}

.ssilka-style-filter-me {
    margin-top: 55px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 860px) {
    .ssilka-style-filter-me {
        margin-top: 45px;
    }
}

@media (max-width: 567px) {
    .ssilka-style-filter-me {
        margin-top: 35px;
    }
}

.filter-text-section {
    position: relative;
    width: 100%;
}

.filter-text-section-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.filter-text-section-content p {
    font-size: 19px;
    margin: 0px;
}

.filter-text-section-content ul {
    margin: 0px;
}

.filter-text-section-content * {
    color: #343434;
}

.page-filter .ul-stule-d {
    max-width: 690px;
    padding-right: 0px;
}

.page-filter .ul-stule-d li {
    align-items: flex-start;
}

.page-filter .ul-stule-d li::before {
    top: 2px;
}


.page-filter .ul-stule-d li {
    margin-top: 5px;
    margin-bottom: 5px;
}

.filter-text-section-content ol {
    gap: 25px;
    display: flex;
    flex-direction: column;
    padding: 0px;
}

.filter-text-section-content ol li {
    font-size: 19px;
}

.filter-text-section {
    padding-top: 20px;
    padding-bottom: 0px;
}

@media (max-width: 1060px) {
    .page-filter .product-catalog {
        padding-bottom: 60px;
    }
}

@media (max-width:860px) {
    .page-filter .product-catalog {
        padding-bottom: 50px;
    }
}

@media (max-width:767px) {
    .page-filter .product-catalog {
        padding-bottom: 40px;
    }

    .filter-text-section-content ol {
        gap: 10px;
    }

    .filter-text-section-content ol li {
        font-size: 14px;
    }

    .filter-text-section-content p {
        font-size: 14px;
    }
}

@media (max-width:567px) {
    .page-filter .product-catalog {
        padding-bottom: 35px;
    }

    .filter-text-section-content ol li {
        font-size: 14px;
    }

    .filter-text-section-content p {
        font-size: 14px;
    }
}


.title-section-3 {
    padding-top: 0px;
    font-size: 40px;
    font-weight: 700;
    color: #000000;
}

.title-section-padding-3 {
    padding-bottom: 60px;
}


@media (min-width:1061px) {
    .page-single .product-catalog-sop {
        padding-top: 20px;
    }
}

@media (min-width:1161px) {
    .page-single .product-catalog-sop {
        padding-top: 40px;
    }
}

@media (min-width:1361px) {
    .page-single .product-catalog-sop {
        padding-top: 50px;
    }
}


.single-section {
    width: 100%;
    position: relative;
}

.single-content {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.single-content-left {
    width: 400px;
    display: flex;
    padding-right: 10px;
    flex-direction: column;
    position: relative;
}

.single-content-left .aczii-tem {
    top: 10px;
    left: 30px;
}

.single-content-right {
    padding-left: 12px;
    width: calc(100% - 400px);
    display: flex;
    flex-direction: column;

}

/* .single-content-right .single-content-right-slider{
    
} */
.single-content-right-slider {
    position: relative;
    padding-bottom: 70px;
    width: 100%;
}

.single-img-active {
    padding: 60px 30px;
    border: 1px solid rgba(180, 180, 180, 1);
}


.single-img-360 {
    margin-top: 60px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.swiper-slide-img {
    border: 1px solid rgba(180, 180, 180, 1);
    padding: 2px 5px;
}


.page-single .swiper-button-prev-asd-single {
    top: auto;
    z-index: 33;
    bottom: 10px;
    left: 0px;
}

.page-single .swiper-button-next-asd-single {
    top: auto;
    bottom: 10px;
    z-index: 33;
    right: 0px;
}

.page-single .swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 23px;
}

.single-prise {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.single-prise-left {
    background: #FFFDFA;
    display: flex;
    flex-direction: column;
    width: 57%;
    padding: 30px 10px;
    padding-top: 0;

}

.single-prise-right {
    width: calc(38% - 15px);
    margin-left: auto;
}

.single-prise-info {
    background: #f0f0f0;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 30px;
    padding-right: 30px;
}



.single-prise-info__title {
    font-weight: 600;
    font-size: 19px;
    text-transform: uppercase;
    padding-left: 5px;
    color: #000;
    margin-bottom: 30px;
}

.single-prise-info__row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 8px;
    padding-top: 8px;
    padding-left: 5px;
    padding-right: 5px;
    border-bottom: 1px dashed #D9D9D9;

}

.single-prise-info__row:last-child {
    border-bottom: none;
}

.single-prise-info__name {
    font-size: 17px;
    color: #000;
}

.single-prise-info__val {
    font-weight: 700;
    font-size: 17px;
    text-align: right;
    color: #ad8444;
}

.additional-prices-element-next-prev {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #AD8444;
    width: fit-content;
}

.additional-prices-element-prev {
    width: 26px;
    min-height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.additional-prices-element {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.additional-prices-element-next {
    width: 26px;
    min-height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.additional-prices-element-kol {
    padding: 0px 3px;
    font-size: 16px;
    font-weight: 400;
    width: 26px;
    min-height: 26px;
    text-align: center;
    border-left: 1px solid #AD8444;
    border-right: 1px solid #AD8444;
}

.additional-prices-element-text {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 15px;
    font-weight: 400;
}

.additional-prices-element-next-prev {
    flex-shrink: 0;
}

.additional-prices-element-prise {
    flex-shrink: 0;
}

.additional-prices-element-prise {
    color: #AD8444;
    font-weight: 700;
    font-size: 16px;
}

.additional-prices-elements {
    gap: 18px;
}

.additional-prices-element-next {
    cursor: pointer;
    transition: all 0.3s;
}

.additional-prices-element-prev {
    cursor: pointer;
    transition: all 0.3s;
}

.additional-prices-element-next * {
    transition: all 0.3s;
}

.additional-prices-element-prev * {
    transition: all 0.3s;
}

.additional-prices-element-next:hover {
    background-color: #AD8444;
}

.additional-prices-element-prev:hover {
    background-color: #AD8444;
}

.additional-prices-element-prev:hover path {
    fill: #fff;
}

.additional-prices-element-next:hover path {
    fill: #fff;
}

.single-final-price {
    padding: 35px 20px 30px 20px;
    display: flex;
    flex-direction: column;
    background: #FFEEC1;
}

.single-final-price-price {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    font-size: 15px;
    color: #6f6f6f;
}

.single-prise-right p {
    margin-top: 44px;
    font-size: 15px;
    color: #6f6f6f;
}

.single-final-price-price-col {}

.single-final-price-price-text {
    color: #000000;
    font-weight: 700;
    font-size: 26px;
}

.single-final-price-price-top {
    display: flex;
    align-items: center;
    margin-left: auto;
    justify-content: center;
    align-items: center;
}

.single-final-price-price-top-value {
    color: #AD8444;
    font-weight: 700;
    font-size: 26px;
}

.single-final-price-price-top-valuta {
    color: #AD8444;
    font-weight: 700;
    font-size: 26px;
    margin-left: 5px;
}

.single-final-price-old-top {
    margin-left: 15px;
    text-align: end;
}

.single-final-price-old-top s {
    color: #6F6F6F;
    font-size: 17px;
}

.single-final-price-old-top s span {
    color: #6F6F6F;
    font-size: 17px;
}

.single-content-bottom {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 30px;
    margin-top: 130px;
}

/*28.05 */
.single-final-price-order {
    background: #4D4D4D;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    padding: 14px 25px 16px 25px;
    text-align: center;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s;
}

.single-final-price-order2 {
    margin-top: 0;
    max-width: 320px;
    width: 100%;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #373737;
    font-weight: 700;
    font-size: 24px;
}


.single-final-price-images {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 35px;
    gap: 10px;
}


.single-final-advantages {
    display: grid;
    grid-template-columns: 180px 180px;
}

.single-final-advantages-element {
    padding: 20px;
    box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.single-final-advantages-element-text {
    min-height: 48px;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.single-description {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.single-description-top {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
    justify-content: space-between;
}

.single-description-top-element {
    font-weight: 600;
    user-select: none;
    cursor: pointer;
    font-size: 26px;
    padding-bottom: 7px;
    border-bottom: 2px solid #fff;
}

.dataTabClickJSActive {
    border-bottom: 2px dashed #000;
}

.single-description-bottom {
    margin-top: 60px;
}



.dataTabContentJSNone {
    display: none;
}


.swiper-slide-img {
    cursor: pointer;
}

.additional-prices-element-next-prev {
    user-select: none;
}


.single-img-360-top {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.single-img-360-img {
    display: none;
}

.single-img-360-nav {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    position: relative;
    display: flex;
    margin-top: 10px;
}

.single-img-360-img-active {
    display: flex;
}

.single-img-360-nav .style-button {
    display: flex;
}

.single-img-360-top {
    user-select: none;
}

@media (min-width: 1361px) {
    .page-single .filter-text-section-content p {
        font-size: 18px;
    }

    .page-single .filter-text-section-content ol li {
        font-size: 18px;
    }
}

@media (max-width: 1360px) {
    .single-content-left {
        width: 320px;
    }

    .single-content-right {
        width: calc(100% - 320px);
    }

    .single-final-price-price-text {
        font-size: 24px;
    }

    .single-final-price-price-top-value {
        font-size: 24px;
    }

    .single-final-price-price-top-valuta {
        font-size: 24px;
    }

    .single-final-price-old-top s {
        font-size: 16px;
    }

    .single-final-price-old-top s span {
        font-size: 16px;
    }

    .single-final-price-order {
        padding: 13px 25px 14px 25px;
    }

    .single-final-advantages-element-text {
        font-size: 16px;
    }

    .single-final-advantages-element {
        padding-left: 12px;
        padding-right: 12px;
    }

    .single-final-advantages-element {
        width: calc(100%);
    }

    .single-final-advantages-element {
        margin-top: 0;
    }

    .single-final-advantages {
        margin-top: 50px;
    }

    .single-final-price {
        padding: 32px 19px 29px 19px;
    }

    .page-single .filter-text-section-content p {
        font-size: 17px;
    }

    .page-single .filter-text-section-content ol li {
        font-size: 17px;
    }

    .single-description {
        margin-top: 54px;
    }

    .single-description-bottom {
        margin-top: 54px;
    }

    .filter-text-section-content {
        gap: 23px;
    }
}


.page-single .single-section {
    padding-bottom: 0px;
}

.page-single .product-catalog {
    padding-bottom: 0px;
}

.page-single .product-catalog-sop {
    padding-bottom: 90px;
}

.page-single .product-catalog {
    padding-top: 115px;
}

.single-section {
    padding-top: 70px;
}

@media (max-width: 1360px) {
    .single-section {
        padding-top: 60px;
    }

    .page-single .title-section-padding-3 {
        padding-bottom: 50px;
    }

    .page-single .product-catalog-sop {
        padding-bottom: 80px;
    }

    .page-single .product-catalog {
        padding-top: 100px;
    }

    .single-description {
        margin-top: 50px;
    }

    .single-description-bottom {
        margin-top: 50px;
    }

    .single-description-top-element {
        font-size: 24px;
    }
}

@media (max-width: 1160px) {
    .single-description-top-element {
        font-size: 22px;
    }

    .page-single .title-section-padding-3 {
        padding-bottom: 40px;
    }

    .page-single .product-catalog-sop {
        padding-bottom: 60px;
    }

    .page-single .product-catalog {
        padding-top: 80px;
    }

    .single-description {
        margin-top: 40px;
    }

    .single-description-bottom {
        margin-top: 40px;
    }
}

.additional-prices-element-kol {
    pointer-events: none;
}

@media (max-width: 1160px) {
    .single-img-active {
        padding: 50px 20px;
    }

    .single-content-left {
        width: 300px;
    }

    .single-content-right {
        width: calc(100% - 300px);
    }

    .single-final-price-price-text {
        font-size: 21px;
    }

    .single-final-price-order {
        margin-top: 30px;
    }

    .single-final-price-images {
        margin-top: 30px;
    }

    .single-final-price-price-top-value {
        font-size: 21px;
    }

    .single-final-price-price-top-valuta {
        font-size: 21px;
    }

    .single-final-price-old-top s {
        font-size: 16px;
    }

    .single-final-price-old-top s span {
        font-size: 16px;
    }

    .single-final-price-order {
        padding: 12px 23px 13px 23px;
    }

    .single-final-advantages-element-text {
        font-size: 16px;
    }

    .single-final-advantages-element {
        padding-left: 10px;
        padding-right: 10px;
    }

    .single-final-advantages-element {
        width: calc(50% - 12px);
    }

    .single-final-advantages-element {
        margin-top: 18px;
    }

    .single-final-advantages {
        margin-top: 45px;
    }

    .single-final-price {
        padding: 30px 18px 28px 18px;
    }


    .filter-text-section-content {
        gap: 21px;
    }
}

.mySwiper-single {
    padding-left: 1px;
    overflow: hidden;
}

@media (max-width: 1060px) {
    .single-section {
        padding-top: 50px;
    }

    .single-content-left {
        width: 230px;
    }

    .single-content-right {
        width: calc(100% - 230px);
    }

    .single-img-active {
        padding: 30px 15px;
    }

    .single-final-price-price {
        flex-wrap: wrap;
    }

    .single-final-price-old-top {
        margin-left: auto;
    }

    .single-final-price-order {
        margin-top: 25px;
    }

    .single-final-price-order {
        padding: 11px 23px 12px 23px;
    }

    .single-final-price-images {
        margin-top: 25px;
    }

    .additional-prices-element-text {
        font-size: 14px;
    }

    .additional-prices-element-prise {
        font-size: 15px;
    }

    .additional-prices-element-text {
        padding-left: 20px;
        padding-right: 20px;
    }

    .single-description-top-element {
        font-size: 18px;
    }

    .single-final-advantages-element-img img {
        max-width: 42px;
    }

    .single-final-advantages-element-text {
        font-size: 15px;
    }

    .single-final-advantages {
        margin-top: 35px;
    }

    .page-single .product-catalog {
        padding-top: 60px;
    }

    .page-single .product-catalog-sop {
        padding-bottom: 50px;
    }
}


@media (max-width: 960px) {
    .additional-prices-element-text {
        font-size: 13px;
    }

    .additional-prices-element-prise {
        font-size: 14px;
    }
}

@media (max-width: 860px) {
    .single-section {
        padding-top: 40px;
    }

    .single-content-left {
        width: 180px;
    }

    .single-content-right {
        width: calc(100% - 180px);
    }
}

@media (max-width: 767px) {
    .single-section {
        padding-top: 35px;
    }

    .single-content-left {
        width: 100%;
        padding-right: 0px;
    }

    .single-img-active {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .single-content-right {
        padding-left: 0px;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .single-prise-info {
        margin-top: 30px;
    }

    .single-content-right-slider-mob {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .single-content-right {
        margin-top: 30px;
    }

    .page-single .product-catalog {
        padding-top: 45px;
    }

    .page-single .title-section-padding-3 {
        padding-bottom: 25px;
    }

    .single-img-360 {
        margin-top: 40px;
    }
}

@media (min-width: 768px) {
    .single-content-right-slider-mob {
        display: none;
    }
}

@media (max-width: 630px) {
    .single-prise-left {
        width: 100%;
    }

    .single-prise-right {
        width: 100%;
        margin-left: 0px;
        margin-top: 30px;
    }

    .single-final-price-price-top-valuta {
        font-size: 24px;
    }

    .single-final-price-price-top-value {
        font-size: 24px;
    }

    .single-final-price-price-text {
        font-size: 24px;
    }

    .single-final-advantages-element-img img {
        max-width: 65px;
    }

    .single-final-advantages-element {
        margin-top: 24px;
    }

    .additional-prices-element-text {
        font-size: 15px;
    }

    .additional-prices-element-prise {
        font-size: 16px;
    }
}

@media (max-width: 430px) {
    .single-description-top {
        justify-content: flex-start;
    }
}

@media (max-width: 360px) {
    .additional-prices-element-text {
        padding-left: 14px;
        padding-right: 14px;
    }

    .additional-prices-element-prise {
        font-size: 15px;
    }

    .additional-prices-element-text {
        font-size: 14px;
    }

    .single-final-price-price-top-value {
        font-size: 23px;
    }

    .single-final-price-price-top-valuta {
        font-size: 23px;
    }

    .single-final-price-price-text {
        font-size: 23px;
    }

    .single-final-advantages {
        margin-top: 10px;
    }

    .single-description {
        margin-top: 33px;
    }

    .single-description-bottom {
        margin-top: 20px;
    }

    .page-single .product-catalog {
        padding-top: 40px;
    }
}


.page-servese-top-images {
    padding-top: 70px;
    padding-bottom: 0px;
    position: relative;
}

.page-servese-top-images-content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.page-servese-top-images-content-img {
    width: calc((100% / 3) - 8px);

}

.page-servese-top-images-content-img:nth-child(3n - 1) {
    margin-right: 12px;
    margin-left: 12px;
}

.page-servese-top-images-content-full {
    width: 100%;
    display: flex;
}

@media (max-width: 1360px) {
    .page-servese-top-images {
        padding-top: 60px;
    }
}

@media (max-width: 1060px) {
    .page-servese-top-images {
        padding-top: 50px;
    }
}

@media (max-width: 860px) {
    .page-servese-top-images {
        padding-top: 40px;
    }
}

@media (max-width: 767px) {
    .page-servese-top-images {
        padding-top: 35px;
    }
}

@media (max-width: 576px) {
    .page-servese-top-images-content-img {
        width: 100%;
    }

    .page-servese-top-images-content-img:nth-child(3n - 1) {
        margin-top: 12px;
        margin-bottom: 12px;
        margin-left: 0px;
        margin-right: 0px;
    }

    .page-servese-top-images-content-img {
        display: flex;
        align-items: center;
        justify-content: center;
    }

}


.page-servese-text {
    width: 100%;
    position: relative;
}

.page-servese-text-content {
    width: 100%;
    align-items: flex-start;
}

.page-servese-text-content-left {
    padding-right: 0px;
    box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.15);
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    background: #FFF8ED;
    padding-top: 50px;
    padding-left: 40px;
    padding-right: 36px;
    padding-bottom: 110px;
    margin-bottom: 100px;
}

.page-servese__cont {
    display: flex;
    justify-content: space-between;
    gap: 74px;
}

.page-servese__cont-left {
    min-width: 420px;
    width: 420px;
}

.page-servese__cont-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 80px;
    position: relative;
}

.page-servese__cont-right:before {
    content: '';
    background-image: url(../img/ch.svg);
    width: 186px;
    height: 115px;
    position: absolute;
    top: 108px;
    left: 150px;
}


.page-servese__cont-title {
    font-size: 36px;
    color: #000;
    margin-bottom: 80px;
}

.page-servese__cont-title span {
    font-weight: 700;
    display: block;
    color: #ad8444;
}

.page-servese__cont-item {
    width: 350px;

}

.page-servese__cont-item__info {
    display: flex;
    gap: 10px;
}

.page-servese__cont-item__title {
    font-weight: 600;
    font-size: 36px;
    margin-bottom: 20px;
}

.page-servese__cont-item__text {
    font-size: 16px;
    color: #343434;
}

.page-servese__cont-item__num {
    background: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    color: #ad8444;
    -webkit-text-stroke: 1px #FFFFFF;
    text-stroke: 1px #FFFFFF;
}

.page-servese-text-content-left-top {
    width: 100%;
    padding: 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-servese-text-content-left-top-title {
    font-size: 36px;
}

.page-servese-text-content-left-top-title span {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #AD8444;
}

.page-servese-text-content-rigth {
    padding-left: 0px;

}

.page-servese-text-content-left-elements {
    margin: 0px;
    padding: 0px;
    display: flex;
    padding-bottom: 30px;
}

.page-servese-text-content-left-element {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px;
    gap: 17px;
    background: #FFF;
}

.page-servese-text-content-left-element:nth-child(2n) {
    background: transparent;
}

.page-servese-text-content-left-element:nth-child(2n) .page-servese-text-content-left-element-top-icon span {
    top: -14px;
}

.page-servese-text-content-left-element-top {
    width: 100%;
    display: flex;
    align-items: center;
}

.page-servese-text-content-left-element-top-icon {
    position: relative;
    display: flex;
    padding-left: 14px;
    flex-shrink: 0;
}

.page-servese-text-content-left-element-top-icon span {
    color: #AD8444;
    font-size: 36px;
    -webkit-text-stroke: 0.7px #fffffa;
    position: absolute;
    font-weight: 900;
    left: 0px;
    line-height: 0.7;
    top: -14px;
}

.page-servese-text-content-left-element-top-title {
    padding-left: 20px;
    width: fit-content;
    font-size: 36px;
    font-weight: 600;
}

.page-servese-text-content-left-element-botom {
    font-size: 20px;
    color: #343434;
    text-align: justify;
}

.servise-text-section-content .title-section {
    position: relative;
    margin-top: -11px;
}

.page-servese-text-content-bottom {
    width: 100%;
    position: relative;
    margin-top: 30px;
}

.page-servese .reviews {
    padding-top: 0px;
}

.installment-plan {
    position: relative;
    width: 100%;
}

.installment-plan-content {
    position: relative;
    padding: 52px;
    padding-left: 78px;
    box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.15);

    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.installment-plan-left {
    width: 42%;
}

.installment-plan-rigth {
    width: 58%;
    max-width: 624px;
    margin-left: auto;
}

.installment-plan-left-img {
    margin-top: -120px;
    align-items: center;
    margin-bottom: -34px;
    display: flex;
}

.installment-plan-rigth-form {
    width: 100%;
    display: flex;
    margin-top: 41px;
}

.installment-plan-rigth-title {
    font-size: 34px;
    text-transform: uppercase;
    font-weight: 600;
}

.installment-plan-rigth-form input {
    width: 48%;
    padding: 13px 59px 13px 59px;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.16);
    height: 53px;
    color: #373737;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.installment-plan-rigth-form input::placeholder {
    color: #373737;
    font-size: 20px;
}

.installment-plan-rigth-form button {
    width: 48%;
    height: 53px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(2, 94, 186, 1);
    font-size: 18px;
    font-weight: 600;
    background: #025EBA;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    text-align: center;
}

.installment-plan-rigth-form button:hover {
    color: #025EBA;
    background: #fff;
}


.page-servese .product-catalog {
    padding-top: 20px;
}

.installment-plan-rigth {
    margin-top: -20px;
}

@media (max-width: 1360px) {
    .installment-plan-rigth-form input {
        padding: 13px 35px 13px 35px;
    }

    .installment-plan-rigth {
        padding-left: 50px;
    }

    .installment-plan-content {
        padding: 46px;
        padding-left: 56px;
    }

    .page-servese-text-content-left-top-title {
        font-size: 33px;
    }

    .page-servese-text-content-left-top-title span {
        font-size: 33px;
    }

    .page-servese-text-content-left-element-top-title {
        font-size: 33px;
    }

    .page-servese-text-content-left-element {
        padding: 35px;
    }

    .page-servese-text-content-left-top {
        padding: 35px;
    }

    .installment-plan-rigth-title {
        font-size: 29px;
    }

    .installment-plan-left-img {
        margin-top: -98px;
        margin-bottom: -20px;
    }
}

@media (max-width: 1160px) {
    .installment-plan-rigth-form input {
        padding: 13px 19px 13px 19px;
    }

    .installment-plan-rigth-form {
        margin-top: 34px;
    }

    .installment-plan-left {
        width: 36%;
    }

    .installment-plan-left-img {
        margin-top: -85px;
    }

    .installment-plan-rigth {
        width: 64%;
    }

    .installment-plan-rigth {
        padding-left: 40px;
    }

    .installment-plan-content {
        padding: 46px;
        padding-left: 56px;
    }

    .page-servese-text-content-left-top-title {
        font-size: 28px;
    }

    .page-servese-text-content-left-top-title span {
        font-size: 28px;
    }

    .page-servese-text-content-left-element-top-title {
        font-size: 28px;
    }

    .page-servese-text-content-left-element {
        padding: 39px;
    }

    .page-servese-text-content-left-top {
        padding: 39px;
    }

    .installment-plan-rigth-title {
        font-size: 29px;
    }

    .installment-plan-left-img {
        margin-top: -85px;
        margin-bottom: -20px;
    }

    .page-servese-text-content-rigth {
        width: 48%;
    }
}

.page-servese-text-content-left-element-top-icon {
    flex-shrink: 0;
}

.page-servese-text-content-left-element-top-icon img {
    display: none;
}

.page-servese .blockquote {
    margin-top: 50px;
}

@media (max-width: 1060px) {
    .installment-plan-rigth-title {
        font-size: 22px;
    }

    .installment-plan-content {
        padding: 36px;
        padding-left: 44px;
    }

    .installment-plan-left-img {
        margin-top: -67px;
        margin-bottom: -15px;
    }

    .installment-plan-rigth-form input {
        font-size: 18px;
    }

    .installment-plan-rigth-form input::placeholder {
        font-size: 18px;
    }

    .installment-plan-rigth-form button {
        font-size: 17px;
    }

    .page-servese .blockquote {
        margin-top: 30px;
    }
}

@media (max-width: 1060px) and (min-width:768px) {
    .page-servese-text-content-left-element-botom {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .page-servese-text-content-left {
        width: 100%;
    }

    .page-servese-text-content-rigth {
        width: 100%;
        margin-top: 45px;
    }

    .page-servese-text-content-left-top {
        padding: 20px;
    }

    .page-servese-text-content-left-element {
        padding: 20px;
    }

    .installment-plan-left {
        width: 100%;
    }

    .installment-plan-content {
        flex-wrap: wrap;
    }

    .installment-plan-left-img {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .installment-plan-rigth {
        margin-top: 30px;
        padding-left: 0px;
        margin-bottom: 0px;
        width: 100%;
    }
}


@media (max-width: 1160px) {
    .title-section-3 {
        font-size: 35px;
    }
}

@media (max-width: 1060px) {
    .title-section-3 {
        font-size: 33px;
    }
}

@media (max-width: 767px) {
    .title-section-3 {
        font-size: 31px;
    }
}

@media (max-width: 567px) {
    .installment-plan-content {
        padding: 20px;
        padding-left: 20px;
    }
}

@media (max-width: 500px) {
    .installment-plan-rigth-form button {
        width: 100%;
    }

    .installment-plan-rigth-form input {
        width: 100%;
    }

    .installment-plan-rigth-form {
        gap: 20px;
        flex-wrap: wrap;
    }

    .installment-plan-rigth-title {
        text-align: center;
    }
}

.section-about {
    width: 100%;
    padding-bottom: 0px;
    position: relative;
}

.section-about-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.section-about-content-text-left {
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.section-about-content-text-left-text {
    width: 59%;
}

.section-about-content-text-left-img {
    width: 33%;
    margin-left: auto;
    display: flex;
}

.section-about-content .title-section-3 {

    line-height: 1.3;
}

.section-about-content .filter-text-section-content p {
    text-align: justify;
}

.section-about-content .filter-text-section-content li {
    text-align: justify;
}

.section-about-content-text-left-img {
    position: relative;
    top: 10px;
}

@media (max-width: 767px) {
    .section-about-content-text-left-text {
        width: 100%;
    }

    .section-about-content-text-left-img {
        top: 0px;
    }

    .section-about-content-text-left-img {
        width: 100%;
        margin-left: 0px;
        align-items: flex-start;
        margin-top: 30px;
    }
}

.section-about-content-text-right {
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.section-about-content-text-right .section-about-content-text-left-img {
    margin-left: 0px;
    margin-right: auto;
}

@media (max-width: 767px) {
    .section-about-content-text-left-img {
        order: 3;
    }
}

.section-about-advantages {
    width: 100%;
    position: relative;
    padding-bottom: 0px;
}

.section-about-advantages-elements {
    justify-content: space-between;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 90px;
}

.section-about-advantages-element {
    margin-top: 15px;
    margin-bottom: 5px;
    display: flex;
    width: calc((100% / 3) - 70px);
    flex-direction: column;
}

.section-about-advantages-element-top {
    width: 100%;
    display: flex;
    align-items: center;
}

.section-about-advantages-element-top-text {
    margin-left: 24px;
    font-size: 36px;
    font-weight: 600;
    background: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #AD8444;
}

.section-about-advantages-element-bottom {
    margin-top: 40px;
    font-size: 19px;
    color: #343434;
}

.section-about-advantages .title-section-3 {
    line-height: 1.3;
}

.section-about-advantages-element:nth-child(4),
.section-about-advantages-element:nth-child(5),
.section-about-advantages-element:nth-child(6),
.section-about-advantages-element:nth-child(7),
.section-about-advantages-element:nth-child(8),
.section-about-advantages-element:nth-child(9) {
    margin-top: 40px;
}

@media (max-width: 1360px) {
    .section-about-advantages-element {
        width: calc((100% / 3) - 51px);
    }

    .section-about-advantages-element-top-text {
        font-size: 33px;
    }

    .section-about-advantages-element-bottom {
        margin-top: 35px;
    }
}

@media (max-width: 1060px) {
    .section-about-advantages-element {
        width: calc((100% / 3) - 21px);
    }

    .section-about-advantages-element-top-text {
        font-size: 31px;
    }

    .section-about-advantages-element-bottom {
        margin-top: 30px;
    }
}

.section-about-advantages-element-top {
    flex-wrap: wrap;
}

@media (max-width: 860px) {
    .section-about-advantages-element-top-text {
        font-size: 26px;
    }

    .section-about-advantages-element-top-text {
        margin-left: 20px;
    }

    .section-about-advantages-element-top-icon {
        max-width: 40px;
    }
}

@media (max-width: 667px) {
    .section-about-advantages-element {
        width: 100%;
    }

    .section-about-advantages-element {
        margin-top: 40px !important;
    }

    .section-about-advantages-element:first-child {
        margin-top: 10px !important;
    }

    .section-about-advantages-element-bottom {
        margin-top: 26px;
    }
}

.section-gallery {
    width: 100%;
    position: relative;
}

.section-gallery-elements {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
}

.section-gallery-element {
    margin-top: 15px;
    height: 344px;
    width: calc((100% / 3) - 10px);
}

.section-gallery-element:nth-child(3n + 2) {
    margin-left: 15px;
    margin-right: 15px;
}

.section-gallery-element img {
    width: 100%;
}

@media (min-width: 768px) {

    .section-gallery-element:nth-child(1),
    .section-gallery-element:nth-child(2),
    .section-gallery-element:nth-child(3) {
        margin-top: 0px;
    }
}

@media (min-width: 1160px) {
    .page-about .installment-plan {
        padding-top: 55px;
    }
}

@media (max-width: 767px) {
    .page-about .section-gallery {
        padding-bottom: 0px;
    }
}

@media (max-width: 630px) {
    .section-gallery-element {
        margin-top: 15px;
        width: 100%;
        margin-left: 0px !important;
        margin-right: 0px !important;
    }

    .section-gallery-element:first-child {
        margin-top: 5px;
    }
}


.photo-of-works .section-gallery {
    padding-top: 70px;
}

@media (max-width: 1360px) {
    .photo-of-works .section-gallery {
        padding-top: 60px;
    }
}

@media (max-width: 1060px) {
    .photo-of-works .section-gallery {
        padding-top: 50px;
    }
}

@media (max-width: 860px) {
    .photo-of-works .section-gallery {
        padding-top: 40px;
    }
}

@media (max-width: 767px) {
    .photo-of-works .section-gallery {
        padding-top: 35px;
    }

    .photo-of-works .section-gallery {
        padding-bottom: 60px;
    }
}

.section-shipping-and-payment {
    width: 100%;
}


.padd454545 {
    padding-bottom: 30px;
}

.section-shops {

    width: 100%;
    position: relative;
}

.section-shops-content {
    width: 100%;
    position: relative;
    display: flex;

    flex-wrap: wrap;
}

.section-shops-content-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 590px;
}

.section-shops-content-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 21px;
    max-width: 390px;
    margin-left: auto;
}

.section-shops-content-left-element {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.section-shops-content-left-element-left {
    width: 70px;
    padding-right: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.section-shops-content-left-element-right {
    width: calc(100% - 80px);
    color: #000;
    margin-left: auto;
}

.section-shops-content-left-title {
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 25px;
}

.section-shops-content-left-element-right {
    font-size: 19px;
}

.section-shops-content-left-element-right span {
    color: rgba(2, 94, 186, 1);
    font-weight: 600;
    font-size: 19px;
}

/* .section-shops-content-left-element:nth-child(4) .section-shops-content-left-element-left{
    position: relative;
    top:-10px;
} */


@media (max-width: 1160px) {
    .section-shops-content-left {
        max-width: 490px;
    }

    .section-shops-content-left-title {
        font-size: 24px;
    }

    .section-shops-content-left-element-right {
        font-size: 18px;
    }

    .section-shops-content-left-element-right span {
        font-size: 18px;
    }

    .shops .section-shops {
        padding-bottom: 30px;
    }
}

@media (max-width: 1060px) {
    .section-shops-content-left-title {
        font-size: 23px;
    }

    .section-shops-content-left {
        max-width: 390px;
    }

    .section-shops-content-right {
        max-width: 290px;
    }
}

@media (max-width: 860px) {
    .section-shops-content-left {
        max-width: 360px;
    }

    .section-shops-content-right {
        max-width: 260px;
    }

}

@media (max-width: 720px) {
    .section-shops-content-left {
        max-width: 330px;
    }

    .section-shops-content-right {
        max-width: 230px;
    }
}

@media (max-width: 667px) {
    .section-shops-content-left {
        width: 100%;
        max-width: 100%;
    }

    .section-shops-content-right {
        width: 100%;
        max-width: 100%;
    }

    .section-shops-content-right {
        margin-top: 40px;
    }

    .section-shops-content-left-title {
        margin-bottom: 13px;
    }

    .shops .section-shops {
        padding-bottom: 10px;
    }
}

@media (max-width: 450px) {
    .section-shops-content-left-element-left {
        width: 42px;
    }

    .section-shops-content-left-element-right {
        font-size: 17px;
    }

    .section-shops-content-left-element-right span {
        font-size: 17px;
    }

    .section-shops-content-left-element-right {
        width: calc(100% - 52px);
    }

    .section-shops-content-left-title {
        margin-bottom: 5px;
    }

    .section-shops-content-left-title {
        font-size: 21px;
    }
}

.shops .installment-plan {
    padding-bottom: 0px;
}


.section-404 {
    min-height: 530px;
    background-attachment: scroll;
    background-position: 50%;
    background-repeat: none;
    background-size: cover;
    -o-background-size: cover;
    position: relative;
    padding: 0px;
    padding-top: 120px;
    padding-bottom: 130px;
}

.section-404-top {
    font-weight: 800;
    font-size: 330px;
    color: #fff;
    letter-spacing: 30px;
}

@media (max-width: 1700px) {
    .section-404 {
        min-height: calc(100vw / 3.2);
        width: 100%;
        margin-left: 0%;

    }
}

.section-404-rigth {
    width: 400px;
    margin-left: 170px;
    display: flex;
    margin-top: -23px;
    flex-direction: column;
}

.section-404 .container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.section-404-rigth-text {
    color: rgba(55, 55, 55, 1);
    font-size: 30px;
}

.section-404-rigth-home {
    border: 1px solid rgba(2, 94, 186, 1);
    color: rgba(2, 94, 186, 1);
    font-size: 18px;
    font-weight: 600;
    width: 295px;
    margin-top: 62px;
    height: 53px;
    text-align: center;
    display: flex;
    transition: all 0.3s;
    align-items: center;
    justify-content: center;
}



@media (max-width: 1360px) {
    .section-404-left {
        max-width: 400px;
    }

    .section-404-rigth-img {
        max-width: 350px;
    }

    .section-404-rigth-text {
        font-size: 28px;
    }

    .section-404-rigth-home {
        margin-top: 54px;
    }

    .section-404-rigth {
        margin-left: 150px;
    }

    .section-404-rigth-home {
        width: 275px;
    }

    .section-404 {
        margin-top: 120px;
        margin-bottom: 120px;
    }
}

@media (max-width: 1160px) {
    .section-404-left {
        max-width: 350px;
    }

    .section-404-rigth-img {
        max-width: 300px;
    }

    .section-404-rigth-text {
        font-size: 26px;
    }

    .section-404-rigth-home {
        margin-top: 55px;
    }

    .section-404-rigth {
        margin-left: 140px;
    }

    .section-404-rigth-home {
        width: 260px;
    }

    .section-404 {
        margin-top: 110px;
        margin-bottom: 110px;
    }

    .section-404-rigth-text {
        font-size: 23px;
    }

    .section-404-rigth-text {
        font-size: 21.5px;
    }

    .header-bottom__wrapper ul {
        gap: 50px;
    }

    .header-menu {
        margin-right: 10px;
    }

    .header-phone {
        margin-left: 3px;
    }
}

.section-404-rigth {
    width: fit-content;
}

@media (max-width: 1060px) {
    .section-404-rigth {
        margin-left: 100px;
    }

    .section-404-left {
        max-width: 320px;
    }

    .section-404 {
        margin-top: 100px;
        margin-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .section-404-left {
        margin-left: -200px;
    }
}

@media (max-width: 630px) {
    .section-404-left {
        display: none;
    }

    .section-404-rigth {
        margin-left: 0px;
        width: 100%;
        align-items: center;
    }

    .section-404 {
        margin-top: 45px;
        margin-bottom: 80px;
    }

    .section-404-rigth-text {
        text-align: center;
    }

    .section-404-rigth-img {
        position: relative;
        right: -13px;
    }

    .section-404-rigth-home {
        width: 280px;
    }
}

@media (max-width: 340px) {

    .section-404-rigth {
        margin-left: 0px;
        width: 100%;
        align-items: center;
    }

    .section-404 {
        margin-top: 35px;
        margin-bottom: 60px;
    }

    .section-404-rigth-text {
        font-size: 22px;
    }

    .section-404-rigth-img {
        max-width: 290px;
    }

    .section-404-rigth-home {
        width: 268px;
    }
}

@media (max-width: 630px) {
    .our-work-preview-item.page-work-new {
        height: calc(90vw - 30px);
    }
}

.all-page-content {
    max-height: 100vh;
    overflow: initial;
    height: 100%;
}



.simplebar-track.simplebar-vertical {
    background: #fff;
    border-radius: 0px !important;
}

.simplebar-scrollbar:before {
    border-radius: 0px !important;
    background: #AD8444 !important;
    color: #AD8444 !important;
}

.simplebar-scrollbar.simplebar-visible:before {
    opacity: 1 !important;
    border-radius: 0px !important;
}

.up-top-none {
    display: none;
}

.pop-up-window {
    transition: all 0.4s;
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0px;
    top: 0px;
    backdrop-filter: blur(8px);
    opacity: 1;
    z-index: 44;
    background-color: rgba(0, 0, 0, 0.35);

    display: flex;
    align-items: center;
    justify-content: center;
}

.pop-up-window-content {
    width: 500px;
    border-radius: 6px;
    min-height: 500px;
    position: relative;
    display: flex;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    align-items: center;
    justify-content: center;
}

.pop-up-window-content-close {
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: 50%;
    background: #000;
    align-items: center;
    flex-direction: column;
    display: flex;
    position: absolute;
    right: -20px;
    top: -20px;
    cursor: pointer;
    font-weight: 100;
    font-size: 24px;
    justify-content: center;
    -webkit-user-select: none;
    user-select: none;
}

.pop-up-window-content-title {
    font-size: 40px;
    margin-bottom: 30px;
}

.pop-up-window-content form {
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.pop-up-window-content input {
    border: 0px solid #000;
    outline: none;
    border-bottom: 1px solid #000;
    padding: 10px;
    padding-left: 3px;
    width: 100%;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 4px;
}

.pop-up-window-content button {
    width: 169px;
    height: 40px;
    transition: all 0.3s;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px 0px;
    background: #AD8444;
    font-weight: 600;
    border: 1px solid#AD8444;
}

.pop-up-window-content button:hover {
    background-color: #fff;
    color: #AD8444;
}

.pop-up-window-none {
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

.applicationForJS {}

.urlJSF {
    display: none;
}

.pop-up-window-content input {
    width: 74%;
}

@media (max-width: 767px) {
    .pop-up-window-content {
        width: 400px;
        min-height: 400px;
        padding: 15px;
    }

    .pop-up-window-content-title {
        font-size: 34px;
        margin-bottom: 20px;
    }
}

@media (max-width: 500px) {
    .pop-up-window-content {
        width: 276px;
        min-height: 300px;
    }

    .pop-up-window-content-title {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .pop-up-window-content input {
        width: 94%;
    }

    .pop-up-window-content-close {
        width: 34px;
        height: 34px;
        font-size: 20px;
    }
}

/*доьавка 02.06.2023*/
.mob-menu {
    position: fixed;
    top: 83px;
    left: 0px;
    width: 100vw;
    z-index: 3333;
    background: #fff;
    overflow: auto;
    height: calc(100vh - 83px);
    opacity: 1;
    transition: all 0.4s;
    pointer-events: auto;
}

.mob-menu-none {
    opacity: 0;
    z-index: -33;
    pointer-events: none;
}

.Hidden {
    overflow: hidden;
    max-height: 100vh;
}


.page-single .footer {
    margin-top: 25px;
}

/* .dataFinalPriseOldNoActive {
    display: none;
} */

.child-categiry {
    padding-top: 40px;
    padding-bottom: 0px;
    margin: 0px;
}

.child-categiry .container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.child-categiry a {
    background-color: rgba(2, 94, 186, 1);
    color: #fff;
    padding: 15px 40px;
    transition: all 0.3s;
    font-size: 19px;
    border: 1px solid rgba(2, 94, 186, 1);
    border-radius: 10px 0px;
    border: 1px dashed #E2C89C;
}

.child-categiry a:hover {
    color: rgba(2, 94, 186, 1);
    background-color: #fff;
}

@media (max-width: 1360px) {
    .child-categiry a {
        font-size: 18px;
        padding: 13px 34px;
    }

    .child-categiry .container {

        gap: 20px;
    }
}

@media (max-width: 380px) {
    .child-categiry a {
        font-size: 17px;
        padding: 11px 30px;
    }

}

.dataValueSortActive {
    color: #ad8444;
}

.materialNoneJS {
    display: none;
}

.komyNoneJS {
    display: none;
}

.formaNoneJS {
    display: none;
}

.filter-functional-delete {
    user-select: none;
    color: red;
    cursor: pointer;
    font-size: 19px;
}

.page-search .mob-menu-none {
    display: none;
}

.page-search .mob-menu {
    position: relative;
    top: 0;
}

.title-section-filter.title-section-filter-none {
    padding-bottom: 150px;
    padding-top: 130px;
}

.page-search .all-page-content-scroll.Hidden {
    max-height: fit-content;
}

.page-search .product-preview {
    display: flex;
}

.page-search .content-padding {
    margin-top: 0px;
    padding-top: 0px
}

.productPreviewItemJSFilter {
    display: none;
}

.ssilka-style {
    user-select: none;
    cursor: pointer;
}

.page-servese .footer {
    margin-top: 0px;
}

@media (max-width: 576px) {
    .page-servese-top-images-content-img {
        margin-top: 6px !important;
        margin-bottom: 6px !important;

    }
}

.mt0pxoigtro {
    margin-top: 0px;
}

@media (max-width: 576px) {
    .page-search .product-preview {
        border-top: 0px solid #B4B4B4;
        border-left: 0px solid #B4B4B4;
    }
}

.order-form button {
    cursor: pointer;
}

.thank-you-pop {

    opacity: 1;
    z-index: 1;
    pointer-events: auto;

    transition: all 0.4s;
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0px;
    top: 0px;
    backdrop-filter: blur(8px);
    opacity: 1;
    z-index: 44;
    background-color: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-pop-content {
    width: 500px;
    border-radius: 6px;
    min-height: 0px;
    position: relative;
    display: flex;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    align-items: center;
    justify-content: center;
}

.thank-you-pop-content .pop-up-window-content-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 0px;
}

.thank-you-pop-content-close {
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: 50%;
    background: #000;
    align-items: center;
    flex-direction: column;
    display: flex;
    position: absolute;
    right: -20px;
    top: -20px;
    cursor: pointer;
    font-weight: 100;
    font-size: 24px;
    justify-content: center;
    -webkit-user-select: none;
    user-select: none;
}

.thank-you-pop-none {
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

.phone_mask {
    transition: all 0.3s;
    position: relative;
    top: 0px;
    border-bottom: 0px solid red;
}

.erroeInpyp {
    top: -6px;
    border-bottom: 3px solid red !important;
}

button {
    cursor: pointer;
}

.swiper-button-next-asd-vl {
    cursor: pointer;
}

.swiper-button-prev-asd-vl {
    cursor: pointer;
}

.all-page-content-scroll {
    padding-right: 11px
}

@media (max-width: 1250px) and (min-width: 868px) {
    .header-search-input {
        width: 198px;
        right: -215px;

    }
}

b,
strong {
    font-weight: 600 !important;
}

.page-kontakts-map {
    position: relative;
    padding: 0px;
    margin-top: 70px;
    box-shadow: 0px 2px 13px 0px rgba(0, 0, 0, 0.18);

}

.page-kontakts-map .container {
    position: relative;
}

.page-kontakts-map-bar {
    position: absolute;
    top: 20px;
    display: flex;
    flex-direction: column;
    left: 0px;
    z-index: 3;
    padding: 10px;
    max-width: 295px;
    gap: 16px;
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.16);
    background: #fff;
}

.page-kontakts-map-bar-top {
    gap: 3px;
    cursor: pointer;
    display: flex;
    max-width: 100%;
    border-radius: 10px;
    padding: 14px;
    flex-direction: column;
}

.page-kontakts-map-bar-bottom {
    gap: 3px;
    max-width: 100%;
    cursor: pointer;
    display: flex;

    border-radius: 10px;
    padding: 14px;
    flex-direction: column;
}

.page-kontakts-map-bar-bottom-active {
    background: rgba(230, 242, 255, 1);
}

.page-kontakts-map-bar-str-1 {
    font-size: 17px;
    font-weight: 300;
    color: #000000;
    display: flex;

}

.page-kontakts-map-bar-str-1 b {
    font-weight: 600;
    display: contents;
}

.leaflet-popup-content {
    margin: 10px 5px !important;
}

.leaflet-popup-content {
    width: 233px !important;
    display: flex;
    /* align-items: center; */
    justify-content: center;
}

.shm_container .leaflet-popup .leaflet-popup-content-wrapper .leaflet-popup-content .shml-body {
    padding-right: 0px !important;
}

.shm_ya_footer {
    display: none !important;
}

.shm-no-uline {
    display: none !important;
}

.leaflet-popup-close-button {
    display: none !important;
}

.shml-body {
    margin-bottom: 0px !important;
}

.leaflet-popup-content p {
    margin: 0px 0 !important;
}

.shm-title-6.shm-map-title {
    display: none !important;
}

.shm-map-container {
    border: none !important;
}

.page-kontakts-map-bar-str-1 svg {
    margin-left: auto;
    flex-shrink: 0;
    margin-top: auto;
    margin-bottom: 3px;
}

.map-phone {
    width: fit-content;
    font-weight: 600;
    font-size: 15px;
    color: #B58F52;
    display: block;
}

.map-clock {
    color: #4D4D4D;
    font-weight: 600;
    margin-top: 3px;
}

.page-kontakts-map-bar-str-1 {
    margin-bottom: 30px;
}

@media (max-width: 1160px) {
    .page-kontakts-map-bar {
        max-width: 240px;
    }

    .leaflet-popup-content {
        width: 180px !important;
    }

    .page-kontakts-map {
        margin-top: 60px;
    }
}

@media (max-width: 1060px) {
    .page-kontakts-map {
        margin-top: 50px;
    }

    .page-kontakts-map .container {
        position: initial;
    }

    .page-kontakts-map-bar {
        left: 20px !important
    }
}

.map-clock {
    font-size: 15px;
}

@media (max-width: 1000px) {
    .leaflet-popup-content {
        width: 233px !important;
    }

    .page-kontakts-map-bar-top {
        max-width: 100%;
        width: 240px;
    }

    .page-kontakts-map-bar-bottom {
        max-width: 100%;
        width: 240px;
    }

    .page-kontakts-map-bar {
        flex-direction: row;
        width: 100%;
        max-width: 100%;
        position: relative;
    }

    .page-kontakts-map .container {
        position: initial;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    .page-kontakts-map-bar {
        top: 0px;
        width: 100%;
        left: 0px !important;
    }

    .page-kontakts-map-bar-bottom {
        width: 280px;
    }

    .page-kontakts-map-bar-top {
        width: 280px;
    }

    .map-phone {
        font-size: 13px;
    }

    .page-kontakts-map-bar-str-1 {
        font-size: 15px;
    }

    .page-kontakts-map-bar-str-1 svg {
        width: 40px;
    }

    .map-clock {
        font-size: 13px;
    }
}

.shml-body {
    max-width: 100% !important;
}

@media (max-width: 630px) {
    .page-kontakts-map-bar-top {
        width: 100%;
    }

    .page-kontakts-map-bar-bottom {
        width: 100%;
    }

    .page-kontakts-map-bar {
        flex-wrap: wrap;
    }

    .page-kontakts-map-bar-str-1 svg {
        margin-left: 15px;
    }
}


.JS360Play {
    cursor: pointer;
    display: flex;
    transition: all 0.3s;
}

.JS360Play:hover circle {
    transition: all 0.3s;
    fill: #fff;
}

.JS360Play:hover path {
    transition: all 0.3s;
    fill: rgb(2, 94, 186);
}


.JS360Stop {
    cursor: pointer;
    display: flex;
    transition: all 0.3s;
}

.JS360Stop:hover circle {
    transition: all 0.3s;
    fill: #fff;
}

.JS360Stop:hover rect {
    transition: all 0.3s;
    fill: rgb(2, 94, 186);
}



.filter-text-section-content ol li {
    list-style: numeric;
    margin-left: 19px;
}

.our-work-pb-0px {
    padding-bottom: 0px;
}

.dinonFanf {
    display: none !important;
}

.fancybox__toolbar__items.fancybox__toolbar__items--left {
    display: none !important;
}


.advantages-element-text {
    text-align: justify;
}

.product-preview-article-1-2 {
    border-top: 0px solid #B4B4B4;
    border-left: 0px solid #B4B4B4;
}

.product-preview-article-1-2 .product-preview-item:nth-child(1) {
    border: 1px solid #B4B4B4;
}

.product-preview-article-1-2 .product-preview-item:nth-child(2) {
    border: 1px solid #B4B4B4;
    border-left: 0px solid #B4B4B4;
}

.product-preview-1-2 {
    border-top: 0px solid #B4B4B4;
    border-left: 0px solid #B4B4B4;
}

.product-preview-1-2 .product-preview-item:nth-child(1) {
    border: 1px solid #B4B4B4;
}

.product-preview-1-2 .product-preview-item:nth-child(2) {
    border: 1px solid #B4B4B4;
    border-left: 0px solid #B4B4B4;
}

@media (max-width: 567px) {
    .product-preview-1-2 .product-preview-item:nth-child(2) {
        border-top: 0px solid #B4B4B4;
        border-left: 1px solid #B4B4B4;
    }
}




@media (max-width: 1360px) {
    .blockquote blockquote br {
        display: none;
    }
}

[data-fancybox] {
    cursor: pointer;
}

.footer-bottom-2-img img {
    width: 95px !important;
}

.footer-bottom-2-img {
    flex-shrink: 0;
}

.header-phone-absolute .header-phone-absolute-center a:nth-child(4) {
    text-decoration: revert !important;
}

.mob-menu-mail {
    text-decoration: revert !important;
}

.section-shops-content-right .section-shops-content-left-element-right {
    text-decoration: revert !important;
}

@media (max-width: 430px) {
    .bread-crumbs * {
        font-size: 14px;
    }
}

@media (max-width: 405px) {
    .bread-crumbs * {
        font-size: 13px;
    }
}

.page-search .product-catalog .nvtgbintiube {
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
    font-weight: 600;
    font-size: 21px;
    padding-left: 15px;
    border-right: 1px solid #B4B4B4;
    border-bottom: 1px solid #B4B4B4;
}

.page-search .product-catalog .nvtgbintiube:last-child {
    border-bottom: 1px solid #B4B4B4;
    margin-bottom: -1px;
}


.page-search .product-catalog .byhnrynhrfirst {
    border-top: 1px solid #B4B4B4;
    margin-top: -1px;
}

@media (max-width: 576px) {
    .page-search .product-catalog .nvtgbintiube {
        border-right: 0px solid #B4B4B4;
        font-size: 19px;
        padding-left: 0px;
        padding-top: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #B4B4B4;
    }

    .page-search .product-catalog .nvtgbintiube:last-child {
        /* border-bottom: 0px solid #B4B4B4;*/
    }
}

.our-work-preview-item-icon {
    display: none !important;
}

@media (max-width: 767px) {
    .simplebar-track.simplebar-vertical {
        width: 5px;
    }

    .simplebar-scrollbar:before {
        left: 1px;
        right: 1px;
    }

    .all-page-content-scroll {
        padding-right: 5px;
    }
}

.home_page_9 .product-catalog .swiper-pagination {
    display: flex;
}

@media (max-width: 600px) {
    .thank-you-pop-content {
        width: 86%;
    }
}

@media (max-width: 500px) {
    .thank-you-pop-content-close {
        width: 34px;
        height: 34px;
        font-size: 20px;
    }
}

.JS360Stop {
    display: none;
}


.page-kontakts-map-bar .page-kontakts-map-bar-bottom {
    order: -1;
}

.header-bottom__wrapper ul li:last-child .decktop-menu-2ur {
    right: 0px;
    left: auto;
}

.header {
    z-index: 6;
    position: relative;
}



@media (max-width: 567px) {
    .category-preview-item-first-img img {
        width: 100%;
        max-width: 100%;
        right: 0%;
        padding-left: 0px;
        padding-top: 0px;
    }

    .category-preview-item-first-img {
        padding-left: 20px;
        padding-top: 20px;
    }
}

.dinon1506 {
    display: none;
}



@media (max-width: 480px) {
    .child-categiry .container {
        justify-content: center;
    }

    .child-categiry a {
        font-size: 16px;
    }
}

@media (max-width: 420px) {
    .child-categiry a {
        padding: 10px 25px;
    }
}

.child-categiry a {
    padding: 10px 30px;
    color: #000000;
    border-radius: 20px;
    background: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
    font-size: 16px;
}

.child-categiry a:hover {
    color: #000000;
    background: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
}

.section-filter {
    padding-top: 15px;
}

.page-filter .product-catalog-filter {
    padding-top: 35px;
}

@media (max-width: 567px) {
    .product-catalog-filter .product-preview-item {
        border-left: 0px solid red;
    }

    .product-catalog-filter .product-preview-item {
        border-top: 0px solid red;
    }

    /* .product-catalog-filter .product-preview-item:first-child{
    border-top: 1px solid red;
   } */
}


.map-clock {
    margin-top: 0px;
    margin-bottom: 7px;
}

.map-clock:last-child {
    margin-bottom: 0px;
}

.pointevennnoe {
    pointer-events: none;
}

.shml-title {
    display: none;
}

.section-filter-functional-left {
    display: none;
}

.new-text-section-class-1706 {}

.new-text-section-class-1706 h2 {
    font-weight: 700;
    margin: 0;
    font-size: 27px;
    font-weight: 700;
    color: #000000;
}

.new-text-section-class-1706 div a {
    margin-right: 5px;
}




.new-text-section-class-1706 ul {
    margin-top: 7px;
    margin-bottom: 7px;
    width: 100%;
    padding-right: calc((100vw - 1300px) / 2);
}

.new-text-section-class-1706 ul li {

    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 400;
    position: relative;
    color: #343434;
    padding-left: 10px;
    margin-top: 4px;
    margin-bottom: 4px;
    padding-left: 13px;
    max-width: calc(100% - 10px);
    left: 10px;
}

.new-text-section-class-1706 ul li::before {
    content: url(../img/li.svg);
    position: absolute;
    left: -10px;
}


@media (max-width: 1360px) {

    .new-text-section-class-1706 ul {

        padding-right: calc((100vw - 1100px) / 2);
    }

}

@media (max-width: 1160px) {
    .new-text-section-class-1706 ul li {
        font-size: 14px;
    }

    .new-text-section-class-1706 ul {
        padding-right: calc((100vw - 1000px) / 2);
    }
}


@media (max-width: 1060px) {
    .new-text-section-class-1706 ul li {
        font-size: 14px;
    }

    .new-text-section-class-1706 ul {
        padding-right: calc((100vw - 800px) / 2);
    }

    .new-text-section-class-1706 ul {
        margin-top: 3px;
        margin-bottom: 7px;
    }
}


@media (max-width: 767px) {

    .new-text-section-class-1706 ul li {
        font-size: 15px;
    }

    .new-text-section-class-1706 ul li {
        margin-top: 8px;
        margin-bottom: 8px;
    }
}





@media (max-width: 1360px) {
    .new-text-section-class-1706 h2 {
        font-size: 27px;
    }
}

@media (max-width: 1160px) {
    .new-text-section-class-1706 h2 {
        font-size: 24px;
    }
}

@media (max-width: 1060px) {
    .new-text-section-class-1706 h2 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .new-text-section-class-1706 h2 {
        font-size: 20px;
    }
}

.new-text-section-class-1706 a {
    color: rgba(2, 94, 186, 1);
}



.new-text-section-class-1706 h3 {
    margin: 0;
    padding-top: 0px;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
}

@media (max-width: 1160px) {
    .new-text-section-class-1706 h3 {
        font-size: 24px;
    }
}

@media (max-width: 1060px) {
    .new-text-section-class-1706 h3 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .new-text-section-class-1706 h3 {
        font-size: 18px;
    }
}


.aczii-tem {
    width: auto;
    padding-left: 5px;
    padding-right: 5px;
    height: 31px;
    color: #fff;
    position: absolute;
    z-index: 10;
    top: 10px;
    left: 10px;
    background-color: #AD8444;
    font-size: 17px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dinonotz_reit_kod {
    display: none;
}


.bread-crumbs-right-goods {
    width: 1px;
    height: 15px;
    background: #603226;
}

@media (max-width: 767px) {
    .bread-crumbs-right-goods {
        height: 13px;
    }
}

.pb0pxsection-shipping-and-payment-2006 {
    padding-bottom: 0px;
}

@media (max-width: 1060px) and (min-width:768px) {
    .header-bottom__wrapper a {
        font-size: 14px;
    }
}

@media (max-width: 867px) and (min-width:768px) {
    .header-bottom__wrapper a {
        font-size: 13px;
    }
}



.map-0907 {
    width: 100%;
    display: flex;
    gap: 20px;
}

.map-0907-g {
    display: flex;
    width: calc(50% - 10px);
    background: #4086f4;
    padding-top: 8px;
    padding-bottom: 8px;
    gap: 0px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-0907-g span {

    width: 100%;

    text-align: center;
    font-size: 16px;

    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
}

.map-0907-y {
    display: flex;
    width: calc(50% - 10px);


    background: #fc3f1d;
    padding-top: 8px;
    padding-bottom: 8px;
    gap: 0px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-0907-y span {
    width: 100%;

    text-align: center;
    font-size: 16px;

    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
}

/* .map-0907 a{
    pointer-events: none !important;
} */
.map-0907-svg {
    width: 32px;
}

.map-0907-svg svg {
    max-width: 100%;
    height: fit-content;
}

.map-0907-svg svg g {
    fill: #fff !important;
}

.map-0907-svg-20px {
    max-width: 20px;
}

@media (max-width: 1200px) {
    .map-0907-y span {
        font-size: 14px;
    }

}

@media (min-width: 1001px) {
    .page-kontakts-map .shm-map-container.shm_container {
        min-height: 570px !important;
    }
}

.header-phone-absolute-bottom {
    border-radius: 10px 0px;
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 38px;
}

.granit {
    background-image: url(../img/granit.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.granit .title-section {
    color: #fff;
    padding-left: 20px;
    margin-bottom: 20px;
}

.granit .subtitle-section {
    color: #fff;
    font-size: 27px;
    font-weight: 400;
    padding-left: 20px;
}

.granit-wrapper {
    display: flex;
    justify-content: space-between;
    padding-left: 44px;
    padding-right: 44px;
    gap: 17px;
    margin-top: 60px;
}

.granit-col {
    display: flex;
    flex-direction: column;
    gap: 45px;
    position: relative;
}

.granit-col:before {
    content: '';
    border: 1px dashed #fff;
    position: absolute;
    left: 6px;
    top: 40px;

    height: 280px;
}

.granit-item {
    padding: 5px 20px;
    width: 260px;
    height: 92px;
    display: flex;
    align-items: center;
    color: #FFF;
    font-size: 25px;
    line-height: 114.739%;
    position: relative;
    padding-left: 35px;
}

.granit-item:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-color: #fff;
    border-radius: 50%;
}

.granit-col--last::before {
    height: 147px;
}

.about-company .container {
    display: flex;
}

.custom-radio {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

/* для элемента label связанного с .custom-radio */
.custom-radio+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
    position: relative;
    cursor: pointer;
    height: 24px;
}

/* создание в label псевдоэлемента  before со следующими стилями */
.custom-radio+label::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    flex-grow: 0;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
    border-radius: 3px 0px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    width: 19px;
    height: 19px;
}

/* стили для радиокнопки, находящейся в состоянии checked */
.custom-radio:checked+label::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 7px;
    z-index: 3;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #AD8444;
    display: block;

}


.single-final-price-inp {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
}

.map-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.map-colors {
    border-radius: 10px;
    background: #FFF5E4;
    padding: 10px 15px;
}

.map-colors-bottom {
    margin-top: 15px;
    display: flex;
    gap: 5px;
    justify-content: space-between;
    align-items: center;
}

.granit-col-img-m {
    display: none;
}

@media(max-width: 1160px) {
    .granit-col {
        gap: 15px;
    }
}

@media(max-width: 1060px) {
    .granit-col img {
        min-width: 280px;
    }

    .granit-item {
        padding: 5px 20px;
        padding-left: 30px;
        height: 62px;
        font-size: 22px;
        line-height: 114.739%;
    }


    .order-section .container {
        flex-direction: column;
        gap: 20px;
    }

    .order-section-rigth {
        width: 100%;
    }

    .order-section-left {
        width: 100%;
    }
}

@media(max-width: 890px) {

    .granit-item {
        height: 62px;
        font-size: 18px;
        width: 210px;
    }

}

@media(max-width: 767px) {

    .style-button.button-next-pos svg {
        box-shadow: none;
    }

    .style-button.button-prev-pos svg {
        box-shadow: none;
    }

    .granit-wrapper {
        flex-direction: column;
        align-items: self-start;
        position: relative;
    }

    .granit-col-img {
        position: absolute;
        right: -30px;
        bottom: 52px;
        width: 145px;
    }

    .granit-col-img-d {
        display: none;
    }

    .granit-col-img-m {
        display: block;
    }

    .granit-col img {
        min-width: auto;
    }

    .advantages-elements-fon-mob {
        background: none;
    }
}

@media(max-width: 580px) {

    .order-form {
        flex-direction: column;
        align-items: center;
        width: auto;
    }
}

.category-preview-item:hover .category-preview-item-title::after {
    width: 118px;
}

.category-preview-item-first:hover .category-preview-item-title::after {
    width: 118px;
}

.style-button.button-next-pos svg {
    box-shadow: none;
}

.style-button.button-prev-pos svg {
    box-shadow: none;
}

html.sr .load-hidden {
    visibility: hidden;
}

.section-404 .container {
    flex-direction: column;
    align-items: center;
    position: relative;
}



.section-404-text {
    color: #373737;
    font-family: Montserrat;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    margin-top: 30px;
    text-align: center;
}

.section-404-rigth-home {
    border: 1px solid #AD8444;
    background: #656565;
    color: #fff;
}

.section-404-rigth-home:hover {
    background: #AD8444;
    color: #fff;
}

.single-prise-left.additional-prices-elements {
    display: block !important;
}

.header-phone-absolute-center .ml-auto {
    margin-left: auto;
}

@media(max-width:1510px) {
    .work-map-content-car {

        margin-left: -13%;
    }
}

body::-webkit-scrollbar {
    width: 5px;
    /* ширина scrollbar */
}

body::-webkit-scrollbar-track {
    background: #ddd;
    /* цвет дорожки */
}

body::-webkit-scrollbar-thumb {
    background-color: #AD8444;
    /* цвет плашки */
    border-radius: 5px;
    /* закругления плашки */
    border: 1px solid #AD8444;
    /* padding вокруг плашки */
}

body {
    scrollbar-width: auto;
    /* "auto" или "thin"  */
    scrollbar-color: #AD8444 #ddd;
    /* плашка скролла и дорожка */
}

.all-page-content-scroll {
    padding-right: 0px;
}

body {
    overflow-x: hidden;
}

.header-menu li a,
.header-phone-open-phone-1ur,
.header-bottom li a,
.footer a,
.hv {
    position: relative;
}

.header-menu li a::after,
.header-phone-open-phone-1ur::after,
.header-bottom li a::after,
.footer a::after,
.hv::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -1px;
    left: 0;
    background-color: #000;
    transform-origin: bottom right;
    transition: transform 0.2s ease-out;
}

.header-phone-open-phone-1ur::after {
    background-color: #B58F52;
}

.header-bottom li a::after {
    background-color: #fff;
}

.decktop-menu-2ur li a::after {
    background-color: #000;
}

.footer-logo::after,
.footer-bottom-2 a::after {
    display: none !important;
}

.header-menu li a:hover::after,
.header-phone-open-phone-1ur:hover::after,
.header-bottom li a:hover::after,
.footer a:hover::after,
.hv:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}



.btn-up_hide {
    display: none;
}

.cat-banner {
    padding-top: 70px;
    padding-bottom: 10px;
}

.cat-banner .mobile {
    display: none;
}

@media(max-width:768px) {
    .cat-banner {
        padding-top: 30px;
        padding-bottom: 10px;
    }

    .cat-banner .mobile {
        display: block;
    }

    .cat-banner .desctop {
        display: none;
    }
}

.map-clock-s {
    font-size: 13px;
}

.map-colors-bottom svg {
    min-width: 50px;
}

.swiper-button-next-asd-vl,
.swiper-button-prev-asd-vl {
    display: none !important;
}

.granit__wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
    column-gap: 20px;
    row-gap: 30px;
}

@media(max-width:1160px) {
    .granit-col:before {
        height: 224px;
    }

    .granit-col--last::before {
        height: 115px;
    }

    .moyka-section::after {
        display: none;
    }

    .single-final-advantages {
        display: grid;
        grid-template-columns: 140px 140px;
    }

    .single-final-advantages-element {
        width: 100%;
        margin-top: 0;
    }
}

@media(max-width:1060px) {
    .granit-col:before {
        height: 149px;
    }

    .granit-col--last::before {
        height: 71px;
    }

    .granit-item {
        justify-content: flex-start;
    }

    .advantages-element-text {
        font-size: 14px;
    }

    .advantages-element-text {
        padding-left: 10px;
    }

    .single-content-bottom {
        margin-top: 40px;
    }
}

@media(max-width:767px) {
    .header .zi4 {
        position: absolute;
        z-index: 9;
        top: 0;
    }

    .header-top {
        justify-content: space-between;
    }

    .slider-top {
        margin-top: 85px;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

    .slider-top-img-mob img {
        width: 100%;
        /* height: 440px; */
        object-fit: contain;
    }

    .button-prev-pos,
    .button-next-pos {
        top: calc(100% - 75px);
    }

    .popular-categories {
        margin-top: 150%;
    }

    .slider-top-img-mob button {
        width: 100%;
    }

    .category-preview-item-first {
        display: flex;
    }

    .category-preview-item-first-img {
        margin-top: auto;
    }

    .granit-col:before {
        display: none;
    }

    .granit-item {
        justify-content: flex-start;
        padding-left: 32px;
    }

    .granit-wrapper:before {
        content: '';
        position: absolute;
        left: 49px;
        top: 30px;
        width: 1px;
        height: 535px;
        border: 1px dashed #fff;
    }

    .granit .subtitle-section {
        font-size: 18px;
    }

    .granit-wrapper {
        margin-top: 30px;
    }

    .moyka-wrapper {
        padding-left: 0;
        padding-top: 30px;
    }

    .advantages-elements {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .advantages-element {
        flex-wrap: nowrap;
    }

    .advantages-element-order {
        top: auto;
    }

    .advantages-element-text {
        top: auto;
    }

    .bread-crumbs {
        margin-top: 20px;
    }

    .product-preview {
        justify-content: space-between;
    }

    .product-preview-item {
        width: calc(100% / 2 - 10px);
    }

    .single-content-bottom {
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-about-advantages-elements {
        margin-top: 40px;
    }
}

@media(max-width:480px) {
    .order-title {
        font-size: 30px;
    }

    .moyka-item {
        padding-top: 30px;
        padding-bottom: 40px;
        gap: 20px;
    }

    .moyka-item__num {
        min-width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .moyka-item__title {
        font-size: 22px;
        line-height: 24px;
        margin-bottom: 10px;
    }

    .moyka-item__text {
        font-size: 14px;
    }

    .advantages-element {
        flex-wrap: wrap;
    }

    .product-preview-item {
        width: calc(100%);
    }

    .single-prise-info {
        padding: 20px;
    }

    .single-prise-info__title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .single-prise-info__name {
        font-size: 14px;
    }

    .single-prise-info__val {
        font-size: 14px;
    }

    .single-prise-info__row {
        margin-bottom: 8px;
    }
}

@media(max-width:380px) {
    .slider-top {
        margin-top: 66px;
    }
}

.category-preview-item-heigth-decktop:hover .category-preview-item-title {
    transition: all .3s ease;
    background-image: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
}

.single-consult {
    box-shadow: 0 0 4px 2px #b4b4b42b;
}

.single-consult-form {
    margin-top: 0;
    margin-bottom: 0;
    padding: 20px;
    padding-left: 26px;
}

.single-consult-form .order-title {
    font-size: 26px;
}

.single-consult-form input {
    /* margin-left: auto; */
}

.single-consult-form button {
    background-image: linear-gradient(4deg, #edd27e 0%, #d5ad54 33.33%, #aa7114 50%, #e6c56d 66.67%, #f6f4c9 83.33%, #edd280 100%);
    border: none;
}

.bread-crumbs-rel {
    position: relative;
}

.bread-crumbs-404 {
    position: absolute;
    z-index: 10;
    margin-top: 35px;
    display: flex;
    gap: 10px;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #B58F52 #dedede;
}

/* для Chrome/Edge/Safari */
*::-webkit-scrollbar {
    height: 12px;
    width: 5px;
}

*::-webkit-scrollbar-track {
    background: #dedede;
}

*::-webkit-scrollbar-thumb {
    background-color: #B58F52;
    border-radius: 5px;
}


@media (max-width: 767px) {
    .category-preview {
        display: block;
    }

    .popular-categories .swiper-categories-mob {
        display: none;
    }
}

@media(max-width:480px) {
    .category-preview-item-title {
        font-size: 17px;
        padding: 10px;
    }

    .category-preview-item-first-img {
        padding-left: 20px;
        padding-top: 60px;
    }

    .category-preview-item-first-img img {
        width: 100%;
        max-width: 250px;
        right: 0%;
        padding-left: 0px;
        padding-top: 0px;
    }

    .category-preview-item-img img {
        max-height: 224px;
        padding-top: 50px;
    }
}