.image-buttons__headlines {
    padding-bottom: 25px;
}

.image-buttons__title {
    padding-bottom: 25px;
}

.image-button-item {
    margin-top: 15px;
}

.image-button {
    display: flex;
    flex-wrap: wrap;
    background: #0A3051;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.bg-medium-blue .image-button,
.bg-white .image-button {
    background: #071F36;
}

.image-button__img {
    width: 106px;
    border-radius: 30px;
    position: absolute;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.image-button__hover {
    padding:  24px 18px 24px 123px;
}

.image-button__title {
    font-size: 22px;
    line-height: 1.363em;
    margin: 0;
    color: #fff !important;
}

.image-button__cta {
    color: #FFCE07 !important;
    margin-bottom: 0;
}

.image-button__description,
.image-button__hover .image-button__cta {
    font-weight: 200;
}

@media (min-width: 768px) {
    .image-buttons__headlines {
        padding-bottom: 18px;
    }
    
    
    .image-button-item {
        margin-top: 22px;
    }

    
    .image-button__img {
        width: 200px;
    }
    
    .image-button__hover {
        padding:  37px 32px 37px 232px;
    }
    
    .image-button__title {
        font-size: 25px;
    }
    
}

@media (min-width: 1200px) {
    .image-buttons__headlines {
        padding-bottom: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .image-buttons__title {
        width: 776px;
        padding: 0;
    }
    
    
    .image-button-item {
        margin-top: 40px;
    }

    .image-button {
        height: 459px;
    }

    
    .image-button__img {
        width: 100%;
        height: 100%;
        position: relative;
    }
    
    .image-button__hover {
        padding:  32px;
        position: absolute;
        width: 100%;
        bottom: -1px;
        background: linear-gradient(0deg, rgba(7, 31, 54, 0.58) 0%, rgba(7, 31, 54,0.58) 80%);
        backdrop-filter: blur(19px) brightness(1.2);
        border-radius: 30px;
        overflow: hidden;
    }

    .image-button__hidden {
        opacity: 0;
        max-height: 0;
        transition: all 0s ease-in-out;
        display: -webkit-box;
        -webkit-line-clamp: 7;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .image-button:hover .image-button__hidden {
        opacity: 1;
        max-height: 300px;
        transition: all 0.5s ease-in-out;
    }

    .image-button__description {
        margin: 6px 0;
        color: #fff;
    }

    .image-button:hover .image-button__hover {
        background: linear-gradient(0deg, rgba(7, 31, 54, 0.9) 0%, rgba(7, 31, 54,0.9) 80%);
    }
    
}


@media (min-width: 1600px) {
    .image-buttons__headlines {
        align-items: flex-end;
    }

    .image-buttons__headlines .btn {
        margin-bottom: 5px;
    }

    .image-buttons__title {
        width: 832px;
    }
    
    .image-button {
        height: 593px;
    }
    
    .image-button__title {
        font-size: 32px;
        line-height: 1.363em;
        margin: 0;
    }
    
}