.tab {
    display: none;
}

.tab:checked:nth-of-type(1)~.tab__content:nth-of-type(1) {
    opacity: 1;
    -webkit-transition: .5s opacity ease-in,.2s transform ease;
    transition: .5s opacity ease-in,.2s transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.tab:checked:nth-of-type(2)~.tab__content:nth-of-type(2) {
    opacity: 1;
    -webkit-transition: .5s opacity ease-in,.2s transform ease;
    transition: .5s opacity ease-in,.2s transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.tab:checked:nth-of-type(3)~.tab__content:nth-of-type(3) {
    opacity: 1;
    -webkit-transition: .5s opacity ease-in,.2s transform ease;
    transition: .5s opacity ease-in,.2s transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.tab:first-of-type:not(:last-of-type)+label {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.tab:not(:first-of-type):not(:last-of-type)+label {
    border-radius: 0;
}

.tab:last-of-type:not(:first-of-type)+label {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.tab:checked+label {
    background-color: transparent;
    color: #414042;
    border-bottom: #00B2D7 5px solid;
    cursor: default; }
    @media(max-width: 1000px) {
        .tab:checked+label {
            width:100%;
            display:block; 
            height:auto; 
            border-bottom: none;
            margin: 0 auto;
            border-left: #00B2D7 5px solid;
            padding-left:0; }}

.tab:checked+label:hover {
    /* box-shadow: 0 -1px 0 #fff inset; */
}

.tab-wrap {
    max-width:100%;
    text-align: center;
    padding-top: 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: 1;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; 
    align-items: center;
    justify-content: center;
  }
.tab_label {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    text-decoration: none;
    color: #00839E;
    font-family:"TTMono-Bold";
    text-align: center;
    -webkit-transition: .3s background-color ease,.3s box-shadow ease;
    transition: .3s background-color ease,.3s box-shadow ease; }
    @media(max-width: 1000px) {
        .tab_label {
            padding: 10px 0;
            width:100%;
            display:block; 
            height:auto; 
            text-align: center;}}

.tab+label:hover {
    /* background-color: #f9f9f9;
    box-shadow: 0 1px 0 #f4f4f4 inset; */
}

.tab__content {
    padding: 25px 0px;
    position: absolute;
    width: 100%;
    z-index: -1;
    opacity: 0;
    left: 0;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px); }
    /* @media(max-width: 1000px) {
        .tab__content {
            }} */

.tab__content h5 {
    text-align: left; }

.tab-wrap label {
    padding: 0 50px;
    height:100%; }
    @media(max-width: 1000px) {
        .tab-wrap label {
            padding: 10px 0; 
            width: 100%; }}