.contact-info__btn {
    margin: 20px 0 0;
}
.contact-info__btn a {
    min-width: 304px;
    justify-content: center;
}
/*Страница контакты*/
.contacts__row {
    display: flex;
    gap: 48px;
}
.contact__col:first-child {
    flex: 0 0 416px;
}
.contact__col:last-child {
    flex: 0 0 calc(100% - 440px);
    height: 467px;
    border-radius: 16px;
    overflow: hidden;
}

.contacts__info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 0px 0 0;
}
.contacts__info-title {
    font-family: 'Inter-Regular', sans-serif;
    font-size: 16px;
    line-height: 28px;
    color: #6C757D;
}
.contacts__info-description {
    font-family: 'Inter-Regular', sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #131619;
}
.contacts__info-link {
    font-family: 'Inter-Regular', sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #131619;
    border-bottom: 1px solid transparent;
    transition: color 0.3s linear, border 0.3s linear;
    text-decoration: none;
}
.contacts__info-link:hover {
    color: #DD1E31;
    border-bottom: 1px solid #DD1E31;
}
.map-container {
    height: 467px;
}


@media screen and (max-width: 1200px) {
    .contacts__info {
        gap: 20px;
    }
    .contact__col:last-child {
        flex: 0 0 calc(100% - 400px);
        margin-left: auto;
    }
    .contacts__info-description {
        font-size: 16px;
    }
}
@media screen and (max-width: 960px) {
    .contacts__row {
        flex-direction: column;
        gap: 30px;
    }
    .map-container {
        width: 100%;
    }
    .contact__col:last-child {
        flex: 0 0 100%;
        margin-left: 0;
    }
}
@media screen and (max-width: 640px) {
    .contacts__info {
        gap: 10px;
    }
    .contacts__info-link {
        font-size: 16px;
    }
    .contacts__info-description {
        line-height: 22px;
    }
}

