@font-face {
    font-family: "Debby";
    src: url("../fonts/Debby.otf") format("opentype")
}

@font-face {
    font-family: "sweet purple";
    src: url("../fonts/sweet-purple.otf") format("opentype")
}

:root {
    --mainFont: "Poppins", sans-serif;
    --titleFont: "sweet purple";
    --subtitleFont: "sweet purple";
    --white: #fff;
    --gray: #bdbdbd;
    --gray-2: #9ba6a8;
    --brown: #b25d48;
    --darkBrown: #531c0f;
    --orange: #ffd9b6;
    --bg: #f5eee2;
    --black: #000;
    --blackButton: #303030
}

html {
    box-sizing: border-box;
    font-size: 100%
}

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

body {
    font-size: 1rem;
    font-family: var(--mainFont)
}

a {
    text-decoration: none
}

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

h1,
h2,
h3,
p {
    margin-bottom: 0;
    margin-top: 0
}

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

@media(min-width: 100em) {
    .container {
        max-width: 1544px
    }
}

.igualitary_report_text {
    line-height: 1.5;
    color: #979797;
    font-family: var(--mainFont);
    font-weight: 400;
    margin-bottom: 1.7rem
}

.igualitary_report_text h4 {
    font-size: 1rem;
}

.igualitary_report_text p {
    font-size: .85rem;
}

.slick-slider {
    overflow: hidden
}

.slick-list {
    margin: 0 -0.9375rem !important
}

.slick-slide {
    margin: 0 .9375rem !important
}

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3.75rem
}

.slick-dots li:not(:last-child) {
    margin-right: .9375rem
}

.slick-dots li.slick-active button {
    background: var(--brown);
}

.slick-dots button {
    text-indent: -9999px;
    width: 1.625rem;
    height: .4375rem;
    background: #b5b5b5;
    padding: 0;
    border: none;
    outline: 0px
}

.detail-top {
    position: absolute;
    top: -30px;
    left: 0
}

.detail-middle {
    position: absolute;
    bottom: -10px;
    left: 40%
}

.detail-bottom {
    position: absolute;
    bottom: -10px;
    right: 0;
    transform: translateX(50%)
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 4rem;
    z-index: 900
}

.header__container {
    position: relative
}

.header__logo {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 800;
    max-width: 156px
}

@keyframes show {
    to {
        opacity: 1
    }
}

.menu {
    display: flex;
    justify-content: flex-end;
    position: relative;
    padding: 1.25rem 1.5rem 1.25rem;
}

@media(min-width: 87em) {
    .menu {
        justify-content: flex-end;
    }
}

.menu::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 96.25%;
    height: 100%;
    background: var(--white);
    border-radius: .625rem;
    box-shadow: 0px .25rem .25rem rgba(0, 0, 0, .06);
    z-index: 700
}

.menu__list {
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 99999;
    display: none
}

@media(max-width: 87.4375em) {
    
    .menu__list::before {
        content: "";
        display: block;
        width: 156px;
        height: 125px;
        background: url("/uploads/images/logo-2x.png") no-repeat center center;
        background-size: contain;
        margin-bottom: 1rem
    }
}

@media(max-width: 87.4375em) {
    .menu__list.active {
        display: flex;
        opacity: 0;
        animation: show .5s forwards;
    }
}

@media(max-width: 87.4375em) {
    .menu__list {
        padding-top: 30px;
        width: 100vw;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: start;
    }
    .menu__list li {
        margin: 0 !important;
        margin-bottom: 1.5rem !important
    }
}

@media(min-width: 87.5em) {
    .menu__list {
        display: flex
    }
}

.menu__item {
    display: flex;
    align-items: center;
}

.menu__item a{
    text-decoration: none;
    color: #fff;
}

.menu__item:not(:last-child) {
    margin-right: 1rem
}

@media(min-width: 87.5em) {
    .menu__item:not(:last-child) {
        margin-right: 2.8125rem
    }
}

.menu__link {
    display: flex;
    align-items: flex-end;
    text-transform: uppercase
}

.menu__link.active svg {
    transform: all .5s;
    flex-shrink: 0
}

.menu__link.active svg path {
    fill: #b25d48
}

.menu__link:hover svg path {
    fill: #b25d48
}

.menu__link span {
    font-size: 1.125rem;
    line-height: 2rem;
    color: var(--black)
}

.menu__button {
    display: none;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    appearance: none;
    padding: 0px;
    position: relative;
    width: 1.5rem;
    height: 2.125rem;
    cursor: pointer;
    z-index: 99999
}

@media(max-width: 87.4375em) {
    .menu__button {
        display: flex
    }
}

.menu__button::before {
    content: "";
    display: block;
    width: 100%;
    height: .1875rem;
    background: var(--black);
    border-radius: .5rem;
    box-shadow: 0 .375rem var(--black), 0 -0.375rem var(--black);
    transition: all .3s ease 0s
}

.menu__button::after {
    content: "";
    display: block;
    width: 100%;
    height: .1875rem;
    background: var(--black);
    border-radius: .5rem;
    transition: all .3s ease 0s;
    position: absolute
}

.menu__button.active::before {
    background: var(--black);
    box-shadow: none;
    transform: rotate(45deg)
}

.menu__button.active::after {
    background: var(--black);
    transform: rotate(-45deg)
}

.siteButton {
    display: block;
    min-width: 222px;
    padding: .75rem 1.1875rem .6875rem;
    max-width: max-content;
    border-radius: .625rem;
    background: var(--orange);
    color: var(--brown);
    letter-spacing: -0.04em;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: center
}

.siteButton:hover {
    color: var(--brown)
}

.siteButton--black {
    color: var(--white);
    background-color: var(--blackButton)
}

.siteButton--black:hover {
    color: var(--white)
}

.footer {
    background: var(--bg);
    overflow: hidden
}

.footer__link {
    display: block;
    max-width: 246px
}

.footer__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2.8125rem;
    padding-bottom: 4rem
}

@media(max-width: 74.9375em) {
    .footer__container {
        flex-direction: column
    }
}

.footer__text {
    width: 100%;
    max-width: 22.75rem;
    font-size: 1.125rem;
    line-height: 2rem
}

.footer__text img{
    width: 100px;
    height: 100px;
    margin-right: 30px;
    float: left;
}

@media(max-width: 74.9375em) {
    .footer__text {
        text-align: center;
        margin-top: 1.875rem;
        margin-bottom: 1.875rem
    }
}

.footer__nav {
    display: flex;
    align-items: flex-start
}

@media(max-width: 35.9375em) {
    .footer__nav {
        flex-direction: column
    }
}

@media(max-width: 74.9375em) {
    .footer__nav {
        justify-content: space-between
    }
}

@media(min-width: 36em) {
    .footer__nav>div:not(:last-child) {
        margin-right: 1.875rem
    }
}

@media(min-width: 48em) {
    .footer__nav>div:not(:last-child) {
        margin-right: 3.75rem
    }
}

@media(min-width: 75em) {
    .footer__nav>div:not(:last-child) {
        margin-right: 1.875rem
    }
}

@media(min-width: 87.5em) {
    .footer__nav>div:not(:last-child) {
        margin-right: 4.375rem
    }
}

@media(min-width: 100em) {
    .footer__nav>div:not(:last-child) {
        margin-right: 8.75rem
    }
}

.footer__title {
    color: var(--brown);
    font-family: var(--subtitleFont);
    font-size: 2.5rem;
    line-height: .834;
    margin-bottom: 1.875rem
}

@media(max-width: 35.9375em) {
    .footer__title {
        text-align: center
    }
}

@media(max-width: 35.9375em) {
    .footer__menu:not(:last-child) {
        margin-bottom: 1.875rem
    }
}

.footer__menu li:not(:last-child) {
    margin-bottom: .625rem
}

.footer__social {
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.footer__social li {
    margin-bottom: 0 !important
}

.footer__social li:not(:last-child) {
    margin-right: .625rem
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5625rem;
    width: 3.125rem;
    height: 3.125rem;
    background-color: var(--white);
    border-radius: 50%;
    color: #eec49f
}

.footer__noweb {
    position: relative;
    background: #571f11;
    padding-top: 1.125rem;
    padding-bottom: 1.125rem
}

@media(min-width: 62em) {
    .footer__noweb__container {
        display: flex;
        align-items: center;
        justify-content: space-between
    }
}

.footer__noweb__text {
    color: #f2f2f2;
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.5625rem;
    letter-spacing: .02em
}

@media(max-width: 61.9375em) {
    .footer__noweb__text {
        text-align: center
    }
}

.footer__noweb__link {
    color: #f2f2f2;
    display: flex;
    align-items: center
}

@media(max-width: 61.9375em) {
    .footer__noweb__link {
        justify-content: center;
        margin-top: .625rem
    }
}

.footer__noweb__link:hover {
    color: #f2f2f2
}

.footer__noweb__link img {
    flex-shrink: 0;
    margin-left: .3125rem
}

.pageIntro {
    padding-top: 14.875rem;
    padding-bottom: 6.25rem;
    background: var(--darkBrown) url("./images/intro-bg.png") no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden
}

.pageIntro--subtitle {
    padding-bottom: 3.25rem
}

.pageIntro__title {
    color: #fff;
    font-family: var(--titleFont);
    font-size: 6.25rem;
    line-height: .834;
    text-align: center
}

.pageIntro__text {
    color: var(--white);
    font-size: 1.875rem;
    font-weight: 300;
    letter-spacing: -0.04em;
    line-height: 1.4;
    text-align: center
}

.homeMain {
    padding-top: 11.75rem;
    padding-bottom: 7rem;
    background: var(--darkBrown) url("./images/home-waves.svg") no-repeat top left;
    background-size: 100% auto;
    position: relative;
    overflow: hidden
}

.homeMain__container {
    display: grid;
    gap: 1.875rem
}

@media(min-width: 62em) {
    .homeMain__container {
        grid-template-columns: 2fr 1fr
    }
}

@media(min-width: 75em) {
    .homeMain__container {
        grid-template-columns: 1.5fr 1fr
    }
}

@media(min-width: 87.5em) {
    .homeMain__container {
        grid-template-columns: 1fr 1fr
    }
}

.homeMain__title {
    position: relative;
    margin-bottom: 30px;
    max-width: 650px;
}

.homeMain__title h1 {
    color: var(--white);
    font-family: var(--titleFont);
    font-size: 3.75rem;
    line-height: 4.125rem
}

@media(max-width: 47.9375em) {
    .homeMain__title h1 {
        text-align: center
    }
}

.homeMain__title img {
    margin: .625rem auto 0
}

@media(min-width: 48em) {
    .homeMain__title img {
        position: absolute;
        bottom: 10px;
        left: 256px
    }
}

@media (min-width: 62em) and (max-width: 74.9375em) {
    .homeMain__title img {
        position: absolute;
        bottom: 10px;
        left: 440px
    }
}

.homeMain__text {
    color: var(--white);
    font-size: 1.125rem;
    line-height: 2rem;
    margin-bottom: 2.75rem
}

@media(max-width: 47.9375em) {
    .homeMain__text {
        text-align: center
    }
}

.homeMain__button {
    min-width: 238px
}

@media(max-width: 47.9375em) {
    .homeMain__button {
        margin: 0 auto
    }
}

.homeMain__bg {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background: url("./images/home-bg.jpg") no-repeat center center;
    background-size: cover
}

@media(max-width: 61.9375em) {
    .homeMain__bg {
        display: none
    }
}

@media(min-width: 62em) {
    .homeMain__bg {
        width: 36%
    }
}

@media(min-width: 75em) {
    .homeMain__bg {
        width: 41%
    }
}

@media(min-width: 87.5em) {
    .homeMain__bg {
        width: 50%
    }
}

.homeHistory {
    padding-top: 2.8125rem;
    padding-bottom: 3.75rem;
    text-align: center;
    background: var(--bg);
    position: relative
}

@media(min-width: 62em) {
    .homeHistory {
        text-align: right
    }
}

.homeHistory__title {
    color: var(--brown);
    font-family: var(--subtitleFont);
    font-size: 6.5rem;
    line-height: .834;
    margin-bottom: 1.875rem
}

.homeHistory__text {
    color: var(--black);
    font-size: 1.125rem;
    line-height: 2rem;
    margin-bottom: 2.25rem;
    margin-left: auto;
    max-width: 65.625rem
}

.homeHistory__button {
    margin-left: auto;
    margin-bottom: 3.125rem
}

@media(max-width: 61.9375em) {
    .homeHistory__button {
        margin-right: auto;
        margin-left: auto
    }
}

.homeHistory__image {
    border-radius: .625rem;
    margin-left: auto;
    aspect-ratio: 34/25;
    object-fit: cover;
    object-position: center
}

@media(max-width: 61.9375em) {
    .homeHistory__image {
        margin-right: auto;
        margin-left: auto
    }
}

@media(min-width: 62em) {
    .homeHistory__image {
        max-width: 680px
    }
}

.homeHistory__bg {
    border-radius: .625rem
}

@media(max-width: 61.9375em) {
    .homeHistory__bg {
        margin-top: 1.875rem
    }
}

@media(min-width: 62em) {
    .homeHistory__bg {
        right: calc(50% + 240px);
        position: absolute;
        bottom: 3.75rem;
        right: calc(50% + 250px)
    }
}

@media(min-width: 75em) {
    .homeHistory__bg {
        right: calc(50% + 150px)
    }
}

@media(min-width: 87.5em) {
    .homeHistory__bg {
        right: calc(50% + 70px)
    }
}

@media(min-width: 100em) {
    .homeHistory__bg {
        right: calc(50% - 35px)
    }
}

.homeHistory__breads {
    position: absolute;
    left: -350px;
    top: -73px;
    z-index: 800
}

@media(max-width: 74.9375em) {
    .homeHistory__breads {
        display: none
    }
}

@media(min-width: 75em) {
    .homeHistory__breads {
        left: -350px;
        top: -73px
    }
}

@media(min-width: 87.5em) {
    .homeHistory__breads {
        left: -200px
    }
}

@media(min-width: 100em) {
    .homeHistory__breads {
        left: 0
    }
}

.homeTradition {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem
}

.homeTradition__container {
    display: grid;
    gap: 1.875rem;
    align-items: center
}

@media(min-width: 62em) {
    .homeTradition__container {
        grid-template-columns: repeat(12, 1fr)
    }
}

@media(min-width: 75em) {
    .homeTradition__container {
        align-items: flex-start
    }
}

@media(min-width: 62em) {
    .homeTradition__content {
        grid-column: 1/8
    }
}

@media(min-width: 75em) {
    .homeTradition__content {
        grid-column: 1/6
    }
}

.homeTradition__title {
    font-family: var(--subtitleFont);
    font-size: 5.625rem;
    line-height: .834;
    margin-bottom: 1.875rem;
    max-width: 480px
}

@media(max-width: 61.9375em) {
    .homeTradition__title {
        text-align: center;
        margin-left: auto;
        margin-right: auto
    }
}

@media(min-width: 75em) {
    .homeTradition__title {
        margin-top: 1.125rem
    }
}

.homeTradition__text {
    font-size: 1.125rem;
    line-height: 2rem;
    margin-bottom: 2rem;
    max-width: 530px
}

@media(max-width: 61.9375em) {
    .homeTradition__text {
        text-align: center;
        margin-left: auto;
        margin-right: auto
    }
}

@media(max-width: 61.9375em) {
    .homeTradition__button {
        margin-left: auto;
        margin-right: auto
    }
}

.homeTradition__image {
    border-radius: .625rem;
    width: 100%;
    aspect-ratio: 437/258
}

@media(min-width: 62em) {
    .homeTradition__image {
        grid-column: 8/13
    }
}

@media(min-width: 75em) {
    .homeTradition__image {
        grid-column: 6/13
    }
}

.homeCarousel {
    padding-top: 8.125rem;
    padding-bottom: 2.25rem;
    /*background: url("./images/carouselBg.png") no-repeat center center;*/
    background: linear-gradient(180deg, #F4CEAF 8.33%, rgba(244, 200, 175, 0) 100%);
    position: relative
}

.homeCarousel__left {
    position: absolute;
    top: -532px;
    left: 0
}

@media(max-width: 1599px) {
    .homeCarousel__left {
        display: none
    }
}

.homeCarousel__right {
    position: absolute;
    top: -532px;
    right: 0
}

@media(max-width: 1599px) {
    .homeCarousel__right {
        display: none
    }
}

.homeCarousel__title {
    color: var(--black);
    font-family: var(--subtitleFont);
    font-weight: 400;
    font-size: 5.625rem;
    line-height: .834;
    margin-bottom: 1.875rem;
    text-align: center
}

.homeCarousel__text {
    color: var(--black);
    font-size: 1.125rem;
    line-height: 2rem;
    text-align: center;
    margin-bottom: 5.5rem
}

.homeCarousel__wrapper {
    position: relative
}

.homeCarousel__list {
    margin: 0 auto;
    max-width: 300px
}

@media(min-width: 48em) {
    .homeCarousel__list {
        max-width: 500px
    }
}

@media(min-width: 62em) {
    .homeCarousel__list {
        max-width: 700px
    }
}

@media(min-width: 75em) {
    .homeCarousel__list {
        max-width: 900px
    }
}

@media(min-width: 87.5em) {
    .homeCarousel__list {
        max-width: 1100px
    }
}

@media(min-width: 100em) {
    .homeCarousel__list {
        max-width: 1300px
    }
}

.homeCarousel__item {
    padding-top: 3.75rem;
    padding-bottom: 2.5rem;
    background: var(--white);
    border-radius: .625rem
}

.homeCarousel__image {
    width: 100%;
    height: 13.5rem;
    margin-bottom: 1.5rem
}

.homeCarousel__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center
}

.homeCarousel__content {
    width: 100%;
    max-width: 14.25rem;
    margin: 0 auto
}

.homeCarousel__content a {
    margin: 0 auto
}

.homeCarousel__subtitle {
    color: var(--black);
    font-family: var(--subtitleFont);
    font-size: 3.75rem;
    font-weight: 400;
    line-height: .834;
    text-align: center;
    width: 100%;
    display: block;
    margin: 0 auto
}

.homeCarousel__subtitle::after {
    content: "";
    display: block;
    width: 100%;
    max-width: 228px;
    height: .0625rem;
    background-color: rgba(182, 111, 46, .5);
    margin-top: 1.25rem;
    margin-bottom: 1.25rem
}

@media(max-width: 35.9375em) {
    .homeCarousel__buttonWrapper {
        display: flex;
        align-content: center;
        justify-content: center;
        margin-top: 1.875rem
    }
}

.homeCarousel__buttonWrapper>button:not(:last-child) {
    margin-right: .9375rem
}

.homeCarousel__arrow {
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background-color: rgba(0, 0, 0, 0);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 2.375rem
}

@media(min-width: 36em) {
    .homeCarousel__arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%)
    }
}

@media(min-width: 62em) {
    .homeCarousel__arrow {
        top: calc(50% - 42px)
    }
}

.homeCarousel__arrow#back {
    left: 0
}

.homeCarousel__arrow#next {
    right: 0
}

.about {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
    text-align: center;
    position: relative
}

@media(min-width: 62em) {
    .about {
        background: url("./images/about-wheat-right.svg") no-repeat top -50px left -30px, url("./images/about-wheat-left.svg") no-repeat top -50px right -30px
    }
}

.about__detail {
    position: absolute
}

.about__detail--leftTop {
    transform: translateY(-70%) translateX(30%);
    top: 0;
    left: 0
}

@media(max-width: 74.9375em) {
    .about__detail--leftTop {
        display: none
    }
}

.about__detail--rightTop {
    transform: translateY(-75%) translateX(-30%);
    top: 0;
    right: 0
}

@media(max-width: 74.9375em) {
    .about__detail--rightTop {
        display: none
    }
}

.about__detail--leftBottom {
    left: 0;
    bottom: -50px;
    z-index: -1
}

@media(max-width: 99.9375em) {
    .about__detail--leftBottom {
        display: none
    }
}

.about__detail--rightBottom {
    right: 0;
    bottom: -200px;
    z-index: -1
}

@media(max-width: 99.9375em) {
    .about__detail--rightBottom {
        display: none
    }
}

.about__wrapper {
    max-width: 1100px;
    margin: 0 auto
}

.about__title {
    color: var(--black);
    font-family: var(--subtitleFont);
    font-size: 6.5rem;
    line-height: .834;
    margin-bottom: 3.125rem
}

.about__text {
    color: var(--black);
    font-size: 1.125rem;
    line-height: 2rem;
    text-align: center
}

.about__text+p {
    margin-top: 2rem
}

.about__button {
    margin: 2.75rem auto 0
}

.traditionIntro {
    padding-top: 3.75rem;
    padding-bottom: 4.6875rem;
    position: relative;
    background: url("./images/tradition-line.svg") bottom right no-repeat;
    background-size: 100% auto
}

.traditionIntro__bg {
    position: absolute;
    left: 0;
    top: -300px;
    transform: translateX(-70%)
}

@media(max-width: 47.9375em) {
    .traditionIntro__bg {
        display: none
    }
}

@media(min-width: 112.5em) {
    .traditionIntro__bg {
        transform: translateX(-50%)
    }
}

.traditionIntro__container {
    display: grid;
    gap: 1.875rem
}

@media(min-width: 75em) {
    .traditionIntro__container {
        grid-template-columns: repeat(12, 1fr)
    }
}

@media(min-width: 75em) {
    .traditionIntro__content {
        grid-column: 1/7
    }
}

.traditionIntro__title {
    color: var(--black);
    font-family: var(--subtitleFont);
    font-size: 5.625rem;
    line-height: .834;
    margin-bottom: 1.875rem
}

@media(max-width: 47.9375em) {
    .traditionIntro__title {
        text-align: center
    }
}

.traditionIntro__text {
    color: var(--black);
    font-size: 1.125rem;
    line-height: 2rem;
    margin-bottom: 2.75rem
}

@media(max-width: 47.9375em) {
    .traditionIntro__text {
        text-align: center
    }
}

.traditionIntro__text--bold {
    font-weight: 600;
    margin-bottom: 0 !important
}

.traditionIntro__text:not(:last-of-type) {
    margin-bottom: 2rem
}

@media(max-width: 47.9375em) {
    .traditionIntro__button {
        margin: 0 auto
    }
}

.traditionIntro__images {
    display: grid;
    justify-content: center;
    gap: 1.875rem
}

@media(min-width: 48em) {
    .traditionIntro__images {
        grid-template-columns: auto auto
    }
}

@media(min-width: 75em) {
    .traditionIntro__images {
        grid-column: 7/13;
        grid-template-columns: 1fr 1fr
    }
}

@media(min-width: 112.5em) {
    .traditionIntro__images {
        transform: translateX(17%)
    }
}

.traditionIntro__images img {
    border-radius: .625rem;
    aspect-ratio: 179/300;
    object-fit: cover;
    object-position: center
}

.traditionBread {
    overflow: hidden;
    padding-top: 2.9375rem;
    padding-bottom: 2.9375rem;
    background: linear-gradient(180deg, #F4CEAF 8.33%, rgba(244, 200, 175, 0) 100%);
    position: relative
}

.traditionBread__image {
    max-width: 853px;
    position: absolute;
    bottom: 0;
    left: -400px
}

@media(max-width: 61.9375em) {
    .traditionBread__image {
        display: none
    }
}

@media(min-width: 87.5em) {
    .traditionBread__image {
        left: -200px
    }
}

@media(min-width: 112.5em) {
    .traditionBread__image {
        left: 0
    }
}

.traditionBread__container {
    display: grid;
    gap: 1.875rem
}

@media(min-width: 62em) {
    .traditionBread__container {
        grid-template-columns: repeat(12, 1fr)
    }
}

@media(min-width: 62em) {
    .traditionBread__content {
        grid-column: 6/13
    }
}

.traditionBread__title {
    color: var(--black);
    font-family: var(--subtitleFont);
    font-size: 5.625rem;
    line-height: .834;
    margin-bottom: 1.875rem
}

@media(max-width: 47.9375em) {
    .traditionBread__title {
        text-align: center
    }
}

@media(min-width: 75em) {
    .traditionBread__title {
        margin-left: 4.1875rem
    }
}

.traditionBread__text {
    color: var(--black);
    font-size: 1.125rem;
    line-height: 2rem
}

@media(max-width: 47.9375em) {
    .traditionBread__text {
        text-align: center
    }
}

@media(min-width: 75em) {
    .traditionBread__text {
        margin-left: 4.1875rem
    }
}

.traditionBread__text:last-of-type {
    margin-bottom: 2.75rem
}

@media(max-width: 47.9375em) {
    .traditionBread__button {
        margin: 0 auto
    }
}

@media(min-width: 75em) {
    .traditionBread__button {
        margin-left: 4.1875rem
    }
}

.traditionStore {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
    position: relative;
    overflow: hidden
}

.traditionStore__left {
    position: absolute;
    bottom: 120px;
    left: 0;
    transform: translateX(-30%);
    z-index: -1
}

@media(max-width: 1899px) {
    .traditionStore__left {
        display: none
    }
}

.traditionStore__right {
    position: absolute;
    bottom: 120px;
    right: 0;
    transform: translateX(30%)
}

@media(max-width: 1899px) {
    .traditionStore__right {
        display: none
    }
}

.traditionStore__title {
    font-family: var(--subtitleFont);
    font-size: 5.625rem;
    line-height: .834;
    margin-bottom: 1.875rem;
    text-align: center
}

.traditionStore__text {
    font-size: 1.125rem;
    line-height: 2rem;
    text-align: center;
    max-width: 1262px;
    margin: 0 auto 1.375rem
}

.traditionStore__images {
    display: grid;
    gap: 1.875rem;
    margin-bottom: 3.75rem
}

@media(min-width: 36em) {
    .traditionStore__images {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width: 75em) {
    .traditionStore__images {
        grid-template-columns: repeat(4, 1fr)
    }
}

.traditionStore__images img {
    border-radius: .625rem;
    aspect-ratio: 179/225;
    object-fit: cover;
    object-position: center;
    width: 100%
}

.traditionStore__button {
    margin: 0 auto
}

.products {
    background: var(--bg);
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
    position: relative
}

.products__left {
    right: 0;
    top: -420px;
    position: absolute
}

@media(max-width: 1879px) {
    .products__left {
        display: none
    }
}

.products__container {
    display: grid;
    gap: 1.875rem
}

@media(min-width: 48em) {
    .products__container {
        grid-template-columns: repeat(12, 1fr)
    }
}

@media(min-width: 48em) {
    .products__nav {
        grid-column: 1/6
    }
}

@media(min-width: 62em) {
    .products__nav {
        grid-column: 1/4
    }
}

.products__title {
    color: var(--brown);
    font-family: var(--subtitleFont);
    font-size: 3.75rem;
    line-height: .843;
    margin-bottom: 2.5rem
}

@media(min-width: 87.5em) {
    .products__title {
        font-size: 4rem
    }
}

@media(min-width: 100em) {
    .products__title {
        font-size: 5.625rem
    }
}

.products__menu {
    border-top: .0625rem solid rgba(182, 111, 46, .5);
    padding-top: 2.5rem;
    padding-bottom: 2.5rem
}

.products__menu__item:not(:last-child) {
    margin-bottom: .9375rem
}

.products__menu__item label {
    cursor: pointer;
    display: flex;
    align-items: center
}

.products__menu__item span {
    border: .0625rem solid #000;
    border-radius: .3125rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: .9375rem
}

.products__menu__item span img {
    display: none
}

.products__menu__item input:checked+span {
    background: var(--brown);
    border-color: var(--brown)
}

.products__menu__item input:checked+span img {
    display: block
}

.products__subtitle {
    color: var(--gray-2);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 2rem;
    margin-bottom: .9375rem;
    text-transform: uppercase
}

.products__list {
    display: grid;
    gap: 1.875rem;
    grid-template-columns: repeat(1, minmax(auto, 316px));
    justify-content: center
}

@media(min-width: 36em) {
    .products__list {
        grid-template-columns: 1fr 1fr
    }
}

@media(min-width: 48em) {
    .products__list {
        grid-template-columns: repeat(1, 266px);
        grid-column: 6/13;
        justify-content: flex-end
    }
}

@media(min-width: 62em) {
    .products__list {
        grid-template-columns: repeat(2, 266px);
        grid-column: 4/13
    }
}

@media(min-width: 87.5em) {
    .products__list {
        grid-template-columns: repeat(3, 266px)
    }
}

@media(min-width: 100em) {
    .products__list {
        grid-template-columns: repeat(3, 316px)
    }
}

.productsStore {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
    background: linear-gradient(180deg, #F4CEAF 8.33%, rgba(244, 200, 175, 0) 100%);
    position: relative
}

.productsStore__image {
    position: absolute;
    left: -400px;
    bottom: 0;
    width: 100%;
    max-width: 735px
}

@media(max-width: 74.9375em) {
    .productsStore__image {
        display: none
    }
}

@media(min-width: 87.5em) {
    .productsStore__image {
        left: -200px
    }
}

@media(min-width: 100em) {
    .productsStore__image {
        left: 0
    }
}

.productsStore__content {
    max-width: 780px;
    margin-left: auto
}

.productsStore__title {
    color: var(--black);
    font-family: var(--subtitleFont);
    font-size: 5.625rem;
    line-height: .834;
    margin-bottom: 1.875rem
}

@media(max-width: 47.9375em) {
    .productsStore__title {
        text-align: center
    }
}

.productsStore__text {
    color: var(--black);
    font-size: 1.125rem;
    line-height: 2rem;
    margin-bottom: 2.75rem;
    max-width: 745px
}

@media(max-width: 47.9375em) {
    .productsStore__text {
        text-align: center
    }
}

@media(max-width: 47.9375em) {
    .productsStore__button {
        margin: 0 auto
    }
}

.product {
    padding-top: 3.75rem;
    padding-bottom: 6.25rem;
    background: var(--bg);
    position: relative
}

.product__image {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(50% - 5.25rem);
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: none
}

@media(min-width: 48em) {
    .product__image {
        display: block
    }
}

@media(min-width: 62em) {
    .product__image {
        width: calc(50% - 6.875rem)
    }
}

@media(min-width: 75em) {
    .product__image {
        width: calc(50% - 7.875rem)
    }
}

@media(min-width: 87.5em) {
    .product__image {
        width: calc(50% - 8.75rem)
    }
}

@media(min-width: 100em) {
    .product__image {
        width: calc(50% - .9375rem)
    }
}

.product__container {
    display: grid;
    gap: 1.875rem
}

@media(min-width: 48em) {
    .product__container {
        grid-template-columns: 1fr 1.5fr
    }
}

@media(min-width: 100em) {
    .product__container {
        grid-template-columns: 1fr 1fr
    }
}

@media(min-width: 48em) {
    .product__content {
        grid-column: 2
    }
}

@media(min-width: 100em) {
    .product__content {
        margin-left: 2rem
    }
}

.product__head {
    margin-bottom: 1.25rem
}

@media(min-width: 87.5em) {
    .product__head {
        display: flex;
        justify-content: space-between;
        align-items: center
    }
}

.product__title {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.4;
    text-transform: uppercase
}

@media(max-width: 86.4375em) {
    .product__title {
        margin-bottom: .625rem
    }
}

.product__link {
    display: flex;
    align-items: center;
    color: var(--black);
    text-transform: uppercase
}

.product__link span {
    font-size: .9375rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.04em;
    margin-right: .3125rem
}

.product__link:hover {
    color: var(--black)
}

.product__description {
    color: var(--black);
    font-size: 1.0625rem;
    font-weight: 300;
    letter-spacing: -0.04em;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    border-top: 1px solid #dab796;
    border-bottom: 1px solid #dab796
}

.product__subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.04em;
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
    text-transform: uppercase
}

.product__item {
    display: flex;
    align-items: flex-start
}

.product__item:not(:last-child) {
    margin-bottom: 1.875rem
}

.product__item span:first-child {
    width: 2.125rem;
    height: 2.125rem;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .5);
    margin-right: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    line-height: 1.4;
    letter-spacing: -0.04em
}

.product__item span:last-child {
    font-size: 1.3125rem;
    font-weight: 300;
    letter-spacing: -0.04em;
    line-height: 1.5
}

.contact {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem
}

.contact__content {
    max-width: 1160px;
    margin: 0 auto;
    box-shadow: 0 0 1.875rem rgba(0, 0, 0, .06);
    border-radius: .625rem;
    overflow: hidden;
    position: relative;
    display: grid;
    gap: 1.875rem
}

@media(min-width: 62em) {
    .contact__content {
        grid-template-columns: 1fr 1fr
    }
}

.contact__form {
    max-width: 380px;
    margin: 0 auto;
    padding-top: 2rem;
    padding-bottom: 2rem
}

@media(max-width: 61.9375em) {
    .contact__form {
        padding-left: .9375rem;
        padding-right: .9375rem
    }
}

@media(min-width: 62em) {
    .contact__form {
        padding-top: 3rem;
        padding-bottom: 5rem
    }
}

@media(min-width: 87.5em) {
    .contact__form {
        padding-top: 4rem;
        padding-bottom: 7.125rem
    }
}

.contact__title {
    color: var(--brown);
    font-family: var(--subtitleFont);
    font-size: 4.625rem;
    line-height: .834;
    text-align: center;
    margin-bottom: 2.75rem
}

.contact__type {
    margin-bottom: 1.75rem
}

@media(min-width: 36em) {
    .contact__type {
        display: flex;
        align-items: center;
        justify-content: center
    }
}

.contact__radio {
    display: flex;
    align-items: center;
    font-size: 1.125rem;
    line-height: 2rem
}

.contact__radio:first-child {
    margin-right: 1.875rem
}

.contact__radio span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: 1px solid #bdbdbd;
    padding: .25rem;
    margin-right: .5625rem
}

.contact__radio span::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%
}

.contact__radio input:checked+span::after {
    background: #febd81
}

.contact__input input,
.contact__input textarea {
    display: block;
    width: 100%;
    max-width: 368px;
    margin: 0 auto .875rem;
    border: .0625rem solid #e0e0e0;
    border-radius: .625rem;
    padding: .625rem 1.25rem .5rem;
    font-size: 1.125rem;
    line-height: 2rem;
    outline: 0px;
    resize: none
}

.contact__input input::placeholder,
.contact__input textarea::placeholder {
    color: #bdbdbd
}

.contact__button {
    border: none;
    outline: 0px;
    width: 100%;
    max-width: 368px;
    margin-top: 1.875rem
}

.contact__info {
    border-radius: .625rem;
    background: #ffd9b6 url("./images/info-bg.png") no-repeat center center;
    background-size: cover;
    padding: 1.875rem
}

@media(min-width: 62em) {
    .contact__info {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 490px;
        padding: 12.5rem 1.875rem 3.5rem
    }
}

@media(min-width: 75em) {
    .contact__info {
        width: 590px;
        padding: 6.25rem 1.875rem 3.5rem
    }
}

@media(min-width: 87.5em) {
    .contact__info {
        width: 664px
    }
}

.contact__list {
    display: flex;
    align-items: center;
    justify-content: center
}

@media(min-width: 62em) {
    .contact__list {
        justify-content: flex-end
    }
}

.contact__list__item:not(:last-child) {
    margin-right: 2.5rem
}

.contact__list__link {
    display: flex;
    width: 3.125rem;
    height: 3.125rem;
    background: var(--white);
    color: #ffd9b6;
    font-size: 1.5625rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%
}

@media(max-width: 61.9375em) {
    .contact__column {
        display: none
    }
}

.contact__column img {
    position: relative;
    z-index: 800;
    border-radius: .625rem .625rem 0 .625rem
}

.contactInfo {
    padding-top: 4.125rem;
    padding-bottom: 4.125rem;
    background: var(--darkBrown) url("./images/contact-bg.png") no-repeat center center;
    background-size: cover
}

.contactInfo__container {
    position: relative;
    display: grid;
    gap: 3.125rem 1.875rem;
    justify-content: space-between
}

@media(min-width: 48em) {
    .contactInfo__container {
        grid-template-columns: 1fr 1fr
    }
}

@media(min-width: 62em) {
    .contactInfo__container {
        grid-template-columns: 400px 400px
    }
}

.contactInfo__line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 330px;
    border: 2px dashed #febd81;
    transform: translate(-50%, -50%)
}

@media(max-width: 47.9375em) {
    .contactInfo__line {
        display: none
    }
}

.contactInfo__title {
    color: var(--white);
    font-family: var(--subtitleFont);
    font-size: 3.375rem;
    line-height: .834;
    margin-bottom: .625rem
}

.contactInfo__sac:hover{
    color: #febd81;
}

.contactInfo__phone:hover{
    color: #febd81;
}

.contactInfo__text {
    color: var(--white);
    font-size: 1.125rem;
    line-height: 2rem
}

.contactInfo__text a{
    color: #febd81;
}

.contactInfo__sac {
    color: var(--white);
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 2rem;
    display: flex;
    align-items: center;
    margin-top: 1.75rem
}

.contactInfo__sac span {
    font-size: 2rem;
    margin-right: .5rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.contactInfo__adress {
    display: flex;
    align-items: flex-start;
    font-size: 2rem;
    color: var(--white)
}

.contactInfo__adress svg {
    flex-shrink: 0
}

.contactInfo__adress span {
    font-size: 1.125rem;
    line-height: 2rem;
    margin-left: .5rem
}

.contactInfo__phone {
    color: var(--white);
    font-size: 1.125rem;
    line-height: 2rem;
    display: flex;
    align-items: center
}

.contactInfo__phone span {
    font-size: 1.625rem;
    margin-right: .125rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.sent {
    padding-top: 12.5rem;
    padding-bottom: 12.5rem
}

.sent__title {
    color: var(--brown);
    text-align: center;
    font-family: var(--subtitleFont);
    font-size: 5.625rem;
    line-height: .834
}

.sent__text {
    font-size: 1.125rem;
    line-height: 2rem;
    margin-top: 1.875rem;
    text-align: center;
    margin-bottom: 2.75rem
}

.sent__button {
    margin: 0 auto
}

.whatsapp a {
    display: block;
    padding: 10px 20px;
    background: #25D366;
    color: #fff;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    text-decoration: none;
    font-weight: 600;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.phone-menu{
    background: #571f11;
    position: relative;
    padding: 10px 15px;
    border-radius: 30px;
    color: #fff;
    display: flex;
    align-items: center;
}

.phone-menu svg{
    color: #fff;
    width: 30px;
    border-radius: 50px;
}

.menu__link span.phone-menu a{
    color: #fff;
}

.menu-divider {
    display: none;
    margin-right: 1rem;
}

@media (min-width: 75em) {
    .menu-divider {
        display: block;
        margin-right: 45px;
    }
}

.stores {
    padding-top: 60px;
    padding-bottom: 60px;
    background: var(--bg);
    margin-bottom: 60px;
    position: relative;
}

.stores__title {
    color: var(--black);
    font-size: 1.125rem;
    line-height: 2rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: center;
}

.stores__input {
    max-width: 740px;
    margin: 0 auto 60px;
    position: relative;
}

.stores__input input {
    display: block;
    width: 100%;
    border: 0.0625rem solid #e0e0e0;
    border-radius: 0.625rem;
    padding: 0.625rem 1.25rem 0.5rem;
    font-size: 1.125rem;
    line-height: 2rem;
    outline: 0px;
    appearance: none;
}

.stores__input button {
    background: none;
    border: none;
    padding: 0;
    font-size: 24px;
    color: var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    appearance: none;
    outline: 0px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 400;
}

.stores__list {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
}

.stores__item {
    position: relative;
    background: var(--white);
    overflow: hidden;
    padding-bottom: 1.5rem;
    background: var(--white);
    border-radius: 0.625rem;
}

.stores__item__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
}

.stores__item__body {
    padding: 15px 20px 20px;
}

.stores__item__title {
    color: var(--black);
    font-family: var(--subtitleFont);
    font-size: 3rem;
    font-weight: 400;
    line-height: .834;
    text-align: center;
    width: 100%;
    display: block;
    margin: 0 auto;
}

.stores__item__title:after {
    content: "";
    display: block;
    width: 100%;
    max-width: 228px;
    height: 0.0625rem;
    background-color: rgba(182, 111, 46, .5);
    margin: 1.25rem auto;
}

.stores__item__info {
    display: grid;
    gap: 8px;
}

.stores__item__info__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
    font-size: .875rem;
    line-height: 1.5;
}

.stores__item__info__item a {
    color: var(--black) !important;
}

.stores__item__info__item span {
    display: flex;
    width: 1.75rem;
    height: 1.75rem;
    background: var(--bg);
    font-size: 1.125rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--brown);
}