.course-list {
  position: relative;
}

.course-list::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  transform: translate(-50%, -50%);
  background-image: url(../img/moto.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 300px 300px;
  opacity: 0.2;
  height: 300px;
  width: 300px;
}

.course-item {
  height: 400px;
  width: 400px;
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
}

.course-list svg {
  max-width: 100%;
}

.course-ux .course-color,
.course-ui .course-color {
  fill: #fb6b3e;
}

.course-front1 .course-color {
  fill: #0398df;
}

.course-front2 .course-color {
  fill: #2479c7;
}

.course-wordpress .course-color {
  fill: #6600ff;
}

.course-back1 .course-color {
  fill: #777082;
}

.course-back2 .course-color {
  fill: #484054;
}

.course-kid .course-color {
  fill: #e32d7c;
}

.course-item-content {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
}

.course-item-title {
  font-family: Oswald;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  text-align: right;
  text-transform: uppercase;
  color: #ffffff;
}

.course-item-title-description {
  font-family: Roboto;
  font-style: normal;
  font-size: 18px;
  text-align: right;
  color: #ffffff;
  margin-bottom: 50px;
}

.course-item-tag-list {
  font-family: Roboto;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  text-align: right;
  color: #ffffff;
}

.course-item-text {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 19px;
  color: #484054;
  margin-bottom: 20px;
  width: 160px;
  margin-top: 5px;
}

.course-item-left {
  width: 50%;
  text-align: right;
  padding-top: 100px;
  padding-right: 10px;
  box-sizing: border-box;
}

.course-item-right {
  width: 50%;
  text-align: left;
  padding-top: 100px;
  padding-left: 10px;
}

.course-item-price {
  font-family: Oswald;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  text-decoration-line: line-through;
  text-transform: uppercase;
  color: #0398df;
}

.course-item-discount-price {
  font-family: Oswald;
  font-weight: bold;
  font-size: 36px;
  color: rgb(223, 3, 101);
  width: 160px;
}

.course-item-link {
  font-family: Oswald;
  font-style: normal;
  font-weight: bold;
  font-size: 24px;
  line-height: 36px;
  text-transform: uppercase;
  color: #0398df;
  text-decoration: none;
  position: relative;
}

.course-item-link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: #0398df;
  transition: all 0.2s ease-in-out 0s;
  visibility: visible;
  transform: scaleX(1);
}

.course-item-link:hover::before {
  visibility: hidden;
  transform: scaleX(0);
}

@media screen and (min-width: 770px) {
  .course-list {
    display: flex;
    flex-wrap: wrap;
  }

  .course-item {
    width: 50%;
  }
}

@media screen and (min-width: 1100px) {
  .course-item {
    width: 33%;
  }

  .course-front1 {
    order: 1;
  }

  .course-back1 {
    order: 2;
  }

  .course-kid {
    order: 3;
  }

  .course-back2 {
    order: 6;
  }

  .course-ui,
  .course-ux {
    order: 4;
    width: 50%;
  }

  .course-front2 {
    order: 5;
  }

  .course-wordpress {
    order: 7;
  }
}
