/* ----------------------------------------------------------------
              [ * Showcase section ]
  -----------------------------------------------------------------*/

/*----------Showcase Style 0----------*/

.better-showcase.style-0 {
    position: relative;
    overflow: hidden;

    .container {
        display: block;
    }

    .swiper-slide {
        position: relative;
        overflow: hidden;
        width: 100%;
        min-height: 100vh;
        padding-bottom: 50px;

        .better-bg-img {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background-size: cover;
        }
    }

    .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
        content: none;
    }

    .swiper-button-next:after, .swiper-rtl .swiper-button-next:after {
        content: none;
    }

    .parallax-slider {
        .swiper-slide .better-bg-img {
            background-position: center center;
        }

        .caption {
            position: relative;

            h1 {
                font-size: 80px;
                font-weight: 700;
                letter-spacing: 1px;
                transition: all .5s;
                position: relative;

                .stroke {
                    margin-bottom: 10px;
                    color: #fff;
                }

                .bord {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    width: 100vw;
                    transform: translateX(-50%);
                    height: 1px;
                    background: #fff;
                    border: 0;
                    opacity: .1;
                }
            }

            .discover {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                right: 0;
                width: 200px;
                height: 200px;
                text-align: center;
                border: 1px solid rgba(255, 255, 255, 0.4);
                border-radius: 50%;
                font-size: 13px;
                font-weight: 200;
                letter-spacing: 4px;
                text-transform: uppercase;
                transition-delay: 2s;
                transition: all .7s;
                opacity: 0;

                span {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translateX(-50%) translateY(-50%);
                    line-height: 50px;
                }
            }
        }

        .swiper-slide-active .caption .discover {
            opacity: 1;
            transition: all .7s;
        }
    }

    .dots {
        left: 0;
        width: 100%;
        bottom: 30px;
        z-index: 1;

        span {
            background: #fff;
            width: 5px;
            height: 5px;
            margin: 0 7px !important;
            border-radius: 50% !important;

            &.swiper-pagination-bullet-active {
                position: relative;

                &:after {
                    content: '';
                    position: absolute;
                    top: -5px;
                    left: -5px;
                    right: -5px;
                    bottom: -5px;
                    border: 1px solid #fff;
                    border-radius: 50%;
                }
            }
        }
    }

    .txt-botm {
        position: absolute;
        bottom: 20px;
        left: 0;
        width: 100%;
        z-index: 8;

        .swiper-nav-ctrl {
            position: absolute;
            width: auto;
            height: auto;
            margin-top: auto;
            top: auto;
            bottom: 0;

            &:hover i {
                border: 1px solid rgba(255, 255, 255, 0.3);
            }

            i {
                color: #ccc;
                font-size: 13px;
                width: 45px;
                height: 45px;
                line-height: 45px;
                text-align: center;
                margin: 0;
                border-radius: 50%;
                display: inline-block;
                transition: all .3s;
                display: inline-block;
            }

            &.swiper-button-prev {
                left: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                font-weight: 500;
                font-size: 12px;

                i {
                    margin-right: 10px;
                }
            }

            &.swiper-button-next {
                right: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                font-weight: 500;
                font-size: 12px;

                i {
                    margin-left: 10px;
                }
            }
        }
    }

    .swiper-button-prev,
    .swiper-button-next {
        background-image: none;
    }
}