.carousel {
    width: 100%;
    height: 100%;
    display: flex;
    max-height: 896px;
    overflow: hidden;
    position: relative;
    align-items: center;
    justify-content: center;
}

.carousel-item {
    visibility: visible;
    display: flex;
    width: 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: -1;
    transition: 0.6s all linear;
    background-color: transparent;
}

.active {
    z-index: 1;
}

.carousel-item__image {
    width: 100%;
    height: 100%;
    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: translateX(100%);
    transition: 0.6s all ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

.carousel-item__image>img {
    max-width: 95vw;
}

.carousel-item__container {}

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

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

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

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

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

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

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

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

.carousel img {
    max-height: 500px;
}

@media (orientation: landscape) {
    .carousel-item {
        height: 100%;
    }
}

@media (min-width: 1360px) and (orientation: landscape) {
    .carousel img {
        max-height: 700px;
    }
}

@media (min-width: 1920px) and (orientation: landscape) {
    .carousel img {
        max-height: 720px;
    }
}