.course-details h3 {
    font-size: 24px;
    margin: 30px 0 15px 0;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
  }
  
  .course-details h3:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background: #eef0ef;
    bottom: 0;
    left: 0;
  }
  
  .course-details h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 1px;
    background: #5fcf80;
    bottom: 0;
    left: 0;
  }
  
  .course-details .course-info {
    align-items: center;
    background: #f6f7f6;
    padding: 10px 15px;
    /* height:10vh; */
    width:30em;
    /* margin-bottom: 15px; */
  }
  
  .course-details .course-info h2 {
    font-weight: 400;
    /* font-size: 16px; */
    margin-left: 50px;
    font-family: "Poppins", sans-serif;
  }
  
  .course-details .course-info p {
    margin-top: 50px;
    font-weight: 600;
  }
  
  .course-details .course-info a {
    color: #5fcf80;  
  /*  color: #657a6d;*/
  }
  .row{
    margin-right: -15px;
    margin-left: -15px;
  }
  /*--------------------------------------------------------------
  # Cource Details Tabs
  --------------------------------------------------------------*/
  .cource-details-tabs {
    overflow: hidden;
    padding-top: 0;
  }
  
  .cource-details-tabs .nav-tabs {
    border: 0;
  }
  
  .cource-details-tabs .nav-link {
    border: 0;
    padding: 12px 15px 12px 0;
    transition: 0.3s;
    color: #37423b;
    border-radius: 0;
    border-right: 2px solid #e2e7e4;
    font-weight: 600;
    font-size: 15px;
  }
  
  .cource-details-tabs .nav-link:hover {
    color: #5fcf80;
  }
  
  .cource-details-tabs .nav-link.active {
    color: #5fcf80;
    border-color: #5fcf80;
  }
  
  .cource-details-tabs .tab-pane.active {
    -webkit-animation: fadeIn 0.5s ease-out;
    animation: fadeIn 0.5s ease-out;
  }
  
  .cource-details-tabs .details h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #37423b;
  }
  
  .cource-details-tabs .details p {
    color: #777777;
  }
  
  .cource-details-tabs .details p:last-child {
    margin-bottom: 0;
  }


  .course-section{
    background-color: #dddddd;
}

.course-section .box-container{
    display:flex;
    flex-wrap: wrap;
    gap:2rem;
}

.course-section .box-container .box{
    flex:1 3 15rem;
    border-radius: .5rem;
    overflow:hidden;
    background-color: white;
    padding:.5rem;
}

.course-section .box-container .box img{
    height:10rem;
    width:100%;
    object-fit: cover;
}
.course-section .box-container .box .content{
    margin-top:23px;
    align-items: center;
    text-align: center;
    margin-bottom: 23px;
}
.course-section .box-container .box .content .get-started-btn:hover{
    background-color: orangered;
    color:white;
}
.course-section .box:hover{
    box-shadow: 0 1rem 2rem rgb(78, 76, 76);

}


table {
    border-collapse: collapse;
    width: 100%;
  }
  
  td, th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
  }
  
  th{
    background-color: #dddddd;
  }


/* Study Material css*/
.syllabus_studymat .sm_accordion {
    background-color: #e9e8e8;
    color: black;
    font-weight: bold;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
  }
  
 .syllabus_studymat  .a, .sm_accordion:hover {
    background-color: orangered;
    color: white;
  }
  
  .sm_accordion:after {
    content: '\002B';
    color: #000000;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }
  
  .syllabus_studymat.a:after {
    content: "\2212";
  }
  
  .panel {
    padding: 0 18px;
    background-color: rgb(255, 255, 255);
    max-height: 0;
    overflow: hidden;
    border: 1px solid black;
    transition: max-height 0.2s ease-out;
  }