

.dealer {
    display: flex;
    align-items: stretch;
    gap: 24px;
    width: 100%;
}

.dealer__map,
.dealer__contacts {
    width: 100%;
}

.dealer__contacts {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 30%;
}

@media (max-width: 750px) {
    .dealer__contacts {
        max-width: unset;
    }
    .dealer {
        flex-direction: column;
    }
}

.dealer__map ._map {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.dealer__map {
    border-top: 2px solid #0f743c;
    border-bottom: 2px solid #0f743c;
}

.dealer__contacts p,
.dealer__contacts a:not(.btn) {
    display: block;
    margin: 0 0 12px 0;
    width: fit-content;
    transition: .3s;
}

.dealer__contacts .btn {
    width: 100%;
    display: block;
}

.dealer__contacts a:not(.btn):hover {
    color: #0f743c;
}

.dealer__contacts span {
    font-weight: 600;
}

.dealer__contacts-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 32px;
}

.dealer__contacts-social a {
    flex: 0 0 auto;
    display: block;
    width: 25px!important;
    height: 25px;
    margin: 0;
}

.dealer__contacts-social img {
    width: 100%;
    height: 100%;
    filter: contrast(200%) grayscale(100%);
    transition: .3s;
}

.dealer__contacts-social a:hover img {
    filter: none;
}

@media (max-width: 991px) {
    h1.margin-not {
        margin-top: 24px!important;
    }
}