.location
{
    top: 0;
    height: 100lvh;
    width: 100vw;
    z-index: 1;
    display: flex;
    flex-direction: row;
}
.location.tablet.mobile
{
    flex-direction: column;
}

.lounge-room
{
    z-index: 2;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 120lvh;
    border-radius: 30px;
    top: 50lvh;
    left: 50vw;
    transform: translate(-50%, -50%);
    overflow: hidden;
    opacity: 0.00001;
    display: flex;
}

#section-locations .half
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
    line-height: 90%;
}
#section-locations .tablet.mobile .half
{
    width: 100%;
    height: 50%;
}

#section-locations .half.image
{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#section-locations .special
{
    line-height: 100%;
}

.lounge-room .half
{
    padding-left: 0;
}

.bath-room .half.image
{
    background-image: url("../assets/images/locations/bath-room.jpg");
}
.bath-room p
{
    color: #a6a39a;
}
.bath-room .special
{
    color: #6d8e70;
}

.hotellerie .half.image
{
    background-image: url("../assets/images/locations/hotellerie.jpg");
}
.hotellerie p
{
    color: #fcf0df;
}
.hotellerie .special
{
    color: #7ea872;
}

.outdoor .half.image
{
    background-image: url("../assets/images/locations/outdoor.jpg");
    background-position: top left;
}
.outdoor p
{
    color: #75725f;
}
.outdoor .special
{
    color: #e1d5c6;
}

#section-locations .living-room .half.image
{
    background-image: url("../assets/images/locations/living-room.jpg");
    background-position: top right;
}
.living-room p
{
    color: #dbd5cf;
}
.living-room .special
{
    color: #4a5656;
}

#section-locations .lounge-room .half.image
{
    background-image: url("../assets/images/locations/lounge-room.jpg");
}
.lounge-room p
{
    color: #ab8053;
}
.lounge-room .special
{
    color: #dfd6ca;
}

/* Mobile */
@media screen and (max-width: 750px)
{
    .bath-room .half.image
    {
        background-image: url("../assets/images/locations/bath-room-mobile.jpg");
    }
    .hotellerie .half.image
    {
        background-image: url("../assets/images/locations/hotellerie-mobile.jpg");
    }
    .outdoor .half.image
    {
        background-image: url("../assets/images/locations/outdoor-mobile.jpg");
        background-position: top left;
    }
    #section-locations .living-room .half.image
    {
        background-image: url("../assets/images/locations/living-room-mobile.jpg");
        background-position: top right;
    }
    #section-locations .lounge-room .half.image
    {
        background-image: url("../assets/images/locations/lounge-room-mobile.jpg");
    }
}