div.page {
    height: 100%;
    width: 100%;    
    min-width: 800px;
    min-height: 628px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

div.content-container {
    position: absolute;
    min-width: 800px;
    min-height: 500px;
    width: 100%;
    height: calc(100% - 128px);
    top: 128px;
}

div.transp-box-description {
    position: absolute;
    left: 15%;
    height: 70%;
    width: 25%;
    top: 50%;
    transform: translateY(-50%);
    /* font-weight: bold; */
    font-family: "Verdana";
    background-color: rgba(0, 0, 0, 0.7);
    text-align: center;
}

div.transp-box-description:hover{
    background-color: rgba(0, 0, 0, 1);
}

div.intro {
    position: absolute;
    width: 100%;
    height: auto;
    top: 25%;
    transform: translateY(-50%);
}

div.intro h1 {
    color: white;
}

div.intro p {
    color: white;
    padding: 2px;
}

div.intro p, span {
    color: white;
    padding: 0px 10px;
}

div.mapbox {
    position: absolute;
    width: 100%;
    height: 50%;
    left: 0px;
    bottom: 0px;
    background-color: grey;
    text-align: left;
}

div.ContactForm {
    position: absolute;
    right: 15%;
    width: 35%;
    bottom: 10%;
}

div.execution_reply {
    padding: 1px 1px;
    font-weight: bold;
    height: auto;
}

div.execution_reply p {
    text-align: center;
}

input.form-control {
    background-color: white;
    color: black;
    border: 2px solid rgba(0, 0, 0);
}

textarea.form-control {
    background-color: white;
    color: black;
    border: 2px solid rgba(0, 0, 0);
    max-width: 100%;
    resize: none;
    overflow: auto;
    height: 14em;
}

.btn.btn-dark:hover,
.btn.btn-dark:focus,
.btn.btn-dark:active,
.btn.btn-dark.active {
    color: #f2eb30;
    background-color: rgba(0, 0, 0);
    border-color: rgba(0, 0, 0);
}

.btn.btn-dark {
    color:white;
    background-color: rgba(0, 0, 0, 0.8);
    border-color: white;
}

@media (max-aspect-ratio: 1/1) {
    div.transp-box-description {
        position: absolute;
        height: 35%;
        width: 70%;
        top: 12%;
        left: 50%;
        transform: translateX(-50%);
        font-weight: bold;
    }

    div.intro {
        position: absolute;
        width: 50%;
        height: auto;
        left: 0px;
        top: 50%;
    }
    
    div.mapbox {
        position: absolute;
        width: 50%;
        height: 100%;
        left: 50%;
        bottom: 0px;
        text-align: left;
    }

    div.ContactForm {
        position: absolute;
        max-height: 40%;
        width: 70%;
        top: 55%;
        left: 50%;
        transform: translateX(-50%);
    }

    textarea.form-control {
        height: 16em;
    }

}


@supports (-webkit-overflow-scrolling: touch) {
    /* On IOS background should not be fixed, as they get expanded to cover all the page, not just the div */
    div.page {
       background-attachment: scroll;
    }
}