	.myCarousel {
		position: relative;
		/* width: 300px; */
		/* height: 200px; */
		overflow: hidden;
		/* border: 1px solid #ccc; */
		border-radius: 10px;
		/* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
	}

    .slides {
      display: flex;
      transition: transform 0.3s ease-in-out;
      transform: translateX(0);
    }

	.slide {
		min-width: 80%;
		height: 100%;
		/* display: flex; */
		justify-content: center;
		align-items: center;
		background: #ffffff;
		/* border-right: 1px solid #ccc; */
		margin: 0 10%;
	}
    .controls {
      position: absolute; 
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
    }

    .controls button {
      background: #007bff;
      color: #fff;
      border: none;
      padding: 10px;
      border-radius: 50%;
      cursor: pointer;
      opacity: 0.8;
    }

    .controls button:hover {
      opacity: 1;
    }
	.section-title span {
	font-size: 17px;
	text-transform: none;
	color: inherit !important;
	font-weight: 500;
}

.about-section {
	padding: 2em 0 125px;
}

h2,h4 {
	margin-bottom:2em
}

ul > li,
.section-title > ol li {
	border-top: 10px solid #00524A;
	box-shadow: 0 0 10px silver;
	padding: 2em;
	margin-bottom:1em;
	color:#333;
}

	.section-title ol {
		list-style:none
	}
	ul > li {
		list-style: none
	}

	ul li h3 {
		text-align:left !important
	}
	
	summary {
		margin-bottom:1em
	}
	
	details {
		padding: 10px;
	}

	details summary {
		cursor: pointer;
		transition: margin 500ms ease-out;
	}

	details[open] summary {
		margin-bottom: 10px;
	}

thead th {
	background:#00524A;
	color:white
}

.nowrap {white-space:nowrap}