.one_mm_laminate_list_container{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    max-width: 760px;
}

.table-responsive{
    overflow-x:auto;
}

table{
    width:100%;
    border-collapse:collapse;
    min-width:850px;
}

thead{
    background:var(--logo-light-color);
    color:#fff;
}

thead th{
    padding:18px 20px;
    text-align:left;
    font-size:15px;
    font-weight:600;
    letter-spacing:.3px;
}

tbody tr{
    transition:.3s;
}

tbody tr:nth-child(even){
    background:#f8fafc;
}

tbody tr:hover{
    background:#eef6ff;
}

tbody td{
    padding:18px 20px;
    border-bottom:1px solid #e5e7eb;
    font-size:15px;
    color:#475569;
    vertical-align:top;
}

tbody td:first-child{
    font-weight:600;
    color:#0f172a;
}

@media(max-width:768px){

.section-title h2{
    font-size:28px;
}

.section-title p{
    font-size:15px;
}

thead th,
tbody td{
    padding:15px;
    font-size:14px;
}

}

::-webkit-scrollbar{
    height:8px;
}

::-webkit-scrollbar-thumb{
    background:#cbd5e1;
    border-radius:10px;
}

.one_mm_a_tag{
    text-decoration: underline;
    transition: all .3s ease-in;
}
.one_mm_a_tag:hover{
    color: var(--green-color);
}