/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

main {
    display: block
}

h1 {
    font-size: 2em;
    margin: 0.67em 0
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: transparent
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

img {
    border-style: none
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: 0.35em 0.75em 0.625em
}

legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

template {
    display: none
}

[hidden] {
    display: none
}



p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: 400;
}

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

* {
    outline: none;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    overflow-x: hidden;
    /* font-family: "Spectral", serif; */
    font-family: "Ysabeau Infant", sans-serif;
    background: #F4F0E8;
}

a {
    text-decoration: none;
}

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

.container {
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 10;
    background: #FCDBA0;
}

.header_wrapper {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    gap: 30px;
}


.header_logo {
    font-family: "Spectral", serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 130%;
    text-transform: uppercase;
    color: #230200;
}

.menu {
    gap: 40px;
    display: flex;
}

.menu a {
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    color: #230200;
    transition: all 0.3s;
}

.menu a:hover {
    color: #fff;
}

.header_messsages {
    display: flex;
    gap: 20px;
    position: relative;
    
    /* margin-left: auto; */
}

.header_messsages-inner {
    display: none;
    position: absolute;
    top: -100%;
    left: -215%;
    opacity: 0;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    background: #FCDBA0;
    padding: 10px;
    border-radius: 20px;
    transition: all 0.3s;
    border: 1px solid #7B461E;
    
}

.header_message-button.active + .header_messsages-inner {
    display: grid;
    top: calc(100% + 15px);
    opacity: 1;
}

.header_search {
    margin: 0 0 0 auto;
    cursor: pointer;
    position: relative;
}

.simplesearch-search-form {
    opacity: 0;
    z-index: -1;
    position: absolute;
    top: calc(100% + 15px);
    left: -215%;
}

.simplesearch-search-form fieldset {
    padding: 10px;
    border: none;
    border-radius: 20px;
    margin: 0;
    display: flex;
    gap: 3px;
    background: #FCDBA0;
    border: 1px solid #7B461E;
}

.simplesearch-search-form fieldset label {
    display: none;
}

.simplesearch-search-form fieldset input[type="text"] {
    border: none;
    border: 1px solid #7B461E;
    background: transparent;
}

.simplesearch-search-form fieldset input[type="submit"] {
    border: none;
    background: #7B461E;
    border-radius: 10px;
    color: #FCDBA0;
    cursor: pointer;
}

.header_search-button.active + .simplesearch-search-form {
    opacity: 1;
    z-index: 1;
}

.header_message,
.header_message-button,
.header_search-button {
    background: #7B461E;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.header_message:hover,
.header_message-button:hover,
.header_search-button:hover {
    background: #fff;
}

.header_message-button {
    cursor: pointer;
}

.header_message-facebook {
    color: #FCDBA0;
}

.header_message-facebook svg {
    width: 27px;
    height: 27px;
    fill: currentColor;
}

.header_message-facebook.x svg {
    width: 20px;
    height: 20px;
}

.header_cart {
    background: #7B461E;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.header_cart:hover {
    background: #fff;
}


.header_links {
    padding-left: 60px;
    position: relative;
}

.header_links::before {
    position: absolute;
    content: "";
    background: #7B461E;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../img/phone.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.header_number {
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
    color: #230200;
    transition: all 0.3s;
}

.header_number:hover {
    color: #fff;
}


.header_order {
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    text-align: center;
    text-decoration: underline;
    color: #230200;
    transition: all 0.3s;
}

.header_order:hover {
    color: #fff;
}


.main {
    padding: 140px 0 0;
    background: #7B461E;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.main::before {
    position: absolute;
    content: "Sacred Leaves";
    white-space: nowrap;
    font-weight: 500;
    font-size: 300px;
    line-height: 130%;
    font-family: "Spectral", serif;
    top: 58%;
    right: 29%;
    transform: translate(50%, -50%);
    text-transform: uppercase;
    color: #FFFFFF1A;
}

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

.main_info {
    width: 776px;
}

.main h1 {
    font-weight: 500;
    /* font-size: 64px; */
    font-size: 47px;
    line-height: 130%;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #F4F0E8;
    font-family: "Spectral", serif;
}

.main_subtitle {
    font-weight: 400;
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 60px;
    color: #F4F0E8;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FCDBA0;
    border-radius: 10px;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    color: #230200;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    color: #F4F0E8;
    background: #D79644;
}

.btn_green {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1B3C1C;
    font-family: "Spectral", serif;
    border-radius: 10px;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    color: #FCDBA0;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn_green::before {
    position: absolute;
    content: "";
    width: 100%;
    z-index: -1;
    opacity: 0;
    height: 100%;
    top: 0;
    right: 0;
    background: linear-gradient(90deg, #0C350E 0%, #18591A 51%, #0C350E 100%);
    transition: all 0.3s;
}

.btn_green:hover::before {
    opacity: 1;
}

.main_btn {
    width: 341px;
    height: 60px;
}

.main_info .main_btn:last-child {
    margin-top: 20px;
}

.main_right {
    margin-right: 75px;
    width: 600px;
    padding: 50px 30px 64px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0;
}

.main_img {
    width: 538px;
    display: flex;
    position: relative;
    z-index: 1;
}

.main_right::before {
    position: absolute;
    content: "";
    background: #D79644;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    right: 0;
    border-radius: 500px 500px 0 0;
}

.main_img img {
    width: 100%;
    height: auto;
}

.main_right-link {
    background: #FCDBA0;
    width: 210px;
    height: 210px;
    display: flex;
    justify-content: center;
    position: absolute;
    top: 24px;
    right: -35px;
    text-align: center;
    align-items: center;
    border-radius: 50%;
    padding: 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    text-transform: uppercase;
    font-family: "Spectral", serif;
    color: #230200;
    z-index: 2;
}

.main_right-link::before {
    position: absolute;
    content: '';
    background-image: url(../img/star1.svg);
    background-size: cover;
    top: 30px;
    right: 50%;
    transform: translateX(50%);
    width: 40px;
    height: 40px;
}

.main_right-link::after {
    position: absolute;
    content: '';
    background-image: url(../img/star2.svg);
    background-size: cover;
    bottom: 30px;
    right: 50%;
    transform: translateX(50%);
    width: 40px;
    height: 40px;
}

.main_right-icons {
    display: flex;
    justify-content: center;
    margin-top: -64px;
    gap: 20px;
}

.main_right-item {
    position: absolute;
    border: 1px solid #FFFFFF33;
    background: #1B3C1C80;
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: 20px;
    z-index: 1;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 20px;
}

.main_right-item:nth-child(1) {
    top: 273px;
    left: -42px;
}

.main_right-item:nth-child(2) {
    top: 342px;
    right: -30px;
}

.main_right-item:nth-child(3) {
    top: 449px;
    left: -60px;
}

.products {
    padding: 100px 0;
    background: #1B3C1C;
    position: relative;
    overflow: hidden;
}

.products:has(.products_tab:nth-child(2n).active) {
    background: #FCDBA0;

}

.products .main_right {
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    margin: 0;
    top: -90px;
}

.products:has(.products_tab:nth-child(2n).active) .products_text,
.products:has(.products_tab:nth-child(2n).active) .products_tab,
.products:has(.products_tab:nth-child(2n).active) .products_subtitle,
.products:has(.products_tab:nth-child(2n).active) .products_title {
    color: #230200;
}

.products:has(.products_tab:nth-child(2n).active) .products_tab:not(.active):hover {
    color: #fff;
}

.products_title {
    font-weight: 500;
    font-size: 64px;
    line-height: 130%;
    text-transform: uppercase;
    color: #F4F0E8;
    margin-bottom: 20px;
    font-family: "Spectral", serif;
}

.products_content {
    display: none;
}

.products_content.active {
    display: flex;
}

.products_subtitle {
    font-weight: 400;
    font-size: 32px;
    line-height: 130%;
    color: #F4F0E8;
    margin-bottom: 120px;
}

.products_wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    min-height: 500px;
}

.products_wrapper-label {
    position: absolute;
    width: 130%;
    font-weight: 500;
    font-size: 300px;
    line-height: 120%;
    font-family: "Spectral", serif;
    top: 50%;
    left: -18px;
    pointer-events: none;
    transform: translate(0%, -50%);
    text-transform: uppercase;
    color: #FFFFFF1A;
}

.products_tabs {
    margin-top: 20px;
    width: 346px;
}

.products_tab {
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    width: fit-content;
    text-transform: uppercase;
    color: #F4F0E8;
    font-family: "Spectral", serif;
    margin-bottom: 20px;
    cursor: pointer;
    padding-bottom: 10px;
    transition: color 0.3s;
}

.products_tab:not(.active):hover {
    color: #FCDBA0;
}

.products_tab.active {
    font-weight: 500;
    font-size: 48px;
    line-height: 130%;
    border-bottom: 1px solid;
    text-transform: uppercase;
}

.products_tab:last-child {
    margin-bottom: 0;
}

.products_info {
    width: 342px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.products .main_right {
    padding-top: 20px;
}

.products:has(.products_tab:nth-child(2n).active) .main_right::before {
    background: #D79644;
}

.products:has(.products_tab:nth-child(2n).active) .main_right-link {
    background: #F4F0E8;
}

.products:has(.products_tab:nth-child(2n).active) .main_right-link::before {
    background-image: url(../img/star3.svg);
}

.products:has(.products_tab:nth-child(2n).active) .main_right-link::after {
    background-image: url(../img/star4.svg);
}

.products .main_right::before {
    background: #BECA95;
}

.products_text {
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    color: #F4F0E8;
}

.products_btn {
    height: 60px;
}

.effectiveness {
    padding: 100px 0;
}

.title {
    font-family: "Spectral", serif;
    font-weight: 500;
    font-size: 64px;
    line-height: 130%;
    text-transform: uppercase;
    color: #230200;
}

.ms-title .title {
    font-size: 16px;
    text-align: center;
}

.ms-cost .mr-2 {
    white-space: nowrap;
}

.ms-price .mr-2 {
    white-space: nowrap;
}

.effectiveness .title {
    margin-bottom: 60px;
}

.effectiveness_items {
    display: flex;
    gap: 20px;
    margin-bottom: 70px;
}

.effectiveness_items:last-child {
    margin-bottom: 0;
}

.effectiveness_item {
    width: calc(25% - 15px);
    background: #FCDBA0;
    border-radius: 20px;
    padding: 30px;
}

.effectiveness_item-title {
    font-family: "Spectral", serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 10px;
    color: #230200;
}

.effectiveness_item-text {
    font-size: 20px;
    line-height: 130%;
    color: #230200;
}

.effectiveness_inner {
    width: calc(25% - 15px);
    background-image: url(../img/effectiveness_inner.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.effectiveness_item-icon {
    display: flex;
    margin-bottom: 40px;
}

.effectiveness_inner-title {
    font-weight: 500;
    font-size: 32px;
    line-height: 130%;
    color: #FCDBA0;
    margin-bottom: 20px;
}

.effectiveness_inner-btn {
    height: 60px;
}

.form_block {
    position: relative;
    background: #1B3C1C;
    padding: 100px 0;
}

.form_block-img {
    position: absolute;
    height: 100%;
    width: 50%;
    display: flex;
    left: 0;
    top: 0;
}

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

.form_block-wrapper {
    width: 50%;
    margin-left: auto;
    padding-left: 60px;
}

.form_block-title {
    font-weight: 500;
    font-size: 48px;
    line-height: 130%;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #F4F0E8;
}

.form_block-subtitle {
    font-size: 24px;
    line-height: 130%;
    color: #F4F0E8;
    margin-bottom: 60px;
}

.form_block-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
}

.form_inp {
    width: calc(50% - 30px);
    display: block;
    height: 46px;
    font-size: 20px;
    padding-bottom: 20px;
    background: none;
    border: none;
    border-bottom: 1px solid #FFFFFF;
}

.form_inp::placeholder {
    color: #FFFFFF99;
}

.form_btn {
    width: calc(50% - 30px);
    height: 60px;
}

.form_ok {
    width: calc(50% - 30px);
    font-size: 14px;
    line-height: 150%;
    color: #FFFFFF99;
    padding-left: 35px;
    position: relative;
    cursor: pointer;
}

.form_ok span {
    background: #FCDBA0;
    width: 20px;
    height: 20px;
    position: absolute;
    display: block;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 5px;
}

.form_ok a {
    font-weight: 600;
    color: #FFFFFF;
    text-decoration: underline;
}

.form_ok input {
    display: none;

}

.form_select {
    width: calc(50% - 30px);
    border-bottom: 1px solid #FFFFFF;

    height: 46px;
}

.select {
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    cursor: pointer;
    color: #FFFFFF99;
    padding-bottom: 20px;
    font-size: 20px;
}

.select option {
    color: #FFFFFF99;
    background: #1B3C1C;
    cursor: pointer;
}

.select option:first-child {
    display: none;
}

.form_ok input:checked+span {
    background-image: url(../img/check.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.why {
    padding: 100px 0;
}

.why .title {
    margin-bottom: 20px;
}

.why_subtitle {
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 70px;
}

.why_items {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    gap: 20px;
}

.why_items-logo {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    background: #F4F0E8;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.why_items-logo img {
    max-width: 100%;
    max-height: 100%;
}

.why_item {
    width: calc(50% - 10px);
    padding: 40px;
    border-radius: 20px;
    background-color: #FCDBA0;
    padding-right: 150px;
}

.why_item:nth-child(2) {
    background: #D79644;
}

.why_item:nth-child(3) {
    background: #230200;
}

.why_item:nth-child(4) {
    background: #7B461E;
}

.why_item:nth-child(2n) {
    text-align: right;
    padding-right: 40px;
    padding-left: 150px;
}

.why_item:nth-child(2n) .why_item-icon {
    justify-content: flex-end;
}

.why_item-icon {
    display: flex;
    margin-bottom: 60px;
}

.why_item:nth-child(1) .why_item-title,
.why_item:nth-child(1) .why_item-text {
    color: #230200;
}

.why_item-title {
    font-weight: 500;
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 10px;
    color: #FCDBA0;
}

.why_item-text {
    font-size: 20px;
    line-height: 130%;
    color: #F4F0E8;
}

.whom {
    padding: 100px 0;
}

.whom .title {
    margin-bottom: 20px;
}

.whom_subtitle {
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 70px;
}

.whom_items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.whom_item {
    width: calc(33.333% - 13.333px);
    background: #FCDBA0;
    border-radius: 20px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    z-index: 1;
    position: relative;
    padding: 40px;
}

.whom_item-title {
    font-weight: 500;
    font-size: 32px;
    line-height: 130%;
    color: #230200;
    font-family: "Spectral", serif;
    margin-bottom: 10px;
}

.whom_item-text {
    font-size: 20px;
    line-height: 130%;
    color: #230200;
}

.whom_item-img {
    position: absolute;
    display: flex;
    z-index: -1;
    bottom: 0;
    width: 100%;
    right: 50%;
    transform: translateX(50%);
}

.whom_item-img img {
    max-width: 100%;
    height: auto;
}

.age {
    padding: 100px 0 80px;
    background: #FCDBA0;
    overflow: hidden;
}

.age .products_tab {
    color: #230200;

}

.age .products_tab:not(.active):hover {
    color: #fff;
}

.age .products_tab.active span {
    display: none;
}

.age .products_tabs {
    width: 420px;
}

.age .title {
    margin-bottom: 20px;
}

.age_subtitle {
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 148px;
}

.age .main_right {
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    margin: 0;
    top: -90px;
}

.age .main_right .main_img {
    transform: translateY(-120px);
}

.age .products_content:nth-child(4) .main_right {
    transform: translate(50%, 70px);
}

.age .main_right-link {
    background: #F4F0E8;
}

.age .main_right-link::before {
    background-image: url(../img/star3.svg);
}

.age .main_right-link::after {
    background-image: url(../img/star4.svg);
}

.age_right {
    align-self: center;
}

.age_right-subtitle {
    font-weight: 500;
    font-size: 32px;
    line-height: 120%;
    font-family: "Spectral", serif;
    color: #230200;
    margin-bottom: 30px;
    text-align: center;
}

.age_right {
    width: 341px;
}

.age_right-img {
    width: 281px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 273px;
    margin: 0 auto 30px;
}

.age_right-img img {
    max-width: 100%;
    max-height: 100%;
}

.age_right-title {
    font-weight: 500;
    font-size: 32px;
    line-height: 120%;
    text-align: center;
    font-family: "Spectral", serif;
    margin-bottom: 30px;
    color: #230200;
}

.age_right-btn {
    height: 60px;
    width: 100%;
}

.process {
    background: #1B3C1C;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.process::before {
    position: absolute;
    content: "";
    background-image: url(../img/process_img.svg);
    background-size: cover;
    width: 672px;
    height: 448px;
    bottom: 0;
    left: 17%;
    z-index: -1;
}

.process .title {
    color: #fff;
    margin-bottom: 20px;
}

.process_wrapper {
    display: flex;
    justify-content: space-between;
}

.process_info {
    width: 782px;
}

.process_subtitle {
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    text-transform: uppercase;
    color: #FCDBA0;
    font-family: "Spectral", serif;
    margin-bottom: 20px;
}

.process_text {
    font-weight: 600;
    font-size: 32px;
    line-height: 130%;
    color: #F4F0E8;
}

.process_items {
    display: flex;
    width: 768px;
    flex-wrap: wrap;
    gap: 20px;
}

.process_item {
    width: calc(50% - 10px);
    background: #FCDBA0;
    border-radius: 20px;
    padding: 25px;
}

.process_item-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    font-family: "Spectral", serif;
    margin-bottom: 30px;
    color: #230200;
}

.process_item-btn {
    height: 50px;
    width: 100%;
}

.process_item-icon {
    display: flex;
    margin-bottom: 30px;
}

.certificates {
    padding: 100px 0;
    background: #FCDBA0;
}

.certificates .title {
    margin-bottom: 60px;
}

.certificates_slider {
    width: calc(100% + 20px);
}

.certificates_slide {
    margin-right: 20px;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
}

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

.certificates_slider .slick-arrow {
    position: absolute;
    border: none;
    cursor: pointer;
    z-index: 1;
    font-size: 0;
    top: -130px;
    background: #1B3C1C;
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
}

.certificates_slider .slick-next {
    right: 20px;
    background-image: url(../img/arrow_right.svg);
}

.certificates_slider .slick-prev {
    right: 100px;
    background-image: url(../img/arrow_left.svg);
}

.map {
    padding: 100px 0 665px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.map_img {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.map_img img {
    max-width: 100%;
    height: auto;
}

.map_subtitle {
    color: #230200;
    font-size: 32px;
    line-height: 130%;
}

.steps {
    padding: 100px 0;
    background: #1B3C1C;

}

.steps .title {
    margin-bottom: 20px;
    color: #F4F0E8;
}

.steps_subtitle {
    color: #F4F0E8;
    margin-bottom: 60px;
    font-size: 32px;
    line-height: 130%;
}

.steps_items {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
}

.steps_item {
    width: calc(25% - 15px);
    background: #FCDBA0;
    padding: 30px;
    border-radius: 20px;
}

.steps_item-number {
    font-family: "Spectral", serif;
    font-weight: 500;
    font-size: 64px;
    line-height: 130%;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #7B461E;
}

.steps_item-title {
    font-family: "Spectral", serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 10px;
    color: #230200;
}

.steps_item-text {
    font-size: 20px;
    line-height: 130%;
    color: #230200;
}

.reviews {
    padding: 100px 0;
}

.reviews .title {
    margin-bottom: 20px;
}

.reviews_subtitle {
    font-size: 32px;
    line-height: 130%;
    color: #230200;
    margin-bottom: 60px;
}

.reviews_slider {
    width: calc(100% + 20px);
}

.reviews_slider .slick-arrow {
    position: absolute;
    border: none;
    cursor: pointer;
    z-index: 1;
    font-size: 0;
    top: -130px;
    background: #1B3C1C;
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
}

.reviews_slider .slick-next {
    right: 20px;
    background-image: url(../img/arrow_right.svg);
}

.reviews_slider .slick-prev {
    right: 100px;
    background-image: url(../img/arrow_left.svg);
}

.reviews_slide {
    margin-right: 20px;
    background: #FCDBA0;
    border-radius: 20px;
    padding: 25px;
}

.reviews_slide-top {
    padding-left: 90px;
    position: relative;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
}

.reviews_slide-img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    display: flex;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
}

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

.reviews_slide-title {
    font-family: "Spectral", serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    color: #230200;
    margin-bottom: 5px;
}

.reviews_slide-subtile {
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    color: #230200;
    text-transform: lowercase;
}

.reviews_slide-text {
    font-size: 16px;
    line-height: 130%;
    color: #230200;
}

.news {
    padding: 100px 0;
    background: #FCDBA0;
}

.news .title {
    margin-bottom: 20px;
}

.news_subtitle {
    font-size: 32px;
    line-height: 130%;
    color: #230200;
    margin-bottom: 60px;
}

.news_slide {
    margin-right: 20px;
}

.news_slider {
    width: calc(100% + 20px);
}

.news_slider .slick-arrow {
    position: absolute;
    border: none;
    cursor: pointer;
    z-index: 1;
    font-size: 0;
    top: -130px;
    background: #1B3C1C;
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
}

.news_slider .slick-next {
    right: 20px;
    background-image: url(../img/arrow_right.svg);
}

.news_slider .slick-prev {
    right: 100px;
    background-image: url(../img/arrow_left.svg);
}

.news_slide-img {
    width: 100%;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    height: 312px;
    margin-bottom: 20px;
}

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

.news_slide-title {
    font-family: "Spectral", serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    color: #230200;
    margin-bottom: 15px;
    transition: all 0.3s;
    display: block;
}

.news_slide-title:hover {
    color: #fff;
}

.news_slide-text {
    font-size: 16px;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: "Spectral", serif;
}

.news_slide-date {
    font-family: "Spectral", serif;
    margin-top: 15px;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    color: #230200;
}

.blog {
    padding: 100px 0;
}

.blog .title {
    margin-bottom: 60px;
}

.blog_items {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.blog_item {
    width: calc(50% - 30px);
    display: flex;
    justify-content: space-between;
}

.blog_item-img {
    width: calc(50% - 15px);
    height: 312px;
    display: flex;
    overflow: hidden;
    border-radius: 20px;
}

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

.blog_item-info {
    width: calc(50% - 15px);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
}

.blog_item-title {
    font-family: "Spectral", serif;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    color: #230200;
}

.blog_item-title:hover {
    color: #1B3C1C;
}

.blog_item-text {
    font-size: 16px;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: "Spectral", serif;
}

.blog_item-date {
    font-family: "Spectral", serif;
    margin-top: 15px;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    color: #230200;
}

.blog_item-link {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: auto;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    width: fit-content;
    border-bottom: 1px solid #230200;
    padding-bottom: 10px;
    line-height: 130%;
    color: #230200;
}

.blog_item-link img {
    transition: all 0.3s;
}

.blog_item-link:hover img {
    transform: rotate(45deg);
}

.footer {
    background: #230200;
    padding: 60px 0 100px;
}

.footer_wrapper {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
}

.footer_logo {
    font-family: "Spectral", serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 130%;
    text-transform: uppercase;
    color: #FCDBA0;
    margin-bottom: 40px;
    display: flex;
}

.footer_menu a {
    display: block;
    font-size: 18px;
    line-height: 130%;
    color: #fff;
    margin-bottom: 30px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.footer_menu a:hover {
    color: #FCDBA0;
}

.footer_item-title {
    font-family: "Spectral", serif;
    font-size: 24px;
    line-height: 130%;
    color: #FCDBA0;
    padding: 16px 0;
    margin-bottom: 14px;
}

.footer_option-title {
    display: flex;
    font-size: 16px;
    line-height: 130%;
    color: #fff;
    margin-bottom: 5px;
}

.footer_option-text {
    font-size: 14px;
    line-height: 130%;
    color: #FFFFFF99;
}

.footer_option {
    margin-bottom: 32px;
    padding-left: 68px;
    position: relative;
}

.footer_option:last-child {
    margin-bottom: 0;
}

.footer_item {
    max-width: 342px;
}

.footer_option-icon {
    background: #FCDBA0;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
}

.footer_messages {
    display: flex;
    gap: 20px;
    
    flex-wrap: wrap;
}

.footer_message {
    background: #FCDBA0;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_message-facebook svg {
    fill: #230200;
    width: 29px;
    height: 29px;
}

.footer_message-facebook.x svg path {
    fill: #230200;
}

.footer_inner {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #FFFFFF33;
    padding-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer_inner-item {
    display: block;
    font-size: 16px;
    line-height: 130%;
    color: #fff;
    transition: all 0.3s;
}

a.footer_inner-item:hover {
    color: #FCDBA0;
}

.popup_order {
    background: #1B3C1C;
    width: 500px;
    padding: 40px;
}

.popup_order-title {
    font-weight: 500;
    font-size: 40px;
    line-height: 130%;
    font-family: "Spectral", serif;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #F4F0E8;
}

.popup_order-subtitle {
    margin-bottom: 60px;
    font-size: 20px;
    line-height: 130%;
    color: #F4F0E8;
}

.popup_order .form_inp {
    width: 100%;
    margin-bottom: 50px;
}

.popup_order .form_ok {
    display: block;
    width: 310px;
}

.popup_order .fancybox-close-small {
    color: #fff;
}

.popup_order .form_btn {
    width: 100%;
    margin-top: 30px;
}

.menu_burger {
    display: none;
}

.header_inner .header_messsages {
    display: none;
}

.catalog {
    padding: 140px 0 100px;
}

.crumbs {
    display: flex;
    margin-bottom: 70px;
}

.crumb {
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    color: #230200;
}

.crumb:last-child::after {
    display: none;
}

.crumb:last-child {
    opacity: 0.5;
}

.crumb::after {
    position: relative;
    content: "";
    width: 20px;
    height: 1px;
    display: block;
    background-color: #230200;
    margin: 0 15px;
}

.catalog .title {
    margin-bottom: 20px;
}

.catalog_subtitle {
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 70px;
}

.catalog_tabs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 20px;
}

.catalog_tab {
    background: #F4F0E8;
    border: 1px solid #1B3C1C;
    border-radius: 10px;
    padding: 14px 30px;
    font-family: "Spectral", serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    text-transform: uppercase;
    color: #023036;
}

.catalog_tab.active {
    background: #1B3C1C;
    color: #FCDBA0;
}

.catalog_items .rows{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.catalog_item {
    background: #FCDBA0;
    border-radius: 20px;
    padding: 30px;
    width: calc(33.333% - 13.333px);
    position: relative;
}

.catalog_item-img {
    display: flex;
    width: 100%;
    height: 370px;
    margin-bottom: 30px;
}

.catalog_item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.catalog_item-title {
    font-weight: 500;
    font-size: 32px;
    line-height: 130%;
    margin-bottom: 20px;
    color: #230200;
    font-family: "Spectral", serif;
}

.catalog_item-btn {
    height: 60px;
    width: 100%;
}

.catalog_item-inner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    align-items: flex-end;
}

.catalog_item-price {
    font-weight: 500;
    font-size: 30px;
    line-height: 130%;
    font-family: "Spectral", serif;
    color: #230200;
    display: flex;
    align-items: center;
}

.catalog_item-price .old {
    font-weight: 500;
    opacity: 0.5;
    font-size: 24px;
    line-height: 130%;
    margin-left: 20px;
    text-decoration: line-through;
}

.counter {
    width: 194px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    border: 1px solid #230200;
}

.count-inp {
    border: none;
    background: none;
    width: calc(100% - 104px);
    height: 100%;
    text-align: center;
    display: block;
    font-size: 20px;
    line-height: 130%;
    color: #230200;
}

.count-inp::-webkit-outer-spin-button,
.count-inp::-webkit-inner-spin-button {
    display: none;
    -webkit-appearance: none;
    margin: 0;
}

.count-arrow {
    display: flex;
    justify-content: center;
    user-select: none;
    align-items: center;
    cursor: pointer;
    width: 52px;
    height: 100%;
}

.catalog_item-option {
    position: absolute;
    max-width: 240px;
    width: fit-content;
    background: #1B3C1C80;
    border: 1px solid #FFFFFF33;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 15px;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
}

.catalog_item-option:nth-child(1) {
    top: 202px;
    left: 19px;
}

.catalog_item-option:nth-child(2) {
    top: 215px;
    right: 12px;
}

.catalog_item-option:nth-child(3) {
    top: 301px;
    left: 90px;
}


.catalog_item-prev {
    background: #D79644;
    width: 146px;
    height: 146px;
    display: flex;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: center;
    align-items: center;
    border-radius: 50%;
    padding: 14px;
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    text-transform: uppercase;
    font-family: "Spectral", serif;
    color: #230200;
    z-index: 2;
}

.catalog_item-prev::before {
    position: absolute;
    content: '';
    background-image: url(../img/star3.svg);
    background-size: cover;
    top: 20px;
    right: 50%;
    transform: translateX(50%);
    width: 25px;
    height: 25px;
}

.catalog_item-prev::after {
    position: absolute;
    content: '';
    background-image: url(../img/star4.svg);
    background-size: cover;
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
    width: 25px;
    height: 25px;
}

.catalog_item-advantages {
    display: flex;
    top: 15px;
    left: 15px;
    position: absolute;
    gap: 24px;
}

.catalog_item-advantages .card_main-advantage {
    background: #1B3C1C;
    width: 60px;
    height: 60px;
}

.catalog_item-advantages .card_main-advantage .tooltip {
    background: #1B3C1C;
}

.catalog_item-advantage {
    background: #1B3C1C;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
}

.catalog_item-advantage:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.tooltip {
    background: #1B3C1C;
    border-radius: 5px;
    padding: 6px 12px;
    position: absolute;
    font-family: "Spectral", serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    white-space: nowrap;
    text-transform: uppercase;
    color: #FCDBA0;
    top: -42px;
    right: 50%;
    transform: translateX(50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.catalog_item-advantages .card_main-advantage .tooltip::before {
    position: absolute;
    content: "";
    background-image: url(../img/tooltip_bef.svg);
    background-size: cover;
    width: 16px;
    height: 11px;
    bottom: -11px;
    right: 50%;
    transform: translateX(50%);
}

/* .catalog_more {
    width: 268px;
    height: 60px;
    margin: 30px auto 0;
} */

.effectiveness p {
    font-size: 20px;
    line-height: 130%;
}

.card {
    padding-top: 140px;
    background: #FCDBA0;
    overflow: hidden;
    position: relative;
}

.card.done::before {
    position: absolute;
    bottom: 0;
}

.card.done .card_img-wrapper {
    position: absolute;
    bottom: 30px;
}

.card_img img.active {
    display: block;
}

.card_img img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: darken;
}

.card::before {
    bottom: 0;
    position: absolute;
    content: "";
    right: 50%;
    position: fixed;
    width: 600px;
    height: 715px;
    transform: translateX(50%);
    background: #D79644;
    border-top-left-radius: 500px;
    z-index: 1;
    border-top-right-radius: 500px;
}

.card_img-wrapper {
    /* width: 600px; */
    /* height: 715px; */
    position: fixed;
    bottom: 20px;
    /* display: flex; */
    /* align-items: flex-end; */
    z-index: 2;
    right: 50%;
    transform: translateX(50%);
}

.card_img-wrapper .card_main-right {
    width: 600px;
    height: 715px;
    position: fixed;
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
}

.card_img {
    width: 600px;
    height: 600px;
}

.card_img canvas {
    transform: scale(2);
    width: 100% !important;
    height: 100% !important;
}

.card_main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 200px);
}

.card_main::before {
    position: absolute;
    content: "ZEN SLEEP";
    white-space: nowrap;
    font-weight: 500;
    font-size: 300px;
    line-height: 130%;
    pointer-events: none;
    font-family: "Spectral", serif;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    color: #FFFFFF1A;
}

.card_main-info {
    width: 410px;
}

.card_main-title {
    font-weight: 500;
    font-size: 128px;
    font-family: "Spectral", serif;
    text-transform: uppercase;
    color: #230200;
    margin-bottom: 20px;
}

.card_main-subtitle {
    font-size: 32px;
    line-height: 130%;
    color: #230200;
}

.card_main-right {
    width: 342px;
    position: relative;
    z-index: 4;
}

.card_main-advantages {
    display: flex;
    margin-bottom: 152px;

    gap: 20px;
}

.card_main-advantage {
    background: #D79644;
    width: 70px;
    height: 70px;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
}

.card_main-advantage:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.card_main-advantage .tooltip {
    background: #D79644;
}

.card_main-advantage .tooltip::before {
    background-image: url(../img/tooltip_bef2.svg);
}

.card_main-counter {
    border: none;
    width: 100%;
    border-radius: 0;
    border-bottom: 1px solid #230200;
}

.card_main-counter .count-arrow-minus {
    justify-content: flex-start;
}

.card_main-counter .count-arrow-plus {
    justify-content: flex-end;
}

.card_main-price {
    font-weight: 500;
    font-size: 40px;
    line-height: 130%;
    font-family: "Spectral", serif;
    color: #230200;
    display: flex;
    margin-bottom: 36px;
    align-items: center;
}

.card_main-price .old {
    font-weight: 500;
    opacity: 0.5;
    font-size: 24px;
    line-height: 130%;
    margin-left: 20px;
    text-decoration: line-through;
}

.card_main-btn {
    height: 60px;
    width: 100%;
    margin-top: 50px;
}

.card_desc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 200px);
}

.card_desc::before {
    position: absolute;
    content: "ZEN SLEEP";
    white-space: nowrap;
    font-weight: 500;
    font-size: 300px;
    line-height: 130%;
    pointer-events: none;
    font-family: "Spectral", serif;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    color: #FFFFFF1A;
}

.card_desc-title {
    font-family: "Spectral", serif;
    font-weight: 500;
    font-size: 55px;
    line-height: 130%;
    text-transform: uppercase;
    color: #230200;
    max-width: 555px;
}

.card_desc-info {
    width: 382px;
}

.card_desc-subtitle {
    font-family: "Spectral", serif;
    margin-bottom: 50px;
    font-weight: 500;
    font-size: 32px;
    line-height: 130%;
    text-transform: uppercase;
    color: #230200;
}

.card_desc-text {
    max-width: 342px;
    margin-left: auto;
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 50px;
}

.card_desc-btn {
    width: 341px;
    height: 60px;
    margin-left: auto;
}


.card_img-wrapper .main_right-link {
    background: #F4F0E8;
    border: none;
    width: 140px;
    height: 140px;
    top: 11px;
    right: 33px;
    transform: scale(0);
    transition: all 0.3s;
    font-size: 16px;
}

.card_img-wrapper.show .main_right-link {
    transform: scale(1);
}

.card_img-wrapper .main_right-link::before {
    background-image: url(../img/star3.svg);
    width: 30px;
    height: 30px;
    top: 20px;
}

.card_img-wrapper .main_right-link::after {
    background-image: url(../img/star4.svg);
    width: 30px;
    height: 30px;
    bottom: 20px;
}

.card_img {
    pointer-events: none;
}

.card_compound {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 200px);
}

.card_compound::before {
    position: absolute;
    content: "ZEN SLEEP";
    white-space: nowrap;
    font-weight: 500;
    font-size: 300px;
    line-height: 130%;
    pointer-events: none;
    font-family: "Spectral", serif;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    color: #FFFFFF1A;
}

.card_compound-title {
    font-family: "Spectral", serif;
    font-weight: 500;
    font-size: 128px;
    line-height: 130%;
    color: #230200;
    text-transform: uppercase;
    max-width: 1200px;
}

.card_compound-info {
    width: 342px;
}

.card_compound-subtitle {
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    font-family: "Spectral", serif;
    text-transform: uppercase;
    color: #230200;
    margin-bottom: 12px;
}

.card_compound-list {
    margin: 0;
    padding-left: 30px;
    font-size: 20px;
    line-height: 130%;
    color: #230200;
    margin-bottom: 40px;
}

.card_compound-options {
    margin-bottom: 40px;
}

.card_compound-option {
    color: #230200;
    font-size: 20px;
    line-height: 130%;
    display: flex;
    margin-bottom: 15px;
}

.card_compound-option span {
    order: 1;
}

.card_compound-option::after {
    position: relative;
    content: "";
    margin: 0 5px 4px;
    display: block;
    flex: auto;
    border-bottom: 1px dashed #230200;
}

.card_compound-text {
    font-size: 20px;
    line-height: 130%;
}



.card_vitamin {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.card_vitamin-img {
    display: flex;
    position: absolute;

}

.card_vitamin-img img {
    transform: scale(0);
    transition: all 0.6s;
}

.card_vitamin-img.active img {
    transform: scale(1);
}

.card_vitamin-img:nth-child(1) {
    right: 40px;
    top: 20px;
}

.card_vitamin-img:nth-child(2) {
    left: 70px;
    bottom: -70px;
}

.card_vitamin::before {
    position: absolute;
    content: "ZEN SLEEP";
    white-space: nowrap;
    font-weight: 500;
    font-size: 300px;
    line-height: 130%;
    pointer-events: none;
    font-family: "Spectral", serif;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    color: #FFFFFF1A;
}

.card_vitamin-title {
    font-family: "Spectral", serif;
    font-weight: 500;
    font-size: 128px;
    width: 100%;
    line-height: 130%;
    text-transform: uppercase;
    color: #230200;
}

.card_vitamin-title span {
    display: block;
    margin-left: auto;
    text-align: right;
}

.card_certificat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}


.card_certificat::before {
    position: absolute;
    content: "ZEN SLEEP";
    white-space: nowrap;
    font-weight: 500;
    font-size: 300px;
    line-height: 130%;
    pointer-events: none;
    font-family: "Spectral", serif;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    color: #FFFFFF1A;
}

.card_certificat-title {
    font-family: "Spectral", serif;
    font-weight: 500;
    font-size: 128px;
    line-height: 130%;
    color: #230200;
    display: block;
    margin-left: -70px;
    min-width: calc(100% + 140px);
    text-transform: uppercase;
}

.card_img-wrapper .main_right-item:nth-child(3) {
    left: -30px;
}

.card_img-wrapper .main_right-item {
    transform: scale(0);
    transition: all 0.3s;
}

.card_img-wrapper.vitamin_show .main_right-item:not(.card_certificat-link) {
    transform: scale(1);
}

.main_right-item.card_certificat-link {
    top: 450px;
    left: 44px;
}

.card_img-wrapper.reviews_show .main_right-item.card_certificat-link {
    transform: scale(1);
    z-index: 10;
}

.card_img-compound {
    border: 1px solid #FFFFFF33;
    background: #1B3C1C80;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    position: absolute;
    padding: 20px;
    top: 320px;
    right: 30px;
    color: #F4F0E8;
    transform: scale(0);
    transition: all 0.3s;
}

.compound_show .card_img-compound {
    transform: scale(1);
}

.card_img-compound .card_compound-subtitle,
.card_img-compound .card_compound-list {
    color: #F4F0E8;
}

.card_compound-list:last-child {
    margin-bottom: 0;
}


.card_reviews {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    min-height: 650px;
}

.card_reviews-info {
    max-width: 480px;
}

.card_reviews::before {
    position: absolute;
    content: "ZEN SLEEP";
    white-space: nowrap;
    font-weight: 500;
    font-size: 300px;
    line-height: 130%;
    pointer-events: none;
    font-family: "Spectral", serif;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    color: #FFFFFF1A;
}

.card_reviews-title {
    font-family: "Spectral", serif;
    font-weight: 500;
    font-size: 80px;
    color: #230200;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.card_reviews-subtitle {
    font-size: 32px;
    line-height: 130%;
    color: #230200;
    max-width: 340px;
}

.card_reviews .reviews_slide {
    width: 390px;
    border: 1px solid #D79644;
    position: absolute;
}

.card_reviews .reviews_slide:nth-child(1) {
    left: 0;
    top: 340px;
    transform: rotate(7deg);
}

.card_reviews .reviews_slide:nth-child(2) {
    right: 0;
    top: 0;
    transform: rotate(7deg);
}


.card_reviews .reviews_slide:nth-child(3) {
    right: 0;
    top: 340px;
    transform: rotate(-7deg);
}

.card_main-img {
    display: none;
}

.ready {
    padding: 140px 0 100px;
    background: #FCDBA0;
}

.ready:has(.why) {
    background: white;
}

/* Хуячу бредятину: */

.ready .process {
    position: relative;
    
} 

.ready .process::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: inherit; /* Наследует фон у .process */
  z-index: -2; /* Помещаем под контент */
}

/* .ready .process .process_subtitle,.process_text {
    color: #1B3C1C;
} */

#popup_find-composition .form_select {
    width: 100%;
    margin-bottom: 50px;
}

/* .ready .process .title {
    color: #230200;
} */
.ready .certificates {
    position: relative;
    
} 

.ready .certificates::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: #FCDBA0;
    z-index: 0;
}

.ready h1 {
    margin-bottom: 20px;
}

.ready:has(.map_img) {
    padding: 140px 0 563px  0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #F4F0E8;
}

.ready .footer_option-title {
    color: black;
}

.ready .footer_option-text {
    color: black;
}

.all-news .rows {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.all-blogs .rows {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.all-blogs__inner {
    padding-block: 20px
}

.ready:has(.ms2_form) {
    background: white;

}

#msCart .table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 40px 0;
    
}
#msCart a {
    font-size: 16px;
}

#msCart table tr {
    border-bottom: 1px solid black;
}

#msCart table tr td, #msCart table tr th {
    padding: 10px;
}

.ms-header th{
    text-align: start;
}

.form-control {
    border: 1px solid #C3CAD4;
    display: block;
    height: 50px;
    margin-bottom: 10px;
    padding-left: 25px;
    width: 100%;
    border-radius: 100px;
}

.input-group-append {
    display: none;
}

.btn-sm {
    width: 30px;
    height: 30px;
    padding: 6px 10px 10px 10px;
}

.ms2_form button {
    padding: 20px;
}

#msOrder {
    max-width: 700px;
}

#msOrder .row {
    margin: 10px 0 20px 0;
}

#msOrder .col-md-8 {
    margin-top: 10px;
}

#msOrder textarea {
    height: 100px;
    border-radius: 30px;
    padding-top: 10px;
}

.col-12  h4{
    font-size: 25px;
    font-weight: bold;
}

.mb-md-0 {
    font-size: 25px;
    margin-bottom: 20px;
}

.card.green{
    background: #1B3C1C;
}
.card.green  .card_main-advantage .tooltip::before{
        background-image: url(../img/tooltip_bef3.svg);
}
.card.green .reviews_slide-title,
.card.green .reviews_slide-subtile,
.card.green .reviews_slide-text,
.card.green .card_reviews-subtitle,
.card.green .card_reviews-title,
.card.green   .card_certificat-title,
.card.green  .card_vitamin-title,
.card.green  .card_compound-text,
.card.green .card_compound-option,
.card.green .card_compound-list,
.card.green .card_compound-subtitle,
.card.green  .card_compound-title,
.card.green  .card_desc-text,
.card.green  .card_desc-subtitle,
.card.green  .card_desc-title,
.card.green .card_main-subtitle,
.card.green .card_main-title{
    color:#F4F0E8;
}
.card.green .card_compound-option::after{
        border-bottom: 1px dashed #F4F0E8;
}
.card.green .card_reviews .reviews_slide{
    background: #1B3C1C;
border: 1px solid #BECA95;
}
.card.green .crumb{
    color:#FCDBA0;
}
.card.green .crumb::after{
        background: #FCDBA0;
}
.card.green::before{
    background: #BECA95;
}
.card.green .card_main-advantage {
    background: #BECA95;
}
.card.green .card_main-advantage .tooltip {
    background: #BECA95;
    color:#1B3C1C;
}
.card.green .card_main-price{
        color:#F4F0E8;
}
.card.green .card_main-price{
        color:#F4F0E8;
}
.card.green .card_main-counter{
    border-bottom: 1px solid #F4F0E8;
}
.card.green .count-arrow path{
    fill:#F4F0E8;
}
.card.green .card_desc-btn,
.card.green .card_main-btn{
    background: #FCDBA0;
    color:#230200;
}
.card.green .card_img-wrapper .main_right-link{
    background: #FCDBA0;

}
.card.green  .main_right-link::before {
    background-image: url(../img/star1.svg);
}
.card.green  .main_right-link::after {
    background-image: url(../img/star2.svg);
}
.card.green .card_desc-btn:hover,
.card.green .card_main-btn:hover{
    color:#fff;
}
.card.green .card_desc-btn::before,
.card.green .card_main-btn::before{
    background: #D79644;
}
.card.green .count-inp{
     color:#F4F0E8; 
}
body:has(.card.green) .header{
    background: #1B3C1C;

}

body:has(.card.green)  .header_logo{
    color:#FCDBA0;
}

body:has(.card.green)  .header_order,
body:has(.card.green) .header_number,
body:has(.card.green)  .menu a{
    color:#F4F0E8;
}
body:has(.card.green)  .header_links::before,
body:has(.card.green)  .header_cart,
body:has(.card.green)  .header_message{
    background-color: #FCDBA0;
}
body:has(.card.green)  .header_cart path,
body:has(.card.green)  .header_message path{
    fill:#7B461E;
}
body:has(.card.green) .header_links::before{
        background-image: url(../img/phone2.svg);
}




.card.brown {
    background: #7B461E;
}


.card.brown .reviews_slide-title,
.card.brown .reviews_slide-subtile,
.card.brown .reviews_slide-text,
.card.brown .card_reviews-subtitle,
.card.brown .card_reviews-title,
.card.brown .card_certificat-title,
.card.brown .card_vitamin-title,
.card.brown .card_compound-text,
.card.brown .card_compound-option,
.card.brown .card_compound-list,
.card.brown .card_compound-subtitle,
.card.brown .card_compound-title,
.card.brown .card_desc-text,
.card.brown .card_desc-subtitle,
.card.brown .card_desc-title,
.card.brown .card_main-subtitle,
.card.brown .card_main-title {
    color: #F4F0E8;
}

.card.brown .card_compound-option::after {
    border-bottom: 1px dashed #F4F0E8;
}

.card.brown .card_reviews .reviews_slide {
 background: #7B461E;
border: 1px solid #F4F0E8
}

.card.brown .crumb {
    color: #FCDBA0;
}

.card.brown .crumb::after {
    background: #FCDBA0;
}

.card.brown .card_main-price {
    color: #F4F0E8;
}

.card.brown .card_main-price {
    color: #F4F0E8;
}

.card.brown .card_main-counter {
    border-bottom: 1px solid #F4F0E8;
}

.card.brown .count-arrow path {
    fill: #F4F0E8;
}

.card.brown .card_desc-btn,
.card.brown .card_main-btn {
    background: #FCDBA0;
    color: #230200;
}

.card.brown .card_img-wrapper .main_right-link {
    background: #FCDBA0;

}

.card.brown .main_right-link::before {
    background-image: url(../img/star1.svg);
}

.card.brown .main_right-link::after {
    background-image: url(../img/star2.svg);
}

.card.brown .card_desc-btn:hover,
.card.brown .card_main-btn:hover {
    color: #fff;
}

.card.brown .card_desc-btn::before,
.card.brown .card_main-btn::before {
    background: #D79644;
}

.card.brown .count-inp {
    color: #F4F0E8;
}

body:has(.card.brown) .header {
    background: #7B461E;

}

body:has(.card.brown) .header_logo {
    color: #FCDBA0;
}

body:has(.card.brown) .header_order,
body:has(.card.brown) .header_number,
body:has(.card.brown) .menu a {
    color: #F4F0E8;
}

body:has(.card.brown) .header_links::before,
body:has(.card.brown) .header_cart,
body:has(.card.brown) .header_message {
    background-color: #FCDBA0;
}

body:has(.card.brown) .header_cart path,
body:has(.card.brown) .header_message path {
    fill: #7B461E;
}

body:has(.card.brown) .header_links::before {
    background-image: url(../img/phone2.svg);
}

/* Вношу правки для каталога */
.catalog_item-options .main_right-item:nth-child(1) {
        top: 202px;
        left: 19px;
    }
    
.catalog_item-options .main_right-item:nth-child(2) {
    top: 215px;
    right: 12px;
}

.catalog_item-options .main_right-item:nth-child(3) {
    top: 301px;
    left: 90px;
}

.catalog_item-options .main_right-item {
    position: absolute;
    max-width: 240px;
    width: fit-content;
    background: #1B3C1C80;
    border: 1px solid #FFFFFF33;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 15px;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
}
/* ------------------------- */

/* Search results page: paste after the main style.css */

/*
.ready .ready__card {
    background: #F4F0E8;
    border: 1px solid rgba(27, 60, 28, 0.18);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 24px 70px rgba(35, 2, 0, 0.08);
}
*/
.ready .simplesearch-results {
    max-width: 760px;
    margin: 0 0 28px;
    font-family: "Spectral", serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 130%;
    color: #230200;
}

.ready .simplesearch-highlight {
    display: inline-block;
    border-radius: 8px;
    padding: 0 6px;
    background: #FCDBA0;
    color: #1B3C1C;
}

.ready .simplesearch-paging {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 30px;
    font-family: "Spectral", serif;
    font-weight: 500;
    color: #230200;
}

.ready .simplesearch-results-list {
    display: grid;
    gap: 20px;
    margin: 34px 0;
}

.ready .simplesearch-result {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(27, 60, 28, 0.16);
    border-radius: 20px;
    padding: 28px 30px 30px;
    background: #fff;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.ready .simplesearch-result::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: #1B3C1C;
}

.ready .simplesearch-result:hover {
    transform: translateY(-4px);
    border-color: #1B3C1C;
    box-shadow: 0 18px 45px rgba(27, 60, 28, 0.12);
}

.ready .simplesearch-result h3 {
    margin: 0 0 14px;
    font-family: "Spectral", serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 130%;
    color: #230200;
}

.ready .simplesearch-result h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.ready .simplesearch-result h3 a:hover {
    color: #1B3C1C;
}

.ready .simplesearch-result .extract,
.ready .simplesearch-result .extract p {
    margin: 0;
    font-size: 18px;
    line-height: 150%;
    color: rgba(35, 2, 0, 0.78);
}

.ready .simplesearch-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border: 1px solid #1B3C1C;
    border-radius: 10px;
    padding: 0 12px;
    color: #1B3C1C;
}

.ready .simplesearch-current-page {
    background: #1B3C1C;
    color: #FCDBA0;
}

@media(max-width:1680px) {
    .container {
        max-width: 1180px;
    }

    .header {
        padding: 12px 0;
    }

    .menu {
        gap: 20px;
    }
    
    .header_message-button.active + .header_messsages-inner {
        top: calc(100% + 5px);
    }

    .header_logo {
        width: 140px;
        font-size: 24px;
    }

    .menu a {
        font-size: 17px;
    }

    .main_info {
        width: 460px;
    }

    .main_right {
        width: 500px;
    }

    .main_img {
        max-width: 100%;
    }

    .main h1 {
        font-size: 42px;
    }

    .main {
        min-height: 1px;
    }

    .age .main_right,
    .products .main_right {
        width: 460px;
    }

    .products_info {
        width: 300px;
    }

    .products_wrapper {
        min-height: 1px;
    }

    .age .products_tabs,
    .products_tabs {
        width: 320px;
    }

    .products {
        padding-bottom: 240px;
    }

    .main_right-link {
        font-size: 14px;
        width: 180px;
        height: 180px;
    }

    .main_right-link::before {
        top: 20px;
    }

    .main_right-link::after {
        bottom: 20px;
    }

    .effectiveness_item-text {
        font-size: 18px;
    }

    .products_tab.active {
        font-size: 36px;
    }

    .products_tab {
        font-size: 20px;
    }

    .effectiveness_item-icon {
        margin-bottom: 20px;
    }

    .main_right-item {
        font-size: 16px;
    }

    .form_block-inner {
        gap: 30px;
    }

    .form_inp {
        width: calc(50% - 15px);
    }

    .whom_item {
        min-height: 460px;
    }

    .age .main_right .main_img {
        transform: none;
    }

    .main_right-item:nth-child(1) {
        top: 304px;
        left: -15px;
    }

    .main_right-item:nth-child(2) {
        top: 388px;
    }

    .age {
        padding-bottom: 40px;
    }

    .age_right {
        width: 310px;
    }

    .process_info {
        width: 520px;
    }

    .process_wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .process_info {
        width: 100%;
    }

    .process_items {
        width: 100%;
    }

    .certificates .title {
        margin-bottom: 60px;
    }

    .certificates_slider .slick-arrow {
        top: -70px;
    }

    .map {
        padding-bottom: 400px;
    }

    .map_img {
        height: 100%;
        display: flex;
    }

    .map_img img {
        height: 100%;
        object-fit: cover;
        object-position: left;
    }

    .steps_item-number {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .steps_item-title {
        font-size: 26px;
    }

    .steps_item-text {
        font-size: 18px;
    }

    .blog_items {
        gap: 30px;
    }

    .blog_item {
        width: calc(50% - 15px);
    }

    .catalog_item {
        width: calc(50% - 10px);
    }
    
    .card_img-wrapper .card_main-right {
        width: 510px;
        height: 480px;
        bottom: 50px;
    }

    .card_img-wrapper {
        width: 520px;
        height: 520px;
        bottom: 50px;
    }

    .card_img {
        width: 100%;
        height: 100%;
    }

    .card::before {
        width: 500px;
        height: 680px;
    }

    .card_main-right {
        width: 290px;
    }

    .card_main-advantages {
        gap: 15px;
    }

    .card_main-advantage {
        width: 60px;
        height: 60px;
        padding: 4px;
    }

    .card_main {
        padding: 0 0 100px;
    }

    .card_compound,
    .card_desc {
        padding: 100px 0;
    }

    .card_compound-info {
        width: 320px;
    }

    .card_main-advantage img {
        max-width: 100%;
        height: auto;
    }

    .card_desc-info {
        width: 338px;
    }

    .card_compound-title {
        font-size: 80px;
        max-width: 700px;
    }

    .card_vitamin-img {
        width: 320px;
    }

    .card_vitamin-img img {
        width: 100%;
        height: auto;
    }

    .card_certificat-title {
        min-width: 100%;
        margin-left: 0;
        font-size: 82px;
    }

    .main_right-item.card_certificat-link {
        top: 320px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 950px;
    }

    /* .header_messsages {
        display: none;
    } */

    .header_number {
        font-size: 20px;
    }

    .header_logo {
        font-size: 22px;
        width: 94px;
    }
    
    .header_message-button.active + .header_messsages-inner {
        top: calc(100% + 3px);
    }

    .menu a {
        font-size: 16px;
    }

    .menu {
        gap: 14px;
    }

    .main_right {
        margin-right: 0;
    }

    .main_right {
        width: 420px;
    }

    .main_right-item img {
        width: 32px;
        height: auto;
    }

    .products {
        padding-bottom: 640px;
    }

    .products_info {
        width: 400px;
    }

    .age .products_tabs,
    .products_tabs {
        width: 346px;
    }

    .effectiveness_items {
        flex-wrap: wrap;
    }

    .effectiveness_inner,
    .effectiveness_item {
        width: calc(50% - 10px);
    }

    .products .main_right {
        top: auto;
        bottom: -640px;
    }

    .form_block-img {
        width: 45%;
    }

    .form_block-img img {
        object-position: 80%;
    }

    .form_block-wrapper {
        width: 55%;
    }

    .why_item-icon {
        width: 60px;
        margin-bottom: 30px;
    }

    .why_item:nth-child(2n) .why_item-icon {
        margin-left: auto;
    }

    .why_item-title {
        font-size: 24px;
    }

    .why_item-text {
        font-size: 18px;
    }

    .why_item-icon img {
        width: 100%;
        height: auto;
    }

    .form_block-title {
        font-size: 38px;
    }

    .whom_items {
        flex-wrap: wrap;
    }

    .whom_item {
        width: calc(50% - 10px);
        min-height: 520px;
    }

    .age {
        padding-bottom: 640px;
    }

    .age .main_right {
        top: auto;
        bottom: -640px;
        padding-bottom: 0;
    }

    .age_right-img {
        margin-bottom: 20px;
    }

    .certificates_slide {
        height: 414px;
    }

    .steps_item {
        width: calc(50% - 10px);
    }

    .blog_item {
        width: 100%;
    }

    .footer_item {
        max-width: 290px;
    }

    .main_right-icons {
        margin-top: -20px;
    }

    .main_right-item:nth-child(2) {
        top: 290px;
    }

    .main_right-item:nth-child(3) {
        top: 386px;
    }

    .main_right-item:nth-child(1) {
        top: 240px;
    }

    .main_right {
        padding-bottom: 30px;
    }

    .catalog_item-inner {
        flex-wrap: wrap;
        gap: 20px;
    }

    .catalog_item-title {
        font-size: 26px;
    }

    .catalog_item-advantages {
        gap: 14px;
    }

    .catalog_item-prev {
        right: 10px;
        top: 10px;
    }

    .catalog_item-options {
        display: none;
    }

    .card_img-wrapper {
        width: 420px;
        height: 420px;
    }
    
    .card_img-wrapper .card_main-right {
        width: 420px;
        height: 420px;
    }

    .card::before {
        width: 340px;
        height: 580px;
    }

    .card_main-info {
        width: 320px;
    }

    .card_main-title {
        font-size: 94px;
    }

    .card_main-subtitle {
        font-size: 24px;
        max-width: 300px;
    }

    .card_main-price {
        font-size: 36px;
    }

    .card_main-right {
        width: 280px;
    }

    .card_desc-info {
        width: 300px;
    }

    .card_desc-subtitle {
        margin-bottom: 30px;
        font-weight: 500;
        font-size: 24px;
    }

    .card_desc-title {
        font-size: 42px;
        max-width: 420px;
    }

    .card_compound-title {
        font-size: 60px;
        max-width: 510px;
    }

    .card_compound-info {
        width: 270px;
    }

    .card_img-compound {
        top: 170px;
    }

    .card_vitamin-title {
        font-size: 92px;
    }

    .card_vitamin-img:nth-child(2) {
        left: 10px;
    }

    .card_img-wrapper .main_right-item:nth-child(2) {
        right: -90px;
    }

    .card_img-wrapper .main_right-item:nth-child(3) {
        top: 360px;
    }

    .card_certificat-title {
        font-size: 64px;
    }

    .card_reviews .reviews_slide {
        width: 290px;
    }

    .card_reviews .reviews_slide-text {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@media (max-width: 991.98px) {
    .container {
        max-width: 730px;
    }
    
    .header_wrapper {
        gap: 0;
    }

    .header_inner {
        position: fixed;
        opacity: 0;
        visibility: hidden;
        top: 81px;
        right: 0;
        padding-top: 40px;
        width: 100%;
        overflow: auto;
        padding-bottom: 120px;
        height: 100%;
        transition: all 0.6s;
        background: #FCDBA0;
    }

    .header_inner.active {
        opacity: 1;
        visibility: visible;
    }
    
    .header_messsages {
        /* margin-left: auto; */
        margin-right: 40px;
    }

    .menu {
        flex-direction: column;
        max-width: 700px;
        margin: 0 auto;
    }

    .menu a {
        font-size: 20px;
    }

    .header_cart {
        /* margin-left: auto; */
        margin-right: 40px;
    }

    .menu_burger {
        width: 30px;
        height: 20px;
        display: block;
        margin-left: 30px;
        position: relative;
    }

    .menu_burger::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        background-color: #230200;
        top: 0px;
        right: 0;
        transition: all 0.3s;
    }

    .menu_burger.active::before {
        transform: rotate(45deg);
        top: 9px;
    }

    .menu_burger::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        background-color: #230200;
        bottom: 0px;
        right: 0;
        transition: all 0.3s;
    }

    .menu_burger.active::after {
        transform: rotate(-45deg);
        bottom: 9px;
    }

    .menu_burger span {
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        background-color: #230200;
        top: 9px;
        right: 0;
        transition: all 0.3s;
    }

    .menu_burger.active span {
        transform: scale(0);
    }

    .main_wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .main_info {
        width: 100%;
    }

    .title,
    .products_title {
        font-size: 42px;
    }

    .steps_subtitle,
    .age_subtitle,
    .whom_subtitle,
    .why_subtitle,
    .products_subtitle {
        font-size: 22px;
        margin-bottom: 40px;
    }

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

    .products_tab {
        margin-bottom: 0;
    }

    .products_tabs {
        width: calc(100% + ((100vw) - 700px) / 2);
        padding-right: calc(((100vw) - 700px) / 2);
        display: flex;
        align-items: center;
        white-space: nowrap;
        overflow: auto;
        gap: 20px;
    }

    .age .products_tabs {
        width: calc(100% + ((100vw) - 700px) / 2);
        padding-right: calc(((100vw) - 700px) / 2);
        white-space: nowrap;
    }

    .age .products_tabs br {
        display: none;
    }

    .products_info {
        width: 100%;
    }

    .products_text {
        margin-bottom: 40px;
    }

    .products_tabs::-webkit-scrollbar {
        display: none;
    }

    .form_block-img {
        width: 100%;
        position: relative;
        gap: 30px;
    }

    .form_block-wrapper {
        width: 100%;
        padding-left: 0;
        margin-top: 40px;
    }

    .form_block {
        padding-top: 0;
    }

    .why_items-logo {
        width: 200px;
        height: 200px;
        padding: 30px;
    }

    .why_item {
        padding: 20px 80px 20px 20px;
    }

    .why_items-logo img {
        max-width: 100%;
    }

    .why_item:nth-child(2n) {
        padding-left: 80px;
        padding-right: 20px;
    }

    .whom_item {
        min-height: 410px;
        padding: 20px;
    }

    .age_right {
        margin: 0 auto 30px;
    }

    .main_right-item:nth-child(1) {
        left: -84px;
    }

    .main_right-item:nth-child(2) {
        right: -74px;
    }

    .certificates_slide {
        height: 478px;
    }

    .footer_wrapper {
        flex-wrap: wrap;
    }

    .header_inner .header_messsages {
        display: flex;
        max-width: 700px;
        margin: 30px auto 0;
    }

    .catalog_item-advantages {
        display: none;
    }

    .catalog_item-img {
        height: 222px;
    }

    .catalog_item-prev {
        width: 130px;
        height: 130px;
        font-size: 12px;
    }

    .card {
        position: relative;
        padding-top: 90px;
    }

    .card_main {
        flex-direction: column;
        gap: 40px;
    }

    .card_main-right {
        width: 420px;
    }

    .card_main-advantages {
        margin-bottom: 30px;
    }

    .card_main-info {
        width: 100%;
    }

    .card_img-wrapper,
    .card::before {
        display: none;
    }

    .card_compound,
    .card_desc {
        padding: 30px 0;
    }

    .card_main {
        padding-bottom: 30px;
    }

    .card_main-img {
        display: flex;
        padding: 30px 60px;
        width: 400px;
        margin: 0 auto;
        background: #D79644;
        border-radius: 300px 300px 0 0;
    }

    .card_main-img img {
        width: 100%;
        height: auto;
    }

    .card_desc-title,
    .card_desc-info {
        width: 100%;
    }

    .card_desc {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .card_desc-text {
        max-width: 100%;
        margin-left: 0;
    }

    .card_desc-btn {
        margin-left: 0;
    }

    .card_compound {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .card_compound-info {
        width: 100%;
    }

    .card_vitamin-title {
        font-size: 82px;
    }

    .card_vitamin-img:nth-child(2) {
        bottom: 0;
    }

    .card_certificat {
        min-height: auto;
        padding: 30px 0 100px;
    }

    .card_reviews {
        padding: 30px 0 60px;
    }

    .card_certificat-title {
        font-size: 48px;
    }

    .card_reviews-title {
        font-size: 48px;
    }

    .card_reviews .reviews_slide {
        transform: none !important;
        position: relative;
        margin: 0;
        width: calc(50% - 10px);
        inset: auto !important;
    }

    .card_reviews {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .card_reviews-items {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .all-news .rows {
        grid-template-columns: 1fr 1fr;
    }
    
    .map_img img {
        object-fit: contain;
    }
    body:has(.card.green) .menu_burger::after,
    body:has(.card.green) .menu_burger span,
    body:has(.card.green) .menu_burger::before {
            background-color: rgb(252, 219, 160);
    }
    body:has(.card.green) .header_inner{
        background: #1B3C1C;
    }
        body:has(.card.brown) .menu_burger::after,
    body:has(.card.brown) .menu_burger span,
    body:has(.card.brown) .menu_burger::before {
            background-color: rgb(252, 219, 160);
    }
    body:has(.card.brown) .header_inner{
         background: #7B461E;
    }
    
    /*
        .ready .ready__card {
        padding: 36px 28px;
        border-radius: 24px;
    }
*/
    .ready .simplesearch-results {
        font-size: 26px;
    }

    .ready .simplesearch-result h3 {
        font-size: 22px;
    }
}

@media (max-width: 767.98px) {
    .container {
        max-width: 100%;
    }

    .header_order {
        display: none;
    }

    .header_links {
        padding: 0;
    }

    .header_cart,
    .header_messsages {
        margin-right: 20px;
    }

    .menu_burger {
        margin-left: 20px;
    }

    .header_number {
        margin: 0;
        font-size: 0;
        width: 40px;
        height: 40px;
    }

    .main h1 {
        font-size: 28px;
    }

    .main_subtitle {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .main_btn {
        width: 100%;
    }

    .header_inner .header_messsages,
    .menu {
        padding: 0 15px;
    }

    .main_right {
        width: 100%;
    }

    .main::before {
        font-size: 120px;
    }

    .main_right-item {
        padding: 12px;
        font-size: 14px;
        gap: 10px;
    }

    .main_right-item img {
        width: 28px;
    }

    .main_right-link {
        width: 140px;
        height: 140px;
        font-size: 12px;
    }

    .main_right-link::before {
        top: 10px;
        width: 24px;
        height: 24px;
    }

    .main_right-link::after {
        bottom: 10px;
        width: 24px;
        height: 24px;
    }

    .main_right-icons {
        gap: 10px;
    }

    .main_right-icon {
        width: 54px;
    }

    .main_right-icon img {
        width: 100%;
        height: auto;
    }

    .main_right-item:nth-child(1) {
        left: 0px;
        top: 220px;
    }

    .main_right-item:nth-child(2) {
        right: -16px;
        top: 280px;
    }

    .main_right-icons {
        margin-top: 60px;
    }

    .main_right-item:nth-child(3) {
        top: 354px;
        left: -11px;
    }

    .products {
        padding-top: 60px;
    }

    .form_block-title,
    .title,
    .products_title {
        font-size: 32px;
    }

    .news_subtitle,
    .reviews_subtitle,
    .steps_subtitle,
    .age_subtitle,
    .whom_subtitle,
    .why_subtitle,
    .products_subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .products_wrapper-label {
        font-size: 140px;
    }

    .products_tabs {
        width: calc(100% + 15px);
        padding-right: 15px;
    }

    .products_btn {
        width: 100%;
    }

    .products_text {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .products_tab {
        font-size: 16px;
    }

    .products_tab.active {
        font-size: 26px;
    }

    .products .main_right {
        width: 100%;
        bottom: -130vw;
    }

    .products {
        padding-bottom: 130vw;
    }

    .products .main_right {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .main_right-link {
        right: -15px;
    }

    .effectiveness {
        padding: 60px 0;
    }

    .effectiveness .title {
        margin-bottom: 30px;
    }

    .effectiveness_item {
        width: 100%;
        padding: 20px;
    }

    .effectiveness_item-icon {
        width: 42px;
    }

    .effectiveness_items {
        gap: 10px;
    }

    .effectiveness_item-icon img {
        width: 100%;
        height: auto;
    }

    .effectiveness_item-title {
        font-size: 28px;
    }

    .effectiveness_item-text {
        font-size: 16px;
    }

    .effectiveness_inner {
        width: 100%;
        padding: 20px;
    }

    .effectiveness_inner-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .btn {
        font-size: 16px;
        height: 50px;
    }

    .effectiveness_inner-btn {
        height: 50px;
    }

    .form_block-subtitle {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .form_select,
    .form_inp {
        width: 100%;
    }

    .form_ok {
        width: 100%;
    }

    .form_btn {
        width: 100%;
    }

    .form_block {
        padding-bottom: 60px;
    }

    .why {
        padding: 60px 0;
    }

    .why_items {
        gap: 10px;
    }

    .why_item {
        width: 100%;
        padding: 20px;
    }

    .why_items-logo {
        display: none;
    }

    .why_item-icon {
        width: 42px;
        margin-bottom: 14px;
    }

    .why_item-title {
        font-size: 20px;
    }

    .why_item-text {
        font-size: 16px;
    }

    .whom {
        padding: 60px 0;
    }

    .whom_items {
        gap: 10px;
    }

    .whom_item-title {
        gap: 24px;
    }

    .whom_item {
        width: 100%;
    }

    .whom_item-text {
        font-size: 16px;
    }

    .age {
        padding-top: 60px;
        padding-bottom: 130vw;
    }

    .age .main_right {
        width: 100%;
        bottom: -130vw;
    }

    .age .products_tabs {
        width: calc(100% + 15px);
        padding-right: 15px;
    }

    .age .products_tab {
        font-size: 16px;
    }

    .age .products_tab.active {
        font-size: 26px;
    }

    .age_right-subtitle {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .age_right-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .btn_green {
        font-size: 16px;
        height: 50px;
    }

    .process {
        padding: 60px 0;
    }

    .process_subtitle {
        font-size: 18px;
    }

    .process_text {
        font-size: 24px;
    }

    .process_text br {
        display: none;
    }

    .process_items {
        gap: 10px;
    }

    .process_item-icon {
        width: 42px;
        margin-bottom: 20px;
    }

    .process_item-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .process_item-icon img {
        width: 100%;
        height: auto;
    }

    .process_item {
        width: 100%;
        padding: 20px;
    }

    .certificates {
        padding: 60px 0;
    }

    .certificates .title {
        margin-bottom: 30px;
    }

    .certificates_slide {
        margin-right: 10px;
        width: 310px;
        height: 436px;
    }

    .map_subtitle {
        font-size: 22px;
    }

    .map {
        padding-bottom: 170px;
        padding-top: 60px;
    }

    .steps {
        padding: 60px 0;
    }

    .steps_items {
        gap: 10px;
    }

    .steps_item {
        padding: 20px;
        width: 100%;
    }

    .steps_item-title {
        font-size: 22px;
    }

    .blog,
    .news,
    .reviews {
        padding: 60px 0;
    }

    .reviews_slide {
        padding: 20px;
        margin-right: 10px;
        width: 310px;
    }

    .news_slide {
        margin-right: 10px;
        width: 310px;
    }

    .blog .title {
        margin-bottom: 30px;
    }

    .blog_item {
        flex-direction: column;
    }

    .blog_item-info {
        width: 100%;
    }

    .blog_item-date {
        margin-bottom: 20px;
    }

    .blog_item-img {
        width: auto;
        height: auto;
    }

    .footer {
        padding: 40px 0 60px;
    }

    .footer_menu a {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .footer_logo {
        font-size: 24px;
        width: 180px;
    }

    .footer_item-title {
        font-size: 22px;
    }

    .footer_inner-item {
        font-size: 14px;
    }

    .popup_order {
        padding: 40px 20px;
    }

    .catalog {
        padding: 120px 0 60px;
    }

    .crumb {
        font-size: 14px;
    }

    .crumbs {
        margin-bottom: 40px;
        flex-wrap: wrap;
    }

    .catalog_subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .catalog_tabs {
        flex-wrap: nowrap;
        gap: 10px;
        width: calc(100% + 15px);
        padding-right: 15px;
        overflow: auto;
    }

    .catalog_tabs::-webkit-scrollbar {
        display: none;
    }

    .catalog_tab {
        padding: 10px 14px;
        white-space: nowrap;
        font-size: 14px;
    }

    .catalog_items {
        gap: 10px;
    }

    .catalog_item {
        width: 100%;
        padding: 20px 16px;
    }

    .catalog_item-title {
        font-size: 20px;
    }

    .counter {
        width: 100%;
    }

    .catalog_item-price {
        font-size: 24px;
    }

    .catalog_item-price .old {
        font-size: 20px;
    }

    .card_main-title {
        font-size: 42px;
    }

    .card_main-subtitle {
        font-size: 18px;
    }

    .card_main-img {
        width: 100%;
        padding: 30px 40px 20px;
    }

    .card_main-right {
        width: 100%;
    }

    .card_main-btn {
        margin-top: 30px;
    }

    .card_main-price {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .card_main-price .old {
        font-size: 20px;
    }

    .card_desc-title {
        margin-bottom: 0px;
        font-size: 32px;
    }

    .card_desc {
        gap: 30px;
        min-height: 1px;
    }

    .card_desc-subtitle {
        margin-bottom: 20px;
        font-size: 18px;
    }

    .card_desc-text {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .card_desc-btn {
        width: 100%;
    }

    .card_compound-subtitle {
        font-size: 18px;
    }

    .card_compound-title {
        margin-bottom: 0px;
        font-size: 32px;
    }

    .card_compound-list {
        font-size: 16px;
        margin-bottom: 30px;
        padding-left: 20px;
    }

    .card_compound-option {
        font-size: 16px;
    }

    .card_compound-text {
        font-size: 16px;
    }

    .card_vitamin-img {
        width: 160px;
    }

    .card_vitamin-img:nth-child(1) {
        right: 0;
    }

    .card_vitamin {
        min-height: 1px;
        padding: 160px 0;
    }

    .card_reviews-title,
    .card_certificat-title,
    .card_vitamin-title {
        font-size: 32px;
    }

    .card_certificat {
        padding-bottom: 30px;
    }

    .card_reviews-subtitle {
        font-size: 18px;
    }

    .card_reviews .reviews_slide {
        width: 100%;
    }

    .card_reviews-items {
        gap: 10px;
    }
    
    .all-news .rows {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 590.98px) {
    .ms-weight {
        display: none;
    }
    
    .ms-cost {
        display: none;
    }
}

@media (max-width: 576px) {
    /*
    .ready .ready__card {
        padding: 26px 18px;
    }
*/
    .ready .simplesearch-results {
        font-size: 22px;
    }

    .ready .simplesearch-result {
        padding: 22px 20px 24px;
    }

    .ready .simplesearch-result h3 {
        font-size: 20px;
    }

    .ready .simplesearch-result .extract,
    .ready .simplesearch-result .extract p {
        font-size: 16px;
    }
}