/* Homepage Design */
.homepage--banner-content {
    position: absolute;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.homepage--banner {
    position: relative;
    max-width: 1920px;
    margin: auto;
}
.homepage--banner-content-headline {
    color: #fff;
    text-transform: uppercase;
    font-size: 80px;
    margin: 0;
    font-family: 'Heebo';
    font-weight: bold;
    text-align: center;
}
.homepage--banner-content-subheadline {
    font-family: 'Heebo';
    color: #fff;
    font-size: 22px;
    margin-top: 20px;
    font-weight: 300;
}
.homepage--banner-content-buttons {
    display: flex;
    flex-direction: row;
    margin-top: 55px;
    border: 0;
}
.homepage--banner-button {
    background: white;
    color: #000;
    text-transform: uppercase;
    font-size: 20px;
    font-family: 'Heebo';
    font-weight: 500;
    padding: 15px 35px;
    margin: 0 15px;
    border: 0;
    min-height: auto;
    line-height: normal;
    margin-left: 15px !important;
    transition: .3s;
}
.homepage--banner-button:hover {
    text-decoration: none;
    color: white;
    box-shadow: inset 0 -4em 0 0 #000;
}
.homepage--banner-desktop-img {
    width: 100%;
    background-size: cover !important;
    background-position: center center !important;
    padding-top: 56.25%;
}

@media only screen and (max-width: 550px) {
    .homepage--banner-desktop-img {
        display: none;
    }
    .homepage--banner-mobile-img {
        display: block;
    }
    .homepage--banner-content-headline {
        font-size: 40px;
    }
}
@media only screen and (max-width: 550px) {
    .homepage--banner-button {
        background: #000;
        color: #fff;
        text-transform: uppercase;
        font-size: 15px;
        font-family: 'Heebo';
        font-weight: 500;
        padding: 15px 20px;
        margin: 5px 0 !important;
        border: 0;
        min-height: auto;
        line-height: normal;
        margin-left: 0;
        text-align: center;
    }
    .homepage--banner-content-headline {
        font-size: 30px;
    }
    .homepage--banner-content-buttons {
        margin-top: 40px;
        flex-direction: column;
    }
    .homepage--banner-mobile-img {
        display: block;
        object-fit: cover;
        height: 100vh;
        width: 100%;
    }
    .homepage--banner {
        height: 100vh;
    }
    .top-category--usps ul {
        margin: 20px auto;
    }
}
@media only screen and (min-width: 550px) {
    .homepage--banner-desktop-img {
        display: block;
    }
    .homepage--banner-mobile-img {
        display: none;
    }
}

