.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;
    }
}




.faq {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
}

.faq.active {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.faq-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-body {
    margin-top: 1rem;
}

.subscribe-input {
    width: 80%;
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-template-columns: 1.5fr 0.5fr;
    gap: 0px 0px;
    padding: 5px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.subscribe-input input,
.subscribe-input button {
    outline: none;
    border: none;
}