.ed-section-faq{
    display: flex;
    margin: 120px 0;
}
.ed-section-faq .ed-left-column{
    width: 40%;
    position: relative;
}
.ed-section-faq .ed-left-column .ed-background{
    position: absolute;
    top: 0;
    left: -30%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: -1;
    opacity: 0.05;
}
.ed-section-faq .ed-left-column .ed-background:first-child{
    transform: scale(0.5);
}
.ed-section-faq .ed-image-top{
    border-radius: 2000px;
    width: 150px;
    height: 150px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 10%;
}
.ed-section-faq .ed-image-middle{
    border-radius: 2000px;
    width: 400px;
    height: 400px;
    object-fit: cover;
    position: absolute;
    top: 20%;
    left: 40%;
}
.ed-section-faq .ed-image-bottom{
    border-radius: 2000px;
    width: 100px;
    height: 100px;
    object-fit: cover;
    position: absolute;
    top: 60%;
    left: 10%;
}
.ed-section-faq .ed-right-column{
    width: 60%;
}
.ed-section-faq .ed-right-column > .ed-content{
    padding: 0 80px;
}
.ed-section-faq .ed-right-column .ed-heading{
    margin: 0;
    font-family: "Sora";
    font-size: 50px;
    font-weight: 300;
    max-width: 600px;
}
.ed-section-faq .ed-faq{
    margin-top: 40px;
}
.ed-accordion{
    border-bottom: 1px solid #dad9dc;
    padding: 20px 0;
}
.ed-accordion .ed-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    z-index: 0;
}
.ed-accordion .ed-header .ed-title{
    margin: 0;
}
.ed-accordion .ed-content{
    max-height: 0;
    padding: 0 10px;
    height: auto;
    transition: 0.3s all ease-out;
    overflow: hidden;
}

@media screen and (max-width: 768px){
    .ed-section-faq{
        margin: 40px 0 80px 0;
    }
    .ed-faq .ed-left-column{
        display: none;
    }
    .ed-faq .ed-right-column{
        width: 100%;
    }
    .ed-section-faq .ed-right-column > .ed-content{
        padding: 0 20px;
    }
    .ed-section-faq .ed-right-column .ed-heading{
        font-size: 40px;
    }
    .ed-accordion .ed-header{
        column-gap: 10px;
    }
}
