/* Контакты */

.contacts-page {
    padding: 50px 0;
}

.contacts-page h1 {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 48px;
    line-height: 6vw;
    text-transform: uppercase;
    color: #1D4A8E;
}

.contacts-page p {
    font-size: 20px;
    line-height: 2.0;
    color: #424146;
    text-indent: 25px;
    padding-bottom: 25px;
}

.contacts-page-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.contacts-page-wrapper p {
    text-indent: 0px;
}

.contacts-page-wrapper a {
    text-decoration: none;
    color: #424146;
}

.contacts-page-wrapper a:hover {
    text-decoration: none;
    color: #3498db;
}

.contacts-page-map {
    flex: 1;
}

.contacts-page-contant {
    flex: 1;
}

/* MOBILE */
@media (max-width: 1024px) {
    .contacts-page-wrapper {
        display: block;
    }
}

@media (max-width: 768px) {
    .contacts-page-wrapper {
        display: block;
    }

    .contacts-page h1 {
        font-size: 5.9vw;
    }

    .contacts-page h2 {
        font-size: 4.9vw;
    }
}

@media (max-width: 576px) {
    .contacts-page-wrapper {
        display: block;
    }
}

@media (max-width: 480px) {
    .contacts-page-wrapper {
        display: block;
    }
}