
 #accordion {
      display: flex;
      width: 100%;
      height: 300px;
      overflow: hidden;
    }
    
     .accordion-item {
      flex: 1;
      position: relative;
      background-size: cover;
      background-position: center;
      transition: flex 0.5s ease-in-out;
      cursor: pointer;
      
    }

    .accordion-overlay {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background-color: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .accordion-overlay h2 {
      color: white;
      text-align: center;
      padding: 1rem;
      font-size: 1.25rem;
      font-weight: bold;
    }

    .accordion-item.active .accordion-overlay {
      opacity: 1;
    }

    .accordion-item.active {
      flex: 5;
    }
/*home page*/
/*        .highlight-section {*/
/*            padding: 20px;*/
/*        }*/

/*        .curriculum-section {*/
/*            margin-bottom: 20px;*/
/*            padding: 20px;*/
/*            border: 1px solid #ddd;*/
/*            border-radius: 5px;*/
/*            background-color: #f8f8f8;*/
/*        }*/

/*        .curriculum-section h5 {*/
/*            background-color:#a34aa3;*/
/*            color: white;*/
/*            padding: 10px;*/
/*            border-radius: 5px;*/
/*            margin-bottom: 20px;*/
/*        }*/

/*        .highlight-section img {*/
/*            width: 100%;*/
/*            height: auto;*/
/*        }*/

/*        .custom-heading {*/
/*            position: relative;*/
            /*padding-left: 30px; */
            /*font-size: 1.25rem; */
/*            line-height: 1.5;*/
/*        }*/

/*        .custom-heading::before {*/
           
/*            position: absolute;*/
/*            left: 0;*/
            /*color: black; */
/*        }*/

        .table-custom {
            width: 100%;
            margin-bottom: 1rem;
            color: #212529;
            background-color: transparent;
            border-collapse: collapse;
        }

        .table-custom th,
        .table-custom td {
            padding: 0.75rem;
            vertical-align: top;
            border-top: 1px solid #dee2e6;
        }

        .table-custom th {
            vertical-align: bottom;
            border-bottom: 2px solid #dee2e6;
        }

        .table-custom td {
            border-bottom: 1px solid #dee2e6;
        }
        
           .custom-heading {
            position: relative;
           
            font-size: 1.25rem; /* Equivalent to h5 size */
            line-height: 1.5;
        }

        .custom-heading::before {
            
            position: absolute;
            left: 0;
            color: black; /* Adjust color as needed */
        }
        
  


.event-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f1f1f1;
    padding: 16px;
}

.event-date .day {
    font-size: 18px;
    color: #555;
}

.event-date .date {
    font-size: 48px;
    color: white;
    background-color: #ff6666; 
    /*background-color:purple!important;*/
    padding: 20px;
    border-radius: 8px;
}

.event-details {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-time {
    background-color: #ffcc00;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    color: white;
    font-weight: bold;
    align-self: start;
}

.event-title h2 {
    margin: 16px 0 8px;
    font-size: 24px;
    color: #333;
    text-align:left!important;
    margin-right:10px;
}

.event-venue {
    font-size: 14px;
    color: #777;
    margin-bottom: 16px;
}

.event-description p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.event-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
}

.event-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

    
.calendar-dropdown {
    display: none;
        }
        
.dropdown-menu {
   display: none;
        }
        
        
.hidden {
            display: none;
        }
        
        
        
        
