.article6 {
    position: relative;
    min-height: 100vh;
    background: url(../images/a3-image.jpg);
    margin-bottom: -1px;
    overflow: hidden;
    z-index: 2;
}

.article6 video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 105%;
    height: 105%;
    object-fit: cover;
    z-index: 2;
}

.a6-logo {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    z-index: 2;
}

.a6-logo img {
    width: 100%;
}

.a6-overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 0%;
    background-color: var(--main-color);
    z-index: 2;
}

.a6-faq {
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 4;
}

.a6-faq h5 {
    color: #444;
    font-size: 70rem;
    font-family: 'Tenor Sans' !important;
}

.a6-faq ul {
    min-width: 70%;
    max-width: 70%;
    display: flex;
    flex-direction: column;
}

.a6-faq ul li {
    color: #444;
    padding: 15rem 0;
    border-bottom: 1px solid #444;
}
.a6-faq ul li:last-child {
    border-bottom: none;
}

.a6-faq ul li.active .faq-top i {
    transform: rotate(45deg);
}

.faq-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-top p {
    font-size: 20rem;
}

.faq-answer {
    color: #444;
    font-size: 16rem;
    line-height: 1.8;
    margin-top: 20rem;
    display: none;
}


/*==================================================*/
@media (max-width: 991px) {
    .article6 .article-wrapper {
        height: 100%;
        align-items: flex-start;
    }
    
    .a6-faq {
        flex-direction: column;
        justify-content: unset;
        gap: 50rem;
        margin-top: 15%;
    }

    .a6-faq ul {
        min-width: 100%;
        max-width: 100%;
    }
}


@media (max-width: 550px) {
    .faq-top p {
        font-size: 26rem;
    }

    .faq-answer {
        font-size: 24rem;
    }
}