/* schedule-section */

.schedule-section{
    margin-top: 80px;
    margin-bottom: 80px;
    padding: 20px 0px;
    background-color: #fff;
    border-radius: 20px;
  }
  .schedule-section h1{
    color: #34346b;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e8e8e8;
  }
  
  .schedule-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .schedule-card{
    padding: 20px 10px;
    min-width: 146px;
    margin-left: 10px;
    margin-top: 20px;
    text-align: center;
    z-index: 1;
    position: relative;
   
  }
  
  .schedule-card .card-img{
    padding: 19px 15px 30px 10px;
    background: linear-gradient(#eae9f3, white 59%);
    border-radius: 100%;
    width: 144px;
    height: 144px;
    margin: 0px auto -53px auto;
  }
  
  .schedule-card .card-body{
    background-color: #eff3fa;
    padding: 0px 2px 11px 1px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: block;
    font-weight: bold;
    color: #575756;
    box-shadow: 0px 6px 14px rgb(0 0 0 / 5%);
    min-width: 198px;
  }
  
  .schedule-card .card-body span{
    display: block;
  }
  .schedule-card .card-body .title{
    padding-top: 20px;
  }
  .schedule-card .card-body p  {
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 100px;
    right: 20px;
    background: #34346b;
    color: white;
    padding: 0px;
    border: 0px solid;
    border-radius: 10px;
    font-size: 14px;
    width: 100px;
  }
  
  .schedule-card .card-body p span.name{
    color: white;
    padding: 2px 10px;
  }
  .schedule-card .card-body p span.number{
    display: inline;
    background: #29B3B4;
    border-radius: 10px;
    padding: 2px 10px;
    color: white;
  }
  
  .schedule-card .card-body span.title{
    color: #34346b;
    font-size: 16px;
  }
  
  .schedule-card .card-body span.date{
    color: #34346b;
    font-size: 20px;
    font-weight: bold;
  }
  
  .schedule-card::before{
    content: "";
    width: 93%;
    background-color: #afafaf;
    height: 1px;
    position: absolute;
    left: -79px;
    top: 150px;
    z-index: -1;
  }
  .schedule-card:last-child:before{
  display: none;
  }
  
  
  
  /* end schedule-section */
  
  
  @media only screen and (max-width: 500px) {
    .line-img{
      display: none;
  }
  .award-section{
    margin-top: 0px;
  }
  .goals-card {
    flex: 100%;
  }
  }
  
  @media only screen and (max-width: 426px) {

  .schedule-card::before {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    z-index: -1;
    width: 1px;
    background-color: #afafaf;
    height: 110%;
    top: 21px;
  }
  
  .schedule-card:after {
    right: auto;
    transform: translateX(0.25rem);
    top: -10%;
  }
  
  .schedule-section h1{
    font-size: 30px;
    margin-bottom: 50px;
  }
}
    /* end schedule-section */