.contacts-line {
    background: #0fa2d524;
}

.container {
    padding: 40px 0;
    width: 1200px;
    display: flex;
    margin: auto;
    justify-content: space-between;
    align-items: center;
}

.text-block {
    color: #27419E;
}

.organization {
    font-weight: 600;
    margin: 10px 0;
}

.address {
    font-weight: 600;
    margin: 10px 0;
}

.director {
    font-weight: 600;
    margin: 10px 0;
}

.bold-text {
    font-weight: 600;
}

.phone-line {
    display: flex;
    gap: 15px;
}

.telephone {
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 400;
}

.telephone a {
    padding-top: 4px;
}

.email-address {
    font-weight: 400;
    padding-top: 15px;
}

@media screen and (max-width: 576px) {
    .header {
        display: none;
    }

    .container {
        font-size: 75%;
        padding: 15px 0;
        width: 90%;
    }

    .logo-link {
        display: flex;
        width: fit-content;
        justify-content: center;
    }

    .phone-line {
        flex-direction: column;
        gap: unset;
    }

    .footer-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .footer-column-first {
        margin-right: 0;
    }

    .footer-logo-img {
        width: 90%;
        margin-bottom: 0;
    }

    .organization-name {
        font-size: 68%;
        text-align: center;
    }

    .footer-column-second {
        margin-right: 0;
        text-align: center;
    }

    .footer-column-third {
        text-align: center;
    }

    .footer-item {
        margin-top: 0;
    }

}