.faqs__item {
    margin-bottom: 43px;
    position:relative;
    transition:all 300ms ease;
}

.faqs__item .faq_title{
    margin-bottom:15px;
}
.faqs__item.active .faq__title,
.faqs__item.active .faq__content {
    margin-left:25px;
    transition:all 300ms ease;
}
.faqs__item.active .faq__title {
    padding-bottom: 20px;
}
.faqs__item.active:before {
    content: "";
    width: 5px;
    background: #0242A6;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    transition:all 300ms ease;
}
.faqs__content p {
    margin-bottom: 30px;
}

.faqs__item > a {
    display:flex;
    align-items: flex-start;
    text-decoration:none;
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    color: #222222;
    justify-content: space-between;
    line-height: 36px;
}
.faqs__item > a > span {
    font-size: 15px;
}
.faqs__item.active > a {
    color: #0242A6;
}
.faqs__item a span.icon-arrow-down {
    transform: rotate(-90deg);
    position: relative;
    display:block;
    transition: all .3s ease-out;
    pointer-events: none;
}
.faqs__item.active a span.icon-arrow-down {
    transform: rotate(0deg);
    position: relative;
    display:block;
    transition: all .3s ease-out;
    pointer-events: none;
}

.faqs__content ul li {
    position: relative;
    margin-bottom: 10px;
    margin-left: 30px;
}
.faqs__content ul {
    list-style: none;
    padding: 0;
}
.faqs__content ul li:before {
    content: "\e902";
    color: #FFFFFF;
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    position: absolute;
    margin-left: -30px;
    font-size: 10px;
    transform: translateY(-50%);
    top: 50%;
    width: 20px;
    height: 20px;
    background: #0242A6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(max-width:1024px){
    .faqs__item a span.icon-arrow-down {
        padding-right: 10px;
    }
    .faqs__item.active a span.icon-arrow-down {
        padding-right: 0;
        padding-top: 5px;
    }
}
@media(max-width:767px){
    .faqs__item > a {
        font-size: 22px;
        line-height: 27px;
    }
    .faq-heading__wrapper {
        margin-bottom: 30px;
    }
    .faqs__item.active .faq__title, .faqs__item.active .faq__content {
        margin-bottom: 15px;
    }
    .faqs__item {
        margin-bottom: 30px;
    }
    .faqs__item.active {
        margin-bottom: 60px;
    }
    
    .faqs__item:last-child {
        margin-bottom: 0;
    }
}