.tab .tabs_wrapper {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.tab .nav-link {
    border: 0;
    color: #141c2d;
    font-weight: 700;
}

.tab .nav-link.active {
    background: #50a0f0;
    color: #fff;
}

.tab .tab-content {
    background: #fff;
    overflow: hidden;
    padding: 20px;
}

.accordion {
    margin: 0 auto;
    max-width: 960px;
}

.accordion-item {
    background: none;
    border: 1px solid #50a0f0;
    overflow: hidden;
}

.accordion-item:hover .accordion-button {
    color: #28385a;
}

.accordion-body {
    background: #fff;
    padding: 0 16px 16px;
}

.accordion-body> :last-child {
    margin-bottom: 0;
}

.accordion-button {
    background: #fff;
    color: #50a0f0;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    padding: 16px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .accordion-button {
        font-size: 22px;
    }
}

.accordion-button:not(.collapsed) {
    background: #fff;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #141c2d;
}

.accordion-button::after {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #50a0f0;
    color: #fff;
    content: "+";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: "FontAwesome";
    font-size: 10px;
    font-weight: 100;
    height: 24px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1;
    padding-top: 1px;
    width: 24px;
}