*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.core-icon {
    padding: 0px;
    text-align: center;
    width: auto;
    display: inline-block;
}

.title {
    font-family: inherit;
    font-size: 2rem;
    font-weight: 600;
    line-height: inherit;
    color: #252b46;
}

.paragraph {
    font-family: inherit;
    font-size: 1rem;
    font-weight: normal;
    line-height: inherit;
    color: #9194a1;
}

.main .tab {
    width: 100%;
    height: auto;
    padding-top: 40px;
}

.main .tab-menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-bottom: none;
    transition: all 0.3s ease;
}

.main .tab-menu-link {
    position: relative;
    overflow: hidden;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: inherit;
    cursor: pointer;
    width: 19%;
    height: auto; 
    padding-top:20px;
    padding-bottom:10px;
    border-bottom: none;
    color: #777;
    background: #9e9e9e2b;
    transition: all 0.3s ease;
    border-radius: 4px;
   
    text-align: center;
    text-decoration: none;
}


    .main .tab-menu-link::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        z-index: 2;
    }

    .main .tab-menu-link.active  {
        bottom: 0px;
        z-index: 0;
        overflow: hidden;
        border-bottom: none;
        color: #252b46 !important;
        background: #03a9f41a;
    }


.main .tab-bar {
    padding: 2.5rem 0;
    overflow: hidden;
    background: #ffffff;
}

.main .tab-bar-content {
    display: none;
    width: 100%;
    min-height: 10rem;
    transition: all 0.3s ease;
}

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

.content-split {
    width: 50%;
    float: left;
}
