/*
 * Widget Imagebox Callout
 */
 .widget-imagebox-callout .image-gradient-dark {
     pointer-events: none;
 }
 
.widget-imagebox-callout .image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden;
}
.widget-imagebox-callout .image-wrapper::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    background-image: url("/includes/public/assets/images/gradient-imagebox.png");
    height: 150px;
    left: 0;
    display: block;
}
.widget-imagebox-callout .image-wrapper {
	margin-bottom: 30px;
}
.widget-imagebox-callout .image-wrapper img {
    width: 100%;
    position: relative;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}
.widget-imagebox-callout .image-wrapper:hover img {transform: scale(1.08);}
.widget-imagebox-callout .content {
    position: absolute;
    bottom: 10px;
    width: 100%;
    padding-right: 13px;
    font-family: 'Aroma 2 LT W05 Bold';
    font-weight: 500;
    background-image: url("/includes/public/assets/images/shape-dots-orange.png");
    background-repeat: no-repeat;
    right: 0;
    text-align: right;
    background-position: left 11px center;
    padding-left: 50px;
}
.widget-imagebox-callout .content .title {
    color: #fff;
    font-size: 21px;
    line-height: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.widget-imagebox-callout .content .description {
    display: none;
    font-size: 15px;
    color: #fff;
    line-height: auto;
    line-height: 18px;
}
.widget-imagebox-callout .content .description span {color: #ff9f19;}
@media only screen and (min-width: 40.063em){
    /* > 641px  */ 
    .widget-imagebox-callout .content .description {display: block;}
    .widget-imagebox-callout .content .description .long {display: none;}
    .widget-imagebox-callout .content .title {margin-bottom: 1px;}
}
@media only screen and (min-width: 64.063em) {
    /*  > 1024px  */ 
    .widget-imagebox-callout .content {
        bottom: 20px;
        padding-right: 20px;
        padding-left: 126px;
        background-position: left 30px center;
    }
    .widget-imagebox-callout .content .title {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 4px;
    } 
    .widget-imagebox-callout .content .description {
        font-size: 18px;
        line-height: 23px;
    }
    .widget-imagebox-callout .content .description .short {display: none;}
    .widget-imagebox-callout .content .description .long {display: block;}
}