/*
 * Faq component include style for gallura template.
 */

div.faqPrev:before {
    content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-image: linear-gradient(0deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
        opacity: .6; 
  }

div.faqPrev section {
    padding: 5em 15%;
    color: var(--white);
    text-align: center;
}

div.faqPrev section h2 {
    font-size: 1em;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1em;
}

div.faqPrev section p {
    margin-bottom: 1.2em;
}

div.faqPrev section a {
    border: 2px solid var(--white);
}

@media screen and (max-width: 768px) {
    .faqPrev-container .swiper {
        height: 40vh;
    }
}

@media screen and (max-width: 576px) {
    div.faqPrev section a {
        margin-bottom: 1em;
    }

    .faqPrev-container .swiper {
        height: 65vh;
    }
}