[x-cloak] {
    display: none !important;
}

/* ========================================================================
   Component: Icon
 ========================================================================== */
@font-face {
    font-family: 'FontAwesome';
    src: url("../fonts/fontawesome-webfont.eot");
    src: url("../fonts/fontawesome-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2") format('woff2'), url("../fonts/fontawesome-webfont.woff") format("woff"), url("../fonts/fontawesome-webfont.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'themewar';
    src: url('../fonts/themewar.eot?4vuimy');
    src: url('../fonts/themewar.eot?4vuimy#iefix') format('embedded-opentype'),
        url('../fonts/themewar.ttf?4vuimy') format('truetype'),
        url('../fonts/themewar.woff?4vuimy') format('woff'),
        url('../fonts/themewar.svg?4vuimy#themewar') format('svg');
    font-weight: normal;
    font-style: normal;
}

*::before {
    font-family: 'themewar';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.twi-search:before {
    content: "\ed7c";
}

.twi-telegram:before {
    content: "\fca8";
}

.twi-mail-bulk2:before {
    content: "\f89b";
}

.twi-instagram:before {
    content: "\fc07";
}

.twi-mountains2:before {
    content: "\f8e3";
}

.twi-phone2:before {
    content: "\f924";
}

@media screen and (max-width: 724px) {
.twi-phone2{
    display: none;
}
}
:root {
    --white: #fff;
    --dark: #000;
    --grey: #666666;
    --blue: #007bff;

    --gold: #877500f7;
       --gold: rgb(81, 61, 46);
    /* --gold: #a89204f7; */

}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: #fff;
    color: var(--dark);
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    font-size: 16px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 60px;
    padding-right: 60px;
}

@media (max-width: 1024px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

}

.page {
    padding-top: 0;
    margin-top: 90px;
}

@media (max-width: 800px) {
    .page {
        margin-top: 53px;
    }

}


/**** COMPONENTS START ****/
.title {
    text-transform: uppercase;
    font-size: 44px;
}

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

}

@media (max-width: 1024px) {
    .title {
        font-size: 26px;
    }

}

/* custom select start */

.select {
    width: 100%;
    max-width: 260px;
    position: relative;
    user-select: none;
    font-size: 16px;
}


.select select {
    display: none;
}

.select__value {}

.select__box {
    height: 42px;
    padding: 0 15px 0 15px;
    border: 1px solid #e8e8e8;
    background-color: #fff;
    border-radius: 4px;
    color: #8b8b8b;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.select__box .select__arrow {
    width: 24px;
    height: 24px;
}

.select__box .select__arrow svg {
    width: 100%;
    height: 100%;
}

.select.open .select__box {
    border-color: #000;
    box-shadow: 0 4px 12px rgb(74 144 226 / 0.3);
}

.select.open .select__box .select__arrow {
    transform: rotateX(180deg);
}

.select__options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #e8e8e8;
    background-color: #fff;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.select.open .select__options {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.select__option {
    padding: 10px 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.select__option.hidden {
    display: none;
}

.select__option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.select__option:hover,
.select__option.active {
    background-color: #cfcfcf;
}

.select__option-icon {}

.select__option-text {}

/* custom select end */

/**** COMPONENTS END ****/




/* HEADER START */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: #fff;
    box-shadow: 0px 7px 40px 0px rgba(150, 176, 203, 0.2);
    padding: 0 0 12px 0;
}

.header__top {
    background-color: var(--gold);
    margin-bottom: 12px;
    color: white;
    padding: 2px 0;
    font-weight: 200;
}

.header__top-email,
.header__top-phone,
.header__top-address {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.header__top-email img,
.header__top-phone img,
.header__top-address img {
    width: 15px;
    margin-top: 2px;
}
.mob-phone{
    display: none;
    letter-spacing: 0px;
    font-size: 13px;
    padding-top: 3px;
}
@media screen and (max-width: 924px) {
    .mob-phone{
        display: block;
    }

}
.header_top_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.header__top-flex {
    display: flex;
    align-items: center;
    gap: 40px;

}

.header__container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    font-weight: 500;
    font-size: 14px;
    border: 2px solid var(--gold);
    padding: 8px;
}

.header__logo img {
    width: 20px;
    position: relative;
    top: 5px;
}

.header__nav {
    margin: 0 auto;
}

.header__list {
    display: flex;
    align-items: center;
    gap: 45px;
}

.header__item {
    padding: 16px 0;
    position: relative;
}

.header__item:hover .header__dropdown {
    visibility: visible;
    z-index: 2;
    opacity: 1;
    transform: translate(0);
}

.header__item:hover .header__link {
    color: var(--blue);
}

.header__link {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.2s;
}


.header__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 14px 20px 0px;
    background: rgb(255, 255, 255);
    min-width: 200px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s;

}

.header__dropdown-link {
    border-bottom: 1px solid #3a3a3a48;
    padding: 8px;
}

.header__dropdown-link span {
    display: block;
    transition: all .3s ease;
}

.header__dropdown-link:hover {
    color: var(--blue);

}

.header__dropdown-link:hover span {
    transform: translateX(5px);
}

.header__btn-search {
    margin-left: auto;
}

.header__icons {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    margin-left: 36px;
}
.header__icons2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
}
.burger_logo{
    text-align: center;
}
@media screen and (max-width: 924px) {
    .header__icons{
        display: none;
    }

}

.header__icons-el {}

.tg {}

.inst {}

.phone {}

.mail {}




.burger {
    display: none;
}

.like-box {
    position: relative;
    font-size: 20px;
    color: black
}



.user-box {
    position: relative;
    font-size: 20px;
    color: black;
    margin-right: 20px;
}

.user-box img {
    width: 20px;
    position: relative;
    top: 5px;
}


.icon-box {
    position: absolute;
    left: 0px;
    top: 3px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    text-align: center;
    font-size: 20px;
    color: black;
    display: inline-block;
    background-color: rgba(var(--gold), 0.03);
}


.total-like {
    position: absolute;
    right: 5px;
    top: -5px;
    width: 14px;
    height: 14px;
    font-weight: 500;
    line-height: 14px;
    text-align: center;
    border-radius: 50px;
    display: inline-block;
    font-size: 8px;
    color: white !important;
    background-color: var(--gold);
}
.logo{
    width: 150px;
}

@media (max-width: 800px) {

    .header {
        padding: 4px 0;
    }
    .logo{
        width: 100px;
    }

    .header__nav {
        display: none;
    }

    .burger {
        display: block;
        margin-left: 2px;
        margin-top: 4px;
    }
    .burger_contacts{
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-top: 40px;
    }
    .burger_contacts_item{
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .burger_contacts_item img{
        width: 20px;
    }

    .header__logo {
        padding: 2px 7px;
        font-size: 10px;
    }

    .header__top {
        display: none;
    }


}

.menu {
    position: fixed;
    z-index: 11;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #000;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100vh;
    overflow-y: auto;
    transform: translateX(100%);
    transition: all .3s ease;
    padding: 60px 20px;
    background-color: #fff;
}

.menu._active {
    transform: translateX(0);
}

.menu__close {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.menu__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center
}

.menu__item {}

.menu__link {}


/* HEADER END */


/* WELCOME START */

.welcome {
    padding-top: 90px;
    padding-bottom: 80px;
    background-color: #f9fbff;
    min-height: calc(100vh - 96px);
}

.welcome__slider {
    position: relative;
    padding-right: 100px;
}

.welcome__item {
    display: flex;
    gap: 60px;
    align-items: center;
}

.welcome__content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.welcome__title {
    margin-bottom: 30px;
}

.welcome__text {
    font-size: 20px;
    color: var(--grey);
    line-height: 1.5;
    margin-bottom: 30px;
}

.welcome__img {
    width: 370px;
    height: 455px;
    flex: none;
    border: 3px solid var(--gold);
}

.welcome__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.welcomeSwiper {
    height: 480px;

}

.welcomeSwiper .swiper-slide {
    background-color: #f9fbff;
}


.welcome__slider .swiper-next {
    cursor: pointer;
}

.welcome__slider .swiper-next:before {
    content: "\ec60";
    font-family: 'themewar';
    font-size: 40px;
    line-height: 25px;
    letter-spacing: 2px;
    color: #000000;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.welcome__slider-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    width: max-content;
    margin-left: auto;
}

.welcome__slider .swiper-prev {
    cursor: pointer;
}

.welcome__slider .swiper-prev:before {
    content: "\ec5f";
    font-family: 'themewar';
    font-size: 40px;
    line-height: 25px;
    letter-spacing: 2px;
    color: #000000;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}


.welcome__slider .swiper-pagination {
    position: absolute;
    right: 0;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
    width: 10px;
    font-weight: 700;
    font-size: 20px;
}

.swiper-pagination-line {
    width: 3px;
    height: 200px;
    background-color: var(--dark);
}


@media (max-width: 1200px) {

    .welcome__slider {
        padding-right: 0;
    }

    .welcome__slider .swiper-pagination {
        display: none;
    }

    .welcome__title {
        margin-bottom: 12px;
    }

    .welcomeSwiper {
        height: 100%;
    }

}

@media (max-width: 800px) {

    .welcome {
        padding-top: 40px;
    }

    .welcome__slider .swiper-slide {
        height: auto;
    }

    .welcome__item {
        flex-direction: column;
    }
}

@media (max-width: 500px) {

    .welcome {
        min-height: auto;
    }

    .welcome__item {
        position: relative;
        height: 100%;
        color: #fff;
    }

    .welcome__text {
        color: #fff;
        font-size: 16px;
    }

    .welcome__img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .welcome__img img {
        filter: brightness(0.5);
    }
}


/* WELCOME END */




/* ABOUT START */

.s-about {
    padding-top: 80px;
    margin-bottom: 80px;
}

.s-about__wrap {
    display: flex;
    gap: 30px;

}

.s-about__img {
    width: 40%;
    height: 500px;
    position: relative;
    padding: 0 0 20px 20px;
    flex: none;
}

.s-about__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.s-about__img::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    border: 2px solid var(--dark);
    border: 2px solid var(--gold);
    width: 80%;
    height: 80%;
    z-index: -1;
}

.s-about__content {}

.s-about__subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
}

.s-about__text {
    margin: 30px 0 35px 0;
    color: var(--grey);
    line-height: 2;
    font-size: 18px;
}

.s-about__signature {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}

.s-about__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.s-about__list-item {
    position: relative;
    padding-left: 20px;
    text-transform: lowercase;
    font-size: 13px;
    font-weight: 400;
}

.s-about__list-item::before {
    position: absolute;
    content: "";
    background-image: url("../img/free-icon-check-1828743.png");

    background-size: cover;
    background-repeat: no-repeat;
    left: 0;
    top: 5px;
    width: 12px;
    height: 12px;
}

.s-about__bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #ffffff80;
    margin-top: 55px;
}

.s-about__bottom span {}

.s-about__bottom img {
    width: 12px;
    height: 12px;
}

.s-about__btn {}

.s-about__btn span {}

.s-about__tel {
    display: flex;
    align-items: center;
    gap: 10px;
}

.s-about__tel-icon {
    width: 40px;
    height: 40px;
    background-color: #00000027;

    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.s-about__tel-icon img {
    width: 20px;
    height: 20px;
}

.s-about__tel-text {
    display: flex;
    flex-direction: column;
}

.s-about__tel-text span {
    color: var(--grey);
    font-size: 12px;
    text-transform: uppercase;
}

.s-about__tel-text p {
    font-size: 18px;
    color: var(--dark);
    font-weight: 600;
}

.btn-decor {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff7a;
    gap: 6px;
    background-color: var(--dark);
    background-color: var(--gold);
    position: relative;
    padding: 12px 20px;
    text-transform: uppercase;
}

.btn-decor img {
    width: 16px;
    height: 16px;
}

.btn-decor span {
    color: #fff;

}


@media (max-width: 800px) {
    .s-about__wrap {
        flex-direction: column;
    }

    .s-about__img {
        width: 100%;
        height: 300px;
    }

}



@media (max-width: 800px) {
    .s-about__list {
        grid-template-columns: repeat(1, 1fr);
    }

    .s-about__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ABOUT END */


/* SECTION CATEGORY START*/

.s-category {
    margin-bottom: 80px;
}

.s-category__title {
    margin-bottom: 40px;
}

.s-category__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    row-gap: 50px;
}


.category__item {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 440px;
    color: #fff;
}

.category__item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    transition: all 0.8s;
}

.category__item:hover img {
    transform: scale(1.2);
}

.category__item-title {
    border: 1px solid #fff;
    padding: 10px 20px;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.category__item-link {
    position: relative;

}

@media (max-width: 900px) {
    .s-category__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .category__item {
        height: 300px;
    }

}

@media (max-width: 600px) {
    .s-category__grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

}

/* SECTION CATEGORY END */


/* CATEGORY PAGE START */

.category {
    padding-top: 60px;
    margin-bottom: 80px;
}

.category__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.category__head-counter {
    color: var(--grey);
}

.category__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    row-gap: 50px;
}

.category__el {
    position: relative;
}

.category__el-price {
    position: absolute;
    top: 16px;
    right: 16px;
    color: var(--dark);
    font-weight: 700;
    font-size: 18px;
}

.category__el-img {
    height: 300px;
    overflow: hidden;
    margin-bottom: 20px;
    border-bottom: 4px solid var(--dark);
}

.category__el-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category__el-title {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.category__el-link {}

@media (max-width: 1200px) {
    .category__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .category__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .category__grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }

    .category__head {
        flex-wrap: wrap;
        gap: 16px;
    }
}

/* PRODUCT START */

.gray {
    background-color: #f3f3f3;
}

.product {
    padding-top: 60px;
    padding-bottom: 60px;
    display: flex;
    gap: 20px;
}

.product-slider {
    width: 50%;
    display: flex;
    gap: 20px;
    height: 480px;
}

.navSwiper {
    flex: none;
}

.navSwiper .swiper-slide {
    width: 100px;
}

.navSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



.productSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info {
    width: calc(50% - 20px);
    background-color: rgb(255, 255, 255);
    padding: 25px 60px;
}

.product-title h1 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 44px;
}

.product-btns {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.product-btn {
    padding: 5px 30px;
    font-size: 14px;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.product-btn img {
    width: 20px;
}

.gold {
    background-color: var(--gold);
    color: var(--white);
}

.black {
    background-color: var(--dark);
    color: var(--white);
}


.product__characteristics {
    display: flex;
    flex-direction: column;
    gap: 13px;
    max-width: 430px;
}

.product__characteristics-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid gray;
    padding-bottom: 3px;
}

.product__characteristics-item span {
    font-weight: 300;
    color: rgb(67, 67, 67);
}

.product__advantages {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    max-width: 430px;
}

.product__advantages img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.product__advantages span {
    font-weight: 300;
    color: rgb(67, 67, 67);
}

.product__advantages-item {
    border: 1px solid rgb(227, 227, 227);
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    padding: 3px 10px;
}

.product__advantages-item span {
    font-size: 13px;
}

.product_text {
    display: flex;
    gap: 40px;
    /* padding: 80px 0; */
    flex-wrap: wrap;
    padding-bottom: 60px;
}

.product_text-left {
    width: calc(50% - 20px);
    background-color: rgb(255, 255, 255);
    padding: 25px 60px;
    display: flex;
    flex-direction: column;

}

.product_text-right {
    width: calc(50% - 20px);
    background-color: rgb(255, 255, 255);
    padding: 25px 30px;
    /* min-width: 500px; */
}



.product_text-right-item,
.product_text-left-item {
    margin-bottom: 20px;
    background-color: white;
    padding: 20px 40px;
}

.product_text-right-item p {
    padding-bottom: 10px;
}

.product_text-right h2,
.product_text-left h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}




/* PRODUCT END */



.product__grid {
    --product-gap: 26px;
    --product-elements: 3;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    width: calc((100% - (3 - 1) * 26px) / 3);
    border: 1px solid rgb(229, 229, 229);
    overflow: hidden;
    transition: all .4s;
    max-height: 487px;
}

.card img {
    width: 100%;
    height: 100%;
    transition: all .4s;
}

.catalog_products-grid__item-favorite {
    background-color: rgb(159, 24, 24);
    color: white;
    margin: 1px auto;
    padding: 3px 30px;
    font-size: 14px;
    font-weight: 200;
    margin: 10px 0;
}




.about-wrap {
    margin-top: 110px;
    padding: 150px 0;
}

.about__content {
    padding: 40px 70px;
    color: white;
    text-indent: 20px;
    background-color: #000000b5;
    width: 70%;
    margin: 1px auto;
}

.about__content p {
    padding-bottom: 12px;
    font-size: 18px;

}

.bg-about {
    background-image: url('../img/ab.jpg');
    background-position: center;
    background-size: cover;
}

.mh-30 {
    min-height: 30vh;
}

.empty {
    padding: 200px 0;
    font-size: 30px;
    color: var(--gold);
}





.login-page {
    min-height: 60vh;
}

.s-form-login {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 80px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.s-form-login__image {
    width: 40%;
}

.s-form-login__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 40%;
}

.login-form__logo {
    margin: 0 auto;
    margin-bottom: 20px;
}

.login-form__title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.login-form__subtitle {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 30px;
}

.login-form__group {}

.login-form__input {
    padding: 9px 20px;
    border: 0;
    background-color: #F7F7F7;
    color: #000;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 300;
    width: 100%;
}

.login-form__row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.login-form__checkbox {
    width: 100%;
}

.login-form__checkbox span {
    border-radius: 6px;
    padding: 6px 28px;
    font-size: 14px;
    font-weight: 700;
    margin-right: 10px;
    border: 1px solid var(--gold);
    display: inline-block;
    width: 100%;
    text-align: center;
    color: var(--gold);
}

.login-form__checkbox input:checked+span {
    background-color: var(--gold);
    background-color: var(--gold);
    color: #fff;
}




.login-form__time {}

.login-form__time-label {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 20px;
}

.login-form__time-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.login-form__time-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.login-form__time-checkbox {
    width: 22px;
    height: 22px;
    border: var(--gold) 1px solid;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form__time-checkbox svg {
    display: none;
    width: 20px;
    height: 20px;
    stroke: #fff;
}

.login-form__time-item input:checked+.login-form__time-checkbox {
    background-color: var(--gold);
}

.login-form__time-item input:checked+.login-form__time-checkbox svg {
    display: block;
}



.login-form__submit {
    border: none;
    cursor: pointer;
    border-radius: 6px;
    padding: 6px 28px;
    font-size: 14px;
    font-weight: 700;
    margin-right: 10px;
    border: 1px solid var(--gold);
    display: inline-block;
    text-align: center;
    color: #fff;
    width: 100%;
    background-color: var(--gold);
    margin: 20px auto 0;
}

@media (max-width: 1024px) {
    .s-form-login {
        flex-direction: column;
        gap: 40px;
        padding-top: 0px;
    }

    .s-form-login__image {
        width: 100%;
    }

    .login-form {
        width: 100%;

    }

}



.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    visibility: hidden;
    overflow: hidden;
    overflow-y: auto;
    background: #000000df;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.modal__close {}



.contacts-bg {
    background-image: url('../assets/img/modal-contacts.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.modal-wrap {
    width: 100%;
    /* max-width: 650px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.modal_el {
    /* max-width: 650px; */
    position: relative;
    display: flex;
    width: 70%;
}

.modal_el_2 {
    /* max-width: 650px; */
    position: relative;
}


.modal__close img {
    position: absolute;
    top: -46px;
    right: -26px;
    width: 16px;
    height: 16px;
    z-index: 1;
}

@media screen and (max-width: 1024px) {
    .modal__close img {
        right: 6px;
    }
    .modal_left{
        display: none;
    }

}

.active-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    visibility: visible;
    opacity: 1;
}




.modal_flex {
    display: flex;
    flex-wrap: wrap;

}


.modal_left_wrap {
    width: 35%;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



.modal_left {
    padding: 30px;
}

@media screen and (max-width: 1024px) {
    .modal_left{
        display: none;
    }

}

.modal_left_title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: rgb(44, 44, 44);
}

.modal_right_text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal_contacts_item {
    display: flex;
    align-items: center;
}

.modal_contacts_item a {
    color: black;
}

.modal_contacts_item p {
    all: unset;
    color: black;
}

.modal_contacts_item img {
    width: 20px;
    margin-right: 10px;
}

.modal_right_wrap {
    background-image: url('../../assets/img/14.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



.modal_right {
    padding: 30px;
    background-color: white;
    width: 50%;
    margin: 50px 0;
}

.modal_right_confirm {
    padding: 30px;
    background-color: white;
    width: 70%;
    margin: 50px 0;
}

.modal_right_title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.modal_btn {
    color: white;
    background-color: var(--gold);
    padding: 10px 20px;
    margin-top: 50px;
    cursor: pointer;
}

.confirm_input {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #c1c1c1;
}

.form-order__error {
    visibility: hidden;
    font-size: 12px;
    color: red
}

.confirm_input__input.error+.form-order__error {
    visibility: visible;
}

.error {
    visibility: visible !important;
    color: red !important;
}


.thanks {
    background-image: url('../../assets/img/15.jpg');
    background-position: center;
    background-size: cover;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.thanks_content {
    margin: 1px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    background-color: #000000c1;
    padding: 60px 40px;
    color: white;
}

.thanks_container {
    /* background-image: url('../../assets/img/15.jpg'); */

}

.main_btn {
    background-color: var(--gold);
    color: white;
    padding: 10px 20px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .modal_flex {
        flex-direction: column-reverse;
    }

    .modal_left_wrap {
        width: 100%;
    }

    .modal_right_wrap {
        width: 100%;
    }

    .modal_el {
        width: 82%;
    }

    .modal_right {
        width: 85%;
        padding: 20px 15px;
        gap: 5px;
    }
}


/* FOOTER START */

.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer__wrap {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer__left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__logo {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 40px;
}

.footer__phones {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;

}

.footer__phone {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__left-text {}

.footer__nav {}

.footer__nav-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer__nav ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__nav ul li a:hover {
    text-decoration: underline;
}


.footer__bottom {
    padding-top: 20px;
    margin-top: 40px;
    border-top: 1px solid var(--grey);
}

.footer__bottom-copyright {
    max-width: 500px;
}





@media (max-width:1024px) {
    .footer__wrap {
        flex-direction: column;
        align-items: center;
    }

    .footer__nav {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer__nav ul {
        align-items: center;
    }

}

/* ----- ----- */
.footer-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-form__title {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-form__input {
    border: 1px solid var(--grey);
    padding: 10px 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    background-color: transparent;
    color: var(--white);
}

.footer-form__textarea {
    border: 1px solid var(--grey);
    padding: 10px 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    background-color: transparent;
    color: var(--white);
    resize: none;
    height: 100px;
}

.footer-form__btn {
    background-color: var(--white);
    color: var(--dark);
    padding: 10px 16px;
    text-align: center;
}

.footer-form__socials {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-form__social img {
    width: 20px;

}

.footer-form__social {}


/* ----- ----- */



/* FOOTER END */




strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

table {
    background: #f5f5f5;
    border-collapse: separate;
    box-shadow: inset 0 1px 0 #fff;
    font-size: 12px;
    line-height: 24px;
    text-align: left;
    width: 400px;
}





th:first-child {
    border-left: 1px solid #777;
    box-shadow: inset 1px 1px 0 #999;
}

th:last-child {
    box-shadow: inset -1px 1px 0 #999;
}

td {
    border-right: 1px solid #fff;
    border-left: 1px solid #e8e8e8;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #e8e8e8;
    padding: 10px 15px;
    position: relative;
    transition: all 300ms;
}

td:first-child {
    box-shadow: inset 1px 0 0 #fff;
}

td:last-child {
    border-right: 1px solid #e8e8e8;
    box-shadow: inset -1px 0 0 #fff;
}



tr:last-of-type td {
    box-shadow: inset 0 -1px 0 #fff;
}

tr:last-of-type td:first-child {
    box-shadow: inset 1px -1px 0 #fff;
}

tr:last-of-type td:last-child {
    box-shadow: inset -1px -1px 0 #fff;
}

@media (max-width: 768px) {

  .navSwiper{
    width: 100%;
  }
  .productSwiper {
    height: 400px;
    width: 100%;
  }
    .about-wrap {
        margin-top: 50px;
        padding: 20px 0;
    }

    .about__content {
        padding: 20px 30px;
        width: 85%;
    }

    .s-about {
        padding-top: 0;
    }

    .product {
        flex-direction: column;
    }

    .product-slider {
        width: 100%;
        flex-direction: column-reverse;
    }

    .product-info {
        width: 100%;
        padding: 10px 20px;
    }

    .product-btn {
        font-size: 11px;
        padding: 3px 15px;
    }

    .product__advantages-item {
        flex-direction: column;
        padding: 10px 10px;
    }

    .product_text {
        flex-direction: column;
    }

    .product_text-left {
        width: 100%;
        padding: 0px;
    }

    table {
        width: 300px;
    }

    .product_text-left-item table{
      width: 100%;
    }
    .product_text-right{
        width: 100%;
        padding: 0px;
    }
}
