.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;
    }
}

.divider {
    width: 100%;
    height: 1px;
    background-color: rgba(34, 34, 34, 0.1);
}

.blog-box {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.blog-content-img {
    background-position: center center;
    background-size: cover;
    border-radius: 10px;
    height: 30rem !important;
}

.blog-quote {
    display: grid; 
    grid-auto-flow: row dense; 
    grid-auto-columns: 1fr; 
    grid-template-columns: 0.4fr 1.6fr; 
    gap: 20px; 
    padding: 5rem 1rem;
    border-radius: 10px;
    background-color: #F6F6F6;
}

.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pagination-prev,
.pagination-next {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}