.faqs {
}
.faqs-item {
    padding: 30px;
    border-radius: 20px;
    background-color: #FFFFFF;
    box-shadow: 0 1px 10px 2px rgba(0,12,61,0.09);
    margin: 0 0 15px;
}
.faqs-item h4{
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 33px;
    margin:0;
    display: block;
    position: relative;
    cursor:pointer;
    padding-right: 20px;
}
.faqs-item h4::after{
    position: absolute;
    content:" ";
    background: url(../png/icon-down.png) center center / 100% 100% no-repeat;
    width: 16px;
    height: 10px;
    display: inline-block;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.faqs-item.opened h4::after{
    transform: rotate(180deg);
}
.faqs-item-cnt {
    display: none;
}
.faqs-item.opened .faqs-item-cnt {
    display: block;
}
.faqs-item-cnt p {
    line-height: 25px;
    margin:10px 0 0;
}
.faqs-item-cnt-btns{
    display: flex;
    align-items: center;
    gap:10px;
    margin-top: 10px;
}
.faqs-item-cnt-btns a{
    display: flex;
    align-items: center;
    gap:10px;
}
.faqs-item-cnt-btns a img{
    border-radius: 100px;
}