.behind_section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(226, 226, 226);
    /* border: 1px solid red; */
}

.behind_section .right_behind{
        width: 100%;
        height: 100vh;
       clip-path: polygon(39% 0, 100% 0, 100% 100%, 80% 100%);
    background-color: rgb(1, 54, 124);
    position: relative;
}


.behind_section  .font_section{
    width: 90vw;
    height: 550px;
    background-color: rgb(226, 226, 226);
    box-shadow: 0px 0px 25px 4px rgb(73, 72, 72);
    position: absolute;
    border-radius: 10px;
    overflow: hidden;
}

.behind_section  .font_section .heading{
    font-size: 25px;
    color: #0d3c78;
    padding: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;

}


/* .behind_section  .font_section .table_section{
    width: 100%;
    border: 1px solid red;
} */

.behind_section  .font_section .table_section .tbody{
  width: 100%;
    height: 55vh;
    position: absolute;
    overflow: scroll;
    scrollbar-width: none;
    /* border: 1px solid red; */
  
}

.behind_section  .font_section .table_section table {
    width: 90%;
    margin: auto;
    border-collapse: collapse;
    text-align: center;
    font-size: 16px;
}

 .behind_section  .font_section .table_section table thead tr {
    background: #0d3c78;
    color: #fff;
}

 .behind_section  .font_section .table_section table thead tr th, td {
    padding: 12px 10px;
  width: 16.2vw;
}

 .behind_section  .font_section .table_section table tbody tr {
    background: #ffffff;

}

 .behind_section  .font_section .table_section table tr:hover {
    background: #779cc7;
    transition: 0.3s;
}

 .behind_section  .font_section .table_section table td {
    border: 1px solid #ccc;
}

 .behind_section  .font_section .table_section table th {
    border: none;
}