/*-----------------------------------------------------------------------------------*/
/* Banner shortcode
/*-----------------------------------------------------------------------------------*/
.rntp-banner-wrap{
    position: relative;
    overflow:hidden;
}

.rntp-banner-wrap .banner-image{
    display: block;
    position: relative;
    overflow: hidden;
    vertical-align: top;
}
.rntp-banner-wrap .banner-image  img {
    backface-visibility: hidden;
    filter: alpha(opacity=100);
    transition: opacity 1s ease 0s,transform 1s ease 0s;
    width:100%;
}

.rntp-banner-wrap:hover img {
    filter: alpha(opacity=80);
    transform: scale3d(1.1,1.1,1);
}

.rntp-banner-wrap.banner__default{}

.rntp-banner-wrap.banner__default .banner-wrapper-info {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: auto;
}

.rntp-banner-wrap.banner__default .banner-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 35px;
    padding: 0 20px;
    color: #fff;
    margin-bottom: 20px;
    border-radius: 5px;
}

.rntp-banner-wrap.banner__default .title-banner {
    margin: 0 0 12px;
    font-size: 30px;
    color: #fff;
}


.rntp-banner-wrap.banner__alternative .banner-wrapper-info {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    /* height: 100%; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.rntp-banner-wrap.banner__alternative .banner-wrapper-info .info {
    max-width: 100%;
    text-align: center;
    border: solid 1rem rgba(255,255,255,.8);
    height: 100%;
    padding: 1rem;
}

.rntp-banner-wrap.banner__alternative .banner-badge {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
    letter-spacing: 4.8px;
    margin-bottom: 16px;
}

.rntp-banner-wrap.banner__alternative .title-banner {
    margin: 0 0 25px;
    font-size: 30px;
    color: #fff;
}


.rntp-banner-wrap .banner-link.outline {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    letter-spacing: 4.8px;
    padding-bottom: 5px;
    position: relative;
}

.rntp-banner-wrap .banner-link.outline:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 95%;
    height: 1px;
    background: #fff;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.rntp-banner-wrap .banner-link.outline:hover:before {
    width: 50%;
}

.rntp-banner-wrap .banner-link.button {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 3.2px;
    line-height: 45px;
    padding: 0 40px;
    background: #fed700;
    border: none;
}

.rntp-banner-wrap .banner-link.button:hover {
    opacity: 0.5;
}

.rntp-banner-wrap .banner-wrapper-info{
    z-index: 99;
}

.rntp-banner-wrap .banner-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}

.rntp-banner-wrap .banner-subtitle{
    color: #fff;
    margin-bottom:20px;
    line-height: 1.5;
}

.banner-width-25{width:25%}
.banner-width-33{width:33.33%}
.banner-width-66{width:66.66%}
.banner-width-50{width:50%}
.banner-width-75{width:75%}
.banner-width-100, .banner-width-initial{width:100%}

@media all and (max-width: 991px) {
    .rntp-banner-wrap.banner__alternative .banner-wrapper-info,
    .rntp-banner-wrap.banner__default .banner-wrapper-info{
        position: relative;
        top: 0;
        transform: none;
        margin-bottom: 20px;
    }

    .rntp-banner-wrap .banner-image{display: flex;
        position: absolute;
        height: 100%;
    }
    .rntp-banner-wrap .banner-image img{
        object-fit: cover;
    }

}