/* General Styles */

.info-block-background {
    position: relative;
    padding: 5rem 0;
    
}
.info-image-text-wrapper{
    position: relative;
    flex-wrap: wrap;
    justify-content: space-between;
}

.info-block-images .slick-list.draggable , .info-block-images .slick-track{
    height: 100%!important;
}
.row > .info-block-text-wrapper{
    display: flex;
    align-content: center;
    align-items: center;
}
.info-block-text *{
    padding-bottom:10px;
}

.info-block-images-wrapper{
    position: relative;
}
.info-block-images {
    position: relative;
        width: 100%;
    height: 100%;
    
    box-shadow: var(--theme--box-shadow);
}

.info-block-images:hover {
    box-shadow: var(--theme--box-shadow--hover);
}

.info-block-images .info-block-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-block-images .slick-prev:before,
.info-block-images .slick-next:before {
    color: #fff !important;
    opacity: 1;
    font-size: 1rem;
    font-weight: 400;
}

.info-block-images .slick-prev,
.info-block-images .slick-next {
    top: unset;
    bottom: -25px;
    z-index: 1;
    left: unset;
    background-color: var(--theme--primary-color);
    height: 3rem;
    width: 3rem;
}

.info-block-images .slick-prev:focus,
.info-block-images .slick-next:focus {
    background: var(--theme--primary-color);
}

.info-block-images .slick-prev:hover,
.info-block-images .slick-next:hover,
.info-block-images .slick-prev:focus:hover,
.info-block-images .slick-next:focus:hover {
    color: #fff;
    outline: none;
    background: var(--theme--primary-color-80);
}

.info-block-images .slick-prev {
    right: calc(3rem + 2px);
}

.info-block-images .slick-next {
    right: 0px;
}

@media screen and (max-width:991px){
    .info-block-background {
        margin-top: 25%;
    }
    .row > .info-block-images-wrapper{
        margin-top: -30%;
    }
    .row > .info-block-images-wrapper,.info-block-images, .info-block-image{
        width: calc(100vw - var(--theme--gutters) * 2);
    }

    .row > .info-block-images-wrapper,.info-block-images, .info-block-image,.info-block-image-wrapper, .info-block-image.slick-slide {
        height: 400px; 
    }
    .row > .info-block-text-wrapper{
        padding-top: 3rem;
        height: unset;
    }
    body .is-layout-constrained > .info-block-background.alignleft, body .is-layout-constrained > .info-block-background.alignright{
        margin-inline-start: 0;
        margin-inline-end: 0;
        margin-top: 20%;
    }
}



@media screen and (min-width:992px){
    .info-block-background {
         width: 80%; 
    }
    .row > .info-block-images-wrapper{
        width: 50%;
    }
    .row > .info-block-text-wrapper{
        width: 35%;
    }

    
    .info-image-text-wrapper {
        width: 90%;
    }
    .info-image-text-wrapper.image-left{
        left:-10%;
    }

    .info-image-text-wrapper.image-right{
        left: 17%;
        width: 93%;
    }   
   
}
@media screen and (min-width:992px) and (max-width: 1280px) {
    
    .info-image-text-wrapper {
        width: 95%;
    }
    .info-image-text-wrapper.image-left{
        left: -15%;
    }

    .info-image-text-wrapper.image-right{
        left: 11%;
        width: 106%;
    }   
}

