/* #################################################################################*/
/*@SECTION: Discover Spice Blend Section Styles*/
/* #################################################################################*/
.discover-spice-blend-section {
    /* position: absolute;
    
    left: 0px;
    width: 100%;
    height: calc(100vh - 60px); */
    top: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    transition: 0.5s ease-in-out;
    z-index: 6;
}

.discover-spice-blend-section.active {
    top: 0px;
}


.discover-spice-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.discover-spice-container .image-section {
    order: 1;
    height: 300px;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discover-spice-container .image-section .img-wrapper {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50px;
    position: relative;
    opacity: 0;
    transform: scale(0.5) translateY(500px);
}

.discover-spice-image-bg {
    height: 100%;
    width: 100%;
    transform: scale(1.2);
    transition: 1s ease-in-out;
    filter: blur(1px);
}

.discover-spice-image-bg.active {
    filter: blur(3px);
    transform: scale(1);
}

.discover-spice-image-particles {
    z-index: 1;
    position: absolute;
    margin: auto;
    height: auto;
    width: 100%;
    filter: blur(2px);
    transform: scale(0);
    transition: 1s ease-in-out;
}

.discover-spice-image-particles.active {
    transform: scale(1);
}

.discover-spice-image {
    z-index: 2;
    height: auto;
    width: 90%;
    position: absolute;
    margin: auto;
    filter: drop-shadow(0px 0px 20px rgb(0, 0, 0));
    transform: scale(0.9);
    transition: 1s ease-in-out;
}

.discover-spice-image.active {
    transform: scale(1);
}

.discover-spice-container .content-section {
    order: 2;
    height: 60%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    align-items: center;
    justify-content: center;
}

.discover-spice-container .content-section .heading-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.discover-spice-container .content-section .heading-wrapper p {
    font-size: 12px;
    font-family: sans-serif;
    color: dimgray;
    opacity: 0;
    transform: scale(0.5) translateY(500px);
}

.discover-spice-container .content-section .heading-wrapper h2 {
    font-size: 25px;
    font-family: sans-serif;
    color: dimgray;
    opacity: 0;
    transform: scale(0.5) translateY(500px);
}

.discover-spice-container .content-section .content-wrapper {
    display: flex;
    color: dimgray;
}

.discover-spice-container .content-section .content-wrapper ul {
    letter-spacing: 0.9px;
    line-height: 1.5;
    font-size: 13px;
    opacity: 0;
    transform: scale(0.5) translateY(500px);
}

.discover-spice-container .content-section .content-wrapper ul li {
    padding: 10px 0px;
}

/* #################################################################################*/
/*@TABLETS:
/* #################################################################################*/
@media screen and (min-width: 599px) and (max-width: 1029px) {
    .discover-spice-container .content-section {
        width: 80%;
    }
}

/* #################################################################################*/
/*@PC:
/* #################################################################################*/
@media screen and (min-width: 1030px) {
    /* .discover-spice-blend-section {
        height: 100vh;
    } */

    .discover-spice-container {
        height: 80%;
        width: 80%;
        flex-direction: row;
    }

    .discover-spice-container .image-section {
        height: 500px;
        width: 500px;
    }

    .discover-spice-container .content-section {
        height: 100%;
        width: 60%;
        padding: 50px;
        align-items: start;
    }

    .discover-spice-container .content-section .heading-wrapper h2 {
        font-size: 32px;
    }

    .discover-spice-container .content-section .content-wrapper ul {
        font-size: 16px;
    }

}