.faq__heading > h2{
	margin-bottom:50px;
}
.faq__accordion-item {
    padding: 16px 0;
    border-bottom: 1px solid #DADFF6;
}
.faq__accordion-item:first-child{
	padding-top:0;
}
.faq__accordion-item:last-child{
 	border-bottom:0;}
.faq__item-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq__item-group{
 	cursor:pointer;}
p.faq__item-group__question
 {

    font-size: 24px;
    line-height: 40px;
    color:#FFFFFF;
}
.faq__item-group__btn {
    flex-shrink: 0;
    border-radius: 6px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333B3F;
}
.faq__accordion-item.open .faq__item-group__question{
	margin-bottom:10px;
}
.faq__item-answer>p,
.faq__item-answer a,
.faq__item-answer ul li
 {
    font-family: Inter;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0px;
    color:#FFFFFF;
}
.faq__item-answer>p{
	margin-bottom:10px;
}
.faq__item-answer ul li{
    display: flex;
    gap: 5px;
    align-items: start;
}
.faq__item-answer ul li:before{
    content:'';
    display:flex;
    width:4px;
    height:4px;
    background:#083DB4;
    border-radius:50%;
    flex-shrink:0;
        margin-top: 12px;
}
.faq__item-answer ul li a{
	text-decoration: underline;
}

.faq__item-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__accordion-item.open .faq__item-answer {
    max-height: 500px;
}
.faq__accordion-item.open .faq__item-group__btn {
    background: #083db4;
}
.faq__accordion-item.open .faq__item-group__btn svg path:last-child {
    opacity: 0;
    transition: opacity 0.2s ease;
}

@media screen and (max-width: 767.98px){
.faq__heading > h2 {
    margin-bottom: 32px;
}
.faq__accordion-item {
    padding: 20px 0;
}
.faq__item-group {
    gap: 16px;
}
.faq__item-group__btn{
    width: 28px;
    height: 28px;}
p.faq__item-group__question {
    font-size: 20px;
    line-height: 130%;
}
.faq__accordion-item.open .faq__item-group__question {
    margin-bottom: 17px;
}
.faq__item-answer>p, .faq__item-answer a, .faq__item-answer ul li{
	    line-height: 150%;
        color:#BCC1C9;
 }
}