.gallery-wrapper {
    position: relative;
    max-width: 1081px;
    margin: 0 auto 56px;
}

.gallery-wrapper img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.gallery.style-2 {
    display: block;
    font-size: 0;
    white-space: nowrap;
    z-index: 1;
    overflow: hidden;
    width: 100%
}

.gallery.style-2 .item {
    display: block;
    position: absolute;
    top: auto;
    right: 0;
    width: 100%;
    height: auto;
    -webkit-transition: all 400ms cubic-bezier(.25, .1, .25, 1);
    -moz-transition: all 400ms cubic-bezier(.25, .1, .25, 1);
    -o-transition: all 400ms cubic-bezier(.25, .1, .25, 1);
    transition: all 400ms cubic-bezier(.25, .1, .25, 1);
    z-index: 6;
    left: -0;
    bottom: 0;
    opacity: 0;
    margin: 0 auto;
}

.gallery.style-2 .item-1 {
    z-index: 5;
    left: 0;
    bottom: 0;
    opacity: 1;
}

.gallery.style-2 .item-2 {
    bottom: -26px;
    z-index: 4;
    opacity: 0.5;
    max-width: 974px;
    width: 90%;
}

.gallery.style-2 .item-3 {
    bottom: -56px;
    z-index: 3;
    opacity: 0.3;
    max-width: 865px;
    width: 80%;
}

.gallery.style-2 .item-4 {
    bottom: -86px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    max-width: 756px;
    width: 70%;
}

.gallery.style-2 .item-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-bottom: 56.35%;
}

.showcase-title {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.gallery.style-2 .item-inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: contain;
    margin: 0 auto;
    right: 0;
}

@media (max-width:767px) {

    .gallery.style-2 .item-inner {
        padding-bottom: 57%;
    }

    .gallery.style-2 .item-2 {
        bottom: -10%;
    }

    .gallery.style-2 .item-3 {
        bottom: -20%;
    }

    .gallery.style-2 .item-4 {
        bottom: -30%;
    }

    .gallery-wrapper {
        margin-bottom: 43px;
    }

    .gallery-wrapper::after {
        content: '';
        background-image: url('../../assets/images/arrow-icon.svg');
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        right: 20px;
        top: 55%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        z-index: 10;
        pointer-events: none;
    }
}