@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Tangerine:wght@400;700&display=swap');



:root {
    --color-primary: #4B352A;
    --color-secondary: #CA7842;
    --color-accent: #B2CD9C;
    --color-light: #F0F2BD;
    --color-dark: #232938;
    --font-family: "DM Serif Text", serif;
    --font-family: "DM Serif Text", serif;
    --swiper-theme-color: #007aff;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
button,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    outline: none;
    vertical-align: baseline;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
    display: block;
}

html,
body {
    min-height: 100%;
}

body {
    color: var(--color-primary);
    font: 400 14px/130% var(--font-body);
    -webkit-font-smoothing: antialiased;
}



h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    margin: 0 0 24px;
    font-weight: bold;
    color: var(--color-primary);
}

.main-title,
.title,
.site-logo,
.nav__link,
.btn,
.section-title {
    font-family: var(--font-primary);
    font-weight: bold;
}

.main-container h1{
    letter-spacing: 2px;
}

.wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
    overflow-y: auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    opacity: 0.1;
    -webkit-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
}

.wrapper.wrapper_ready-load {
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    margin: 0 0 24px;
    font-weight: bold;
    color: var(--color-primary);
}

h1,
.h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -3px;
}

@media screen and (max-width: 767px) {
    h1,
    .h1 {
        font-size: 36px;
    }
}

h2,
.h2 {
    font-size: 36px;
    line-height: 120%;
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    h2,
    .h2 {
        font-size: 24px;
    }
}

h3,
.h3 {
    font-size: 24px;
    line-height: 120%;
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    h3,
    .h3 {
        font-size: 20px;
    }
}

h4,
.h4 {
    font-size: 18px;
    line-height: 140%;
}

h5,
.h5 {
    font-size: 14px;
    line-height: 130%;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    text-decoration: none;
    color: var(--color-primary);
}

strong {
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--color-secondary);
    position: relative;
    border-bottom: 1px solid transparent;
}

a:before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 1px;
    background-color: var(--color-secondary);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    width: 0;
}

a:hover {
    text-decoration: none;
}

a:hover:before {
    width: 100%;
}

a:focus:before {
    width: 80%;
}

a.btn:before {
    display: none;
}

ul,
p,
ol {
    padding: 0;
    margin-bottom: 24px;
}

@media screen and (max-width: 1023px) {
    ul,
    p,
    ol {
        margin-bottom: 16px;
    }
}

ul:last-child,
p:last-child,
ol:last-child {
    margin-bottom: 0;
}

p:empty {
    display: none;
}

ul,
ol {
    margin-left: 24px;
}

ul ul,
ul ol,
ol ul,
ol ol {
    margin: 8px 0 8px 24px;
}

ul li,
ol li {
    margin: 0 0 8px;
}

img {
    outline: none;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    height: auto;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    border: 0;
    width: 100%;
    margin-bottom: 32px;
    table-layout: fixed;
}

table tr:nth-child(odd) td {
    background-color: rgba(127, 116, 255, 0.2);
}

table tr:hover td {
    background-color: rgba(127, 116, 255, 0.2);
}

table td,
table th {
    border-bottom: 1px solid rgba(127, 116, 255, 0.2);
    border-top: 1px solid rgba(127, 116, 255, 0.2);
    text-align: left;
    padding: 16px;
    background-color: transparent;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

table th {
    padding: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: #B2CD9C;
}

sup,
.sup {
    font-size: 12px;
    position: relative;
    top: -4px;
}

blockquote,
blockquote {
    margin-left: 32px;
    padding-left: 16px;
    font-size: 16px;
    line-height: 32px;
    font-style: italic;
    margin-bottom: 32px;
    border-left: 2px solid #1f6c40;
}

q,
.q {
    quotes: "\00ab" "\00bb";
    margin-bottom: 24px;
    display: block;
}

q q,
.q q {
    quotes: "\201e" "\201c";
}

@media (max-width: 1400px) {
    .display-big-desktop-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .display-big-desktop-block {
        display: block !important;
    }
}

@media (max-width: 1200px) {
    .display-middle-desktop-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .display-middle-desktop-block {
        display: block !important;
    }
}

@media screen and (max-width: 1023px) {
    .display-desktop-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .display-desktop-block {
        display: block !important;
    }
}

@media screen and (max-width: 991px) {
    .display-tab-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .display-tab-block {
        display: block !important;
    }
}

@media screen and (max-width: 767px) {
    .display-mob-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .display-mob-block {
        display: block !important;
    }
}

@media screen and (max-width: 579px) {
    .display-mob-p-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .display-mob-p-block {
        display: block !important;
    }
}

.display-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.display-block {
    display: block !important;
}

.container {
    width: 100%;
    max-width: 1248px;
    padding: 0 16px;
    margin: 0 auto;
}

.container p{
    font-size: 20px;
}

@media screen and (max-width: 1023px) {
    .container {
        max-width: calc(100% - 48px);
    }
}

@media screen and (max-width: 419px) {
    .container {
        max-width: calc(100% - 32px);
    }
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: calc(100% + 32px);
    margin: 0 -16px;
}

.row-two {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    text-align: center;
    height: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: calc(100% + 32px);
    margin: 0 -16px;
}



.row.row_justify-content-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 991px) {
    .row {
        width: calc(100% + 24px);
        margin: 0 -12px;
    }
}

.col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0px;
    margin-top: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media screen and (max-width: 991px) {
    .col {
        padding: 0 12px;
    }
}

.col.col_1 {
    width: 8.3333%;
}

.col.col_2 {
    width: 16.666%;
}

.col.col_3 {
    width: 25%;
}

.col.col_4 {
    width: 33.3%;
}

.col.col_5 {
    width: 80%;
}

.col.col_6 {
    width: 50%;
}

.col.col_7 {
    width: 58.333333%;
}

.col.col_8 {
    width: 100%;
}

.col.col_9 {
    width: 75%;
}

.col.col_10 {
    width: 83.333333%;
}

.col.col_11 {
    width: 91.666667%;
}

.col.col_12 {
    width: 100%;
}

.col.col_13{
    width: 40%;
} 

@media (max-width: 1400px) {
    .col.col_big-desktop-2 {
        width: 16.66%;
    }
    .col.col_big-desktop-3 {
        width: 25%;
    }
    .col.col_big-desktop-4 {
        width: 33.3%;
    }
    .col.col_big-desktop-5 {
        width: 41.666667%;
    }
    .col.col_big-desktop-6 {
        width: 50%;
    }
    .col.col_big-desktop-7 {
        width: 58.333333%;
    }
    .col.col_big-desktop-8 {
        width: 66.666667%;
    }
    .col.col_big-desktop-9 {
        width: 75%;
    }
    .col.col_big-desktop-10 {
        width: 83.333333%;
    }
    .col.col_big-desktop-11 {
        width: 91.666667%;
    }
    .col.col_big-desktop-12 {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .col.col_middle-desktop-2 {
        width: 16.66%;
    }
    .col.col_middle-desktop-3 {
        width: 25%;
    }
    .col.col_middle-desktop-4 {
        width: 33.3%;
    }
    .col.col_middle-desktop-5 {
        width: 41.666667%;
    }
    .col.col_middle-desktop-6 {
        width: 50%;
    }
    .col.col_middle-desktop-7 {
        width: 58.333333%;
    }
    .col.col_middle-desktop-8 {
        width: 66.666667%;
    }
    .col.col_middle-desktop-9 {
        width: 75%;
    }
    .col.col_middle-desktop-10 {
        width: 83.333333%;
    }
    .col.col_middle-desktop-11 {
        width: 91.666667%;
    }
    .col.col_middle-desktop-12 {
        width: 100%;
    }
}

@media screen and (max-width: 1023px) {
    .col.col_desktop-2 {
        width: 16.66%;
    }
    .col.col_desktop-3 {
        width: 25%;
    }
    .col.col_desktop-4 {
        width: 33.3%;
    }
    .col.col_desktop-5 {
        width: 41.666667%;
    }
    .col.col_desktop-6 {
        width: 50%;
    }
    .col.col_desktop-7 {
        width: 58.333333%;
    }
    .col.col_desktop-8 {
        width: 66.666667%;
    }
    .col.col_desktop-9 {
        width: 75%;
    }
    .col.col_desktop-10 {
        width: 83.333333%;
    }
    .col.col_desktop-11 {
        width: 91.666667%;
    }
    .col.col_desktop-12 {
        width: 100%;
    }
}

@media screen and (max-width: 991px) {
    .col.col_tab-3 {
        width: 25%;
    }
    .col.col_tab-4 {
        width: 33.3%;
    }
    .col.col_tab-5 {
        width: 41.666667%;
    }
    .col.col_tab-6 {
        width: 50%;
    }
    .col.col_tab-7 {
        width: 58.333333%;
    }
    .col.col_tab-8 {
        width: 66.666667%;
    }
    .col.col_tab-9 {
        width: 75%;
    }
    .col.col_tab-10 {
        width: 83.333333%;
    }
    .col.col_tab-11 {
        width: 91.666667%;
    }
    .col.col_tab-12 {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .col.col_mob-2 {
        width: 16.66%;
    }
    .col.col_mob-3 {
        width: 25%;
    }
    .col.col_mob-4 {
        width: 33.3%;
    }
    .col.col_mob-6 {
        width: 50%;
    }
    .col.col_mob-8 {
        width: 66.666667%;
    }
    .col.col_mob-12 {
        width: 100%;
    }
}

@media screen and (max-width: 579px) {
    .col.col_mob-p-12 {
        width: 100%;
    }
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

@media (max-width: 1400px) {
    .text-big-desktop-center {
        text-align: center;
    }
    .text-big-desktop-left {
        text-align: left;
    }
    .text-big-desktop-right {
        text-align: right;
    }
}

@media (max-width: 1200px) {
    .text-middle-desktop-center {
        text-align: center;
    }
    .text-middle-desktop-left {
        text-align: left;
    }
    .text-middle-desktop-right {
        text-align: right;
    }
}

@media screen and (max-width: 1023px) {
    .text-desktop-center {
        text-align: center;
    }
    .text-desktop-left {
        text-align: left;
    }
    .text-desktop-right {
        text-align: right;
    }
}

@media screen and (max-width: 991px) {
    .text-tab-center {
        text-align: center;
    }
    .text-tab-left {
        text-align: left;
    }
    .text-tab-right {
        text-align: right;
    }
}

@media screen and (max-width: 767px) {
    .text-mob-center {
        text-align: center;
    }
    .text-mob-left {
        text-align: left;
    }
    .text-mob-right {
        text-align: right;
    }
}

@media screen and (max-width: 579px) {
    .text-mob-p-center {
        text-align: center;
    }
    .text-mob-p-left {
        text-align: left;
    }
    .text-mob-p-right {
        text-align: right;
    }
}

/*flex-direction */

.direction-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

@media screen and (min-width: 1024px) {
    .direction-row-desktop {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
}

@media screen and (min-width: 992px) {
    .direction-row-tab {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
}

@media screen and (min-width: 768px) {
    .direction-row-mob {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
}

@media screen and (min-width: 580px) {
    .direction-row-mob-p {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
}

.direction-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

@media screen and (min-width: 1024px) {
    .direction-column-desktop {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
}

@media screen and (min-width: 992px) {
    .direction-column-tab {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
}

@media screen and (min-width: 768px) {
    .direction-column-mob {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
}

@media screen and (min-width: 580px) {
    .direction-column-mob-p {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
}

.direction-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
}

@media screen and (min-width: 1024px) {
    .direction-row-reverse-desktop {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
}

@media screen and (min-width: 992px) {
    .direction-row-reverse-tab {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
}

@media screen and (min-width: 768px) {
    .direction-row-reverse-mob {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
}

@media screen and (min-width: 580px) {
    .direction-row-reverse-mob-p {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
}

.direction-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
}

@media screen and (min-width: 1024px) {
    .direction-column-reverse-desktop {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
}

@media screen and (min-width: 992px) {
    .direction-column-reverse-tab {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
}

@media screen and (min-width: 768px) {
    .direction-column-reverse-mob {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
}

@media screen and (min-width: 580px) {
    .direction-column-reverse-mob-p {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

@media (max-width: 1200px) {
    .flex-wrap-desktop {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
}

@media screen and (min-width: 1024px) {
    .flex-wrap-tab {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
}

@media screen and (min-width: 992px) {
    .flex-wrap-mob {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
}

@media screen and (min-width: 768px) {
    .flex-wrap-mob-p {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
}

.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}

@media screen and (min-width: 1024px) {
    .flex-nowrap-desktop {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
}

@media screen and (min-width: 992px) {
    .flex-nowrap-tab {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
}

@media screen and (min-width: 768px) {
    .flex-nowrap-mob {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
}

@media screen and (min-width: 580px) {
    .flex-nowrap-mob-p {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
}

.justify-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.gap{
    gap: 20px;
    align-items: center;
    flex-direction: column;
}

@media screen and (min-width: 1024px) {
    .justify-center-desktop {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

@media screen and (min-width: 992px) {
    .justify-center-tab {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

@media screen and (min-width: 768px) {
    .justify-center-mob {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

@media screen and (min-width: 580px) {
    .justify-center-mob-p {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
}

.justify-left {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}

@media screen and (min-width: 1024px) {
    .justify-left-desktop {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
}

@media screen and (min-width: 992px) {
    .justify-left-tab {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
}

@media screen and (min-width: 768px) {
    .justify-left-mob {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
}

@media screen and (min-width: 580px) {
    .justify-left-mob-p {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
}

.justify-right {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

@media screen and (min-width: 1024px) {
    .justify-right-desktop {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
}

@media screen and (min-width: 992px) {
    .justify-right-tab {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
}

@media screen and (min-width: 768px) {
    .justify-right-mob {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
}

@media screen and (min-width: 580px) {
    .justify-right-mob-p {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
}

.justify-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

@media screen and (min-width: 1024px) {
    .justify-between-desktop {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
}

@media screen and (min-width: 992px) {
    .justify-between-tab {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
}

@media screen and (min-width: 768px) {
    .justify-between-mob {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
}

@media screen and (min-width: 580px) {
    .justify-between-mob-p {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
}

.justify-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
}

@media screen and (min-width: 1024px) {
    .justify-around-desktop {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
}

@media screen and (min-width: 992px) {
    .justify-around-tab {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
}

@media screen and (min-width: 768px) {
    .justify-around-mob {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
}

@media screen and (min-width: 580px) {
    .justify-around-mob-p {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
}

.align-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

@media screen and (min-width: 1024px) {
    .align-center-desktop {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
}

@media screen and (min-width: 992px) {
    .align-center-tab {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
}

@media screen and (min-width: 768px) {
    .align-center-mob {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
}

@media screen and (min-width: 580px) {
    .align-center-mob-p {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
}

.align-left {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

@media screen and (min-width: 1024px) {
    .align-left-desktop {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
}

@media screen and (min-width: 992px) {
    .align-left-tab {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
}

@media screen and (min-width: 768px) {
    .align-left-mob {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
}

@media screen and (min-width: 580px) {
    .align-left-mob-p {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
}

.align-right {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}

@media screen and (min-width: 1024px) {
    .align-right-desktop {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
}

@media screen and (min-width: 992px) {
    .align-right-tab {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
}

@media screen and (min-width: 768px) {
    .align-right-mob {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
}

@media screen and (min-width: 580px) {
    .align-right-mob-p {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
}

.align-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
}

@media screen and (min-width: 1024px) {
    .align-between-desktop {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
}

@media screen and (min-width: 992px) {
    .align-between-tab {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
}

@media screen and (min-width: 768px) {
    .align-between-mob {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
}

@media screen and (min-width: 580px) {
    .align-between-mob-p {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
}

.align-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
}

@media screen and (min-width: 1024px) {
    .align-around-desktop {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
}

@media screen and (min-width: 992px) {
    .align-around-tab {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
}

@media screen and (min-width: 768px) {
    .align-around-mob {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
}

@media screen and (min-width: 580px) {
    .align-around-mob-p {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
}

.order-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
}

.order-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
}

.order-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
}

.order-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
}

.order-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
}

.order-6 {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
}

.order-7 {
    -webkit-box-ordinal-group: 8 !important;
    -ms-flex-order: 7 !important;
    order: 7 !important;
}

.order-8 {
    -webkit-box-ordinal-group: 9 !important;
    -ms-flex-order: 8 !important;
    order: 8 !important;
}

.order-9 {
    -webkit-box-ordinal-group: 10 !important;
    -ms-flex-order: 9 !important;
    order: 9 !important;
}

.order-10 {
    -webkit-box-ordinal-group: 11 !important;
    -ms-flex-order: 10 !important;
    order: 10 !important;
}

.order-11 {
    -webkit-box-ordinal-group: 12 !important;
    -ms-flex-order: 11 !important;
    order: 11 !important;
}

.order-12 {
    -webkit-box-ordinal-group: 13 !important;
    -ms-flex-order: 12 !important;
    order: 12 !important;
}

@media screen and (min-width: 1024px) {
    .order-desktop-1 {
        -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }
    .order-desktop-2 {
        -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
        order: 2 !important;
    }
    .order-desktop-3 {
        -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
        order: 3 !important;
    }
    .order-desktop-4 {
        -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
        order: 4 !important;
    }
    .order-desktop-5 {
        -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
        order: 5 !important;
    }
    .order-desktop-6 {
        -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
        order: 6 !important;
    }
    .order-desktop-7 {
        -webkit-box-ordinal-group: 8 !important;
        -ms-flex-order: 7 !important;
        order: 7 !important;
    }
    .order-desktop-8 {
        -webkit-box-ordinal-group: 9 !important;
        -ms-flex-order: 8 !important;
        order: 8 !important;
    }
    .order-desktop-9 {
        -webkit-box-ordinal-group: 10 !important;
        -ms-flex-order: 9 !important;
        order: 9 !important;
    }
    .order-desktop-10 {
        -webkit-box-ordinal-group: 11 !important;
        -ms-flex-order: 10 !important;
        order: 10 !important;
    }
    .order-desktop-11 {
        -webkit-box-ordinal-group: 12 !important;
        -ms-flex-order: 11 !important;
        order: 11 !important;
    }
    .order-desktop-12 {
        -webkit-box-ordinal-group: 13 !important;
        -ms-flex-order: 12 !important;
        order: 12 !important;
    }
}

@media screen and (min-width: 992px) {
    .order-tab-1 {
        -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }
    .order-tab-2 {
        -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
        order: 2 !important;
    }
    .order-tab-3 {
        -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
        order: 3 !important;
    }
    .order-tab-4 {
        -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
        order: 4 !important;
    }
    .order-tab-5 {
        -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
        order: 5 !important;
    }
    .order-tab-6 {
        -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
        order: 6 !important;
    }
    .order-tab-7 {
        -webkit-box-ordinal-group: 8 !important;
        -ms-flex-order: 7 !important;
        order: 7 !important;
    }
    .order-tab-8 {
        -webkit-box-ordinal-group: 9 !important;
        -ms-flex-order: 8 !important;
        order: 8 !important;
    }
    .order-tab-9 {
        -webkit-box-ordinal-group: 10 !important;
        -ms-flex-order: 9 !important;
        order: 9 !important;
    }
    .order-tab-10 {
        -webkit-box-ordinal-group: 11 !important;
        -ms-flex-order: 10 !important;
        order: 10 !important;
    }
    .order-tab-11 {
        -webkit-box-ordinal-group: 12 !important;
        -ms-flex-order: 11 !important;
        order: 11 !important;
    }
    .order-tab-12 {
        -webkit-box-ordinal-group: 13 !important;
        -ms-flex-order: 12 !important;
        order: 12 !important;
    }
}

@media screen and (min-width: 768px) {
    .order-mob-1 {
        -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }
    .order-mob-2 {
        -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
        order: 2 !important;
    }
    .order-mob-3 {
        -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
        order: 3 !important;
    }
    .order-mob-4 {
        -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
        order: 4 !important;
    }
    .order-mob-5 {
        -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
        order: 5 !important;
    }
    .order-mob-6 {
        -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
        order: 6 !important;
    }
    .order-mob-7 {
        -webkit-box-ordinal-group: 8 !important;
        -ms-flex-order: 7 !important;
        order: 7 !important;
    }
    .order-mob-8 {
        -webkit-box-ordinal-group: 9 !important;
        -ms-flex-order: 8 !important;
        order: 8 !important;
    }
    .order-mob-9 {
        -webkit-box-ordinal-group: 10 !important;
        -ms-flex-order: 9 !important;
        order: 9 !important;
    }
    .order-mob-10 {
        -webkit-box-ordinal-group: 11 !important;
        -ms-flex-order: 10 !important;
        order: 10 !important;
    }
    .order-mob-11 {
        -webkit-box-ordinal-group: 12 !important;
        -ms-flex-order: 11 !important;
        order: 11 !important;
    }
    .order-mob-12 {
        -webkit-box-ordinal-group: 13 !important;
        -ms-flex-order: 12 !important;
        order: 12 !important;
    }
}

@media screen and (min-width: 580px) {
    .order-mob-p-1 {
        -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }
    .order-mob-p-2 {
        -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
        order: 2 !important;
    }
    .order-mob-p-3 {
        -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
        order: 3 !important;
    }
    .order-mob-p-4 {
        -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
        order: 4 !important;
    }
    .order-mob-p-5 {
        -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
        order: 5 !important;
    }
    .order-mob-p-6 {
        -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
        order: 6 !important;
    }
    .order-mob-p-7 {
        -webkit-box-ordinal-group: 8 !important;
        -ms-flex-order: 7 !important;
        order: 7 !important;
    }
    .order-mob-p-8 {
        -webkit-box-ordinal-group: 9 !important;
        -ms-flex-order: 8 !important;
        order: 8 !important;
    }
    .order-mob-p-9 {
        -webkit-box-ordinal-group: 10 !important;
        -ms-flex-order: 9 !important;
        order: 9 !important;
    }
    .order-mob-p-10 {
        -webkit-box-ordinal-group: 11 !important;
        -ms-flex-order: 10 !important;
        order: 10 !important;
    }
    .order-mob-p-11 {
        -webkit-box-ordinal-group: 12 !important;
        -ms-flex-order: 11 !important;
        order: 11 !important;
    }
    .order-mob-p-12 {
        -webkit-box-ordinal-group: 13 !important;
        -ms-flex-order: 12 !important;
        order: 12 !important;
    }
}

svg {
    fill: #B2CD9C;
}

.icon {
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
}

@media screen and (max-width: 767px) {
    .icon {
        width: 18px;
        height: 18px;
    }
}

.icon-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.icon-position-left .icon {
    margin-right: 8px;
}

.icon-position-right .icon {
    margin-left: 8px;
}



.label-icon {
    position: relative;
}

.label-icon .icon-label {
    position: absolute;
    width: 20px;
    height: 20px;
    top: calc(50% - 12px);
    left: auto;
    right: 12px;
    fill: #B2CD9C;
}

.label-icon-position-right input[type="text"],
.label-icon-position-right input[type="password"],
.label-icon-position-right input[type="tel"],
.label-icon-position-right input[type="email"] {
    padding-right: 28px;
}

.label-icon-position-right .icon-label {
    left: auto;
    right: 0;
}

.label-icon-position-left input[type="text"],
.label-icon-position-left input[type="password"],
.label-icon-position-left input[type="tel"],
.label-icon-position-left input[type="email"] {
    padding-left: 28px;
}

.label-icon-position-left .icon-label {
    right: auto;
    left: 0;
}

@media screen and (max-width: 767px) {
    .label-icon .icon {
        right: 8px;
    }
    .label-icon .icon-position-right {
        left: auto;
        right: 8px;
    }
    .label-icon .icon-position-left {
        right: auto;
        left: 8px;
    }
}

form input[type="text"],
form input[type="password"],
form input[type="tel"],
form input[type="email"],
form textarea {
    border: none;
    border-bottom: 1px solid rgba(127, 116, 255, 0.6);
    padding: 6px 16px;
    padding-left: 0;
    font-size: 19px;
    line-height: 130%;
    width: 100%;
    border-radius: 0;
    background-color: transparent;
    margin: 0;
    font-family: var(--font-body);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

form input[type="text"]:hover,
form input[type="password"]:hover,
form input[type="tel"]:hover,
form input[type="email"]:hover,
form textarea:hover {
    border-color: var(--color-secondary);
}

form input[type="text"]:focus,
form input[type="password"]:focus,
form input[type="tel"]:focus,
form input[type="email"]:focus,
form textarea:focus {
    border-color: var(--color-primary);
    background-color: transparent;
}

form input[type="text"]:disabled,
form input[type="password"]:disabled,
form input[type="tel"]:disabled,
form input[type="email"]:disabled,
form textarea:disabled {
    color: rgba(35, 41, 56, 0.4);
    border-color: rgba(35, 41, 56, 0.4);
}

form input[type="text"].error,
form input[type="password"].error,
form input[type="tel"].error,
form input[type="email"].error,
form textarea.error {
    border-color: #D71313;
}

form textarea {
    width: 100%;
    height: 96px;
    resize: none;
}

.form-field {
    margin-bottom: 24px;
    position: relative;
}

.form-field:last-child {
    margin-bottom: 0;
}

.form-field .label-wrap {
    display: block;
    height: 100%;
}

.form-field .form-field__title {
    display: block;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
    cursor: pointer;
    color: var(--color-secondary);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.form-field .form-field__title:hover {
    color: var(--color-primary);
}

.form-group {
    position: relative;
}

form input::placeholder{
    font-size: 19px;
}

form input[type="text"]{
    font-size: 19px;
}

form textarea[type="message"]{
    font-size: 19px;
}

form textarea::placeholder{
    font-size: 19px;
}


.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group input[type="email"] {
    padding-right: 45px;
    font-size: 19px;
}

.form-group-btn {
    position: absolute;
    top: calc(50% - 16px);
    right: 0;
}

.form-group-btn.btn.icon-btn {
    padding-left: 0;
    padding-right: 0;
}

label.error {
    color: rgba(215, 19, 19, 0.6);
    position: absolute;
    top: 100%;
    right: 0;
}

label.error~.icon-label {
    fill: rgba(215, 19, 19, 0.6);
}

label.error~.icon-btn .icon {
    fill: rgba(215, 19, 19, 0.6) !important;
}

.input-disabled .icon-label {
    fill: rgba(35, 41, 56, 0.4);
}

.input-disabled .icon-btn .icon {
    fill: rgba(35, 41, 56, 0.4) !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: rgba(35, 41, 56, 0.6);
}

input:disabled::-moz-placeholder,
textarea:disabled::-moz-placeholder {
    color: rgba(35, 41, 56, 0.4);
}

@-webkit-keyframes autofill {
    to {
        background: transparent;
    }
}

input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: rgba(202, 120, 66, 0.4);
}

::-webkit-scrollbar-thumb {
    background-color: var(--color-secondary);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-primary);
}

.btn,
button,
input[type="submit"],
input[type="reset"] {
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    line-height: 140%;
    padding: 7px 16px;
    border: 1px solid var(--color-secondary);
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    outline: none;
    font-weight: 400;
    text-align: center;
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--color-secondary);
    -webkit-box-shadow: 0 10px 40px rgba(202, 120, 66, 0.4);
    box-shadow: 0 10px 40px rgba(202, 120, 66, 0.4);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #ffffff;
    text-decoration: none;
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}

.btn:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    -webkit-box-shadow: 0 0 0 4px rgba(202, 120, 66, 0.2);
    box-shadow: 0 0 0 4px rgba(202, 120, 66, 0.2);
}

.btn:active,
button:active,
input[type="submit"]:active,
input[type="reset"]:active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn:disabled,
button:disabled,
input[type="submit"]:disabled,
input[type="reset"]:disabled {
    border-color: rgba(73, 64, 167, 0.2);
    background-color: rgba(73, 64, 167, 0.2);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn.btn_secondary,
button.btn_secondary,
input[type="submit"].btn_secondary,
input[type="reset"].btn_secondary {
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 14px;
    line-height: 130%;
    color: #B2CD9C;
    border-color: transparent;
    background-color: rgba(127, 116, 255, 0.2);
}

.btn.btn_secondary:hover,
button.btn_secondary:hover,
input[type="submit"].btn_secondary:hover,
input[type="reset"].btn_secondary:hover {
    color: #B2CD9C;
    border-color: #B2CD9C;
    background-color: rgba(127, 116, 255, 0.2);
}

.btn.btn_secondary:focus,
button.btn_secondary:focus,
input[type="submit"].btn_secondary:focus,
input[type="reset"].btn_secondary:focus {
    color: #B2CD9C;
    border-color: #B2CD9C;
    background-color: rgba(127, 116, 255, 0.2);
}

.btn.btn_secondary:active,
button.btn_secondary:active,
input[type="submit"].btn_secondary:active,
input[type="reset"].btn_secondary:active {
    border-color: transparent;
    background-color: #4940A7;
}

.btn.btn_secondary:disabled,
button.btn_secondary:disabled,
input[type="submit"].btn_secondary:disabled,
input[type="reset"].btn_secondary:disabled {
    border-color: transparent;
    background-color: rgba(127, 116, 255, 0.2);
    color: #ffffff;
}

.btn.btn_link,
button.btn_link,
input[type="submit"].btn_link,
input[type="reset"].btn_link {
    color: #B2CD9C;
    background: transparent;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn.btn_link:hover,
button.btn_link:hover,
input[type="submit"].btn_link:hover,
input[type="reset"].btn_link:hover {
    background: transparent;
    border: none;
    color: #4940A7;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn.icon-btn {
    padding-left: 7px;
    padding-right: 7px;
}

.btn .icon {
    fill: #ffffff;
    display: block;
}

.btn:hover {
    fill: #ffffff;
}

.btn.btn_secondary .icon {
    fill: #B2CD9C;
}

.btn.btn_secondary:hover .icon {
    fill: #B2CD9C;
}

.btn.btn_link .icon {
    fill: #B2CD9C;
}

.btn.btn_link:hover .icon {
    fill: #B2CD9C;
}

.wysiwyg p{
    font-size: 20px;
    line-height: 1.5;;
}

.wysiwyg img {
    display: block;
    margin: 0 auto 24px;
}

.wysiwyg ul li,
.wysiwyg ol li {
    margin-bottom: 8px;
}

@media screen and (max-width: 991px) {
    .wysiwyg ul li,
    .wysiwyg ol li {
        padding-left: 24px;
    }
}

.wysiwyg ul {
    list-style: none;
}

.wysiwyg ul ul {
    margin-left: 0;
}

.wysiwyg ul li {
    position: relative;
    padding-left: 32px;
}

.wysiwyg ul li:before {
    content: "-"; /* Fixed problematic character */
    left: 8px;
    top: -2px;
    position: absolute;
}

@media screen and (max-width: 991px) {
    .wysiwyg ul li:before {
        top: 0;
        left: 0;
    }
}

.wysiwyg>*:last-child {
    margin-bottom: 0;
}


.nav__list {
    margin: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
}

@media screen and (max-width: 991px) {
    .nav__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 16px 0;
    }
}

.nav__item {
    margin: 0;
}

.nav__item.nav__item_active .nav__link,
.nav__item:hover .nav__link {
    color: var(--color-secondary);
}

.nav__link {
    display: block;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 18px;
    line-height: 140%;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

@media screen and (max-width: 991px) {
    .nav__link {
        padding: 0 24px;
    }
}

.hero-bg {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--bg-image);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -2;
    opacity: 1;
    transition: opacity 1.2s ease-in-out;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--next-bg-image);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -2;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-bg .overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
    z-index: -1;
    pointer-events: none;
}

.hero-bg.slide-out::before {
    opacity: 0;
}

.hero-bg.slide-out::after {
    opacity: 1;
}

.hero-bg > * {
    position: relative;
    z-index: 2;
}

.hero-bg .main-title,
.hero-bg .main-description,
.hero-bg .btn {
    color: #fff !important;

}

.welcome-to{
    font-size: 50px;
    text-shadow:
    1px 1px 0 #000,
    -1px 1px 0 #000,
    -1px -1px 0 #000,
    1px -1px 0 #000;
}

@media screen and (max-width: 767px) {
    .welcome-to {
        display: none;
    }
}



.header {
    background-color: #fff; /* Always visible */
    width: 60%;
    transition: box-shadow 0.3s;
    padding: 12px 0;
}

@media screen and (min-width: 1024px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10;
    }
}

@media screen and (min-width: 1024px) {
    .header.header-scroll {
        -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
        background-color: #ffffff;
    }
}

.header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 1023px) {
    .header {
        padding: 12px 0;
    }
}

.deal-grid{
    line-height: 1.5;
}

.site-logo {
    width: 40%;
}

.site-logo img{
    width: 30%;
}

.site-logo .site-logo__link {
    height: 100%;
    display: block;
}

.site-logo .site-logo__link:before {
    display: none;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 10;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.nav-toggle__link {
    width: 24px;
    display: block;
    background: #4B352A;
    -webkit-box-shadow: 2px 1px 0 rgba(127, 116, 255, 0.4);
    box-shadow: 2px 1px 0 rgba(127, 116, 255, 0.4);
    height: 3px;
    border-radius: 2px;
    margin: 2px 0;
    clear: both;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.nav-toggle__link:nth-of-type(2) {
    height: 2px;
}

@media screen and (max-width: 1023px) {
    .nav-toggle {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (max-width: 1023px) {
    .header-mobile {
        position: fixed;
        left: 0;
        right: 0;
        max-width: calc(100% - 48px);
        margin: 0 auto;
        width: 100%;
        padding: 0 16px;
        z-index: 10;
    }
}

.header-nav__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-nav__info {
    font-size: 18px;
    line-height: 140%;
    margin-left: 24px;
}

@media screen and (max-width: 1023px) {
    .header-nav {
        margin-left: auto;
        position: relative;
        width: 40px;
        height: 40px;
        z-index: 10;
    }
    .header-nav__container {
        right: 0;
        top: 0;
        min-width: 40px;
        min-height: 40px;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: #ffffff;
        position: absolute;
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
    .header-nav__container:before,
    .header-nav__container:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }
    .header-nav__container:before {
        background-color: rgba(255, 255, 255, 0.4);
        z-index: -3;
    }
    .header-nav__container:after {
        border-radius: 100%;
        -webkit-box-shadow: 0 0 100px rgba(64, 58, 128, 0.24);
        box-shadow: 0 0 100px rgba(64, 58, 128, 0.24);
        background-color: #D7CFFF;
        z-index: -2;
    }
    .header-nav__menu,
    .header-nav__info {
        width: 0;
        height: 0;
        opacity: 0;
        visibility: hidden;
    }
    .header-nav__menu .nav__list {
        padding-top: 0;
    }
    .header-nav__menu .nav__item:not(:last-child) {
        margin-bottom: 8px;
    }
    .header-nav__menu .nav__link {
        padding: 0;
        text-align: right;
    }
    .header-nav__menu .nav__link:before {
        left: auto;
        right: 0;
    }
    .header-nav__info {
        text-align: right;
        margin: 0;
    }
}

.header_menu-active .header-nav__container {
    top: -228px;
    right: -200px;
    padding: calc(228px + 48px) 200px 69px 116px;
    width: auto;
    height: auto;
    min-width: 600px;
    min-height: 600px;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/* 
.header_menu-active .header-nav__container:after {
    -webkit-transform: translate(26px, 0);
    transform: translate(26px, 0);
    width: calc(100% + 31px);
    height: calc(100% + 31px);
    -webkit-animation-name: move-your-body;
    animation-name: move-your-body;
    -webkit-animation-duration: 7s;
    animation-duration: 7s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
} */

.header_menu-active .header-nav__menu,
.header_menu-active .header-nav__info {
    width: 100%;
    height: auto;
    opacity: 1;
    visibility: visible;
}

.header_menu-active .header-mobile:before {
    content: '';
    position: absolute;
    top: 0;
    height: 100vh;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.4);
    z-index: 9;
}

.header_menu-active .nav-toggle .nav-toggle__link:nth-child(2) {
    display: none;
}

.header_menu-active .nav-toggle .nav-toggle__link:nth-child(1),
.header_menu-active .nav-toggle .nav-toggle__link:nth-child(3) {
    margin: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.header_menu-active .nav-toggle .nav-toggle__link:nth-child(3) {
    margin-top: -2px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.footer {
    background-color: var(--color-primary);
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info {
    padding-right: 20px;
}

.footer-company {
    font-family: var(--font-primary);
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--color-light);
}

.footer-address {
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact .contact-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact .contact-label {
    color: var(--color-light);
    font-size: 14px;
    margin-bottom: 2px;
}

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

.footer-contact a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact a i {
    font-size: 16px;
    color: var(--color-accent);
}

.footer-contact a:hover {
    color: var(--color-light);
}

.footer-contact a:hover i {
    color: var(--color-light);
}

.footer-contact .email-section {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links h4,
.footer-social h4 {
    color: var(--color-light);
    margin-bottom: 16px;
    font-size: 18px;
    font-family: var(--font-primary);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-accent);
}


.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

@media screen and (max-width: 991px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-info {
        grid-column: 1 / -1;
    }
}

@media screen and (max-width: 767px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-company {
        font-size: 20px;
    }
}

.popup-init {
    cursor: pointer;
}

.popup-visible {
    overflow: hidden;
}

.popup-wrap {
    position: fixed;
    top: 0;
    left: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.4);
    -webkit-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
    overflow-y: auto;
    overflow-x: hidden;
}

.popup-wrap,
.popup {
    visibility: hidden;
    opacity: 0;
}

.popup-visible .popup-wrap {
    visibility: visible;
    opacity: 1;
}

@media screen and (max-width: 767px) {
    .popup-visible .site-header,
    .popup-visible .site-main,
    .popup-visible .site-footer {
        opacity: 0;
        visibility: hidden;
    }
}

.popup {
    position: absolute;
    top: 50%;
    left: 50%;
    cursor: auto;
    min-width: 320px;
    padding: 78px 0;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    -webkit-box-shadow: 0 16px 24px rgba(2, 21, 51, 0.1);
    box-shadow: 0 16px 24px rgba(2, 21, 51, 0.1);
    background-color: #ffffff;
    z-index: 111;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 1023px) {
    .popup {
        padding: 48px 0 80px;
    }
}

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

.popup .container {
    position: relative;
}

.popup .popup-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .popup .popup-header {
        position: fixed;
        background-color: #E9EBEE;
        top: 0;
        left: 0;
        width: 100%;
        padding: 16px;
    }
}

.popup .popup-header .popup-header__title {
    margin-right: 24px;
}

.popup .popup-header .popup-header__title .title-text {
    margin-bottom: 0;
}

.popup .popup-remove {
    position: absolute;
    top: -50px;
    right: 0;
    left: 0;
    max-width: 1248px;
    padding: 0 16px;
    width: 100%;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.popup .popup-remove svg {
    margin-left: auto;
}

@media screen and (max-width: 1023px) {
    .popup .popup-remove {
        max-width: calc(100% - 16px);
        margin: 0 auto;
        top: -30px;
    }
}

.popup .popup-content {
    margin-bottom: 16px;
}

.popup .popup-content .subscription-icon {
    position: relative;
}

.popup .popup-content .subscription-icon:before {
    content: '';
    position: absolute;
    top: calc(50% - 360px);
    left: calc(50% - 360px);
    background-image: radial-gradient(84.46% 51.78% at 49.16% 50.49%, #F4E7E1 0%, #FFFFFF 53.65%);
    width: 720px;
    height: 720px;
    z-index: -1;
    opacity: .12;
}

.popup .popup-content .subscription-icon svg {
    width: 100%;
    height: 100%;
}

.popup .popup-content .subscription-description {
    margin-bottom: 32px;
}

.popup .popup-content .subscription-description .title {
    margin-bottom: 8px;
}

.popup .popup-content .subscription-form {
    max-width: 85%;
    width: 100%;
}

@media screen and (max-width: 1023px) {
    .popup .popup-content .subscription-icon {
        margin-bottom: 24px;
        max-width: 592px;
        margin-left: auto;
        margin-right: auto;
    }
    .popup .popup-content .subscription-form {
        max-width: 384px;
        margin: 0 auto;
    }
}

.section {
    padding: 100px 0;
}

.section:first-of-type {
    padding-top: 200px;
}

.section:last-of-type {
    padding-bottom: 200px;
}

@media screen and (max-width: 1023px) {
    .section {
        padding: 90px 0;
    }
    .section:first-of-type {
        padding-top: 180px;
    }
    .section:last-of-type {
        padding-bottom: 180px;
    }
}

@media screen and (max-width: 767px) {
    .section {
        padding: 60px 0;
    }
    .section:first-of-type {
        padding-top: 120px;
    }
    .section:last-of-type {
        padding-bottom: 120px;
    }
}

.section.section_secondary-bg {
    background-color: #F4E7E1;
}

.section.reviews-section {
    padding: 96px 0;
}

@media screen and (max-width: 1023px) {
    .section.reviews-section {
        padding: 66px 0 88px;
    }
}

@media screen and (max-width: 767px) {
    .section.reviews-section {
        padding: 26px 0 40px;
    }
}

.post-slider__container {
    overflow: initial;
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
    .post-slider__container {
        padding: 0 25%;
    }
}

.post-slider__wrapper {
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media screen and (max-width: 1200px) {
    .post-slider__wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 991px) {
    .post-slider__wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .post-slider__wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}

/* Ensure all 8 mushroom items are visible */
.post-slider__item {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Hide navigation arrows since we're using grid */
.post-slider__prev,
.post-slider__next {
    display: none;
}

.post-slider__item {
    background-color: #ffffff;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid rgba(35, 41, 56, 0.1);
    transition: all 0.2s ease-in-out;
    position: relative;
}

.post-slider__item.active-slider {
    border-color: transparent;
    -webkit-box-shadow: 0 20px 60px rgba(64, 58, 128, 0.12);
    box-shadow: 0 20px 60px rgba(64, 58, 128, 0.12);
    -webkit-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
}

.post-slider__info{
    text-align: center;
}

@media screen and (min-width: 768px) {
    .post-slider__item.active-slider {
        padding: 24px;
    }
    .post-slider__item.active-slider .post-slider__info {
        height: auto;
        opacity: 1;
        visibility: visible;
    }
    .post-slider__item.active-slider .post-slider__next,
    .post-slider__item.active-slider .post-slider__prev {
        width: 52px;
    }
    .post-slider__item.active-slider .post-slider__prev {
        left: -26px;
    }
    .post-slider__item.active-slider .post-slider__prev.swiper-button-disabled {
        left: 0;
        width: 0;
    }
    .post-slider__item.active-slider .post-slider__next {
        right: -26px;
    }
    .post-slider__item.active-slider .post-slider__next.swiper-button-disabled {
        right: 0;
        width: 0;
    }
}

.post-slider__image {
    margin-bottom: 16px;
}

.post-slider__image img {
    display: block;
}

.post-slider__info .title {
    margin-bottom: 8px;
}

.post-slider__info .wysiwyg {
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 54px;
}

.post-slider__info .prise {
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    color: #232938;
}

.post-slider__info .prise .pieces {
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    color: rgba(35, 41, 56, 0.6);
}

@media screen and (max-width: 767px) {
    .post-slider__info .prise {
        font-size: 20px;
    }
}

@media screen and (min-width: 768px) {
    .post-slider__info {
        height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        -webkit-transition: all 0.7s ease-in-out;
        transition: all 0.7s ease-in-out;
    }
}

@media screen and (max-width: 419px) {
    .post-slider__info .prise {
        width: 100%;
        margin-bottom: 16px;
    }
    .post-slider__info .btn {
        width: 100%;
    }
}

.post-slider__prev,
.post-slider__next {
    position: absolute;
    width: 0;
    height: 52px;
    background-color: transparent;
    background-repeat: no-repeat;
    overflow: hidden;
    -webkit-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
}

.post-slider__prev .icon,
.post-slider__next .icon {
    width: 13px;
    height: 13px;
}

@media screen and (max-width: 767px) {
    .post-slider__prev,
    .post-slider__next {
        display: none;
    }
}

.post-slider__prev {
    left: 0;
    background-image: url("../images/content/ellipse-prev.png");
    background-position: 10px 0;
}

.post-slider__next {
    right: 0;
    background-image: url("../images/content/ellipse-next.png");
    background-position: calc(100% - 10px) 0;
}

.post-slider__pagination {
    position: relative;
    bottom: auto !important;
}

.post-description {
    margin-bottom: 40px;
}

.reviews-item__top {
    margin-bottom: 16px;
}

.reviews-item__middle {
    margin-bottom: 16px;
    min-height: 100px;
}

@media screen and (max-width: 767px) {
    .reviews-item__middle {
        margin-bottom: 8px;
    }
}

.form-field button{
    display: flex;
    gap: 20px;
}

.reviews-slider {
    padding: 104px 0;
    /*reviews pagination bubbles*/
}

@media screen and (max-width: 1023px) {
    .reviews-slider {
        padding: 92px 0;
    }
}

@media screen and (max-width: 767px) {
    .reviews-slider {
        padding: 94px 0 80px;
    }
}

.reviews-slider__container {
    position: relative;
    background-color: #ffffff;
    border-radius: 6px;
    -webkit-box-shadow: 0 20px 60px rgba(64, 58, 128, 0.12);
    box-shadow: 0 20px 60px rgba(64, 58, 128, 0.12);
    padding: 40px;
    margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
    .reviews-slider__container {
        padding: 24px 16px;
    }
}

.reviews-slider__prev,
.reviews-slider__next {
    position: absolute;
    background-color: transparent;
    background-repeat: no-repeat;
    overflow: hidden;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.reviews-slider__prev .icon,
.reviews-slider__next .icon {
    width: 13px;
    height: 13px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.reviews-slider__prev.disabled-slider,
.reviews-slider__next.disabled-slider {
    width: 0;
}

.reviews-slider__prev.disabled-slider .icon,
.reviews-slider__next.disabled-slider .icon {
    width: 0;
}

.reviews-slider__prev {
    background-image: url("../images/content/ellipse-prev.png");
    background-position: 10px 0;
}

.reviews-slider__prev.disabled-slider {
    left: 0;
}

.reviews-slider__next {
    background-image: url("../images/content/ellipse-next.png");
    background-position: calc(100% - 10px) 0;
}

.reviews-slider__next.disabled-slider {
    right: 0;
}

.reviews-slider__image {
    width: 26px;
    height: 26px;
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid #B2CD9C;
    margin-right: 8px;
}

.reviews-slider__name {
    color: rgba(35, 41, 56, 0.6);
    margin-bottom: 0;
}

.reviews-slider__bubbles {
    position: relative;
    height: 100%;
}

.reviews-slider__bubbles .bubbles-list {
    list-style-type: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
}

.reviews-slider__bubbles .bubbles-item {
    max-width: 56px;
    max-height: 56px;
    border-radius: 50%;
    overflow: hidden;
    padding: 3px;
    position: absolute;
}

.reviews-slider__bubbles .bubbles-item:before {
    content: '';
    background-image: -webkit-gradient(linear, left top, right top, from(#F4E7E1), to(#CA7842));
    background-image: linear-gradient(to right, #F4E7E1 0%, #CA7842 100%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.reviews-slider__bubbles .bubbles-item img {
    border-radius: 50%;
    overflow: hidden;
}

.reviews-slider__bubbles .bubbles-item-next-1,
.reviews-slider__bubbles .bubbles-item-prev-1 {
    top: calc(50% - 43px);
    max-width: 86px;
    max-height: 86px;
}

.reviews-slider__bubbles .bubbles-item-next-2,
.reviews-slider__bubbles .bubbles-item-prev-2 {
    top: calc(25% - 32px);
    max-width: 64px;
    max-height: 64px;
}

.reviews-slider__bubbles .bubbles-item-next-3,
.reviews-slider__bubbles .bubbles-item-prev-3 {
    top: calc(75% - 28px);
}

.reviews-slider__bubbles .bubbles-item-next-1 {
    right: 0;
}

.reviews-slider__bubbles .bubbles-item-next-2 {
    right: calc(85% - 32px);
}

.reviews-slider__bubbles .bubbles-item-next-3 {
    right: calc(60% - 28px);
}

.reviews-slider__bubbles .bubbles-item-prev-1 {
    left: 0;
}

.reviews-slider__bubbles .bubbles-item-prev-2 {
    left: calc(60% - 32px);
}

.reviews-slider__bubbles .bubbles-item-prev-3 {
    left: calc(85% - 28px);
}

@media screen and (max-width: 1023px) {
    .reviews-slider__bubbles {
        display: none;
    }
}

.reviews-item__column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.reviews-item__column_left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 50%;
}

.reviews-item__column_right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 50%;
}

.reviews-container__fon {
    position: absolute;
    left: 50%;
    right: 0;
    top: 50%;
    bottom: 0;
    z-index: -1;
    width: 800px;
    height: 470px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.reviews-container__fon .reviews-icon {
    width: 100%;
    height: 100%;
}

.soc-list {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 -4px;
}

.soc-item {
    margin: 0 4px;
}

.soc-link {
    display: block;
    width: 16px;
    height: 16px;
}

.soc-link:before {
    display: none;
}

.soc-link:hover .soc-icon {
    fill: #232938;
}

.soc-icon {
    width: 16px;
    height: 16px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.photo-list {
    position: relative;
    margin-top: 50px;
    margin-left: 50px;
}

.photo-item {
    max-width: 400px;
    background-color: #ffffff;
    padding: 16px;
    -webkit-box-shadow: 20px 20px 50px rgba(64, 58, 128, 0.05), 50px 50px 80px rgba(64, 58, 128, 0.08);
    box-shadow: 20px 20px 50px rgba(64, 58, 128, 0.05), 50px 50px 80px rgba(64, 58, 128, 0.08);
    border-radius: 8px;
}

.photo-img {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.photo-img__block {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #232938;
}

.photo-img img {
    display: block;
    height: 100%;
    width: 100%;
}

.photo-info {
    margin-top: 16px;
    min-height: 16px;
}

@media screen and (max-width: 767px) {
    .photo-item {
        padding: 8px;
    }
    .photo-info {
        min-height: 8px;
        margin-top: 8px;
        font-size: 10px;
        line-height: 120%;
        color: rgba(35, 41, 56, 0.4);
    }
}

.main-section.section {
    padding-top: 263px;
}

.main-photo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
}


.main-photo__fon {
    position: absolute;
    top: 25%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    z-index: -1;
}

.main-photo__fon_icon {
    width: 100%;
    height: 100%;
}

.main-photo-item {
    z-index: 2;
}

.main-photo-item-1 {
    max-width: 312px;
    width: 100%;
}

.main-photo-item-1 .photo-img {
    height: 247px;
}

.main-photo-item-2 {
    position: absolute;
    -webkit-transform: rotate(8.39deg);
    transform: rotate(8.39deg);
    width: 100%;
    right: 35px;
    bottom: 45px;
}

.main-container .btn {
    max-width: 280px;
    width: 100%;
}

.main-heading{
    margin: 100px 0;
}

.main-description {
    margin-bottom: 48px;
    font-size: 20px;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 767px) {
    .main-description {
        font-size: 16px;
        padding: 0 20px;
        max-width: 100%;
    }
}

@media screen and (max-width: 1023px) {
    .main-section.section {
        padding-top: 185px;
    }
    .main-photo {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 96px;
    }
    .main-photo__fon {
        width: 100%;
    }
    .main-photo-item-1 {
        max-width: 230px;
    }
    .main-photo-item-1 .photo-img {
        height: 185px;
    }
    .main-photo-item-2 {
        max-width: 300px;
        position: relative;
    }
    .main-photo-item-2 .photo-img {
        height: 225px;
    }
    .main-container {
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .main-section.section {
        padding-top: 80px;
    }
    .main-photo {
        margin-bottom: 25px;
    }
    .main-description {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 579px) {
    .main-photo-item-1 {
        max-width: 116px;
    }
    .main-photo-item-1 .photo-img {
        height: 92px;
    }
    .main-photo-item-2 {
        max-width: 150px;
    }
    .main-photo-item-2 .photo-img {
        height: 111px;
    }
}

.round-border {
    color: #B2CD9C;
    position: relative;
}

.round-border:before {
    content: "";
    position: absolute;
    left: -33px;
    right: -33px;
    top: -9px;
    bottom: -9px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
}

.round-border-1:before {
    bottom: -16px;
    background-image: url("../images/content/title-1.png");
}

.round-border-2:before {
    left: -8px;
    right: -8px;
    top: -4px;
    bottom: -4px;
    background-image: url("../images/content/title-2.png");
}

@media screen and (max-width: 767px) {
    .dignity-item:not(:last-child) {
        margin-bottom: 70px;
    }
}

.dignity-block {
    padding: 32px;
    background-color: #ffffff;
    border-radius: 6px;
    -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
}

@media screen and (max-width: 1023px) {
    .dignity-block {
        padding: 85px 16px 24px;
        text-align: center;
    }
}

.dignity-title {
    position: relative;
    margin-bottom: 16px;
}

.dignity-title .title {
    margin-bottom: 0;
    max-width: calc(100% - 125px);
}

@media screen and (max-width: 1023px) {
    .dignity-title .title {
        max-width: 100%;
    }
}

.dignity-image {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media screen and (max-width: 1023px) {
    .dignity-image {
        left: 0;
        bottom: 50px;
    }
}

.farmer-list {
    z-index: 1;
}

.emotional-title {
    z-index: 1;
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .emotional-title {
        margin-bottom: 32px;
    }
}

.emotional-subtitle {
    margin-bottom: 8px;
}

.farmer-icon {
    width: 72px;
    height: 72px;
    background-color: #ffffff;
    border-radius: 6px;
    -webkit-box-shadow: 0 6px 16px rgba(64, 58, 128, 0.08);
    box-shadow: 0 6px 16px rgba(64, 58, 128, 0.08);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.farmer-icon img {
    max-width: 46px;
    width: auto;
}

@media screen and (max-width: 1023px) {
    .farmer-icon {
        width: 92px;
        height: 92px;
    }
    .farmer-icon img {
        max-width: 56px;
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .farmer-icon {
        width: 56px;
        height: 56px;
    }
    .farmer-icon img {
        max-width: 35px;
    }
}

.farmer-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 1023px) {
    .farmer-block {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.farmer-info {
    padding-left: 32px;
    width: calc(100% - 72px);
}

.farmer-item i{
    font-size: 30px;
}

@media screen and (max-width: 1023px) {
    .farmer-info {
        padding-left: 24px;
        width: calc(100% - 92px);
    }
}

@media screen and (max-width: 767px) {
    .farmer-info {
        padding-left: 16px;
        width: calc(100% - 56px);
    }
}

.farmer-item:not(:last-child) {
    margin-bottom: 40px;
}

@media screen and (max-width: 1023px) {
    .farmer-item:not(:last-child) {
        margin-bottom: 24px;
    }
}

.emotional-photo {
    position: relative;
}

@media screen and (max-width: 1023px) {
    .emotional-photo {
        height: 530px;
        margin-bottom: 48px;
    }
}

@media screen and (max-width: 767px) {
    .emotional-photo {
        height: auto;
        margin-bottom: 40px;
    }
}

.emotional-photo:before {
    content: none !important;
    background: none !important;
}

@media screen and (max-width: 767px) {
    .emotional-photo:before {
        width: 500px;
        height: 500px;
        top: calc(50% - 250px);
        left: calc(50% - 250px);
    }
}

.emotional-photo__item {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
}

@media screen and (max-width: 767px) {
    .emotional-photo__item {
        position: relative;
        top: 0;
        margin: auto;
    }
}

.emotional-photo__item-1 {
    max-width: 260px;
    -webkit-transform: rotate(-4.89deg);
    transform: rotate(-4.89deg);
    top: -40px;
}

.emotional-photo__item-1 .photo-img {
    height: 205px;
}

@media screen and (max-width: 1023px) {
    .emotional-photo__item-1 {
        left: calc(50% - 215px);
    }
}

@media screen and (max-width: 767px) {
    .emotional-photo__item-1 {
        top: 0;
        margin-bottom: -85px;
        left: -59px;
    }
}

@media screen and (max-width: 579px) {
    .emotional-photo__item-1 {
        top: 0;
        margin-bottom: -85px;
        max-width: 117px;
        left: -59px;
    }
    .emotional-photo__item-1 .photo-img {
        height: 93px;
    }
}

.emotional-photo__item-2 {
    max-width: 284px;
    -webkit-transform: rotate(20.12deg);
    transform: rotate(20.12deg);
    left: 220px;
    top: 69px;
}

.emotional-photo__item-2 .photo-img {
    height: 225px;
}

@media screen and (max-width: 1023px) {
    .emotional-photo__item-2 {
        left: calc(50% + 5px);
    }
}

@media screen and (max-width: 767px) {
    .emotional-photo__item-2 {
        top: calc(-25% + 66px);
        margin-bottom: -72px;
        left: calc(50% - 142px);
    }
}

@media screen and (max-width: 579px) {
    .emotional-photo__item-2 {
        top: 0;
        margin-bottom: -72px;
        max-width: 127px;
        left: 34px;
    }
    .emotional-photo__item-2 .photo-img {
        height: 101px;
    }
}

.emotional-photo__item-3 {
    max-width: 312px;
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
    left: -20px;
    top: 182px;
}

.emotional-photo__item-3 .photo-img {
    height: 246px;
}

@media screen and (max-width: 1023px) {
    .emotional-photo__item-3 {
        left: calc(50% - 234px);
    }
}

@media screen and (max-width: 767px) {
    .emotional-photo__item-3 {
        top: calc(-50% + 143px);
        left: calc(-25% + 78px);
    }
}

@media screen and (max-width: 579px) {
    .emotional-photo__item-3 {
        top: 0;
        max-width: 140px;
        left: -55px;
    }
    .emotional-photo__item-3 .photo-img {
        height: 111px;
    }
}

.subscript-fon {
    background-color: rgba(127, 116, 255, 0.15);
}

.subscript-icon {
    display: inline-block;
    position: relative;
    margin-bottom: 24px;
}

.subscript-icon .icon {
    width: 109px;
    height: 72px;
    fill: none;
}

.subscript-icon .sale {
    width: 42px;
    height: 37px;
    border-radius: 50%;
    background-color: #F35050;
    color: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: absolute;
    bottom: 0;
    right: -10px;
}

.subscript-icon .sale span {
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    -webkit-transform: rotate(-6.21deg);
    transform: rotate(-6.21deg);
}

.subscript-title {
    margin-bottom: 40px;
}

.subscript-title .title {
    margin-bottom: 0;
}

.description-container {
    padding: 80px 0 71px;
    position: relative;
}

/* Remove geometric background for section */
.description-container:before {
    content: none !important;
    background: none !important;
    -webkit-clip-path: none !important;
    clip-path: none !important;
}

.description-container:after {
    display: none;
}

.description-container .wysiwyg ol {
    list-style-type: none;
    counter-reset: number-zero;
    margin: 0;
}

.description-container .wysiwyg ol>li {
    display: inline-block;
    counter-increment: number-zero;
    padding-left: 8px;
    font-family: var(--font-body);
    font-weight: 400;
    color: #B2CD9C;
    font-size: 14px;
    line-height: 130%;
    margin: 0 16px 8px;
}

.description-container .wysiwyg ol>li:nth-child(-n+9):before {
    content: "0" counter(number-zero);
}

.description-container .wysiwyg ol>li:before {
    display: inline-block;
    margin-left: -20px;
    min-width: 20px;
    content: counter(number-zero);
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #B2CD9C;
    font-size: 14px;
    line-height: 140%;
}

@media screen and (max-width: 1023px) {
    .description-container {
        padding: 106px 0 71px;
    }
    .description-container:after {
        right: 50%;
        top: 24px;
        bottom: auto;
        -webkit-transform: rotate(-4deg);
        transform: rotate(-4deg);
    }
}

@media screen and (max-width: 767px) {
    .description-container {
        padding: 68px 0 28px;
    }
    .description-container:before {
        -webkit-clip-path: polygon(0 10%, 70% 0, 95% 100%, 0% 100%);
        clip-path: polygon(0 10%, 70% 0, 95% 100%, 0% 100%);
    }
    .description-container:after {
        -webkit-transform: rotate(-6deg);
        transform: rotate(-6deg);
    }
    .description-container .wysiwyg ol>li {
        display: block;
        margin-bottom: 18px;
    }
    .description-container .wysiwyg ol>li:last-child {
        margin-bottom: 0;
    }
}

.description-photo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    height: 100%;
}

@media screen and (max-width: 1023px) {
    .description-photo {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.description-photo-fon {
    position: absolute;
    top: 45%;
    left: 45%;
    right: 0;
    bottom: 0;
    width: 175%;
    height: 175%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.description-photo-fon__icon {
    width: 100%;
    height: 100%;
}

.description-photo-item {
    display: inline-block;
    position: relative;
    top: 35px;
}

/* Remove geometric background for images */
.description-photo-item:before {
    content: none !important;
    background: none !important;
}

.description-photo-item-1 {
    padding: 24px;
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
}

@media screen and (max-width: 1023px) {
    .description-photo-item {
        top: 0;
        padding: 75px 0;
    }
    .description-photo-item:before {
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        height: 200%;
    }
    .description-photo-item-1 {
        max-width: 420px;
    }
}

@media screen and (max-width: 579px) {
    .description-photo-item {
        padding: 40px 0;
    }
    .description-photo-item-1 {
        max-width: 230px;
        padding: 14px;
    }
    .description-photo-item-1 .photo-img {
        height: 175px;
    }
}

/*read-more*/

.readMore-container {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
}

.readMore-container.active {
    display: block;
}

/*read-more*/

.farmer-slideshow {
    position: relative;
    width: 100%;
    max-width: 800px;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0 auto 40px; /* Added bottom margin */
}

/* Update the column spacing for desktop */
@media screen and (min-width: 1024px) {
    .col.col_6.col_desktop-12 {
        padding: 0 20px; /* Add horizontal padding */
    }
    
    /* Add specific margin for the right column containing text */
    .col.col_6.col_desktop-12:last-child {
        padding-left: 40px; /* Larger padding on the left side */
    }
}

.farmer-slide {
    display: none;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.farmer-slide.active {
    display: block;
}

@media screen and (max-width: 767px) {
    .farmer-slideshow {
        width: 90%;
        margin: 0 auto;
        border-radius: 12px;
    }
    
    .farmer-slide {
        aspect-ratio: 16/9;
        width: 100%;
    }
}

.slide-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.slide-nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slide-nav-dot.active {
    background: #fff;
}

.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.3s ease;
}

.slide-arrow:hover {
    background: #fff;
}

.slide-arrow.prev {
    left: 20px;
}

.slide-arrow.next {
    right: 20px;
}

.slide-arrow i {
    color: var(--color-primary);
    font-size: 20px;
}

@media screen and (max-width: 767px) {
    .slide-arrow {
        width: 36px;
        height: 36px;
    }
    
    .slide-arrow.prev {
        left: 10px;
    }
    
    .slide-arrow.next {
        right: 10px;
    }
    
    .slide-nav {
        bottom: 15px;
    }
    
    .slide-nav-dot {
        width: 8px;
        height: 8px;
    }
}

.description-photo-item-1 {
    width: 120%;
    transform: none;
    margin-left: -10%;  /* Pull it back to center */
}

.description-photo-item-1 .photo-img__block iframe {
    width: 100%;
    height: 450px;
    border-radius: 8px;
}

@media screen and (max-width: 767px) {
    .description-photo-item-1 {
        width: 100%;
        margin-left: 0;
    }
    .description-photo-item-1 .photo-img__block iframe {
        height: 350px;
    }
}

@media screen and (max-width: 579px) {
    .description-photo-item-1 .photo-img__block iframe {
        height: 250px;
    }
}

/* Where to Buy Section */
.where-to-buy {
    padding: 80px 0;
}

.store-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Flexible grid for logos */
    gap: 20px;
    margin-top: 40px;
    justify-items: center;
    align-items: center;
}

/* Removed conflicting grid-column rules */

.store-location {
    background: transparent; /* Make background transparent */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none; /* Remove box-shadow for flat look */
    transition: none; /* Remove transitions for simpler hover */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px; /* Internal padding */
    width: 100%;
    max-width: 200px; /* Adjust max width for logo containers */
}

.store-location:hover {
    transform: none;
    box-shadow: none; /* Ensure no box-shadow on hover */
}

@media screen and (max-width: 1024px) {
    .store-locations-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on tablets */
    }
}

@media screen and (max-width: 767px) {
    .where-to-buy {
        padding: 60px 0;
    }
    .store-locations-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
        gap: 15px;
    }
    .store-location {
        max-width: 150px; /* Adjust max-width for smaller mobile columns */
    }
}

.store-image {
    width: 100%;
    height: 100px; /* Fixed height for logos */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0; /* No margin as per image */
}

.store-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensure image is fully visible */
    transition: none; /* Remove transition */
}

.store-location:hover .store-image img {
    transform: none; /* No transform on hover */
}

.store-info {
    display: none; /* Hide store info as per image */
}

.deal-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.deal-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.deal-item img {
    transition: transform 0.3s ease;
}

.deal-item:hover img {
    transform: scale(1.1);
}

.deal-item div {
    transition: color 0.3s ease;
}

.deal-item:hover div {
    color: var(--color-primary);
}

.branch-locations {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.branch-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.branch-map-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.branch-card:hover .branch-map-icon {
    transform: scale(1.1);
    background: var(--color-secondary);
}


.branch-info h3 {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.branch-address {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.branch-address i {
    color: var(--color-secondary);
    margin-top: 4px;
}

.branch-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.branch-email,
.branch-phone {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    word-break: break-word;
}

.branch-email i,
.branch-phone i {
    color: var(--color-secondary);
    font-size: 16px;
    flex-shrink: 0;
}

.branch-email:hover,
.branch-phone:hover {
    color: var(--color-primary);
}

.branch-email:hover i,
.branch-phone:hover i {
    color: var(--color-primary);
}

@media screen and (max-width: 1200px) {
    .branches-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media screen and (max-width: 991px) {
    .branch-locations {
        padding: 60px 0;
    }
    
    .branches-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .branch-info h3 {
        font-size: 20px;
    }
    
    .branch-card {
        padding: 20px;
    }
}

@media screen and (max-width: 767px) {
    .branch-locations {
        padding: 40px 0;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .branch-info {
        padding-right: 40px;
    }
    
    .branch-map-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
        top: 15px;
        right: 15px;
    }
    
    .branch-info h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .branch-address {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .branch-email,
    .branch-phone {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .branch-locations {
        padding: 30px 0;
    }
    
    .branch-card {
        padding: 15px;
    }
    
    .branch-info {
        padding-right: 35px;
    }
    
    .branch-map-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
        top: 12px;
        right: 12px;
    }
    
    .branch-info h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .branch-address {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .branch-email,
    .branch-phone {
        font-size: 13px;
    }
}

@media screen and (max-width: 991px) {
    #mushroomModal .modal-content {
        flex-direction: column;
    }
    
    #mushroomModal .modal-image {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    #mushroomModal .modal-image img {
        height: 300px;
    }
    
    #mushroomModal .modal-title {
        font-size: 30px;
    }
    
    #mushroomModal .modal-description {
        font-size: 18px;
    }
    
    #mushroomModal .modal-nutrition {
        font-size: 16px;
    }
}

@media screen and (max-width: 580px) {
    #mushroomModal .modal-content {
        padding: 20px;
    }
    
    #mushroomModal .modal-image img {
        height: 250px;
    }
    
    #mushroomModal .modal-title {
        font-size: 24px;
    }
    
    #mushroomModal .modal-description {
        font-size: 16px;
    }
    
    #mushroomModal .modal-nutrition {
        padding: 15px;
    }
}



/* Products Section Styles */
.products-container {
    width: 100%;
    padding: 20px 0;
    margin-bottom: 50px;
}

.products-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) rgba(0, 0, 0, 0.1);
    /* Add GPU acceleration */
    transform: translateZ(0);
    will-change: scroll-position;
}

.products-scroll::-webkit-scrollbar {
    height: 8px;
}

.products-scroll::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.products-scroll::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
    border-radius: 4px;
}

.product-card {
    flex: 0 0 280px;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(75, 53, 42, 0.1);
    /* Remove transition for better performance */
    /* Add GPU acceleration */
    transform: translateZ(0);
}

.product-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Add GPU acceleration */
    transform: translateZ(0);
}

.product-info {
    text-align: center;
}

.product-info h3 {
    color: var(--color-primary);
    margin-bottom: 8px;
    font-size: 18px;
}

.product-info p {
    color: rgba(75, 53, 42, 0.8);
    margin: 0;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .products-scroll {
        gap: 15px;
        padding: 10px 15px;
    }
    
    .product-card {
        flex: 0 0 220px;
    }
    
    .product-image {
        height: 160px;
    }
}

/* reCAPTCHA responsive styles */
.g-recaptcha {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0;
    overflow: hidden;
}

.g-recaptcha > div {
    width: 302px !important;
}

@media screen and (max-width: 767px) {
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center;
        margin: 10px auto;
        width: 320px;
    }
}

@media screen and (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.77);
        transform-origin: center;
        margin: 5px auto;
        width: 310px;
    }
}

@media screen and (max-width: 360px) {
    .g-recaptcha {
        transform: scale(0.7);
        width: 290px;
    }
}

/* About Us Section Styles */
.aboutus-block {
    border-radius: 16px;
    padding: 80px 16px;
    text-align: center;
}

.aboutus-block p {
    font-size: 20px;
    margin-bottom: 18px;
    line-height: 1.5;
}

.aboutus-block h3 {
    margin: 24px 0 12px 0;
    font-size: 1.1em;
    color: #B2CD9C;
}

.deal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 8px;
}

.deal-item {
    background: #fff;
    border-radius: 12px;
    width: 100%;
    padding: 12px;
    text-align: center;
    cursor: pointer;
}

.deal-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
}

.deal-item div {
    font-size: 18px;
    font-weight: 600;
    margin-top: 8px;
}

.aboutus-block .wysiwyg p {
    font-size: 20px;
    line-height: 1.5;
}

/* Container Styles */
.container-wide {
    max-width: 1600px;
}

/* Modal Styles */
.mushroom-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mushroom-modal-content {
    background-color: #fefefe;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    padding: 40px;
    border: 1px solid #888;
    width: 90%;
    max-width: 1000px;
    border-radius: 16px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-close {
    position: absolute;
    right: 25px;
    top: 15px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #000;
}

.modal-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-image-container {
    flex: 1;
}

.modal-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 auto 20px;
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
}

.modal-info-container {
    flex: 1;
}

.modal-title {
    margin-bottom: 25px;
    color: #4B352A;
    font-size: clamp(24px, 5vw, 36px);
    font-weight: bold;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.3s;
}

.modal-description {
    margin-bottom: 25px;
    font-size: clamp(16px, 3vw, 20px);
    line-height: 1.6;
    color: #333;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.4s;
}

.modal-nutrition {
    padding: 25px;
    background: #f9f9f9;
    border-radius: 12px;
    font-size: clamp(14px, 2.5vw, 18px);
    line-height: 1.6;
    color: #444;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.5s;
}

/* Form Styles */
.form-input {
    border-color: #4B352A;
}

.form-field-gap {
    display: flex;
    justify-content: center;
}

/* Video Container Styles */
.video-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.video-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
}

.video-caption {
    text-align: center;
    margin-top: 16px;
    color: #666;
}



:root {
    --primary-font: "DM Serif Text", serif;
    --body-font: "DM Serif Text", serif;
}

/* Typography */
h1, h2, h3, h4, h5, h6,
.main-title,
.title,
.site-logo,
.nav__link,
.deal-item div,
#mushroomTitle,
.about-us-item div {
    font-family: var(--primary-font);
}

body {
    font-family: var(--body-font);
}

.main-title {
    font-weight: bold;
    letter-spacing: 0.02em;
    font-size: 200px;
    text-shadow:
        5px 1px 0 #000,
        -1px 1px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000;
    margin: 40px 0;
}

.welcome-to {
    font-family: var(--primary-font);
    font-weight: bold;
}

.nav__link {
    font-weight: bold;
    letter-spacing: 0.01em;
}

.deal-item div {
    font-weight: bold;
}

#mushroomTitle {
    font-weight: bold;
    letter-spacing: 0.02em;
}

.about-us-item div {
    font-weight: bold;
}

/* Responsive Styles */

@media (max-width: 1240px) {
    .nav__link{
        font-size: 14px !important;
    }
}


@media (max-width: 1024px) {
    .deal-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 12px !important;
        padding: 0 12px !important;
    }
    .deal-item {
        width: 100% !important;
    }
    .deal-item img {
        height: 120px !important;
        object-fit: contain !important;
        background-color: transparent !important;
    }
    .deal-item div {
        font-size: 16px !important;
    }
 
}

@media (max-width: 768px) {
    .deal-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 12px !important;
    }
    .deal-item {
        width: 100% !important;
    }
    .deal-item img {
        height: 120px !important;
        object-fit: contain !important;
        background-color: transparent !important;
    }
    .deal-item div {
        font-size: 16px !important;
    }
}

/* Products Tabs Styles */
.products-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 40px; /* Increased gap between buttons */
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd; /* Underline for all tabs */
    position: relative;
}

.tab-button {
    padding: 12px 0;
    border: none !important;
    background: transparent !important;
    color: #6c757d !important; /* Inactive tab color - light grey */
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: none !important;
}

.tab-button i {
    font-size: 18px;
    margin-right: 0;
}

.tab-button:hover {
    color: #4B352A !important; /* Hover color - darker grey */
}

.tab-button.active {
    color: #4B352A !important; /* Active tab color - now brown */
    font-weight: 600 !important; /* Bolder font for active tab */
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -1px; /* Adjust to sit on the border */
    left: 0;
    width: 100%;
    height: 2px;
    background: #4B352A; /* Active tab underline color - now brown */
    transition: all 0.3s ease;
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

.products-scroll {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    padding-bottom: 20px; /* Space for scrollbar */
}

.products-scroll::-webkit-scrollbar {
    height: 8px;
}

.products-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.products-scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.products-scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.products-grid {
    display: contents;
}

.product-card {
    /* Removed background, border, and shadow for transparent look */
    padding: 10px; /* Adjusted padding */
    text-align: center; /* Center align text for product info */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-card:hover {
    /* Removed hover effects as per new design */
    transform: none; /* Ensure no transform on hover */
}

.product-image {
    width: 100%;
    max-width: 180px; /* Limit image width to prevent excessive size */
    height: 150px; /* Maintain fixed height for consistency */
    overflow: hidden;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensure image is fully visible */
    border-radius: 0; /* Remove border-radius on image */
}

.product-card:hover .product-image img {
    transform: none; /* Remove image transform on hover */
}

.product-info {
    padding: 20px; /* Reverted padding */
    text-align: center; /* Reverted text-align */
}

.product-info h3 {
    color: #4B352A; /* Reverted title color */
    margin: 0 0 10px; /* Reverted margin */
    font-size: 18px; /* Reverted font size */
    font-weight: 600; /* Reverted font weight */
}

.product-info p {
    color: #666; /* Reverted description color */
    margin: 0;
    font-size: 14px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tab-buttons {
        flex-wrap: wrap; /* Allow buttons to wrap to the next line */
        justify-content: space-around; /* Distribute buttons evenly */
        gap: 20px; /* Adjust gap for mobile */
    }

    .tab-button {
        flex: 1 1 auto; /* Allow buttons to grow and shrink */
        min-width: unset; /* Remove minimum width constraint */
        padding: 10px 0; /* Adjust padding for mobile */
    }

    .products-scroll .product-card {
        min-width: 200px; /* Adjusted for smaller screens */
        margin-right: 20px;
    }
}

/* Styles for Branch Locations Tabs */
.branch-locations .products-tabs .tab-buttons {
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.branch-locations .branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjust columns for branch cards */
    gap: 20px; /* Gap between branch cards */
    padding: 20px 0;
}

.branch-locations .branch-card {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Add subtle shadow for card effect */
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.branch-locations .branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.branch-locations .branch-card .branch-info h3 {
    margin-bottom: 10px;
    color: var(--color-primary);
}

.branch-locations .branch-card .branch-address {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.branch-locations .branch-card .branch-address i {
    margin-right: 5px;
    color: var(--color-secondary);
}

.branch-locations .branch-card .branch-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.branch-locations .branch-card .branch-contact a {
    font-size: 14px;
    color: var(--color-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.branch-locations .branch-card .branch-contact a i {
    color: var(--color-primary);
}

@media (max-width: 768px) {

}

/* Where to Buy Section */
.where-to-buy {
    padding: 80px 0;
}

.store-locations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 columns for desktop */
    gap: 20px;
    margin-top: 40px;
    justify-items: center;
    align-items: center;
}

.store-location {
    background: transparent; /* Make background transparent */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none; /* Remove box-shadow for flat look */
    transition: none; /* Remove transitions for simpler hover */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px; /* Internal padding */
    width: 100%;
    max-width: 180px; /* Adjust max width for logo containers */
}

.store-location:hover {
    transform: none;
    box-shadow: none; /* Ensure no box-shadow on hover */
}

.store-image {
    width: 100%;
    height: 120px; /* Fixed height for logos */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0; /* No margin as per image */
}

.store-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensure image is fully visible */
    transition: none; /* Remove transition */
}

.store-location:hover .store-image img {
    transform: none; /* No transform on hover */
}

.store-info {
    display: none; /* Hide store info as per image */
}

/* Responsive adjustments */
@media screen and (max-width: 1200px) {
    .store-locations-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 columns on larger tablets */
    }
}

@media screen and (max-width: 1024px) {
    .store-locations-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on tablets */
    }
}

@media screen and (max-width: 767px) {
    .where-to-buy {
        padding: 60px 0;
    }
    .store-locations-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
        gap: 15px;
    }
    .store-location {
        max-width: 150px; /* Adjust max-width for smaller mobile columns */
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
  }
  
  .modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
  }
  
  @keyframes modalFadeIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  
  .close-modal:hover {
    color: #000;
  }
  
  .modal-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
  }
  
  .modal-logo {
    max-width: 200px;
    margin-bottom: 15px;
  }
  
  .modal-header h2 {
    color: #4b352a;
    margin: 0;
    font-size: 24px;
  }
  
  .modal-body {
    padding: 20px 0;
  }
  
  /* Company Profile Modal Styles */
  .profile-section {
    margin-bottom: 30px;
  }
  
  .profile-section h3 {
    color: #4b352a;
    margin-bottom: 10px;
    font-size: 20px;
  }
  
  .profile-section p {
    line-height: 1.6;
    color: #666;
  }
  
  /* Mushroom Modal Styles */
  .modal-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
  }
  
  .modal-image.modal-image-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  
  .mushroom-info h3 {
    color: #4b352a;
    margin: 15px 0 10px;
    font-size: 18px;
  }
  
  .mushroom-info p {
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
  }
  
  .mushroom-info ul {
    list-style-type: none;
    padding-left: 0;
  }
  
  .mushroom-info ul li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
  }
  
  .mushroom-info ul li:before {
    content: "•";
    color: #4b352a;
    position: absolute;
    left: 0;
  }
  
  /* Deal Item Modal Trigger */
  .deal-item {
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .deal-item:hover {
    transform: scale(1.05);
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .modal-content {
      margin: 10% auto;
      width: 95%;
      padding: 15px;
    }
  
    .modal-header h2 {
      font-size: 20px;
    }
  
    .modal-image {
      max-height: 200px;
    }
  
    .main-heading {
      font-size: 36px; /* Adjust as needed for mobile */
    }
  } 