.contacts-page-component {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.contacts-page-component__text {
    max-width: 570px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.contacts-page-component__address {
    display: flex;
    gap: 8px;
    align-items: center;
    font-family: "Open Sans", "sans-serif";
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #0E0E0F;
}

.contacts-page-component__contacts {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px 10px;
}

.contacts-page-component__contacts > div {
    min-width: 160px;
    flex-grow: 1;
}

.contacts-page-component__contacts h6 {
    font-family: "Open Sans", "sans-serif";
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    color: #0E0E0F;
    margin-bottom: 12px;
}

.contacts-page-component__contacts a {
    margin-bottom: 10px;
}

.contacts-page-component-contacts__social {
    width: 34%;
}

.contacts-page-component-contacts__tel {
    width: 32%;
}

.contacts-page-component-contacts__website {
    width: 27%;
}

.contacts-page-component__maps {
    max-width: 658px;
    width: 50%;
    height: 561px;
    border-radius: 8px;
    overflow: hidden;
}

.contacts-page-component__maps .maps {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1100px) {
    .contacts-page-component {
        flex-wrap: wrap;
    }  

    .contacts-page-component__text {
        max-width: none;
        width: 100%;
    }

    .contacts-page-component__maps {
        max-width: none;
        width: 100%;
    }
}