.contact {
    position: relative;
    height: fit-content;
    overflow: hidden;
    min-height: 100vh;
}

.contact:before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 160vh 59vw 0 0;
    border-color: #FFFFFF transparent transparent transparent;
    position: absolute;
    z-index: 5;
}

.map {
    position: absolute;
    top: 0;
    left: 20%;
    width: 80%;
    height: 100%;
    z-index: 1;

}

.contact__info {
    position: relative;
    width: 65%;
    padding: 2em 3em;
    z-index: 5;
}

.contact__tooltip {
    text-transform: uppercase;
    font-size: .75em;
    color: var(--gray-color);
    font-weight: 500;
}

h1.contact__title {
    margin: 0;
    text-transform: uppercase;
    padding-top: 0.25em;
}

.contact__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    padding: 1em 0;
}

.contact__grid-column {
    width: calc(33.333333% - .7em);
}

.contact__grid-column h3 {
    margin: 0;
    text-transform: uppercase;
    font-size: .875em;
}

.contact__grid-column p {
    margin: 0;
    padding-top: .5em;
    font-size: .875em;
    line-height: 1.32em;
    font-weight: 500;
}

form.form.form--contact {
    background: #000000;
    padding: 2em;
    border-radius: .25em;
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}

form.form.form--contact h3 {
    width: 100%;
    margin: 0;
    color: #FFFFFF;
    font-size: 1em;
    text-transform: uppercase;
}

form.form.form--contact .form__group {
    padding: 0;
    width: 100%;
}

form.form.form--contact .form__group.w-50 {
    width: calc(50% - .5em);
}

form.form.form--contact .form__input {
    padding: .5em;
}

form.form.form--contact input.form__input {
    padding: .75em;
}

form.form.form--contact button.form__submit {
    border-radius: .25em;
}

@media (max-width: 1100px) {
    .map {
        position: relative;
        width: 100%;
        height: 300px;
    }

    .contact:before {
        display: none;
    }

    .contact__info {
        width: 100%;
        background: #FFFFFF;
    }

    .contact__grid-column {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact__info {
        padding: 2em 1.25em;
    }

    form.form.form--contact {
        margin-top: 1em;
    }

    form.form.form--contact .form__group.w-50 {
        width: 100%;
    }
}