@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

body {
    font-family: "Onest", sans-serif;
}

body.page {
    margin: 0;
}

img {
    max-width: 100%;
}

p {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumbs_mobile {
    display: none;
}

ul#breadcrumb {
    display: flex;
}

ul#breadcrumb>li {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    transition: all 0.3s;
}

ul#breadcrumb>li>a {
    color: #000;
}

ul#breadcrumb>li:hover a {
    color: #812f38;
}

ul#breadcrumb>li:first-child::after {
    content: url("../images/icons/arrow-right.svg");
    display: flex;
    margin: 0 1rem;
}

a {
    text-decoration: none;
}

/* Search block */

.search_block {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.search_block>.search_icon {
    position: absolute;
    z-index: 999;
    transition: all .3s ease;
}

.search_block.active>.search_icon {
    opacity: 0;
    visibility: hidden;
}

.search_block>.close_icon {
    opacity: 0;
    visibility: hidden;
    display: flex;
    width: 40px;
    height: 40px;
    position: absolute;
    z-index: 9999;

    transition: all .3s ease;
}

.close_icon::before,
.close_icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background-color: black;
}

.close_icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close_icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.search_block>.close_icon.active {
    opacity: 1;
    visibility: visible;
}

.search_container {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: var(--shp-header-bottom, 127px);
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #812f38;
    z-index: 999;
    padding: 10px;
    box-sizing: border-box;
    transition: all .3s ease;
}

.search_container.active {
    opacity: 1;
    visibility: visible;
}

.search_container>.container {
    display: flex;
    align-items: center;
}

.search_container>.container>span {
    font-size: 30px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    margin-right: 1rem;
}

.search_container>.container>form {
    display: flex;
    width: 100%;
    align-items: center;
}

.search_container>.container>form>label {
    width: 100%;
    display: flex;
    justify-content: center;
}

.search_container>.container>form>label>input {
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0;
    background: transparent;
    width: 90%;
    border-bottom: 1px solid;
    border-color: #fff;
    margin-right: 1rem;
    outline: none;
    color: #fff;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
}

.search_container>.container>form>label>input::placeholder {
    color: #fff;
}

.search_container>.container>form>input[type="submit"] {
    width: 40%;
    background-color: #fff;
    border-radius: 100px;
    border: none;
    transition: all .3s ease;
}

.search_container>.container>form>input[type="submit"]:hover {
    background-color: #000;
    color: #fff;
}

/* End search */

/* Mobile menu */

.burger {
    display: none;
    margin-right: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.open span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

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

.burger.open span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.mobile_site_settings {
    width: 25%;
    display: none;
    padding-right: 20px;
}

.mobile-menu {
    position: fixed;
    top: var(--shp-header-bottom, 127px);
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: 15px;
    transition: left 0.3s ease;
    z-index: 1000;
}

.mobile-menu>ul>li {
    margin-bottom: 1rem;
}

.mobile-menu>ul>li>a {
    font-weight: 600;
    font-size: 25px;
    color: #000;
    transition: all .3s ease;
}

.mobile-menu>ul>li>a:hover {
    color: #812f38;
}

body.open {
    overflow: hidden;
}

/* End mobile menu */

.topbar {
    display: flex;
    align-items: center;
    width: 100%;
    background: rgba(35, 35, 35, 1);
    min-height: 40px;
    color: #fff;
}

.topbar>.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.topbar span {
    display: flex;
    align-items: center;
}

.topbar span>a {
    color: #fff;
}

.topbar span::before {
    content: url("../images/icons/phone.svg");
    display: flex;
    margin-right: 5px;
    margin-top: 3px;
}

header {
    width: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 20px 0px;
}

header>.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header>.container>.menu>ul {
    display: flex;
}

header>.container>.menu>ul>li {
    margin: 0 25px;
    outline: none;
}

header>.container>.menu>ul>li>a {
    color: rgba(29, 29, 27, 1);
    font-size: 20px;
    font-weight: 500;
    outline: none;
    transition: all .3s ease;
}

header>.container>.menu>ul>li.current-menu-item>a {
    color: #812f38;
}

header>.container>.menu>ul>li>a:hover {
    color: #812f38;
}

header .site_settings {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .mobile_site_settings .search_block {
    display: none;
}

header .site_settings>.feedback_block {
    margin: 0 25px;
}

header .site_settings>.language_menu ul>li.menu-item-has-children {
    display: flex;
    align-items: center;
    position: relative;
    padding: 10px 0px;
    transition: all .3s ease;
}

header .site_settings>.language_menu ul>li.menu-item-has-children>a {
    font-weight: 500;
    font-size: 18px;
    color: rgba(29, 29, 27, 1);
}

header .site_settings>.language_menu ul>li.menu-item-has-children::after {
    content: url("../images/icons/arrow-down.svg");
    display: flex;
    margin-left: 10px;
    transition: all .3s ease;
}

header .site_settings>.language_menu ul>li.menu-item-has-children:hover:after {
    transform: rotate(180deg);
}

header .site_settings>.language_menu ul>li.menu-item-has-children>ul.sub-menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 40px;
    left: -10px;
    padding: 10px 20px;
    border-radius: 10px;
    z-index: 999;
    max-width: 200px;
    background-color: #fff;
    margin-left: 0;
    -webkit-box-shadow: 0px 0px 14px -11px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0px 0px 14px -11px rgba(0, 0, 0, 1);
    box-shadow: 0px 0px 14px -11px rgba(0, 0, 0, 1);
}

header .site_settings>.language_menu ul>li.menu-item-has-children:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
}

header .site_settings>.language_menu ul>li.menu-item-has-children>ul.sub-menu>li>a {
    color: rgba(29, 29, 27, 1);
    font-weight: 500;
}

header .site_settings>.language_menu ul>li.menu-item-has-children>ul.sub-menu>li>a:hover {
    color: #812f38;
}

/* Homepage */

.homepage_slider .homepage_slide {
    position: relative;
    height: 100%;
    font-family: 'Inter', sans-serif;
}

.homepage_slider .homepage_slide .overlay_slide {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.436);
}

.homepage_slider .homepage_slide .homepage_slider_info {
    width: 100%;
    top: 50%;
    transform: translate(0px, -50%);
    position: absolute;
    z-index: 9999;
    text-align: center;
    color: #fff;
}

.homepage_slider .homepage_slide .homepage_slider_info>h1 {
    max-width: 75%;
    font-weight: 700;
    font-size: 50px;
    margin: 0 auto;
    margin-bottom: 1.5rem;
}

.homepage_slider .homepage_slide .homepage_slider_info>p {
    max-width: 70%;
    margin: 0 auto;
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 2rem;
}

.homepage_slider .homepage_slide .homepage_slider_info>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 208px;
    min-height: 50px;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    border-radius: 100px;
    border: 1px solid;
    border-color: #fff;
    margin: 0 auto;
    transition: all .3s ease;
}

.homepage_slider .homepage_slide .homepage_slider_info>a:hover {
    background-color: #fff;
    color: rgb(56 56 56 / 28%);
}

.homepage_slider .slick-slide img {
    width: 100%;
}

/* Homepage - Block About Us */

.block_about_us {
    width: 100%;
    padding: 8rem 0;
}

.block_about_us .col-sm-6 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.block_about_us .col-sm-6>img {
    width: 80%;
}

.block_about_us .col-sm-6:last-child {
    justify-content: start;
}

.block_about_us .col-sm-6>div {
    max-width: 450px;
}

.block_about_us .col-sm-6>div>p {
    margin-bottom: 1rem;
}

.block_about_us .col-sm-6>div>a {
    display: flex;
    width: 208px;
    min-height: 50px;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    border: 1px solid;
    border-color: rgba(29, 29, 27, 1);
    color: rgba(29, 29, 27, 1);
    margin-top: 3rem;
    transition: all .3s ease;
}

.block_about_us .col-sm-6>div>a:hover {
    background-color: rgba(29, 29, 27, 1);
    color: #fff;
}

/* Homepage - Block Factory Group */

.block_factory_group {
    width: 100%;
    padding: 0 0 6rem 0;
}

.block_factory_group>.container>h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 40px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.block_factory_group>.container:last-child {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.block_factory_group>.container>.factory_group_col {
    width: 25%;
    text-align: center;
    margin-bottom: 3rem;
}

.block_factory_group>.container>.factory_group_col>.factory_group_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    margin-bottom: 1.5rem;
}

.block_factory_group>.container>.factory_group_col>h3 {
    width: 80%;
    display: flex;
    justify-content: center;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    margin: 0 auto;
}

/* Homepage - Block Gallery */

.gallery_wrapper {
    display: grid;
    grid-template-areas:
        "item1 item1 item2 item3"
        "item1 item1 item2 item3"
        "item1 item1 item4 item4";
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0px;
    margin-bottom: 8rem;
}

.grid_item_1 {
    grid-area: item1;
}

.grid_item_2 {
    grid-area: item2;
}

.grid_item_3 {
    grid-area: item3;
}

.grid_item_4 {
    grid-area: item4;
}

.gallery_item {
    position: relative;
}

.gallery_item a {
    outline: none;
}

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

.gallery_item.grid_item_2 img,
.gallery_item.grid_item_3 img {
    height: 100%;
}

.gallery_item .gallery_item_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.5);
}

.gallery_item .gallery_info {
    display: flex;
    flex-wrap: wrap;
    height: auto;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    bottom: 0;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 999;
}

.gallery_item .gallery_info h3 {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
}

.gallery_item .gallery_info p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 23px;
    text-align: center;
}

/* Text after gallery */

.text_after_gallery {
    width: 100%;
    padding: 0 0 8rem 0;
}

.text_after_gallery .text_gallery_icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.text_after_gallery hr {
    background-color: rgba(217, 217, 217, 1);
    height: 2px;
    width: 60%;
    margin: 0 auto;
    border: none;
}

.text_after_gallery .text_gallery {
    display: flex;
    justify-content: center;
    padding: 0 10rem;
    text-align: center;
    margin-top: 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: rgba(29, 29, 27, 1);
}

/* Homepage - Block advantages */

.block_advantages {
    width: 100%;
    padding: 8rem 0;
    background-color: rgba(130, 48, 56, 1);
}

.block_advantages img {
    display: block;
    margin: 0 auto;
}

.block_advantages p {
    text-align: center;
    margin-top: 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #fff;
}

/* Homepage - Block factories */

.block_factories {
    width: 100%;
    padding: 6rem 0 8rem 0;
    font-family: 'Inter', sans-serif;
}

.block_factories>.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.block_factories>.container>h2 {
    width: 100%;
    text-align: center;
    margin: 3rem 0;
    font-weight: 600;
    font-size: 40px;
    line-height: 46px;
}

.block_factories .factory-slider {
    padding-left: 15.5%;
}

.block_factories .swiper-slide .factory-thumbnail {
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 4rem;
}

.block_factories .swiper-slide .factory_content {
    max-width: 90%;
}

.block_factories .swiper-slide .factory_content>h3 {
    font-weight: 500;
    font-size: 32px;
    line-height: 39px;
    margin-bottom: 1rem;
    min-height: 80px;
}

.block_factories .swiper-slide .factory_content>p {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
}

.block_factories .swiper-button-next,
.block_factories .swiper-button-prev {
    display: none;
}

/* Homepage - block Top sales */

.block_top_sales {
    width: 100%;
    padding-bottom: 3rem;
}

.block_top_sales>.container>h2 {
    width: 100%;
    text-align: left;
    font-weight: 600;
    font-size: 40;
    margin-bottom: 2rem;
}

.top_sales_arrows {
    width: 100%;
    display: flex;
    justify-content: end;
    margin-top: 2rem;
}

.top_sales_arrows>div {
    display: flex;
    align-items: center;
    width: 22px;
    height: 17px;
    cursor: pointer;
}

.top_sales_arrows>div.slick-disabled {
    opacity: 0.5;
}

.top_sales_arrows>.arrow_prev_sales {
    transform: rotate(180deg);
    margin-right: 1.5rem;
}

.block_top_sales .slick-slide {
    margin: 0 10px;
}

.block_top_sales .slick-slide img {
    width: 100%;
    border: 1px solid;
    border-color: rgba(217, 217, 217, 1);
    border-bottom: none;
}

.block_top_sales .slick-list {
    margin: 0 -10px;
}

.top_sales_slider .slick-slide div>a>img {
    height: 258px;
    object-fit: contain;
}

.product_sales_info {
    padding: 24px 18px;
    border: 1px solid;
    border-color: rgba(217, 217, 217, 1);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    font-family: 'Inter', sans-serif;
}

.product_sales_info>h2 {
    width: 100%;
    font-weight: 500;
    font-size: 23px;
    min-height: 85px;
    margin-bottom: 1rem;
}

.product_sales_info>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: rgba(130, 48, 56, 1);
    border-radius: 40px;
    color: #fff;
    min-height: 40px;
    transition: all .3s ease;
}

.product_sales_info>a:hover {
    background-color: #000;
}

/* Footer */

footer {
    background-color: rgba(35, 35, 35, 1);
    padding: 5rem 0 0 0;
}

footer>.container:first-child {
    padding-bottom: 3rem;
    border-bottom: 2px solid;
    border-color: rgba(255, 255, 255, 1);
    margin-bottom: 3rem;
}

footer .col-sm-6>p {
    color: #fff;
    margin-bottom: 2.5rem;
}

footer .footer_socials.mobile {
    display: none;
}

footer .col-sm-6>.footer_socials ul {
    display: flex;
}

footer .col-sm-6>.footer_socials ul>li {
    margin-right: 1rem;
}

footer .col-sm-6>.footer_socials ul>li:last-child {
    margin-right: 0;
}

footer .footer_subscribe {
    display: flex;
    justify-content: end;
}

footer .footer_subscribe .wpcf7 {
    border: 1px solid;
    border-color: rgba(255, 255, 255, 1);
    border-radius: 100px;
    padding: 0 20px;
}

footer .wpcf7-spinner {
    margin: 0;
    position: absolute;
    bottom: -40px;
    left: 50%;
}

footer .wpcf7 form.sent .wpcf7-response-output {
    color: #fff;
    position: absolute;
    border-color: #46b450;
    bottom: -90px;
    text-align: center;
    font-size: 14px;
}

footer .footer_subscribe .wpcf7,
footer .footer_subscribe form {
    display: flex;
    width: auto;
}

footer .footer_subscribe form {
    position: relative;
}

footer .footer_subscribe form input {
    background-color: transparent;
    border: none;
    min-height: 58px;
    outline: none;
}

footer .footer_subscribe form input[type="email"] {
    max-width: 230px;
    color: #fff;
}

footer .footer_subscribe form input[type="email"]::placeholder {
    font-size: 23px;
    font-weight: 500;
}

footer .footer_subscribe form input[type="submit"] {
    color: #fff;
    border-bottom: 1px solid #fff;
    min-height: auto;
    padding: 0;
    border-radius: 0;
    padding-bottom: 5px;
    font-size: 18px;
    margin-top: 18px;
    margin-right: 20px;
}

footer>.container:nth-child(2) {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 6rem;
    border-bottom: 2px solid;
    border-color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
}

footer .footer_info {
    position: relative;
}

footer .footer_logo>img {
    margin-bottom: 1.5rem;
}

footer .footer_logo>p {
    color: #fff;
    font-size: 23px;
    font-weight: 500;
}

footer .footer_catalog {
    position: absolute;
    bottom: 0;
    left: 0;
}

footer .footer_catalog.mobile {
    display: none;
}

footer .footer_catalog>a {
    display: flex;
    align-items: center;
    min-height: 55px;
    color: #fff;
    border-radius: 40px;
    border: 1px solid;
    border-color: #fff;
    padding: 10px 30px;
    font-weight: 400;
    font-size: 20px;
}

footer .footer_catalog>a>img {
    margin-right: 1rem;
}

footer .footer_menus {
    display: flex;
    width: 60%;
    justify-content: space-between;
}

footer .footer_menus .footer_menu>div {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 1.5rem;
}

footer .footer_menus .footer_menu>ul>li {
    margin-bottom: 1.5rem;
}

footer .footer_menus .footer_menu>ul>li>a {
    color: #fff;
}

footer .footer_menus .footer_menu>ul>li>a:hover {
    text-decoration: underline;
}

.footer_copyright {
    display: flex;
    align-items: center;
    background-color: rgba(150, 149, 146, 1);
    min-height: 50px;
    font-weight: 500;
    font-size: 13px;
    color: rgba(255, 255, 255, 1);
}

.footer_copyright a {
    color: rgba(255, 255, 255, 1);
}

.footer_copyright>.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer>.container:nth-child(3) {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

footer .footer_languages>ul>li>a {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
}

footer .footer_languages>ul>li.menu-item-has-children {
    display: flex;
    position: relative;
    padding: 10px 0;
    align-items: center;
    transition: all .3s ease;
}

footer .footer_languages>ul>li.menu-item-has-children::after {
    content: url("../images/icons/arrow-down-white.svg");
    display: flex;
    margin-left: 10px;
    margin-top: -3px;
    transition: all .3s ease;
}

footer .footer_languages>ul>li.menu-item-has-children>ul.sub-menu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: -60px;
    left: -10px;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px 20px;
    margin: 0;
}

footer .footer_languages>ul>li.menu-item-has-children:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
}

footer .footer_languages>ul>li.menu-item-has-children>ul.sub-menu>li>a {
    color: rgba(35, 35, 35, 1);
    font-weight: 500;
}

footer .footer_languages>ul>li.menu-item-has-children>ul.sub-menu>li>a:hover {
    color: #812f38;
}

footer .footer_languages>ul>li.menu-item-has-children:hover:after {
    transform: rotate(180deg);
}

footer .footer_main_text {
    color: #fff;
    display: flex;
    align-items: center;
}

footer .footer_main_text.mobile {
    display: none;
}

/* Catalog page */

.catalog_head {
    width: 100%;
    min-height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.catalog_head h1,
.catalog_head p {
    text-align: center;
    color: #fff;
}

.catalog_head h1 {
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    font-size: 65px;
}

.catalog_head p {
    font-weight: 400;
    font-size: 23px;
    font-family: 'Inter', sans-serif;
}

.catalog_content {
    width: 100%;
    padding: 2rem 0 4rem 0;
}

#product-block {
    display: flex;
    flex-wrap: wrap;
}

#product-block>ul.tabs {
    width: 100%;
    display: flex;
    padding-bottom: 1rem;
    border-bottom: 2px solid;
    border-color: rgba(217, 217, 217, 1);
    margin: 1rem 0 4rem 0;
}

#product-block>ul.tabs>li {
    font-weight: 500;
    font-size: 23px;
    color: #000;
    margin-right: 1rem;
}

#product-block>ul.tabs>li:hover {
    cursor: pointer;
    color: #812f38;
}

#product-block>ul.tabs>li.current {
    color: #812f38;
}

#product-block>ul.tabs>li:last-child {
    margin-right: 0;
}

#product-block>.tab_sidebar {
    width: 30%;
    padding-right: 1.5rem;
}

#product-block .catalog-content-wrapper {
    width: 70%;
}

#product-block>.tab_sidebar>span {
    display: flex;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 23px;
    margin-bottom: 0.5rem;
}

#product-block>.tab_sidebar>ul>li {
    padding: 0.5rem 0;
    border-top: 1px solid;
    border-color: rgba(0, 40, 79, 0.1);
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    transition: all .3s ease;
}

#product-block>.tab_sidebar>ul>li:last-child {
    border-bottom: 1px solid;
    border-color: rgba(0, 40, 79, 0.1);
}

#product-block>.tab_sidebar>ul>li>a {
    color: rgba(29, 29, 27, 1);
    font-weight: 600;
    outline: none;
}

#product-block>.tab_sidebar>ul>li>a.current {
    font-weight: 700;
}

#product-block>.tab_sidebar>ul>li:hover a {
    font-weight: 700;
}

.close_fltr_btn {
    display: none;
}

.filter_button {
    display: none;
    margin-bottom: 1rem;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.filter_button>span {
    margin-left: 5px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

#product-block .catalog-content-wrapper .col-sm-4 {
    margin-bottom: 2rem;
}

.product_col>.product_action {
    padding: 24px 18px;
    border: 1px solid;
    border-color: rgba(217, 217, 217, 1);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    font-family: 'Inter', sans-serif;
}

.product_col>.product_action>h2 {
    margin-bottom: 1rem;
    min-height: 85px;
    line-height: 25px;
}

.product_col>.product_action>h2>a {
    font-weight: 500;
    font-size: 23px;
    color: rgba(29, 29, 27, 1);
}

.product_col>.product_action>p {
    margin-bottom: 1rem;
}

.product_col>.product_action>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: rgba(130, 48, 56, 1);
    border-radius: 40px;
    color: #fff;
    min-height: 40px;
    transition: all .3s ease;
}

.product_col>a>img {
    height: 258px;
    object-fit: contain;
    border: 1px solid rgba(217, 217, 217, 1);
    border-bottom: none;
}

.product_col>.product_action>a:hover {
    background-color: #000;
}

.search .product_col {
    margin-bottom: 2rem;
}

.search .product_col .post-thumbnail>img {
    width: 100%;
}

.search .col-sm-6 .product_col .post-thumbnail>img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.catalog_feedback {
    display: flex;
    align-items: center;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    background-color: #0000007d;
    background-blend-mode: multiply;
}

.catalog_feedback .block_catalog_feedback {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.catalog_feedback .block_catalog_feedback>h2 {
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 2rem;
}

.catalog_feedback .block_catalog_feedback>p {
    font-weight: 400;
    font-size: 23px;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 28px;
    padding: 0 10rem;
}

.catalog_feedback .block_catalog_feedback>button {
    padding: 13px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: rgba(130, 48, 56, 1);
    border-radius: 40px;
    font-weight: 400;
    font-size: 18px;
    border: none;
    transition: all .3s ease;
}

.catalog_feedback .block_catalog_feedback>button:hover {
    background-color: #000;
}

/* Contact page */

.contact_page {
    width: 100%;
    padding: 3rem 0 4rem 0;
}

.contact_page>.container:first-child {
    margin-bottom: 2rem;
}

.contact_page>.container:nth-child(2) {
    padding-bottom: 5rem;
    border-bottom: 4px solid;
    border-color: rgba(35, 35, 35, 1);
    margin-bottom: 3rem;
}

.contact_page>.container:nth-child(2) .contact_form {
    padding-left: 2rem;
}

.contact_page>.container:nth-child(2) .contact_form h1 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 25px;
}

.contact_page>.container:nth-child(2) .contact_form label {
    width: 100%;
}

.contact_page>.container:nth-child(2) .contact_form label .iti {
    width: 100%;
    margin-bottom: 15px;
}

.contact_page>.container:nth-child(2) .contact_form input {
    width: 100%;
    min-height: 58px;
    margin-bottom: 15px;
    border: 1px solid;
    border-color: rgba(35, 35, 35, 1);
    border-radius: 10px;
    padding: 0 25px;
    outline: none;
}

.contact_page>.container:nth-child(2) .contact_form textarea {
    border: 1px solid;
    border-color: rgba(35, 35, 35, 1);
    border-radius: 10px;
    outline: none;
    padding: 20px 25px;
    margin-bottom: 15px;
}

.contact_page>.container:nth-child(2) .contact_form input[type="submit"] {
    background-color: rgba(130, 48, 56, 1);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
}

.contact_page>.container:last-child {
    display: flex;
    justify-content: space-between;
}

.contact_page .contact_menu>h2 {
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact_page .contact_menu>ul li>a {
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: rgba(35, 35, 35, 1);
    transition: all .3s ease;
}

.contact_page .contact_menu>ul li>a:hover {
    color: #812f38;
}

.contact_page .contact_menu>ul li>a>img {
    margin-right: 10px;
}

/* Product page */

article>.container>.row>.col-sm-6:first-child {
    padding-right: 50px;
}

.single_product_container {
    margin-bottom: 50px;
}

.product_short_info {
    font-family: 'Inter', sans-serif;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.product_short_info>h1 {
    font-size: 40px;
    font-weight: 600;
}

.product_short_info>span {
    font-size: 20px;
    font-weight: 500;
    color: rgba(29, 29, 27, 0.4);
}

.product_tabs {
    font-family: 'Inter', sans-serif;
}

.product_tabs>ul {
    margin-bottom: 1rem;
}

.product_tabs>ul>li>button {
    display: flex;
    justify-content: center;
    position: relative;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    background: none;
    border: none;
    border-bottom: 1px solid;
    border-color: transparent;
    color: rgba(29, 29, 27, 0.4);
    transition: all .3s ease-in;
}

.product_tabs>ul>li>button.active::after {
    content: "";
    position: absolute;
    display: flex;
    width: 80%;
    bottom: -2px;
    height: 1px;
    background-color: #000;
}

.product_tabs>ul>li>button:hover {
    color: #000;
}

.product_tabs>ul>li>button.active {
    color: #000;
}

.product_descr {
    margin-bottom: 2rem;
}

.product_compound {
    margin-bottom: 1.5rem;
}

.product_compound>span {
    font-weight: 700;
    font-size: 16px;
}

.product_compound>p {
    font-weight: 400;
    font-size: 16px;
}

.product_compound>button {
    background: none;
    border: none;
    border-bottom: 2px solid;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #000;
    padding: 0;
    margin-top: 0.5rem;
    border-color: rgba(29, 29, 27, 1);
    transition: all .3s ease;
}

.product_compound>button:hover {
    color: #812f38;
    border-color: #812f38;
}

.product_tech {
    font-family: 'Onest', sans-serif;
    margin-bottom: 2rem;
}

.product_tech>ul>li {
    display: flex;
}

.product_tech>ul>li>img {
    margin-right: 30px;
    max-width: 50px;
}

.product_tech>ul>li>.tech_info {
    display: flex;
    align-items: center;
}

.product_tech>ul>li>.tech_info>div:first-child {
    font-weight: 700;
    font-size: 18px;
    color: #000;
}

.product_tech>ul>li>.tech_info>div:nth-child(2) {
    font-weight: 400;
    font-size: 18px;
}

.product_tech>ul>li>.tech_info>div:last-child {
    color: rgba(29, 29, 27, 0.4);
    font-weight: 400;
    font-size: 18px;
}

.product_feedback>button {
    width: 236px;
    min-height: 61px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #812f38;
    color: #fff;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    border-radius: 40px;
    transition: all .3s ease;
}

.product_feedback>button:hover {
    background-color: #000;
}

.product_images {
    border: 1px solid;
    border-color: rgba(217, 217, 217, 1);
    border-radius: 10px;
}

.product_images img {
    width: 100%;
    height: 400px;
    object-fit: contain;
}

.product_images_arrows {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-top: 1rem;
}

.product_images_arrows>div {
    width: 22px;
    display: flex;
    align-items: center;
    height: 24px;
    cursor: pointer;
}

.product_images_arrows>div.slick-disabled {
    opacity: 0.5;
}

.product_images_arrows>div>img {
    width: 100%;
}

.product_images_arrows>div>img.arrow_mobile {
    display: none;
}

.product_images_arrows .arrow_prev_product {
    transform: rotate(180deg);
    margin-right: 3rem;
}

/* Modal feedback */

.modal-body label,
.modal-body span {
    display: flex;
    width: 100%;
}

.modal-body input {
    width: 100%;
    min-height: 50px;
    margin-bottom: 15px;
    border-radius: 5px;
    padding: 0 10px;
    outline: none;
}

.modal-body input:focus {
    border: 1px solid;
    border-color: #000;
}

.modal-body textarea {
    width: 100%;
    height: 100px;
    margin-bottom: 15px;
    border-radius: 5px;
    padding: 10px 10px;
    outline: none;
}

.modal-body textarea:focus {
    border: 1px solid;
    border-color: #000;
}

.modal-body input[type="submit"] {
    background-color: #812f38;
    color: #fff;
    border: none;
    transition: all .3s ease;
}

.modal-body input[type="submit"]:hover {
    background-color: #000;
}

.modal-body span.wpcf7-spinner {
    width: 24px;
}

/* End product page */

/* Search page */

.search_page>.container:first-child {
    display: flex;
    align-items: center;
    padding: 2rem 15px;
}

.search_page>.container:first-child .page-title {
    font-size: 18px;
}

/* End search page */

/* 404 error page */

.error-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.error-404>.error_key {
    width: 100%;
    font-size: 160px;
    font-weight: 700;
    text-align: center;
}

.error-404>.error_found {
    font-size: 30px;
}

/* End 404 error page */

/* Catalog Preloader & Pagination */
#catalog-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 100px;
    z-index: 10;
}

#catalog-loader .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-top: 5px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

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

.catalog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 10px;
    flex-wrap: wrap;
}

.catalog-pagination a,
.catalog-pagination span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.catalog-pagination a:hover {
    background-color: #ececec;
    border-color: #ccc;
}

.catalog-pagination span.current {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

/* Active Category Highlight */
.product-categories li a.current {
    font-weight: bold;
    color: #000;
    text-decoration: underline;
}