/*---------------------------------------------------------------------
         Background images
-----------------------------------------------------------------------*/
.iq_background_list_wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    background: transparent;
}

.iq_background_list_column {
    min-height: 80vh
}

.iq_background_list_wrapper .iq_background_list_column {
    min-height: 700px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    position: relative;
    z-index: 2;
    border-right: 1px solid rgba(255, 255, 255, .4);
}

.iq_background_list_wrapper.slides-3 .iq_background_list_column {
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

.iq_background_list_wrapper.slides-2 .iq_background_list_column {
    flex: 0 0 50%;
    max-width: 50%;
}

.iq_background_list_wrapper.slides-1 .iq_background_list_column {
    flex: 0 0 100%;
    max-width: 100%;
}

.iq_background_list_wrapper .iq_background_list_column.hover {
    opacity: 1;
    background: transparent;
    backdrop-filter: saturate(90%) blur(5px);
}

.iq_background_list_wrapper .iq_background_list_column.last {
    border-right: 0
}

.iq_background_list_wrapper.one_columns .iq_background_list_column {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%
}

.iq_background_list_wrapper.two_columns .iq_background_list_column {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
}

.iq_background_list_wrapper.three_columns .iq_background_list_column {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    max-width: 33.33%
}

.iq_background_list_wrapper.four_columns .iq_background_list_column {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%
}

.iq_background_list_wrapper .iq_background_list_column .iq_background_list_content {
    display: flex;
    height: 100%;
    padding: 45px 30px;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--color-theme-white);
}

.iq_background_list_content .gericht-btn-container {
    margin-top: 16px;
}

.iq_background_list_wrapper .iq_background_list_column .iq_background_list_content h4 {
    color: var(--color-theme-white);
}

.iq_background_list_wrapper .iq_background_img, 
.iq_background_list_wrapper .iq_background_list_overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    overflow: hidden;
    opacity: 0.5;
    background: transparent;
}

.iq_background_list_wrapper .iq_background_img {
    visibility: hidden;
    opacity: 0;
    transition: all 1s
}

.iq_background_list_wrapper .iq_background_img.hover {
    opacity: 1;
    visibility: visible;
    -ms-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05)
}

.iq_background_list_wrapper .iq_background_img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover
}

.iq_background_list_wrapper .iq_background_list_column:hover .iq_background_list_link, 
.iq_background_list_wrapper .iq_background_list_column.hover .iq_background_list_link {
    max-height: 100%;
    opacity: 1;
    overflow: visible
}

.iq_background_list_wrapper .iq_background_list_content .iq_background_list_link {
    overflow: hidden;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .3s ease;
    max-height: 0;
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
}

.iq_background_list_wrapper .iq_background_list_content .iq_background_list_title {
    transition: transform .5s ease;
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
}

.iq_background_list_wrapper .iq_background_list_column.hover .iq_background_list_title, 
.iq_background_list_wrapper .iq_background_list_column:hover .iq_background_list_title {
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
}

.iq_background_list_wrapper .iq_background_list_column.hover .iq_background_list_link, 
.iq_background_list_wrapper .iq_background_list_column:hover .iq_background_list_link {
    max-height: 100%;
    transform: scaleY(1);
    overflow: visible;
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
}

.iq_background_list_wrapper .iq_background_list_column .iq_background_list_content .gericht-button-container {
    overflow: hidden;
    transform-origin: bottom;
    transition: transform .5s ease;
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    max-height: 0;
}

.iq_background_list_wrapper .iq_background_list_column.hover .iq_background_list_content .gericht-button-container,
.iq_background_list_wrapper .iq_background_list_column:hover .iq_background_list_content .gericht-button-container {
    overflow: visible;
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    max-height: 100%;
}

.iq_background_list_wrapper .iq_background_list_column .iq_background_list_content .gericht-button-container .gericht-button {
    color: var(--color-theme-primary);
}

.iq-background-details {
    bottom: -39%;
    position: relative;
}

.iq_background_list_wrapper .iq_background_list_column.hover .iq-background-details {
    bottom: 0%;
}

.iq_background_list_wrapper .iq_background_list_column i {
    font-size: 45px;
    color: var(--color-theme-white);
    margin-bottom: 15px;
    display: inline-block;
    line-height: normal;
}

.iq_background_list_wrapper .iq_background_list_column i:before {
    font-size: 62px
}

.iq_background_list_wrapper .iq_background_list_column .title-color {
    color: var(--color-theme-white);
}


@media(max-width:1024px) {
    .iq_background_list_wrapper .iq_background_list_column, 
    .iq_background_list_wrapper.slides-3 .iq_background_list_column {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        min-height: auto;
        overflow: hidden;
        border-bottom: 1px solid rgba(255, 255, 255, .4);
    }

    .iq_background_list_wrapper {
        width: 100%;
        display: inline-block;
    }

    .iq_background_list_wrapper .iq_background_list_column.hover .iq_background_list_title, 
    .iq_background_list_wrapper .iq_background_list_column:hover .iq_background_list_title {
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    .iq_background_list_wrapper .iq_background_list_column .iq_background_list_content {
        padding: 30px;
    }
}