
.edc-card {
    width: 250px;
    height: 220px;
    overflow: hidden;
}
.edc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.edc-card:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

.edc-font-weight-400 {
    font-weight: 400 !important; 
  }
  
  .edc-font-color-white {
    color: #fff !important; 
  }
  .edc-font-color-black {
    color: #000 !important; 
  }

.edc-table {
    border-collapse: collapse;
    width: 100%;
}

.edc-table .tr .th, .edc-table .tr .td {
    border: 1px solid #adb5bd;
    padding: 8px;
}

.tr:nth-child(even) {
    background-color: Lightgray;
}

.edc-table-30 {
    border-collapse: collapse;
    width: 30%;
}

.edc-table-30 .tr .th, .edc-table-30 .tr .td {
    border: 1px solid #adb5bd;
    padding: 8px;
    text-align: left;
}

.edc-table-40 {
    border-collapse: collapse;
    width: 40%;
}

.edc-table-50 {
    border-collapse: collapse;
    width: 50%;
}

.edc-table-60 {
    border-collapse: collapse;
    width: 60%;
}

/* .edc-table-40 .tr .th, .edc-table-40 .tr .td {
    border: 1px solid #adb5bd;
    padding: 8px;
    text-align: left;
} */

.tr .th, .tr .td {
    border: 1px solid #adb5bd;
    padding: 8px;
    text-align: left;
}

col:nth-child(1) { width: 40%; }
col:nth-child(2) { width: 60%; }

