.all-courses-location-section {
  background: linear-gradient(90deg, #eaeaea, #fff, #eaeaea);
  padding: 0.5rem 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
.course-col {
  margin-bottom: 2rem;
}
.course-col-wrap {
  background-color: #fff;
  width: 100%;
  height: 100%;
  min-height: 275px;
  padding: 1.5rem 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.course-background {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s;
}
.course-background::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 75%);
}
.course-background img {
  height: 100%;
  object-fit: cover;
}
.course-col-wrap:hover .course-background {
  opacity: 0;
}
.course-content {
  position: relative;
  z-index: 2;
}
.course-col-wrap .course-content,
.course-col-wrap .course-content a {
  color: #fff !important;
}
.course-col-wrap:hover .course-content,
.course-col-wrap:hover .course-content a {
  color: #000 !important;
}
@media screen and (max-width: 767px) {
  .all-courses-location-section {
    flex-direction: column;
    text-align: center;
    background: #fff;
    box-shadow: none;
  }
  .all-courses-location-section .bellus-serif {
    margin: 1rem !important;
  }
  .location-selection,
  .location-selection select {
    width: 100%;
  }
  .course-col {
    padding-right: 2rem;
  }
  .course-col-wrap {
    min-height: 240px;
    border-color: transparent !important;
  }
  .course-background {
    opacity: 1;
  }
  .course-content,
  .course-content a {
    color: #fff;
  }
  .course-background img {
    width: 100%;
  }
  .course-background::after {
    background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.5) 75%);
  }
  .course-content .program-in-campus {
    width: 100%;
  }
  .program-in-campus.bellus-btn-arrow::after {
    float: right;
  }
}
