.support_banner{
    background: url('../img/support_banner.jpg') no-repeat center/cover;
    padding: 120px 0;
}
.support_banner .head h1{
    margin-bottom: 0.8rem;
}
.support_banner .head p{
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    color: #fff !important;
}

.support_service{
    padding: 180px 0 130px;

}
.support_service ul{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px 2.0454545%;
    margin-top: 100px;
}
.support_service ul li{
    flex: 1;
    padding: 70px 37px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}
.support_service ul li .img{
    width: 76px;
    height: 83px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 45px;
}
.support_service ul li strong{
    font-size: 28px;
    line-height: 36px;
    color: #1d1d1d;
    transition: all 0.3s;
    margin-bottom: 30px;
    display: block;
}
.support_service ul li p{
    font-size: 18px;
    line-height: 28px;
    color: #7a7a7a;
    margin-bottom: 60px;
    transition: all 0.3s;
}
.support_service ul li span{
    font-size: 19px;
    font-weight: 600;
    color: var(--theme_color);
    display: inline-block;
    padding-right: 25px;
    background: url('../img/arrow-right.svg') no-repeat right/17px;
}
.support_service ul li.active{
    background-color: #212121;
}
.support_service ul li.active strong{
    color: white;
}
.support_service ul li.active p{
    color: white;
    opacity: 0.8;
    font-weight: 300;
}

.faq_box{
    padding: 90px 0 220px;
}
.faq_box .head{
    margin-bottom: 88px;
}
.sy_fap_group{
    display: flex;
}
.sy_fap_group div>strong{
    font-size: 30px;
    line-height: 60px;
    font-weight: 600;
    display: block;
    margin-bottom: 35px;
}
.sy_fap_group .left{
    width: 24.5%;
}
.sy_fap_group .right{
    width: 75.5%;
}
.sy_fap_group .faqs_list{
    font-size: 18px;
    color: #686868;
}
.sy_fap_group .faqs_list li{
    margin-bottom: 25px;
    cursor: pointer;
}
.sy_fap_group .faqs_list li.active{
    color: var(--theme_color);
    font-weight: 600;
}
.sy_fap_group .faqs li strong{
    font-size: 24px;
    line-height: 40px;
    color: #242424;
    font-weight: 600;
    display: block;
}
.sy_fap_group .faqs li span svg{
    display: none;
}
.sy_fap_group .faqs li .answer{
    padding-top: 2rem;
    color: #242424;
    font-size: 18px;
    line-height: 32px;
    display: none;
}
.sy_fap_group .faqs li{
    padding-bottom: 27px;
    padding-top: 27px;
    border-bottom: 1px solid #dddcdc;
    position: relative;
    cursor: pointer;
}
.sy_fap_group .faqs li:nth-of-type(1){
    padding-top: 0;
}
.sy_fap_group .faqs li:nth-of-type(1) .answer{
    display: block;
}
.sy_fap_group .faqs li:after{
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    right: 0;
    transition: all 0.3s;
    top: 34px;
    background: url('../img/arrow-top.svg') no-repeat center/contain;
}
.sy_fap_group .faqs li.active strong{
    color: var(--theme_color);
}
.sy_fap_group .faqs li.active:after{
    transform: rotate(180deg);
}