.custom-accordion {
    width: 100%;
    margin: auto;
}

.custom-accordion .accordion-item {
    border-radius: 4px;
    background: #FFF;
    box-shadow: 0px 4px 0px 0px rgba(121, 185, 174, 0.38);
    border-radius: 5px;
    overflow: hidden;
}

.custom-accordion .accordion-header {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 2.625rem 5.625rem 2rem 1.875rem;
    background-color: #fff;
    position: relative;
}

.custom-accordion .accordion-header:after {
    content: "";
    width: 56px;
    height: 58px;
    position: absolute;
    right: 1.875rem;
    top: 50%;
    background: url("../assets/images/arrow-circle.svg") no-repeat center center;
    background-size: contain;
    transform: translate(0,-50%);
}

.custom-accordion .accordion-item.active .accordion-header:after {
    background: url("../assets/images/arrow-circle-active.svg") no-repeat center center;
    background-size: contain;
}

.custom-accordion .accordion-header img {
    max-width: 200px;
    width: auto;
    height: auto;
    display: block;
    margin-right: 2.5rem;
    flex-shrink: 0;
    max-height: 51px;
}

.custom-accordion .accordion-header h3 {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem;
    color: #66CB66;
    max-width: 135px;
}

.custom-accordion .accordion-content {
    display: none;
    padding: 0px 1.875rem 1.25rem;
    background: white;
    position: relative;
}

.custom-accordion .accordion-content:before {
    content: "";
    width: 72px;
    height: 3px;
    display: block;
    background: #66CB66;
    margin-bottom: 30px;
    left: -30px;
    position: relative;
}

.custom-accordion .accordion-content p{
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5625rem;
    color: #2E3C50;
}

@media (max-width: 768px){
    .custom-accordion .accordion-header:after {
        width: 40px;
        height: 40px;
        right: 1rem;
    }

    .custom-accordion .accordion-header img {
        max-width: 140px;
        margin-right: 1rem;
        max-height: 51px;
    }

    .custom-accordion .accordion-header {
        padding: 2.5rem 4rem 2.5rem 1rem;
    }
}
