*,
::after,
::before {
    box-sizing: border-box;
}
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}
p {
    margin: 0;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
a {
    text-decoration: none;
}
button {
    padding: 0;
    font: inherit;
    cursor: pointer;
    background-color: transparent;
    border: none;
}
textarea {
    resize: none;
}
input,
textarea {
    width: 100%;
    font: inherit;
    padding: 0;
    margin: 0;
    border: none;
    outline: 0;
    background-color: transparent;
}
li,
ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
@font-face {
    font-family: Montserrat;
    src: url(../fonts/Montserrat-Regular.woff2) format("woff2");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: Montserrat;
    src: url(../fonts/Montserrat-Medium.woff2) format("woff2");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: Montserrat;
    src: url(../fonts/Montserrat-SemiBold.woff2) format("woff2");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: Montserrat;
    src: url(../fonts/Montserrat-Bold.woff2) format("woff2");
    font-weight: 700;
    font-style: normal;
}
body {
    margin: 0;
    -webkit-tap-highlight-color: transparent;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 400;
    color: #545e75;
    line-height: 150%;
}
.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.main {
    flex-grow: 1;
}
.container {
    margin: 0 auto;
    max-width: 1590px;
    padding: 0 15px;
}
.small_container {
    max-width: 1080px;
}
.container-lg {
    max-width: 1830px;
    padding: 0 15px;
    margin: 0 auto;
}
.btn-cart,
.btn-chat {
    padding: 12px 31px 12px 66px;
    position: relative;
    border-radius: 30px;
    color: #14110f;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    letter-spacing: -0.56px;
    border: 1px solid transparent;
    transition: border 150ms ease-in-out, background-color 0.3s ease-in-out;
}
.btn-cart::before,
.btn-chat::before {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
}
.btn-chat {
    background-color: #ff936d;
}
.btn-chat::before {
    background-image: url(../img/chat.png);
}
.btn-chat:active {
    border: 1px solid #ff936d;
    background-color: #fff;
    scale: 0.97;
}
.btn-cart {
    background-color: #e2ec8e;
}
.btn-cart::before {
    background-image: url(../img/cart.png);
}
.btn-cart:active {
    border: 1px solid #ff936d;
    background-color: #fff;
    scale: 0.97;
}
.logo {
    display: block;
    flex-shrink: 0;
    width: auto;
    height: 42px;
}
.logo img {
    height: 100%;
    width: 100%;
}
.disable-scroll {
    overflow: hidden !important;
}
.border-bottom-line {
    position: relative;
}
.border-bottom-line::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 1px;
    width: 100%;
    background: #000;
    border-radius: 5px;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
    transform-origin: center;
}
.btn {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.btn--secondary {
    color: #14110f;
    background-color: #fff;
}
.btn--primary.active,
.btn--secondary.active {
    color: #fff;
    background-color: #688b58;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: #14110f;
    font-family: Montserrat;
    font-weight: 700;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    color: #537046;
}
h1 {
    font-size: 48px;
    line-height: 150%;
}
h2 {
    font-size: 40px;
    line-height: 150%;
}
h3 {
    font-size: 32px;
    line-height: 168%;
}
h4 {
    font-size: 20px;
    line-height: 160%;
}
h5 {
    font-size: 25px;
    line-height: 168%;
}
h6 {
    font-size: 20px;
    line-height: 180%;
}
ol {
    display: flex;
    flex-direction: column;
    gap: 15px;
    counter-reset: section-counter;
}
ol li {
    padding-left: 50px;
    color: #545e75;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    position: relative;
    counter-increment: section-counter;
}
ol li::before {
    content: counter(section-counter);
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    background: #ff936d;
    padding: 4px 13px;
    color: #fff;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 700;
    line-height: 180%;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    pointer-events: none;
    width: 100%;
    height: 100vh;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.burger {
    position: relative;
    text-align: left;
    display: none;
    pointer-events: initial;
    height: 30px;
    width: 30px;
    padding: 0;
    cursor: pointer;
    background-color: transparent;
    z-index: 4;
}
.burger.active span {
    background-color: transparent;
    transition: background-color 0.2s ease-out;
}
.burger.active span::after,
.burger.active span::before {
    transition: top 0.2s ease-out, transform 0.2s ease-out 0.2s;
    background-color: #222;
}
.burger.active span::before {
    top: 0;
    transform: rotate3d(0, 0, 1, -45deg);
}
.burger.active span::after {
    top: 0;
    transform: rotate3d(0, 0, 1, 45deg);
}
.burger span {
    position: absolute;
    top: calc(50% - 1px);
    left: calc(50% - 13px);
    display: block;
    height: 2px;
    width: 26px;
    transform-origin: 50% 50%;
    transition: 0.2s ease-in-out, top 0.2s ease-out 0.2s, transform 0.2s linear;
    background-color: #222;
}
.burger span::after,
.burger span::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 26px;
    background-color: #222;
    transform-origin: 50% 50%;
    transition: 0.2s ease-in-out, top 0.2s ease-out 0.2s, transform 0.2s linear;
}
.burger span::before {
    top: 7px;
}
.burger span::after {
    top: -7px;
}
.menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    width: 100%;
}
.menu > li {
    position: relative;
    cursor: pointer;
    font-family: Montserrat;
}
.menu-item.menu-item-has-children > a {
    padding: 10px 40px 10px 18px;
}
.menu > li > a {
    display: block;
    color: #14110f;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.56px;
    padding: 10px 18px;
    border-radius: 30px;
    border: 1px solid #688b58;
    background-color: #fff;
    transition: color 150ms ease-in-out, border 150ms ease-in-out;
}
.menu-item.menu-item-has-children a {
    display: block;
    position: relative;
}
.menu-item.menu-item-left {
    margin-right: auto;
}
.menu-item.menu-item-orange > a {
    color: #14110f;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    background-color: #ff936d;
    border: 1px solid #ff936d;
    padding-left: 25px;
}
header .menu-item:not(.menu-item-orange):hover > a,
header .current-menu-item a {
    background: #688b58;
    color: #fff;
}
header .menu-item.menu-item-orange:hover > a {
    background: transparent;
}
.menu-item.menu-item-orange::after {
    background-image: url(../img/arrow-bottom-black.svg);
}
.menu-item.menu-item-orange .sub-menu {
    background-color: #ff936d;
}
.menu-item-has-children::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 17px;
    width: 12px;
    height: 6px;
    background-image: url(../img/arrow-bottom.svg);
    background-position: center center;
    background-size: 12px 6px;
    background-repeat: no-repeat;
    transition: transform 150ms ease-in-out;
}
.menu-item.menu-item-has-children::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    background-color: transparent;
    visibility: hidden;
}
.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}
.menu-item-has-children:hover::before {
    visibility: visible;
}
.menu-item-has-children:hover::after {
    transform: rotate(-90deg);
}
.sub-menu {
    position: absolute;
    overflow: hidden;
    z-index: 1;
    left: 0;
    top: 100%;
    margin-top: 16px;
    max-width: 440px;
    min-width: 200px;
    width: 100%;
    border-radius: 10px;
    background-color: #186f65;
    transition: opacity 150ms ease-in-out, visibility 150ms ease-in-out, max-height 150ms ease-in-out;
    opacity: 0;
    visibility: hidden;
}
.sub-menu > .menu-item {
    padding: 5px;
}
.sub-menu > .menu-item > a {
    display: block;
    padding: 8px;
    border-radius: 5px;
    color: #fff;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.56px;
}
.sub-menu > .menu-item > a:active,
.sub-menu > .menu-item > a:hover {
    background-color: #088395;
}
.to-products {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px 20px;
}
.to-products .btn-with-arrow {
    white-space: nowrap;
}
.to-products__text {
    position: relative;
    padding-left: 74px;
    color: #14110f;
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
}
.to-products__text::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 48px;
    height: 48px;
    background-image: url(../img/lock.svg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.btn-with-arrow {
    padding: 15px 70px 15px 35px;
    border-radius: 100px;
    background: #688b58;
    color: #fff;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    position: relative;
    transition: background-color 150ms ease-in-out;
}
.btn-with-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 35px;
    width: 25px;
    height: 8px;
    background-image: url(../img/btnArrowRight.svg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 150ms ease-in-out;
}
.btn-with-arrow:active {
    scale: 0.97;
}
.to-products__text--like::before {
    background-image: url(../img/like.svg);
}
.scroll-top {
    position: fixed;
    opacity: 0;
    transition: scale 0.3s ease-in-out;
    bottom: 40px;
    right: 20px;
    z-index: 25;
    scale: 0;
}
.scroll-top:active .scroll-top__bg,
.scroll-top:active .scroll-top__line {
    scale: 0.97;
}
.scroll-top.active {
    opacity: 1;
    scale: 1;
}
.scroll-top__bg {
    transition: fill 0.2s;
    fill: rgba(104, 139, 88, 0.1);
}
.scroll-top__line {
    stroke: #688b58;
    opacity: 1;
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 35px;
}
.breadcrumb__link {
    position: relative;
    color: #7c7c7c;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    transition: color 150ms;
}
.breadcrumb__link::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -21px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #e6e6e6;
    transition: background-color 150ms;
}
.breadcrumb-position {
    padding-top: 40px;
    padding-bottom: 40px;
}
.article ol {
    margin-top: 26px;
    margin-bottom: 40px;
}
.article ul {
    margin-top: 23px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.article ul li {
    position: relative;
    padding-left: 28px;
    color: #545e75;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.article ul li::before {
    content: "";
    position: absolute;
    top: 13px;
    transform: translateY(-50%);
    border-radius: 50%;
    background-color: #688b58;
    left: 0;
    width: 8px;
    height: 8px;
}
.article h2 {
    margin-bottom: 12px;
    color: #000;
    font-family: Montserrat;
    font-size: 28px;
    line-height: 150%;
    font-weight: 600;
    line-height: normal;
}
.article h3 {
    margin-bottom: 12px;
    color: #000;
    font-family: Montserrat;
    font-size: 23px;
    font-weight: 700;
    line-height: 150%;
}
.article > p {
    margin-bottom: 20px;
}
.article img {
    margin-top: 40px;
    margin-bottom: 40px;
    border-radius: 15px;
    width: 100%;
    object-fit: cover;
}
.article-tags ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 10px;
    flex-direction: row;
    margin: 0;
}
.article-tags ul li {
    width: max-content;
    padding-left: 0;
}
.article-tags ul li::before {
    display: none;
}
.article-tags span {
    display: block;
    margin-bottom: 15px;
    color: #000;
    font-family: Montserrat;
    font-size: 17px;
    font-weight: 600;
    line-height: normal;
}
.article-tags ul li a {
    padding: 8px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #688b58;
    font-family: Montserrat;
    font-size: 13px;
    font-weight: 500;
    line-height: normal;
    border-radius: 100px;
    border: 1px solid transparent;
    background: rgba(104, 139, 88, 0.1);
    transition: background-color 150ms ease-in-out, border 150ms ease-in-out;
}
.article-disclaimer {
    margin-bottom: 40px;
    padding-left: 30px;
    position: relative;
    margin-top: 30px;
}
.article-disclaimer::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 4px;
    height: calc(100% - 4px);
    border-radius: 10px;
    background-color: #ff936d;
}
.article-disclaimer span {
    margin-bottom: 15px;
    color: #000;
    font-family: Montserrat;
    font-size: 17px;
    font-weight: 700;
    line-height: 150%;
}
.article-disclaimer p {
    color: #545e75;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
}
.article-disclaimer p + p {
    margin-top: 10px;
}
.widget_recent_entries {
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e2e5e9;
    background: #fff;
}

.widget_recent_entries .widget-title,
.widget_recent_entries .widgettitle {
    margin-bottom: 20px;
    color: #14110f;
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
}

.widget_recent_entries ul {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.widget_recent_entries ul li {
    position: relative;
    padding-left: 16px;
    border-radius: 20px;
}
.widget_recent_entries ul li::before {
    content: "";
    transition: background-color 150ms ease-in-out;
    position: absolute;
    top: 8px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #ff936d;
}
.widget_recent_entries ul a {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.widget_recent_entries ul a {
    color: #688b58;
    font-family: Montserrat;
    font-size: 17px;
    font-weight: 600;
    line-height: 22px;
    transition: color 150ms ease-in-out;
}
.widget_recent_entries ul .post-date,
.data-box {
    position: relative;
    padding-left: 27px;
    color: #7c7c7c;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}
.page .inner__top {
    margin-top: 35px;
}
.widget_recent_entries ul .post-date::after,
.data-box::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 16px;
    height: 15px;
    background-image: url(../img/calendar.svg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.widget_recent_entries ul a div svg {
    width: 18px;
    height: 18px;
}
.mobile-menu::-webkit-scrollbar,
.mobile-submenu::-webkit-scrollbar {
    width: 3px;
}
.mobile-menu::-webkit-scrollbar-track,
.mobile-submenu::-webkit-scrollbar-track {
    background: #787878;
}
.mobile-menu::-webkit-scrollbar-thumb,
.mobile-submenu::-webkit-scrollbar-thumb {
    background: #ff936d;
}
.mobile-menu {
    position: fixed;
    z-index: 5;
    top: 0;
    height: 100%;
    width: 340px;
    left: -340px;
    transition: left 150ms ease-in-out;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #fff;
}
.mobile-menu.active {
    left: 0;
}
.mobile-menu__item {
    display: flex;
    align-items: center;
    padding-left: 20px;
    height: 54px;
}
.mobile-menu__btn {
    width: 40px;
    height: 40px;
    background-image: url(../img/close.svg);
    background-position: center left;
    background-size: 16px 16px;
    background-repeat: no-repeat;
}
.mobile-menu__btn:active {
    scale: 0.97;
}
.mobile-list__item {
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 24px 18px 24px 21px;
}
.mobile-list__item.active {
    background-color: rgba(0, 0, 0, 0.03);
}
.mobile-list__item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.mobile-list__item-has-children {
    position: relative;
}
.mobile-list__item-has-children::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 18px;
    width: 7px;
    height: 13px;
    background-image: url(../img/arrow-menu-open.svg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.mobile-list__link {
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
}
.mobile-submenu {
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    position: fixed;
    z-index: 4;
    top: 0;
    left: 340px;
    height: 100%;
    width: 340px;
    background: #f6f6f6;
    padding: 20px 50px 20px 30px;
}
.mobile-submenu.active {
    visibility: visible;
    opacity: 1;
}
.mobile-submenu__btn {
    margin-bottom: 25px;
    width: 40px;
    height: 15px;
    background-image: url(../img/arrow-back.svg);
    background-position: center left;
    background-size: 21px 15px;
    background-repeat: no-repeat;
}
.mobile-submenu__item {
    padding-left: 14px;
    position: relative;
}
.mobile-submenu__item:not(:last-child) {
    margin-bottom: 16px;
}
.mobile-submenu__item::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #688b58;
}
.mobile-submenu__link {
    color: #000;
    font-family: Montserrat;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
}
.top-info-block ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 90px;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    background-color: #343434;
}
.top-info-block ul li {
    color: #a9a9a9;
    font-family: Montserrat;
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}
.top-info-block ul li:not(:first-child) {
    position: relative;
}
.top-info-block ul li:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -45px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #688b58;
}
.header__navbar {
    border-bottom: 1px solid #e2e5e9;
    background-color: #fff;
    padding-top: 10px;
    padding-bottom: 20px;
}
.header__navbar__content {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    padding-top: 20px;
    padding-bottom: 20px;
}
.header-top {
    border-bottom: 1px solid #e2e5e9;
    background-color: #fff;
}
.header-top__content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.header-top__actions {
    margin-left: auto;
}
.actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 16px;
}
.search-box {
    margin-top: 25px;
    display: flex;
    margin-bottom: 10px;
}
.search-box__field {
    width: 100%;
    position: relative;
}
.search-box__field::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 21px;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background-image: url(../img/search.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
input.search-box__input {
    border-radius: 30px 0 0 30px;
    border: 1px solid #e2e5e9;
    background: #fbfbfb;
    padding: 19px 20px 20px 70px;
    color: #14110f;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}
input.search-box__input::placeholder {
    color: #7c7c7c;
}
.search-box__btns {
    flex-shrink: 0;
    padding: 10px 30px;
    display: flex;
    gap: 16px;
    border-radius: 0 30px 30px 0;
    border-top: 1px solid #e2e5e9;
    border-right: 1px solid #e2e5e9;
    border-bottom: 1px solid #e2e5e9;
    background: #fff;
}
.search-box__btn {
    flex-shrink: 0;
    border-radius: 30px;
}
.search-box__btn:first-child {
    padding: 10px 20px;
}
.search-box__btn:last-child {
    padding: 10px 16px;
}
.hero {
    padding-bottom: 72px;
}
.hero__container {
    position: relative;
    display: flex;
}
.hero__content {
    padding-top: 56px;
    max-width: 700px;
}
.hero__content p + p {
    margin-top: 20px;
}
.hero__img {
    z-index: -1;
    width: 1000px;
    height: 600px;
}
.hero__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}
.hero__title {
    margin-bottom: 35px;
    font-size: 52px;
    line-height: normal;
}
.products__container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.product-cards {
    display: grid;
    grid-template-columns: minmax(300px, 425px) repeat(3, minmax(300px, 1fr));
    gap: 20px;
}
.product-card {
    overflow: hidden;
    position: relative;
    background: linear-gradient(117deg, #f8f8f8 0, #f4f4f4 99.45%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 26px;
    min-height: 364px;
    border-radius: 19px;
}
.product-card--1::before {
    content: "";
    position: absolute;
    z-index: 0;
    bottom: 0;
    right: 0;
    width: 383px;
    height: 275px;
    background-image: url(../img/card1.png);
    background-position: bottom right;
    background-size: contain;
    background-repeat: no-repeat;
}
.product-card--1 .product-card__body {
    margin-right: 116px;
}
.product-card--3::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 170px;
    background-image: url(../img/card3.png);
    background-position: center center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.product-card__top {
    position: relative;
    z-index: 1;
}
.product-card__category {
    margin-bottom: 6px;
    color: #b8b3b3;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.product-card__title {
    color: #14110f;
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
}
.product-card__body {
    position: relative;
    z-index: 1;
    flex-grow: 1;
}
.product-card__bottom {
    position: relative;
    z-index: 1;
}
.product-card__btn {
    border-radius: 30px;
    background-color: #ff936d;
    padding: 12px 26px;
    color: #14110f;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    border: 1px solid transparent;
    transition: border 150ms ease-in-out, background-color 150ms ease-in-out;
}
.product-card__img {
    margin-bottom: 16px;
    width: 220px;
    height: 170px;
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
}
.product-card__img.nowebp {
    background-image: url(../img/box.png);
}
.product-card__img.webp {
    background-image: url(../img/box.webp);
}
.arrow-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.arrow-list__item {
    padding-left: 24px;
    position: relative;
}
.arrow-list__item a {
    transition: color 150ms ease-in-out;
    color: #545e75;
    font-family: Montserrat;
    font-size: 17px;
    font-weight: 500;
    line-height: normal;
}
.arrow-list__item a span {
    font-weight: 700;
}
.arrow-list__item::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 8px;
    height: 12px;
    background-image: url(../img/arrow-right.svg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.pill-list {
    display: flex;
    flex-direction: column;
}
.pill-list__item {
    padding: 10px 0;
    position: relative;
    display: flex;
    align-items: center;
}
.pill-list__img {
    width: 43px;
    height: auto;
}
.pill-list__item:not(:last-child) {
    border-bottom: 1px solid #eaeaea;
    transition: border 150ms ease-in-out;
}

.pill-list__link {
    padding-left: 25px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #545e75;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    transition: color 150ms ease-in-out;
}
.pill-list__link span:last-child {
    color: #f65f2a;
    font-size: 13px;
}
.coupon-card {
    background: #343434;
}
.coupon-card .product-card__title {
    color: #fff;
}
.copy-box {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    padding: 12px 13px 12px 27px;
    border-radius: 10px;
    background: #161616;
}
.copy-box__icon.copied {
    filter: contrast(4.3);
}

.copy-box__text {
    color: #fff;
    font-family: Montserrat;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
}
.copy-box__icon {
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-image: url(../img/copyCode.svg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: scale 150ms ease-in-out;
}
.green-gradient {
    background: #ebf2af;
    background: linear-gradient(11deg, #ebf2af 5%, #f8f8f8 54%, #f8f8f8 79%);
}
.red-gradient {
    background: #f8f8f8;
    background: linear-gradient(40deg, #f8f8f8 1%, #f8f8f8 50%, #ffc3ae 95%);
}
.about {
    padding-top: 72px;
    padding-bottom: 100px;
}
.about__to-products {
    margin-top: 40px;
}
.about__feel-block {
    padding-top: 90px;
}
.about__title {
    margin-bottom: 40px;
    color: #14110f;
    font-family: Montserrat;
    font-size: 36px;
    font-weight: 700;
    line-height: 138.889%;
}
.about__subtitle {
    margin-bottom: 24px;
    color: #000;
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
}
.about-cards {
    padding-top: 140px;
    margin-bottom: 90px;
}
.about-cards__container {
    display: grid;
    grid-template-columns: 400px 1fr 1fr;
}
.about-card {
    padding: 40px 50px;
    min-height: 458px;
    background: #f8f8f8;
}
.about-card__img {
    margin-top: -50px;
    width: 225px;
    height: 225px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.about-card__img.nowebp {background-image: url(../img/about1.png);}
.about-card__img.webp {background-image: url(../img/about1.webp);}
.about-card__bigtext {
    color: #fff;
    font-family: Montserrat;
    font-size: 36px;
    font-weight: 700;
    line-height: 138.889%;
    max-width: 326px;
}
.about-card__title {
    margin-bottom: 16px;
    line-height: 140%;
}
.about-card__text {
    color: #393f4e;
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 500;
    line-height: 170%;
}
.about-card--1 {
    position: relative;
    padding: 0;
    background-color: #343434;
}
.about-card--1::before {
    content: "";
    position: absolute;
    top: 0;
    left: -5000px;
    right: 0;
    width: 5000px;
    height: 100%;
    background-color: #343434;
}
.about-card--1::after {
    display: none;
}
.about-card--3 {
    border: 1px solid #f8f8f8;
    background: #fff;
}
.about-card--3 p + p {
    margin-top: 20px;
}
.info-block h2 {
    margin-bottom: 20px;
    color: #000;
    font-family: Montserrat;
    font-size: 36px;
    font-weight: 700;
    line-height: 138.889%;
}
.info-block p + p {
    margin-top: 20px;
}
.feel-block__container {
    gap: 60px;
    display: flex;
    gap: 60px;
}
.feel-block__img {
    height: 500px;
    max-width: 500px;
    width: 100%;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    padding: 36px 40px;
    background: linear-gradient(50deg, #e2ec8e 34.14%, rgba(234, 244, 155, 0.52) 82.12%);
    border-radius: 30px;
}
.feel-block__img::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 90%;
    background-image: url(../img/feel.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 30px;
}
.feel-block__img span {
    position: relative;
    z-index: 1;
    display: block;
}
.feel-block__img span:first-child {
    color: #000;
    font-family: Montserrat;
    font-size: 32px;
    font-weight: 600;
    line-height: 156.25%;
}
.feel-block__img span:last-child {
    color: #688b58;
    font-family: Montserrat;
    font-size: 42px;
    font-weight: 700;
    line-height: 111.111%;
}
.feel-block__products {
    margin-top: 50px;
}
.feel-block__content p + p {
    margin-top: 20px;
}
.feel-block__subtitle {
    margin-bottom: 21px;
    color: #393f4e;
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
}
.feel-block__subtitle span {
    color: #688b58;
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
}
.inner__top {
    margin-bottom: 40px;
}
.inner__title {
    margin-bottom: 17px;
    color: #000;
    font-family: Montserrat;
    font-size: 36px;
    font-weight: 700;
    line-height: 138.889%;
}
.health {
    padding-top: 76px;
    padding-bottom: 100px;
    background: #e3ed8f;
    background: linear-gradient(
        35deg,
        rgba(227, 237, 143, 0.5) 1%,
        rgba(255, 195, 174, 0.5) 50%,
        rgba(143, 237, 181, 0.5) 95%
    );
}
.health__title {
    margin-bottom: 40px;
    color: #14110f;
    text-align: center;
    font-family: Montserrat;
    font-size: 36px;
    font-weight: 700;
    line-height: 138.889%;
}
.health-cards {
    gap: 26px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.health-card {
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background: #fff;
}
.health-card__num {
    margin-bottom: 12px;
    display: grid;
    width: 60px;
    height: 60px;
    place-items: center;
    border-radius: 200px;
    background: linear-gradient(50deg, #e2ec8e 34.14%, rgba(234, 244, 155, 0.52) 82.12%);
    color: #fff;
    text-shadow: 0 2px 4px #cbd673;
    font-family: Montserrat;
    font-size: 35px;
    font-weight: 900;
    line-height: normal;
}
.health-card p span {
    color: #688b58;
    font-weight: 700;
}
.health-card p + p {
    margin-top: 20px;
}
.footer {
    background: #343434;
    padding-top: 70px;
}
.footer__container {
    display: flex;
    justify-content: space-between;
    gap: 200px;
}
.footer__contacts {
    min-width: 250px;
}
.footer__copy {
    margin-bottom: 28px;
    color: #fff;
    font-family: Montserrat;
    font-size: 15px;
    font-weight: 400;
    line-height: 173%;
    opacity: 0.7;
}
.footer-bottom .footer__copy {
    text-align: center;
    width: 100%;
    margin-bottom: 0;
}
.footer__copy span + span {
    display: block;
    margin-top: 30px;
}
.footer__right {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.footer__menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    align-items: flex-start;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 85px;
    padding: 16px 0;
}
.footer-bottom__privacy {
    color: #fff;
    font-family: Montserrat;
    font-size: 15px;
    font-weight: 400;
    line-height: 166%;
    transition: color 150ms ease-in-out;
}
.footer-bottom__container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}
.footer-bottom__menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 85px;
    width: max-content;
}
.footer-bottom__menu .menu-item {
    position: relative;
}
.footer-bottom__menu .menu-item:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -45px;
    border-radius: 50%;
    width: 5px;
    height: 5px;
    background-color: #688b58;
}
.mobile-box {
    padding-left: 36px;
    color: #fff;
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 600;
    line-height: 138%;
    letter-spacing: 1.8px;
    position: relative;
    transition: color 150ms ease-in-out;
}
.mobile-box::before {
    content: "";
    position: absolute;
    top: 50%;
    background-image: url(../img/mobile.svg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: translateY(-50%);
    left: 0;
    width: 24px;
    height: 24px;
}
.menu .menu-item-basic a {
    color: #fff;
    font-family: Montserrat;
    font-size: 15px;
    font-weight: 600;
    line-height: 33px;
    background-color: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
}
.grid-2 {
    padding-bottom: 120px;
    display: grid;
    grid-template-columns: minmax(100px, 1fr) minmax(300px, 375px);
    gap: 30px 60px;
}
.grid-2 .right-side {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media screen and (max-width: 1700px) {
    .hero__img {
        width: 800px;
    }
}
@media screen and (max-width: 1500px) {
    .hero__img {
        width: 600px;
    }
}
@media screen and (max-width: 1400px) {
    .about-card {
        padding: 20px;
    }
}
@media screen and (max-width: 1300px) {
    .product-cards {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 1200px) {
    .btn-cart,
    .btn-chat {
        font-size: 12px;
    }
    .about-card {
        margin-left: -15px;
        width: calc(100% + 30px);
    }

    .top-info-block ul {
        gap: 10px 30px;
    }
    .top-info-block ul li:not(:first-child)::before {
        left: -20px;
    }
    .search-box {
        flex-direction: column;
        gap: 14px;
    }
    input.search-box__input {
        padding: 15px 20px 15px 60px;
        border-radius: 30px;
        font-size: 14px;
    }
    .search-box__btns {
        border: none;
        justify-content: center;
        flex-shrink: 1;
        padding: 0;
    }

	button.search-box__btn.btn {
		        flex-shrink: 1;

    border: 1px solid #e2e5e9;
    text-transform: inherit;
    padding-inline: 25px;
    padding-block: 12px;
}
    .hero__container {
        display: flex;
        flex-direction: column;
    }
    .hero__content {
        padding-top: 30px;
    }
    .hero__img {
        position: relative;
        order: -1;
        right: auto;
        width: calc(100% + 30px);
        height: 100%;
        margin-right: 0;
        margin-left: -15px;
    }
    .hero__img img {
        object-position: center;
    }
    .about-cards {
        margin-bottom: 47px;
        padding-top: 60px;
    }
    .about-cards__container {
        grid-template-columns: 1fr;
    }
    .about-card {
        min-height: auto;
    }
    .about-card__img {
        margin-top: 0;
        flex-shrink: 0;
        width: 170px;
        height: 170px;
    }
    .about-card__bigtext {
        max-width: 100%;
    }
    .about-card--1 {
        display: flex;
        align-items: center;
        gap: 50px;
    }
    .about-card--1::after {
        display: block;
        content: "";
        position: absolute;
        top: 0;
        right: -5000px;
        width: 5000px;
        height: 100%;
        background-color: #343434;
    }
    .feel-block__container {
        flex-direction: column;
    }
    .feel-block__img {
        max-width: 100%;
        height: auto;
        padding: 50px 20px;
        text-align: right;
    }
    .feel-block__img::before {
        width: 250px;
        height: 100%;
    }
    .footer__container {
        gap: 50px;
    }
    .grid-2 {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 992px) {
    body {
        font-size: 14px;
    }
    .burger {
        display: flex;
    }
    .breadcrumb-position {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .article ul li {
        padding-left: 18px;
        font-size: 14px;
    }
    .article h2 {
        margin-bottom: 5px;
        font-size: 25px;
    }
    .article h3 {
        margin-bottom: 5px;
        font-size: 17px;
    }
    .article > p {
        margin-bottom: 14px;
    }
    .article img {
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .article-tags span {
        font-size: 17px;
    }
    .article-tags ul li {
        padding-left: 0;
    }
    .article-disclaimer {
        padding-left: 20px;
        margin-bottom: 25px;
    }
    .article-disclaimer p,
    .article-disclaimer span {
        font-size: 14px;
    }
    .header__navbar,
    .top-info-block ul {
        display: none;
    }
    .search-box {
        padding-bottom: 15px;
        padding-top: 18px;
        border-bottom: 1px solid #e2e5e9;
    }
    .hero {
        padding-bottom: 60px;
    }
    .hero__title {
        font-size: 30px;
        margin-bottom: 15px;
    }
    .about__title {
        margin-bottom: 30px;
        font-size: 30px;
    }
    .about-card__title {
        font-size: 22px;
        margin-bottom: 5px;
    }
    .about-card__text {
        font-size: 18px;
    }
    .info-block h2 {
        font-size: 30px;
        line-height: 130%;
        margin-bottom: 10px;
    }
    .feel-block__products {
        margin-top: 30px;
    }
    .feel-block__subtitle {
        margin-bottom: 15px;
        font-size: 18px;
    }
    .feel-block__subtitle span {
        font-size: 18px;
    }
    .inner__top {
        margin-bottom: 30px;
    }
    .inner__title {
        font-size: 22px;
        line-height: 130%;
        margin-bottom: 10px;
    }
    .health {
        padding-top: 30px;
        padding-bottom: 45px;
    }
    .health__title {
        margin-bottom: 12px;
        font-size: 30px;
        line-height: 166%;
    }
    .health-cards {
        grid-template-columns: 1fr;
    }
    .health-card {
        padding: 30px;
    }
    .footer__right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 80px;
    }
    .grid-2 {
        padding-bottom: 30px;
    }
    .grid-2 .right-side {
        gap: 25px;
    }
}
@media screen and (max-width: 768px) {
    .to-products__text {
        font-size: 14px;
        padding-left: 62px;
    }
    .article h2 {
        font-size: 18px;
    }
    .article h3 {
        font-size: 20px;
    }
    .widget_recent_entries {
        padding: 15px;
    }
    .hero {
        padding-bottom: 20px;
    }
    .product-cards {
        grid-template-columns: 1fr;
    }
    .about__feel-block {
        padding-top: 32px;
    }
    .about-cards {
        margin-bottom: 32px;
    }
    .about-card {
        padding: 20px 15px;
    }
    .about-card__bigtext {
    }
    .about-card__title {
        font-size: 17px;
    }
    .about-card--1 {
        gap: 15px;
        padding: 20px 15px 27px;
    }
    .about-card--3 p {
        font-size: 13px;
    }
    .info-block h2 {
        font-size: 22px;
    }

    .feel-block__subtitle {
        margin-bottom: 10px;
        font-size: 13px;
    }
    .feel-block__subtitle span {
        font-size: 13px;
    }
    .health__title {
        font-size: 22px;
        line-height: 130%;
    }
    .health-cards {
        gap: 15px;
    }
    .health-card {
        padding: 20px;
    }
    .health-card__num {
        width: 46px;
        height: 46px;
        font-size: 25px;
    }
    .footer {
        padding-top: 30px;
    }
    .footer__contacts {
        min-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer__copy {
        margin-bottom: 20px;
        font-size: 13px;
        line-height: 22px;
    }
    .footer__right {
        display: none;
    }
    .footer-bottom {
        margin-top: 40px;
        padding: 30px 0;
    }
    .footer-bottom__privacy {
        font-size: 13px;
    }
    .footer-bottom__container {
        flex-direction: column;
        gap: 15px;
    }
    .footer-bottom__menu {
        width: 100%;
        justify-content: center;
        gap: 10px 50px;
    }
    .footer-bottom__menu .menu-item:not(:first-child)::before {
        left: -25px;
    }
    .mobile-box {
        font-size: 16px;
        line-height: 156%;
    }
    .menu .menu-item-basic a {
        font-size: 13px;
    }
    .grid-2 {
        padding-bottom: 25px;
    }
}
@media screen and (max-width: 768.98px) {
    .btn-cart,
    .btn-chat {
        padding: 10px;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        overflow: hidden;
    }
    .btn-cart span,
    .btn-chat span {
        display: none;
    }
    .btn-cart::before,
    .btn-chat::before {
        position: absolute;
        left: auto;
        top: auto;
        transform: none;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
    }
    ol li {
        padding-left: 45px;
        font-size: 14px;
    }
    .hero__content p + p {
        margin-top: 15px;
    }
    .hero__title {
        margin-bottom: 10px;
    }
    .about {
        padding-top: 56px;
    }
    .about__title {
        display: none;
    }
    .about__subtitle {
        font-size: 17px;
        margin-bottom: 22px;
    }
    .about-card__img {
        width: 170px;
        height: 170px;
        margin-right: 40px;
    }
    .about-card__text {
        font-size: 13px;
    }
}
@media screen and (max-width: 700px) {
    .feel-block__img {
        display: none;
    }
    .mobile-menu {
        max-width: 340px;
        width: 100%;
    }
    .feel-block__products {
        flex-direction: column;
    }
    .mobile-submenu {
        max-width: 340px;
        width: 100%;
        left: 0;
        transform: translateX(100%);
        transition: transform 150ms ease-in-out, opacity 150ms ease-in-out, visibility 150ms ease-in-out;
    }
    .mobile-submenu.active {
        transform: translateX(0);
    }
    .about-card--1 {
        flex-direction: column;
    }
    .about-card__bigtext {
        text-align: center;
        font-size: 22px;
    }
    .about-card__img {
        width: 93px;
        height: 93px;
        margin-right: 0;
    }
}
@media screen and (max-width: 450px) {
    .to-products__btn {
        width: 100%;
    }
    .btn-with-arrow {
        padding: 15px 70px 15px 35px;
        width: 100%;
        text-align: center;
    }
    .btn-with-arrow::before {
        right: calc(50% - 100px);
    }
    .product-card--1::before {
        right: -150px;
    }
    .product-card--1 .product-card__body {
        margin-right: 0;
    }
}
@media screen and (max-width: 359px) {
    .btn-cart,
    .btn-chat {
        width: 35px;
        height: 35px;
    }
    .btn-cart::before,
    .btn-chat::before {
        width: 20px;
        height: 20px;
    }
    .header__logo {
        width: 120px;
    }
    .header-top__content {
        gap: 10px 10px;
    }
}
@media screen and (max-width: 430px) {
    .logo {
    display: block;
    flex-shrink: 0;
    width: 148px;
    height: 42px;
}
}
@media (any-hover: hover) and (pointer: fine) {
    .btn-cart:hover,
    .btn-chat:hover {
        border: 1px solid #ff936d;
        background-color: #fff;
    }
    .border-bottom-line:hover::before {
        transform: scaleX(1);
    }
    .menu-item.menu-item-orange .sub-menu .menu-item a:hover {
        background-color: #d74f06;
    }
    .btn-with-arrow:hover {
        background-color: #186f65;
        color: #fff;
    }
    .btn-with-arrow:hover::before {
        transform: translateX(10px) translateY(-50%);
    }
    .scroll-top:hover .scroll-top__bg {
        fill: rgba(104, 139, 88, 0.5);
    }
    .breadcrumb__link:hover {
        color: #14110f;
    }
    .breadcrumb__link:hover::after {
        background-color: #14110f;
    }
    .article-tags ul li a:hover {
        border-color: #688b58;
        background-color: transparent;
    }
    .widget_recent_entries ul a:hover {
        color: #3e7ee6;
    }
    .mobile-list__item:hover {
        background-color: rgba(0, 0, 0, 0.03);
    }
    .product-card__btn:hover {
        border: 1px solid #ff936d;
        background-color: #fff;
    }
    .arrow-list__item:hover a {
        color: #151414;
    }
    .pill-list__item:not(:last-child):hover {
        border-bottom: 1px solid #000;
    }
    .pill-list__link:hover {
        color: #000;
    }
    .copy-box__icon:hover {
        scale: 1.1;
    }
    .footer-bottom__privacy:hover,
    .menu .menu-item-basic a:hover,
    .mobile-box:hover {
        color: #ff936d;
    }
}
