.tab-menu ul {
    width: 50%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.tab-menu ul li {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    margin-bottom: 20px;
    margin-right: 20px;
}

.tab-menu ul li a {
    display: inline-block;
    padding: 18px 26px;
    display: block;
    text-decoration: none;
    transition: 0.5s all;
    color: #6E7990;
    border-radius: 6px;
    cursor: pointer;
}

.tab-menu ul li a:hover {
    color: #6E7990;
    text-decoration: none;
    background: #EEF2FC;
}

.tab-menu ul li a.active {
    background: #EEF2FC;
    color: #6E7990;
    text-decoration: none;
}

.tab-box {
    display: none;
}

.tab-teaser {
    display: flex;
    width: 100%;
    margin: 0 auto;
}

.tab-main-box .tab-box img {
    width:100%
}

.tab-menu {
    width: 50%;
}

.tab-main-box {
    width: 50%;
}

.tab-title {
    font-family: 'Heebo',sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0 !important;
}

.tab-title-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.icon-tab {
    margin-right: 15px;
}

.tab-menu ul li a:hover .tab-title  {
    text-decoration: underline;
    color: #7093E5;
}

.tab-disc {
    margin-bottom: 0;
    font-family: 'Heebo',sans-serif;
    font-size: 16px;
    font-weight: 400;
}

@media only screen and (max-width: 1024px) {

    .tab-teaser {
        flex-direction: column;
    }

    .tab-menu, .tab-main-box, .tab-menu ul {
        width: 100% !important;
    }

}

