.tab-contents {
    margin-bottom: 70px;
}

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

.tab-link {
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 10px 20px;
    color: #fff;
    display: inline-block;
    background-color: #2b2b2b;
    text-decoration: none;
    width: 12.2%;
}

.tab-link img {
    background-color: white;
}

.tab-link.is-active {
    text-decoration: underline;
    background-color: #464241;
}

.tab-link:last-child {
    margin-right: 0;
}

.tab-link:hover {
    text-decoration: underline;
    background-color: #464241;
}


/* Tab Content */
.tab-content {
    display: none;
    background-color: #464241;
}

.tab-content.is-active {
    display: block;
    padding: 20px 40px 40px;
}

.tab-content ul {
    padding-left: 14px;
    margin-top: 0;
    font-size: 18px;
}

.tab-content h4 {
    font-size: 30px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.tab-content a {
    display: inline-block;
    font-family: 'Lyyra Extended', Arial, sans-serif;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 3px 0;
    border-bottom: 1px solid;
    transition: 450ms ease-in-out;
    margin-right: 10px;
    margin-bottom: 10px;
}

.tab-content a:hover {
    color: #e7e7e7;
}

.tab-content span {
    font-size: 16px;
    color: #e7e7e7;
}

@media (max-width: 767px) {
    .tab-link {
        padding: 5px 5px 0;
        width: 20.3%;
    }

    .tab-contents {
        margin-bottom: 45px;
    }

    .tab-content.is-active {
        display: block;
        padding: 10px 15px 20px;
    }

    .tab-content ul {
        font-size: 16px;
    }

    .tab-content h4 {
        font-size: 22px;
        line-height: 1.2;
        margin-top: 0;
        margin-bottom: 15px;
    }
}

.tab-content--info {
    color: #F17E8D
}

.light-theme .tab-content--info {
    color: #e41c36;
}

