.box-slider {
    position: relative;
}

.hall-swiper {
    overflow: hidden;
}

.swiper-slide {
    transition: transform 0.3s linear;
}

.hall-item {
    cursor: pointer;
}

.hall-item {
    border-radius: 25px;
}

.hall-item .hall-image img {
    max-height: 530px;
    min-height: 530px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
    width: 100%;
}

.hall-item .hall-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(42, 51, 143, 0.9);
    backdrop-filter: blur(4px);
    text-align: center;
    padding: 30px 15px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.2s linear;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.swiper-button-prev::after {
    display: none;
}

.swiper-button-next::after {
    display: none;
}

.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #2b378b;
    font-size: 35px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 4px 0 rgba(179, 179, 179, 0.5);
    z-index: 9999;
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
    animation: none !important;
}

.swiper-button-next span,
.swiper-button-prev span {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 30px;
}

@media screen and (max-width: 1024px) {
    .hall-item .hall-content {
        padding: 20px;
        visibility: visible;
        opacity: 1;
    }
}

.hall-item .hall-content a {
    display: block;
    font-family: "Montserrat Bold";
    text-decoration: none;
    color: #ffffff;
    font-size: 22px;
    line-height: 24px;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .hall-item .hall-content a {
        font-size: 18px;
    }
}

.hall-item .hall-content p {
    font-family: "Montserrat Regular";
    color: #fff;
    font-size: 14px;
    line-height: 24px;
}

.hall-item .hall-content p:last-child {
    margin-bottom: 0;
}

.hall-item:hover {
    cursor: pointer;
}

@media screen and (min-width: 1280px) {
    .hall-item:hover .hall-content {
        visibility: visible;
        opacity: 1;
    }
}