.faqSection {
    background: rgba(83, 172, 216, 0.15);
}

.qa {
    display: block;
    padding-bottom: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}
@media (min-width: 768px) {
    .qa:last-of-type {
        border-bottom: none;
    }
}
.qaQuestion {
    color: #091841;
}
@media (max-width: 767px) {
    .qaQuestion {
        padding: 0 40px 0 0;
    }
}
@media (min-width: 768px) {
    .qaQuestion {
        padding: 0 60px 0 20px;
    }
}
.qaQuestion:after {
    height: 24px;
    width: 24px;
    right: 20px;
    top: calc(50% - 16px);
    content: "+";
    font-weight: 400;
    font-size: 30px;
    color: #091841;
    opacity: 0.1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
    .qaQuestion:after {
        right: 0;
    }
}
.qaQuestion:hover {
    color: #091841;
    cursor: pointer;
}
.qaQuestion:hover:after {
    opacity: 1;
}
.qaAnswer {
    text-align: left;
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: height, opacity 0.2s ease-in-out;
    font-weight: 400;
}
@media (max-width: 767px) {
    .qaAnswer {
        padding: 0 40px 0 0;
    }
}
@media (min-width: 768px) {
    .qaAnswer {
        padding: 0 60px 0 20px;
        line-height: 1.6em;
    }
}
.qaAnswer,
.qaAnswer p {
    font-size: 15px;
}
.qaAnswer p {
    margin: 7px 0;
}
.qaAnswer ul,
.qaAnswer ol {
    margin-left: 20px;
}
.qaAnswer a {
    color: #091841;
    font-weight: 500;
    display: inline-block;
}
.qaAnswer pre {
    background: rgba(9, 24, 65, 0.1);
    padding-left: 5px;
    padding-right: 5px;
    font-weight: 500;
    display: inline-block;
    border-radius: 3px;
    box-sizing: content-box;
}
.qa.open .qaAnswer {
    overflow: auto;
    opacity: 1;
    height: unset;
    display: block;
    color: rgba(43, 68, 88, 0.7);
}
.qa.open .qaQuestion {
    color: #091841;
}
.qa.open .qaQuestion:after {
    content: "-";
    opacity: 0.5;
}

.tsl_faq {
    margin-top: 30px;
}
@media (max-width: 479px) {
    .tsl_faq {
        padding: 0;
    }
}
@media (min-width: 480px) and (max-width: 767px) {
    .tsl_faq {
        padding: 0 10%;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .tsl_faq {
        padding: 0 10%;
    }
}
@media (min-width: 992px) {
    .tsl_faq {
        padding: 0 5%;
    }
}
.tsl_faq .qa {
    border-bottom: 1px solid rgba(9, 24, 65, 0.1);
}

