.knowledge {
    display: flex;
    width: 100%;
    max-width: 1512px;
    margin-bottom: 32px;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

.knowledge-wrapper {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 20px;
    background-color: #fff;
    border-radius: 20px;
}

.knowledge-visual-large {
    display: none;
}

.knowledge-visual-large img {
    display: none;
}

.knowledge-main-heading {
    margin-top: 12px;
    margin-bottom: 20px;
}

.knowledge-accordion-wrapper {
    display: flex;
    flex-direction: column;
}

.knowledge-accordion-section {
    display: flex;
    flex-direction: column;
    padding: 24px 16px;
    border-radius: 8px;
}

.knowledge-accordion-section:not(.opened) {
    display: flex;
    flex-direction: column;
    padding: 0 16px;
    border-radius: 8px;
}

.knowledge-accordion-section.opened {
    background-color: #F8F7F5;
}

.knowledge-accordion-section:not(.opened):hover {
    background-color: #EAE9E6;
    cursor: pointer;
}

.knowledge-accordion-section img {
    max-width: 100%;
}

.accordion-section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.knowledge-accordion-section.opened h4 {
    margin-top: 24px;
    margin-bottom: 8px;
}

.knowledge-accordion-section:not(.opened) .accordion-section-head {
    padding: 24px 0 24px;
}

.knowledge-accordion-section:not(.opened, :last-child) .accordion-section-head {
    border-bottom: 1px solid #EAE9E6;
}

.accordion-section-head p {
    margin-bottom: 8px;
}

.accordion-section-head .accordion-plus {
    width: 24px;
    height: 24px;
    margin-left: 40px;
    cursor: pointer;
}

.knowledge-accordion-section.opened svg {
    display: none;
}

.knowledge-accordion-section:not(.opened) .knowledge-accordion-image {
    display: none;
}

.knowledge-accordion-section:not(.opened) .accordion-section-text {
    display: none;
}

.knowledge-accordion-image {
    text-align: center;
    position: relative;
}

.knowledge-image-gradient {
    position: absolute;
    width: 100%;
    height: 8%;
    background: linear-gradient(360deg, #F8F7F5 7.43%, rgba(248, 247, 245, 0) 100%);
    bottom: 0;

}

@media only screen and (min-width: 992px) {
    .knowledge {
        padding-right: 40px;
        padding-left: 40px;
    }

    .knowledge-wrapper {
        flex-direction: row;
        padding: 0 64px;
        border-radius: 32px;
    }

    .knowledge-visual-large {
        display: flex;
        width: 50%
    }
    .knowledge-visual-large .section-opened {
        display: flex;
        width: 100%;
        height: auto;
        align-self: center;
    }

    .knowledge-accordion {
        display: flex;
        flex-direction: column;
        padding-bottom: 64px;
        padding-top: 64px;
        justify-content: space-between;
        width: 50%;
    }

    .knowledge-accordion-image {
        display: none;
    }

    h3.knowledge-main-heading {
        font-size: 48px;
        line-height: 48px;
    }

    .knowledge-accordion-section.opened h4 {
        margin-top: 0;
    }
}