.contact-wrapper {
    display: flex;
    gap: 4rem;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    padding: 5em 2em 2em 8em; /* replaces margin-top */
    box-sizing: border-box;
    height: 100vh;
    margin-top: 7%;
}

.contact-text {
    width: 27%;
}

.contact-text h2 {
    line-height: 1.2em;
}

.contact-text p {
    line-height: 1.5em;
    opacity: 60%;
    margin-top: 1em;
}

.contact-form {
    width: 62%;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 45em;
}

.form-row {
    display: flex;
    gap: 3rem;
}

.form-row input {
    flex: 1;
}

.form-full {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8em;
    border: 1px solid rgba(69, 70, 78, 0.6);
    border-radius: 33px;
    box-sizing: border-box;
    background: transparent;
    width: 100%;
}

.contact-map {
    margin-bottom: 0 !important;
}

.white-background {
    background-color: white;
    padding-top: 3em;
    padding-bottom: 10em;
}