.content-wrapper {
    color: var(--text-second-color);
    font-size: 1.2em;
    margin: 1em;

    li {
        list-style: none;
        margin-bottom: 1em;
        margin-left: 2em;
        text-decoration: underline;
        font-size: 1.4em;
    }

    li:first-child {
        text-decoration: none;
    }
}

.contacts-text h3 {
    text-align: center;
    font-size: 1.6em;
    margin-bottom: 1em;
}

#map {
    width: 100%;
    height: 25em;
}

.grid-contacts {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
}

@media (max-width: 1000px) {
    .grid-contacts {
        display: flex;
        flex-direction: column;
    }
}