/* version 1.0. */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: graphiklcg;
}

.wpcf7 fieldset {
	display: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

@font-face {
    font-family: "ArevSansPro";
    src: url(./assets/fonts/ArevSansPro.otf);
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "graphiklcg";
    src: url(./assets/fonts/GraphikLCG-Medium.woff);
    font-weight: 500;
}

@font-face {
    font-family: "graphiklcg";
    src: url(./assets/fonts/GraphikLCG-Regular.woff);
}

@font-face {
    font-family: "graphiklcg";
    src: url(./assets/fonts/GraphikLCG-Semibold.woff);
    font-weight: 600;
}

:root {
    --main-gray: #7a7a7a;
    --white: #fff;
    --black: #3e4a5e;
    --hover-link: #3a9046;
    --gray-bg: #f5f5f5;
    --form-button-bg: #ffac0d;
    --green-link-color: #3a9046;
}

body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

.container {
    max-width: 1770px;
    margin: auto;
}

header {
    background: #1e4b24;
    height: 92px;
}

.top-bar {
    display: flex;
    height: 45px;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    font-family: ArevSansPro;
    font-size: 14px;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
}

.top-bar a:hover {
    text-decoration: underline;
}

.topbar-right-link-text {
    display: flex;
    align-items: center;
    gap: 5px;
}

.topbar-right-link-text::before {
    content: "";
    background: url('./assets/icons/icon-email.svg') no-repeat;
    width: 19px;
    height: 18px;
}

.header-wrapper {
    margin: auto;
    z-index: 999;
    position: relative;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 15px 17px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 7px 44px 0 rgba(0,0,0,.05);
}

.logo {
    width: 200px;
    height: 60px;
}

#menu-main-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    font-family: ArevSansPro;
    font-size: 16px;
    margin-top: 3px;
}

#menu-main-menu a {
    text-decoration: none;
    color: var(--black);
}

#menu-main-menu a:hover {
    color: var(--hover-link);
}

.slider {
    margin: 60px auto 100px;
    display: flex;
    gap: 20px;
}

.slider img {
    border-radius: 20px;
}

.slider-left {
    flex: 1;
}

.slider-right {
    width: 30%;
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.slider-right > div {
    height: 50%;
}

.slider-right img {
    width: 100%
}

footer {
    border-top: 1px solid #e6e6e6;
}

footer .container {
    display: flex;
    justify-content: space-between;
    margin: 30px auto 50px;
    gap: 50px;
}

footer .container > *:first-child {
    min-width: 335px;
}

footer .container > * {
    flex: 1;
}

.footer-column-header {
    font-family: graphiklcg;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 50px;
}

.footer-copyrights {
    border-top: 1px solid #e6e6e6;
    text-align: center;
    font-size: 13px;
    color: #7a7a7a;
    padding: 20px 0;
}

.content-newsletter {
    position: relative;
    display: flex;
}

.wpcf7-form-control-wrap {
    width: 100%;
    position: relative;
    display: block;
}

.wpcf7-form-control-wrap input {
    height: 60px;
    width: 100%;
    padding: 0 20px;
    border-radius: 30px;
    background: var(--gray-bg);
    border: 0;
    font-size: 14px;
}

.content-newsletter .clearfix {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
}

.content-newsletter .clearfix input {
    height: 45px;
    border-radius: 30px;
    background: var(--form-button-bg);
    border: 0;
    font-size: 0;
    padding: 0 45px;
}

.content-newsletter .clearfix::before {
    content: "";
    background: url('./assets/icons/icon-email.svg') no-repeat;
    width: 21px;
    height: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.newsletter-text {
    color: var(--main-gray);
    font-size: 15px;
    margin: 50px 0;
}

.call-us-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.call-us-icon {
    border-radius: 50%;
    background-color: #d8e9da;
    width: 66px;
    height: 66px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.call-us-icon img {
    width: 45%;
}

.call-us-header {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
}

.call-us-phone a {
    text-decoration: none;
    color: var(--green-link-color);
    font-weight: 500;
    font-size: 24px;
}

.bold {
    font-weight: 500;
}

.workplaces {
    color: var(--main-gray);
}

.open-hours {
    margin-top: 30px;
    color: var(--main-gray);
}

.workplaces .bold,
.open-hours .bold {
    color: var(--black);
}

.menu-information-container ul,
.menu-categories-container ul {
    list-style: none;
    line-height: 30px;
}

.menu-information-container ul a,
.menu-categories-container ul a {
    text-decoration: none;
    color: var(--main-gray);
}

.home-page-header {
    color: var(--black);
    margin-bottom: 40px;
}

.home_category-wrapper {
    border: 1px solid transparent;
    border-radius: 50%;
    transition: all .5s ease-in-out;
}

.home_category-wrapper:hover {
    border: 1px solid #3a9046;
}

.home_category-wrapper:hover .home_category-header {
    width: auto;
    animation: slidein 0.5s ease-in-out;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.home_category {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    position: relative;
}

.home_catalog-categories {
    display: flex;
    gap: 20px;
    margin-bottom: 80px;
}

.home_catalog-categories .slick-slide {
    width: calc(100% / 7);
}

.home_catalog-categories img {
    border-radius: 50%;
    aspect-ratio: 1/1;
    object-fit: contain;
    padding: 5px;
}

.home_category-header {
    background-color: var(--white);
    border-radius: 20px;
    color: var(--black);
    font-weight: 500;
    padding: 0 15px;
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translateX(-50%);
    height: 35px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: all .5s ease-in-out;
}

.slick-prev {
    left: 0!important;
}

.slick-next {
    right: 0!important;
}

@keyframes slidein {
    from {
        top: 92%;
    }

    to {
        transform: translate(-50%, -50%);
        top: 50%;
    }
}

.breadcrumbs {
    margin-top: 40px;
    padding: 10px 20px;
    background: #f0f3f8;
    border-radius: 0 0 10px 10px;
    margin-bottom: 30px;
}

.breadcrumbs a {
    text-decoration: none;
    color: var(--main-gray)
}

.breadcrumbs a:hover{
    color: var(--hover-link);
}

.breadcrumbs__current {
    color: var(--hover-link);
}

.main-archive-products {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 80px;
}

aside {
    flex: 0 0 25%;
    max-width: 25%;
}

#shop-catalog {
    flex: 1;
}

.products-loop {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.products-loop .product {
    border: 2px solid #e6e6e6;
    border-radius: 20px;
    transition: all .3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.products-loop .product:hover {
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
    border: 2px solid transparent;
}

.products-loop .product img {
    border-radius: 18px 18px 0 0;
    width: 100%;
}

.product-info {
    flex: 1;
}

.product-info a {
    padding: 30px;
}

.products-loop .product a {
    text-decoration: none;
    position: relative;
    display: block;
    width: 100%;
}

.sticky-sidebar {
    position: sticky;
    top: 50px;
}

.yith-wcan-filter,
.wpc-filters-section {
    border: 2px solid #e6e6e6;
    border-radius: 15px;
    padding: 25px;
}

.widget-block {
    margin-bottom: 25px;
}

.widgettitle,
.widget-title {
    color: var(--black);
    font-weight: 600;
    font-size: 22px;
    border-bottom: 1px solid #e1e1e1;
    line-height: 20px;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.reset-filter-button {
    text-align: center;
    display: block;
    border: 1px solid #ff5252;
    width: 80%;
    margin: 0 auto 25px;
    border-radius: 15px;
    padding: 15px;
}

.product-categories {
    list-style: none;
    padding-left: 15px;
    line-height: 30px;
}

.product-categories a,
.wpc-filters-main-wrap li.wpc-term-item a {
    color: var(--main-gray);
    text-decoration: none;
    font-size: 17px;
}

.product-categories a:hover {
    color: var(--hover-link);
}

.product-categories .count,
.wpc-term-count {
    color: #a4a4a4;
    font-size: 14px;
    line-height: 25px;
}

body .wpc-filters-main-wrap .wpc-term-item-content-wrapper {
    align-items: baseline!important;
}

.shop-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
}

.woocommerce-result-count {
    color: var(--main-gray);
    font-size: 14px;
    padding-right: 5px;
}

.woo-ordering {
    background: var(--gray-bg);
    border-radius: 30px;
    padding: 10px;
    margin-bottom: 25px;
    display: flex;
    justify-content: flex-end;
}

.page-title {
    color: var(--black);
    font-size: 28px;
}

.woocommerce-ordering select {
    border-radius: 30px;
    padding: 10px 5px 10px 10px;
    border: 0;
    outline: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.woocommerce-loop-product__title {
    color: var(--black);
    font-size: 18px;
    font-weight: 600;
}

span.onsale {
    position: absolute;
    top: 15px;
    right: 15px;
    border-radius: 20px;
    background-color: #ff0000;
    color: var(--white);
    padding: 8px 10px 5px 10px;
    font-size: 14px;
}

.loop-product-categories {
    text-transform: uppercase;
    font-size: 13px;
    color: var(--main-gray);
    cursor: default;
}

.price {
    color: var(--green-link-color);
    font-weight: 600;
}

.price del {
    color: var(--main-gray);
    font-size: 14px;
}

.price ins {
    text-decoration: none;
}

.woocommerce-pagination {
    margin: 40px auto;
}

.woocommerce-pagination ul {
    list-style: none;
    display: flex;
    gap: 7px;
    justify-content: left;
}

.woocommerce-pagination a {
    text-decoration: none;
    color: var(--main-gray);
    border: 1px solid #e6e6e6;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    font-size: 13px;
    text-indent: 0px;
}

.woocommerce-pagination li .current,
.woocommerce-pagination li a:hover {
    color: var(--white);
    border: 1px solid #e6e6e6;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    background-color: #3e4a5e;
    font-size: 13px;
    text-indent: 0px;
}

.product-main-info {
    display: flex;
    gap: 50px;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 80px;
    margin-bottom: 80px;
}

.product-main-info > * {
    flex: 1;
    max-width: 50%;
}

.product-main-info img {
    border-radius: 30px;
    width: 100%;
}

.related.products {
    margin-bottom: 80px;
}

.related.products h2 {
    margin-bottom: 30px;
    text-align: center;
    color: var(--black);
}

.related .products-loop {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.posted_in a {
    text-decoration: none;
    color: var(--green-link-color);
}

.posted_in a:hover {
    text-decoration: underline;
}

.product-material,
.posted_in {
    margin-top: 10px;
}

.woocommerce-product-gallery__trigger {
    display: none;
}

.related.products h2.woocommerce-loop-product__title {
    text-align: left;
    margin-bottom: 0;
}

.contacts-wrapper {
    display: flex;
    gap: 20px;
    margin: 100px auto;
}

.left-contacts {
    width: 570px;
    background-color: #f3f3fe;
    padding: 70px;
    border-radius: 0 100px 0 0;
    color: var(--main-gray);
}

.working-hours-heading {
    padding-bottom: 20px;
    border-bottom: 1px solid #877B7B36;
    margin-bottom: 40px;
    color: var(--black);
}

.working-hours {
    margin-bottom: 50px;
}

.right-contacts {
    flex: 1;
    margin-top: 50px;
}

.right-contacts h2 {
    padding-bottom: 20px;
    border-bottom: 1px solid #877B7B36;
    margin-bottom: 20px;
}

.contact-us-form .row1 {
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
}

.contact-us-form .row1 > div {
    flex: 1;
}

.contact-us-form .wpcf7-form-control-wrap input {
    border-radius: 0;
    border: 1px solid #e4e4e4;
    background-color: #fff;
    color: var(--main-gray);
    height: 50px;
}

.contact-us-form textarea {
    width: 100%;
    color: var(--main-gray);
    padding: 20px;
    font-size: 14px;
    border: 1px solid #e4e4e4;
}

.contact-us-form .button input {
    height: 50px;
    font-size: 14px;
    padding: 0 40px;
    color: #fff;
    background: #3e4a5e;
    border: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    margin-top: 20px;
}

.contact-us-form .button input:hover {
    background-color: var(--hover-link);
}

.contact-us-form .button {
    display: flex;
    justify-content: flex-end;
}

.add-info {
    margin-top: 20px;
}

.add-info ul {
    margin-left: 30px;
}

.newest-products,
.popular-products {
    margin-bottom: 80px;
}

.newest-products-header,
.popular-products-header {
    font-size: 36px;
    color: var(--black);
    margin-bottom: 20px;
}

.newest-products .products-loop,
.popular-products .products-loop {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.woo-variation-gallery-wrapper .woo-variation-gallery-trigger {
    display: none!important;
}

.video-wrapper {
    margin-top: 40px;
}

.video {
    position:relative;
    padding-bottom:56.25%;/*пропорции видео 16:9 */
    padding-top:25px;
    height:0;
}


.video-wrapper .video-header {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.video iframe {
    border-radius: 20px;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

@media (max-width: 1770px) {
    .container {
        padding: 0 50px;
    }
}

@media (max-width: 1440px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 1024px) {
    footer .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 100px;
    }
    footer .container > *:first-child {
        min-width: unset;
    }
    .slider-right {
        gap: 10px;
    }
    .home_catalog-categories>div {
        width: 100%;
    }
    .related .products-loop,
    .products-loop,
    .newest-products .products-loop,
    .popular-products .products-loop {
        grid-template-columns: 1fr 1fr;
    }
    .main-archive-products {
        gap: 15px;
    }
    aside {
        flex: 0 0 30%;
        max-width: 30%;
        height: 100%;
        overflow: scroll;
    }
    .container {
        padding: 0 20px;
    }
    .left-contacts {
        width: 400px;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .slider {
        flex-direction: column;
    }
    .slider-right {
        width: 100%;
        flex-direction: row;
    }
    .navbar-toggle {
        display: flex;
        background: transparent;
        border: 0;
    }
    .navbar-toggle::before {
        content: "";
        background: url(./assets/icons/icon-burger-menu.svg) no-repeat center;
        background-size: 100%;
        width: 32px;
        height: 32px;
    }
    #menu-main-menu {
        display: none;
        position: absolute;
        right: 0;
        top: 65px;
        box-shadow: 0px 0px 15px 8px rgba(0,0,0,0.2);
        background: #fff;
        flex-direction: column;
        width: 50%;
        border-radius: 20px;
        font-size: 18px;
        gap: 5px;
        align-items: center;
        padding: 10px;
    }
    #menu-main-menu.show {
        display: flex;
    }
    #menu-main-menu li {
        width: 100%;
        text-align: center;
    }
    #menu-main-menu a {
        display: block;
        width: 100%;
        padding: 15px 0;
    }
    .header-inner {
        justify-content: space-between;
        position: relative;
    }
    .call-us-wrapper {
        flex-direction: column;
    }
    .call-us-info {
        text-align: center;
    }
    .footer-column-header {
        margin-bottom: 10px;
    }
    .newsletter-text {
        margin: 20px 0;
    }
    aside {
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        left: -100%;
        transition: .7s;
        z-index: 999;
        background: #fff;
        max-width: 50%;
        width: 50%;
        box-shadow: 0px 0px 15px 8px rgba(0,0,0,0.2);
    }
    aside.show {
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: .7s;
    }
    .sticky-sidebar {
        padding: 50px;
    }
    .woo-ordering {
        justify-content: space-between;
        align-items: center;
    }
    .woocommerce-ordering {
        height: 33px;
    }
    .open-filters {
        display: flex;
        width: 33px;
        height: 33px;
        background: var(--white);
        border-radius: 50%;
    }
    .open-filters::before {
        content: "";
        background: url(./assets/icons/icon-filter.svg) no-repeat center;
        background-size: 24px;
        width: 32px;
        height: 32px;
    }
    #close-sidebar {
        margin-top: 20px;
        margin-right: 20px;
        display: flex;
        justify-content: flex-end;
    }
    #close-sidebar::after {
        content: "";
        background: url(./assets/icons/icon-close.svg) no-repeat center;
        background-size: 24px;
        width: 24px;
        height: 24px;
    }
    .product-info a {
        padding: 20px;
    }
    .left-contacts {
        width: 300px;
        padding: 40px;
    }
    .product-main-info {
        flex-direction: column;
    }
    .product-main-info > * {
       max-width: 100%;
    }
}

@media (max-width: 650px) {
    footer .container {
        grid-template-columns: 1fr;
    }
    aside {
        width: 70%;
        max-width: 70%;
    }
    .sticky-sidebar {
        padding: 40px;
    }
    .contacts-wrapper {
        flex-direction: column;
    }
    .left-contacts {
        width: 100%;
        padding: 70px;
    }
}

@media (max-width: 425px) {
    .slider-right {
        flex-direction: column;
    }
    .top-bar {
        justify-content: flex-end;
    }
    .topbar-left {
        display: none;
    }
    .container {
        padding: 0 15px;
    }
    .header-inner {
        gap: 5px;
    }
    #menu-main-menu {
        width: 80%;
    }
    aside {
        width: 95%;
        max-width: 95%;
    }
    .left-contacts {
        padding: 40px;
    }
    .contact-us-form .row1 {
        flex-direction: column;
    }
}

@media (max-width: 375px) {
    .sticky-sidebar {
        padding: 25px;
    }
    .products-loop {
        grid-template-columns: 1fr;
    }
    .left-contacts {
        padding: 20px;
        border-radius: 0 50px 0 0;
    }
}

@media (max-width: 320px) {
    .related .products-loop,
    .products-loop,
    .newest-products .products-loop,
    .popular-products .products-loop {
        grid-template-columns: 1fr;
    }
}