.content-width {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
}
  

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

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

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

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

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

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

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

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

.item-description {
    position: absolute;
    padding-left: 205px;
    padding-right: 205px;
    top: 322px;
    /* right: 0; */
    width: 60%;
    /* padding-right: 4%; */
    line-height: 1.3;
    font-weight: normal;
}

/* Staggered Vertical Items ------------------------------------------------------*/
.item-header {
    position: absolute;
    padding-left: 205px;
    padding-right: 205px;
    top: 250px;
    /* left: 10%; */
    /* z-index: 100; */
}

.item-header .vertical-part {
    margin: 0 -2px;
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: auto;
    font-size: 42px;
    color: #fff;
}


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

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

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

.item-description .vertical-part b {
    transition: .21s;
    font-weight: normal;
}

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

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

/* Controls ----------------------------------------------------------------------*/
.controls {
    position: absolute;
    bottom: 70px;
    text-align: right;
    /* z-index: 1000; */
}

.controls ul {
    list-style: none;
}

.controls ul li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 3px;
    background: #bdbdd5;
    ;
    cursor: pointer;
}

.controls ul li.active {
    background: #6a6a77;
    ;
}

@media screen and (max-width: 1080px) {
    .item-description {
        top: 310px;
    }

    .item-header .vertical-part {
        font-size: 32px;
    }

    .item-description .vertical-part {
        font-size: 16px;
    }

    .item-header {
        padding-left: 85px;
        padding-right: 85px;
    }

    .item-description {
        padding-left: 85px;
        padding-right: 85px;
        width: 70%;
    }
}

@media screen and (max-width: 768px) {
    .item-description {
        top: 310px;
    }

    .item-header .vertical-part {
        font-size: 32px;
    }

    .item-description .vertical-part {
        font-size: 16px;
    }

    .item-header {
        padding-left: 75px;
        padding-right: 75px;
    }

    .item-description {
        padding-left: 75px;
        padding-right: 75px;
        width: 80%;
    }
}

@media screen and (max-width: 421px) {
    .item-description {
        top: 350px;
    }

    .item-header .vertical-part {
        font-size: 26px;
    }

    .item-description .vertical-part {
        font-size: 14px;
    }

    .item-header {
        padding-left: 20px;
        padding-right: 20px;
    }

    .item-description {
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
    }
}