* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    color: #333;
}

.wrapper {
    height: 100vh;
    position: relative;
}

.image-container {
    width: 100%;
    height: 100%;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px 10px;
}



.content__header {
    margin-bottom: 10px;
    font-style: italic;
}

.content__subheader {
    font-weight: normal;
    font-style: italic;
    margin-bottom: 10px;
}

.content__subheader--simple {
    font-style: normal;
}

.content__wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.company {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.company:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.company a {
    display: flex;
    justify-content: center;
}

.company__img {
    display: block;
    width: 220px;
}

.company__label {
    text-align: center;
    margin: 10px auto 0 auto;
    display: block;
}

.contact {
    margin-top: 60px;
    text-align: center;
}

.contact__title {
    font-weight: normal;
    font-style: italic;
    margin-bottom: 20px;
}

.contact__link {
    text-decoration: none
}

.contact__link:last-child {
    margin-left: 30px;
}

@media all and (min-width: 768px) {
    .wrapper {
        display: flex;
    }

    .image-container {
        width: unset;
    }

    .content {
        position: static;
        background: rgb(227, 237, 234);
        width: unset;
        flex: 1 1 auto;
    }
}

@media all and (min-width: 1024px) {
    .content__head {
        margin-top: 100px;
    }

    .content__companies {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        margin-top: 30px;
    }

    .company {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;

        margin-right: 20px;
        padding-right: 20px;
        border-right: 1px solid #333;
    }

    .company:last-child {
        margin-right: 0;
        padding-right: 0;
        border-right: none;
    }

    .company__img {
        width: 150px;
    }
}
