.itep{
    background: linear-gradient(135deg,#f8fffe,#eef8f7);
    position: relative;
    overflow: hidden;
}

.itep h1{
    text-align:center;
    color:#226865;
    font-weight:700;
    margin-bottom:35px;
    position:relative;
}

.itep h1::after{
    content:'';
    width:120px;
    height:4px;
    background:#226865;
    position:absolute;
    left:50%;
    bottom:-10px;
    transform:translateX(-50%);
    border-radius:10px;
}

.table{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.table thead{
    background:linear-gradient(90deg,#226865,#2f8a84);
}

.table th{
    color:#fff;
    font-size:17px;
    padding:18px;
    letter-spacing:.5px;
}

.table td{
    padding:16px;
    vertical-align:middle;
    transition:.4s;
}

.table tbody tr{
    opacity:0;
    transform:translateY(50px);
}

.table tbody tr.show{
    opacity:1;
    transform:translateY(0);
    transition:all .7s ease;
}

.table tbody tr:hover{
    background:#f3fbfa;
    transform:scale(1.01);
    box-shadow:0 5px 15px rgba(34,104,101,.15);
}

.table tbody tr:nth-child(even){
    background:#fafdfd;
}

.table a{
    background:#226865;
    color:#fff !important;
    padding:8px 18px;
    border-radius:25px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    display:inline-block;
}

.table a:hover{
    background:#3cb8bd;
    transform:translateY(-3px);
    box-shadow:0 5px 15px rgba(13,110,253,.3);
}

.table td:first-child{
    font-weight:700;
    color:#226865;
    text-align:center;
}

/* Background Floating Circles */

.itep::before{
    content:'';
    width:250px;
    height:250px;
    background:rgba(34,104,101,.08);
    border-radius:50%;
    position:absolute;
    top:-100px;
    left:-100px;
    animation:float1 8s infinite alternate;
}

.itep::after{
    content:'';
    width:300px;
    height:300px;
    background:rgba(34,104,101,.05);
    border-radius:50%;
    position:absolute;
    right:-120px;
    bottom:-120px;
    animation:float2 10s infinite alternate;
}

@keyframes float1{
    from{transform:translateY(0);}
    to{transform:translateY(40px);}
}

@keyframes float2{
    from{transform:translateY(0);}
    to{transform:translateY(-40px);}
}









