div.faqs {
    background-color: transparent;
    margin-bottom: 60px;
    div.child {
        display: flex;
        gap: 30px;
    }

}
div.faqs div.tab.start {
    flex: 1;
    p.subtitle {
        margin-top: 10px;
        color: #353535;
        font-size: 18px;
    }
    div.contact-us {    
        max-width: 80%;
        margin-top: 20px;
        p {
            font-size: 16px;
            line-height: 1.5;
        }
        a {
            display: inline-block;
            margin-top: 20px;
            text-decoration: none;
            background-color: var(--primary-color);
            border-radius: 50px;
            padding: 9px 18px;
            color: #fff;
            font-size: 15px;
            font-weight: 500;

        }
        a:hover {
            background-color: var(--secondary-color);
            transition: all 250ms ease-in-out;
        }
    }
}
div.faqs div.tab.end {
    width: 50%;
    height: auto;
    background-color: #fff;
    border-radius: 17px;
    overflow: hidden;
}
div.faq {
    background-color: #f5f7fa;
    border-top: 1px solid #fff;
}
div.faq:nth-of-type(1) {
    border-top: 0;
} 

/* div.faq:nth-child(even){
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
} */
div.faq p.question {
    padding: 20px 25px;
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}
div.faq p.question span.icon {
    background-color: transparent;
    padding: 8px;
    border-radius: 50px;
    display: flex;
}
div.faq p.question svg {
    display: flex;
    height: 18px;
    width: auto;
}
div.faq p.answer {
    padding: 0 25px 25px;
    font-size: 15px;
    line-height: 1.5;
    color: #353535;
    a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
    }
    a:hover {
        text-decoration: underline;
    }
    span.ws_10 {
        display: block;
        height: 10px;
    }
}
div.faq p.answer span.points {
    display: flex;
    margin-top: 10px;
    gap: 10px;
    span:nth-child(1) {
        font-weight: 500;
    }
}
div.faq p.answer[data-visibility="hidden"] {
    display: none;
}

div.faq p.question:hover span.icon {
    background-color: var(--secondary-color-30);
}

@media only screen and (max-width: 1200px) {
    div.faqs {
        margin-left: 30px;
        margin-right: 30px;    
        margin-bottom: 30px;    
    }

}
@media only screen and (max-width: 1040px) {    
    div.faqs div.tab.start {
        p.subtitle {
            margin-top: 10px;
            font-size: 16px;
        }
        div.contact-us {    
            p {
                font-size: 16px;        
            }
        }
    }
}

@media only screen and (max-width: 870px) {    
    div.faqs div.child {
        display: grid;
        gap: 20px;
    }
    div.faqs div.tab.start div.contact-us {
        max-width: 100%;
    }
    div.faqs div.tab.end {
        width: 100%;
    }
}