@charset "UTF-8"; /*! normalize.css v3.0.0 | MIT License | git.io/normalize */

body {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

/* HEADER */

.header {
    color: #fff;
    padding: 10px 0;
}
.header-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header__logo {
    display: flex;
    justify-content: left;
    align-items: center;
    height: 100%;
}
.header__logo img, .footer__logo img {
    max-width: 100%;
}
.header__contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    height: 100%;
    font-weight: bold;
}
.header__contact .phone {
    font-size: 24px;
    color: #fff;
    text-decoration: none;
}
.header__contact .text {
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .header {
        text-align: center;
    }
    .header__contact {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .header__contact .phone {
        margin: 0;
    }
    .header__logo {
        justify-content: center;
    }
}

/* END HEADER */


/* ABOUT SECTION */

.about {
    position: relative;
    background: url(images/main.jpg) repeat center/cover;
    padding: 50px 0 150px 0;
    color: #fff;
    z-index: 2;
}
.about__blocks {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
}
.about__blocks .block__image img {
    width: 100px;
    height: 100px;
    -o-object-fit: contain;
    object-fit: contain;
}
.about__btn {
    position: relative;
    overflow: hidden;
    -webkit-transition: 0.3s ease all;
    -o-transition: 0.3s ease all;
    transition: 0.3s ease all;
    display: inline-block;
    padding: 20px 50px;
}
.about__btn:before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    -webkit-transition: ease 0.3s;
    -o-transition: ease 0.3s;
    transition: ease 0.3s;
}
.about__btn:after {
    content: "";
    display: inline-block;
    width: 6px;
    -webkit-box-shadow: 1px 1px 36px 36px rgb(255, 255, 255);
    box-shadow: 1px 1px 36px 36px rgb(255, 255, 255);
    height: 300px;
    margin-left: 60px;
    background: rgb(255, 255, 255);
    opacity: 0.5;
    position: absolute;
    left: -40px;
    top: -150px;
    z-index: 1;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-animation-name: slidemem;
    animation-name: slidemem;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: 0.05s;
    animation-delay: 0.05s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes slidemem {
    0% {
        left: -10%;
        margin-left: 0;
    }

    30% {
        left: 110%;
        margin-left: 80px;
    }

    100% {
        left: 110%;
        margin-left: 80px;
    }
}

@media screen and (max-width: 768px) {
    .about {
        padding: 50px 0;
    }
    .about__blocks {
        position: unset;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

/* END ABOUT SECTION */


/* REVIEW SECTION */

.review {
    position: relative;
    background: url(images/back_2.png) repeat center/cover;
    padding: 150px 0 50px 0;
    color: #000;
}

.review__blocks .block__image img {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .review {
        padding: 50px 0;
    }
}

/* END REVIEW SECTION */


/* ADDITIONAL INFO SECTION */

.additional-info {
    position: relative;
    padding: 50px 0;
    color: #000;
}
.additional-info__blocks .block__image img {
    width: 150px;
    height: 150px;
    -o-object-fit: contain;
    object-fit: contain;
}

/* END ADDITIONAL INFO SECTION */


/* SHOWROOM SECTION */

.showroom {
    position: relative;
    background: url(images/back_3.png) repeat center/cover;
    padding: 50px 0;
    color: #000;
}
.showroom-slider-container {
    height: 500px;
}
.showroom__blocks .block__image img {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
}
/* END SHOWROOM SECTION */

/* ASSORTMENT SECTION */

.assortment {
    position: relative;
    padding: 50px 0;
    color: #fff;
}
.assortment .block__image img {
    width: 100%;
    height: 250px;
    -o-object-fit: cover;
    object-fit: cover;
}

/* END ASSORTMENT SECTION */

/* CONSULTATION SECTION */

.consultation {
    position: relative;
    background: url(images/back_2.png) no-repeat fixed center/cover;
    padding: 50px 0;
    color: #000;
}
.consultation.bg-wrapper--white:after {
    background-color: rgba(255, 255, 255, 0.68);
}
.consultation__list {
    padding: 25px;
    border: 2px solid #ccc;
    border-radius: 10px;
}
.consultation__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.consultation__item:not(:last-child) {
    margin-bottom: 20px;
}
.consultation__item img {
    margin: 0 20px 0 10px;
}
.consultation__form-wrapper {
    padding: 20px 15px;
    background-color: rgb(17, 21, 28);
    border-color: rgb(132, 220, 159);
    border-style: none;
    border-width: 2px;
    border-radius: 5px;
    -webkit-box-shadow: 0 3px 10px 0 rgb(0 0 0 / 10%);
    box-shadow: 0 3px 10px 0 rgb(0 0 0 / 10%);
    color: #fff;
}
.consultation__form input {
    height: auto;
    line-height: 1.2;
    position: relative;
    background-color: rgb(58, 62, 73);
    color: rgba(255, 255, 255, 0.5);
    border: 1px none rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    padding: 12px 10px;
    font-size: 14px;
    cursor: initial;
}
.consultation__form input:focus {
    border-color: rgb(132, 220, 159);
    background-color: rgb(60, 64, 75);
    color: #ccc;
}
.consultation__form input, .consultation__form input:active, .consultation__form input:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.button-submit {
    width: 100%;
    padding: 10px;
    border-radius: 50px;
}

/* END CONSULTATION SECTION */

/* BRANDS SECTION */

.brands {
    position: relative;
    background: url(images/back_2.png) repeat center/cover;
    padding: 50px 0;
    color: #000;
}
.brands img {
    height: 100%;
    object-fit: contain;
}

/* END BRANDS SECTION */


/* CHOICE SECTION */

.choice {
    position: relative;
    padding: 50px 0;
    color: #fff;
}
.choice-slider-container {
    height: 500px;
}
.choice-slider-container .swiper-pagination .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    background: #fff;
}

/* END CHOICE SECTION */

/* CONTACTS SECTION */

.contacts {
    position: relative;
    background: url(images/back_2.png) repeat center/cover;
    padding: 50px 0;
    color: #000;
}

/* END CONTACTS SECTION */


/* FOOTER */

.footer {
    position: relative;
    padding: 50px 0;
    color: #fff;
}

.privacy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}
.border-spec {
    border-right: 3px solid #fff3cd;
}

@media screen and (max-width: 768px) {
    .footer {
        text-align: center;
    }
    .privacy {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .border-spec {
        border-right: 0;
    }
}

/* END FOOTER */
