footer h6 {
    font-size: 24px;
}

.subtitle-hero {
    font-size: 34px;
    font-weight: 700;
}

.why-us-title,
.facility-title,
.product-title,
.tour-title,
.muthawif-title,
.gallery-title,
.testimonial-title,
.cta-title,
.faq-title {
    font-weight: 700;
    font-size: 34px;
    text-transform: capitalize;
}

@media only screen and (max-width: 767px) {
    footer h6 {
        font-size: 18px;
    }
    .subtitle-hero {
        font-size: 26px;
    }
    .why-us-title,
    .facility-title,
    .product-title,
    .tour-title,
    .muthawif-title,
    .gallery-title,
    .testimonial-title,
    .cta-title,
    .faq-title {
        font-size: 28px;
    }
}

.faq-item{
    background:#fff;
    border-radius:10px;
    margin-bottom:15px;
    overflow:hidden;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.faq-question{
    padding:18px 20px;
    cursor:pointer;
    font-weight:600;
    position:relative;
}

.faq-icon{
    position:absolute;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    font-size:22px;
    transition:.3s;
}

.faq-answer{
    padding:0 20px;
}

.faq-answer p{
    padding:0 0 20px;
    margin:0;
    color:#666;
}

.faq-question[aria-expanded="true"] .faq-icon{
    transform:translateY(-50%) rotate(45deg);
}