.faq-card .toggle {
    transition: ease all 0.5s;
}

.faq-card .toggle.active {
    transform: scaleY(-1);
}

.faq-card .toggle {
    transform: scaleY(1);
}

.faq-card .flex-container {
    width: 100%;
    justify-content: space-between;
    padding: 24px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Exo 2';
    border-bottom: 1px solid #f0f3f2;
    transition: ease all 0.5s;
    overflow: hidden;
    cursor: pointer;
    box-sizing: border-box;
}

.faq-card .flex-container:hover,
.faq-card .flex-container.active {
    background-color: #eee;
}

.faq-card-text {
    padding: 24px 0;
    margin: 0 24px 0 30px;
    transition: ease all 0.5s;
    overflow: hidden;
}

.fade-grow-enter-active,
.fade-grow-leave-active,
.toggle {
    transition: ease all 0.5s;
}
.fade-grow-enter,
.fade-grow-leave-to {
    opacity: 0;
    z-index: 0;
    /*transform:;*/
    margin-top: -40px;
}

.slider {
    padding: 30px 0;
}

.seals-mobile {
    display: none;
}

@media screen and (max-width: 767px) {
    .seals-desktop {
        display: none;
    }
    .seals-mobile {
        display: block;
    }

    .faq-card .flex-container {
        width: auto;
    }
}
