body {
    background-image: url("./images/brand-vanity-media-bg-desktop.jpg");
    background-size: cover;
    background-position: center left;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

section {
    height: 100vh;
    width: 100vw;
    position: relative;
}

.content {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    height: 100%;
}

img.logo {
    width: 45vw;
    height: auto;
}

.coming-soon {
    color: #fff;
    font-weight: 500;
    text-align: right;
    padding: 10px 5px;
    font-size: 140%
}

.copy {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    width: 100%;
    color: #fff;
    font-weight: 500;
    padding: 10px 5px;

}

.BVSocialNavBar {
    position: fixed;
    bottom: 60px;
    right: 0;
    height: 42px;
    width: 100vw;
    z-index: 1;

    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}

@media (min-width: 1081px) {
    .BVSocialNavBar {
        display: block !important;
        bottom: 30px !important;
        right: 30px !important;
        width: auto !important;
    }
}

@media (min-width: 801px) and (max-width: 1080px) {
    .BVSocialNavBar {
        display: block !important;
        bottom: 30px !important;
        right: 30px !important;
        width: auto !important;
    }
}

.BVContactIcon {
    height: 42px;
    width: 42px;
    text-align: center;
    border-radius: 50%;
    display: block;
    overflow: hidden;
    transition: transform 0.2s linear;
}

.BVContactIcon > * {
    width: 100%;
    height: auto;
}

.BVContactIcon:hover,
.BVContactIcon:focus {
    opacity: 1;
    transform: scale(1.2, 1.2);
}

@media (max-width: 800px) {
    body {
        background-image: url("./images/brand-vanity-media-bg-mobile.jpg");
    }

    img.logo {
        width: 70vw;
        height: auto;
    }
}

.hidden-mobile {
    display: none;
    visibility: hidden;
}

@media (min-width: 1081px) {
    .hidden-mobile {
        display: initial !important;
        visibility: initial !important;
    }
}

.BVServices {
    display: flex;
    max-width: 700px;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

.BVServices > * {
    margin: 0 15px;
    flex-shrink: 0;
}