.course {
  padding: 120px 0;
  min-height: calc(100vh - 40px);
}

.list-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.list-items .items-course {}

.list-items .items-course img {
  width: 100%;
}

@media screen and (max-width: 1100px) {
  .list-items {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (max-width: 800px) {
  .list-items {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .list-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

.group-register {
  display: flex;
  align-items: center;
  justify-content: end;
}

.group-register>input {
  background-color: #000;
  border: .1px solid #3c3c3c;
  outline: none;
  height: 32px;
  width: 300px;
  font-weight: 300;
  padding: 8px 15px;
  color: var(--color-base);
  /* margin-right: 4px; */
  font-size: 9pt;
  display: inline-block;
}

.group-register>button.btn-search {
  height: 32px;
  background-color: var(--color-hover-base);
  outline: unset;
  border: .1px solid #f92020;
  color: var(--color-base);
  font-size: 9pt;
  width: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
