div.faqs {
    background-color: #f8f9fa;
    padding: 50px 0 30px 0;
    div.child {
        display: flex;
        gap: 30px;
    }

}
div.faqs div.tab.start {
    flex: 1;
    p.subtitle {
        margin-top: 14px;
        color: #353535;
    }
    div.contact-us {
        max-width: 80%;
        margin-top: 30px;
        a {
            display: inline-block;
            margin-top: 20px;
            text-decoration: none;
            background-color: rgb(233 76 59);
            border-radius: 50px;
            padding: 8px 14px;
            color: #fff;
            font-size: 15px;
            border: 1px solid rgb(233 76 59);
            font-weight: 500;

        }
        a:hover {
            background-color: #fff;
            color: rgb(233 76 59);
        }
        p {
            font-size: 16px;
            line-height: 1.5;
        }
    }
}
div.faqs div.tab.end {
    width: 50%;
    height: auto;
    background-color: #fff;
    border-radius: 17px;
    overflow: hidden;
}
div.faq{
    border-top: 1px solid #e8e8e8;
}
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: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}
div.faq[data-visibility='visible'] {
    & p.question span.icon {
        transform: rotate(180deg) !important;
    }
    & p.answer {
        display: flex;
    }
}
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 {
    display: none;
    padding: 0 25px 25px;
    font-size: 15px;
    line-height: 23px;
    color: #353535;
}

div.faq p.question:hover span.icon {
    background-color: #f7f7f7;
}

@media only screen and (max-width: 1040px) {
    div.faqs div.contact-us {
        max-width: 100% !important;
    }
}
@media only screen and (max-width: 940px) {
    div.faqs {
        padding-bottom: 0;
        padding-top: 40px;
    }
    div.faqs div.child {
        display: grid;
    }
    div.faqs div.tab.end {
        width: 100%;
    }
}
