.textlinks{
    margin:15px 0;
}
.textlinks ul{
    text-align: center;
}
.textlinks ul li{
    list-style: none;display:inline-block;margin-right:5px;
}
.textlinks ul li a{
    border:1px solid #ccc;border-radius:3px;padding:6px 12px;color:#333;font-size:14px;line-height: 1;
}
.textlinks ul li a:hover{
    background:#ff0100;color:#fff;border-color:#ff0100
}

@media screen and (max-width:768px){
    .textlinks ul{overflow-x:scroll;width:100%;white-space: nowrap;padding:6px 0}
    .textlinks ul li a{font-size:13px}
}
#otherNews {background:#fafafb;border-radius:var(--primary-border-radius)}
#otherNews .row_other_news{margin-bottom:10px;padding:10px;}

#otherNews .row_other_news .news-bottom{}
#otherNews .row_other_news .news-bottom img{display:block;margin-bottom:10px;}
#otherNews .row_other_news .news-bottom .title-name{font-size:14px;line-height: 1.4; }
#otherNews .row_other_news .news-bottom .note{}
#otherNews .row_other_news .news-bottom a:hover .title-name{color:var(--primary-color)}

#faqs{
    margin-bottom:20px;
    overflow: hidden;
}
#faqs h3{
    font-weight: 600; font-size: 18px;display: block;margin:0 0 20px;;
}
#faqs .faq-title{
    align-items: center;
  background-color: #fff;
  border: 1px solid #ccc;
  color: #000;
  cursor: pointer;
  display: flex;
  font-size: 15px;
  justify-content: space-between;
  margin-bottom: 0;
  margin-top: 5px;
  padding: 10px;
  position: relative;
  font-weight: 600;
}
#faqs .faq-title h4{
    font-weight: 600;
}
#faqs .faq-title i{
    position: absolute;top:10px;right:10px;
    font-size:1em;
}
#faqs .faq-body{
    background-color: #f2f2f2;
    font-size: 14px;
    padding:0;
    margin-bottom:10px;
    max-height: 0;
    overflow: hidden;
    text-align: justify;
    transition: max-height .3s ease;
}
#faqs .faq-body .inner{
    padding:10px;
    font-size:13px;
}
#faqs .active .faq-title{
    background:rgba(255,0,0,0.6)
}
#faqs .active .faq-title h4{color:#fff;}
#faqs .active .faq-title i{color:#fff;transform:rotate(90deg)}
#faqs .active .faq-body{
   max-height: 200px;
}