.modular_section {
    position: relative;
}

.modular_layout {
    position: relative;
    z-index: 2; /* b/c we have overlay*/
}

.cover_bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.fixed_bg {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
}

.parallax_bg {
    background-size: auto;
    background-repeat: no-repeat;
}

.repeat_bg {
    background-repeat: repeat repeat;
    background-size: auto;
}

.overlay_bg {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#header {
    z-index: 100;
    width: 100%;
    position: relative;
    -webkit-transition: top 0.3s ease;
    -moz-transition: top 0.3s ease;
    -o-transition: top 0.3s ease;
    transition: top 0.3s ease;
}

#header.sticky-hidden {
    position: fixed;
    top: -200px;
}

#header.sticky-visible {
    position: fixed;
    top: 0;
}

.parallax {
    /*background-size: auto!important;*/
    background-repeat: no-repeat;
}

/*.ly_carousel .owl-carousel .owl-controls{*/
/*display: none!important; *//* will be dynamic */
/*}*/

.align_left {
    text-align: left;
}

.align_center {
    text-align: center;
}

.align_right {
    text-align: right;
}

/**
 * Video post hover
 */

.sc_recentpost .format-video .social {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    display: block;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 15px;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    pointer-events: none;
}

.sc_recentpost .ly_isotope .social{
    opacity: 1;
    visibility: visible;
    background: transparent;
}

.sc_recentpost .post_format_icon_wrap {
    height: 80px;
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    width: 80px;
}

.sc_recentpost .format-video:hover .social{
    display: block;
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.sc_recentpost .format-video .post_format_image {
    border: 0px solid;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: block;
    height: 80px;
    left: 50%;
    margin: 0 auto;
    position: relative;
    text-align: center;
    width: 80px;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
}

.sc_recentpost .format-video .post_format_image .img-responsive {
    display: block!important;
    left: 50%;
    position: absolute;
    width: 54px;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
}