.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;
    }
}




.comments {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.comment {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
    padding: 20px;
}

.comment-img {
    width: 3rem;
    height: auto;
}

.comment-pagination {
    margin-top: 2rem;
    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;
}