@color-1: #000000;
@color-2: #797979;

// @bg: #f7f7f7;
@bg: #f7f7f7;
@b-color: #e6e6e6;
@border: 1px solid @b-color;

@text: #000000;
@text-p: #000000;
@w: #fff;

@font-1: 'Lora', 'Arial', sans-serif;
@font-2: 'Lora', 'Arial', sans-serif;

@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

.clearfix:after {
    content: "";
    clear: both;
    display: table;
}

//ОБЩИЕ СТИЛИ
body {
    color: @text;
    background: #fff;
    font-size: 14px;
    line-height: normal;
    font-family: @font-2;

    @media(max-width: 1600px) {
        font-size: 12px;
    }
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

.miniature {
    background: @bg;
    overflow: hidden;
    border-radius: 20px;

    iframe,
    video,
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.miniature-hover {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;

    &::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4) url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3ccircle cx='11' cy='11' r='8'%3e%3c/circle%3e%3cline x1='21' y1='21' x2='16.65' y2='16.65'%3e%3c/line%3e%3cline x1='11' y1='8' x2='11' y2='14'%3e%3c/line%3e%3cline x1='8' y1='11' x2='14' y2='11'%3e%3c/line%3e%3c/svg%3e") no-repeat 50% 50%;
        opacity: 0;
        transition: 0.3s all;
    }

    &:hover {
        &::before {
            opacity: 1;
        }
    }
}

.container {
    margin: 0 100px;

    @media(max-width: 1400px) {
        margin: 0 50px;
    }

    @media(max-width: 1000px) {
        margin: 0 20px;
    }
}

.container-min {
    width: 1000px;
    margin: 0 auto;

    @media(max-width: 1400px) {
        width: auto;
        margin: 0 50px;
    }
    @media(max-width: 1200px) {
        margin: 0 30px;
    }

    @media(max-width: 700px) {
        margin: 0 20px;
    }
}

.flex_block {
    width: 100%;
    flex-flow: row wrap;
    display: flex;
    display: -webkit-flex;
    -webkit-flex-flow: row wrap;
    display: -ms-flexbox;
    -ms-flex-flow: row wrap;
    -ms-align-content: flex-start;
    -webkit-align-content: flex-start;
    align-content: flex-start;
    list-style: none;
    box-sizing: border-box;
}

.title-bold,
.descr-modal,
p,
li {
    line-height: 150%;
    margin: 0;
    color: @text-p;
}

a {
    color: @text;
    transition: 0.3s all;

    &:hover {
        color: @color-2;
    }
}

.link-disable {
    pointer-events: none;
    cursor: default;
}

ul {
    margin: 0;
    padding: 0;

    li {
        list-style: none;
    }
}


.title-big {
    font-size: 50px;
    line-height: 110%;
    font-weight: 500;
    font-family: @font-1;
    margin-top: -10px;
    margin-left: -4px;
    margin-bottom: 30px;
    text-transform: uppercase;

    @media(max-width: 1400px) {
        font-size: 44px;
    }

    @media(max-width: 900px) {
        margin-left: 0;
    }

    h1,
    h2 {
        font-size: inherit;
        line-height: inherit;
        font-weight: inherit;
        margin: 0;

        @media(max-width: 1300px) {
            letter-spacing: normal;
        }
    }
}

.content-title {
    font-size: 18px;
    line-height: 110%;
    font-weight: 400;
    margin-top: -2px;
    position: relative;
    font-family: @font-1;
    margin-bottom: 20px;
    text-transform: uppercase;

    @media(max-width: 1600px) {
        font-size: 16px;
        line-height: 120%;
        margin-top: 0;
    }
    h1,
    h2 {
        font-size: inherit;
        line-height: inherit;
        font-weight: inherit;
        margin: 0;
    }
}

legend,
.title-modal,
.title-block {
    font-family: @font-1;
    font-size: 16px;
    line-height: 120%;
    font-weight: 400;
    margin-bottom: 15px;
    color: @text;

    @media(max-width: 1600px) {
        font-size: 14px;
    }
    h1,
    h2,
    h3,
    p {
        font-size: inherit;
        line-height: inherit;
        font-weight: inherit;
        color: inherit;
        margin: 0;
    }
}

.title-bold {
    font-weight: 550;
    margin-bottom: 3px;
    color: @text;

    h2,
    h3,
    h4 {
        font-size: inherit;
        font-weight: inherit;
        margin: 0;
    }
}

.title-decor {
    font-family: @font-1;
    font-weight: 500;
    margin-bottom: 25px;
    color: #b3b3b3;
}


.button,
.btn {
    border: none;
    outline: none;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    vertical-align: text-top;
    box-sizing: border-box;
    border-radius: 15px;

    padding: 16px 20px;
    padding-top: 12px;
    background: @text;
    color: @w;
    transition: 0.3s all;
    text-transform: lowercase;

    @media(max-width: 1600px) {
        padding-top: 13px;
    }
    &:hover {
        color: @w;
        background: @color-2;
    }
}
.wp-element-button{
    border: none;
    outline: none;
    text-decoration: none !important;
    text-align: center;
    cursor: pointer !important;
    display: inline-block;
    vertical-align: text-top;
    box-sizing: border-box;
    border-radius: 15px !important;

    padding: 16px 20px !important;
    padding-top: 12px !important;
    background: @text !important;
    color: @w !important;
    transition: 0.3s all;
    text-transform: lowercase !important;

    @media(max-width: 1600px) {
        padding-top: 13px;
    }
    &:hover {
        color: @w !important;
        background: @color-2 !important;
    }
}

.btn-white {
    background: @w;
    color: @text;

    &:hover {
        background: @color-2;
    }
}

.btn-border {
    padding: 16px 20px;
    padding-top: 12px;
    border: @border;
    background: @bg;
    color: @text;

    &:hover {
        border-color: @color-2;
        background: @color-2;
    }
}

.btn-min {
    padding: 13px 20px;
    padding-top: 10px;
}

//слайдер
.swiper {
    .swiper-wrapper {
        align-content: flex-start;
        list-style: none;
    }
}

.slider-cont {
    position: relative;
}

.slider-nav-item {
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    cursor: pointer;
    transition: 0.3s all;
    z-index: 2;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;

    @media(max-width: 1000px) {
        display: none;
    }

    &::after,
    &::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        border: 1px solid rgba(193, 193, 193, 0.3);
        border-radius: 50%;
        cursor: pointer;
        width: 30px;
        height: 30px;
        background-position: center center;
        background-repeat: no-repeat;
        transition: 0.3s all;
    }

    &::after {
        background: @text;
    }

    &:hover {
        &::before {
            background: @text;
        }

        &::after {
            background: @w;
        }
    }

    &.swiper-button-disabled{
        opacity: 0;
        pointer-events: none;
    }
}

.slider-prev {
    left: -100px;

    &::after {
        -webkit-mask: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M15 18l-6-6 6-6'/%3e%3c/svg%3e") no-repeat 50% 50%;
        mask: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M15 18l-6-6 6-6'/%3e%3c/svg%3e") no-repeat 50% 50%;
        -webkit-mask-size: 20px;
        mask-size: 20px;
    }
}

.slider-next {
    right: -100px;

    &::after {
        -webkit-mask: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M9 18l6-6-6-6'/%3e%3c/svg%3e") no-repeat 50% 50%;
        mask: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M9 18l6-6-6-6'/%3e%3c/svg%3e") no-repeat 50% 50%;
        -webkit-mask-size: 20px;
        mask-size: 20px;
    }
}

.nav-cont {
    .slider-nav-item {
        position: static;
        display: inline-block;
        vertical-align: text-top;
        margin: 0;
        margin-left: 5px;
    }
}

.swiper-slide {
    display: block;
    height: auto !important;
}

.swiper-pagination {
    position: absolute;
    right: 200px;
    bottom: 30px !important;
    height: auto;
    padding: 5px 10px;
    padding-bottom: 6px;
    border-radius: 20px;
    background: @bg;
    display: inline-block;
    width: auto !important;
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, 0) !important;
}

//слайдер

.modal-smg_boby {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    display: none;

    .modal-smg_boby-content {
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
        align-content: center;
        justify-content: center;

        .modal-smg {
            width: 400px;
            position: relative;
            background-color: @w;
            z-index: 2;
            box-shadow: 0 30px 50px 0 rgba(0, 0, 0, 0.3);
            text-align: center;
            border-radius: 10px;

            @media(max-width: 800px) {
                width: auto;
                margin: 0 20px;
            }

            input {
                width: 100%;
                margin-bottom: 15px;
            }
        }

        .modal-smg_container {
            padding: 60px 40px;
        }

        .title-modal{
            margin-bottom: 5px;
        }
        .descr-modal {
            margin-bottom: 20px;
        }

        .btn {
            width: 100%;
        }
    }

    .close-smg_boby {
        background: rgba(0, 0, 0, 0.5);
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        transition: 0.5s all;
    }
}

.modal-smg-thanks {
    .modal-smg {
        .thanks-content {
            text-align: center;

            .icon-ok {
                margin: 0 auto;
                margin-bottom: 15px;
                width: 80px;
                height: 80px;
                border-radius: 50%;
                background: @color-1 url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='20 6 9 17 4 12'%3e%3c/polyline%3e%3c/svg%3e") no-repeat 50% 50%;
            }

            .descr-modal {
                margin-bottom: 0;
            }
        }
    }
}

#videoModal {
    .modal-smg_boby-content {
        .modal-smg {
            width: 60%;
            overflow: hidden;

            @media(max-width: 1100px) {
                width: 100%;
            }

            .modal-smg_container {
                padding: 0;
                background: #000;

                iframe {
                    aspect-ratio: 16 / 9;
                    width: 100%;
                    height: auto;
                    vertical-align: bottom;
                    outline: none;
                    border: none;
                }

                .close--modal-smg {
                    background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='18' y1='6' x2='6' y2='18'%3e%3c/line%3e%3cline x1='6' y1='6' x2='18' y2='18'%3e%3c/line%3e%3c/svg%3e") no-repeat 50% 50%;
                }
            }
        }
    }
}

.close--modal-smg {
    position: absolute;
    right: 10px;
    top: 10px;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    width: 30px;
    height: 30px;
    display: block;
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='18' y1='6' x2='6' y2='18'%3e%3c/line%3e%3cline x1='6' y1='6' x2='18' y2='18'%3e%3c/line%3e%3c/svg%3e") no-repeat 50% 50%;
    cursor: pointer;

    &:hover {
        opacity: 0.3;
    }
}


.socials {
    padding: 0;
    margin: 0;
    margin-top: 30px;

    li {
        display: inline-block;
        vertical-align: text-top;
        vertical-align: top;
        margin-right: 5px;

        .soc-item {
            position: relative;
            display: block;
            text-decoration: none;
            width: 30px;
            height: 30px;
            background: @text;
            border-radius: 50%;
            background-repeat: no-repeat;
            background-position: center center;
            background-size: 20px;
            transition: 0.3s all;

            &::before {
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background: @w;
                transition: 0.3s all;
            }

            &:hover {
                background-color: @bg;

                &::before {
                    background: @text;
                }
            }
        }

        .max::before {
            -webkit-mask: url("../img/max.svg") no-repeat 50% 50%;
            mask: url("../img/max.svg") no-repeat 50% 50%;
            -webkit-mask-size: 16px;
            mask-size: 16px;
        }

        .tg::before {
            -webkit-mask: url("../img/telegram_app.svg") no-repeat 50% 50%;
            mask: url("../img/telegram_app.svg") no-repeat 50% 50%;
            -webkit-mask-size: 16px;
            mask-size: 16px;
        }

        .inst::before {
            -webkit-mask: url("../img/instagram.svg") no-repeat 50% 50%;
            mask: url("../img/instagram.svg") no-repeat 50% 50%;
            -webkit-mask-size: 16px;
            mask-size: 16px;
        }
    }
}

form {

    select,
    textarea,
    input {
        box-sizing: border-box;
        background: #fff;
        border: @border;
        padding: 13px 20px;
        padding-bottom: 16px;
        transition: 0.3s all;
        outline: none;
        border-radius: 10px;
        font: inherit;

        @media(max-width: 800px) {
            width: 100%;
            margin-right: 0;
        }

        &:nth-child(2n) {
            margin-right: 0;
        }

        &:focus {
            border-color: @color-1;

            &::-webkit-input-placeholder {
                opacity: 0
            }

            &::-moz-placeholder {
                opacity: 0
            }

            &:-moz-placeholder {
                opacity: 0
            }

            &:-ms-input-placeholder {
                opacity: 0
            }
        }
    }

    select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background: #fff url('data:image/svg+xml;utf8,<svg fill="black" height="14" viewBox="0 0 24 24" width="14" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center;
        background-size: 12px;
        padding-right: 40px;
    }

    textarea {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        min-height: 75px;
        height: 75px;
        margin-right: 0;

        @media(max-width: 800px) {
            height: 120px;
        }
    }

    .polit-form {
        display: block;
        text-align: left;
        margin-top: 10px;
        margin-bottom: 20px;

        input {
            display: none !important;

            &:checked~.checkmark {
                &::before {
                    background: rgba(0, 0, 0, 0.2) url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='20 6 9 17 4 12'%3e%3c/polyline%3e%3c/svg%3e") no-repeat 50% 50%;
                    background-size: 12px;
                }
            }
        }

        .checkmark {
            padding-left: 20px;
            display: block;
            position: relative;
            font-size: 11px;
            line-height: 14px;

            &::before {
                content: '';
                position: absolute;
                left: 0;
                top: 0.5px;
                width: 12px;
                height: 12px;
                background: rgba(0, 0, 0, 0.2);
                border-radius: 2px;
                transition: 0.1s all;
                cursor: pointer;
            }
        }
    }
}

.contacts-list {
    padding: 0;
    margin: 0;

    li {
        margin-bottom: 10px;
        list-style: none;

        &:last-child {
            margin-bottom: 0;
        }
    }

    .ct-item {
        display: inline-block;
        position: relative;
        text-decoration: none;
        transition: 0.3s all;
    }

    .title-block,
    .content-title {
        margin: 0;
    }
}




.two-item {
    box-sizing: border-box;
    width: calc(~'50% - 5px');
    margin-right: 10px;
    margin-top: 10px;

    @media(max-width: 900px) {
        width: 100%;
        margin-right: 0;
    }

    &:nth-child(2n) {
        margin-right: 0;
    }

    &:nth-child(-n+2) {
        margin-top: 0;

        @media(max-width: 900px) {
            margin-top: 10px;
        }
    }

    &:nth-child(1) {
        @media(max-width: 900px) {
            margin-top: 0;
        }
    }
}

.three-item {
    box-sizing: border-box;
    width: calc(~'33.333% - 13.5px');
    margin-right: 20px;
    margin-top: 20px;

    @media(max-width: 1000px) {
        width: calc(~'50% - 10px');
    }

    @media(max-width: 700px) {
        width: 100%;
        margin-right: 0;
    }

    &:nth-child(3n) {
        margin-right: 0;

        @media(max-width: 1000px) {
            margin-right: 20px;
        }

        @media(max-width: 700px) {
            margin-right: 0;
        }
    }

    &:nth-child(2n) {
        @media(max-width: 1000px) {
            margin-right: 0;
        }
    }

    &:nth-child(-n+3) {
        margin-top: 0;

        @media(max-width: 1000px) {
            margin-top: 20px;
        }
    }

    &:nth-child(-n+2) {
        @media(max-width: 1000px) {
            margin-top: 0;
        }

        @media(max-width: 700px) {
            margin-top: 20px;
        }
    }

    &:nth-child(1) {
        @media(max-width: 700px) {
            margin-top: 0;
        }
    }
}

.four-item {
    box-sizing: border-box;
    width: calc(~'25% - 8px');
    margin-right: 10px;
    margin-top: 10px;

    @media(max-width: 1200px) {
        width: calc(~'33.3333% - 7px');
    }

    @media(max-width: 900px) {
        width: calc(~'50% - 5px');
    }

    &:nth-child(4n) {
        margin-right: 0;

        @media(max-width: 1200px) {
            margin-right: 10px;
        }
    }

    &:nth-child(3n) {
        @media(max-width: 1200px) {
            margin-right: 0;
        }

        @media(max-width: 900px) {
            margin-right: 10px;
        }
    }

    &:nth-child(2n) {
        @media(max-width: 900px) {
            margin-right: 0;
        }
    }

    &:nth-child(-n+4) {
        margin-top: 0;

        @media(max-width: 1200px) {
            margin-top: 10px;
        }
    }

    &:nth-child(-n+3) {
        @media(max-width: 1200px) {
            margin-top: 0;
        }

        @media(max-width: 900px) {
            margin-top: 10px;
        }
    }

    &:nth-child(-n+2) {
        @media(max-width: 900px) {
            margin-top: 0;
        }
    }
}

.five-item {
    box-sizing: border-box;
    width: calc(~'20% - 16px');
    margin-right: 20px;
    margin-top: 20px;

    @media(max-width: 1300px) {
        width: calc(~'25% - 15px');
    }

    @media(max-width: 1200px) {
        width: calc(~'33.3333% - 14px');
    }

    @media(max-width: 900px) {
        width: calc(~'50% - 10px');
    }

    @media(max-width: 700px) {
        width: 100%;
        margin-right: 0;
    }

    &:nth-child(5n) {
        margin-right: 0;

        @media(max-width: 1300px) {
            margin-right: 20px;
        }

        @media(max-width: 700px) {
            margin-right: 0;
        }
    }

    &:nth-child(4n) {
        @media(max-width: 1300px) {
            margin-right: 0;
        }

        @media(max-width: 1200px) {
            margin-right: 20px;
        }
    }

    &:nth-child(3n) {
        @media(max-width: 1200px) {
            margin-right: 0;
        }

        @media(max-width: 900px) {
            margin-right: 20px;
        }

        @media(max-width: 700px) {
            margin-right: 0;
        }
    }

    &:nth-child(2n) {
        @media(max-width: 900px) {
            margin-right: 0;
        }
    }

    &:nth-child(-n+5) {
        margin-top: 0;

        @media(max-width: 1300px) {
            margin-top: 20px;
        }
    }

    &:nth-child(-n+4) {
        @media(max-width: 1300px) {
            margin-top: 0;
        }

        @media(max-width: 1200px) {
            margin-top: 20px;
        }
    }

    &:nth-child(-n+3) {
        @media(max-width: 1200px) {
            margin-top: 0;
        }

        @media(max-width: 900px) {
            margin-top: 20px;
        }
    }

    &:nth-child(-n+2) {
        @media(max-width: 900px) {
            margin-top: 0;
        }

        @media(max-width: 700px) {
            margin-top: 20px;
        }
    }

    &:nth-child(1) {
        @media(max-width: 700px) {
            margin-top: 0;
        }
    }
}


.icon {
    width: 50px;
    height: 50px;
    display: inline-block;
    vertical-align: text-top;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 50%;
    margin-bottom: 15px;
}

//ОБЩИЕ СТИЛИ

.phone-hidden {
    position: relative;
    color: transparent;
    cursor: pointer;

    &::before {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to left, #fff 10%, rgba(0, 0, 0, 0));
        transition: 0.3s all;
    }
}



.logo-fixed {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 102;
    /* Выше чем head-smg */
    display: block;
    width: 54px;
    height: 54px;
    background: url('../img/logo.svg') no-repeat 50% 50%;
    background-size: contain;
    transition: opacity 0.3s ease, top 0.6s cubic-bezier(0.76, 0, 0.24, 1);

    /* Динамическая инверсия цвета логотипа на темном фоне */
    filter: invert(1);
    mix-blend-mode: difference;


    @media(max-width: 1400px) {
        width: 40px;
    }
    @media(max-width: 1300px) {
        width: 36px;
    }
    @media(max-width: 900px){
        height: 40px;
        top: 24px;
    }
    @media(max-width: 700px) {
        background-size: 30px;
    }
    &::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        margin-left: -40px;
        margin-top: -40px;
        width: 80px;
        height: 80px;
        box-sizing: border-box;
        border: 1px solid @text;
        border-right: none;
        opacity: 0;
        transition: 0.5s all;
        border-radius: 50%;
        animation: logo-spin 2s linear infinite;
        transform-origin: center;
        
        @media(max-width: 1400px) {
            width: 60px;
            height: 60px;
            margin-left: -30px;
            margin-top: -30px;
        }
        @media(max-width: 700px) {
            width: 50px;
            height: 50px;
            margin-left: -25px;
            margin-top: -25px;
        }
    }

    &.active {
        top: 50%;

        &::before {
            opacity: 1;
        }
    }
}

@keyframes logo-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.head-smg {
    position: fixed;
    z-index: 101;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 0;
    height: 60px;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0);
    overflow: hidden;
    transition: height 0.6s cubic-bezier(0.76, 0, 0.24, 1), background-color 0.3s ease, padding 0.6s cubic-bezier(0.76, 0, 0.24, 1);

    @media(max-width: 900px){
        padding: 5px 0;
        height: 45px;
    }
    &.active {
        height: 100vh;
        background-color: @bg;
        padding: 0;

        .logo {
            &::before {
                opacity: 1;
            }
        }

        .btn-menu,
        .head-right {
            opacity: 0;
            pointer-events: none;
        }
    }

    .home & {
        display: none;

        &.active {
            display: block !important;
        }
    }

    .container {
        position: relative;
        z-index: 110;
        height: 100%;
    }

    .head-smg-top {
        align-items: center;
        justify-content: space-between;
        height: 100%;
        position: relative;
    }

    .btn-menu {
        position: relative;
        cursor: pointer;
        width: 22px;
        height: 36px;
        transition: 0.3s all;

        @media(max-width: 1400px) {
            height: 30px;
        }

        span {
            position: absolute;
            display: block;
            width: 22px;
            height: 1px;
            background: @text;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            transition: 0.3s all;

            &:nth-child(1) {
                margin-top: -4px;
            }

            &:nth-child(3) {
                margin-top: 4px;
            }
        }

        &:hover {
            opacity: 0.5;
        }
    }

    .btn-menu.active {
        span:nth-child(1) {
            transform: translate(-50%, -50%) rotate(45deg);
            margin-top: 0;
        }

        span:nth-child(2) {
            opacity: 0;
        }

        span:nth-child(3) {
            transform: translate(-50%, -50%) rotate(-45deg);
            margin-top: 0;
        }
    }

    .logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: block;
        width: 50px;
        height: 50px;
        background: url('../img/logo.svg') no-repeat 50% 50%;
        background-size: contain;
        transition: 0.3s all;

        @media(max-width: 1400px) {
            width: 40px;
        }

        @media(max-width: 1300px) {
            width: 36px;
        }

        &::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            margin-left: -40px;
            margin-top: -40px;
            width: 80px;
            height: 80px;
            box-sizing: border-box;
            border: 1px solid @text;
            border-right: none;
            opacity: 0;
            transition: 0.5s all;
            border-radius: 50%;
            animation: spin 2s linear infinite;
            transform-origin: center;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }
    }

    .head-right {
        transition: opacity 0.4s ease;

        .user-link,
        .cart-btn-head {
            position: relative;
            display: inline-block;
            vertical-align: text-top;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(3px);
            -webkit-backdrop-filter: blur(3px);
            border: 1px solid rgba(193, 193, 193, 0.3);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            text-decoration: none;
            transition: 0.3s all;
            margin-right: 5px;
            box-sizing: border-box;

            &:last-child {
                margin-right: 0;
            }

            &::before {
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background: @text;
                -webkit-mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgY2xhc3M9Imx1Y2lkZSBsdWNpZGUtc2hvcHBpbmctY2FydC1pY29uIGx1Y2lkZS1zaG9wcGluZy1jYXJ0Ij48Y2lyY2xlIGN4PSI4IiBjeT0iMjEiIHI9IjEiLz48Y2lyY2xlIGN4PSIxOSIgY3k9IjIxIiByPSIxIi8+PHBhdGggZD0iTTIuMDUgMi4wNWgybDIuNjYgMTIuNDJhMiAyIDAgMCAwIDIgMS41OGg5Ljc4YTIgMiAwIDAgMCAxLjk1LTEuNTdsMS42NS03LjQzSDUuMTIiLz48L3N2Zz4=") no-repeat 50% 50%;
                mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgY2xhc3M9Imx1Y2lkZSBsdWNpZGUtc2hvcHBpbmctY2FydC1pY29uIGx1Y2lkZS1zaG9wcGluZy1jYXJ0Ij48Y2lyY2xlIGN4PSI4IiBjeT0iMjEiIHI9IjEiLz48Y2lyY2xlIGN4PSIxOSIgY3k9IjIxIiByPSIxIi8+PHBhdGggZD0iTTIuMDUgMi4wNWgybDIuNjYgMTIuNDJhMiAyIDAgMCAwIDIgMS41OGg5Ljc4YTIgMiAwIDAgMCAxLjk1LTEuNTdsMS42NS03LjQzSDUuMTIiLz48L3N2Zz4=") no-repeat 50% 50%;
                -webkit-mask-size: 16px;
                mask-size: 16px;
                transition: 0.3s all;
            }

            span {
                position: absolute;
                right: -2px;
                bottom: -2px;
                font-size: 11px;
                padding: 1px 5px;
                padding-bottom: 2px;
                border-radius: 10px;
                background: @text;
                color: @w;
                transition: 0.3s all;
            }

            &:hover {
                background: @text;

                &::before {
                    background: @w;
                }

                span {
                    background: @bg;
                    color: @text;
                }
            }
        }

        .user-link {
            &::before {
                -webkit-mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgY2xhc3M9Imx1Y2lkZSBsdWNpZGUtdXNlci1yb3VuZC1pY29uIGx1Y2lkZS11c2VyLXJvdW5kIj48Y2lyY2xlIGN4PSIxMiIgY3k9IjgiIHI9IjUiLz48cGF0aCBkPSJNMjAgMjFhOCA4IDAgMCAwLTE2IDAiLz48L3N2Zz4=") no-repeat 50% 50%;
                mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgY2xhc3M9Imx1Y2lkZSBsdWNpZGUtdXNlci1yb3VuZC1pY29uIGx1Y2lkZS11c2VyLXJvdW5kIj48Y2lyY2xlIGN4PSIxMiIgY3k9IjgiIHI9IjUiLz48cGF0aCBkPSJNMjAgMjFhOCA4IDAgMCAwLTE2IDAiLz48L3N2Zz4=") no-repeat 50% 50%;
                -webkit-mask-size: 16px;
                mask-size: 16px;
            }
        }
    }
}

.head-smg-fixed{
    background: @w;
}

.page-template-page-contacts,
.single-services,
.page-template-page-home-ecommerce,
.page-template-page-home-services{
    .head-smg:not(.head-smg-fixed) .btn-menu:not(.active) span{
        background: @w;
    }
}


.menu-smg {
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #f7f7f7;
    padding: 100px;
    opacity: 0;
    transform: translate(-110%, 0);
    transition: 0.5s all;
    box-sizing: border-box;
    overflow: auto;

    @media (max-width: 1400px) {
        padding: 50px;
        padding-top: 140px;
    }
    @media(max-width: 1000px) {
        padding: 20px;
        padding-top: 100px;
    }

    .menu-cont {
        width: calc(~'33.333% - 7px');
        margin-right: 10px;

        @media(max-width: 1000px){
            width: 100%;
            margin-right: 0;
            margin-bottom: 30px;

            &:last-child{
                margin-bottom: 0;
            }
        }
        &:nth-child(3n) {
            margin-right: 0;
        }
        .content-title{
            @media(max-width: 1000px){
                margin-bottom: 5px;
            }
        }
        .menu-item li {
            a {
                text-decoration: none;
                color: @text;
                display: block;
                padding: 5px 0;
                position: relative;

                &::before {
                    content: '';
                    position: absolute;
                    top: 50%;
                    left: -30px;
                    margin-top: -10px;
                    width: 30px;
                    height: 20px;
                    background: url('../img/logo.svg') no-repeat 50% 50%;
                    background-size: contain;
                    transform: rotate(90deg);
                    opacity: 0;
                    transition: 0.3s all;
                    
                    @media(max-width: 1000px){
                        width: 20px;
                        left: -20px;
                    }
                }

                &:hover {
                    color: @color-2;

                    &::before {
                        opacity: 1;
                    }
                }
            }

            .link-disable {
                &::before {
                    opacity: 1;
                }
            }
        }

        .has-sub-menu{
            & > a{
                position: relative;
                display: inline-block !important;
                padding-right: 30px !important;

                .sub-menu-list{
                    position: absolute;
                    right: 0;
                    top: 50%;
                    margin-top: -12px;
                    width: 24px;
                    height: 24px;
                    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMwMDAwMDAiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1jaGV2cm9uLWRvd24taWNvbiBsdWNpZGUtY2hldnJvbi1kb3duIj48cGF0aCBkPSJtNiA5IDYgNiA2LTYiLz48L3N2Zz4=") no-repeat 50% 50%;
                    cursor: pointer;
                    transition: 0.3s all;

                    &:hover{
                        opacity: 0.5;
                    }
                }
            }
            .sub-menu{
                display: none;
                padding-left: 20px;
            }
        }

        .content-title {
            padding: 0;

            &::before {
                display: none;
            }
        }
    }

    .socials {
        .soc-item {
            &:hover {
                background: @w;
            }
        }
    }
}

.menu-smg.active {
    opacity: 1;
    transform: translate(0, 0);
}

.home-intro {
    width: 100%;
    overflow: hidden;

    .flex_block {
        width: 100%;
        height: 100%;
        flex-wrap: nowrap !important;
        flex-direction: row;
        
        @media(max-width: 800px){
            flex-direction: column;
        }
    }

    .marquee{
        display: none;
        background: @text;
        color: @w;
        
        @media(max-width: 800px){
            display: block;
        }
    }

    .home-item {
        position: relative;
        width: 50%;
        height: calc(~'100vh + 1px');
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        background: @bg;
        text-decoration: none;
        transition: width 0.72s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.72s ease;

        @media(max-width: 800px){
            width: 100%;
            height: calc(~'50vh - 14.5px');
        }
        &.active {
            width: 100%;
        }

        &.inactive {
            width: 0%;
            opacity: 0;
            pointer-events: none;
        }

        .logo-text{
            width: 100%;
            display: block;
            height: 20px;
            background: url('../img/logo-text.svg') no-repeat 50% 50%;
            background-size: contain;
            margin-bottom: 10px;
        }
        .text {
            position: relative;
            z-index: 3;
            color: @w;

            .title {
                color: @w;
                margin-bottom: 20px;
            }
            p{
                color: @w;
            }
        }

        &::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 2;
        }

        img,
        video {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        &:nth-child(3){
            img{
                object-position: left;
            }
        }
    }
}

.intro {
    position: relative;
    background: @bg;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    @media(max-width: 800px){
        height: 75vh;
    }
    .text {
        padding: 0;
        position: relative;
        z-index: 3;
        color: @w;

        .logo-text{
            width: 100%;
            display: block;
            height: 20px;
            background: url('../img/logo-text.svg') no-repeat 50% 50%;
            background-size: contain;
            margin-bottom: 10px;
        }
        .title {
            color: @w;
            margin-bottom: 20px;
        }
        h1{
            color: @w;
            font-size: inherit;
            line-height: inherit;
            font-weight: inherit;
            margin: 0;
        }
        p{
            color: @w;
        }

        .btn {
            width: auto;
            text-wrap: nowrap;
            margin-top: 20px;
        }
    }

    &::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 2;
        
    }

    img,
    video {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center bottom;
        z-index: 1;
    }
}

.product-item {
    padding-top: 30%;
    position: relative;
    display: block;
    background: @bg;
    transition: 0.3s all !important;
    border-radius: 20px;
    overflow: hidden;

    @media(max-width: 1200px){
        padding-top: 40%;
    }
    @media(max-width: 900px){
        padding-top: 60%;
    }
    a {
        text-decoration: none;
        display: block;
    }

    .miniature {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: transparent;
        
        img {
            transition: 0.5s all;
        }
    }

    .product-item-bottom {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
        justify-content: space-between;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
        align-items: flex-end;

        @media(max-width: 800px){
            padding: 10px;
        }
        .text {
            width: calc(~'100% - 50px');
            color: @w;

            @media(max-width: 700px){
                width: 100%;
            }
            .title-bold{
                color: @w;
            }
            .price {
                span {
                    text-decoration: line-through;
                    margin-left: 5px;
                }
            }
        }

        .btns {
            position: relative;
            z-index: 6;

            @media(max-width: 700px){
                position: absolute;
                right: 10px;
                bottom: 10px;
            }
            .btn-go {
                display: inline-block;
                
                @media(max-width: 700px){
                    width: 26px;
                    height: 26px;
                }
            }
        }
    }

    &:hover {
        background: @w;

        .miniature {
            img {
                transform: scale(1.1);
            }
        }
    }
}

.bg-link {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.btn-go {
    position: relative;
    width: 40px;
    height: 40px;
    background: darken(@bg, 5%);
    display: inline-block;
    vertical-align: text-top;
    text-decoration: none;
    border-radius: 50%;
    border: none;
    outline: none;
    font-size: 0;
    transition: 0.3s all;

    @media(max-width: 700px){
        width: 30px;
        height: 30px;
    }
    &::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: @text;
        -webkit-mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMwMDAwMDAiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWFycm93LXVwLXJpZ2h0LWljb24gbHVjaWRlLWFycm93LXVwLXJpZ2h0Ij48cGF0aCBkPSJNNyA3aDEwdjEwIi8+PHBhdGggZD0iTTcgMTcgMTcgNyIvPjwvc3ZnPg==") no-repeat 50% 50%;
        mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMwMDAwMDAiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWFycm93LXVwLXJpZ2h0LWljb24gbHVjaWRlLWFycm93LXVwLXJpZ2h0Ij48cGF0aCBkPSJNNyA3aDEwdjEwIi8+PHBhdGggZD0iTTcgMTcgMTcgNyIvPjwvc3ZnPg==") no-repeat 50% 50%;
        -webkit-mask-size: 20px;
        mask-size: 20px;
        transition: 0.3s all;
        
        @media(max-width: 700px){
            -webkit-mask-size: 18px;
            mask-size: 18px;
        }
    }

    &:hover {
        background: @text;

        &::before {
            background: @w;
        }
    }
}

.btn-go.btn-card {
    position: relative;
    z-index: 6;

    &::before {
        -webkit-mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMwMDAwMDAiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLXNob3BwaW5nLWNhcnQtaWNvbiBsdWNpZGUtc2hvcHBpbmctY2FydCI+PGNpcmNsZSBjeD0iOCIgY3k9IjIxIiByPSIxIi8+PGNpcmNsZSBjeD0iMTkiIGN5PSIyMSIgcj0iMSIvPjxwYXRoIGQ9Ik0yLjA1IDIuMDVoMmwyLjY2IDEyLjQyYTIgMiAwIDAgMCAyIDEuNThoOS43OGEyIDIgMCAwIDAgMS45NS0xLjU3bDEuNjUtNy40M0g1LjEyIi8+PC9zdmc+") no-repeat 50% 50%;
        mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMwMDAwMDAiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLXNob3BwaW5nLWNhcnQtaWNvbiBsdWNpZGUtc2hvcHBpbmctY2FydCI+PGNpcmNsZSBjeD0iOCIgY3k9IjIxIiByPSIxIi8+PGNpcmNsZSBjeD0iMTkiIGN5PSIyMSIgcj0iMSIvPjxwYXRoIGQ9Ik0yLjA1IDIuMDVoMmwyLjY2IDEyLjQyYTIgMiAwIDAgMCAyIDEuNThoOS43OGEyIDIgMCAwIDAgMS45NS0xLjU3bDEuNjUtNy40M0g1LjEyIi8+PC9zdmc+") no-repeat 50% 50%;
        -webkit-mask-size: 20px;
        mask-size: 20px;
        
        @media(max-width: 700px){
            -webkit-mask-size: 18px;
            mask-size: 18px;
        }
    }
}

.btn-card.added {
    pointer-events: none;

    &::before {
        -webkit-mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgY2xhc3M9Imx1Y2lkZSBsdWNpZGUtY2hlY2staWNvbiBsdWNpZGUtY2hlY2siPjxwYXRoIGQ9Ik0yMCA2IDkgMTdsLTUtNSIvPjwvc3ZnPg==") no-repeat 50% 50%;
        mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgY2xhc3M9Imx1Y2lkZSBsdWNpZGUtY2hlY2staWNvbiBsdWNpZGUtY2hlY2siPjxwYXRoIGQ9Ik0yMCA2IDkgMTdsLTUtNSIvPjwvc3ZnPg==") no-repeat 50% 50%;
        -webkit-mask-size: 20px;
        mask-size: 20px;
    }
}

.news-item {
    display: block;
    text-decoration: none;
    position: relative;
    text-align: left;

    .miniature {
        aspect-ratio: 16 / 9;
        background: @text;
    }

    .text {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        box-sizing: border-box;
        padding: 20px;
        z-index: 3;

        * {
            color: @w;
        }

        time {
            font-size: 12px;
            display: block;
            margin-bottom: 5px;
            opacity: 0.5;
        }

        .title-block {
            margin-bottom: 0;
        }
    }
}


section,
.padding {
    padding-top: 100px;
    padding-bottom: 100px;
    
	@media(max-width: 1600px) {
		padding-top: 70px;
		padding-bottom: 70px;
	}
    @media(max-width: 900px){
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.padding-bottom {
    padding-top: 0;
    padding-bottom: 100px;
    
	@media(max-width: 1600px) {
		padding-bottom: 80px;
	}
    @media(max-width: 900px){
        padding-bottom: 50px;
    }
}

.padding-top {
    padding-top: 100px;
    padding-bottom: 0;
    
	@media(max-width: 1600px) {
		padding-top: 80px;
	}
    @media(max-width: 900px){
        padding-top: 50px;
    }
}

.about {
	margin-top: -40px;
	
	@media(max-width: 1300px) {
		margin-top: -36px;
	}
    .about-top {
        align-items: flex-end;
        margin-bottom: 40px;

        @media(max-width: 900px){
            margin-bottom: 20px;
        }
        .contacts-list{
            @media(max-width: 900px){
                display: none;
            }
        }
        .logo {
            width: 50px;
            height: 40px;
            background: url('../img/logo.svg') no-repeat 50% 50%;
            background-size: contain;
            margin-bottom: 5px;
            
            @media(max-width: 1400px) {
                width: 40px;
            }
            @media(max-width: 1300px) {
                width: 36px;
                height: 36px;
            }
            @media(max-width: 900px){
                margin: 0 auto;
                margin-bottom: 5px;
            }
        }

        .title-block {
            margin-bottom: 0;
        }
    }

    .miniature {
        aspect-ratio: 16 / 7;

        @media(max-width: 900px){
            aspect-ratio: 16 / 10;
        }
        img{
            object-position: bottom center;
        }
    }
}

.btn-big-bottom {
    position: relative;
    z-index: 2;
    padding-top: 0;
    margin-top: -2px;
    background: @text;
    
    .btn-big {
        position: relative;
        width: 50%;
        aspect-ratio: 16 / 10;
        background: @text;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        background: @bg;
        text-decoration: none;
        overflow: hidden;

        @media(max-width: 800px){
            width: 100%;
            aspect-ratio: 1 / 1;
            // display: none;
        }
        &.active{
            @media(max-width: 800px){
                display: none;
            }
        }
        .text {
            position: relative;
            z-index: 3;

            .logo-text{
                width: 100%;
                display: block;
                height: 20px;
                background: url('../img/logo-text.svg') no-repeat 50% 50%;
                background-size: contain;
                margin-bottom: 10px;
            }
            .title {
                color: @w;
                margin-bottom: 20px;
            }
            p{
                color: @w;
            }
        }

        &::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 2;
        }

        img,
        video {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: 50% 70%;
            z-index: 1;
            transition: 0.5s all;
        }
        &:hover{    
            img{
                transform: scale(1.1);
            }
        }
    }
}

.contacts {
    position: relative;
    background: @text;
    margin-top: -2px;

    &::before{
        content: '';
        position: absolute;
        left: 0;
        top: -2px;
        background: @text;
        height: 5px;
        width: 100%;
    }
    @media(max-width: 700px){
        padding-bottom: 14px;
    }
    * {
        color: @w;
    }

    h2 {
        text-align: left !important;
    }

    .title-bold {
        margin-bottom: 20px;
    }

    .contacts-left {
        width: calc(~'50% - 5px');
        margin-right: 10px;

        @media(max-width: 1600px) {
            width: auto;
            margin-right: 100px;
        }
        @media(max-width: 1150px){
            width: 100%;
            margin-right: 0;
        }

        .socials {
            @media(max-width: 700px){
                margin-top: 15px;
            }
            .soc-item {
                background: @w;

                &::before {
                    background: @text;
                }

                &:hover {
                    background: @color-2;

                    &::before {
                        background: @w;
                    }
                }
            }
        }

        .contacts-mob-cont{
            @media(max-width: 700px){
                justify-content: space-between;
            }
        }
        .contacts-list{
            @media(max-width: 700px){
            }
        }
        .menu-mini-mobile{
            display: none;
            
            @media(max-width: 700px){
                display: block;
                text-align: right;
            }
            a {
                text-decoration: none;
                display: block;
                white-space: nowrap;
                padding: 2px 0;
            }
        }
    }


    .title-menu{
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .contacts-right {
        width: calc(~'50% - 5px');

        @media(max-width: 1600px) {
            width: auto;
        }
        @media(max-width: 1150px){
            width: 100%;
            margin-top: 40px;
        }
        @media(max-width: 700px){
            display: none;
        }
        .menu-cont{
            margin-bottom: 40px;

            &:last-child{
                margin-bottom: 0;
            }
        }
        .menu-item {
            width: 150px;
            margin-right: 100px;

            &:last-child {
                margin-right: 0;
            }

            ul {

                li {
                    a {
                        text-decoration: none;
                        display: block;
                        white-space: nowrap;
                        padding: 2px 0;
                    }
                }
            }
        }
        .menu-item-services{
            width: 650px;
            margin: 0;

            ul{
                li{
                    width: 150px;
                    margin-right: 100px;

                    &:nth-child(3n){
                        margin-right: 0;
                    }
                }
            }
        }
    }

    .mobile-menu{
        display: none;
        
        @media(max-width: 700px){
            display: block;
            margin-top: 15px;
            padding-top: 10px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        li{
            a{
                text-decoration: none;
                display: block;
                white-space: nowrap;
                padding: 2px 0;
            }
        }
    }
}

.contacts-ecommerce{
    @media(max-width: 900px){
        display: none;
    }
}

.smg-footer {
    color: @w;
    background: @text;
    font-size: 12px;
    margin-top: -2px;

    @media(max-width: 900px){
        padding-bottom: 43px;
    }
    .copyright {
        padding: 20px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        
        @media(max-width: 700px){
            padding-top: 15px;
            padding-bottom: 17px;
        }
    }

    a {
        color: @w;

        &:hover {
            color: @color-1;
        }
    }
}


.intro-page {
    margin-top: 60px;
    position: relative;
    text-align: center;

    @media(max-width: 900px){
        margin-top: 20px;
    }
    *:last-child {
        margin-bottom: 0;
    }

    .text {
        padding-top: 50px;
        padding-bottom: 0;

        .content-title {
            position: relative;
        }
    }

    .features-num {
        margin-top: 40px;

        .ft-num-item {
            padding: 20px;
            margin-right: 10px;
            box-sizing: border-box;
            background: @w;

            &:last-child {
                margin-right: 0;
            }
        }
    }
}

.breadgrumbs {
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
    opacity: 0.5;

    @media(max-width: 900px){
        margin-bottom: 10px;
    }
    li {
        list-style: none;
        display: inline-block;
        vertical-align: text-top;
        font-size: 10px;
        margin-right: 7px;
        padding-right: 6px;
        position: relative;
        vertical-align: middle;

        &::before {
            content: '';
            position: absolute;
            display: block;
            right: -8px;
            top: 50%;
            transform: translate(0, -50%);
            width: 14px;
            height: 14px;
            background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='10' height='14' viewBox='0 0 24 24' fill='none' stroke='%23000000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M9 18l6-6-6-6'/%3e%3c/svg%3e") no-repeat 50% 50%;
            background-size: contain;
            
            @media(max-width: 900px){
                margin-top: 1px;
            }
        }

        &:last-child{
            margin-right: 0;
            padding-right: 0;

            &::before {
                display: none;
            }
        }
        a {
            color: @color-1;
            text-decoration: none;

            &:hover {
                opacity: 0.5;
            }
        }
    }
}

.entrytext {

    figure {
        margin: 0;
    }

    .wp-block-image {
        margin-bottom: 20px;
    }

    img {
        height: auto;
    }

    h2,
    h3,
    h4,
    h5,
    h6 {
        font-size: 18px;
        line-height: 110%;
        font-weight: 400;
        margin-top: -5px;
        position: relative;
        font-family: @font-1;
        margin-top: 20px;
        margin-bottom: 20px;
        text-transform: uppercase;
        
        @media(max-width: 1600px) {
            font-size: 16px;
            line-height: 120%;
            margin-bottom: 10px;
        }
    }

    p {
        display: block;
        margin-bottom: 10px;
    }

    ul {
        margin-bottom: 20px;

        li {
            margin-bottom: 5px;
            color: @text-p;
            list-style: none;
            position: relative;
            padding-left: 15px;

            @media(max-width: 1600px) {
                padding-left: 12px;
            }
            &::before {
                content: '';
                position: absolute;
                left: 0;
                top: 8px;
                width: 5px;
                height: 5px;
                border-radius: 50%;
                background: @text;

                @media(max-width: 1600px) {
                    top: 7px;
                    width: 4px;
                    height: 4px;
                }
            }
        }
    }
    ol{
        margin: 0;
        margin-bottom: 20px;
        padding-left: 25px;

        li{
            margin-bottom: 5px;

            ul, ol{
                margin-top: 5px;
            }
        }
    }


    .wp-block-gallery {
        margin-top: 50px;
    }

    .blocks-gallery-item {
        width: auto;
        list-style: none;
        padding-left: 0;

        &::before {
            display: none;
        }
    }

    .wp-block-gallery .blocks-gallery-image,
    .wp-block-gallery .blocks-gallery-item {
        width: calc(50% - 8px);
    }

    .wp-block-table{
        margin-bottom: 20px;
    }
    table {
        margin-bottom: 20px;
        width: 100%;
        border: @border;

        @media(max-width: 900px) {
            overflow: scroll;
            display: block;
        }

        tbody {
            min-width: 500px;
        }

        tr {
            border-bottom: @border;

            &:nth-child(1) {
                font-weight: bold;
            }

            td, th {
                padding: 15px;
                border-right: @border;

                @media(max-width: 900px) {
                    padding: 10px;
                }
            }
        }
    }

    .product-selector-slider{
        margin-bottom: 20px;
        margin-top: 20px;
    }
    .wp-block-button{
        margin-top: 20px;
    }

    *:first-child {
        margin-top: 0;
    }
    *:last-child {
        margin-bottom: 0;
    }
}

.socials-fixed {
    position: fixed;
    right: 40px;
    bottom: 30px;
    z-index: 20;
    transition: 0.3s all;

    @media(max-width: 1400px) {
        right: 17px;
    }

    @media(max-width: 800px) {
        right: 10px;
    }

    .soc--inner {
        display: block;
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
        border-radius: 50%;
        transition: 0.3s all;

        @media(max-width: 800px) {
            width: 40px;
            height: 40px;
            margin-bottom: 6px;
        }

        &:last-child {
            margin-bottom: 0;
        }
    }

    .max {
        background: #161f8a url('../img/max.svg') no-repeat center center;
        background-size: 54%;

        &:hover {
            background-color: #4c59e2;
        }
    }

    .whatsapp {
        background: #6cd96c url('../img/whatsapp.svg') no-repeat center center;
        background-size: 60%;

        &:hover {
            background-color: #65ac65;
        }
    }

    .telegram {
        background: #61c7f5 url('../img/telegram_app.svg') no-repeat center center;
        background-size: 60%;

        &:hover {
            background-color: #009fe9;
        }
    }
}

.socials-fixed--active {
    bottom: 120px;

    @media(max-width: 1400px) {
        bottom: 100px;
    }

    @media(max-width: 500px) {}
}

.btn-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: block;
    width: 40px;
    height: 40px;
    background: lighten(@text, 7%) url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1' stroke-linecap='round' stroke-linejoin='arcs'%3e%3cpath d='M18 15l-6-6-6 6'/%3e%3c/svg%3e") no-repeat 50% 45%;
    border-radius: 50%;
    transition: 0.3s all;
    cursor: pointer;
    opacity: 0;
    z-index: -1;

    &:hover {
        background-color: @color-1;
    }

    @media(max-width: 900px) {
        width: 36px;
        height: 36px;
        right: 10px;
        bottom: 50px;
    }
}

.btn-top--active {
    opacity: 1;
    z-index: 20;
}

.page-error {
    text-align: center;

    .title {
        font-size: clamp(5rem, calc(-8.5rem + 24vw), 12.5rem);
        --font-size: clamp(5rem, calc(-8.5rem + 24vw), 12.5rem);
        font-weight: bold;
    }

    .title-block {
        margin-bottom: 40px;
    }

    .error-text {
        padding: 100px;
        padding-top: 50px;
        background: @bg;

        @media(max-width: 800px) {
            padding: 50px 30px;
            padding-top: 30px;
        }
    }
}



.cookie-modal {
    padding: 20px;
    border-radius: 15px;
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translate(-50%, 0);
    z-index: 999;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(241, 241, 241, 0.7);
    box-sizing: border-box;
    font-size: 12px;
    width: 600px;
    display: none;

    @media(max-width: 700px) {
        width: calc(~'100% - 20px');
        bottom: 10px;
        font-size: 11px;
        padding: 10px;
        padding-bottom: 12px;
    }

    .text-cookie {
        align-items: center;

        .title-cookie {
            width: calc(~'100% - 90px');
            margin-right: 20px;
        }

        .btn {
            display: inline-block;
            vertical-align: middle;
            padding: 10px 5px;
            padding-top: 8px;
            width: 70px;
        }
    }
}



.page-catalog {}

.cat-item {
    display: block;
    text-decoration: none;
    
    box-sizing: border-box;
    width: calc(~'50% - 5px');
    margin-right: 10px;
    margin-top: 10px;


    &:nth-child(2n) {
        margin-right: 0;
    }
    &:nth-child(-n+2) {
        margin-top: 0;
    }

    .miniature {
        aspect-ratio: 10 / 8 ;
        margin-bottom: 10px;

        @media(max-width: 900px){
            aspect-ratio: 8 / 10;
        }
        img{
            transition: 0.5s all;
        }
    }
    &:hover{
        .miniature img{
            transform: scale(1.1);
        }
    }
}

.descr-bottom-cat {
    .descr-bottom-cat-cont {
        padding: 40px;
        background: @bg;
        border-radius: 20px;
        margin-bottom: 10px;
        
        @media(max-width: 900px){
            padding: 20px;
        }
    }
    .btn{
        margin-top: 20px;
    }

    .text-open {
        margin-top: 20px;
        cursor: pointer;
        display: inline-block;
        padding-right: 30px;
        transition: 0.5s all;
        position: relative;

        &::before {
            content: '';
            position: absolute;
            right: 10px;
            top: 0;
            width: 14px;
            height: 100%;
            background: @text;
            -webkit-mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMwMDAwMDAiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWNoZXZyb24tcmlnaHQtaWNvbiBsdWNpZGUtY2hldnJvbi1yaWdodCI+PHBhdGggZD0ibTkgMTggNi02LTYtNiIvPjwvc3ZnPg==") no-repeat 50% 50%;
            mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMwMDAwMDAiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWNoZXZyb24tcmlnaHQtaWNvbiBsdWNpZGUtY2hldnJvbi1yaWdodCI+PHBhdGggZD0ibTkgMTggNi02LTYtNiIvPjwvc3ZnPg==") no-repeat 50% 50%;
            -webkit-mask-size: contain;
            mask-size: contain;
            transition: 0.3s all;
        }

        &:hover {
            &::before {
                background: @w;
            }
        }
    }

    .text-open.active {
        &::before {
            transform: rotate(-90deg);
        }
    }
}


.page-delivery {
    text-align: center;
    padding-top: 20px;

    .entrytext{
        ul{
            li{
                padding-left: 0;

                &::before{
                    display: none;
                }
            }
        }
    }
    .btn{
        margin-top: 25px;
    }
}



.steps {
    .title{
        margin-bottom: 40px;
    }
    .title-block{
        margin-bottom: 40px;
    }
    .step-cont {
        border-top: @border;
        padding-top: 40px;
        
        @media(max-width: 900px){
            overflow: auto;
        }
        .flex_block{
            @media(max-width: 900px){
                flex-wrap: nowrap;
                width: max-content;
            }
        }
    }

    .step-item {
        width: 20%;
        box-sizing: border-box;
        padding-right: 30px;
        padding-bottom: 40px;
        border-bottom: 1px solid @text;

        @media(max-width: 900px){
            width: 200px;
            padding-right: 30px;
        }
        br{
            @media(max-width: 900px){
                display: none;
            }
        }
        .num{
            margin-bottom: 20px;
        }
    }

    .btn {
        margin-top: 20px;
    }
}

.big-banner {
    background: @bg;

    .title-block {
        margin-bottom: 0;
    }

    .btn {
        margin-top: 30px;
    }
}

.big-banner-contain {
    position: relative;
    background: @bg;
    padding: 300px 50px;
    text-align: center;
    overflow: hidden;

    @media(max-width: 900px) {
        padding: 100px 20px;
    }
    @media(max-width: 800px) {
        display: none;
    }
    .text {
        position: relative;
        z-index: 2;
        color: @w;

        .title-block {
            margin-bottom: 0;
        }

        p {
            color: @w;
        }

        .btn {
            margin-top: 20px;
        }
    }

    .miniature {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.upak {
    position: relative;
    background: @bg;
    
    @media(max-width: 900px){
        padding-top: 50px;
        padding-bottom: 0;
    }
    .text {
        position: relative;
        z-index: 2;
        padding-right: calc(~'50% + 100px');
        
        @media(max-width: 900px){
            padding-right: 0;
            margin-bottom: 50px;
        }
        .btn{
            margin-top: 20px;
        }
    }
    .miniature{
        position: absolute;
        right: 0;
        top: 0;
        width: 50%;
        bottom: 0;
        border-radius: 0;
        
        @media(max-width: 900px){
            position: static;
            width: 100%;
        }
    }
}


.faq {
    .content-title {
        margin-bottom: 10px;
    }

    .faq-cont{
        align-items: flex-start;
    }

    .cont-left {
        width: calc(~'65% - 20px');
        margin-right: 40px;
        
        @media(max-width: 900px){
            width: 100%;
            margin-right: 0;
            margin-bottom: 30px;
        }
    }

    .cont-right {
        width: calc(~'35% - 20px');
        
        @media(max-width: 900px){
            width: 100%;
        }
    }

    .faq-banner {
        padding: 20px;
        background: @bg;
        border-radius: 20px;

        @media(max-width: 900px) {
            text-align: center;
        }
        .btn {
            margin-top: 20px;
        }
    }
}

.faq-item {
    border-bottom: @border;

    &:last-child {
        border-bottom: none;
    }

    .title-bold {
        font-weight: normal;
        position: relative;
        cursor: pointer;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-right: 30px;
        margin-bottom: 0;
        transition: 0.3s all;

        @media(max-width: 900px){
            padding-top: 10px;
            padding-bottom: 10px;
        }
        &::before {
            content: '';
            position: absolute;
            right: 0;
            top: 20px;
            width: 20px;
            height: 20px;
            background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLXBsdXMtaWNvbiBsdWNpZGUtcGx1cyI+PHBhdGggZD0iTTUgMTJoMTQiLz48cGF0aCBkPSJNMTIgNXYxNCIvPjwvc3ZnPg==") no-repeat center center;
            transition: 0.3s all;
            
            @media(max-width: 900px){
                top: 8px;
            }
        }

        &:hover {
            color: @color-2;
        }
    }

    .active {
        color: @color-2;

        &::before {
            transform: rotate(45deg);
            opacity: 0.5;
        }
    }

    .entrytext {
        display: none;
        padding-right: 40px;
        padding-bottom: 30px;
        
        @media(max-width: 900px){
            padding-right: 0;
            padding-bottom: 20px;
        }
    }
}

.faq-archive {
    .content-title{
        @media(max-width: 900px){
            margin-bottom: 0;
        }
    }
    .faq-archive-cont {
        padding: 40px;
        padding-bottom: 20px;
        border-radius: 20px;
        background: @bg;
        margin-bottom: 10px;
        
        @media(max-width: 900px){
            padding: 20px;
        }
    }
}

.miniature-about {
    aspect-ratio: 16 / 5;
    background: @text;
    border-radius: 0;
    margin-top: 40px;
    
    @media(max-width: 900px) {
        aspect-ratio: 16 / 9;
    }
}
.marquee-about{
    margin-top: 0 !important;
}

.about-page-magaz{
    text-align: center;

    .img-top{
        margin-bottom: 20px;

        .miniature{
            width: 300px;
            margin: 0 auto;
            margin-bottom: 20px;
            
            @media(max-width: 900px){
                width: 200px;
            }
        }
    }
    .entrytext{
        width: 80%;
        margin: 0 auto;
        
        @media(max-width: 1900px) {
            width: 100%;
        }
    }
}

.about-page {
    text-align: center;
    
    .entrytext {
        width: 50%;
        margin: 0 auto;
        
        @media(max-width: 900px) {
            width: auto;
        }
    }
    .btn{
        margin-top: 40px;
    }
}

.page-news {
    .categories-list {
        margin-bottom: 20px;
        overflow: auto;

        ul {
            flex-wrap: nowrap;
            width: max-content;

            li {
                margin-right: 20px;

                &:last-child {
                    margin-right: 0;
                }

                a {
                    display: block;
                    text-decoration: none;
                    padding: 5px 0;
                    padding-bottom: 7px;
                    text-wrap: nowrap;
                    transition: 0.3s all;
                    position: relative;
                    color: @color-2;

                    &:hover {
                        color: @color-1;
                    }
                }

                .link-disable {
                    color: @text;
                    padding-left: 20px;
                    padding-right: 20px;
                    border-radius: 20px;
                    background: @bg;
                    border: @border;
                }
            }
        }
    }
}

.page-single-news {
    .sidebar {
        margin-bottom: 30px;

        .news-info {
            margin-bottom: 20px;
            text-align: center;
        }

        .miniature {
            aspect-ratio: 16 / 9;
            margin-top: 20px;
            margin-bottom: 20px;
        }

        .oglavlen {
            padding: 20px;
            padding-bottom: 15px;
            background: @bg;

            .title-block {
                font-weight: 500;
                margin-bottom: 5px;
            }

            ul {
                li {
                    border-top: @border;

                    a {
                        text-decoration: none;
                        display: block;
                        padding: 10px 0;
                        line-height: 120%;
                    }
                }
            }

            .toc-sub {
                margin-left: 20px;
                margin-bottom: 10px;
                border-top: @border;
                padding-top: 10px;

                li {
                    border: none;

                    a {
                        padding: 5px 0;
                    }
                }
            }

            *:first-child {
                border-top: none;
            }
        }
    }

    .entrytext {}
}

.related-news {
    border-top: @border;

    .title-news {
        text-align: center;
    }

    .mob-list {
        @media(max-width: 1000px) {
            overflow: auto;
            margin-right: -30px;
        }

        @media(max-width: 700px) {
            overflow: auto;
            margin-right: -20px;
        }

        .flex_block {
            @media(max-width: 1000px) {
                width: max-content;
            }
        }

        .news-item {
            @media(max-width: 1000px) {
                width: 300px;
                margin-top: 0;
                margin-right: 20px;
            }

            @media(max-width: 700px) {
                width: 250px;
            }
        }
    }
}

.pagination {
    margin-top: 20px;

    span,
    a {
        display: inline-block;
        text-decoration: none;
        padding: 5px;
    }

    span {
        color: @text-p;
    }
}


.page-contacts {
    position: relative;
    background: @text;

    .miniature{
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        background: @text;
    }
    .intro-page{
        position: relative;
        z-index: 3;
        color: @w;
        margin: 0;
        padding-top: 60px;

        .breadgrumbs{
            li{
                color: @w;
                
                &::before {
                    background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='10' height='14' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M9 18l6-6-6-6'/%3e%3c/svg%3e") no-repeat 50% 50%;
                    background-size: contain;
                }
                a{
                    color: @w;
                }
            }
        }
    }

    .text-contacts{
        position: relative;
        z-index: 3;
        margin: 0 auto;
        width: max-content;
        text-align: center;
        padding: 40px;
        background: @bg;
        border-radius: 20px;
        display: flex;
        align-content: center;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        
        @media(max-width: 900px) {
            padding: 50px;
        }
    }

    .socials{
        margin-top: 20px;
    }

    .btn {
        display: inline-block;
        margin-top: 20px;
    }
}

#modal-smg-text{
    .modal-smg{
        width: 560px;
        text-align: left;
    }
}


.page-product-single {
    padding-bottom: 0;

    .product-top {
        text-align: center;
        border-bottom: @border;

        .miniature-big-left {
            width: 50%;
            min-height: 80vh;
            border-radius: 0;
            
            @media(max-width: 900px){
                display: none;
            }
        }

        .info-right {
            width: 50%;
            box-sizing: border-box;
            padding: 100px;

            @media(max-width: 1400px){
                padding: 70px 50px;
            }
            @media(max-width: 900px){
                width: 100%;
                padding: 0;
                padding: 50px 20px;
                margin-top: 20px;
            }
            .price {
                font-weight: normal;

                span {
                    opacity: 0.5;
                    font-size: 14px;
                    text-decoration: line-through;
                    display: block;
                    margin-bottom: -5px;
                }
            }

            .image-left {
                position: relative;
                overflow: hidden;
                margin: 0 120px;

                @media(max-width: 1600px) {
                    margin: 0 50px;
                }
                @media(max-width: 800px){
                    margin: 0;
                }
                .slider-cont {
                    @media(max-width: 1000px) {
                        margin-left: 0 !important;
                        margin-right: 0 !important;
                    }

                    .swiper-wrapper {
                        @media(max-width: 1000px) {
                            padding: 0 !important;
                        }
                    }
                }

                .slider-cont-top {
                    .slide-miniature-big {
                        margin-bottom: 10px;

                        .miniature {
                            position: relative;
                            padding-top: 90%;
                            background: #fff;
                            outline: none;

                            img {
                                position: absolute;
                                left: 0;
                                top: 0;
                                box-sizing: border-box;
                                object-fit: contain;
                                mix-blend-mode: darken;
                                border-radius: 20px;
                            }
                        }

                        .slider-prev {
                            left: 0;
                            width: 50px;
                            right: 0;
                        }

                        .slider-next {
                            right: 0;
                            width: 50px;
                            right: 0;
                        }
                    }
                }

                .slider-cont-bottom {
                    .slide-miniature-thumb {
                        .miniature {
                            padding-top: 18%;
                            background: transparent;
                            border: @border;
                            cursor: pointer;
                            transition: 0.3s all;
                            box-sizing: border-box;
                            background: #fff;
                            outline: none;
                            position: relative;

                            @media(max-width: 1000px) {
                                padding-top: 21%;
                            }
                            &:hover {
                                img {
                                    opacity: 0.5;
                                }
                            }

                            img {
                                position: absolute;
                                left: 0;
                                top: 0;
                                box-sizing: border-box;
                                object-fit: cover;
                                transition: 0.3s all;
                                mix-blend-mode: darken;
                            }
                        }

                        .swiper-slide-thumb-active {
                            border-color: @text;
                        }
                    }
                }
            }

            .attribute{
                margin-top: 20px;
                margin-bottom: 10px;
            }
            .btn{
                position: relative;
                
                &::before{
                    content: '';
                    position: absolute;
                    left: 50%;
                    top: 50%;
                    width: 20px;
                    height: 20px;
                    transform: translate(-50%, -50%) rotate(0deg);
                    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1sb2FkZXItY2lyY2xlLWljb24gbHVjaWRlLWxvYWRlci1jaXJjbGUiPjxwYXRoIGQ9Ik0yMSAxMmE5IDkgMCAxIDEtNi4yMTktOC41NiIvPjwvc3ZnPg==") no-repeat 50% 50%;
                    z-index: 10;
                    opacity: 0;
                    transition: 0.3s all;
                }
                &.load {
                    pointer-events: none;
                    cursor: default;
                    color: @text;
                    background: @text;

                    &::before {
                        opacity: 1;
                        animation: btn-loader-spin 0.8s linear infinite;
                    }
                }
                @keyframes btn-loader-spin {
                    from {
                        transform: translate(-50%, -50%) rotate(0deg);
                    }

                    to {
                        transform: translate(-50%, -50%) rotate(360deg);
                    }
                }
            }
        }
    }

    .product-bottom {
        padding-bottom: 0;

        .product-bottom-cont {
            border-bottom: @border;
            
            @media(max-width: 900px){
                border-bottom: none;
            }
        }

        .descr-left {
            width: 50%;
            box-sizing: border-box;
            padding-right: 50px;
            
            @media(max-width: 900px){
                width: 100%;
                padding-right: 0;
                margin-bottom: 40px;
            }
        }

        .descr-right {
            width: 50%;
            
            @media(max-width: 900px){
                width: 100%;
            }
        }

        .haracteristic {
            .har-item {
                padding-top: 15px;
                padding-bottom: 17px;
                border-bottom: @border;

                &:first-child{
                    padding-top: 0;
                }
                &:last-child {
                    border-bottom: none;
                    padding-bottom: 0;
                }

                span {
                    display: block;
                    width: 50%;
                }
            }
        }

        .delivery-info {
            border-bottom: @border;
            
            @media(max-width: 900px){
                padding-top: 0;
            }
        }
    }

    .add-to-cart-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        margin: 0 auto;
        margin-top: 20px;
        height: 40px;

        @media(max-width: 900px){
            margin-top: 20px;
        }
        .quanity-cont {
            margin: 0;
        }

        .btn {
            margin: 0;
        }
    }
}

.products-recomented {
    padding-bottom: 10px;
    overflow: hidden;
}

// Слайдеры товаров/блога/новостей: 4 целых слайда, 5й уходит за контейнер

.page-portfolio,
.products-recomented,
.products-news,
.portfolio {
    overflow: hidden;
}

.portfolio-item-slider,
.products-recomented-slider,
.products-news-slider,
.portfolio-slider {
    overflow: visible !important; // слайды выходят за swiper и видны правее контейнера
}

.page-features {
    .big-banner-features {
        border-radius: 10px;
        overflow: hidden;
        position: relative;

        .text {
            position: absolute;
            left: 40px;
            top: 40px;
            z-index: 3;
            color: @w;
            width: 700px;

            @media(max-width: 900px){
                position: relative;
                width: 100%;
                left: auto;
                top: auto;
                box-sizing: border-box;
                padding: 20px;
                padding-bottom: 50px;
            }
            * {
                color: @w;
            }
            p{
                margin-bottom: 20px;
            }

            .features-num{
                width: max-content;
                
                .ft-num-item{
                    border-top: 1px solid #fff;
                    margin-right: 40px;
                    padding-top: 20px;

                    @media(max-width: 900px){
                        margin-right: 20px;
                    }
                    .content-title{
                        font-size: 50px;
                        margin-bottom: 5px;
                        
                        @media(max-width: 900px){
                            font-size: 30px;
                        }
                    }
                }
            }
        }

        .miniature {
            aspect-ratio: 16 / 7;
            position: relative;

            @media(max-width: 900px){
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                aspect-ratio: auto;
            }
            &::before {
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.4);
            }
        }
    }

    .ft-item {
        cursor: pointer;
        position: relative;
        margin-top: 40px;

        @media(max-width: 700px){
            margin-top: 40px !important;
        }
        &:nth-child(-n+3) {
            margin-top: 0;
            
            @media(max-width: 1000px){
                margin-top: 40px;
            }
        }
        &:nth-child(-n+2) {
            @media(max-width: 1000px){
                margin-top: 0;
            }
        }
        &:first-child{
            @media(max-width: 700px){
                margin-top: 0 !important;
            }
        }
        .miniature {
            aspect-ratio: 16 / 9;
            margin-bottom: 20px;
        }
        .btn{
            position: absolute;
            bottom: 0;
            left: 0;
        }
    }
}

.modal-smg-features {
    .modal-smg_boby-content {
        .modal-smg {
            width: 1000px;
            text-align: left;

            .modal-smg_container {
                padding-left: calc(~'50% + 40px');
            }
        }

        .miniature {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: calc(~'50% - 20px');
            border-radius: 10px;
        }
    }
}


.portfolio-item {
    text-align: center;
    text-decoration: none;
    display: block;

    .miniature {
        position: relative;
        padding-top: 25%;

        @media(max-width: 1000px){
            padding-top: 40%;
        }
        img{
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
        }
    }

    .text {
        padding-right: 20px;
    }
}
.portfolio {
    text-align: center;

    .btn {
        margin-top: 40px;
    }
    .portfolio-item {
        text-align: left;

        .miniature{
            padding-top: 120%;
            margin-bottom: 10px;
        }
    }
}

.presentation {
    text-align: center;

    .flex_block{
        justify-content: center;
    }
    .doc-item {
        padding: 20px;
        border-radius: 20px;
        border: @border;
        min-height: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        
        box-sizing: border-box;
		width: calc(~'25% - 15px');
        margin-right: 20px;
        margin-top: 20px;

        @media(max-width: 1400px) {
            min-height: 160px;
        }
        @media(max-width: 900px) {
            width: calc(~'50% - 5px');
            min-height: auto;
            margin-right: 10px;
            margin-top: 10px;
            padding: 20px 10px;
        }

        &:nth-child(4n) {
            margin-right: 0;

            @media(max-width: 900px) {
                margin-right: 10px;
            }
        }

        &:nth-child(2n) {
            @media(max-width: 900px) {
                margin-right: 0;
            }
        }

        &:nth-child(-n+4) {
            margin-top: 0;

            @media(max-width: 900px) {
                margin-top: 10px;
            }
        }

        &:nth-child(-n+2) {
            @media(max-width: 900px) {
                margin-top: 0;
            }
        }
        span{
            display: block;

            &::before{
                content: '';
                display: block;
                width: 20px;
                height: 20px;
                background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgY2xhc3M9Imx1Y2lkZSBsdWNpZGUtYm9vay1vcGVuLWljb24gbHVjaWRlLWJvb2stb3BlbiI+PHBhdGggZD0iTTEyIDd2MTQiLz48cGF0aCBkPSJNMyAxOGExIDEgMCAwIDEtMS0xVjRhMSAxIDAgMCAxIDEtMWg1YTQgNCAwIDAgMSA0IDQgNCA0IDAgMCAxIDQtNGg1YTEgMSAwIDAgMSAxIDF2MTNhMSAxIDAgMCAxLTEgMWgtNmEzIDMgMCAwIDAtMyAzIDMgMyAwIDAgMC0zLTN6Ii8+PC9zdmc+") no-repeat 50% 50%;
                margin: 0 auto;
                margin-bottom: 10px;
                transition: 0.3s all;
            }
        }
        &:hover{
            span{
                &::before{
                    opacity: 0.5;
                }
            }
        }
    }
}

// background: red;
// -webkit-mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMwNDA3MTQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1jYWxjdWxhdG9yLWljb24gbHVjaWRlLWNhbGN1bGF0b3IiPjxyZWN0IHdpZHRoPSIxNiIgaGVpZ2h0PSIyMCIgeD0iNCIgeT0iMiIgcng9IjIiLz48bGluZSB4MT0iOCIgeDI9IjE2IiB5MT0iNiIgeTI9IjYiLz48bGluZSB4MT0iMTYiIHgyPSIxNiIgeTE9IjE0IiB5Mj0iMTgiLz48cGF0aCBkPSJNMTYgMTBoLjAxIi8+PHBhdGggZD0iTTEyIDEwaC4wMSIvPjxwYXRoIGQ9Ik04IDEwaC4wMSIvPjxwYXRoIGQ9Ik0xMiAxNGguMDEiLz48cGF0aCBkPSJNOCAxNGguMDEiLz48cGF0aCBkPSJNMTIgMThoLjAxIi8+PHBhdGggZD0iTTggMThoLjAxIi8+PC9zdmc+") no-repeat 50% 50%;
// mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMwNDA3MTQiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1jYWxjdWxhdG9yLWljb24gbHVjaWRlLWNhbGN1bGF0b3IiPjxyZWN0IHdpZHRoPSIxNiIgaGVpZ2h0PSIyMCIgeD0iNCIgeT0iMiIgcng9IjIiLz48bGluZSB4MT0iOCIgeDI9IjE2IiB5MT0iNiIgeTI9IjYiLz48bGluZSB4MT0iMTYiIHgyPSIxNiIgeTE9IjE0IiB5Mj0iMTgiLz48cGF0aCBkPSJNMTYgMTBoLjAxIi8+PHBhdGggZD0iTTEyIDEwaC4wMSIvPjxwYXRoIGQ9Ik04IDEwaC4wMSIvPjxwYXRoIGQ9Ik0xMiAxNGguMDEiLz48cGF0aCBkPSJNOCAxNGguMDEiLz48cGF0aCBkPSJNMTIgMThoLjAxIi8+PHBhdGggZD0iTTggMThoLjAxIi8+PC9zdmc+") no-repeat 50% 50%;
// -webkit-mask-size: contain;
// mask-size: contain;

// Классы-помощники для анимаций Barba.js
body.is-transitioning {
    .head-smg {
        height: 100vh !important;
        background-color: @bg !important;

        .logo {
            &::before {
                opacity: 1 !important;
            }
        }

        .btn-menu,
        .head-right {
            opacity: 0 !important;
            pointer-events: none !important;
        }
    }
}

body.is-transitioning-home {
    main>*:not(.intro):not(.head-smg) {
        opacity: 0;
        pointer-events: none;
    }

    .intro .btn {
        opacity: 0;
    }
}




.services{
    .content-title{
        text-align: center;
        margin-bottom: 5px;
    }
}
.services-item {
    position: relative;
    border-bottom: @border;
    display: block;
    text-decoration: none;
    margin: 0;
    padding: 20px 0;
    padding-right: 40px;
    
    &::after {
        content: '';
        position: absolute;
        top: 50%;
        left: -30px;
        margin-top: -10px;
        width: 30px;
        height: 20px;
        background: url('../img/logo.svg') no-repeat 50% 50%;
        background-size: contain;
        transform: rotate(90deg);
        opacity: 0;
        pointer-events: none;
        transition: 0.3s all;
        
        @media(max-width: 1000px){
            display: none;
        }
    }
    &::before {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translate(0, -50%);
        width: 26px;
        height: 26px;
        background: @bg url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWNoZXZyb24tcmlnaHQtaWNvbiBsdWNpZGUtY2hldnJvbi1yaWdodCI+PHBhdGggZD0ibTkgMTggNi02LTYtNiIvPjwvc3ZnPg==") no-repeat center center;
        border-radius: 50%;
    }
    &:hover{
        &::after{
            opacity: 1;
            pointer-events: auto;
        }
    }

    span {
        display: block;
    }
}

.steps-pokup{
    position: relative;
    background: @text;

    *:not(.btn){
        color: @w;
    }
    .container{
        position: relative;
        z-index: 3;
    }
    .miniature{
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        
        &::before{
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
        }
    }

    .step-cont{
    }
    .step-item{
        position: relative;
        padding-left: 50px;
        padding-bottom: 30px;

        &::before{
            content: '';
            position: absolute;
            left: 15px;
            top: 33px;
            bottom: -2px;
            width: 1px;
            background: @w;
        }
        .num{
            position: absolute;
            left: 0;
            top: 2px;
            width: 30px;
            height: 30px;
            border: 1px solid #fff;
            text-align: center;
            line-height: 28px;
            border-radius: 50%;
        }
        .title-bold{
            font-weight: normal;
        }
        &:last-child{
            padding-bottom: 0;

            &::before{
                display: none
            }
        }
    }
    .btn{
        margin-top: 30px
    }
}

.page-systemloyal{
    .flex_block{
        gap: 10px;
    }
    .loyal-item{
        padding: 20px;
        border: @border;
        flex: 1;
        border-radius: 20px;

        .num{
            margin-bottom: 40px;
        }
    }
}


.marquee {
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    background: @bg;
    margin-top: 100px;

    @media(max-width: 1000px) {
        font-size: 12px;
        padding: 7px 0;
    }

    .marquee__inner {
        display: inline-block;
        white-space: nowrap;
        animation: marquee 25s linear infinite;

        span {
            display: inline-block;
            margin-right: 30px;
            padding-right: 35px;
            font-weight: 400;
            position: relative;
        }
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}



.intro-services{
    min-height: 100vh;
    color: @w;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    @media(max-width: 1000px) {
        min-height: 70vh;
    }
    .container{
        position: relative;
        z-index: 3;
    }
    .text{
        text-align: center;
        
        .breadgrumbs {
            li {
                color: @w;

                &::before {
                    background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='10' height='14' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M9 18l6-6-6-6'/%3e%3c/svg%3e") no-repeat 50% 50%;
                    background-size: contain;
                }

                a {
                    color: @w;
                }
            }
        }
    }
    .miniature{
        border-radius: 0;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;

        &::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 2;   
        }
    }
}
.page-single-services{
    .services-text{
        position: relative;

        .miniature{
            order: 1;
            border-radius: 0;
            width: 50%;
            aspect-ratio: 16 / 10;
            
            @media(max-width: 900px) {
                width: 100%;
                order: 2;
            }
        }
        .text{
            order: 2;
            padding: 100px;
            width: 50%;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            
            @media(max-width: 1400px) {
                padding: 100px 50px;
            }
            @media(max-width: 1000px) {
                padding: 100px 20px;
            }
            @media(max-width: 900px) {
                padding: 50px 20px;
                padding-top: 100px;
                width: 100%;
                order: 1;
            }
            .num{
                margin-bottom: 30px;
            }
            .btn{
                margin-top: 17px;
            }
        }
        &:nth-child(2n){
            .miniature{
                order: 2;
                
                @media(max-width: 900px) {
                    order: 2;
                }
            }
            .text{
                order: 1;
                
                @media(max-width: 900px) {
                    order: 1;
                }
            }
        }
    }
    .btn{
        // margin-top: 40px;
    }
}

.text-bottom-sigle-servces{
    background: @bg;

    .read-more-wrapper {
        position: relative;
        
        .read-more-content {
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: max-height 0.5s ease;
            max-height: 120px;
            
            &.expanded {
                -webkit-line-clamp: unset;
                max-height: 2000px;
            }
        }
    }
    .read-more-btn{
        padding: 5px 0;
        border: none;
        outline: none;
        border-bottom: 1px solid @text;
        display: inline-block;
        background: transparent;
        margin-top: 20px;
        transition: 0.3s all;

        &:hover{
            color: @color-2;
        }
    }
}

.page-portfolio{
    .portfolio-item{
        text-align: center
    }
    .text{
        margin-bottom: 20px
    }
}


.services-recomented{
    padding: 80px 0;

    @media (max-width: 900px) {
        padding: 30px 0;
    }
    .services-item{
        &:last-child{
            border-bottom: none;
        }
    }
}

.home{
    .mobile-footer-menu{
        display: none !important;
    }
}
.mobile-footer-menu{
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: @w;
    border-top: @border;
    z-index: 100;
    text-align: center;

    @media(max-width: 900px){
        display: block;
    }
    ul{
        li{
            width: 25%;

            a{
                position: relative;
                color: @text;
                font-size: 12px;
                display: inline-block;
                padding: 13px 10px;
                padding-left: 22px;
                background-repeat: no-repeat;
                background-position: left center;
                text-decoration: none;

                .cart-count{
                    position: absolute;
                    left: 9px;
                    bottom: 8px;
                    font-size: 10px;
                    padding: 0 4.5px;
                    line-height: 13px;
                    border-radius: 10px;
                    background: @text;
                    color: @w;
                    transition: 0.3s all;
                }
            }
            &:nth-child(1) a{
                background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMwMDAwMDAiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1sYXlvdXQtZ3JpZC1pY29uIGx1Y2lkZS1sYXlvdXQtZ3JpZCI+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iNyIgeD0iMyIgeT0iMyIgcng9IjEiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSI3IiB4PSIxNCIgeT0iMyIgcng9IjEiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSI3IiB4PSIxNCIgeT0iMTQiIHJ4PSIxIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iNyIgeD0iMyIgeT0iMTQiIHJ4PSIxIi8+PC9zdmc+");
            }
            &:nth-child(2) a{
                background-image: url("../img/logo-red.svg");
                background-size: 20px;
                background-position: left center;
                color: #660505;
            }
            &:nth-child(3) a{
                background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMwMDAwMDAiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1saXN0LWljb24gbHVjaWRlLWxpc3QiPjxwYXRoIGQ9Ik0zIDVoLjAxIi8+PHBhdGggZD0iTTMgMTJoLjAxIi8+PHBhdGggZD0iTTMgMTloLjAxIi8+PHBhdGggZD0iTTggNWgxMyIvPjxwYXRoIGQ9Ik04IDEyaDEzIi8+PHBhdGggZD0iTTggMTloMTMiLz48L3N2Zz4=");
            }
            &:nth-child(4) a{
                background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiMwMDAwMDAiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1zaG9wcGluZy1jYXJ0LWljb24gbHVjaWRlLXNob3BwaW5nLWNhcnQiPjxjaXJjbGUgY3g9IjgiIGN5PSIyMSIgcj0iMSIvPjxjaXJjbGUgY3g9IjE5IiBjeT0iMjEiIHI9IjEiLz48cGF0aCBkPSJNMi4wNSAyLjA1aDJsMi42NiAxMi40MmEyIDIgMCAwIDAgMiAxLjU4aDkuNzhhMiAyIDAgMCAwIDEuOTUtMS41N2wxLjY1LTcuNDNINS4xMiIvPjwvc3ZnPg==");
            }
        }
    }
}

// Ошибка локации для доставки с примеркой
.dostavka-error {
    color: #e53935;
    background-color: rgba(229, 57, 53, 0.08);
    border: 1px solid rgba(229, 57, 53, 0.2);
    padding: 12px 15px;
    border-radius: 10px;
    margin: 15px 0;
    font-weight: 500;
}
.error-modal-mini{
    display: block;
    width: 40px;
}

/* WOOCOMMERCE STYLES */
@import "../woocommerce/woo-styles.less";