.slideshow {
  position: absolute;
  top: 0px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

@media screen and (max-width:1024px)
{
	.slideshow {
	  top: 70px;
	}
}

.slideshow .slideshow-items {
  position: relative;
  width: 100%;
  height: 580px;
}

@media screen and (max-width:1024px)
{
	.slideshow .slideshow-items {
	  position: relative;
	  width: 100%;
	  height: 255px;
	}
}

.slideshow .item {
  position: absolute;
  width: 100%;
  height: 642px;
}

@media screen and (max-width:1024px)
{
	.slideshow .item {
	  height: auto;
	}
}

.slideshow .item-image-container {
  position: relative;
  width: 100%;
  height: 642px;
}

@media screen and (max-width:1024px)
{
	.slideshow .item-image-container {
	  height: auto;
	}
}

.slideshow .item-image-container::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 101%;
  height: 101%;
  background: #22222A;
  opacity: 0;
  z-index: 1;
}

.slideshow .item-image {
  position: relative;
  width: 100%;
  height: auto;
  opacity: 0;
  display: block;
  /* transition: property name | duration | timing-function | delay  */
  transition: opacity .3s ease-out .45s;
}

.slideshow .item.active .item-image {
  opacity: 1;
}

/*.item.active .item-image-container::before {
  opacity: .8;
}*/

.slideshow .item-description {
  position: absolute;
  top: 182px;
  right: 0;
  width: 50%;
  padding-right: 4%;
  line-height: 1.8;
}

/* Staggered Vertical Items ------------------------------------------------------*/
.slideshow .item-header {
  position: absolute;
  top: 180px;
  left: 19%;
  z-index: 100;
}

@media screen and (max-width:1024px)
{
	.slideshow .item-header {
	  top: 70px;
	  left: 10%;
	}
}

.slideshow .item-header .vertical-part {
  margin: 0 -4px;
  font-family: 'Nunito', sans-serif;
  -webkit-font-smoothing: auto;
  font-size: 60px;
  color: #fff;
}

@media screen and (max-width:1024px)
{
	.slideshow .item-header .vertical-part {
	  font-size: 30px;
	}
}

.slideshow .vertical-part {
  overflow: hidden;
  display: inline-block;
}

.slideshow .vertical-part b {
  display: inline-block;
  transform: translateY(100%);
}

.slideshow .item-header .vertical-part b {
  transition: .5s;
}

.slideshow .item-description .vertical-part b {
  transition: .21s;
}

.slideshow .item.active .item-header .vertical-part b {
  transform: translateY(0);
}

.item.active .item-description .vertical-part b {
  transform: translateY(0);
}

/* Controls ----------------------------------------------------------------------*/
.slideshow .controls {
  position: relative;
  text-align: right;
  z-index: 1000;
}

@media screen and (max-width:1024px)
{
	.slideshow .controls {
	  display: none;
	}
}

.slideshow .controls ul {
  text-align: center;
  list-style: none;
}

.slideshow .controls ul li {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 3px;
  background:#FFFFFF;
  cursor: pointer;
  border-radius:25px;
  opacity: 0.5;
}

.slideshow .controls ul li.active {
  background:#FFFFFF;
  opacity: 1;
}