/**
 *  @Copyright
 *
 * @package        J!TinySlideshow for Joomla! 3
 * @author         Viktor Vogel <admin@kubik-rubik.de>
 * @version        3.0.0 - 2018-09-04
 * @link           https://joomla-extensions.kubik-rubik.de/jts-jtinyslideshow
 *
 *  Original script: Slider / Fading JavaScript Slideshow / TinyFader by Michael Leigeber (https://www.leigeber.com/)
 *
 *  @license GNU/GPL
 */

#jtinywrapper {margin:20px auto 10px;}
.jtinysliderbutton {float:left;}
.jtinysliderbutton img {cursor:pointer;}
.jtinysliderbutton img:hover {}
#jtinyslideshow {float:left; border:2px solid #e7e7e7; background:#fff; text-align: left; position: relative;}
#jtinyslides {position:absolute; list-style:none; margin:0px; padding:0px;}
#jtinyslides li {padding: 0px; background: none repeat scroll 0 0 #fff; float: left;}
.jtinypagination {float:right; list-style:none; height:25px; margin:10px 38px 0 32px; padding: 0; position: relative; z-index: 9999;}
.jtinypagination li {float:left; cursor:pointer; padding:5px 8px; background:none repeat scroll 0 0 white; border:1px solid #e7e7e7; margin:0 4px 0 0; text-align:center; color:#222}
.jtinypagination li img {text-align: center;}
.jtinypagination li:hover {background:#afafaf; border:1px solid #e7e7e7; color:#000; padding:5px 8px; margin:0 4px 0 0;}
li.jtinycurrent {border:1px solid #e7e7e7; background:#cfcfcf;}
li.jtinycontent {padding:15px 18px 15px 18px; background:#fff;}
.jtinycontent h2 {font:22px Georgia,Verdana; margin-bottom:15px; color:#036; text-align:center;}
.jtinycontent p {color:#000; text-align: center;}
li.jtinyimage {text-align: center;}


.jtinycontentinner {
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: center;

}

.jtinycontentinner img,
.jtinycontentinner video {

	align-items: center;
	min-height: 1450px;
	max-width: 3000px;
	min-width: 1920px;


}


.jtinycontentinnertext{
    color: #fff;
    list-style: none;
    box-sizing: inherit;
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
    position: absolute;
    bottom: 0%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
	text-align: left;
	margin-left: 5%;
}




/* title styles */
:root{
    --bg-color: #be0f2e;
}



.home-title span{
    position: relative;
    overflow: hidden;
    display: inline-block;
    line-height: 1.2;
}

.home-title span a{
	
		font-size: 30pt;
	font-family: anziano,serif;
	vertical-align: baseline;
	line-height: 1.5;
	text-align: start;
	padding: 0.5rem 1rem 0.8rem;
	color: transparent;
	background: transparent;
	width: 0%;
	animation: aparece-texto 6s cubic-bezier(.77,0,.18,1) forwards;;
	-webkit-font-smoothing: antialiased;
	animation-delay: 2s;
	animation-duration: 12s;
	    display: inline-block;
	
}

.a-trans a{
	color: transparent;
	background: transparent;
}

.home-title span::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background:  var(--bg-color);
	border-bottom: 3px solid #fff;
	color: #000;
	animation: a-ltr-after 3s cubic-bezier(.77,0,.18,1) forwards;
    transform: translateX(-101%);
}

.home-title span::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
	border-bottom: 3px solid #fff;
	visibility:hidden;
	opacity:0;
	transition:visibility 0.3s linear,opacity 0.3s linear;
    animation: a-ltr-before 4s cubic-bezier(.77,0,.18,1) forwards;
    transform: translateX(0);
}

.home-title span:nth-of-type(1)::before,
.home-title span:nth-of-type(1)::after{
    animation-delay: 1s;
}

.home-title span:nth-of-type(2)::before,
.home-title span:nth-of-type(2)::after{
    animation-delay: 5s;
}

@keyframes a-ltr-after{
    0% {transform: translateX(-100%)}
    100% {transform: translateX(101%);
		display: none;
	}
}

@keyframes a-ltr-before{
    0% {transform: translateX(0)}
    100% {transform: translateX(200%)}
 }

@keyframes aparece-texto{
    0% {color: rgba(255,255,255,0.0);}
	10% {color: rgba(255,255,255,0.8);
			background: var(--bg-color);
		}
	90% {color: rgba(255,255,255,1);
		background: var(--bg-color);}
	100% {color: transparent);}


 }
 
 .home-title span a{
	 min-width: 100%;
	 
 }