.contacts {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 500px;
    border: 1px #EEE solid;
    border-radius: 24px;
}
@media (max-width: 1279px) {
    .contacts {
        grid-template-columns: minmax(0, 1fr);
        border-radius: 0;
        border: unset;
    }
}

.contacts__map {
    height: 800px;
    border-radius: 24px 0 0 24px;
    overflow: hidden;
}
@media (max-width: 1279px) {
    .contacts__map {
        height: 500px;
        border-radius: 0;
    }
}
@media (max-width: 767px) {
    .contacts__map {
        height: 400px;
    }
}

.contacts__details {
    display: flex;
    flex-direction: column;
    gap: 28px 60px;
    padding: 59px 60px;
    justify-content: center;
}
.contacts__title {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 130%;
    color: #00091A;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.contacts__description {
    color: #00091A;
    font-family: "Nunito Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
}
.contacts__description_margin-top {
    margin-top: 10px;
}
@media (max-width: 1279px) {
    .contacts__details {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 50px 40px 0 40px;
    }
    .contacts__title {
        margin-bottom: 24px;
    }
}
@media (max-width: 1023px) {
    .contacts__details {
        padding: 50px 24px 0 24px;
    }
    .contacts__description {
        font-size: 16px;
        line-height: 170%;
    }
}
@media (max-width: 767px) {
    .contacts__details {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }
}