#fold {
    position: relative;
}

#fold-intro {
    width: 100%;

    color: #ffffff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    position: absolute;

    top: 50%;
    left: 50%;

    text-align: center;

    transform: translate(-50%, -50%);

    z-index: 2;
}

#fold-intro > span {
    font-size: 48px;
    font-weight: normal;

    text-align: center;
    text-transform: uppercase;
}

#fold-background {
    width: 100%;
    height: 100vh;
}

#fold-background > img {
    width: 100%;
    height: 100%;

    filter: brightness(60%);

    object-fit: cover;

    -webkit-user-drag: none;
    user-select: none;
    user-zoom: none;
}

#products {
    width: 100%;

    display: flex;
    flex-direction: column;
    /* gap: 100px; */

    /* padding: 50px 100px; */
    padding: 50px;
}

.product-container {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;

    padding: 50px 0;
}

.product-container:nth-child(even) {
    flex-direction: row-reverse;
}

.product-container > div:first-child {
    display: flex;
}

.product-img { 
    width: 300px;
    height: 300px;

    border-radius: 70% 30% 70% 30% / 30% 70% 30% 70%;

    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    
    padding: 20px;
    
    cursor: pointer;

    overflow: hidden;

    animation: bubble 10.0s ease-in-out infinite;
}

.product-img > img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.product-description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.product-description > * {
    margin: 0;
}

.product-description > h2 {
    font-weight: bold;

    text-transform: uppercase;
}

.product-description > p {
    font-size: 18px;

    line-height: 24px;
}

@media only screen and (max-width: 1200px) {
    #fold-intro > span {
        font-size: 36px;
    }

    #products {
        gap: 50px;

        padding: 50px;
    }

    .product-container {
        gap: 50px;
    }
}

@media only screen and (max-width: 900px) {
    .product-container {
        flex-direction: column;
    }

    .product-container:nth-child(even) {
        flex-direction: column;
    }
}

@media only screen and (max-width: 700px) {
    #fold-intro > span {
        font-size: 28px;
    }

    #fold-logo {
        width: 64px;
        height: 64px;
    }

    #products {
        gap: 20px;

        padding: 20px;
    }

    .product-container {
        gap: 20px;
    }

    .product-img { 
        width: 250px;
        height: 250px;
    }

    .product-description {
        align-items: center;
    }
}

@media only screen and (max-width: 500px) {
    #fold-intro > span {
        font-size: 22px;
    }
}

@keyframes bubble {
    0%, 100% {
        border-radius: 70% 30% 70% 30% / 30% 70% 30% 70%;
    }
    50% {
        /* border-radius: 77% 43% 54% 46% / 40% 38% 62% 60%; */
        border-radius: 30% 70% 30% 70% / 70% 30% 70% 30%;
    }
}