/* accordion-style.css */

.accordion {
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.accordion-item {
	border-bottom: 1px solid #ccc;
}

.accordion-item:last-child {
	border-bottom: none;
}

/* Styling for headers with alternating background colors */
.accordion-item:nth-child(odd) .accordion-header {
	background-color: #2DC6C1;
	color: #ffffff;
	font-weight: bold;
}

.accordion-item:nth-child(even) .accordion-header {
	background-color: #172B4D;
	color: #ffffff;
	font-weight: bold;
}

.accordion-header {
	padding: 15px;
	cursor: pointer;
	font-size: 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.accordion-header:hover {
	opacity: 0.9;
}

.caret {
	transition: transform 0.3s ease;
}

.accordion-content {
	display: none;
	padding: 15px;
	background-color: #fff;
	font-size: 14px;
}

.accordion-content.active {
	display: block;
}

/* Rotate caret when the section is expanded */
.accordion-header.active .caret {
	transform: rotate(180deg);
}
/* accordion-style.css */

/* Styling for the accordion container */
.accordioncontainer {
	background: url('/upload/scormremote/shutterstock_430375738_cropped.jpg') no-repeat center center;
	background-size: cover;
	padding: 20px;
	border-radius: 8px;
	width:100%;
	margin-top:30px;
}

/* Styling for H1 within the accordion container */
.accordioncontainer h1 {
	color: #000000;
	text-align: center !important;
	font-size: 2em;
	margin: 0;
}

.card-img[style*='data:image'] {
border:5px solid #172B4D;
background-image:url('https://scormremote.com/upload/scormremote/logo.png') !important;
}