section.model-list ul.models-container {
  list-style-type: none;
}
section.model-list ul.models-container li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
section.model-list ul.models-container li:hover {
  /*background-color: var(--white);
  box-shadow:  0 0 15px rgba($color: #000000, $alpha: 0.1);*/
}
section.model-list ul.models-container li:hover h6 {
  color: var(--highlight-color);
  text-decoration: underline;
}
section.model-list ul.models-container .content-box .box-content h6 {
  font-size: 20px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
section.model-list ul.models-container .content-box .box-content p {
  font: var(--small-font);
}
@media (max-width: 64rem) {
  section.model-list .designs-container ul li {
    width: 50%;
  }
}
@media (max-width: 47.9375rem) {
  section.model-list .designs-container ul li {
    width: 100%;
  }
}