@charset "utf-8";
/* CSS Document */


.slideshow-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 50% 0 0 0;    
	font-size: 1vw;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide .twd-caption {
    position: absolute;
    bottom: -50%;
    left: 0;
    color: #fff;
    font-size: 200%;
    background-color: rgba(0,0,0,.5);
    transition: bottom 0.5s ease-in-out; /* Add transition effect */
    width: calc(100% - 20px);
    height: calc(30% - 21px);
    padding: 10px;
    border-top: 1px solid #fff;
}

  .slide.active {
    opacity: 1;
  }

  .slide.active .twd-caption {
    bottom: 0%; /* Slide-in to the final position */
  }

.slide .caption-twd-post-title {
	position: absolute;
	top: 50%;
	right: -100%;


	text-transform: uppercase;
	font-size: 180%;
	font-weight: 400;
	letter-spacing: 0.2em;
	color: #FFFFFF;


	background-color: #E0000F;
	transition: right 0.5s ease-in-out; /* Add transition effect */
	height: auto;
	padding: 10px;
	display: inline-block;
	text-align: left;
  }

  .slide.active .caption-twd-post-title {
    right: 0%; /* Slide-in to the final position */
  }

  .slide .caption-twd-post-date {
    position: absolute;
    top: 40%;
    right: 0;
    color: #fff;
    font-size: 150%;
    background-color: rgba(0,0,0,.5);
    transition: top 0.5s ease-in-out; /* Add transition effect */
    width: auto;
    height: auto;
    padding: 10px;
  }

  .slide.active .caption-twd-post-date {
    top: 0%; /* Slide-in to the final position */
  }

  .prev-button, .next-button , .pause-button, .play-button,.slide-counter {
	position: absolute;
	top: 2px;
	z-index: 2;
	background-color: rgba(0,0,0,.5);
	cursor: pointer;
	color: rgba(255,255,255,1);
	border-radius: 5%;

	text-align: center;
	padding: 10px 15px;
	border: 1px solid #FFF;
	font-size: 100%;
	font-family: Arial, Helvetica, sans-serif;
  }

  .prev-button:hover, .next-button:hover , .pause-button:hover, .play-button:hover{ 
    background-color: rgba(255,51,0,0.9);
    color: rgba(255,255,255,1);
    transition: .4s ease-in-out;
  }

  .prev-button {
    left: 1px;
  }

.pause-button {
	left: 43px;
	cursor: pointer;

}
.play-button {
	left: 49px;
	display: none;
	cursor: pointer;

}  
.next-button {
    left: 92px;
 } 
.slide-counter{
	left: 135px;	padding: 11px 15px;



}
@media screen and (max-width: 980px) {
  .slideshow-container {
  
	font-size: 10px;
  }

.slide .twd-caption,.prev-button,.pause-button,.next-button,.play-button,.slide-counter{
 display: none;
}



.slide .caption-twd-post-title {
	font-size: 200%;
	top: 70%;
  }


}