body {
    /*background: #00172b;*/
    display: flex;
    background-color: white;
    background-image: url('./img/bedrijvencontact_landingbg2.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

body a.domain {
    max-height: calc(50vh - 6rem);
    display: block;
    margin: auto;
}

body a.domain img {
    max-height: calc(50vh - 9rem);
    width: auto;
}

body a.domain:first-child {
    /*margin-bottom: 1.5rem;*/
    position: relative;
}

body a.domain:first-child:after {
    content: '';
    height: 1px;
    width: calc(100% - 16rem);
    background: white;
    z-index: 100;
    position: absolute;
    bottom: -1.5rem;
    left: 8rem;
}

body a.domain:last-child {
    /*margin-top: 1.5rem;*/
}

body .container {
    display: flex;
    /*max-width: calc(500px + 6rem);*/
}

body .container .row {
    margin: auto;
}

body #img-container {
    /*display: flex;*/
    /*flex-wrap: wrap;*/

    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border: 1px solid #CDCDCD;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

body #img-container a img {
    max-height: 150px;
}

body {
    min-height: 100vh;
    /* mobile viewport bug fix */
    min-height: -webkit-fill-available;
}

html {
    height: -webkit-fill-available;
}
@media (max-width: 992px) {
    body #img-container {
        grid-template-columns: 1fr;
    }
}