.all-faq-items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px 45px;
}

.faq-item {
    background-color: #f2f2f2;
    max-width: 992px;
    width: 100%;
    margin: 20px 0;
    padding: 20px;
    border-radius: 10px;
}

.faq-question {
    text-transform: uppercase;
    font-family: Heebo, sans-serif;
    color: #555555;
    font-size: 24px;
    flex: 1;
    margin: 0;
    padding-right: 20px;
}

.faq-answer {
    margin: 0;
    padding: 0;
    font-size: 0;
    transition: .6s;
    opacity: 0;
    overflow: hidden;
    display: block;
    flex: 1;
}

.faq-item-preview {
    cursor: pointer;
    display: flex;
    align-items: center;
    margin: 0;
}

.faq-expand {
    font-size: 24px;
    color: #B7922A;
    padding-right: 10px;
}

.faq-item i {
    transition: .6s;
}

.faq-item.active i {
    transform: rotate(90deg);
}

.standalone_image {
    height: 50vh !important;
}

.faq-item.active .faq-answer {
    opacity: 1;
    font-size: 24px;
}

.faq-item.active .faq-item-body {
    padding: 20px 0 0;
}

.faq-item.active .faq-item-image {
    opacity: 1;
    padding-bottom: 65%;
}

.faq-item-body {
    transition: .6s;
    display: flex;
    padding: 0;
    justify-content: center;
    align-items: center;
}

.faq-item-image-wrapper {
    flex: 1;
}

.faq-item-image {
    transition: .6s;
    width: 100%;
    height: 0;
    opacity: 0;
    padding-bottom: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.faq-header {
    height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.faq-header .group_name {
    margin: 0;
}

@media only screen and(min-width: 992px) {
    .all-faq-items {
        margin: 60px 20px 90px;
    }
}