/* FAQ START */
.faq {
    margin: 0 0 80px 0;
}

.faq__container {
    background: var(--color-light-blue);
}

.faq__content {
    max-width: 790px;
    width: 100%;
    margin: 0 auto;
}

.faq__item {
    background: #fff;
    border-radius: 30px;
    margin: 0 0 20px 0;
    position: relative;
    z-index: 50;
}

.faq__item:last-child {
    margin: 0;
}

.faq__item-name {
    font-family: var(--main-font-semi-bold);
    font-size: 18px;
    line-height: 25px;
    color: var(--color-blue);
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    padding: 10px 30px;
    position: relative;
}

.faq__item-content {
    display: none;
    font-family: var(--main-font);
    font-size: 16px;
    line-height: 22px;
    color: var(--color-blue);
    text-align: left;
    padding: 0 30px 20px 30px;
}

.faq__item-name::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 18px;
    background: #43B3E5;
    top: 15px;
    right: 30px;
    transition: 0.3s;
}

.faq__item-name::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 2px;
    background: #43B3E5;
    top: 23px;
    right: 22px;
    transition: 0.3s;
}

.faq__item--active .faq__item-name::before{
    transform: rotate(90deg);
    background: var(--color-blue);
}

.faq__item--active .faq__item-name::after{
    background: var(--color-blue);
}

.faq__item-content ul {
    list-style-image: url(/local/templates/s1/images/li-dot.png);
    margin-bottom: 0;
}

.faq__item-content ul li {
    margin: 0 0 20px 0;
}

.faq__item-content ul li:last-child {
    margin: 0;
}

.faq__link {
    text-decoration: none;
    color: var(--color-pink);
}

.faq__link:hover {
    color: var(--color-pink);
    text-decoration: underline;
}

.faq__highlight {
    font-family: var(--main-font-semi-bold);
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    z-index: 10;
}

.faq__highlight::before {
    content: "";
    position: absolute;
    height: 10px;
    width: 102%;
    border-radius: 20px;
    background: var(--color-orange);
    z-index: -1;
    bottom: 1px;
    left: -4px;
    opacity: 0.6;
} 

.faq__figure-top {
    height: 58px;
    background: url(/local/templates/s1/images/footer/footer-figure.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 30;
}

.faq__figure-top::before{
    content: "";
    position: absolute;
    top: 14px;
    left: 120px;
    width: 218px;
    height: 78px;
    background: url(/local/templates/s1/images/faq/faq-cloud-1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.faq__figure-top::after{
    content: "";
    position: absolute;
    top: 90px;
    left: 40px;
    width: 84px;
    height: 95px;
    background: url(/local/templates/s1/images/faq/faq-lightning-1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
} 

.faq__figure-bottom {
    height: 58px;
    background: url(/local/templates/s1/images/footer/footer-figure.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 30;
    transform: rotate(180deg);
}

.faq__figure-bottom::before{
    content: "";
    position: absolute;
    top: -15px;
    left: 130px;
    width: 267px;
    height: 141px;
    background: url(/local/templates/s1/images/faq/faq-cloud-2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: rotate(180deg);
}

.faq__figure-bottom::after{
    content: "";
    position: absolute;
    top: 200px;
    left: 50px;
    width: 68px;
    height: 68px;
    background: url(/local/templates/s1/images/faq/faq-lightning-2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: rotate(180deg);
}
/* FAQ END */