.hero {
    /*background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../assets/index-bg.jpeg);*/
    background-position: top center;
    background-size: cover;
    height: 30rem;
}

.hero-slider-img {
    width: 100%;
    height: 100%;
    position: relative;
    background-position: top center;
    background-size: cover;
}

.hero-slider-img::after {
    content: '';
    position: absolute;
    z-index: 4;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
}


@media screen and (max-width: 992px) {
    .hero {
        /*background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../assets/index-bg.jpeg);*/
        background-position: top center;
        background-size: cover;
        height: 60rem !important;
    }
}



.gallery-box {
    position: relative;
    width: 100%;
    height: 20rem;
    border-radius: 15px;
    background-position: center center;
    background-size: cover;
    padding: 20px;
    transition: all 0.3s ease;
}

.gallery-box .overlay {
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
    z-index: 2;
    transition: all 0.3s ease;
}

.gallery-box .content {
    padding: 20px;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    position: absolute;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    transition: all 0.3s ease;
}

.gallery-box .hover-content {
    padding: 20px;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    position: absolute;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.gallery-box:hover .content {
    display: none;
}

.gallery-box:hover .hover-content {
    display: flex;
}

.gallery-box:hover .overlay {
    background-color: rgba(34, 34, 34, 0.75);
}




.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page-active {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    background-color: #F47D07;
    padding: 5px;
}

.page {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FF7A00;
    background-color: #ffffff;
    padding: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.page,
.page-active,
.pagination-prev,
.pagination-next {
    cursor: pointer;
}