.tabs-container {
    background: linear-gradient(to bottom, #31506F 0%, #223446 100%);
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}

.tabs-container:after {
    content: "";
    position: absolute;
    left: 0.1rem;
    top: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(to right, #fcd30b 0%, #1E63AD 80%);
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
}

.tab-button>span {
    font-weight: 100;
    font-size: 1.5rem;
    float: left;
    margin: 0.5rem;
}

.tab-button>h3 {
    padding: 0 0 0 1rem;
    white-space: break-spaces;
    text-align: left;
    margin: 0;
}

.tab-button {
    flex: 1;
    border: none;
    background: #f0f0f0;
    cursor: pointer;
    font-size: 1rem;
    color: white;
    padding: 1rem;
    background: transparent;
    display: flex;
    /* Enable flex layout */
    align-items: flex-start;
    /* Align content to top */
    justify-content: flex-start;
    /* Align horizontally left */
}

.tab-button.active {
    position: relative;
    background: linear-gradient(to bottom, #0C1D2E 0%, #2D4A66 80%);
}

.tab-button.active:after {
    content: "";
    position: absolute;
    left: 2rem;
    bottom: 0;
    height: 5px;
    width: 80%;
    background: linear-gradient(to right, #fcd30b 0%, #1E63AD 80%);
}

.tab-button.active>h3 {
    font-weight: bold;
}

.tab-content {
    color: #fff !important;
    display: none;
    padding: 4rem;
    font-weight: 100 !important;
}

.tab-content.active {
    display: block;
}

.tab-content>h3,
.tab-content>p {
    margin-bottom: 1rem;
    font-weight: 100;
}

.tab-content>ul,
.tab-content>ol {
    padding-left: 1.5rem;
}


.tab-content>ul>li {
    list-style-type: disc;
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.tab-content>ol>li {
    list-style-type: decimal !important;
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.tab-content>ol>li::marker {
    font-size: 24px;
}

.tab-content>.points>ul>li {
    margin-bottom: 2rem;
}

.tab-content>.points>ul>li>h3 {
    font-weight: 100;
}

.tab-content>.points>ul>li>h3>.arrow {
    display: inline-block;
    margin-right: 1rem;
    vertical-align: middle;

    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #000;
}

@media (max-width:1281px) {

    .tab-content>ul>li,
    .tab-content>ol>li,
    .tab-content>ol>li::marker {
        font-size: 1.25rem;
    }

    .tab-button>span {
        font-size: 1.25rem;
    }

    .tab-button>h3 {
        padding: 0 0 0 0.3rem;
    }
}

@media (max-width: 961px) {
    .tab-content {
        padding: 2rem 4rem;
    }

    .tab-button {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 481px) {

    .tab-content>ul>li,
    .tab-content>ol>li,
    .tab-content>ol>li::marker {
        font-size: 1rem;
    }

    .tab-content {
        padding: 2rem;
    }

    .tab-button>h3 {
        padding: 0 0 0 0.1rem;
    }

    .tab-button>span {
        font-size: 1rem;
    }
}

@media (max-width:321px) {
    .tab-button>span {
        font-size: 0.75rem;
    }
}