/*Service css*/

  .hero-title {
    font-size: 41px;
    font-weight: 800;
    text-align: center;
    margin-top: 0;
    padding-top: 6rem;
  }
  
  .section-heading {
    font-size: 41px;
    text-align: center;
  }
  
  @media (max-width: 768px) {
    .section-heading {
      font-size: 36px;
    }
  }
  
  @media (max-width: 567px) {
    .section-heading {
      font-size: 32px;
    }
  }

.service-card {
    padding: 1rem;
    border-radius: .8rem;
    background-color: var(--white-color);
}

.service-img {
    width: 100%;
}

.service-card img {
    width: 40px;
    height: 40px;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
}
table th, td{
  /* padding-left: 12px; */
  padding: 16px 0 16px 12px;
  border-radius: .5rem;
}

/*---------------------*/
  
.table100.ver th {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  text-align: left;

  background: transparent;
}

.table100.ver td {
  font-family: 'Mulish', sans-serif;
  font-size: 15px;
  color: var(--secondary-black);

  background-color: var(--secondary-color);
}

.table100.ver .table100-body tr {
  /* overflow: hidden;  */
  border-bottom: 10px solid var(--white-color);
  border-radius: 10px;
}

.table100.ver .table100-body table { 
  border-collapse: separate; 
  border-spacing: 0 10px; 
}
.table100.ver .table100-body td {
    border: solid 1px transparent;
    border-style: solid none;
    padding-top: 10px;
    padding-bottom: 10px;
}
.table100.ver .table100-body td:first-child {
    border-left-style: solid;
    border-top-left-radius: 10px; 
    border-bottom-left-radius: 10px;
}
.table100.ver .table100-body td:last-child {
    border-right-style: solid;
    border-bottom-right-radius: 10px; 
    border-top-right-radius: 10px; 
}

.table100.ver tr:hover td {
    color: var(--white-color);
  background-color: var(--primary-color);
  cursor: pointer;
  transition-duration: 0.5s;
}

.table100.ver .table100-head th {
  padding-top: 16px;
  padding-bottom: 16px;
}

/*---------------------------------------------*/

.table100.ver {
  overflow: scroll;
}