@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    scroll-behavior: smooth;
}

.logading-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000069;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: all .30s;
    z-index: 9999;
}
.loading-box__wrapper {
    height: 100px;
    width: 100px;
}
.loading-box__wrapper svg {
    width: 100%;
    height: 100%;
}

.logading-box__active {
    visibility: visible;
    opacity: 1;
    transition: all .30s;
}

.form-resilt {
    padding: 8px;
    border-radius: 4px;
    text-align: center;
    background: #d7ffda;
    color: #007800;
    display: none;
    margin-top: 12px;
    font-weight: 500;
}

.container {
    max-width: 1400px;
}

.header {
    padding: 15px 0;

}

.header-wrapper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
}

.header .logo {}

.header .logo img {
    max-width: 100px;
    width: 100%;
}

.header .header_menu {
    margin-left: 12px;
    margin-right: auto;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    gap: 24px;
}

.header .header_menu a {
    text-decoration: none;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    transition: all .30s;
}

.header .header_menu a:hover {
    transition: all .30s;
    color: #D96020;
}

.header .header_menu a:hover svg path {
    transition: all .30s;
    stroke: #D96020;
}

.header .header_menu a svg {
    transition: all .30s;
}

.header .header_menu a svg path {
    transition: all .30s;
}

.header .header_menu a.active {
    color: #D96020;
}

.header .header_menu a.active svg {}

.header .header_menu a.active svg path {
    stroke: #D96020;
}

.header .header_buttons {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 15px;
    align-items: center;
}



.header .header_buttons .header_buttons-cart a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 47px;
    height: 47px;
    border-radius: 50%;
    border: 1px solid #F4F4F4;
    transition: all.30s;
    position: relative;
}

.header .header_buttons .header_buttons-cart a svg {
    transition: all.30s;
}

.header .header_buttons .header_buttons-cart a svg path {
    transition: all.30s;
}

.header .header_buttons .header_buttons-cart a:hover {
    transition: all.30s;
    background: #D96020;
    border: 1px solid #D96020;
}

.header .header_buttons .header_buttons-cart a:hover svg path {
    transition: all.30s;
    stroke: #fff;
}

.header .header_buttons .header_buttons-cart a .cart-count {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 18px;
    width: 18px;
    font-size: 12px;
    background: #eee;
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all.30s;
}

.header .header_buttons .header_buttons-cart a:hover .cart-count {
    transition: all.30s;
    background: #fff;
}

.header .header_buttons .header_buttons-cta {}

.header .header_buttons .header_buttons-cta button {
    padding: 14px 24px;
    background: #F4F4F4;
    color: #000;
    font-family: inherit;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 100px;
    cursor: pointer;
    transition: all.30s;
}

.header .header_buttons .header_buttons-cta button:hover {
    transition: all.30s;
    background: #D96020;
    color: #fff;
}

/**********************/
.top-home__top {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: stretch;
}

.top-home__top-banner {
    flex: 1 1 100%;
    max-width: 40%;
    background: #F4F4F4;
    border-radius: 16px;
    padding: 50px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-home__top-banner img {
    max-width: 80px;
    width: 100%;
    height: auto;
}

.top-home__top-banner h1 {
    text-align: center;
    color: #000;
    font-size: 38px;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 48px;
    line-height: 120%;
}

.top-home__top-banner h2 {
    margin-top: 16px;
    color: #464646;
    font-weight: 500;
    text-align: center;
    line-height: 150%;
    font-size: 18px;
}

.top-home__top-banner a {
    display: block;
    margin-top: 32px;
    text-decoration: none;
    padding: 14px 24px;
    color: #fff;
    background: #000;
    border-radius: 100px;
    transition: all .30s;
    border: 1px solid #000;
}

.top-home__top-banner a:hover {
    transition: all .30s;
    background: transparent;
    color: #000;
}

.top-home__top-slider {
    /*    position: relative;*/
}

.top-home__top-slider .slider-buttons-wrapper {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: calc(100% - 30px);

    z-index: 100;
    background: rgba(119, 119, 119, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 16px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
}

.top-home__top-slider .slider-buttons-wrapper .slider-content {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 8px;
    align-items: center;
}

.top-home__top-slider .slider-buttons-wrapper .slider-content .img img {
    width: 48px;
    height: 48px;
    object-fit: cover;
}

.top-home__top-slider .slider-buttons-wrapper .slider-content .text p {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.top-home__top-slider .slider-buttons-wrapper .slider-content .text a {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
}


.top-home__top-slider .slider-buttons {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    gap: 8px;

}

.top-home__top-slider .slider-buttons div {
    width: 48px;
    height: 48px;
    border: 1px solid #eee;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all .30s;
}

.top-home__top-slider .slider-buttons div:hover {
    transition: all .30s;
    background: #dbdbdb;
}

.top-home__top-slider__item img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.top-home__top > * {
    /* головне! */
    min-width: 0;
    min-height: 0;
}

.top-home__top-slider {
    /* друга колонка */
    flex: 1 1 60%;
    position: relative;
    /* щоб кнопки-оверлей позиціонувались від неї */
    overflow: hidden;
    /* підстрахуємося */
}

.top-home__top-banner {
    flex: 1 1 40%;
}

/***************************/

.category-banners {
    margin-top: 8px;
}

.category-banners__list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.category-banners__list a {
    flex: 1 1 31%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
    background: #F4F4F4;
    border-radius: 16px;
    text-decoration: none;
}

.category-banners__list a .top {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.category-banners__list a .top .top-item {
    padding: 12px;
    background: #fff;
    border-radius: 100px;
    color: #000;
    padding: 6px 12px;
    font-weight: 500;
}

.category-banners__list a .img {
    margin-top: 24px;
}

.category-banners__list a .img img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

/*****************************/

.products-slider-block__head {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.products-slider-block__head .head-title {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 15px;
    align-items: center;
}

.products-slider-block__head .head-title h2 {
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 700;
    line-height: 100%;
}

.products-slider-block__head .head-title .label {
    padding: 12px;
    background: #F2F2F2;
    border-radius: 100px;
    color: #000;
    padding: 6px 12px;
    font-weight: 500;
}

.products-slider-block__head .buttons {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 8px;
    align-items: center;

}

.products-slider-block__head .buttons > div {
    width: 36px;
    height: 36px;
    border: 1px solid #eee;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all .30s;
}

.products-slider-block__head .buttons > div:hover {
    transition: all .30s;
    background: #F2F2F2;
}

.products-slider {
    margin-top: 32px;
}
.products-slider .swiper-slide {
    height: auto;
}
.products-slider__item {
    height: 100%;
}

/*******************************/
.product-card {
    border: 1px solid #E3E3E3;
    border-radius: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card .product-labels {
    position: absolute;
    top: 15px;
    left: 15px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-card .product-labels .label-top {
    background: #603F0F;
    padding: 4px 8px;
    text-transform: uppercase;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
}

.product-card .product-labels .label-discount {
    background: #EB824B;
    padding: 4px 8px;
    text-transform: uppercase;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
}

.product-card .product-labels .label-new {
    background: #1eb987;
    padding: 4px 8px;
    text-transform: uppercase;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
}


.product-card .product-labels .label-sale {
    background: #e33131;
    padding: 4px 8px;
    text-transform: uppercase;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
}

.product-card .product-labels {}

.product-card .product-labels {}

.product-card a {
    text-decoration: none;
}

.product-card .img {
    text-align: center;
    padding: 42px 24px;
}

.product-card .img img {
    height: 120px;
    width: 100%;
    object-fit: contain;
    transition: all .30s;
}
.product-card .img:hover img {
    transform: scale(1.05);  
    transition: all .30s;
}

.product-card .description {
    background: #F4F4F4;
    padding: 16px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.product-card .description a {
    font-weight: bold;
    color: #000;
    font-size: 16px;
    transition: all .30s;
}
.product-card .description a:hover {
    transition: all .30s;
    color: #EB824B;
}
.product-card .description a h3 {}

.product-card .description .product-card-discount-price {
    margin-top: 8px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 23px;
}

.product-card .description .product-card-discount-price .old-price {
    color: #828282;
    font-size: 16px;
    text-decoration: line-through;
}

.product-card .description .product-card-discount-price .discount-sum {
    padding: 2px 4px;
    background: #EB824B;
    border-radius: 4px;
    color: #fff;
}

.product-card .description .product-card-price {
    margin-top: 8px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.product-card .description .product-card-price .price {
    font-size: 32px;
    font-weight: bold;
}

.product-card .description .product-card-price .price span {
    font-size: 18px;
    font-weight: normal;
}

.product-card .description .product-card-price .slider-add-to-card {
    padding: 10px 16px;
    background: #000;
    border-radius: 100px;
    border: none;
    outline: none;
    cursor: pointer;
}

/*******************************/
.home-products-slider {
    margin-top: 80px;
}

/***************************/
.help-banner {
    background: url(help-banner-bg.png) center/cover no-repeat;
    padding: 120px 0;
    margin-top: 80px;
}

.help-banner__content {
    background: #fff;
    padding: 48px;
    border-radius: 16px;
    max-width: 638px;
    width: 100%;
    -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}

.help-banner__content h2 {
    text-transform: uppercase;
    font-size: 32px;
    color: #000;
    font-weight: bold;
}

.help-banner__content p {
    margin-top: 16px;
    color: #464646;
    font-size: 18px;
    line-height: 150%;
}

.help-banner__content .buttons {
    margin-top: 32px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 8px
}

.help-banner__content .buttons button {}

.help-banner__content .buttons button:first-child {
    padding: 14px 24px;
    background: #000;
    color: #fff;
    font-family: inherit;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 100px;
    cursor: pointer;
    transition: all .30s;
    border: 1px solid #000;
}

.help-banner__content .buttons button:first-child:hover {
    background: #EB824B;
    color: #fff;
    transition: all .30s;
    border: 1px solid #EB824B;
}

.help-banner__content .buttons button:last-child {
    padding: 14px 24px;
    background: #fff;
    color: #000;
    font-family: inherit;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 100px;
    cursor: pointer;
    transition: all .30s;
    border: 1px solid #000;
}

.help-banner__content .buttons button:last-child:hover {
    background: #EB824B;
    color: #fff;
    transition: all .30s;
    border: 1px solid #EB824B;
}

/***************************************/
.our-work {
    margin-top: 80px;
}

.our-work__head {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: flex-end;
}

.our-work__head .title {
    max-width: 600px;
    width: 100%;
}

.our-work__head .title h2 {
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 700;
    line-height: 100%;
}

.our-work__head .title p {
    margin-top: 16px;
    color: #464646;
    font-size: 18px;
    line-height: 150%;
}

.our-work__head .buttons {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 8px;
    align-items: center;
}

.our-work__head .buttons div {
    width: 36px;
    height: 36px;
    border: 1px solid #eee;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all .30s;
}

.our-work__head .buttons div:hover {
    transition: all .30s;
    background: #F2F2F2;
}

.our-work-slider {
    margin-top: 32px;
}

.our-work-slider__item {}

.our-work-slider__item video {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.our-work-slider__item > a {
    text-decoration: none;
    margin-top: 16px;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    transition: all .30s;
}

.our-work-slider__item > a:hover {
    transition: all .30s;
    color: #EB824B;
}

.our-work-slider__item .dscription {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.our-work-slider__item .dscription .category {
    background: #fff;
    padding: 4px 8px;
    border-radius: 100px;
    color: #000;
    font-size: 16px;
    border: 1px solid #000;
    text-decoration: none;
    font-weight: 500;
}

.our-work-slider__item .dscription .date {
    background: #F4F4F4;
    padding: 4px 8px;
    border-radius: 100px;
    color: #000;
    font-size: 16px;
    border: 1px solid #F4F4F4;
    text-decoration: none;
    font-weight: 500;
}

/*****************************/
.out-results {
    background: -webkit-linear-gradient(135deg, rgb(0, 0, 0), rgb(235, 130, 75));
    background: -moz-linear-gradient(135deg, rgb(0, 0, 0), rgb(235, 130, 75));
    background: linear-gradient(135deg, rgb(0, 0, 0), rgb(235, 130, 75));
    margin-top: 80px;
    padding-bottom: 80px;
}

.our-results-wrapper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}
.our-results-wrapper span {
    color: #EB824B;
}
.our-results-wrapper .left {
    padding-top: 80px;
    flex: 0 0 60%;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
}
.our-results-wrapper .left h2 {
    font-size: 38px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 100%;
}
.our-results-wrapper .left h3 {
    margin-top: 100px;
    color: #fff;
    font-weight: normal;
    font-size: 130px;
    line-height: 100%;
}
.our-results-wrapper .left p {
    font-size: 18px;
    color: #fff;
}
.our-results-wrapper .left p span {
    color: #fff;
    font-weight: bold;
}
.our-results-wrapper .left .list {
    margin-top: 36px;

    border-top: 1px solid rgba(255, 255, 255, 0.22);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}
.our-results-wrapper .left .list .item {
    flex: 1 1 49%;
    padding: 36px 32px 0;
    
}
.our-results-wrapper .left .list .item:first-child {
    padding-left: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
}
.our-results-wrapper .left .list .item h4 {
    font-size: 48px;
    font-weight: normal;
    color: #fff;
    line-height: 100%;
}
.our-results-wrapper .left .list .item p {
    margin-top: 12px;
    color: #fff;
    font-size: 18px;
    max-width: 300px;
    width: 100%;
}

.our-results-wrapper .right {
    flex: 0 0 40%;
    padding-top: 80px;
    padding-left: 32px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.our-results-wrapper .right .img img {
    width: 100%;
}

.our-results-wrapper .right .text p {
    color: #fff;
    margin-top: 8px;
    font-size: 18px;
    line-height: 150%;
}

/*************************************/
.work-steps {
    padding: 80px 0;
    background: #F4F4F4;
}
.work-steps__head {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
}
.work-steps__head .title h2 {
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 700;
    line-height: 100%;
}
.work-steps__head .buttons {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 8px;
    align-items: center;
}
.work-steps__head .buttons div {
    width: 36px;
    height: 36px;
    border: 1px solid #C8C8C8;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all .30s;
}
.work-steps__head .buttons div:hover {
    transition: all .30s;
    background: #fff;
}
.work-steps__slider {
    margin-top: 32px;
}
.work-steps-slider__item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 8px;
    justify-content: space-between;
}

.work-steps-slider__item .img {
    flex: 1 1 60%;
}
.work-steps-slider__item .img img {
    width: 100%;
    border-radius: 16px;
    height: 100%;
    object-fit: cover;
}
.work-steps-slider__item .content {
    flex: 1 1 40%;
    background: #fff;
    border-radius: 16px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
}
.work-steps-slider__item .content .number {
    position: relative;
}
.work-steps-slider__item .content .number span {
    font-size: 18px;
    font-weight: bold;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    width: 44px;
    height: 44px;
    border: 1px solid #E3E3E3;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    background: #fff;
}
.work-steps-slider__item .content .number span:before {
    content: '';
    height: 1px;
    background: #E3E3E3;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 44px;
    z-index: 1;
}
/********************************/
.ready-to-work {
    margin-top: 80px;
    background: #fff;
    border-radius: 16px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.ready-to-work__content {
    padding: 48px 0 48px 48px;
    flex: 1 1 50%;
}
.ready-to-work__content h3 {
    text-transform: uppercase;
    font-size: 32px;
    color: #000;
    font-weight: bold;
}
.ready-to-work__content p {
    margin-top: 16px;
    color: #464646;
    font-size: 18px;
    line-height: 150%;
}
.ready-to-work__content {}

.ready-to-work__content .buttons {
    margin-top: 32px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 8px
}



.ready-to-work__content .buttons button:first-child {
    padding: 14px 24px;
    background: #000;
    color: #fff;
    font-family: inherit;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 100px;
    cursor: pointer;
    transition: all .30s;
    border: 1px solid #000;
}

.ready-to-work__content .buttons button:first-child:hover {
    background: #EB824B;
    color: #fff;
    transition: all .30s;
    border: 1px solid #EB824B;
}

.ready-to-work__content .buttons button:last-child {
    padding: 14px 24px;
    background: #fff;
    color: #000;
    font-family: inherit;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 100px;
    cursor: pointer;
    transition: all .30s;
    border: 1px solid #000;
}

.ready-to-work__content .buttons button:last-child:hover {
    background: #EB824B;
    color: #fff;
    transition: all .30s;
    border: 1px solid #EB824B;
}

.ready-to-work__img {
    flex: 1 1 45%;
    align-self: flex-end;
    margin-bottom: -4px;
}
.ready-to-work__img img {
    width: 100%;
    height: auto;
}


/*********************************/
.why-select-us {
    padding: 80px 0;
}
.why-select-us__head h2 {
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 700;
    line-height: 100%;
}
.why-select-us__head p {
    margin-top: 16px;
    color: #464646;
    font-size: 18px;
    line-height: 150%;
}
.why-select-us__list {
    margin-top: 32px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 8px;
}
.why-select-us__list .item {
    flex: 1 1 23%;
    border-radius: 16px;
    background: #F4F4F4;
    padding: 24px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.why-select-us__list .item .icon {
    background: #fff;
    height: 64px;
    width: 64px;
    border-radius: 50%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.why-select-us__list .item .icon:after {
    content: '';
    position: absolute;
    width: 2px;
    height: 30px;
    bottom: -30px;
    left: 50%;
    background: -webkit-linear-gradient(180deg, rgb(200, 200, 200), rgb(244, 244, 244));
    background: -moz-linear-gradient(180deg, rgb(200, 200, 200), rgb(244, 244, 244));
    background: linear-gradient(180deg, rgb(200, 200, 200), rgb(244, 244, 244));
}
.why-select-us__list .item .icon svg {}
.why-select-us__list .item p {
    text-align: center;
    margin-top: 40px;
    font-size: 16px;
    color: #000;
    line-height: 150%;
}

/********************************/
/***************************/
.designers-banner {
    background: url(designers-banner.png) center/cover no-repeat;
    padding: 120px 0;
}

.designers-banner__content {
    background: #fff;
    padding: 48px;
    border-radius: 16px;
    max-width: 638px;
    width: 100%;
    -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}

.designers-banner__content h2 {
    text-transform: uppercase;
    font-size: 32px;
    color: #000;
    font-weight: bold;
}

.designers-banner__content p {
    margin-top: 16px;
    color: #464646;
    font-size: 18px;
    line-height: 150%;
}

.designers-banner__content .buttons {
    margin-top: 32px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 8px
}

.designers-banner__content .buttons button {}

.designers-banner__content .buttons a {
    padding: 14px 24px;
    background: #000;
    color: #fff;
    font-family: inherit;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 100px;
    cursor: pointer;
    transition: all .30s;
    border: 1px solid #000;
    text-decoration: none;
    text-align: center;
}

.designers-banner__content .buttons a:hover {
    background: #EB824B;
    color: #fff;
    transition: all .30s;
    border: 1px solid #EB824B;
}

.designers-banner__content .buttons button:last-child {
    padding: 14px 24px;
    background: #fff;
    color: #000;
    font-family: inherit;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 100px;
    cursor: pointer;
    transition: all .30s;
    border: 1px solid #000;
}

.designers-banner__content .buttons button:last-child:hover {
    background: #EB824B;
    color: #fff;
    transition: all .30s;
    border: 1px solid #EB824B;
}


/***************************/
.catalog {
    padding: 80px 0;
    background: #F4F4F4;
}
.catalog__head {}
.catalog__head h2 {
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 700;
    line-height: 100%;
}
.catalog__head p {
    margin-top: 16px;
    color: #464646;
    font-size: 18px;
    line-height: 150%;
}
.catalog-list {
    margin-top: 32px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 8px;
    
}
.catalog-list .item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    padding: 16px;
}
.catalog-list .item .img {}
.catalog-list .item .img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.catalog-list .item .description {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
}
.catalog-list .item .description h3 {
    font-size: 22px;
    font-weight: 500;
}
.catalog-list .item .description a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    background: #000;
    border-radius: 50%;
    flex: 0 0 48px;
}
/***************************************/
.form-block {
    padding: 80px 0 0;
}
.form-block-content {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 8px;
}
.form-block__form-wrapper {
    flex: 1 1 60%;
}
.form-block__form-wrapper h2 {
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 700;
    line-height: 100%;
}
.form-block__form-wrapper > p {
    margin-top: 16px;
    color: #464646;
    font-size: 18px;
    line-height: 150%;
}
.form-block__form-wrapper form {
    margin-top: 32px;
}
.form-block__form-wrapper form .form-group {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap:8px;
    flex-direction: column;
    margin-bottom: 16px;
}
.form-block__form-wrapper form input {
    border: none;
    border-bottom: 1px solid #DCDCDC;
    display: block;
    width: 100%;
    color: #000;
    outline: none;
    padding: 12px 0;
    font-size: 16px;
    font-family: inherit;
    margin-bottom: 16px;
}
.form-block__form-wrapper form input:placeholder {
    color: #7E7E7E;
}
.form-block__form-wrapper form p {
    color: #000;
    margin-top: 32px;
}
.form-block__form-wrapper form p a {
    color: #000;
    font-weight: bold;
}
.form-block__form-wrapper form button {
    padding: 14px 24px;
    background: #000;
    color: #fff;
    font-family: inherit;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 100px;
    cursor: pointer;
    transition: all .30s;
    border: 1px solid #000;
    text-decoration: none;
    margin-top: 16px;
}
.form-block__form-wrapper form button:hover {
    background: #EB824B;
    color: #fff;
    transition: all .30s;
    border: 1px solid #EB824B;
}
.form-block__form-wrapper form {}
.form-block__form-wrapper {}


.form-block__img {
    flex: 1 1 38%;
}
.form-block__img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/*******************************************/
.footer {
    margin-top: 80px;
    margin-bottom: 80px;
}
.footer-big-logo {
    margin-bottom: -40px;
}
.footer-big-logo img {
    width: 100%;
}
.footer-wrapper {
  background: rgb(215 215 215 / 30%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 64px;

}
.footer-top {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
.footer-menu-wrapper {
    flex: 1 1 60%;
}
.footer-menu-wrapper .footer-logo {}
.footer-menu-wrapper .footer-logo img {
    width: 100px;
    height: auto;
    object-fit: contain;
}
.footer-menu-wrapper .footer-menu {
    margin-top: 46px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 15px;
    align-items: center;
}
.footer-menu-wrapper .footer-menu a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 500;
}
.footer-menu-wrapper .footer-menu a:hover {
    transition: all .30s;
    color: #D96020;
}

.footer-menu-wrapper .footer-menu a:hover svg path {
    transition: all .30s;
    stroke: #D96020;
}

.footer-menu-wrapper .footer-menu a svg {
    transition: all .30s;
}

.footer-menu-wrapper .footer-menu a svg path {
    transition: all .30s;
}





.footer-menu-wrapper .footer-data {
    margin-top: 46px;
    color: #929292;
    font-size: 16px;
}
.footer-contacts {}
.footer-contacts h4 {
    font-size: 18px;
    font-weight: 600;
}
.footer-contacts .phone {
    text-decoration: none;
    margin-top: 16px;
    display: block;
    color: #000;
    font-size: 32px;
    font-weight: bold;
    transition: all .30s;
}
.footer-contacts .email {
    text-decoration: none;
    margin-top: 8px;
    display: block;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    transition: all .30s;
}
.footer-contacts a:hover {
    transition: all .30s;
    color: #EB824B;
}
.footer-contacts .footer-social {
    margin-top: 32px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 8px;
}
.footer-contacts .footer-social a {
    background: #000;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    transition: all .30s;
}

.footer-contacts .footer-social a:hover {
    transition: all .30s;
    background: #EB824B;
}
.footer-bottom {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #DCDCDC;
}
.footer-bottom .footer-bottom__menu {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 15px;
}
.footer-bottom .footer-bottom__menu a {
    color: #464646;
    text-decoration: none;
    transition: all .30s;
}
.footer-bottom .footer-bottom__menu a:hover {
    transition: all .30s;
    color: #EB824B;
}
/***********************/
.close-mob-menu, .mob-menu-social, .mob-logo, .header_buttons-mob-menu  {
    display: none;
}
/******************************************/
/******************************************/
/******************************************/
/******************************************/

.popup-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 15px;
    background: #00000073;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup {
    max-width: 1110px;
    width: 100%;
    background: #fff;
    padding: 24px;
    border-radius: 16px;
}

/******************************************/
/******************************************/
/******************************************/
/******************************************/
/******************************************/

.breadcrumbs-wrapper {
    background: #F4F4F4;
}

.breadcrumbs {
    padding: 12px 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumbs a {
    text-decoration: none;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #000;
    font-size: 16px;
}
.breadcrumbs a svg {
    margin-bottom: 2px;
}
.breadcrumbs span {
    color: #919191;
    font-weight: bold;
}
.breadcrumbs .separator {
    color: #C3C3C3;
}

.promo-list {
    margin-top: 48px;
}

.promo-list__head h1 {
    text-transform: uppercase;
    color: #000;
    font-weight: 700;
    font-size: 32px;
}

.promo-list__list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
}
.promo-list__list article {
    flex: 1 1 48%;
    border-radius: 8px;
    position: relative;
    max-width: 50%;
}
.promo-list__list article .date {
    text-align: center;
    padding: 8px;
    background: #F4F4F4;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-top: -4px;
    color: #000;
    font-weight: 500;
    font-size: 14px;
}
.promo-list__list article .img {}
.promo-list__list article .img a {
    display: block;
    text-decoration: none;
}
.promo-list__list article > .img img {
    width: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    height: 100%;
    object-fit: cover;
    
}
.promo-list__list article .promo-list__list-article-info {
    position: absolute;
    bottom: 55px;
    left: 15px;
    width: calc(100% - 30px);
    z-index: 100;
    background: rgba(119, 119, 119, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 16px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 15px;
    align-items: center;
}
.promo-list__list article .promo-list__list-article-info .img {}
.promo-list__list article .promo-list__list-article-info .img img {
    height: 48px;
    width: 48px;
    object-fit: cover;
}
.promo-list__list article .promo-list__list-article-info .text {}
.promo-list__list article .promo-list__list-article-info .text h2 {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}
.promo-list__list article .promo-list__list-article-info .text a {
    color: #fff;
    font-size: 14px;
}
.promo-list__list article {}
.promo-list__list article {}
.promo-list__list article {}
.promo-list__list {}

.products-slider-block-grey-bg {
    background: #F4F4F4;
    padding: 80px 0;
}
.products-slider-block-grey-bg .head-title .label {
    background: #fff;
}
.products-slider-block-grey-bg .products-slider-block__head .buttons > div {
    border: 1px solid #C8C8C8;
}
.products-slider-block-grey-bg .product-card {
    background: #fff;
    overflow: hidden;
}
/******************************/
/******************************/
/******************************/
/******************************/

.promo-single {
    margin-top: 48px;
}
.promo-single__wrapper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 30px;
}
.promo-single__wrapper > div {
    flex: 1 1 45%;
}
.promo-single__wrapper-content {}
.promo-single__wrapper-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
}
.promo-single__wrapper-content .date {
    margin-top: 12px;
    text-align: center;
    background: #FFF5EF;
    color: #D96020;
    border-radius: 100px;
    padding: 8px 16px;
    display: inline-block;
    font-weight: 500;
}
.promo-single__wrapper-content .content {
    color: #464646;
    margin-top: 16px;
    font-size: 18px;
}
.promo-single__wrapper-content .content p {
    margin-bottom: 12px;
    line-height: 150%;
    
}
.promo-single__wrapper-content .to-product {
    display: inline-block;
    margin-top: 32px;
    text-decoration: none;
    padding: 14px 24px;
    color: #fff;
    background: #000;
    border-radius: 100px;
    transition: all .30s;
    border: 1px solid #000;
}
.promo-single__wrapper-content .to-product:hover {
    transition: all .30s;
    background: transparent;
    color: #000;
}
.promo-single__wrapper-content {}
.promo-single__wrapper-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
}


/*************************************/
/*************************************/
/*************************************/
/*************************************/
/*************************************/

.contacts {
    margin-top: 48px;
}
.contacts-wrapper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 8px;
}
.contacts-content {
    background: #000000;
    background: linear-gradient(180deg,rgba(0, 0, 0, 1) 9%, rgba(235, 130, 75, 1) 100%);
    padding: 32px;
    border-radius: 16px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
    flex: 1 1 40%;
    justify-content: space-between;
}


.contacts-content .info .phone {
    padding-bottom: 12px;
}
.contacts-content .info .work-time {
    padding: 12px 0;
    border-top: 2px dashed #ffffff30;
    border-bottom: 2px dashed #ffffff30;
}
.contacts-content .info .dayoff {
    padding: 12px 0;
}
.contacts-content .info h2 {
    color: #ffffffc2;
    font-weight: normal;
    font-size: 16px;
    margin-bottom: 4px;
}
.contacts-content .info a {
    font-size: 24px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: all .30s;
}
.contacts-content .info a:hover {
    transition: all .30s;
    color: #EB824B;
}
.contacts-content .info p {
    font-size: 24px;
    color: #fff;
    font-weight: 500;
}
.contacts-content .social {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 8px;
}
.contacts-content .social a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    width: 48px;
    background: rgba(0, 0, 0, 0.51);
    border-radius: 50%;
    transition: all .30s;
}
.contacts-content .social a:hover {
    transition: all .30s;
    background: #EB824B;
}
.contacts-form {
    background: #fff;
    border: 1px solid #E3E3E3;
    border-radius: 16px;
    padding: 48px;
}
.contacts-form .iti__flag-container {
    height: 44px;
}
.contacts-form .iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
}
.contacts-form h1 {
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 700;
    line-height: 100%;
}
.contacts-form p {
    margin-top: 16px;
    color: #464646;
    font-size: 18px;
    line-height: 150%;
}
.contacts-form form {}
.contacts-form {}



.contacts-form form {
    margin-top: 32px;
}
.contacts-form form .form-group {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap:8px;
    flex-direction: column;
    margin-bottom: 16px;
}
.contacts-form form input {
    border: none;
    border-bottom: 1px solid #DCDCDC;
    display: block;
    width: 100%;
    color: #000;
    outline: none;
    padding: 12px 0;
    font-size: 16px;
    font-family: inherit;
    margin-bottom: 16px;
}
.contacts-form form input:placeholder {
    color: #7E7E7E;
}
.contacts-form form p {
    color: #000;
    margin-top: 32px;
}
.contacts-form form p a {
    color: #000;
    font-weight: bold;
}
.contacts-form form button {
    padding: 14px 24px;
    background: #000;
    color: #fff;
    font-family: inherit;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 100px;
    cursor: pointer;
    transition: all .30s;
    border: 1px solid #000;
    text-decoration: none;
    margin-top: 16px;
}
.contacts-form form button:hover {
    background: #EB824B;
    color: #fff;
    transition: all .30s;
    border: 1px solid #EB824B;
}

/************************************/
/************************************/
/************************************/
/************************************/

.abount-page {
    margin-top: 48px;
}
.about-page-wrapper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.about-page-wrapper__head {
    flex: 1 1 40%;
}
.about-page-wrapper__head h1 {
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 700;
    line-height: 100%;
}
.about-page-wrapper__head p {
    margin-top: 16px;
    color: #464646;
    font-size: 18px;
    line-height: 150%;
}
.about-page-wrapper__content {
    flex: 1 1 60%;
    font-size: 18px;
    color: #464646;
}
.about-page-wrapper__content p {
    margin-bottom: 12px;
}
.about-banner {
    margin-top: 48px;
    height: 300px;
    background: url(about-banner.png) center/cover no-repeat;
}

/************************************/
/************************************/
/************************************/
/************************************/

.designers-page {
    margin-top: 48px;
}
.designers-page-wrapper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.designers-page-wrapper__head {
    flex: 1 1 40%;
}
.designers-page-wrapper__head h1 {
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 700;
    line-height: 100%;
}
.designers-page-wrapper__head p {
    margin-top: 16px;
    color: #464646;
    font-size: 18px;
    line-height: 150%;
}
.designers-page-wrapper__content {
    flex: 1 1 60%;
    font-size: 18px;
    color: #464646;
}
.designers-page-wrapper__content p {
    margin-bottom: 12px;
}
.designers-banner {
    margin-top: 48px;

    background: url(help-banner-bg.png) center/cover no-repeat;
}
/****************************************/
/****************************************/
/****************************************/
/****************************************/
/****************************************/
/****************************************/
.page-404 {
    margin-top: 80px;
}
.page-404-wrapper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-404-wrapper__content {
    max-width: 540px;
    width: 100%;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #DCDCDC;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.page-404-wrapper__content h2 {
    font-size: 128px;
    color: #000;
    font-weight: 900;
    letter-spacing: 14px;
}
.page-404-wrapper__content h2 span {
    color: #D96020;
}
.page-404-wrapper__content h3 {
    margin-top: 24px;
    font-size: 22px;
    color: #000;
    font-weight: 500;
}
.page-404-wrapper__content p {
    margin-top: 12px;
    color: #464646;
    font-size: 16px;
    line-height: 150%;
}
.page-404-wrapper__content a {
    display: inline-block;
    margin-top: 32px;
    text-decoration: none;
    padding: 14px 24px;
    color: #fff;
    background: #000;
    border-radius: 100px;
    transition: all .30s;
    border: 1px solid #000;
}
.page-404-wrapper__content a:hover {
 transition: all .30s;
 background: transparent;
 color: #000;
}
/***************************************/
/***************************************/
/***************************************/
/***************************************/
/***************************************/
.thx-page {
    margin-top: 80px;
}
.thx-page-wrapper {
    max-width: 540px;
    margin: 0 auto;
    padding: 32px;
    background: #F4F4F4;
    border-radius: 16px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.thx-page-wrapper h1 {
    margin-top: 24px;
    color: #000;
    font-weight: 600;
    text-align: center;
}
.thx-page-wrapper p {
    margin-top: 8px;
    color: #7E7E7E;
    line-height: 150%;
    text-align: center;
    font-size: 18px;
}
.thx-page-wrapper p span {
    color: #208630;
}
.thx-page-wrapper a {
    display: inline-block;
    margin-top: 24px;
    text-decoration: none;
    padding: 14px 24px;
    color: #fff;
    background: #000;
    border-radius: 100px;
    transition: all .30s;
    border: 1px solid #000;
}
.thx-page-wrapper a:hover {
    transition: all .30s;
    background: transparent;
    color: #000;
}
/*******************************/
/*******************************/
/*******************************/
/*******************************/
/*******************************/
.products {
    margin-top: 48px;
}
.products-head {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
}
.open-filter {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    gap: 6px;
    border: none;
    border-radius: 16px;
    padding: 8px 12px;
    font-size: 16px;
    color: #000;
    font-family: inherit;
    outline: none;
    background: #000;
    color: #fff;
    display: none;
}
.open-filter svg {
    height: 24px;
    width: 24px;
}
.products-head h1 {
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 700;
    line-height: 100%;
}
.products-wrapper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 24px;
    align-items: flex-start;
}
.products-filter {
    flex: 0 1 25%;
    border-radius: 16px;
    border: 1px solid #E3E3E3;
    padding: 16px;
}
.products-filter {}
.products-filter .price {}
.products-filter .price h4 {
    font-size: 16px;
    font-weight: 500;
    color: #0A3033;
}
.products-filter .price h4 span {
    background: #FFF5EF;
    padding: 4px 8px;
    text-transform: uppercase;
    border-radius: 100px;
    color: #D96020;
    font-size: 14px;
}
.products-filter .price .form-group {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 8px;
    justify-content: space-between;
    margin-top: 12px;
}
.products-filter .price .form-group input {
    display: block;
    flex: 1 1 48%;
    font-size: 16px;
    outline: none;
    border: 1px solid #E3E3E3;
    border-radius: 100px;
    padding: 6px 14px;
    color: #7E7E7E;
    width: 100%;
}
.products-filter .price .form-group input:placeholder {
    color: #7E7E7E;
}
.products-filter .price .price-placeholders {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    gap: 4px;
    flex-wrap: wrap;
    margin-top: 12px;
}
.products-filter .price .price-placeholders .item {
    flex: 1 1 49%;
    background: #F4F4F4;
    text-align: center;
    border-radius: 6px;
    padding: 6px;
    font-size: 14px;
    color: #5E5E5E;
    font-weight: 500;
    cursor: pointer;
    transition: all .30s;
}
.products-filter .price .price-placeholders .item:hover {
    transition: all .30s;
    background: #FFF5EF;
    color: #D96020;
}

.products-filter .filter-category {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E3E3E3;
    border-bottom: 1px solid #E3E3E3;
    padding-bottom: 8px;
}
.products-filter .filter-category h4 {
    font-size: 16px;
    font-weight: 500;
    color: #0A3033;
}
.products-filter .filter-category .list {
    margin-top: 12px;
}
.products-filter .filter-category .list label {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    position: relative;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
    font-family: inherit;
    color: #464646;
}
.products-filter .filter-category .list label input {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
}
.products-filter .filter-category .list label span {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1px solid #DCDCDC;
    border-radius: 2px;
    position: relative;
}
.products-filter .filter-category .list label span:before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    width: 12px;
    height: 12px;
    background: #0A3033;
    border-radius: 2px;
    display: none;
}
.products-filter .filter-category .list label input:checked + span:before {
    display: block;
}

.products-filter .filter-color {
    margin-top: 20px;
}
.products-filter .filter-color h4 {
    font-size: 16px;
    font-weight: 500;
    color: #0A3033;
}
.products-filter .filter-color .list {
    margin-top: 12px;
}
.products-filter .filter-color .list label {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 8px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 10px;
}
.products-filter .filter-color .list label .check {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    gap: 8px;
    
}
.products-filter .filter-color .list label .check input {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
}
.products-filter .filter-color .list label .check span {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1px solid #DCDCDC;
    border-radius: 2px;
    position: relative;
}
.products-filter .filter-color .list label .check span:before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    width: 12px;
    height: 12px;
    background: #0A3033;
    border-radius: 2px;
    display: none;
}
.products-filter .filter-color .list label .check input:checked + span:before {
    display: block;
}
.products-filter .filter-color .list label .color {
    display: inline-block;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    overflow: hidden;
}
.products-filter button {
    display: flex;
    padding: 12px;
    border-radius: 100px;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    background: #000;
    font-family: inherit;
    border: 1px solid #000;
    margin-top: 24px;
    align-items: center;
    cursor: pointer;
    transition: all .30s;
    width: 100%;
    text-align: center;
    justify-content: center;
}
.products-list {
    flex: 1 1 74%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.products-list .product-card {
    flex: 1 1 32%;
    max-width: 33%;
    overflow: hidden;
}


/***************************************/
/***************************************/
/***************************************/
/***************************************/
/***************************************/
/***************************************/

.single-product-page {
    margin-top: 48px;
}

.single-product-wrapper {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: flex-start;
}
.single-product-wrapper .slider {
    flex: 1 1 45%;
}


.single-product-wrapper > * {
    min-width: 0;
    min-height: 0;
}

.single-product-page .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-product-page .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-product-page .swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.single-product-page .swiper-wrapper {
  align-items: center;
}

.single-product-page .swiper-slide {
  background-size: cover;
  background-position: center;
}

.single-product-page .mySwiper2 {
  height: 80%;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.single-product-page .mySwiper {
  height: 23%;
  box-sizing: border-box;
  padding: 10px 0;
}

.single-product-page .mySwiper .swiper-slide {
  width: 33%;
  height: 100%;
  opacity: 0.4;
  background: #fff;
}

.single-product-page .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.single-product-page .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  /*  border: 1px solid #C8C8C8;*/
}    

.single-product-page .swiper-button-next, .single-product-page .swiper-button-prev {
    color: #000;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #C8C8C8;
    background: #fff;
}
.single-product-page .swiper-button-next:after, .single-product-page .swiper-button-prev:after {
    font-size: 14px;
    font-weight: 600;
}
.single-product-page {}
.single-product-page {}
.single-product-page {}
.single-product-page {}

.single-product-wrapper .content {
    flex: 1 1 45%;
}
.single-product-wrapper .content h1 {
    font-weight: 600;
    font-size: 32px;
}
.single-product-wrapper .content .color-list {
    display: flex;  
    gap: 8px;
    margin-top: 12px;
}
.single-product-wrapper .content .color-list label {
    position: relative;
}
.single-product-wrapper .content .color-list label input {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
}
.single-product-wrapper .content .color-list label span {
    display: block;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}
.single-product-wrapper .content .color-list label span:before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    top: -2px;
    left: -2px;
    border-radius: 50%;
    display: block;
    border: 1px solid #000;    
    display: none;
}
.single-product-wrapper .content .color-list label input:checked + span:before {
    display: block;
}
.single-product-wrapper .content .price {
    margin-top: 24px;
}
.single-product-wrapper .content .price .discount-price {
    display: flex;
    gap: 6px;
    align-items: center;
}
.single-product-wrapper .content .price .discount-price .old-price {
    color: #828282;
    font-size: 16px;
    text-decoration: line-through;
}
.single-product-wrapper .content .price .discount-price .discount-total {
    padding: 2px 4px;
    background: #EB824B;
    border-radius: 4px;
    color: #fff;
}

.single-product-wrapper .content .price .total-price {
    font-size: 28px;
    font-weight: 600;
    margin-top: 4px;
}
.single-product-wrapper .content .count {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 24px;
}
.single-product-wrapper .content .count .quantity {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 16px;
    border-radius: 100px;
    border: 1px solid #E3E3E3;
}
.single-product-wrapper .content .count .quantity input {
    display: block;
    outline: none;
    font-size: 16px; 
    border: none;
    font-family: inherit;   
    font-weight: 600;
    width: 24px;
    text-align: center;
}
.single-product-wrapper .content .count .quantity button {
    display: flex;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    border: none;
    height: 24px;
    width: 24px;
    cursor: pointer;
}

.single-product-wrapper .content .count > button {
    display: flex;
    padding: 12px 20px;
    border-radius: 100px;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    background: #000;
    font-family: inherit;
    border: 1px solid #000;
    height: 58px;
    align-items: center;
    cursor: pointer;
    transition: all .30s;
}
.single-product-wrapper .content .count > button:hover {
    transition: all .30s;
    background: #fff;
    color: #000;
}

.single-product-wrapper .content .about {
    margin-top: 48px;
}
.single-product-wrapper .content .about h2 {
    font-size: 28px;
    font-weight: 600;
}
.single-product-wrapper .content .about .text {
    line-height: 150%;
    color: #000;
    margin-top: 16px; 
}
.single-product-wrapper .content .about .text p {
    margin-bottom: 16px;
    font-size: 16px;
}
.single-product-wrapper .content .about .text ul {
    margin-bottom: 16px;
    font-size: 16px;
    padding-left: 18px;
}
.single-product-content {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    margin-top: 72px;
    padding-top: 60px;
    border-top: 1px solid #eee;
}
.single-product-content .video {
    flex: 1 1 40%;
}
.single-product-content .video video {
    width: 100%;
    height: auto;
    border-radius: 16px;
}
.single-product-content .text {
    flex: 1 1 55%;
}
.single-product-content .text .title {
    font-size: 28px;
    font-weight: 600;
}
.single-product-content .content {
    margin-top: 24px;
}
.single-product-content .content p {
    font-size: 18px;
    line-height: 150%;
    color: #000;
    margin-bottom: 16px;
}


.single-product-wrapper .content .material {
    margin-top: 16px;  
}
.single-product-wrapper .content .material button {
    background: #fff;
    font-family: inherit;
    font-size: 16px;
    border: none;
    outline: none;
    color: #000;
    text-decoration: underline;
    cursor: pointer;
    transition: all .30s;
}
.single-product-wrapper .content .material button:hover {
    transition: all .30s;
    color: #EB824B;
}

.single-product-wrapper .content .fast-order {
    margin-top: 16px;  
}
.single-product-wrapper .content .fast-order h4 {
    font-size: 22px;
    font-weight: 600;
}
.single-product-wrapper .content .fast-order p {
    margin-top: 6px;
    line-height: 150%;
}
.single-product-wrapper .content .fast-order .form-group {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    max-width: 400px;
}
.single-product-wrapper .content .fast-order .form-group input {
    border: none;
    border-bottom: 1px solid #DCDCDC;
    display: block;
    width: 100%;
    color: #000;
    outline: none;
    padding: 12px 0;
    font-size: 16px;
    font-family: inherit;
}
.single-product-wrapper .content .fast-order .form-group button {
    padding: 10px 20px;
    background: #000;
    color: #fff;
    font-family: inherit;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 100px;
    cursor: pointer;
    transition: all .30s;
    border: 1px solid #000;
    text-decoration: none;
    margin-top: 16px;
}
.single-product-features {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 72px;
}
.single-product-features .item {
    display: flex;
    flex-direction: column;
    flex: 1 1 23%;
    align-items: center;
}
.single-product-features .item svg {
    height: 48px;
    width: 48px;
}
.single-product-features .item p {
    margin-top: 16px;
    font-size: 18px;
    line-height: 130%;
    text-align: center;
}
.material-popup-weapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000009e;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 15px;
    display: none;
}
.material-popup {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    max-width: 664px;
    width: 100%;
    overflow: auto;
    position: relative;
}
.material-popup .list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 16px;
}
.close-material-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}
.material-popup h2 {
    font-size: 18px;
    font-weight: 500;
    color: #000;
}
.material-popup .list .item img {
    height: 150px;
    width: 150px;
    object-fit: contain;
    border-radius: 6px;
}
.material-popup .list .item p {}
.material-popup .list {}
.material-popup .list {}
.material-popup {}
.material-popup {}
.material-popup {}
.material-popup {}
/*************************************/
/*************************************/
/*************************************/
/*************************************/
/*************************************/
.cart-page {
    margin-top: 48px;
}
.cart-page-title h1 {
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 700;
    line-height: 100%;
    color: #000;
}
.cart-content-wrapper {
    display: flex;
    gap: 8px;
    margin-top: 24px;
    align-items: flex-start;
}
.cart-list {

    border-radius: 16px;
    padding: 0 24px;
    border: 1px solid #E3E3E3;
    flex: 1 1 68%;
}
.cart-list .item {
    display: flex;
    gap: 16px;
    padding: 24px 0;
    border-top: 2px dashed #eee;
}
.cart-list .item:first-child {
    border: none;
}
.cart-list .item .img img {
    width: 150px;
    height: 100px;
    object-fit: contain;
}
.cart-list .item .content {
    width: 100%;
}
.cart-list .item .content a {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
}


.cart-list .item .content .price {
    margin-top: 16px;
}
.cart-list .item .content .price .discount-price {
    display: flex;
    gap: 6px;
    align-items: center;
}
.cart-list .item .content .price .discount-price .old-price {
    color: #828282;
    font-size: 16px;
    text-decoration: line-through;
}
.cart-list .item .content .price .discount-price .discount-total {
    padding: 2px 4px;
    background: #EB824B;
    border-radius: 4px;
    color: #fff;
}

.cart-list .item .content .price .total-price {
    font-size: 28px;
    font-weight: 600;
    margin-top: 6px;
}



.cart-list .item .content .quantity {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 8px;
    border-radius: 100px;
    border: 1px solid #E3E3E3;
    width: 120px;
    margin-top: 8px;
}
.cart-list .item .content .quantity input {
    display: block;
    outline: none;
    font-size: 16px; 
    border: none;
    font-family: inherit;   
    font-weight: 600;
    width: 24px;
    text-align: center;
}
.cart-list .item .content .quantity button {
    display: flex;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    border: none;
    height: 24px;
    width: 24px;
    cursor: pointer;
}

.cart-list .item .content .delete {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
}
.cart-list .item .content .delete button {
    display: flex;
    align-items: center;
    background: #fff;
    gap: 4px;
    outline: none;
    border: none;
    font-size: 16px;
    font-family: inherit;
    cursor: pointer;
    transition: all .30s;
}
.cart-list .item .content .delete button svg path {
    transition: all .30s;
}
.cart-list .item .content .delete button:hover {
    transition: all .30s;
    color: red;
}
.cart-list .item .content .delete button:hover svg path {
    stroke: red;
    transition: all .30s;
}
.cart-list .item .content .params {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.cart-form {
    flex: 1 1 30%;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #E3E3E3;
}
.cart-form h4 {
    text-align: center;
    font-weight: 500;
    font-size: 16px;
}
.cart-form h4 span {
    font-weight: bold;
}

.cart-form .price {
    margin-top: 16px;
}
.cart-form .price .discount-price {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
}
.cart-form .price .discount-price .old-price {
    color: #828282;
    font-size: 16px;
    text-decoration: line-through;
}
.cart-form .price .discount-price .discount-total {
    padding: 2px 4px;
    background: #EB824B;
    border-radius: 4px;
    color: #fff;

}

.cart-form .price .total-price {
    font-size: 28px;
    font-weight: 600;
    margin-top: 6px;
    text-align: center;
}


.cart-form .form {
    margin-top: 24px;
}
.cart-form .form input {
    display: block;
    width: 100%;
    color: #000;
    font-size: 16px;
    font-family: inherit;
    padding: 12px 24px;
    border: 1px solid #E3E3E3;
    border-radius: 100px;
    margin-bottom: 16px;
    outline: none;
}
.cart-form .form input:placeholder {
    color: #7e7e7e;    
}
.cart-form .form button {
    border: 1px solid #000;
    background: #000;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    outline: none;
    padding: 12px;
    border-radius: 100px;
    display: block;
    width: 100%;
    font-weight: 600;
    cursor: pointer;
    transition: all .30s;
}
.cart-form .form button:hover {
    transition: all .30s;
    background: #fff;
    color: #000;
}
.cart-form .form p {
    font-size: 14px;
    margin-top: 16px;
    text-align: center;
    color: #7e7e7e;
}
.cart-form .form p a {
    color: #000;
}