html,
body {
	max-width: 100%;
}
:root {
	--main-color: #21d0b3;
	--main-color-alt: #21d0b3;
	--main-transition: 0.3s;
	--main-padding-top: 100px;
	--main-padding-bottom: 100px;
	--section-background: #ececec;
}
.carousel-inner img {
	width: 100%;
	height: 90vh;
	object-fit: cover;
}

.carousel-inner {
	width: 100%;
}

.carousel-item {
	position: relative;
}

.carousel-item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / 30%);
}

.carousel {
	overflow: visible;
}

.carousel-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-button {
	/* Assuming the button is styled here */
	font-size: 0.6em;
	/* Adjust size as required */
}

@media (max-width: 768px) {
	.carousel-text {
		font-size: 0.3em;
		/* Reduced the font-size for smaller screens */
	}

	.carousel-button {
		padding: 5px 10px;
		font-size: 0.3em;
		/* Reduced the font-size for smaller screens */
	}

	.carousel,
	.carousel-inner {
		height: 0;
		margin-top: 75px;
		padding-bottom: 100%;
		background-color: transparent;
	}

	.carousel {
		margin-bottom: -100px;
		background-color: transparent;
	}

	.carousel-inner img {
		position: relative;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: transparent;
	}

	.carousel-item::before {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background-color: transparent;
	}
}
/* Start video */

/* End video */
/* Start numbers */
.key-points__list {
	list-style-type: none;
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 0;
	margin: 0;
}

.key-points__list-item {
	position: relative;
	padding: 50px;
	transition: transform 0.3s ease-in-out;
}

.key-points__list-item:hover {
	transform: scale(1.05);
}

.key-point__text {
	display: inline-block;
	position: relative;
	padding-left: 70px;
}

.key-point__text i {
	color: #21d0b3;
	font-size: 48px;
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.key-point__text h5,
.key-point__text p {
	margin: 0;
	transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
	color: #024172;
}

.key-point__text h5 {
	font-size: 36px;
	color: #024172;
}

.key-points__list-item:hover .key-point__text i {
	color: #024172;
	transform: translateY(-50%) scale(1.1);
}

.key-points__list-item:hover .key-point__text h5,
.key-points__list-item:hover .key-point__text p {
	color: #024172;
}

@media only screen and (max-width: 600px) {
	.key-points__list {
		flex-direction: column;
		align-items: center;
	}

	.key-points__list-item {
		padding: 20px;
	}

	.key-point__text {
		padding-left: 50px;
	}

	.key-point__text i {
		font-size: 36px;
	}
	.key-point__text .fa-globe {
		margin-left: -20px;
	}
	.key-point__text h5 {
		font-size: 28px;
	}

	.key-point__text p {
		font-size: 16px;
	}
}
/* End numbers */

/* Industries */
.industry_image::before {
	background-color: rgb(0 0 0 / 30%);
}
.industry_image {
	background-color: rgb(0 0 0 / 30%);
}

/* Industries */
/* Start About */

.content {
	display: flex;
	position: relative;
	/* Add relative positioning context */
	flex-wrap: wrap;
}

.image-container {
	flex-basis: 80%;
	padding: 15px;
	max-height: 600px;
}

.text-container {
	padding: 15px;
	background-color: rgba(255, 255, 255);
	width: 640px;
	height: 500px;
	position: absolute;
	/* Make the text container positioned relative to the nearest positioned ancestor */
	left: 51%;
	/* Stick to the right side of the nearest positioned ancestor */
	top: 45%;
	/* Centered vertically */
	transform: translateY(-50%);
	/* Centering fix */
}

.img-fluid {
	max-width: 100%;
	height: auto;
	display: revert;
}
img.d-block.img-fluid.lead {
	display: revert !important;
}
.mBContainer {
	display: flex;
	justify-content: center;
	align-items: center;
}
/* Optional: for responsiveness */
@media (max-width: 768px) {
	.image-container {
		flex-basis: 100%;
		position: static;
	}
	.text-container {
		flex-basis: 100%;
		position: static;
		/* Disable absolute positioning for small screens */
		margin-top: 200px;
	}
}

#lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

#lightbox img {
	max-width: 90%;
	max-height: 90%;
}

@media (max-width: 767px) {
	.about img {
		bottom: -60px;
		margin-top: -60px;
	}
}
/* End About */
/* Start Video */
.videoContainer {
	position: relative;
	max-width: 100vw;
	overflow: hidden;
}

.videoText {
	position: absolute;
	top: 3.5%; /* Adjust as per your design requirement */
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	background: #21d0b3;
	padding: 10px 20px;
	border-radius: 15px;
	text-align: center;
}

.videoText i {
	font-size: 30px;
	margin-right: 10px;
}

.video {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%; /* Aspect ratio: 9/16 = 0.5625 */
}

.video video {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

@media only screen and (max-width: 768px) {
	.videoText {
		font-size: 14px;
		top: 1%; /* Adjust as per your design requirement */
		width: 80%;
	}

	.videoText i {
		font-size: 20px;
	}
}

/* End Video */

/* Start Contact */
.contact {
	padding-top: 160px;
	perspective: 1500px;
}

.contact .content {
	display: flex;
	justify-content: space-between;
	background: linear-gradient(to bottom, #f5f5f5, #e0e0e0);
	padding: 20px;
	box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	transition: transform 0.5s;
	margin-top: 25px;
}

@media (max-width: 767px) {
	.contact .content {
		flex-direction: column;
	}
}

.contact .content form,
.contact .content .info {
	padding: 20px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
	transition: transform 0.5s, box-shadow 0.5s;
}

.contact .content form:hover,
.contact .content .info:hover,
.contact .content:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.contact .content form {
	flex-basis: 70%;
	/* Modified */
}

.contact .content .info {
	flex-basis: 25%;
	/* Modified */
}

.contact .content form .main-input {
	padding: 10px;
	/* Modified */
	display: block;
	border: 1px solid #21d0b3;
	margin-bottom: 15px;
	/* Modified */
	width: 100%;
	font-size: 14px;
	/* Modified */
}

.contact .content form .main-input:focus {
	outline: none;
}

.contact .content form textarea.main-input {
	height: 100px;
	/* Modified */
}

.contact .content form input[type="submit"] {
	background-color: #efefef;
	color: #21d0b3;
	padding: 10px 20px;
	/* Modified */
	border: none;
	display: flex;
	margin-left: auto;
	text-transform: uppercase;
	cursor: pointer;
	font-size: 14px;
	/* Modified */
	border-radius: 8px;
}

@media (max-width: 767px) {
	.contact .content .info {
		order: -1;
		text-align: center;
	}
}

.contact .content .info h4 {
	text-transform: uppercase;
	margin-bottom: 30px;
	font-weight: 500;
	font-size: 18px;
	/* Modified */
	color: #024172;
}

.contact .content .info .phone {
	display: block;
	color: #21d0b3;
	margin-bottom: 10px;
}

.contact .content .info h4:nth-of-type(2) {
	margin-top: 40px;
	/* Modified */
}

@media (max-width: 767px) {
	.contact .content .info h4:nth-of-type(2) {
		margin-top: 30px;
	}
}

.contact .content .info address {
	color: #21d0b3;
	line-height: 2;
}

@media (max-width: 767px) {
	.contact .content .info address {
		margin-bottom: 40px;
	}
}

/* End Contact */
/* Start accordion*/
.accordion-button {
	justify-content: space-between; /* Space between text and icon */
	border: solid 0.2px !important;
}

.accordion-button:not(.collapsed) {
	background-color: white !important;
}
.accordion-body {
	padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

/* Industries */
.wrapper-full {
	position: relative;
	width: 100%;
	padding: 0px 0px;
	margin: 0 auto;
}
.four-button-links {
	text-align: center;
}

.buttons {
	position: relative;
	width: 100%;
	display: grid;
	grid-auto-flow: column;
	-ms-grid-columns: 1fr 1fr 1fr 1fr;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.button {
	position: relative;
	width: 100%;
	padding-top: 100%;
	overflow: hidden;
}

.button .background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.button .background .background-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.button .text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	display: -ms-grid;
	display: grid;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.button .text h3 {
	color: #ffffff;
}

.button:hover .background {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.button:hover .background .background-overlay {
	opacity: 1;
}

.button:hover .btn {
	background-color: #bc7e00;
}
.ind-btn {
	display: inline-block;
	background-color: #21d0b3;
	font-size: 14px;
	color: #ffffff;
	padding: 10px 20px;
	border-radius: 100px;
	text-decoration: none;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.ind-btn:hover {
	background-color: #1ab09f;
}

@media (max-width: 1023px) {
	.four-button-links .buttons {
		-ms-grid-columns: 1fr 1fr;
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 699px) {
	.four-button-links .buttons {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}
}
.carousel-container {
	width: 100%;
	overflow: hidden;
}

.carousel-wrapper {
	display: flex;
	width: calc(200% + 100px); /* Ensure this is wide enough for all items */
	animation: scroll 20s linear infinite;
	/* Prevent wrapping onto a new line: */
	flex-wrap: nowrap;
}
@keyframes scroll {
	0% {
		transform: translateX(0%);
	}
	100% {
		transform: translateX(-50%);
	}
}

@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	75% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(-100%);
		animation-timing-function: step-start;
	}
}

/* Adjustments for responsive behavior */
@media only screen and (max-width: 1200px) {
	.carousel-wrapper {
		width: calc(300% + 100px);
	}
	@keyframes scroll {
		75% {
			transform: translateX(-200%);
		}
		100% {
			transform: translateX(-200%);
			animation-timing-function: step-start;
		}
	}
}

.carousel-wrapper {
	display: flex;
	transition: transform 1s ease-in-out; /* Adjusted for smoother transitions */
}
.button {
	min-width: calc(100% / 7);
}
.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 24px;
	background-color: #21d0b3;
	color: #fff;
	border: none;
	padding: 10px;
	cursor: pointer;
	transition: background-color 0.3s ease-in-out;
}

.carousel-btn-prev {
	left: 10px;
}

.carousel-btn-next {
	right: 10px;
}
.sliderContent img {
	width: 20%; /* to show 5 images at a time */
	height: auto;
	object-fit: cover;
}
.sliderContent {
	width: 100%;
}
.sliderSection {
	position: relative;
}
.sliderSection::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / 30%);
}
.mySlider {
	overflow: visible;
}
/* Add/modify styles based on your new class names and restyle accordingly. */

/* Your existing media queries and additional styling */
body {
	margin-top: 20px;
}
.popular_courses {
	padding-bottom: 100px;
}
@media (max-width: 991px) {
	.popular_courses {
		padding-bottom: 40px;
	}
}
.popular_courses .owl-item {
	opacity: 0;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	padding: 0px 10px;
	padding-bottom: 30px;
}
.popular_courses .owl-item.active {
	opacity: 1;
}
.popular_courses .owl-nav {
	display: none;
	justify-content: space-between;
	position: absolute;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
	left: -11%;
}
@media (max-width: 991px) {
	.popular_courses .owl-nav {
		display: none !important;
	}
}
.popular_courses .owl-nav .owl-prev img,
.popular_courses .owl-nav .owl-next img {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.popular_courses .owl-nav .owl-prev img:hover,
.popular_courses .owl-nav .owl-next img:hover {
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	-ms-filter: grayscale(0%);
	-o-filter: grayscale(0%);
	filter: grayscale(0%);
}

.single_course {
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.single_course .course_head {
	position: relative;
	overflow: hidden;
}
.single_course .course_head img {
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.single_course .price {
	position: absolute;
	top: -34px;
	right: 15px;
	z-index: 2;
	color: #002347;
	display: inline-block;
	height: 65px;
	line-height: 65px;
	width: 65px;
	text-align: center;
	border-radius: 50px;
	background: #fdc632;
	font-family: "Rubik", sans-serif;
	font-weight: 500;
	font-size: 20px;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.single_course .price img {
	margin-top: -8px;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.single_course .course_content {
	padding: 30px 26px;
	background: #f9f9ff;
	position: relative;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.single_course .course_content .tag {
	padding: 2px 21px;
	font-size: 13px;
	color: #fff;
	background: #002347;
	text-transform: uppercase;
}
.single_course .course_content h4 {
	font-size: 20px;
	font-weight: 500;
}
.single_course .course_content h4 a {
	color: #002347;
}
.single_course .course_content p {
	margin: 0;
}
.single_course .course_content .course_meta {
	margin-top: 25px;
}
.single_course .course_content .course_meta .meta_info a {
	color: #002347;
}
.single_course .authr_meta img {
	width: 45px !important;
	height: auto;
	display: inline-block !important;
}
.single_course .authr_meta span {
	color: #002347;
	font-weight: 500;
}
.single_course:hover {
	box-shadow: 0px 10px 30px rgba(0, 35, 71, 0.1);
}
.single_course:hover .course_head img {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}
.single_course:hover .course_content {
	background: #fff;
}
.single_course:hover .price {
	background: #002347;
	color: #fdc632;
}
.single_course:hover h4 a {
	color: #fdc632;
}

.single_course {
	position: relative;
	overflow: hidden;
}

.course_head {
	position: relative;
}

.img-fluid {
	width: 100%;
	height: auto;
}

.text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.title h3 {
	color: white;
	margin-bottom: 10px;
}

.background-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	transition: background-color 0.3s ease;
}

.owl-carousel .owl-item img {
	display: block;
	width: 100%;
	height: 300px;
}
