.contact__wrapper {
    width: 85vw;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.contact__map {
    height: 400px;
    width: 45%;
}

.contact {
    margin-top: 40px;
    padding: 60px;
    background-color: rgb(59, 59, 59);
    display: flex;
    flex-grow: 1;
    flex-direction: column;
}

.contact__info-wrapper {
    color: white;
    text-align: center;
    font-size: 20px;
    padding: 10px 30px;
    margin: 15px 0;
    display: flex;
    justify-content: center;
}

.contact__info-wrapper img {
    margin: 0 16px -7px 16px;
    max-height: 24px;
}

.mail__link {
    text-decoration: none;
    color: white;
}

input {
    border: none;
}

@media (max-width:700px) {
    .contact__wrapper {
        flex-direction: column;
        width: 100%;
    }
    .contact__map {
        width: 100%;
    }
    .contact {
        padding: 20px;
    }
}