.tabse{
    display:flex;
    /*justify-content:space-between;*/
    align-items:flex-end;
}

.tabo{
    width:100%;
    height:88px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    color:#007C7C;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    cursor:pointer;
    position:relative;
	border-radius: 20px 20px 0px 0px;
}

.tabo i{
    font-size:28px;
}

.tabo.active{
    background:#f4f4f4;
    color:#7c7c7c;
    height:115px;
    z-index:10;
}

.content{
    background:#f4f4f4;
    height:auto;
    display:block;
    justify-content:center;
    align-items:center;
    font-size:100px;
    font-weight:bold;
    color:#e6e6e6;
	border-radius: 0px 0px 20px 20px;
}

.tabo-content{
    display:none;
    background:none;
    min-height:300px;
    padding:30px;
}

.tabo-content.active{
    display:block;
}
@media screen and (max-width: 600px) 
{
	.tabse{
    display:block;
    /*justify-content:space-between;*/
    align-items:flex-end;
}
}