@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');

:root {
    --primary-color: #EF4C26;
    --secondary--color: #f5c42f;
    --text-color: #c5bbec;
    --black: #000;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

html::-webkit-scrollbar-track {
    background-color: #FFFFFF;
}

html::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

html::-webkit-scrollbar-thumb {
    background-color: #c9c8c8;
}

html::-webkit-scrollbar-thumb:hover {
    background-color: #b3b2b2;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--black);
    color: var(--black);
    line-height: 1.6;
}

@font-face {
    font-family: 'Rosella';
    src: url(../css/Rosella-Solid.woff2);
}

h1,
h2,
h3,
p {
    margin-bottom: 10px;
}

h1 {
    font-size: 1.8rem;
}

p {
    font-size: 1.4rem;
    font-family: 'Libre Baskerville', serif;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

.mb-5 {
    margin-bottom: 30px;
}

.mt-5 {
    margin-top: 60px;
}


.btn {
    display: inline-block;
    border: 0;
    background: var(--secondary--color);
    color: #fff;
    border-radius: 20px;
    padding: 8px 30px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
    margin-top: 10px;
}

.btn-sm {
    padding: 4px 35px;
    font-size: 1.2rem;
}

.btn:hover {
    transform: scale(0.98);
}

.btn-send {
    cursor: pointer;
    background-color: transparent !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.btn-send:hover {
    background-color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    color: white !important;
}

.btn-order {
    cursor: pointer;
    background-color: transparent !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.btn-order:hover {
    background-color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    color: white !important;
}

.primary-text {
    color: var(--primary-color);
}

.secondary-text {
    color: var(--secondary--color);
}

.fixed-header {
    position: fixed;
    top: -30px;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 1s ease;
    animation: smoothScroll 1s forwards;
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-102px);
    }

    100% {
        transform: translateY(0px);
    }
}

.logo_update {
    width: 150px;
}


header {
    display: flex;
    justify-content: center;
}

header img {
    width: 200px;
    height: 200px;
}

.content {
    display: flex;
    justify-content: end;
    position: fixed;
}

.content img {
    width: 120px;
}

.content-organic {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
}

.content-organic img {
    width: 90px;
    position: absolute;
    bottom: 300px;
    right: 370px;
    animation: fadeIn 1s ease-in both;
    animation-delay: 2s;
}

.content-insignia {
    display: flex;
    justify-content: center;
}

.content-insignia img {
    width: 590px;
    position: absolute;
    bottom: 80px;
    animation: fadeIn 1s ease-in both;
    animation-delay: 3s;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate3d(0, -20%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.section {
    position: relative;
    padding: 0 20px;
}

/* Section Top */
.section-top {
    min-height: 100vh;
    background: url(../images/home_slide_1.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 450px;
    background-attachment: fixed;
    /* animation: fadeIn 1s ease-in both; */
}


.section-top h1 {
    font-size: 70px;
    line-height: 1.3;
}

.section-top .content {
    position: absolute;
    top: 50px;
    right: 20px;
    width: 55%;
}

/* Section Product */
.section-stream {
    width: 100%;
    min-height: 100vh;
    background: black;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    background-attachment: initial;
    position: relative;
}

.section-stream--contain {
    background: white;
    border-radius: 10px;
    width: 95%;
}

.section-stream h2 {
    font-size: 35px;
}


.section-stream .container {
    width: 100%;
    height: 400px;
    background-color: #fff;
    border-radius: 20px;
    border: none;
    margin: 0 auto;
    display: flex;
}

.section-stream-m {
    display: none;
}

.right {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 40px;
}

.right img {
    width: 60px;
}

.right h1 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: 'Rosella';
    font-size: 1.5rem;
    letter-spacing: .2rem;
    text-align: center;
}

.right p {
    font-size: 1.4rem;
    font-style: italic;
    text-align: center;
}


.right_desc {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 40px;
}

.right_desc img {
    margin-top: 30px;
    width: 60px;
}

.right_desc h1 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: 'Rosella';
    font-size: 1.5rem;
    letter-spacing: .2rem;
    text-align: center;
}

.right_desc p {
    font-size: 1.4rem;
    font-style: italic;
    text-align: center;
}

.right_desc p:nth-child(1) {
    font-size: .8rem;
    font-style: normal;
    text-align: center;
    text-transform: uppercase;
}

.right_desc span {
    border: 0.5px solid #000;
    display: inline-block;
    width: 70px;
    padding: 0 10px;
    margin: 0 10px;
}

.left {
    width: 50%;
    height: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1e2113;
    margin: 10px;
}

.history {
    background-color: transparent;
}

.left img {
    height: 80%;
    object-fit: contain;
}

.history>img {
    height: 100%;
    object-fit: contain;
}


.pistachiles-history {
    font-size: 1rem !important;
    font-style: normal !important;
    line-height: 1.3rem;
}

.pistachiles_img--slide2 {
    width: 30px !important;
}

.slides {
    display: flex;
    overflow-x: auto;
    overflow: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.slides::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.slides::-webkit-scrollbar-thumb {
    background: black;
    border-radius: 10px;
}

.slides::-webkit-scrollbar-track {
    background: transparent;
}

.slides>div {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 100%;
    height: auto;
    margin-right: 50px;
    border-radius: 10px;
    /* background: #eee; */
    transform-origin: center center;
    transform: scale(1);
    transition: transform 0.5s;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 100px;
}

.slides>div:target {
    /*   transform: scale(0.8); */
}

.button-right {
    position: absolute;
    left: calc(0% + 70px);
    font-size: 30px;
    z-index: 2;
    color: var(--primary-color);
}

.button-left {
    position: absolute;
    left: calc(50% - 30px);
    font-size: 30px;
    z-index: 2;
    color: var(--primary-color);
}

.btn-order {
    background: white;
    color: #000;
    border: 1px solid #000;
}

.section-stream .content>div,
.section-grid>div {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.section-history-m {
    display: none;
}

/* Footer */
.footer {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 30px;
    margin-top: 20px;
}

.footer ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--primary-color);
}

.footer>ul>li:nth-child(3)>ul {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--primary-color);
}

.footer ul li {
    animation: fadeIn 1s ease-in both;
}

footer ul li:nth-child(1) {
    animation-delay: 2s;
}

footer ul li:nth-child(2) {
    animation-delay: 3s;
}

footer ul li:nth-child(3) {
    animation-delay: 4s;
}

.footer>ul>li:nth-child(3)>ul>li {
    cursor: pointer;
}

.footer>ul>li:nth-child(3)>ul>li:hover {
    color: #007BC0;
    border-bottom: 1px solid #0073B3;
}

.footer_m-l {
    display: none;
}

/* Mobile */
@media (max-width: 700px) {

    .body {
        background-color: #fff;
    }

    .section-top .content,
    .section-stream .play,
    .section-stream .content {
        /* position: static; */
        width: 100%;
    }

    .section-top {
        min-height: 100vh;
        background-size: auto 800px;
        background-position-x: 50%;
        background-position-y: 1%;
    }

    .section-top .content {
        position: absolute;
        top: inherit;
        bottom: 50px;
        right: 0;
        width: 100%;
    }

    .content {
        justify-content: center;
    }

    .section-top .content h1 {
        font-size: 45px;
    }

    .section-history-m {
        display: block;
        min-height: 100vh;
        background: #fff;
        padding: 60px 10px;
        background-attachment: fixed;
    }

    .section-history-m .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .section-history-m .container p:nth-child(2) {
        text-align: center;
    }

    .section-history-m .container img:nth-child(3) {
        width: 100px;
    }

    .section-history-m .container img:nth-child(1) {
        width: 230px;
        margin-bottom: 30px
    }

    .section-stream {
        display: none;
    }

    .section-stream-m {
        display: block;
        min-height: 100vh;
        background: #fff;
        padding: 20px 10px;
        background-attachment: fixed;
    }

    .section-stream-m .container-m {
        width: 100%;
        height: 600px;
        background-color: #1e2113;
        border-radius: 20px;
        border: none;
        display: flex;
    }

    .section-stream-m .container-h {
        width: 100%;
        height: 600px;
        background-color: #ececec;
        border-radius: 20px;
        overflow-x: hidden;
        border: none;
        display: flex;
        justify-content: center;
    }

    .section-stream-m .container-h img {
        width: 100%;
        min-width: 288px;
    }

    .section-stream-m .container-m>.info {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .section-stream-m .container-m>.info p {
        color: #fff;
        font-size: 1.2rem;
        position: relative;
        bottom: -260px;
    }

    .section-stream-m .container-m>.info p:nth-child(1) {
        left: 50px;
        min-width: 100px;
    }

    .section-stream-m .container-m>.info p:nth-child(3) {
        right: 40px;
        min-width: max-content;
    }

    .content-info {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .content-info .box {
        display: flex;
        justify-content: center;
        position: relative;
        width: 90px;
        height: 90px;
        background: #fff;
        border-radius: 50%;
        text-align: center;
        bottom: 40px;
        z-index: 2;
    }

    .content-info img {
        width: 50px;
        object-fit: contain;
    }

    .content-info h1 {
        font-family: 'Rosella';
        text-align: center;
    }

    .content-info p {
        text-align: center;
    }

    .section-stream-m .container-m img {
        width: 250px;
    }

    .container>.right {
        width: 100%;
    }

    .section-stream .play {
        width: 50%;
        display: block;
        margin: 30px auto;
    }

    .section-grid {
        display: block;
        margin-top: 0;
    }


    .content-organic img {
        display: none;
    }



    .content-insignia img {
        display: none;
    }

    .btn-send {
        display: none;
    }

    .footer {
        /* width: 100%; */
        min-height: 100vh;
        background: url(../images/home_slide_1.jpg);
        background-size: auto 880px;
        background-position: right;
        position: initial;
        background-attachment: fixed;

    }

    .footer img {
        width: 100px;
    }

    .footer ul {
        flex-direction: column;
        /* justify-content: flex-end;
        min-height: 80vh; */
    }

    .footer ul:nth-child(1) {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-content: flex-end;
        height: 100vh;

    }

    .footer>ul li:nth-child(1) {
        order: 1;
        position: relative;
        top: 240px;
    }

    .footer>ul li:nth-child(2) {
        order: 3;
        position: fixed;
        bottom: 20px;
    }

    .footer>ul li:nth-child(3) {
        order: 2;
    }

    .footer ul li:nth-child(3) ul {
        align-items: flex-end;
        justify-content: flex-end;
        height: auto;
        position: relative;
        top: 260px;
    }

    .footer ul li:nth-child(3) ul li:nth-child(1) {
        position: static;
        bottom: auto;
    }

    .footer ul li:nth-child(3) ul li:nth-child(2) {
        position: static;
        bottom: auto;
    }

    .footer ul li:nth-child(3) ul li:nth-child(3) {}

    .footer_m-l {
        display: flex;
        justify-content: center;
        align-items: center;

    }

    .footer_m-l img {
        width: 180px;

    }

    .fixed-header {
        position: absolute;
    }


    /* Puntoventa */
    .content-puntoventa {
        padding: 50px 0;
    }

    .content-puntoventa p {
        font-size: 13px;
        width: 80%;
    }

    .content-puntoventa img {
        width: 60%;
        margin-bottom: 20px;
    }
}


@media (max-width: 850px) and (orientation: landscape) {

    .body {
        background-color: #fff;
    }

    .section-top .content,
    .section-stream .play,
    .section-stream .content {
        /* position: static; */
        width: 100%;
    }

    .section-top {
        min-height: 100vh;
        /* background-size: cover; /*
    }

    .section-top .content {
        position: absolute;
        top: inherit;
        bottom: 50px;
        right: 0;
        width:100%;
    }

    .content {
        justify-content: center;
    }
    .section-top .content h1 {
        font-size: 45px;
    }

    .section-history-m
    {
        display: block;
        min-height: 100vh;
        background: #fff;
        padding: 60px 10px;
    }

    .section-history-m .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .section-history-m .container p:nth-child(2) {
        text-align: center;
    }

    .section-history-m .container img:nth-child(3) {
        width: 100px;
    }

    .section-history-m .container img:nth-child(1) {
        width: 230px;
        margin-bottom:30px
    }

    .section-stream {
        display: none;
    }

    .section-stream-m {
        display: block;
        min-height: 100vh;
        background: #fff;
        padding: 20px 10px;
    }

    .section-stream-m .container-m{
        width: 100%;
        height: 600px;
        background-color: #000;
        border-radius: 20px;
        border: none;
        display: flex;
    }

    .section-stream-m .container-m > .info {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .section-stream-m .container-m > .info p{
        color: #fff;
        font-size: 1.2rem;
        position: relative;
        bottom: -260px;
    }

    .section-stream-m .container-m > .info p:nth-child(1){
        left: 50px;
        min-width: 100px;
    }

    .section-stream-m .container-m > .info p:nth-child(3){
        right: 40px;
        min-width: max-content;
    }

    .content-info{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .content-info .box{
        display: flex;
        justify-content: center;
        position: relative;
        width: 90px;
        height: 90px;
        background: #fff;
        border-radius: 50%;
        text-align: center;
        bottom: 40px;
    }

    .content-info img{
        width: 50px;
        object-fit: contain;
    }

    .content-info h1{
        font-family: 'Rosella';
        text-align: center;
    }

    .content-info p{
        text-align: center;
    }

    .section-stream-m .container-m img{
        width: 250px;
    }

    .container > .right {
        width: 100%;
    }

    .section-stream .play {
        width: 50%;
        display: block;
        margin: 30px auto;
    }

    .section-grid {
        display: block;
        margin-top: 0;
    }


    .content-organic img{
        display: none;
    }



    .content-insignia img{
        display: none;
    }

    .btn-send{
        display: none;
    }
    .footer {
        /* width: 100%; */
        min-height: 100vh;
        background: url(../images/home_slide_1.jpg);
        background-size: auto 880px;
        background-position: right;
        position: initial;
    }

    .footer img {
        width: 100px;
    }

    .footer ul {
        flex-direction: column;
        justify-content: flex-end;
        min-height: 80vh;
    }

    .footer ul:nth-child(1) {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-content: flex-end;
        height: 100vh;

    }

    .footer ul li:nth-child(1) {
        order: 1
    }

    .footer ul li:nth-child(2) {
        order: 3
    }

    .footer ul li:nth-child(3) {
        order: 2
    }

    .footer ul li:nth-child(3) ul {
        align-items: flex-end;
        justify-content: flex-end;
        height: auto;

    }

    .footer_m-l {
        display: flex;
        justify-content: center;
        align-items: center;

    }

    .footer_m-l img {
        width: 180px;

    }
}


@media (min-width: 1920px) {
    .section-top {
        min-height: 100vh;
        background-size: auto 1000px;
        background-position-x: 50%;
        background-position-y: 50%;
    }

    .section-stream .container {
        width: 100%;
        height: 800px;
        background-color: #fff;
        border-radius: 20px;
        border: none;
        margin: 40px;
        display: flex;
    }

    .content-insignia img {
        width: 1090px;
        position: absolute;
        bottom: 90px;
        animation: fadeIn 1s ease-in both;
        animation-delay: 3s;
    }

    .content-organic img {
        width: 140px;
        position: absolute;
        bottom: 600px;
        right: 570px;
        animation: fadeIn 1s ease-in both;
        animation-delay: 2s;
    }

}


/* Landscape */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
    .section-top {
        background-position-x: 50%;
        background-position-y: 10%;
    }

    header {
        top: -40px;
    }

    .content-organic img {
        width: 90px;
        position: absolute;
        bottom: 300px;
        right: 200px;
        animation: fadeIn 1s ease-in both;
        animation-delay: 2s;
    }

    .content-insignia img {
        width: 590px;
        position: absolute;
        bottom: 140px;
        animation: fadeIn 1s ease-in both;
        animation-delay: 3s;
    }

}

/* portrait */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
    .section-top {
        background-position-x: 50%;
        background-position-y: 15%;
    }

    header {
        top: -40px;
    }

    .content-organic img {
        width: 90px;
        position: absolute;
        bottom: 420px;
        right: 70px;
        animation: fadeIn 1s ease-in both;
        animation-delay: 2s;
    }

    .content-insignia img {
        width: 590px;
        position: absolute;
        bottom: 190px;
        animation: fadeIn 1s ease-in both;
        animation-delay: 3s;
    }

}

@media only screen and (min-device-width: 1280px) and (max-device-width: 800px) {
    .section-top {
        background-position-x: 50%;
        background-position-y: 50%;
    }

}

@media not all and (min-resolution:.001dpcm) {
    @supports (-webkit-appearance:none) {
        header {
            display: grid;
            place-items: center;
            grid-template-columns: 1fr 1fr 1fr;
        }

        .content {
            position: inherit;

        }



        .section-top .content {
            position: inherit;
            top: 0;
            right: 0;
            width: 0%;
        }


    }
}


#slide1 {
    order: 1;
}

#slide2 {
    display: none;
}

.slides .arrow {
    display: inline-block;
    align-self: center;
    height: 15px;
    width: 12px;
    background-repeat: no-repeat;
    position: relative;
}

#right-arrow {
    z-index: 4;
    position: absolute;
    order: 2;
    margin-left: 10px;
    font-size: 30px;
    color: var(--primary-color);
    left: calc(50% - 40px);
    display: block;
    cursor: pointer;
    font-family: 'Rosella';

    /* background-image: url("../images/arrow-gray-right.svg"); */
}

#left-arrow {
    position: absolute;
    left: calc(0% + 60px);
    font-size: 30px;
    color: var(--primary-color);
    display: none;
    cursor: pointer;
    font-family: 'Rosella';
    /* background-image: url("../images/arrow-gray-left.svg"); */
    z-index: 4;
}

#right-arrow-m {
    z-index: 4;
    position: absolute;
    order: 2;
    margin-left: 10px;
    font-size: 30px;
    font-family: 'Rosella';
    right: calc(0% + 15px);
    top: calc(13% - 10px);
    display: block;
    cursor: pointer;
}

#left-arrow-m {
    position: absolute;
    left: calc(0% + 15px);
    top: calc(13% - 10px);
    font-family: 'Rosella';
    font-size: 30px;
    display: none;
    cursor: pointer;
    z-index: 4;
}

.slide-right {
    animation: slideright 3s forwards;
}

@keyframes slideright {
    from {
        opacity: 100%;
        padding-right: 0px;
        left: 0;
    }

    to {
        opacity: 100%;
        padding-right: 25px;
        left: 1200px;
    }
}

.slide-left {
    animation: slideleft 3s ease-in 1 normal;
}

@keyframes slideleft {
    from {
        opacity: 100%;
        padding-left: 0px;
    }

    to {
        opacity: 100%;
        padding-left: 25px;
    }
}

/* Slides CSS Style */
.containers {
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    overflow-x: hidden;
    border-radius: 20px;
}

.container-m {
    width: 100%;
    margin: 0 auto;
    height: 100%;
    overflow-x: hidden;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    border-radius: 20px;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}