header {
    margin-top: 180px;
}

main, header {
    width: 100%;
    max-width: 1500px;;
    padding: 1.75em;
    align-items: flex-start;
    gap: 2em;
}

section {
    margin-top: 1em;
    max-width: 100%;
}

section.contact-block{
    width: 100%;
    max-width: 100%;
    gap: 2em;
    align-items: baseline;
    justify-content: space-between;
}

.contact-block p {
    max-width: 450px;;
}

#map {
    width: 100%;
}

.contact-block > div {
    width: 100%;
    flex: 1;
}

main h2, main h3 {
    color: var(--black);
    margin-top: 0;
}

@media screen and (min-width: 844px) {
    section {
        width: 55%;
    }
}

#map {
    position: relative;
}

a.map {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 1.7em));
    font-family: var(--font-Bebas);
    font-size: 1.2em;
    font-weight: 700;
    color: var(--gray);
    text-decoration: none;
}

a.map::after {
    position: absolute;
    content: "";
    bottom: -150%;
    transform: translate(-50%);
    left: 50%;
    border: .7em solid transparent;
    border-color: var(--gray) transparent transparent transparent;
    transition: all .2s ease;
}

a.map:hover::after {
    bottom: -180%;
}