.slider-img {
    position: relative;
    padding-bottom: 53.5%;
}

.slider-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../assets/images/noise.png');
    background-repeat: repeat;
}

.slider-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    max-width: 100% !important;
}

.box-inside {
    position: relative;
}

.box-inside::after {
    content: '';
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
    position: absolute;
    width: 100%;
    height: 232px;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.box-inside-content {
    position: absolute;
    bottom: 99px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 20px;
    z-index: 2;
    color: #fff;
    text-align: center;
}

.box-inside-content .slider-title {
    color: #fff;
    font-family: var(--font-family-base);
    letter-spacing: 1.8px;
    margin-bottom: 16px;
}

.slider-link {
    color: #FFF;
    background-image: linear-gradient(to right, #FFF 0, #FFF 100%);
}

.slider-concept .swiper-pagination-bullet {
    background: transparent;
    border: 1px solid #F7F7F7;
    opacity: 1;
    margin: 0 15px !important;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.swiper-pagination-bullet::before {
    content: '';
    width: 10px;
    height: 1px;
    background: #f7f7f7;
    position: absolute;
    left: -21px;
    top: 2px;
}

.swiper-pagination-bullet:first-child::before {
    display: none;
}

.slider-concept .swiper-pagination-bullet-active {
    background: #F7F7F7;
}

.slider-concept .swiper-pagination {
    display: flex;
    justify-content: center;
    bottom: 50px;
}

@media (max-width:1024px) {
    .slider-concept .swiper-pagination {
        bottom: 31px;
    }

    .box-inside-content {
        bottom: 63px;
    }

    .slider-img {
        padding-bottom: 75%;
    }

    .box-inside-content .slider-title {
        font-size: 16px;
        line-height: 22px;
    }
}

@media (max-width:767px) {
    .slider-img {
        padding-bottom: 116.5%;
    }
}