.contact-address-container {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 8% 0;
    flex-wrap: wrap;
}

.contact-address-box {
    box-shadow: 0 5px 12px #e6e6e6;
    padding: 30px;
    width: 360px;
    border-radius: 8px;
}

.contact-address-box .title {
    font-weight: bold;
    font-size: .825em;
}

.contact-address-box span.details {
    font-size: .825em;
    color: #9B9B9B;
}

.contact-address-box .link {
    text-decoration: underline;
    color: #9B9B9B;
    /*color: #000;*/
}

.contact-get-in-touch-section {
    position: relative;
    background-image: url(../img/S2BG.png);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 70vh;
    margin-top: 90px;
}

.contact-get-in-touch-section .form-container {
    background-color: #fff;
    width: 50%;
    margin: 0 auto;
    padding: 50px 50px;
    box-shadow: 0 5px 10px lightgray;
    text-align: center;
    border-radius: 8px;
    position: absolute;
    left: 0;
    right: 0;
    top: -100px;
}


.contact-get-in-touch-section input, .contact-get-in-touch-section select, .contact-get-in-touch-section textarea {
    border-radius: 20px;
    padding: 8px 18px;
}
.contact-get-in-touch-section textarea {
    resize: vertical;
    height: 150px;
}


@media (max-width: 425px) {
    .contact-get-in-touch-section .form-container {
        width: 90%;
    }
}