div.faqs {
    height: auto;

}
div.faqs p.title {
    text-align: center;
}
div.faqs div.child {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    height: 100%;
    margin-top: 30px;
}
div.faqs div.start {
    width: 40%;
    height: 100%;
}
div.faqs div.start a.contact-us {
    text-decoration: none;
    color: #fff;
    background-color: #00BDF2;
    padding: 8px 16px;
    border-radius: 9px;
    font-size: 15px;
}
div.faqs div.start a.contact-us:hover {
    opacity: 0.7;
}

div.faqs div.end {
    width: 55%;
}

div.faq {
    width: 100%;
    background-color: #fafafa;
    border-radius: 11px;    
    overflow: hidden;
    margin-bottom: 20px;
    
}
div.faq p.question {
    padding: 20px;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
div.faq p.question:hover {
    color: #00BDF2;
}
div.faq p.question:hover svg {
    fill: #00BDF2;
    transition: all 250ms ease-in-out;
}
div.faq p.question span.icon {
    display: flex;
}
div.faq p.question svg {
    height: 18px;
    width: 18px;
    display: inline-flex;
    overflow: visible;
}
div.faq[data-visibility="visible"] {
    & p.answer {
        display: block;
    }
    & p.question svg {
        transform: rotate(-180deg);
    }
}
div.faq p.answer {
    
    transition: height 250ms ease;
    display: none;
    margin-top: -5px;
    padding: 0 20px 20px 20px;
    font-weight: 300;
    color: #454545;
    font-size: 15px;
    line-height: 23px;
}