.leaf-1 {
    position: absolute;
    right: 0px;
    top: -20px;
    animation-name: leaf;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    transition: all .3s;
}

@keyframes leaf {
    0% {
        top: -20px;
    }

    50% {
        top: -60px;
    }

    100% {
        top: -20px;
    }
}

.leaf-2 {
    position: absolute;
    left: -400px;
    bottom: -180px;
    height: 450px;
    filter: blur(3px);
    transform: scaleX(-1);

}

.leaf-3 {
    position: absolute;
    right: 0px;
    top: -130px;
    animation-name: leaf2;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    transition: all .3s;
}

@keyframes leaf2 {
    0% {
        top: -160px;
    }

    50% {
        top: -200px;
    }

    100% {
        top: -160px;
    }
}

.chesee {
    position: absolute;
    right: -50px;
    top: -150px;
}


.arrows {
    display: flex;
    gap: 15px;
}

.modal-bg {
    min-width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    max-height: 100vh;
    background-color: #0003;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    padding: 70px 90px;
    background-color: #ffffff;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.modal-content>img {
    transform: rotate(-7.8deg);
    max-width: 50vw;
    width: 500px;
    height: 600px;
    object-fit: contain;
    object-position: center;
    position: absolute;
    left: -80px;
}

.modal-content .detail {
    width: 50%;
    margin-left: 20px;
}

.modal-content .detail .title {
    color: #61472a;
    font-size: 38px;
    font-weight: 700;
}

.modal-content .detail .text {
    font-size: 18px;
    font-weight: 400;
    color: #0009;
    margin: 10px 0
}

.modal-content .detail .btn {
    color: #61472a;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-content .detail .btn:hover {
    opacity: 0.7;
}

.modal-content .detail .btn img {
    margin-right: 10px;
    margin-top: -5px;
}

.modal-content .close {
    background-color: #DD0B1D;
    border-radius: 100%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 65px;
    top: -22.5px;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-content .close img {
    width: 20px;
    height: 20px;
}

.modal-content .close:hover {
    background-color: #bd0c1b;
}

.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    margin: 10px auto;
    border-radius: 24px;
    padding: 15px;
    background-color: #fff7e8;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookie-content {
    width: calc(var(--container) - 200px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-image {
    width: 200px;
    display: flex;
    align-items: center;
}

.cookie-accept {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.cookie-text {
    flex: 1;
    text-align: justify;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 300;
    line-height: normal;
}

.footer .socials {
    position: unset;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
}

.footer .socials img {
    width: 24px;
    height: 24px;
    margin: 0 5px;
}

.opacity-0 {
    opacity: 0;
}

.lang {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #61472a;
    background-color: #fff;
    border-radius: 100px;
    padding-right: 15px;
    display: flex;
    align-items: center;
}

.en,
.tr {
    display: flex;
    align-items: center;
}

.en img,
.tr img {
    margin-right: 5px;
    cursor: pointer;
}

.catalog {
    background-color: #a19180;
    padding: 0 30px;
    border-radius: 100px;
    height: 45px;
    display: flex;
    align-items: center;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s;
    cursor: pointer;
}

.catalog:hover {
    background-color: #61472a;
}

.progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress .progress-circle {
    position: absolute;
    animation-name: progress_circle;
    animation-iteration-count: infinite;
    animation-duration: 0.6s;
}

.progress .progress-icon {
    position: absolute;
}

@keyframes progress_circle {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.slider-mobile {
    display: none !important;
}

.slider-pc {
    display: flex !important;
}

.btn {
    height: 45px;
    width: fit-content;
    position: relative;
    font-family: "Onest";
    text-transform: uppercase;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    padding: 0 24px;
    text-wrap: nowrap;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.btn img,
.btn svg {
    height: 30px;
    transition: all .6s;
}

.btn-primary {
    background-color: #b2987b12;
    color: #61472a;
}

.btn .btn-text>svg:nth-child(1) {
    margin-right: 12px;
    opacity: 1;
}

.btn:hover .btn-text>svg:nth-child(1) {
    opacity: 0;
}

.btn .btn-text>svg:nth-child(2) {
    margin-left: 12px;
    opacity: 0;
}

.btn:hover .btn-text>svg:nth-child(2) {
    opacity: 1;
}

.btn-text {
    display: flex;
    align-items: center;
    position: absolute;
    left: 20px;
    transition: all 0.3s;
}

.btn:hover .btn-text {
    left: -30px;
}


.btn-primary:hover,
.btn-primary.active {
    background-color: #61472a;
    color: #fff;
}

.btn-secondary {
    background-color: #cba769;
    color: #fff;
}

.btn-secondary:hover,
.btn-secondary.active {
    background-color: #fafafa;
    color: #cba769;
}

.btn-white {
    background-color: #fff;
    color: #1b1c20;
}

.btn-white:hover,
.btn-white.active {
    background-color: #1b1c20;
    color: #fff;
}

.about {
    position: relative;
    z-index: 9;
    background-image: url("/assets/images/about-bg.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center left;
    height: 460px;
    margin-top: -50px;
}

.about .container {
    position: relative;
}

.about .left,
.about .right {
    width: 50%;
    position: relative;
}

.about .left {
    display: flex;
    justify-content: center;
    padding: 50px;
}

.about .title {
    font-family: "Onest";
    text-transform: capitalize;
    color: #61472a;
    font-size: 38px;
    font-weight: 700;
    line-height: 52px;
}

.about .text {
    font-size: 16px;
    color: #0009;
    font-family: "onest";
    font-weight: 300;
    text-align: justify;
    margin-top: 25px;
    margin-bottom: 35px;
}

.about-img {
    width: 100%;
    /* max-width: 460px; */
}

.about .right {
    padding: 50px 0;
    margin-left: 10px;
    object-fit: contain;
}

.category-slider span {
    width: 60%;
    margin-bottom: 5px;
}

section.product {
    padding-top: 75px;
    position: relative;
    z-index: 999;
    background: linear-gradient(0deg, transparent 0%, #c69c6e38 50%, transparent 100%);
}

section.product .container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}

.product-details section.product .container {
    overflow: hidden;
}

section.product .product-category {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.product-category .btn {
    margin: 0 5px;
}

.product-slider,
.product-slide {
    padding-top: 50px;
}

.other-products {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 20px;
}

.product h1 {
    color: #61472a;
    font-family: "Onest";
    font-weight: 700;
    font-size: 38px;
    margin: 0;
    padding: 0;
    margin-right: 30px;
}

.product-slider {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-sliders {
    display: none;
}

.other-product-slider {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.left-arrow,
.right-arrow {
    cursor: pointer;
    transition: all 0.3s;
}

.left-arrow path,
.right-arrow path {
    transition: all 0.3s;
}

.left-arrow:hover path,
.right-arrow:hover path {
    opacity: 1;
}

.owl-stage-outer {}

.product-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.product-slide {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.product-slide .item {
    width: calc(20% - 50px);
    margin: 0 25px;
}

.product-list .item {
    width: calc(33% - 50px);
    background-color: #0000 !important;
}

.product-list .p-img-bg {
    background-color: #b2987b12;
    height: 0;
    width: 0;
    opacity: 0;
    border-radius: 100%;
    position: absolute;
    transition: all 0.3s;

}

.product-list .item:hover .p-img-bg {
    width: 230px;
    height: 230px;
    opacity: 1;
}

.product .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: "Onest";
    font-size: 25px;
    line-height: 30px;
    font-weight: 300;
    color: #1b1c20;
    position: relative;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 15px;
    transition: all 0.3s;
}

.product .item:hover {
    background-color: #fff;
}

.product .item .title {
    height: 80px;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    color: #61472a;
}

.product .item span {
    width: 80%;
    font-size: 16px;
    line-height: 24px;
    color: #61472a;
}

.product .img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.product .hover {
    position: absolute;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transition: all 0.5s;
}

.product .img .product-img {
    width: 80%;
    aspect-ratio: 1/1;
    object-fit: contain;
    object-position: center;
    transition: all 0.5s;
}

.product .item:hover .product-img {
    transform: scale(1.1);
}

.product .item:hover .hover {
    transform: scale(0.7) rotate(-90deg);
    opacity: 1;
}

.product .item .incele {
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.5s;
    font-size: 18px;
    font-weight: 400;
    color: #61472a;
    opacity: 0;
    display: flex;
    align-items: center;
}

.product .item .incele svg {
    width: 24px;
    height: 24px;
    object-fit: contain;
    object-position: center;
    margin-right: 8px;
}

.product .item:hover .incele {
    opacity: 1;
}

section.product .owl-dots {
    display: block !important;
    text-align: center;
    margin-top: 10px;
}

section.product .owl-dot {
    background-color: #1b1c2080;
}

section.product .owl-dot.active {
    background-color: #1b1c20;
}

.about2 {
    margin-top: 0px;
    position: relative;
    z-index: 9;
}

.about2 .left,
.about2 .right {
    flex: 1;
}

.about2 .left {
    display: flex;
    justify-content: center;
    position: relative;
}

.about2 .title {
    font-family: zapfino;
    font-size: 46px;
    color: #cba769;
    line-height: 30px;
    margin-top: 40px;
}

.about2 .text {
    font-size: 20px;
    color: #000;
    font-weight: 300;
    text-align: justify;
    line-height: 30px;
    margin-bottom: 35px;
    padding-right: 50px;
}

.about2 .image {
    width: 100%;
    margin-left: -150px;
    object-fit: contain;
}

.seperator-1 {
    width: 100vw;
    /* height: 450px; */
    position: relative;
    margin-top: -13vh;
    z-index: 9;
}

.seperator-1 img {
    width: 100vw;
    object-fit: cover;
}

.seperator-2 {
    width: 100vw;
    position: relative;
    bottom: 0;
    z-index: 9;
    background: linear-gradient(180deg, #c69c6e00 10%, #c69c6e38 100%);
    display: flex;
    align-items: flex-end;
}

.seperator-2 img,
.seperator-3 img {
    width: 100vw;
    object-fit: contain;
}

.seperator-3 {
    width: 100vw;
    position: relative;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(180deg, #fff0 3%, #CBA76911 100%);
    display: flex;
    align-items: flex-end;
}

footer {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fffd;
    font-size: 16px;
    line-height: 25px;
    font-weight: 300;
    position: relative;
    z-index: 999;
    padding-top: 80px;
    background-color: white;
    background-image: url("/assets/images/footer-bg.svg");
    background-repeat: no-repeat;
    background-size: 70%;
    background-position: center;
}

.footer {
    min-width: 100vw;
    max-width: 100vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.footer .container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
}

.footer .col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

.footer .footer-logo,
.footer .contact {
    flex: 1.5;
    justify-content: flex-start;
}

.footer .contact {
    text-align: left;
    align-items: flex-start;
    padding-bottom: 20px;
}

.footer .address,
.footer .tel,
.footer .mail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.footer .address img,
.footer .tel img,
.footer .mail img {
    margin-top: 0;
    margin-right: 10px;
}

.footer a,
.footer p {
    margin-bottom: 5px;
    color: #61472a;
    opacity: 0.6;
    font-size: 16px;
    font-weight: 400;
}

.footer .copy {
    margin-top: 50px;
}

.footer .menu-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

footer .title {
    text-transform: uppercase;
    font-size: 600;
    font-weight: 600;
    color: #61472a;
}

.footer-bottom {
    min-width: 100vw;
    max-width: 100vw;
    height: 74px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    border-top: dashed 1px #a19180;
}

.footer-bottom .container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #61472a9b;
    font-family: Onest;
    font-size: 16px;
    font-weight: 400;
}

.footer-bottom .links {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom .links img {
    margin-right: 10px;
}

.footer-bottom a {
    margin-right: 40px;
    color: #61472a9b;
}

.footer .contact .certificate {
    margin-top: 20px;
}

.mobil {
    display: none;
}

.documents {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.documents .item {
    width: calc(25% - 20px);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.documents .item .img {
    background-color: #f8f9fa;
    border-radius: 30px;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0;
}

.documents .item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    transition: 0.3s;
}

.documents .item>.title {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 10px 0;
    font-weight: 600;
    transition: 0.3s;
    font-size: 18px;
    line-height: normal;
    font-family: "Onest";
    text-transform: uppercase;
}

.documents .doc-bg {
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: flex;
    background: linear-gradient(30deg, #61472a, transparent 65%);
    transition: all 0.5s;
}

.documents .item:hover .doc-bg {
    opacity: 1;
}

.doc-bg-bt {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    color: #fff;
}

.doc-bg .title {
    color: #fff;
    display: block !important;
    font-size: 16px;
    font-weight: 400;
    flex: 1;
}

.doc-bg .icon {
    width: 46px;
    height: 46px;
    border-radius: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    float: right;
}

.doc-bg img {
    width: 31px !important;
    height: 26px !important;
}

.product-details {
    display: flex;
    flex-direction: column;
    background-image: url("/assets/images/about-bg.svg");
    background-repeat: no-repeat;
    background-size: 45%;
    background-position-x: left;
    background-position-y: 100px;
}

.product-detail {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    max-width: 65vw;
    margin: 0 auto;
    position: relative;
}

.product-detail .left {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0 50px;
}

.product-detail .left>img,
.product-detail .left>a {
    width: 100%;
    object-fit: contain;
}

.product-detail .right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 50px;
}

.product-detail h1 {
    font-size: 38px;
    text-align: left;
    font-weight: 700;
    margin-bottom: 36px;
}

.product-weight {
    font-size: 36px;
    font-weight: 500;
    color: #1b1c20;
    margin-bottom: 30px;
    font-family: "Onest";
}

.product-text {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px;
}

.product-package-info {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    text-transform: uppercase;
    font-family: "Onest";
}

.product-package-info .item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 20px;
}

.product-package-info .item img {
    margin-right: 10px;
}

.product-package-info .item .text {
    display: flex;
    flex-direction: column;
    font-size: 20px;
}

.product-package-info .item .title {
    color: #1b1c2080;
    font-weight: 300;
}

.product-package-info .item .value {
    color: #1b1c20;
    font-weight: 500;
}

.product-detail .graphic {
    height: 60px;
    margin-bottom: 30px;
    display: none;
}

.nutritional-values {
    width: 100%;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    align-items: center;
    justify-content: center;
}

.nutritional-values .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-family: "Onest";
    text-transform: uppercase;
    color: #CBA769;
}

.nutritional-values h1 {
    color: #CBA769;
    text-align: left;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 0;
}

.nutritional-values .list {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 30px 0;
}

.nutritional-values .item {
    background-color: #CBA7691A;
    width: 107px;
    height: 166px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 24px;
    z-index: 9;
    padding: 6px;
    border-radius: 14px;
}

.nutritional-values .item .title {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #CBA769;
    text-align: center;
    word-break: break-word;
    padding: 0 10px;
    text-transform: capitalize;
}

.nutritional-values .item .title span {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.nutritional-values .item .value {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    color: #CBA769;
    background-color: #fff;
    ;
    padding: 0 10px;
    padding-bottom: 5px;
    width: calc(100% - 20px);
    border-radius: 14px;
}

.nutritional-image {
    width: 46%;
    position: absolute;
    right: 0;
    max-height: 100%;
    object-fit: contain;
}

.nutritional-values .info {
    font-size: 22px;
    font-weight: 400;
    text-transform: capitalize;
    max-width: 550px;
}

.contact {
    position: relative;
    z-index: 9;
}

.contact iframe {
    width: 100vw;
    height: 700px;
    margin-top: 100px;
    margin-bottom: -200px;
}

.contact .sep2 {
    position: absolute;
    bottom: -200px;
    z-index: 999;
}

.menu-drop {
    position: relative;
    margin-right: 50px;
    padding-bottom: 10px;
    padding-top: 25px;
}

.dropdown {
    background-color: #fff;
    padding: 25px 15px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 57px;
    width: max-content;
    max-height: 200px;
    flex-wrap: wrap;
    display: none;
    transition: all 0.3s;
}

.dropdown::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #fff;
    transform: rotate(45deg);
    position: absolute;
    top: -5px;
    left: 30px;
}

.dropdown .item {
    margin: 5px 0;
    font-family: Onest;
    font-weight: 500;
    font-size: 16px;
    color: #00000096;
    transition: all 0.3s;
    padding: 0 15px;
    text-transform: uppercase;
}

.dropdown .item:hover {
    color: #61472a;
}

.menu-drop:hover .dropdown {
    display: flex;
}

.page-title-bg img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center;
}

.page-title>.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 9999;
}

.page-title-seperator {
    position: absolute;
    bottom: -10vh;
    z-index: -1;
    width: 100%;
}

.back {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 26px;
    color: #fff;
    transition: all .3s;
}

.back svg {
    margin-right: 7px;
    width: 32px;
    height: 32px;
    object-fit: contain;
    object-position: center;
}

.back:hover {
    opacity: 0.7;
}

.content,
.product-details {
    margin-top: 9vh;
    position: relative;
    z-index: 9;
}

.shop {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    background-color: #E80029;
    text-transform: capitalize;
    cursor: pointer;
    transition: all .3s;
    font-family: "Onest";
    font-weight: 600;
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: 20px;
}

.shop:hover {
    background-color: #232323;
}

.documents .item .title {
    display: none;
}

@media screen and (min-width: 1921px) {
    .content .right {
        position: relative;
        margin-right: -350px;
    }

    .mobil {
        display: none !important;
    }
}

@media screen and (min-width: 1801px) {
    .mobil {
        display: none !important;
    }
}

@media screen and (min-width: 1601px) {
    .documents .item {
        width: calc(25% - 20px);
    }

    .footer .socials {
        position: absolute;
        right: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .footer .title {
        margin-bottom: 15px;
    }

    .footer .copy {
        margin-top: 20px;
    }

    .content .right {
        margin-right: -10%;
    }

    .mobil {
        display: none !important;
    }
}

@media screen and (min-width: 1401px) {
    .documents .item {
        width: calc(25% - 20px);
        margin-bottom: 40px;
        position: relative;
        overflow: hidden;
    }

    .content .right {
        margin-right: -15%;
    }

    .product-list .item {
        width: calc(33% - 30px);
    }

    .page-title h1 {
        font-size: 38px;
        line-height: 85px;
    }

    .product-weight {
        margin-bottom: 10px;
        font-size: 30px;
    }

    .mobil {
        display: none !important;
    }
}

@media screen and (max-width: 1600px) {
    .documents .item {
        width: calc(33% - 20px);
    }

    .seperator-1 {
        margin-top: -6vh;
    }

}

@media screen and (min-width: 1201px) {



    .contact .container {
        width: 70vw;
    }

    .product-sliders {
        display: none;
        width: var(--container);
        overflow: hidden;
    }

    .page-title h1 {
        font-size: 80px;
        line-height: normal;
    }

    .product-detail {
        max-width: 100%;
    }

    .mobil {
        display: none !important;
    }
}

@media screen and (max-width: 1200px) {
    .documents .item {
        width: calc(33% - 20px);
    }

    .lang,
    .socials {
        margin-left: 50px;
        position: relative;
        overflow: hidden;
        opacity: 0;
        transition: all 0.7s;
    }

    .navigation .lang {
        width: 230px;
        background-color: #fff;
        border-radius: 100px;
        position: relative;
        opacity: 1;
    }

    .navigation .socials {
        width: 230px;
        margin-left: 50px;
        margin-top: 20px;
        filter: brightness(0) invert(1);
    }

    .menu {
        display: none !important;
    }

    .logo {
        height: 100px;
        padding: 0;
        margin: 0;
        margin-top: 10px;
    }

    .navbar .lang {
        display: none;
    }

    .product-details {
        background-size: 100%;
        background-position-x: center;
    }

    section.product .owl-dots {
        display: none !important;
    }

    .nutritional-values {
        height: 900px;
        margin: 0;
    }

    .nutritional-values .container {
        align-items: center;
        text-align: center;
    }

    .nutritional-values .list {
        justify-content: center;
    }

    .product-details section.product .container {
        overflow: visible;
    }

    .product-detail {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        margin: 0 auto;
        position: relative;
    }

    .product-detail .left {
        max-width: 70%;
        padding-bottom: 0;
    }

    .product-detail .right {
        padding-top: 0;
    }

    .product-sliders {
        display: flex;
    }

    .pc {
        display: none !important;
    }

    .mobil {
        display: flex;
    }

    .page-title h1 {
        font-size: 38px;
        line-height: 70px;
    }

    .menu,
    .navbar .lang,
    .navbar .socials {
        display: none;
    }

    .navbar .socials {
        filter: brightness(0) invert(1);
    }

    .navbar {
        top: 0;
    }

    .slider-text {
        margin-top: -50px;
    }

    .slider-title {
        font-size: 70px;
        line-height: 70px;
    }

    .slider-subtitle {
        width: 500px;
    }

    .container {
        flex-direction: column;
    }

    .about {
        margin-top: -21%;
    }

    .about .left {
        width: 70%;
    }

    .about .right {
        width: 100%;
    }

    .about .egg {
        right: -100px;
        top: 0;
    }

    .about .mustard {
        left: -50px;
        bottom: 20px;
    }

    .about .title {
        width: 100%;
    }

    section.product .product-category {
        width: calc(100vw - 20px);
        justify-content: flex-start;
        overflow-x: scroll;
        padding-bottom: 10px;
        padding-left: 20px;
    }

    .product .item .btn {
        margin-top: 0;
        opacity: 1;
    }

    .product .img {
        margin-bottom: 15px;
    }

    .product-img {
        transform: scale(1.2);
    }

    .product .item .hover {
        transform: scale(0.7) rotate(-90deg);
        opacity: 1;
        z-index: -1;
    }

    .product .item .title {
        font-size: 22px;
        line-height: 24px;
        height: 60px;
        font-weight: 800;
    }

    .product-category .btn {
        background-color: #1b1c20;
        color: #fff;
    }

    .product-category .btn.active {
        background-color: #cba769;
    }

    .about2 {
        margin: 0;
        position: relative;
        z-index: 10;
    }

    .about2 .left {
        flex: none;
        width: 70%;
    }

    .about2 .right {
        flex: none;
        width: 100%;
    }

    .about2 .image {
        width: 100%;
        margin: 0;
    }

    .tmt1,
    .tmt2 {
        display: none;
    }

    .about2 .right {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .about2 .title {
        line-height: 90px;
        font-size: 30px;
    }

    .about2 .text {
        font-size: 20px;
        color: #000;
        font-weight: 300;
        text-align: justify;
        line-height: 30px;
        margin-bottom: 35px;
        padding-right: 0;
    }

    .col {
        display: none !important;
    }

    .footer {
        padding-bottom: 20px;
    }

    .footer-logo {
        margin-top: -30px;
        margin-bottom: 50px;
    }

    .footer-logo,
    .footer .contact {
        display: flex !important;
        align-items: center;
        text-align: center;
    }

    .footer .copy {
        margin-top: 10px;
    }

    .footer .socials {
        position: unset;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
    }

    .footer .socials img {
        margin: 0 5px;
    }

    .footer .contact * {
        margin-bottom: 5px;
    }

    .footer .container {
        flex-direction: column;
    }

    .footer-bottom {
        height: auto;
        padding: 20px 0;
    }

    .footer-bottom .links {
        width: 100%;
        text-align: left;
        margin: 20px auto;
        flex-wrap: wrap;
    }

    .footer-bottom a {
        margin-right: 10px;
        margin-bottom: 5px;
    }

    .content .right,
    .navigator {
        display: none;
    }

    .product-detail .right {
        padding-left: 0;
        padding-right: 0;
        align-items: center;
    }

    .product-weight {
        margin: 10px 0;
        font-size: 25px;
    }

    .header-slider .item {
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        text-transform: uppercase;
    }

    .slider-text {
        align-items: flex-start;
        margin-bottom: 200px;
    }

    .slider-title {
        font-size: 50px;
        line-height: 50px;
        width: 300px;
        text-align: left;
    }

    .slider-subtitle {
        font-size: 25px;
        line-height: 25px;
        width: 300px;
        text-align: left;
        margin-top: 15px;
    }
}

@media screen and (max-width: 1050px) {
    .pc {
        display: none;
    }

    .mobil {
        display: block;
        margin-bottom: 20px;
    }

    .container {
        --container: 90vw;
    }

    .documents .item .title {
        display: block;
    }

    .seperator-1 {
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .seperator-1 img {
        object-position: center;
    }

    .contact-detail {
        width: 70vw;
        padding: 50px 20px;
        margin-right: 0;
    }

    .contact .form {
        width: 70vw;
        padding: 50px 20px;
        margin: auto;
    }

    .contact .number {
        font-size: 20px;
    }

    .page-title-seperator {
        position: absolute;
        bottom: -2vh;
        z-index: -1;
        width: 100%;
    }

    .about {
        height: fit-content;
        padding: 0px 0;
        background-position-x: center;
        background-position-y: 100px;
        top: 100px;
    }

    .about .container {
        flex-direction: column;
    }

    .about .left,
    .about .right {
        width: 100%;
        margin: 0;
    }


    .col {
        display: none !important;
    }

    .footer {
        padding-bottom: 20px;
        padding-top: 100px;
    }

    .footer-logo {
        margin-top: -30px;
        margin-bottom: 50px;
    }

    .footer-logo {
        display: flex !important;
        align-items: center;
        text-align: center;
    }


    .footer .copy {
        margin-top: 10px;
    }

    .footer .socials {
        position: unset;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
    }

    .footer .socials img {
        margin: 0 5px;
    }

    .footer .contact>* {
        margin-bottom: 5px;
    }

    .footer .container {
        flex-direction: column;
    }

    .footer-bottom .container {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .footer-bottom .container>a {
        width: 100%;
        text-align: center;
    }

    section .product {
        padding: 50px 0;
    }

    .product .item {
        text-align: center;
        background-color: #fff;
        padding: 10px;
    }

    .product-list .item {
        text-align: center;
        background-color: #fff;
        padding: 10px;
        width: calc(50% - 20px);
    }

    .p-img-bg {
        display: none;
    }

    .product .item .title,
    .product .item span {
        width: 100%;
    }

    .product .item .incele {
        opacity: 1;
        margin: auto;
        margin-top: 10px;
    }

    .content,
    .product-details {
        margin-top: 2vh;
        position: relative;
        z-index: 9;
    }

    footer {
        padding: 0;
        margin: 0;
        color: #61472a;
        background-size: 300%;
    }

    .footer .socials {
        opacity: 1;
        margin-left: 0;
    }

    .category-slider .container {
        gap: 20px;
        margin: 50px auto;
        flex-direction: row;
        margin-top: 100px;
        margin-bottom: 0px;

    }

    .category-slider .item {
        padding-left: 0;
    }

    .category-slider .item>* {
        padding-left: 20px;
    }

    .footer .contact {
        display: flex !important;
        align-items: flex-start;
        text-align: left;
        padding-bottom: 0;
    }

    .footer-bottom {
        height: auto;
        padding: 10px 0;
    }

    .footer-bottom .container {
        height: fit-content;
        align-items: center;
    }

    .footer-bottom a {
        width: max-content;
        margin-top: 10px;
    }

    .chesee,
    .leaf {
        display: none;
    }

    .other-products {
        flex-direction: column;
    }

    .other-products h1 {
        text-align: center;
        margin: 0;
    }

    .cookie-content {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .cookie-image {
        display: none;
    }

    .cookie-text {
        padding: 20px;
    }

    .cookie-accept {
        width: auto;
    }

    .dropdown-item {
        font-size: 20px;
    }

    .menu-item {
        font-size: 30px;
    }

    .slider-mobile {
        display: flex !important;
    }

    .slider-pc {
        display: none !important;
    }

    .nutritional-values .list {
        flex-wrap: wrap;
    }

    .nutritional-values .item {
        margin: 0 5px;
        margin-bottom: 10px;
    }

    .contact .container {
        width: var(--container);
        flex-direction: column;
    }

    .contact iframe {
        margin-top: 0;
    }

    .content-area {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 1000px) {
    .content .right {
        margin-right: -15%;
    }

    .product-list .item {
        width: calc(50% - 20px);
    }
}

@media screen and (max-width: 700px) {
    .container {
        --container: 90vw;
    }

    .category-slider .container {
        flex-direction: column;
    }

    .seperator-1 {
        width: 100vw;
        /*height: 100px;*/
        position: relative;
        margin-top: -5vh;
        z-index: 9;
    }

    .nutritional-values h1 {
        width: 100%;
        text-align: center;
    }

    .about .right {
        padding: 0;
    }

    .btn {
        font-size: 20px;
        padding: 8px 30px;
        padding-top: 10px;
    }

    .documents .item {
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }

    .navbar {
        top: 0;
    }

    .navbar .container {
        justify-content: center;
    }

    .container {
        flex-direction: column;
    }

    .about .left,
    .about .right {
        flex: none;
        width: 100%;
    }

    .about .left {
        background-size: 80%;
        background-position: center;
        display: flex;
        justify-content: center;
        padding: 50px;
    }

    .about-img {
        width: 100%;
    }

    .about .egg {
        position: absolute;
        top: 0px;
        height: 200px;
        right: 50px;
        object-fit: contain;
    }

    .about .mustard {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 150px;
        object-fit: contain;
    }

    .about .title {
        text-align: center;
        font-size: 35px;
        line-height: 35px;
    }

    .about .text {
        margin-top: 15px;
    }

    .about .btn {
        margin: auto;
    }

    .about .right {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: 0;
    }

    section.product {
        background-size: cover;
    }

    section.product .product-category {
        width: calc(100vw - 20px);
        justify-content: flex-start;
        overflow-x: scroll;
        padding-bottom: 10px;
        padding-left: 20px;
    }

    .product-slider {
        width: 100vw;
    }

    .product .item .title {
        font-size: 16px;
        line-height: 19px;
        height: 60px;
        font-weight: 600;
    }

    .product .item .incele {
        font-size: 15px;
    }

    .product-category .btn {
        background-color: #1b1c20;
        color: #fff;
    }

    .product-category .btn.active {
        background-color: #cba769;
    }

    .about2 {
        margin: 0;
    }

    .about2 .left,
    .about2 .right {
        flex: none;
        width: 100%;
    }

    .about2 .image {
        width: 100%;
        margin: 0;
    }

    .tmt1,
    .tmt2 {
        display: none;
    }

    .about2 .right {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
    }

    .about2 .title {
        line-height: 90px;
        font-size: 25px;
    }

    .about2 .text {
        font-size: 20px;
        color: #000;
        font-weight: 300;
        text-align: justify;
        line-height: 30px;
        margin-bottom: 35px;
        padding-right: 0;
    }

    .col {
        display: none !important;
    }

    .footer {
        padding-bottom: 20px;
        padding-top: 100px;
    }

    .footer-logo {
        margin-top: -30px;
        margin-bottom: 50px;
    }

    .footer-logo {
        display: flex !important;
        align-items: center;
        text-align: center;
    }


    .footer .copy {
        margin-top: 10px;
    }

    .footer .socials {
        position: unset;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
    }

    .footer .socials img {
        margin: 0 5px;
    }

    .footer .contact>* {
        margin-bottom: 5px;
    }

    .footer .container {
        flex-direction: column;
    }

    .page-title {
        height: 400px;
    }

    .page-title h1 {
        font-size: 35px;
        line-height: 35px;
        margin-top: 60px;
        text-align: center;
    }

    .breadcrumb {
        display: none;
    }

    .navigator {
        display: none;
    }

    .content-area {
        flex: none;
        width: 100%;
        margin-top: 0;
    }

    .content-area h1 {
        text-align: center;
        line-height: 50px;
    }

    .page-gallery {
        width: 100%;
    }

    .gallery-slide {
        overflow: visible;
    }

    h1 {
        font-size: 35px;
    }

    .product-list .btn {
        display: none;
    }

    .product-list .item {
        width: calc(50% - 20px);
        margin-bottom: 20px;
    }

    .product-detail {
        width: 100%;
        flex-direction: column;
    }

    .product-detail .left {
        flex: none;
        background-position: center;
        width: 100%;
        padding: 0;
    }

    .product-detail .left img {
        width: 100%;
    }

    .product-package-info {
        width: 100%;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .product-package-info .item {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }

    .product-package-info .item img {
        margin-right: 15px;
    }

    .nutritional-values {
        height: 900px;
        margin: 0;
    }

    .nutritional-values .list img {
        display: none;
    }

    .nutritional-values .info {
        margin-top: 10px;
    }

    .product-details .content-area {
        margin-bottom: 0;
    }

    .product-details section.product {
        padding-top: 0;
        /*padding-bottom: 170px; */
    }

    .contact iframe {
        margin-top: 0;
    }
}