#storytelling.carousel {
    width: 100%;
    height: 700px;
    display: block;   
    overflow: hidden;
    position: relative;
}

#storytelling .carousel-item {
    visibility:visible;
    display: block;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
    -webkit-align-items: center;
    -webkit-justify-content: flex-end;
    position: relative;
    background-color: #fff;
    flex-shrink: 0;
   -webkit-flex-shrink: 0;
    position: absolute;
    z-index: 0;
    transition: 0.6s all linear;
}

#storytelling .carousel-item__info {
  height: 50%;
  display: block;
  justify-content: center;
  flex-direction: column;
  
    display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-flex-direction: column;
  
  order: 1;
  left: 0;
  margin: auto;
  padding: 0;
  width: 100%;

}

#storytelling .carousel-item__image {
    width: 100%;
    height: 50%;
    order: 2;
    align-self: flex-end;
    flex-basis: 100%;
  
      -webkit-order: 2;
    -webkit-align-self: flex-end;
    -webkit-flex-basis: 100%;
  
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
   position:relative;
  transform: translateY(-100%);
  transition: 0.6s all ease-in-out;
}

#storytelling .carousel-item__subtitle {
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 3px;
    font-size: 10px;
    text-transform: uppercase;
    margin: 0;
    color: #ff8200;    
    font-weight: 600;
    transform: translateY(25%);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s all ease-in-out;
    text-align: left !important;
}

#storytelling h2.carousel-item__title:after {
    content: "";
    height: 0;
    background: transparent;
    display: none;
    width: 0;
    margin: 0;
    border: none;
}

#storytelling .carousel-item__title {
    margin: 15px 0 0 0;
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    line-height: 31px;
    letter-spacing: 0px;
    font-weight: 600;
    color: #1a1a1a;
    transform: translateX(25%);
    opacity: 0;
    visibility: hidden;
    transition: 0.6s all ease-in-out;
    text-align: left !important;
}

#storytelling .carousel-item__description {
    transform: translateX(25%);
    opacity: 0;
    visibility: hidden;
    transition: 0.6s all ease-in-out;
    margin-top: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #7e7e7e;
    line-height: 22px;
    margin-bottom: 10px;
}

#storytelling .carousel-item__container{

}

#storytelling .carousel-item__btn {
    width: 35%;
    color: #1a1a1a;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 3px;
    font-size: 11px;
    text-transform: uppercase;
    margin: 0;
    width: 100%;
    font-weight: 600;
    text-decoration: none;
    transform: translateY(25%);
    opacity: 0;
    visibility: hidden;
    transition: 0.6s all ease-in-out;
    padding: 10px;
    border: 1px solid #1a1a1a;
}

#storytelling .carousel__nav {
    position: absolute;
    right: 0;
    z-index: 2;
    background-color: #fff;
    bottom: 0;
}

#storytelling .carousel__icon {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    fill: #5d5d5d;
}

#storytelling .carousel__arrow {
    cursor: pointer;
    display: inline-block;
    padding: 11px 15px;
    position: relative;
}

#storytelling .carousel__arrow:nth-child(1):after {
    content:'';
    right: -3px;
    position: absolute;
    width: 1px;
    background-color: #b0b0b0;
    height: 14px;
    top: 50%;
    margin-top: -7px;
}

#storytelling .active{
  z-index: 1;
  display: block;
  visibility:visible;
}

#storytelling .active .carousel-item__subtitle,
#storytelling .active .carousel-item__title,
#storytelling .active .carousel-item__description,
#storytelling .active .carousel-item__btn{
    transform: translateX(0);
    opacity: 1;
    transition: 0.6s all ease-in-out;
    visibility: visible;
}

#storytelling .active .carousel-item__image{ 
  transition: 0.6s all ease-in-out;
  transform: translateX(0);
}

@media only screen and (min-width: 768px){
 #storytelling.carousel {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
  -webkit-justify-content: center;
    align-items: center;
  -webkit-align-items: center;
      height: 600px;      
}

#storytelling .carousel-item {
    display: flex;
}

#storytelling .carousel-item__info {
  height: 100%;
  display: flex;
  padding: 0 40px;
  width: 40%;
}

#storytelling .carousel-item__image {
    width: 60%;
    height: 100%;
    order: 2;
    align-self: flex-end;
    flex-basis: 60%;
  transform: translateX(100%);
  transition: 0.6s all ease-in-out;
}

#storytelling .carousel-item__subtitle {
    transform: translateY(25%);
}

#storytelling .carousel-item__title {
    transform: translateY(25%);
}

#storytelling .carousel-item__description {
    transform: translateY(25%);
}

#storytelling .active{
  z-index: 1;
  display: flex;
  visibility:visible;
}

#storytelling .active .carousel-item__subtitle,
#storytelling .active .carousel-item__title,
#storytelling .active .carousel-item__description,
#storytelling .active .carousel-item__btn{
    transform: translateY(0);
}

#storytelling .active .carousel-item__image{ 
  transform: translateX(0);
}

}