body {
    font-family: Lato, Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    margin: 0;
    padding: 0;
}


.b-header {
    top: 0;
    position: fixed;
    z-index: 9;
    width: 100%;
    background-color: rgba(66,66,66,.98);
}
    .b-header__container {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        flex-direction: row;
        align-content: space-between;
        align-items: center;
    }
        .b-header__menu {
            position: relative;
        }
            #js-nav-check {
                display: none;
            }
            .b-header-icon {
                display: none;
                color: #ffffff;
            }
            .b-header-nav {
                display: flex;
                flex-wrap: wrap;
                justify-content: flex-start;
            }
                .b-header-nav__link {
                    font-family: Lato, Arial, sans-serif;
                    color: #ffffff;
                    font-size: 1.4rem;
                    text-decoration: none;
                    margin-right: 1rem;
                    position: relative;
                }
                    .b-header-nav__link::after {
                        content: '';
                        position: absolute;
                        width: 100%;
                        transform: scaleX(0);
                        height: 2px;
                        bottom: -1px;
                        left: 0;
                        background-color: #ffffff;
                        transform-origin: bottom right;
                        transition: transform 0.2s ease-out;
                    }
                        .b-header-nav__link:hover::after, .b-header-nav__link--active::after {
                            transform: scaleX(1);
                            transform-origin: bottom left;
                        }
        .b-header__section {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            flex-direction: row;
            align-items: center;
        }
            .b-header-work-time {
                position: relative;
                display: inline-block;
                color: #ffffff;
                font-size: 0.85rem;
            }


.b-main {
    margin-top: max(1rem, 3.8vh);
}
    .b-container {
        position: relative;
        width: min(90%, 110rem);
        margin: 0 auto;
    }
        .b-html-text {
            padding: 2rem 0;
        }


.bg-gray--footer {
    height: 6rem;
}
.b-footer {
    background-color: #424242;
    color: #fff;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
    .b-footer__container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }
        .b-footer__block-item {
            margin: 0.3rem 0;
            font-weight: 300;
        }
            .b-footer__block-item--title {
                font-size: 130%;
                font-weight: 600;
                margin-bottom: 1rem;
            }
            .b-footer__block-item--weight {
                font-weight: 500;
                color: #fff;
                text-decoration: none;
            }


.btn {
    font-family: Lato, Arial, sans-serif;
    border: 1px solid #000000;
    background: none;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 300;
    cursor: pointer;
    padding: 3px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}
    .btn:hover, .btn:hover .btn__arrow,
    .btn--active, .btn--active .btn__arrow {
        background-color: #000000;
        color: #ffffff;
        border-color: #ffffff;
    }
    .btn__text {
        display: inline-block;
        padding: 0.7rem 1.2rem 0.6rem 1.2rem;
    }
    .btn__arrow {
        display: inline-block;
        border-left: 1px solid #000000;
        font-size: 2rem;
        padding: 0 0.5rem;
    }
        .btn--active .btn__arrow {
            transform: rotate(180deg);
            border-right: 1px solid;
            border-left: 0;
        }

.bg-white {
    background-color: #ffffff;
}
.bg-gray {
    background-color: #e0e0e0;
}

.b-container-breadcrumb {
    margin-top: 5rem;
}
    .b-breadcrumb {
        padding: 2rem 0;
        display: flex;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
    }
        .b-breadcrumb__item {
            text-decoration: none;
            text-transform: uppercase;
            color: #000000;
        }
        .b-breadcrumb__divider {
            margin: 0 1rem;
            font-size: 2rem;
        }
.b-btn-list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}



/* ---------------------------------- home ---------------------------------- */
.bg-video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    filter: blur(0.3rem);
}
.b-slogan {
    margin-top: max(6rem, 10vh);
    margin-left: clamp(1rem, 10vw, 20rem)
}
    .b-slogan__container {
        background-color: rgba(255, 255, 255, 0.8);
        height: 75vh;
        width: min(50rem, 80vw);
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }
        .b-slogan__container > div {
            margin-bottom: max(1rem, 5vh);
        }
            .b-slogan__container > div:last-child {
                margin-bottom: 0;
            }
        .b-slogan__title {
            font-size: clamp(2rem, 8vw, 3.7rem);
            font-weight: 200;
        }
        .b-slogan__text {
            font-size: clamp(1rem, 3vh, 1.5rem);
            font-weight: 100;
        }
.b-advantage {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
    .b-advantage__title {
        width: min(50rem, 95%);
        margin: 0 auto;
        text-align: center;
        border: 1px solid #9d9d9d;
        border-bottom: none;
        font-size: 3rem;
        font-weight: 200;
        padding-top: 2rem;
        text-transform: uppercase;
    }
        .b-advantage__title--lower {
            padding-top: 0.2rem;
            font-size: 1.2rem;
            font-weight: 200;
            margin: 0;
        }
    .b-advantage__grid {
        display: grid;
        margin-top: 3rem;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
        align-items: stretch;
        justify-items: center;
        border-top: 1px solid #9d9d9d;
        box-sizing: border-box;
    }
        .b-advantage-item {
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            align-content: center;
            align-items: center;
            padding: 2rem;
            box-sizing: border-box;
            text-align: center;
            border-bottom: 1px solid #9d9d9d;
            border-right: 1px solid #9d9d9d;
        }
            .b-advantage-item:nth-child(4n) {
                border-right: none;
            }
            .b-advantage-item__icon {
                font-size: 6rem;
            }
            .b-advantage-item__title {
                margin: 0;
                margin-top: 1rem;
                margin-bottom: 1rem;
                font-size: 1.5rem;
                font-weight: 300;
            }
            .b-advantage-item__text {
                margin: 0;
                font-size: 1rem;
                font-weight: 200;
                line-height: 1.2;
            }
.b-category {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}
    .b-category > div {
        width: 50%;
        height: 50vh;
    }
    .b-category__img {
        background-size: cover;
        background-position: center;
    }
    .b-category__info {
        padding: 0 3vw;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
    }
        .b-category__info-title {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            text-transform: uppercase;
            font-weight: 400;
            margin-bottom: 1rem;
        }
        .b-category__info-text {
            font-size: 1.2rem;
            font-weight: 300;
        }
        .b-category__info-link {
            color: #000000;
            font-weight: 500;
        }

.b-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
    .b-list__item {
        width: 30.5%;
        box-shadow: 0 2px 10px rgba(0,0,0,.1);
        margin-bottom: 4.5%;
    }
        .b-list__item-link {
            position: relative;
            display: block;
            height: clamp(200px, 20vw, 410px);
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        .b-list__item-info {
            background-color: #ffffff;
            padding: 2rem 1rem;
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
            .b-item__like {
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                align-items: center;
            }
                .b-item__like i {
                    color: #aaaaaa;
                }
                    .b-item__like>i {
                        font-size: 2.3rem;
                        margin-right: 1.5rem;
                    }
                    .b-item__like>span>i {
                        font-size: 2rem;
                        cursor: pointer;
                        margin-left: 0.5rem;
                        transition: color 0.2s ease-in;
                    }
                        .b-item__like--active>span>i, .b-item__like>span>i:hover {
                            color: #202020;
                        }
            .b-item__price {
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                align-items: center;
                margin-right: 5rem;
            }
                .b-item__price i {
                    color: #aaaaaa;
                }
                    .b-item__price>i {
                        font-size: 2rem;
                        margin-left: 0.6rem;
                    }



/* ---------------------------------- catalog pages ---------------------------------- */
.b-filter {
    display: none;
    box-shadow: none;
}
    .accordion-container {
        margin-bottom: 2rem;
    }
        .ac {
            margin: 0;
            border: none;
            background-color: #f0f0f0;
            margin-bottom: 1rem;
        }
            .ac .ac-trigger {
                font: 400 1.2rem Lato, Arial, sans-serif;
                padding: 1rem 0 0.8rem 2rem;
            }
            .ac .ac-trigger:focus {
                color: inherit !important;
            }
            .ac .ac-trigger::after {
                content: "\f106";
                font-family: "Font Awesome 6 Pro";
                font-weight: 100;
                right: 1.8rem;
                top: 50%;
                font-size: 2rem;
            }
                .ac.is-active .ac-header {
                    border-bottom: 1px solid rgba(0,0,0,.2);
                }
                .ac.is-active>.ac-header .ac-trigger::after {
                    content: "\f107";
                }
            .ac-panel {
                display: flex;
                flex-direction: column;
                flex-wrap: wrap;
                align-content: flex-start;
                justify-content: center;
                align-items: flex-start;
            }
                .ac-panel__item {
                    font-size: 1.3rem;
                    margin: 0.5rem 0 0.5rem 2rem;
                }
                    .ac-panel__item input {
                        width: 1.1rem;
                        height: 1.1rem;
                        margin: 0;
                        margin-right: 0.5rem;
                    }
.b-order {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
}
    .b-order__links {
        background-color: #f0f0f0;
        padding: 3px;
        display: none;
        margin-right: 2rem;
    }
        .b-order__links a{
            text-decoration: none;
            color: #000000;
            font-size: 1.5rem;
            display: inline-block;
            padding: 0.2rem 1rem 0 1rem;
            margin-top: 0.3rem;
        }
            .b-order__links a:first-child{
                border-right: 1px solid rgba(0,0,0,.2);
            }
                .table-header-sort-link--active {
                    font-weight: 500;
                }



/* ---------------------------------- item page ---------------------------------- */
.b-view-title {
    text-transform: uppercase;
    font-size: 2.2rem;
    font-weight: 400;
    padding-top: 2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #000000;
}
h1.b-view-title {
    margin-top: 0;
}
.b-view-description {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}
    .b-view-description span{
        font-size: 1.4rem;
        margin-right: 2rem;
    }
        .b-view-description span strong{
            font-size: 1.3rem;
            font-weight: 400;
            text-transform: uppercase;
            font-style: italic;
        }
.b-more {
    display: none;
    padding: 1.5rem;
    padding-bottom: 0;
    border: 1px solid #000000;
    margin-top: 2.5rem;
}
    .b-more__item {
        margin-bottom: 1.5rem;
    }
        .b-item__title {
            font-size: 1.1rem;
            font-weight: 400;
            margin-bottom: 0.2rem;
        }
.b-card {
    display: flex;
    margin-top: 3rem;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
}
    .b-card__main-image{
        width: 70%;
        height: 80vh;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .b-card__thumbnails{
        width: 30%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        height: 80vh;
        overflow-y: auto;
    }
        .b-card__thumbnails-item {
            width: 90%;
            height: 37vh;
            margin-left: 10%;
            margin-bottom: 10%;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
            .b-card__thumbnails-item:last-child {
                margin-bottom: 0;
            }
.b-image--hover {
    position: relative;
}
    .b-image--hover::after {
        position: absolute;
        height: 100%;
        width: 100%;
        background-color: rgba(0,0,0,.3);
        display: block;
        top: 0;
        left: 0;
        transition: opacity .25s;
        content: "";
        cursor: pointer;
        opacity: 0;
    }
        .b-image--hover:hover::after {
            opacity: 1;
        }
.b-icons {
    display: flex;
    margin-top: 2rem;
    padding-bottom: 2rem;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-around;
}
.b-advantage--item-page {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
    .b-advantage--item-page .b-advantage__grid {
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: repeat(1, 1fr);
    }
        .b-advantage--item-page .b-advantage-item:nth-child(4n) {
            border-right: 1px solid #9d9d9d;
        }
        .b-advantage--item-page .b-advantage-item:nth-child(5n) {
            border-right: none;
        }



/* ---------------------------------- order popup ---------------------------------- */
.b-popup-order {
    position: relative;
}
    .b-popup-order__title {
        font-size: 1.5rem;
        font-weight: 400;
    }
    .b-popup-order__inputs {
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }
        .b-popup-order__input-item {
            display: block;
            margin-bottom: 2rem;
            position: relative;
        }
            .b-popup-order__input-item:last-child {
                margin-bottom: 1rem;
            }
            .b-popup-order__input-item-error {
                position: absolute;
                box-sizing: border-box;
                color: #ff0000;
                font-size: 0.7rem;
                left: 1.1rem;
                bottom: -1rem;
            }
            .b-popup-order__input-item input, .b-popup-order__input-item textarea {
                border: 1px solid #404040;
                padding: 0.7rem 1rem 0.6rem 1rem;
                color: #202020;
                font-family: Lato, Arial, sans-serif;
                font-size: 1rem;
                font-weight: 300;
                transition: all .25s;
                width: 100%;
                box-sizing: border-box;
            }
                .b-popup-order__input-item textarea {
                    resize: none;
                    height: 10rem;
                }
                .b-popup-order__input-item input::placeholder, .b-popup-order__input-item textarea::placeholder {
                    text-transform: uppercase;
                }
                .b-popup-order__input-item input:focus, .b-popup-order__input-item textarea:focus {
                    box-shadow: none;
                    outline: 0;
                    background-color: #e0e0e0;
                }



/* ---------------------------------- anime ---------------------------------- */
.b-motion-path {
    position: fixed;
    right: 2rem;
    bottom: 4rem;
    z-index: 999;
}
    .b-motion-path__el {
        position: absolute;
        font-size: 1.5rem;
        margin-top: -11px;
        margin-left: -11px;
    }
    .b-motion-path__link {
        display: inline-block;
        text-align: center;
        text-decoration: none;
        color: #000000;
        font-size: 0.9rem;
        position: absolute;
        top: 2.2rem;
        right: 1.2rem;
    }



/* ---------------------------------- contacts ---------------------------------- */
.b-contacts{
    padding: 1rem 3rem;
    box-sizing: border-box;
}
    .b-contacts h1{
        margin-top: 0;
        font-size: 2.5rem;
        font-weight: 500;
        text-transform: uppercase;
    }
    .b-contacts h2{
        margin-top: 4rem;
        margin-bottom: 0;
        font-size: 1.8rem;
        font-weight: 500;
        text-transform: uppercase;
    }
        .b-contacts__description p, .b-contacts__description a {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            text-decoration: none;
            color: #000000;
            display: block;
        }
.b-map {
    font-size: 0;
}


/* ---------------------------------- media ---------------------------------- */
@media (max-width:1250px) {
    .b-container-breadcrumb {
        margin-top: 10rem;
        padding-left: 3rem;
    }
    .b-header__container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        flex-direction: column;
        align-items: center;
        align-content: center;
    }
        .b-header__section {
            margin-top: 2rem;
        }
    .b-container {
        width: 100%;
    }
        .b-advantage__grid, .b-advantage--item-page .b-advantage__grid {
            grid-template-columns: repeat(3, 1fr);
        }
            .b-advantage-item:nth-child(4n), .b-advantage--item-page .b-advantage-item:nth-child(4n) {
                border-right: 1px solid #9d9d9d;
            }
    .b-list__item {
        width: 47%;
        margin-bottom: 6%;
    }
        .b-list__item-link {
            height: clamp(200px, 40vw, 410px);
        }
}


@media (max-width:1000px) {
    .b-advantage__grid, .b-advantage--item-page .b-advantage__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width:800px) {
    .b-advantage__grid, .b-advantage--item-page .b-advantage__grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .b-header__container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        flex-direction: row;
        align-content: space-between;
        align-items: flex-start;
    }
    .b-header-icon {
        display: block;
        cursor: pointer;
        position: absolute;
        padding: 1.7rem;
        margin-top: -1.5rem;
    }
        .b-header-icon:hover, #js-nav-check:checked ~ .b-header-icon {
            background-color: rgba(0, 0, 0, 0.3);
        }
    .b-header-nav {
        position: absolute;
        width: 100vw;
        transition: all 0.3s ease-in;
        background-color: rgba(66,66,66,.9);
        flex-direction: column;
        padding: 1.2rem;
        top: 3.3rem;
        display: none;
    }
        .b-header-nav__link {
            margin: 0.3rem;
        }
        #js-nav-check:checked ~ .b-header-nav {
            display: flex;
        }
    .b-category {
        flex-direction: column;
    }
        .b-category--reverse {
            flex-direction: column-reverse;
        }
        .b-category > div {
            width: 100%;
        }
    .b-list__item {
        width: 100%;
        margin-bottom: 8%;
    }
        .b-list__item-link {
            height: clamp(200px, 80vw, 410px);
        }
    .b-btn-list--left {
        flex-direction: column-reverse
    }
        .b-btn-list--left>div {
            margin-bottom: 2rem;
        }
    .b-slogan__container {
        align-items: center;
    }
        .b-slogan__text{
            text-align: center;
        }
    .b-card {
        flex-direction: column;
    }
        .b-card__main-image {
            width: 100%;
            height: 60vh;
        }
        .b-card__thumbnails {
            margin-top: 2rem;
            width: 100%;
            height: 20vh;
            display: flex;
            flex-direction: column;
        }
            .b-card__thumbnails-item {
                margin-left: 0;
                margin-bottom: 0;
                margin-right: 2rem;
                width: 60vw;
                height: 100%;
            }
}

@media (max-width:400px) {
    .b-header__section {
        margin-top: 2.5rem;
    }
    .b-card {
        flex-direction: column;
    }
        .b-card__main-image {
            width: 100%;
            height: 60vh;
        }
        .b-card__thumbnails {
            margin-top: 2rem;
            width: 100%;
            height: 20vh;
            display: flex;
            flex-direction: column;
        }
            .b-card__thumbnails-item {
                margin-left: 0;
                margin-bottom: 0;
                margin-right: 2rem;
                width: 60vw;
                height: 100%;
            }
}
