body {
    background: var(--color-dark-secondary);
}

/* ============ section 1 ============ */
/* .hero-slider {
    background: linear-gradient(-90deg, #834a96 25%, #099e9f 25%, #099e9f 50%, #a1b72a 50%, #a1b72a 75%, var(--color-primary) 75%, var(--color-primary) 100%);
} */
.hero-slider {
    background: var(--color-dark-secondary);
    position: relative;
    border-inline: var(--xs) solid var(--color-dark-secondary);
    max-width: 1920px;
    margin: auto;
}

.hero-slider::before {
    content: "";
    width: calc(100% + var(--xs));
    height: var(--xs);
    background: var(--color-primary);
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
}

.hero-slider .container {
    padding: 0;
    overflow: hidden;
}

.hero-slider h1 {
    position: absolute;
    top: 0;
    right: 50%;
    transform: translate(50%, 0);
    margin: 0;
    padding: var(--xs) var(--lg);
    border-radius: 0 0 var(--xs) var(--xs);
    font-weight: var(--w-bld);
    font-variation-settings: "wght" var(--w-bld), "dots" 4;
    background: var(--color-primary);
}

.hero-slider h1::before,
.hero-slider h1::after {
    content: "";
    position: absolute;
    width: var(--xs);
    height: var(--xs);
    z-index: 0;
}

.hero-slider h1::before {
    left: calc(var(--xs)*-1);
    top: 0;
    background: radial-gradient(var(--xs) at 0% 100%, transparent 98%, var(--color-primary)) 0 0 /100% 100% no-repeat;
}

.hero-slider h1::after {
    right: calc(var(--xs)*-1);
    top: 0;
    background: radial-gradient(var(--xs) at 100% 100%, transparent 98%, var(--color-primary)) 0 0 /100% 100% no-repeat;
}

.hero-slider .imgs {
    display: flex;
    width: 100%;
}


.hero-slider .img {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    border-inline: calc(var(--xs)/2) solid var(--color-dark-secondary);
    transition: padding 0.4s ease;
}

.hero-slider .img a {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-slider .imgs .img:first-child {
    background-color: #834a96;
    border-right: none;
}

.hero-slider .imgs .img:nth-child(2) {
    background-color: #099e9f;
}

.hero-slider .imgs .img:nth-child(3) {
    background-color: #a1b72a;
}

.hero-slider .imgs .img:last-child {
    background-color: var(--color-primary);
    border-left: none;
}

.hero-slider img {
    width: 100%;
    max-width: 400px;
    padding-block: var(--hg);
    margin: auto;
    transition: filter 0.4s ease, transform 0.4s ease;
    user-select: none;
    pointer-events: none;
}


/* ============ section 2 ============ */
.desc-sec {
    background-color: var(--color-dark-secondary);
    border-right: var(--xs) solid var(--color-primary);
    position: relative;
    max-width: 1920px;
    margin: auto;
}

.desc-sec .second-line {
    padding: var(--xs) var(--xs) 0 0;
}

.desc-sec .third-line {
    border: var(--xs) solid var(--color-primary);
    border-left: none;
    position: relative;
}

.desc-sec .back-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.desc-sec .back-shape img {
    height: 100%;
}

.desc-sec .back-shape img.right {
    transform: rotate(180deg);
}

.desc-sec .content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    gap: var(--hg);
}

.desc-sec .logo {
    line-height: 0;
}

.desc-sec .logo img {
    width: 100%;
    max-width: 300px;
    background: var(--color-primary);
}


.desc-sec .button {
    position: relative;
    padding: var(--xs);
    border: var(--xs) solid var(--color-primary);
    border-bottom: none;
    font-weight: var(--w-blk);
    font-variation-settings: "wght" var(--w-bld), "dots" 4;
    font-size: var(--t-sm);
    display: flex;
    flex-direction: row-reverse;
    gap: var(--tn);
    transition: background-color 0.4s ease, color 0.4s ease;
    z-index: 1;
    width: fit-content;
    margin: auto;
    color: var(--color-primary);
    background: var(--color-dark-secondary);
}

.desc-sec .button:hover {
    background: var(--color-primary);
    color: var(--color-dark-secondary);
    transition: background-color 0.4s ease, color 0.4s ease;
}

.desc-sec .button::before {
    font-weight: 400;
}

#desc-sec.desc-sec .button:hover[class^="icon-"]::before {
    margin-left: 0 !important;
    margin-right: var(--tn) !important;
}

/* ============ section 3 ============ */
.gallery-sec {
    background-color: var(--color-dark-secondary);
    position: relative;
    border-left: var(--xs) solid var(--color-primary);
    padding: var(--xs) 0 0 var(--xs);
    max-width: 1920px;
    margin: auto;
}

.gallery-sec .container {
    margin: 0;
    padding: 0 var(--xs) 0 0;
    width: 100%;
}

.gallery-sec .third-line {
    border: var(--xs) solid var(--color-primary);
    border-right: none;
}

.gallery-sec ul {
    display: flex;
    justify-content: space-between;
    gap: var(--xs);
    align-items: stretch;
}

.gallery-sec li {
    width: 100%;
    text-align: center;
    line-height: 0;
    overflow: hidden;
}

.gallery-sec img {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-sec img:hover {
    transform: scale(1.2) rotate(5deg);
    filter: brightness(1.1) contrast(1.1);
}

/* ============ section 4 ============ */
.taste-sec {
    border-right: var(--xs) solid var(--color-primary);
    border-bottom: var(--xs) solid var(--color-primary);
    padding: var(--xs) var(--xs) var(--xs) 0;
    background-color: var(--color-dark-secondary);
    background: url(../images/mojo-back2.png) repeat var(--color-dark-secondary);
    position: relative;
    max-width: 1920px;
    margin: auto;
}

.taste-sec .third-line {
    border-top: var(--xs) solid var(--color-primary);
    border-right: var(--xs) solid var(--color-primary);
}

.taste-sec .product {
    display: flex;
    flex-direction: row;
    position: relative;
}

.taste-sec .image {
    position: relative;
    padding: var(--xs);
    z-index: 1;
}

.taste-sec .image::before {
    content: "";
    width: 25%;
    height: 50%;
    border: var(--xs) solid var(--color-primary);
    border-right: none;
    border-top: none;
    position: absolute;
    right: calc(var(--xs) * -1);
    z-index: 0;
    bottom: 0;
}

.taste-sec .image img {
    position: relative;
    z-index: 1;
}

#space-fruits-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: calc(100% + var(--xs));
    z-index: 2;
}

#space-fruits {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* pointer-events: none; */
}


@media (min-width:769px) {

    /* ============ section 1 ============ */
    .hero-slider img:hover {
        filter: drop-shadow(30px 10px 4px var(--color-dark-secondary));
        transform: scale(1.1) rotate(15deg);
    }

    .hero-slider .img:hover {
        padding-inline: var(--xm);
    }

}

@media (max-width:768px) {

    /* ============ section 1 ============ */
    .hero-slider h1 {
        width: max-content;
        font-size: var(--t-xm);
    }

    .hero-slider a {
        width: max-content;
    }

    .hero-slider .imgs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--xs);
    }

    .hero-slider .img {
        border: none;
    }

    .hero-slider .imgs .img:nth-child(-n+2) img {
        padding-bottom: var(--xs);
    }

    .hero-slider .imgs .img:nth-child(n+3) img {
        padding-top: var(--xs);
    }

    /* .hero-slider .imgs .img:first-child img {
        animation: sd-r-a 10s ease-in-out infinite both;
    }

    .hero-slider .imgs .img:nth-child(2) img {
        animation: sd-l-b 10s ease-in-out infinite both;
    }

    .hero-slider .imgs .img:nth-child(3) img {
        animation: sd-r-b 10s ease-in-out infinite both;
    }

    .hero-slider .imgs .img:last-child img {
        animation: sd-l-a 10s ease-in-out infinite both;
    } */


    /* ============ section 2 ============ */
    .desc-sec .content-container {
        flex-direction: column;
    }

    .desc-sec .logo {
        padding-inline: var(--xm) calc(var(--xm) - var(--tn));
    }

    .desc-sec .desc {
        padding-inline: var(--xs);
    }

    /* ============ section 3 ============ */
    .gallery-sec .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .gallery-sec img {
        height: 250px;
    }



    /* ============ section 4 ============ */
    .taste-sec .product {
        min-height: calc(var(--hg)*2);
    }

    .taste-sec .image img {
        width: 100%;
        max-width: max-content;
    }

}