/*  First container  */
.container {
    height: auto;
    min-height: calc(100vh - 100px);
    padding-top: 8rem;
    overflow: auto;
}

.on-left, .on-right {
    position: relative;
    float: left;
    padding: 0 10px;
}

.on-left p, .on-left address{
    max-width: 650px;
    margin: 0 auto 20px auto;
}
.on-left a{
    text-decoration: none;
    cursor: pointer;
    color: black;
    font-style: normal;
    font-weight: bold;
}
.on-left a:hover{
    text-decoration: underline;
}
.on-right iframe{
    width: 95%;
    max-width: 650px;
    height: 500px;
    margin: 0 auto;
}


@media only screen and (orientation: portrait), screen and (max-width: 1130px) {
    .container{
        padding-top: 0;
        height: auto;
    }
    address{
        white-space: nowrap;
    }
    .half-half > div.on-right, .half-half > div.on-left {
        width: 100%;
        top: 0;
        margin-top: 75px;
        height: auto;
        position: relative;
        transform: none;
    }
    .on-left p, .on-left address{
        width: 95%;
     }

    .on-right iframe{
        width: 100%;
        height: 90vh;
        max-height: 450px;
        max-width: 650px;
        margin: 0 auto;
        display: block;
    }
}
