.tabArea {
    display: flex;
    justify-content: space-between;
}

.tabBtn {
    width: 34%;
    background : #014F66;
    color : #fff;
    text-align: center;
    padding : 1em;
    cursor: pointer;
    transition: all 0.2s ease 0s;
}
.tabBtn:hover{
    opacity:0.7;
}


.tabBtn:not(:last-child) {
    border-right : 1px solid #fff;
}

.tabBtn.active{
    background : #25A8D2;
}


.tab_target {
    display: none;
    transition: all 0.2s ease 0s;
}

.tab_target.active {
    display: block;
} 
