.nopad {
    padding-left: 0 !important;
    padding-right: 0 !important;
}


/*image gallery*/

.image-checkbox {
    cursor: pointer;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 4px solid transparent;
    margin-bottom: 0;
    outline: 0;
}

.image-checkbox img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.image-checkbox.image-checkbox-checked img {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

.image-checkbox input[type="checkbox"] {
    display: none;
}

.image-checkbox-checked {
    border-color: #e57b1c;
}

.image-checkbox .fa {
    position: absolute;
    color: #e57b1c;
    background-color: #fff;
    padding: 10px;
    top: 0;
    right: 15px;
}

.image-checkbox-checked .fa {
    display: block !important;
}

.slide-container {
    width: 100% !important;
}

/* DIAGONAL SPLIT
-------------------------------------------------- */
@media only screen and (min-width: 768px) {
    div.diagonal-split {
        background: linear-gradient(110deg, #f2e0da 50%, #24405d 50%);
    }
}

/* EXPANDING BANNERS
-------------------------------------------------- */

.expanding-parent {
    width: 100%;
    overflow: hidden;
}

.expanding-items {
    display: table;
    width: calc( 100% + 110px);
}

.expanding-items>li>div {
    height: 500px;
}

.expanding-items>li .expanded-d-block h4 {
    width: 80%;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: 0 auto;
}

.expanding-items>li>div::before {
    content: '';
    position: absolute;
    top: 0;
    width: calc(100% + 20px);
    height: 100%;
    transform-origin: 0 0;
    transform: skew(-10deg);
    z-index: -1;
    background: var(--img-bg) no-repeat 50% bottom;
    background-position-x: right;
    background-size: unset;
    box-shadow: -3px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

.expanding-items>li.item1>div::before {
    background-position-x: left;
}

.expanding-items>li.item2>div::before {
    background-position-x: center;
}

.expanding-items>li.item3>div::before {
    background-position-x: right;
}

.expanding-items>li.expanded>div::before {
    background: linear-gradient(90deg, rgba(37,64,93,0.9), rgba(80,131,186,0.7)), var(--img-bg) no-repeat 70% bottom;
    background-position-x: right;
    background-size: unset;
}

.expanding-items>li.item1.expanded>div::before {
    background-position-x: left;
    background-size: unset;
}

.expanding-items>li.item2.expanded>div::before {
    background-position-x: center;
    background-size: unset;
}

.expanding-items>li.item3.expanded>div::before {
    background-position-x: right;
    background-size: unset;
}

.expanding-items>li.expanded {
    color: white;
}

@media only screen and (max-width: 992px) {
    .expanding-items {
        padding: 0px;
    }
    
    .expanding-items>li {
        display: block;
        width: 100%;
        color: white;
    }
    
    .expanding-items li {
        width: 100%;
        transition: width 0ms;
        position: relative;
        left: 0px;
        padding-right: 120px;
        padding-left: 10px;
    }
    
    .item1,
    .item2,
    .item3 {
        width: 100%;
    }
    
    .expanding-items>li>div::before {
        left: -40px;
        background: linear-gradient(90deg, rgba(37,64,93,0.9), rgba(80,131,186,0.7)), var(--img-bg) no-repeat 70% bottom;
    }
    
    .expanding-items .expanded-d-block {
        display: block;
    }
    
    .expanding-items .folded-d-block,
    .expanding-items .squeezed-d-block {
        display: none;
    }
}

@media only screen and (min-width: 992px) {
    .expanding-items>li {
        position: relative;
        display: table-cell;
        width: 33.3333%;
        padding-left: 80px;
        left: -120px;
        transition: width 500ms;
    }
    
    .expanding-items>li .expanded-d-block,
    .expanding-items>li .folded-d-block,
    .expanding-items>li .squeezed-d-block {
        transition: opacity 500ms;
    }
    
    
    
    .expanding-items>li>div::before {
        left: 80px;
    }
    
    .item1.expanded,
    .item2.expanded,
    .item3.expanded {
        width: 60%;
    }
    
    .expanding-items>li.expanded .expanded-d-block {
        width: 550px;
        margin: 0px auto;
    }
    
    .item1.squeezed,
    .item2.squeezed,
    .item3.squeezed {
        width: 20%;
    }
    
    .expanding-items>li.expanded.done .expanded-d-block,
    .expanding-items>li:not(.expanded) .folded-d-block,
    .expanding-items>li:not(.squeezed) .folded-d-block,
    .expanding-items>li.squeezed .squeezed-d-block {
        display: block;
        opacity: 1;
    }
    
    .expanding-items>li:not(.expanded) .expanded-d-block,
    .expanding-items>li:not(.done) .expanded-d-block,
    .expanding-items>li.expanded .folded-d-block,
    .expanding-items>li.squeezed .folded-d-block,
    .expanding-items>li:not(.squeezed) .squeezed-d-block {
        display: none;
        opacity: 0;
    }
}