 .contactForm label {
    display: block;
}

.contactForm input,
textarea {
    width: 180px;
}

.contactForm button {
    padding: 5px;
    color: white;
    text-decoration: none;
    padding: 0.50em 0.30em;
    background: #b42226;
    border: none;
    font-family: inherit;
    cursor: pointer;
    font-size: 1em;
    margin-top: 5px;
    transition: 0.3s ease;
}

.contactForm button:hover {
    background: #80181b;
} 

 .extraInfo p {
    margin: 0 !important;
}

.container h2 {
    user-select: none;
}

.imagePlaceHolder {
    display: flex;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}

.imagePlaceHolder img {
    max-width: 80vw;
    max-height: 40vh;
    transition: 0.25s ease;
}

.imagePlaceHolder img:hover {

    filter: brightness(1.1);
}

.mapouter {
    position: relative;
    text-align: right;
    height: 300px;
    width: 300px;
    max-width: 90vw;
}

.gmap_canvas {
    overflow: hidden;
    background: none !important;
    height: 100%;
    width: 100%;
}

.countryFooter {
    display: flex;
    justify-content: space-around;
}

.contactPage {
    display: flex;
    justify-content: space-evenly;
}



@media only screen and (max-width: 600px) {
    .countryFooter {
        flex-direction: column;
    }    

    .contactPage {
        flex-direction: column;
    }

    .contactPage > section:nth-child(2) {
        margin-top: 25px;
    }
}