.accordion-wrapper {
    max-width: 743px;
    margin: auto;
    .accordion {
        margin-bottom: 24px;
        border-bottom: 1px solid #d3d3d3;
        padding: 0 6px;

        .title {
            font-size: 22px;
            color: #354D82;
            font-weight: bold;
            font-family: $avenir;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 0 12px;
            cursor: pointer;
            .icon {
                &.hidden {
                    display: none;
                }
            }
        }
        .content {
            display: none;
            margin-bottom: 0;
        }
    }
}
