.accordion_content {
	background-color: #ffffff;
	font-family: Figtree, Poppins, arial;
	font-size: 16px;
	overflow: hidden;
    padding-left:10px;
}
	
.accordion_contentModule {
	margin-left: 25px;
    padding:5px 0;
/*	color: #0099FF;*/
    color: #333;
    cursor: pointer;
}

.accordion_contentAudience {
	margin-left: 35px;
    padding:5px 0;
/*	color: #0099FF;*/
    color: #333;
    cursor: pointer;
}

.accordion_contentTitle {
   padding-left:25px; 
   padding-bottom:25px;
	font-family: Figtree, Poppins, arial;
   color: #4971aa;
   font-size:16px;
}

.accordion_content h2 {
	margin: 15px 0 5px 10px;
	font-family: Figtree, Poppins, arial;
	color: #0099FF;
}

.accordion_content p {
	line-height: 150%;
	padding: 15px 10px 15px 10px;
}

.slick-outline {
	width:100%;
    align-items: center!important;
    justify-content: center!important;
	padding:0 0px;
    transition: height 5s ease-in-out;
}
.slick-outline .slick-list {
    transition: height 1s ease-in-out;
}

.course-title .accordion-container {
    width: 75%;
    margin: 25px auto; /* Adjust margin as needed */
/*    padding: 25px; */
    background-color: #e8f0fd;;
    border-radius: 15px; /* Same rounded corners as before */
/*    box-shadow: 0 3px 30px rgba(0, 0, 0, 0.05); /* Same shadow as before */
    border: none; /* Remove any default borders */
    position: relative;
    overflow: hidden; /* Hide overflow initially */
    transition: max-height 0.75s ease-in-out; /* Smooth transition */
	border: 1px solid green;
	overflow: visible;

}

.accordion-container {
    width: 100%;
    max-width: none;
	border: 3px solid blue;
    background-color: #ede8f5; 
	overflow: visible;
}

.course-title .accordion-container .column-container {
    display: flex;
    gap: 50px;
    padding: 0;
    align-items: flex-start;
    justify-content: center;
    max-height: 500px;
	overflow: visible;
    transition: height 1.0s ease-in-out;
}

.column-container {
	width: 100%;
	margin: auto 0;
	border: 1px solid blue;
    background-color: #e8f0fd; 
	border-radius: 15px;
/*    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Softer shadow for columns */
}

    .blur-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
	height: 250px; /* Adjust the height to control the fade */
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ede8f5 80%, #ede8f5 100%);
    pointer-events: none;
}
    .course-title .accordion-container .accordion-trigger{
        z-index: 2;
        position: relative;
    }
.course-title .accordion-container .column1,
.course-title .accordion-container .column2 {
    flex: 1;
    background-color: #fff; 
    text-align: left;
    margin: 50px;
    padding: 25px;
    border-radius: 15px; /* Slightly round the corners of the columns */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Softer shadow for columns */
    border: 1px solid #efefef; /* Add a subtle border around each column */
}

.course-title .accordion-container .column1 {
    margin-right: 0px;
}
	
.course-title .accordion-container .column2 {
    margin-left: 0px;
}
	
/*.course-title .accordion-container .show-more { */
.show-more {
    width: 90%; 
    padding: 10px 0; /* Add some padding for a comfortable button */
    margin: 0px auto 25px auto; /* Center the button with some margin */
    background-color: transparent; /* Use the preferred blue color */
    color: #7091e6; /* White text color */
    border: 2px solid #7091e6; /* Remove any default borders */
    border-radius: 5px; /* Slightly round the corners */
    font-family: 'Poppins', Arial, sans-serif; /* Ensure Poppins font is used */
    font-size: 16px; /* Adjusted text size for readability */
    font-weight: 400; /* Semi-bold text */
    cursor: pointer; /* Change the cursor to pointer on hover */
    text-align: center; /* Center the text */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
    display: flex; /* Use flexbox for aligning icon and text */
    justify-content: center; /* Center the icon and text horizontally */
    align-items: center; /* Center the icon and text vertically */
	top: 0px;
}

.course-title .accordion-container .show-more i {
    margin-right: 8px; /* Space between the icon and the text */
    font-size: 14px; /* Adjust the icon size */
    vertical-align: middle; /* Align the icon with the text */
}

.course-title .accordion-container .show-more:hover {
    background-color: #7091e6; /* Darken the button slightly on hover */
	color: white;
}

/* Accordion Active State */
.course-title .accordion-container {
    overflow: visible; /* Ensure content beyond initial height is visible */
    transition: max-height 1.0s ease-in-out; /* Smooth transition */
}
.course-title .accordion-container.active .column-container{
    max-height: unset;
}

/*.bg-container {
    width: 100%;
    margin: 0;
    position: relative;
    /*    padding: 50px 125px; /* Add some padding if needed */
/*    min-height: 400px;
    /*    border-radius: 10px;*/
    /*    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);*/
/*    display: flex;
    align-items: center;
    overflow: hidden; /* Ensure pseudo-elements are contained */
/*}

.bg-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100%;
    background-image: url('/public/images/faq.jpg'); /* Background image */
    /*        background-position: 0% 75%; /* Adjustable background position */
/*    background-repeat: no-repeat; /* Prevents the background image from repeating */
    /*    filter: saturate(10%); /* Desaturate the background image */
/*    z-index: 0;
}
*/

/* Reset question counter for each accordion */
.accordion {
    counter-reset: question-counter;
}

/* Accordion question numbers */
.accordion-button::before {
    content: counter(question-counter);
    counter-increment: question-counter;
    background-color: #61adff; /* Active blue color */
    font-family: 'Poppins', Arial, sans-serif;
    color: white;
    width: 35px;
    min-width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex; /* Use flexbox to center content */
    justify-content: center; /* Horizontally center the number */
    align-items: center; /* Vertically center the number */
    text-align: center; /* Ensures text is centered */
    margin-right: 25px;
	font-size: 18px;
	line-height: 1.5;
	font-weight: 400;
}

/* Active state for accordion button */
.accordion-button:not(.collapsed)::before {
    /*   background-color: #007bff; /* Primary blue when active */
}

/* Inactive question number */
.accordion-button.collapsed::before {
    background-color: #e3f1ff; /* Light blue when inactive */
    color: #333; /* Darker gray text */
}

/* Left border for the answer section with space on top/bottom */
.accordion-body {
    position: relative; /* Ensure the pseudo-element is positioned relative to this container */
    padding: 50px;
    margin-left: 50px;
    margin-right: 100px;
	font-size: 18px;
	line-height: 1.5;
	font-weight: 400;
}

.accordion-body::before {
    content: '';
    position: absolute;
    left: 0; /* Position it on the left edge */
    top: 12.5%; /* Push it down 10% from the top for centering */
    height: 75%; /* Set the height to 80% of the container */
    width: 1px; /* Thickness of the border */
    background-color: #c3c3c3; /* Light gray color for the border */
}

/* Active question background and left border color */
.accordion-body.show {
    background-color: #e3f1ff; /* Light blue background for active state */
    border-left: 1px solid #e5f3ff; /* Blue border when active */
}

/* Custom CSS to reduce border and focus outline thickness */
.accordion-button {
    border-width: 1px !important;
}

.accordion-button:focus {
    box-shadow: 0 0 0 1px rgba(0, 123, 255, 0.5) !important;
}

/* Add a gray border to match the style when collapsed */
.accordion-button {
    border: none; /* Remove the borders */
}

mark {
    background-color: yellow; /* Default highlight color */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
    display: inline; /* Ensure it doesn't disrupt flow */
}

#closeNoResults {
    position: absolute;
    top: 10px; /* Adjust as needed */
    right: 375px; /* Adjust as needed */
    background: none;
    border: 1px solid #d0d0d0; /* Border color */
    border-radius: 50%; /* Makes it a circle */
    font-size: 26px;
    color: #d0d0d0;
    width: 40px; /* Adjust size */
    height: 40px; /* Adjust size */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow around the button */
}


/* Custom media queries for smaller screens */
@media (max-width: 768px) {
    .accordion-body {
        padding-left: 10px;
        padding-right: 10px;
    }
}


.subheadline-slide {
    font-family: Figtree, Poppins, Arial, Helvetica, sans-serif;
    font-weight: 600;
/*    letter-spacing: 1.15px; */
    font-size: 30px;
    line-height: 45px;
    text-decoration: none;
    color: #333;
/*    padding-top: 50px; *
    padding-bottom: 0.5em; */
    text-align: center;
    display: flex; /* Aligns children in a row */
    justify-content: center; /* Centers the whole line */
}

/* Initial hidden state of elements */
.slide-left {
    opacity: 0;
    transform: translateX(-100%);
}

.slide-right {
    opacity: 0;
    transform: translateX(100%);
}

.slide-up {
    opacity: 0;
    transform: translateY(100%);
}

/* Define animations */
@keyframes slideInHorizontal {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInVertical {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: translateY(0); }
}

/* Classes to add animations */
.animate-left {
    animation: slideInHorizontal 1s forwards;
}

.animate-right {
    animation: slideInHorizontal 1s forwards;
}

.animate-up {
    animation: slideInVertical 1s forwards;
}

.container{
    width:100%;
}
.tab-content {
    display: flex;
    justify-content: center;
    padding-top: 0px;
    margin-top: 20px;
    background-color: transparent;
    border-radius: 10px;
    font-family: Poppins, Arial, sans-serif;
    font-size: 18px;
    color: #ffffff;
    width: 100%;
    box-shadow: unset;
    z-index: 5;
}
.tab-content{
}
.tab-pane{
    width: 100%
}

.nav-container{
    width:100%;
    padding: 0 0px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
}
.nav-tabs{
    width: 100%;
}

.accordion-item:first-of-type {
    border-top-left-radius: unset;
    border-top: unset;
    border-top-right-radius: var(--bs-accordion-border-radius);
}

* {
    outline: 0px solid red !important;
}
.faq-section{
    display: flex; flex-direction: column;  text-align: left; align-items: flex-start; max-width: 1920px;
    flex-wrap: wrap;
    margin-bottom: 0px;
    line-height: 28px;
    color: #5f6368;
    font-family: "OpenSans", Arial, sans-serif;
    font-weight: 500;
    font-size: 18px;
}
.faq-header{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
