.contacts {
    margin: 80px 0;
    display: flex;
    justify-content: space-between;
}

.contacts__image {
    padding-right: 15px;
    flex: 1 1 50%;
}

.contacts__w-40 .contacts__image {
    flex: 1 1 40%;
}

.contacts__info {
    flex: 0 0 50%;;
    padding-left: 15px;
}

.contacts__w-40 .contacts__info {
    flex: 0 0 60%;
}

.contacts__title {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #000;
}

.contacts__image img {
    width: 100%;
}

.contacts__links {
    margin-bottom: 30px;
}

.contacts__links a {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.contacts__btn {
    display: block;
    width: 300px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    background: linear-gradient(90deg, #1B2E4D 0%, rgba(27, 46, 77, 0.8) 95.57%);
    line-height: 50px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.contacts__btn:hover {
    background: linear-gradient(90deg, #04132b 0%, rgb(9 16 28 / 80%) 95.57%);
}

.contacts__socials a {
    text-decoration: none;
    display: inline-block;
    margin-right: 15px;
}

.contacts__socials a:last-child {
    margin-right: 0;
}

.contacts__socials a:hover {
    text-decoration: none !important;
    border-bottom: none !important;
}

.contacts__socials img {
    max-width: 40px;
}

.contacts_center {
    text-align: center;
}

.contacts_center .contacts__info,
.contacts_center .contacts__image {
    flex: 1 1 100%;
    padding: 0;
}

.contacts_center .contacts__btn {
    margin: 0 auto 30px auto;
}

@media (max-width: 1024px) {

    .contacts__links a {
        font-size: 18px;
    }
}

@media (max-width: 992px) {

    .contacts__image {
        display: none;
    }

    .contacts {
        text-align: center;
    }

    .contacts__info {
        flex: 0 0 100%;
        padding: 0;
    }

    .contacts__w-40 .contacts__info {
        flex: 0 0 100%;
    }

    .contacts__btn {
        margin: 0 auto 30px auto;
    }
}