p{
    line-height : 1.5;
}

#faqs{
    background : #fff; 
}

.faqs-section{
    background : #fff;
    padding : 60px 0;
}

.faqs-container{
    max-width: 1140px;
    width: 100%;
    padding: 0 4vw;
    margin-right: auto;
    margin-left: auto;
}

.faqs-flex-container{
    display : flex;
    align-items : flex-start;
    justify-content : flex-start;
    width : 100%;
}

.faqs-left-container{
    position : sticky;
    width : 35%;
    padding: 20px;
}

.faqs-title{
    display : inline-flex;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    border-radius: 20px;
    align-items : center;
    justify-content : center;
    gap : 5px;
}

.faq-title-icon{
    width : 15px;
    height : 15px;
}

.faqs-subtitle{
    font-family: var(--primary-font);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight{
    color : var(--primary);
}

.category-container{
    text-align : center;
}

.faq-description{
    text-align : center;
    margin-bottom : 40px;
}

.faqs-category-container{
    display: inline-flex;
    margin : 25px 0 40px 0;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 8px;
    white-space: nowrap;
    overflow-x: auto;
    flex-wrap: nowrap;
    max-width: 100%;
    gap: 15px;
}

.category-item{
    position : relative;
    display : inline-flex;
    justify-content : flex-start;
    align-items : center;
    gap: 8px;
    border-radius: 50px;
    padding: 8px 32px;
    transition: 0.3s ease;
    cursor : pointer;
}

.category-item:hover{
    background : #ECEDF9;
}


.category-item.active {
     background : var(--primary);
     color : #fff;
}

.category-title{
    font-size: 18px;
    font-weight: 600;
}

.category-image{
    width : 25px;
    height : 25px;
}

.faqs-right-container{
    width: 100%;
}

.box-title{
    font-family: var(--primary-font);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}


.box-img-container{
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid #2709f029; */
    padding: 5px;
    border-radius: 50%;
    background: #9c9fa030;
}

.category-image{
    width : 18px;
    height : 18px;
}


.box-que .plus{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 25px;
    width: 25px;
    min-height: 25px;
    height: 25px;
    border-radius: 50%;
    margin-left: 30px;
    cursor : pointer;
}


.box-que .plus .line{
    position: absolute;
    display: block;
    width: 14px;
    height: 2px;
    background-color: var(--dark);
    transition: all 0.15s ease-in-out;
}

.box-title{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}


.box-content{
    padding: 30px 0;
    border-bottom : 1px solid var(--dark);
}

.box-content.last{
    border-bottom : none;
}

.box-que{
    display : flex;
    justify-content : space-between;
    align-items : center;
    cursor : pointer;
}

.box-que .question{
    font-size : 20px;
    font-weight : 500;
    color : var(--dark);
}

.box-que .plus .line:nth-child(1){
    transform : rotate(90deg);
}

.box-ans {
    max-height: 0;
    overflow: hidden;
    transition:  0.5s ease-in-out;
}

.box-item{
    background : #fff;
}


.box-content.active .box-ans {
    max-height: 500px; 
    margin-top : 15px;
}

/* Rotate plus icon */
.box-content.active .plus .line:nth-child(1) {
    transform: rotate(0deg);
}

.box-content.active .plus .line:nth-child(2) {
    transform: rotate(180deg);
}

.box-ans .q-b{
    font-size: 16px;
    font-family: var(--secondary-font);
    font-weight: 500;
    color: #5c5c5c !important;
}

.box-ans .q-b .q-b-ans{
    line-height : 1.8;
}

.box-ans .q-b-ans a{
    text-decoration : none;
    color : var(--primary);
}

.box-ans .q-b-ans a:hover{
    text-decoration : underline;
}

.box-item {
  display: none;
}


#faqs .box-item.category-general {
  display: block;
}


@media(max-width:1400px){
    .faqs-container{
        max-width:1140px;
    }
}

@media(max-width : 1200px){
    .faqs-container{
        max-width:960px;
    }
}

@media(max-width : 992px){
    .faqs-container{
        max-width:720px;
    }
    .faqs-category-container::-webkit-scrollbar {
        display : none;
    }
}

@media(max-width:768px){
    .faqs-container{
        max-width:100%;
    }
    .box-que .question{
       font-size : 16px;
    }
}

