.course {
    width: 70%;
    margin: auto;
    text-align: center;
    padding-top: 5px;
  }
  
  .course1 {
    width: 80%;
    margin: auto;
    text-align: center;
  
    display: none;
  }

  .row {
    margin-top: 1%;
    display: flex;
    justify-content: space-between;
  }
  
  .row1 {
    margin-top: 1%;
    display: flex;
    justify-content: space-between;
  }
  
  .course-col {
    flex-basis: 16%;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 10px 12px;
    box-sizing: border-box;
   
  }
  
  .course-col1 {
    flex-basis: 47%;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 5%;
    justify-content: center;
    box-sizing: border-box;
    
  }

  .course-col:hover {
    box-shadow: 0 0 20px 0px rgba(161, 135, 94, 0.5);
  }
  
  .course-col img {
    width: 100%;
  }
  .course-col1 img {
    width: 100%;
  }

  @media (max-width: 700px) {
    * {
      overflow-x: hidden;
    }
    .row {
      flex-direction: column;
    }
  
    .course1 {
      width: 90%;
      margin: auto;
      text-align: center;
      padding-top: 5px;
      display: block;
    }
  
   .course{
     display: none;
   }
  }