.contacts__inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: stretch;
}

.contacts__info {
    width: 41.2%;
}

.contacts__details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.contacts__label {
    display: block;
    font-size: 14px;
    line-height: normal;
    color: var(--light-blue);
    margin-bottom: 10px;
}

.contacts__value {
    font-size: 24px;
    line-height: normal;
    font-weight: 800;
    text-transform: uppercase;
}

.contacts__value a {
    color: inherit;
}

.contacts__socials {
    display: flex;
    gap: 34px;
    align-items: center;
    margin-top: 54px;
}

.contacts__socials a {
    transition: opacity var(--transition);
}

.contacts__socials a:hover {
    opacity: 0.7;
}

.contacts__socials img {
    display: block;
    height: 48px;
    width: auto;
    object-fit: contain;
}

.contacts__map {
    width: 54%;
    border-radius: 30px;
    overflow: hidden;
    height: 500px;
}

.contacts__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 1200px) {
    .contacts__value {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .contacts__inner {
        flex-direction: column;
    }

    .contacts__info {
        flex: none;
        width: 100%;
        padding-right: 0;
    }

    .contacts__map {
        width: 100%;
        height: 300px;
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .contacts__inner {
        gap: 30px;
    }

    .contacts__value {
        font-size: 18px;
    }

    .contacts__map {
        height: 674px;
        border-radius: 30px;
    }

    .contacts__label {
        font-size: 16px;
    }

    .contacts__socials {
        margin-top: 30px;
        justify-content: center;
    }
}
