.first-screen-contacts__items {
    display: flex;
    gap: 48px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFF;
}

.contact-item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.first-screen-contacts {
    max-height: 900px;
}


.first-screen-contacts__container,
.first-screen-contacts__wrapper,
.first-screen-contacts__image {
    height: 100%;
    min-height: fit-content;
}


.first-screen-contacts__wrapper {
    display: flex;
}

.first-screen-contacts__label {
    flex-basis: 716px;
    flex-grow: 1;
    padding: 30px 100px 30px 0;
}

.first-screen-contacts__content {
    flex-basis: 824px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.first-screen-contacts__image {
    display: flex;
    margin-right: -30px;
}

.first-screen-contacts__content-wrapper {
    margin-right: -30px;
    background: #00519b;
    padding: 30px 30px 34px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media screen and (max-height: 1199.98px) {
    .first-screen-contacts__label {
        flex-basis: 396px
    }

    .first-screen-contacts__items {
        gap: 24px;
    }
}

@media screen and (max-width: 1024.98px) {
    .first-screen-contacts {
        min-height: fit-content;
        height: fit-content;
    }
    .first-screen-contacts__label {
        display: none;
    }
    .first-screen-contacts__content {
        flex-basis: 100%;
        width: 100%;
    }

    .first-screen-contacts__container {
        padding: 0;
    }

    .first-screen-contacts__image,
    .first-screen-contacts__content-wrapper {
        margin-right: 0;
    }

    .first-screen-contacts__content-wrapper {
        padding: 30px 24px 30px 24px;
    }

    .first-screen-contacts__image img {
        max-height: 300px;
    }

    .first-screen-contacts__items {
        flex-direction: column;
    }
}
@media screen and (max-width: 599.98px) {
    .first-screen-contacts {
        max-height: 800px;
    }

    .first-screen-contacts__image img {
        min-height: 256px;
        max-height: 100%;
    }

    .first-screen-contacts__content-wrapper {
        padding: 30px 24px 44px 24px;
    }
}




