.service_banner{
    padding: 2.5rem 0 10rem;
    background-color: #edebf7;
    background-image: url(../img/service-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.service_banner .head{
    margin-top: 6.3rem;
    max-width: 55rem;
}
.service_banner .head h1{
    font-size: 3.6rem;
    line-height: 4.4rem;
    margin-bottom: 2.2rem;
    font-weight: 500;
    color: #ffffff; 
}
.service_banner .head p{
    font-size: 1.8rem;
    line-height: 3rem;
    color: #ffffff;
    font-weight: 300;
    opacity: .85; 
}
.service_banner .head p + p{
    margin-top: 1rem;
}
.service_banner .head p a{
    font-weight: 500;
    font-size: 1.9rem;
    text-decoration: underline;
}  
.service_banner .breadcrumb>span{
    color: #ffffff;
}
.service_banner .breadcrumb span.breadcrumb_last{
    color: #ffffff; 
}
.service_banner .breadcrumb>span > span:nth-of-type(1) a:after{
    filter: brightness(20);
} 
.service_main {
    padding-top: 6rem;
}
.service_main .content > strong{
    color: var(--title_color);
    font-size: 3.3rem;
    display: block;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: rgb(199,198,207) solid 1px;
    font-weight: 600;
}
.service_main .table_nav {
    margin-bottom: 2rem;
    padding: 1.2rem 2rem;
    border-bottom: rgb(199,198,207) solid 1px;
    background-color: rgb(247,247,249); 
    position: sticky;
    top: 14rem;
    z-index: 9;
}
.service_main .table_nav ul{
    gap: 1rem;
}
.service_main .table_nav ul li a{
    padding: 1.2rem;
    font-weight: 500;
    transition: all .3s;
    border-radius: 5px;
    display: block;
    font-weight: 1.6rem;
}
.service_main .table_nav ul li a:hover,
.service_main .table_nav ul li.active a{
    background-color: var(--subtheme_color);
    color: #fff;
}
.service_main .right{
    flex: 1;
    min-width: 24rem;
}

.service_main .content > .flex{ 
    gap: 3rem;
}
.service_main .product_list_service {
    margin-top: 2rem;
}
.service_main .product_list_service ul li a{
    display: block;
    color: var(--subtheme_color);
    font-weight: 500;
    font-size: 1.7rem;
    padding: 1rem 0;
    border-top: rgba(199, 198, 207, 0.751) solid 1px; 
}
.service_main .product_list_service ul li:last-child a{
    border-bottom: rgba(199, 198, 207, 0.751) solid 1px;  
} 

.service_main .product_list_service .btn{
    margin-top: 2rem;
    padding: 1.4rem 1.5rem;
}

section .box_content p{
    margin: 2rem 0;
    color: var(--content_color);
    opacity: .85;
    font-size: 1.75rem;
    line-height: 1.5;
}
section .box_content p > a{
    color: var(--theme_color);
}

section .service_head{
    background-color: rgb(247,247,249);
    display: block;
    font-size: 2.2rem;
    margin-top: 2rem;
    font-weight: 500;
    padding: 2rem 2.5rem;
    border-left: var(--subtheme_color) solid 5px;
}


.service_faq {
    margin: 2rem 0;
}

.faq_box {
    padding: 2.2rem 0;
}
.faq_box .faq_title{
    font-size: 2rem;
    font-weight: 500;
    color: #150f35;
    padding: 1.7rem 0;
    display: flex;
    width: 100%;
    position: relative;
    cursor: pointer;
}
.faq_box .faq_title:after{
    content: "";
    width: 1.6rem;
    height: 1.6rem;
    background: url('../img/select.svg') no-repeat center/contain;
    position: absolute;
    right: 2rem;
    top: 2rem;
    transition: all 0.3s;
}

.faq_box .faq_item{
    border-bottom: 1px solid rgba(21, 15, 53, 0.15);
}
.faq_box .anser{
    font-size: 1.8rem;
    line-height: 2.7rem;
    color: #2d2d2d;
    opacity: 0.85;
    font-weight: 400;
    display: none;
    margin-bottom: 2.3rem;
}

.faq_box .faq_item.active .faq_title:after{
    transform: rotate(180deg);
}


.service_resource{
    padding: 2.5rem 0 10rem;
}
.service_resource .main{
    padding: 5rem 3rem;
    border-radius: 10px;
    background-color: #f7f6f9;
}
.service_resource .main .head h2{
    font-size: 2.8rem;
}
.service_resource .main .documents_con ul{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 3.2rem;
}
.service_resource .main .documents_con li a{
    display: block;
    border: 1px solid #dddddd;
    padding: 2.6rem 3rem 6rem;
    border-radius: 10px;
    background-color: white;
}
.service_resource .main .documents_con li strong{
    font-size: 2.4rem;
    line-height: 3.2rem;
    color: #150f35;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}
.service_resource .main .documents_con li span{
    font-size: 1.7rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}
.service_resource .main .documents_con li span::before{
    content: "";
    display: inline-block;
    width: 1.8rem;
    height: 1.8rem;
    margin-right: 0.7rem;
    background: url('../img/document.svg') no-repeat center/contain;
}

.service_resource .main .documents_con li .btn{
    border: 1px solid var(--subtheme_color);
    background-color: transparent;
    color: var(--subtheme_color);
    font-weight: 500;
    padding-left: 2rem;
    padding-right: 2rem;
}

.service_resource .main .documents_con li:hover .btn{
    background-color: var(--subtheme_color);
    color: white;
}