.courses-section {
  margin-top: 45px;
  margin-bottom: 70px;
  border-radius: 10px;
  box-shadow: 0px 10px 60px 0px #0000001f;
  .courses-section-head {
    font-size: 14px;
    font-weight: 600;
    padding-inline: 50px;
    padding-block: 30px;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: center;
    color: #253a7b;
    background-color: #fff;
    p {
      font-size: 18px;
    }
  }
  .search-area {
    display: -webkit-flex;
    justify-content: space-between;
    max-width: 379px;
    width:100%;
    border-bottom: 2px solid #efefef;
    padding-bottom: 6px;
    img{
        display:none;
    }
    input {
      border: 0;
    }
  }
}
.courses-items {
  padding-top: 30px;
  flex-direction: column;
}
.courses-items .course-item {
  color: #313131;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 50px;
  border-bottom: 2px solid #efefef;
  transition: 0.5s;
  &:hover {
    background-color: #f6f6f6;
  }
  span {
    border-radius: 50%;
    height: 27px;
    width: 27px;
    border: 1px solid #afafaf;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;

img{
    width:5px;
    
}
  }
}
.courses-items div:last-child {
  border-bottom: none;
}

@media screen and (max-width: 769px) {
  .courses-section {
    width: 100%;
    box-shadow: none;
    margin-block: 40px;
    .courses-section-head {
      gap: 32px;
      flex-direction:column;
    }
    .search-area {
      margin-bottom: 16px;
      width: 100%;
    }
    .courses-section-head {
      padding-inline: 6vw;
    }
  }
  .courses-items {
    padding-top: 0;
    .course-item {
      height: 70px;
      padding-inline: 6vw;
      span {
        flex-shrink: 0;
      }
    }
  }
}


