/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 1 version
*/

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

.js-image-button {
    padding-bottom: 11px;
}

.js-image-button .fx-slide {
    display: block;
}

.image-button-item {
    margin-bottom: 14px;
}

.image-button {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    position: relative;
    flex-wrap: wrap;
    overflow: hidden;
    border-radius: 25px;
    background-color: #002D62;
    box-shadow:  0 3px 50px rgba(9,31,64,0.12);
    z-index: 100;
}

.image-button__img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 175px;
    -o-object-fit: cover;
       object-fit: cover;
}

.image-button::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 175px;
    background: linear-gradient(to right,  rgba(0,45,98,0) 0%,rgba(0,45,98,1) 100%); 
}

.image-button__hover {
    position: relative;
    padding: 25px 32px 25px 0;
    width: 166px;
    z-index: 1;
}

.image-button__title {
    color: #fff !important;
    line-height: 1.444em;
}

.image-button__title::after {
    font-weight: normal;
    top: auto;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    bottom: -2px;
}

.image-button__description {
    color: #fff
}

.static-image-button{
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .image-buttons__headline {
        padding-bottom: 14px;
    }
    
    .js-image-button {
        padding-bottom: 44px;
        margin: 0 -16px;
        margin-bottom: 30px;
    }


    .static-image-button .image-button-item {
        margin-bottom: 0;
        padding: 16px;
    }
    
    
    .js-image-button .image-button-item {
        margin-bottom: 0;
        padding: 16px;
    }

    .image-button {
        justify-content: flex-start;
        height: 201px;
        box-shadow:  0 3px 16px rgba(9,31,64,0.12);
    }

    .image-buttons .slick-track{
        padding: 0 30px;
    }
    
    .image-button__img {
        width: 100%;
    }

    .image-button::after {
        width: 100%;
        background: linear-gradient(to bottom,  rgba(0,45,98,0) 0%,rgba(0,45,98,1) 100%); 
        opacity: 0.56;
    }

    .image-button__hover {
        position: absolute;
        padding: 13px 17px;
        width: 100%;
        left: 0;
        bottom: 0;
    }

    .js-image-button{
        position: relative;
        
    }

    .js-image-button .slick-arrow {
        top: auto;
        bottom: 0;
        width: 45px;
        height: 45px;
    }

    .js-image-button .slick-arrow::before {
        font-size: 45px;
    }

    .js-image-button .slick-prev {
        right: 50%;
        bottom: 0;
        margin-left: -51px;
    }

    .js-image-button .slick-next {
        right: 50%;
        bottom: 0;
        margin-right: -51px;
    }
    
}

@media (min-width: 1025px) {
    .image-buttons__headline {
        padding-bottom: 27px;
    }
    
    .js-image-button {
        padding-bottom: 0;
        justify-content: center;
    }

    .image-button-item {
        padding: 0 16px;
    }

    .image-buttons {
        position: relative;
        z-index: 50;
        background-color: white;
        /*box-shadow:  0 3px 50px rgba(9,31,64,0.12);*/
    }


    .static-image-button{
        margin-bottom: 30px;
        justify-content: center;
    }

    .image-buttons .slick-track{
        padding: 30px;
    }
    
}

@media (min-width: 1200px) {

    .image-button {
        height: 307px;
    }

    .image-button__hidden {
        opacity: 0;
        max-height: 0;
        transition: all 0.5s ease-in-out;
    }

    .image-button__hover {
        padding: 17px 26px;
    }

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

    .image-button__title {
        margin-top: 13px;
    }

    .image-button:hover {
        box-shadow:  0 3px 50px rgba(0,61,166,0.5);
    }

    .image-button:hover::after {
        background: linear-gradient(to bottom,  rgba(0,45,98,1) 0%,rgba(0,45,98,1) 100%); 
        opacity: 0.83;
    }
    
}