body {
    background-color: #F3F5F8;
}

.contact-header {
    width: 100%;
    height: 500px;
    margin-top: -90px;
    background: linear-gradient(0deg, rgba(0, 0, 0, .8), rgba(0, 0, 0, 0.70)), url(/img/writing.jpg);
    background-size: cover;
    background-position: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    text-align: center;
    color: #fff;
}

section.contact {
    min-height: 0;
    padding-bottom: 10px;
    display: flex;
    flex-direction: row;
    gap: 50px;
    justify-content: space-between;
}

.box {
    height: 100px;
    padding: .8em;
    box-sizing: border-box;
    flex: 0 0 30%;
    background-color: #fff;
    box-shadow: 0 5px 5px rgba(0, 0, 0, .3);
    border-radius: 5px;
    color: #000;
    display: flex;
    flex-direction: row;
    gap: 1.5em;
    vertical-align: middle;
}

.box .icon {
    font-size: 2em;
    user-select: none;
}

.box .icon img {
    user-select: none;
}

.box .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section.map-section {
    padding-top: 20px;
}

.map {
    background-color: #fff;
    box-shadow: 0 5px 5px rgba(0, 0, 0, .3);
    border-radius: 5px;
    padding: .8em;
    box-sizing: border-box;
}