/* ==========================================================================
   Your custom CSS styles for smartphones and screens smaller than 480 px
   ========================================================================== */


body{
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-style: normal;
}

@media only screen and (max-width: 480px) {
    /* insert styles here */
}

#brand-container {
    display: flex;
    flex-direction: column;
    align-items: center;

    h1 {
        font-family: "Playfair Display SC", serif;
        font-weight: 400;
        font-style: normal;
        font-size: 100px;
        margin: 0px;
    }

    h4 {
        font-size: 24px;
        font-weight: 400;
        font-style: normal;
        margin: 0px;
    }

    #wip {
        position: relative;
        width: 96%;
        max-height: 780px;
        margin-top: 20px;
        border-radius: 80px;
        overflow: hidden;

        #img-container {
            width: 100%;
            max-height: 780px;
            overflow: hidden;
        }

        #img-container:hover {
            overflow-y: scroll;
            img {
                scale: 1.2;
            }
        }

        img {
            width: 100%;
            object-fit: cover;
            object-position: 50%;
            scale: 1;
            transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
        }

        #wip-text {
            display: flex;
            position: absolute;
            font-size: 32px;
            left: 50%;
            bottom: 0%;
            transform: translate(-50%, 0%);
            color: white;
            z-index: 10;
            width: 100%;
            height: 160px;
            justify-content: center;
            align-items: end;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);

            span{
                margin-bottom: 30px;
            }
        }

    }

    #img-container::-webkit-scrollbar {
        display: none;
    }
}



/* ==========================================================================
   Helper classes
   ========================================================================== */

.hidden {
    display: none !important;
    visibility: hidden;
}

/* Clearfix
 * Adding a 'clearfix' class will allow parent elements to contain a floated child element
 */

.clearfix:before,
.clearfix:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.clearfix:after {
    clear: both;
}