.navbar-nav li a{
    font-weight: 700;
}


.wrapper {
    padding: 1%;
    width: 80%;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}
.col-4 {
    /* width: 18%; */
    background-color: grey;
    margin: 1em;
    padding: 2% ;
    float: left;
    width: 100%!important;
}
.clearfix {
    float: none;
    clear: both;
}
.tbl-full {
    width: 100%;
}

.tbl-form {
    width: 30%;
}

table tr th {
    border-bottom: 1px solid black;
    padding: 1%;
    text-align: left;

}
.error{
    color: red;
}
table tr td {
    padding: 1%;
    white-space: nowrap!important;
}

.footer {
    background-color: #ff4757;
    color: white;
}
.parent {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;


}

.child {
    display: grid;


}

@media (max-width:768px) {
    .parent {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:480px) {
    .parent {
        grid-template-columns: repeat(1, 1fr);
    }
}