.section--contacts-intro {
    padding: 0 0 60px 0;
}
.card-contacts-intro {
    padding: 40px;
    border-radius: 30px;
}
.section--contacts-intro .section__content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.card-contacts-intro {
    flex: 0 0 calc(50% - 10px);
}
.card-contacts__list {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 30px;
    font-weight: 500;
    font-size: 18px;
    color: var(--black);
}
.card-contacts__list-item {
    padding: 0;
    display: flex;
    gap: 20px;
}
.card-contacts__icon {
    flex: 0 0 60px;
    display: flex;
    width: 60px;
    height: 60px;
}
.card-contacts__icon svg {
    width: 60px;
}
.card-contacts__content h3 {
    margin-bottom: 2px;

    font-family: var(--font-family);
    font-weight: 500;
    font-size: 17px;
    line-height: 150%;
    color: var(--dop-text-grey);
}
.card-contacts__content p {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
    color: var(--black);
}
.card-contacts__content a {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 150%;
    color: var(--black);
    text-wrap: nowrap;

    transition: color 0.3s ease;
}
.card-contacts__content p span {
    font-weight: 500;
}
.card-contacts__content p>a {
    display: inline-block;
}
.card-contacts__content a:hover {
    color: var(--accent);
}
.section--contacts-map h2{
    margin-bottom: 25px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 30px;
    line-height: 125%;
    text-align: center;
    color: var(--black);
}
.map-container {
    overflow: hidden;
}
.map-container iframe {
    border-radius: 30px;
    overflow: hidden;
}

.map-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px 30px;
    max-width: 910px;
    margin: 0 auto;
    padding: 25px 40px;
    border-radius: 20px;
    background: var(--white);
    margin-bottom: 30px;
}
.map-legend__name {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 125%;
    color: var(--dop-text-grey-2);
}
.map-legend__list {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px 30px;
}
.map-legend__list-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.map-legend__color {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.map-legend__value {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 125%;
    color: var(--black);
}


@media(max-width: 767px) {
    .section--contacts-intro .section__content {
        flex-direction: column;
    }
    .map-legend {
        gap: 20px 30px;
    }
    .map-legend__list {
        gap: 8px 30px;
    }
}

@media(max-width: 575px) {
    .map-legend {
        padding: 25px 35px;
    }
}

