.content-block {
    padding: 80px 40px 40px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slogan-italics {
    font-style: italic;
    font-weight: normal;
    margin-bottom: 5px;
}

.img-right {
    padding: 20px 20px 20px 50px;
}

.img-left {
    padding: 20px 100px 20px 0px;
}

.content-text p {
    margin-top: 30px;
    line-height: 1.5;
    color: #dfe2e8;
    font-size: 16px;
    font-weight: normal;
}

.content-text ul {
    margin-top: 30px;
    line-height: 2;
    color: #dfe2e8;
    font-size: 16px;
    font-weight: normal;
}

.refs-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    background-color: #2ea1b1;
    padding: 100px 20px 100px 20px;
}

.refs-title {
    font-size: 36px;
}

.refs-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
    max-width: 1200px;
}

.ref-item {
    display: flex;
    flex-direction: column;
    width: 23%;
    margin-bottom: 20px;
    text-align: center;
}

.ref-item p {
    line-height: 1.5;
    color: #dfe2e8;
    font-size: 18px;
    font-weight: normal;
}

.ref-item h3 {
    font-size: 26px;
}

.ref-img-wrapper {
    width: 100%;
    height: auto;
}

.ref-img-wrapper img {
    width: 50%;
    height: auto;
    object-fit: cover;
    transition: 0.3s ease;
}

.ref-img-wrapper img:hover {
    scale: 1.1;
    transition: 0.3s ease;
}

@media (max-width: 1080px) {

    .content-container {
        width: 100%;
        box-sizing: border-box;
        padding: 10px 20px 20px 20px;
        max-width: 600px;
    }

    .content-block {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 20px 0 20px 0;
    }

    .content-text {
        width: 100%;
        box-sizing: border-box;
        margin-top: 50px;
    }

    .content-text p {
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.6;
    }

    .content-text ul {
        margin-top: 20px;
        padding-left: 25px;
        font-size: 16px;
        line-height: 1.8;
    }

    .img-right,
    .img-left {
        width: 100%;
        box-sizing: border-box;
        padding: 30px 0 10px 0;
    }

    .content-image img {
        display: block;
        width: 100%;
        height: auto;
        max-width: 600px;
        margin: 0 auto;
    }

    .refs-container {
        margin-top: 30px;
        padding: 60px 20px;
        box-sizing: border-box;
    }

    .refs-title {
        font-size: 32px;
    }

    .refs-wrapper {
        width: 100%;
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }

    .ref-item {
        width: 100%;
        max-width: 450px;
        margin-bottom: 50px;
    }

    .ref-item p {
        font-size: 16px;
    }

    .ref-item h3 {
        font-size: 24px;
    }

    .ref-img-wrapper img {
        width: 120px;
        height: auto;
    }
}