@charset "UTF-8";

ul.tab-list {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 0;
    align-content: center;
    padding: 0;
    margin: 0;
}

ul.tab-list li.tab {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

li.tab .btn {
    width: 100%;
    height: clamp( 60px, 7.292vw, 140px );
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    padding: 0;
    align-items: center;
    justify-content: space-evenly;
    font-size: 26px;
    text-transform: none;
    font-weight: 600;
    letter-spacing: normal;
}

li.tab .btn .aWrap {
    display: flex;
    flex-direction: row;
    align-content: stretch;
    align-items: center;
    column-gap: 32px;
    text-transform: uppercase;
    font-weight: 500;
}

li.tab .btn::after {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 23px;
    transition: all .5s ease;
}

li.tab .btn img {
    width: clamp(25px, 2.917vw, 56px);
    height: clamp(25px, 2.917vw, 56px);
}

li.tab.item-1 .btn {
    background-color: #1e2f58;
    color: #f8f8f8;
    border-bottom: 2px solid rgb(248 248 248 / 15%);
}

li.tab.item-2 .btn {
    background-color: #dae0ee;
    color: #1e2f58;
    border-bottom: 2px solid rgb(49 61 120 / 15%);
}

li.tab .btn:hover::after, 
li.tab .btn.active::after {
    transform: rotate(90deg);
    transition: all .5s ease;
}

.tab_content {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 140px 0 125px;
}

#tab-1.tab_content {
    background-color: #1e2f58;
    color: #f8f8f8;
}

#tab-2.tab_content {
    background-color: #dae0ee;
    color: #151b36;
}

.tCont {
    padding: 0 138px;
    margin-bottom: 60px;
    /* color: #151b36; */
}

.tCont h2 {
    font-size: clamp( 36px, 2.813vw, 54px );
    text-transform: unset;
    margin-bottom: 32px;
    color: #f8f8f8;
}

#tab-2 .tCont h2 {
    color: #1e2f58;
}

.tCont h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #49c3d8;
    margin: 16px auto 0;
}

#tab-2 .tCont h2::after {
    background-color: #1e2f58;
}

ul.listCon {
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    column-gap: min(13.802vw, 265px);
}

ul.listCon li {
    display: inline-flex;
    width: 35%;
    flex-wrap: wrap;
    flex-direction: row;
    border-bottom: 2px solid #f8f8f833;
    padding-bottom: 26px;
    margin-bottom: 24px;
}

#tab-2 ul.listCon li {
    border-color: #313d782b;
}

ul.listCon li:nth-of-type(5), ul.listCon li:nth-of-type(6) {
    border-bottom: 0;
}

ul.listCon li a {
    font-size: 22px;
    font-weight: 500;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    color: inherit;
}

ul.listCon li a::after {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 18px;
}

@media ( max-width: 1024px ) {
    button.tab {
        width: 100%;
        height: 120px;
        display: inline-flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        padding: 0;
        align-items: center;
        justify-content: space-evenly;
        font-size: 26px;
        text-transform: none;
        font-weight: 600;
        letter-spacing: normal;
    }

    .tCont p {
        padding-bottom: 40px;
        margin-bottom: 0px
    }

    button.tab.item-1 {
        background-color: #1e2f58;
        color: #f8f8f8;
        border-bottom: 2px solid rgb(248 248 248 / 15%);
    }

    .tabbed .tabBlock .tab-item button.tab {
        border-radius: 0px;
    }

    button.tab.item-2 {
        background-color: #dae0ee;
        color: #313D78;
        border-bottom: 2px solid rgb(49 61 120 / 15%);
    }

    button.tab .aWrap {
        display: flex;
        flex-direction: row;
        align-content: stretch;
        align-items: center;
        column-gap: 32px;
    }

    button.tab .aWrap::after {
        content: '\f054';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        font-size: 23px;
        transition: all .5s ease;
    }

    button.tab:hover .aWrap::after, 
    button.tab.active .aWrap::after {
        transform: rotate(90deg);
        transition: all .5s ease;
    }

    button.tab img {
        width: 56px;
        height: 56px;
    }

    .tContain.panel {
        display: block !important;
        height: 0;
        padding: 0;
        margin-bottom: 0;
        transition: height .75s ease;
    }

    .tContain.panel.show {
        height: fit-content;
        transition: height .75s ease;
    }

    .tCont {
        padding: 0;
        margin-bottom: 0;
    }

    .tab_content {
        padding: 56px 0 90px;
    }
}

@media ( max-width: 768px ) {
    ul.listCon {
        flex-direction: column;
    }

    ul.listCon li {
        width: 90%;
    }

    ul.listCon li:nth-of-type(5) {
        border-bottom: 2px solid #f8f8f833;
    }
}