.h-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.default-padding {
  padding: 10px 25px;
}

.highlight-container {
  max-width: 100%;
  margin-inline: auto;
}

.h-cards {
  display: grid;
  grid-template-columns: repeat(3, calc(33.3333% - 12px));
  align-content: center;
  gap: 2rem 1rem;
}

.h-card {
  cursor: pointer;
  transition: scale .4s;
  position: relative;
  box-shadow: -2px 8px 16px 0px rgba(0, 0, 0, 0.78);
  -webkit-box-shadow: -2px 8px 16px 0px rgba(0, 0, 0, 0.78);
  -moz-box-shadow: -2px 8px 16px 0px rgba(0, 0, 0, 0.78);
  z-index: 2;
  background: #fff;
  padding: 0px 30px;
  border-radius: 28px 28px 28px 0;
}

#highlight-cards {
  /*background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url("/wp-content/uploads/2023/07/H_fond-1.png")*/
}

.h-list-icon {
  display: inline-block;
  height: 1em;
  width: auto;
  line-height: 1;
  vertical-align: -0.15em;
}

.h-title {
  font-size: 1.9rem;
  font-family: Oswald, sans-serif;
  font-weight: 400;
  margin: 0px 0px 50px 0;
  color: #000;
  height: 40px;
}

.h-small-title {
  font-size: 0.875rem;
  font-family: Oswald, sans-serif;
  font-weight: 400;
  margin: 40px 0px 15px 0px;
  color: #000;
}

.h-list-text {
  font-size: 1.1rem;
  padding-left: 20px;
  font-weight: 400;
  color: #000;
}

.h-font {
  font-family: system-ui;
}

.h-body {
  height: 320px;
}

.h-footer {
  padding: 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.details-btn {
  padding: 10px 30px;
  background: #297d99;
  color: #fff!important;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 20px;
  border: 1px solid #01607f;
  font-size: inherit;
}

@media screen and (max-width: 1000px){
  .h-cards {
    grid-template-columns: repeat(2, calc(54.6666% - 42px))
  }
}

@media screen and (max-width: 768px){
  .h-cards {
    grid-template-columns: repeat(1, 100%)
  }
}