.tab {
    overflow: hidden;
    background-color: transparent;
}
.tab span {
    font-size: 30px;
    margin-bottom: 10px;
}
.tab div {
    width: 100%;
}

/* Style the buttons inside the tab */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    color: #FFFFFF;
    width: 33%;
    line-height: 15px;
    text-transform: uppercase;
    font-size: 10px;
    height: 100px;
    min-height: 100px;
    margin-bottom: 20px;
}

/* Change background color of buttons on hover */
.tab button:hover {
    border-bottom: 1px;
    border-left: 0px;
    border-top: 0px;
    border-right: 0px;
    border-style: solid;
    border-color: #FFFFFF;
}

/* Create an active/current tablink class */
.tab button.active {
    border-bottom: 1px;
    border-left: 0px;
    border-top: 0px;
    border-right: 0px;
    border-style: solid;
    border-color: #FFFFFF;
}

.tab_01 {
    overflow: hidden;
    background-color: transparent;
}
.tab_01 span {
    font-size: 30px;
    margin-bottom: 10px;
}
.tab_01 div {
    width: 100%;
}
.tab_01 button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    color: #FFFFFF;
    width: 25%;
    line-height: 15px;
    text-transform: uppercase;
    font-size: 10px;
    height: 100px;
    min-height: 100px;
    margin-bottom: 20px;
}
.tab_01 button:hover {
    border-bottom: 1px;
    border-left: 0px;
    border-top: 0px;
    border-right: 0px;
    border-style: solid;
    border-color: #FFFFFF;
}

.tab_01 button.active {
    border-bottom: 1px;
    border-left: 0px;
    border-top: 0px;
    border-right: 0px;
    border-style: solid;
    border-color: #FFFFFF;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
    z-index: 0 !important;
    position: relative;
}

.tabcontent_01 {
    display: none;
    padding: 6px 12px;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
    z-index: 0 !important;
    position: relative;
}

@media all and (min-width: 768px) {
}
@media all and (min-width: 1024px) {
    .tab button {
        width: 160px;
        font-size: 12px;
        height: 100px;
        min-height: 100px;
    }
    .tab_01 button {
        width: 96px;
        font-size: 10px;
        height: 100px;
        min-height: 100px;
    }
}

/* Fade in tabs */
@-webkit-keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}