html, body {
	scroll-behavior: smooth !important;
}


.header-logo {
	padding-top: 15px;
	padding-bottom: 15px;
}
.header-logo img {
	height: 82px;
	object-fit: contain;
}
.mobile-logo img {
	width: 80%;
}

:root {
	--theme-color: #0C62AF;
	--theme-color2: #0B47A4;
	--theme-color3: #2CA2C4;
}

.header-layout4 .header-top::before {
	background-color: #D9D9D9;
}

select, .form-control, .form-select, textarea, input {
	border: 1px solid #8c8c8c;
}
select:focus, .form-control:focus, .form-select:focus, textarea:focus, input:focus {
	border-color: var(--theme-color2);
}

.contact-feature {
	background-color: #EDF1F7;
}
.contact-feature_icon img {
	filter: grayscale(1) brightness(0.8);
}

.header-layout2 .header-top .line-btn {
	color: white;
}
.header-layout2 .header-top a:hover {
	color: white;
}

.header-layout1 .sticky .menu-area {
	border-left: none;
	border-right: none;
	border-radius: 0;
}

.breadcumb-menu li:last-child {
	color: var(--theme-color3);
}

.hero-slider-1 .sub-title {
	color: var(--theme-color3);
}

.breadcumb-wrapper {
	padding: 190px 0 65px 0;
	top: -20px;
	position: relative;
	margin-bottom: -20px;
}

.cursor-pointer {
	cursor: pointer;
}

.fc {
	user-select: none;
}
.fc table {
	margin: 0;
}
.fc-event {
	cursor: pointer;
	transition: none;
}
.fc .fc-view-harness {
	min-height: 600px;
}
.fc .fc-daygrid-body {
	height: 100%;
}
.fc .fc-scrollgrid-section-body table {
	height: 100%;
}
.fc .fc-toolbar-chunk:last-of-type {
	white-space: nowrap;
}
.fc td {
	overflow: clip;
}

@media (max-width: 767px) {
	.fc-daygrid-dot-event .fc-event-title {
		display: none;
	}
}

button:disabled {
	background-color: #606060 !important;
}
.btn-secondary {
	background-color: #686868;
}

.course-card .price {
	font-size: 18px;
}

@media (min-width: 767px) {
	.header-layout4 .sticky-wrapper:not(.sticky) .logo-bg::after, .header-layout4 .sticky-wrapper:not(.sticky) .logo-bg::before {
		bottom: -40px;
	}
	.header-layout4 .sticky-wrapper:not(.sticky) .logo-bg::before {
		bottom: 0px;
	}
	.header-layout4 .sticky-wrapper:not(.sticky) .header-logo {
		margin-bottom: -40px;
		/*margin-left: -20px;*/
	}
}


@media (min-width: 1922px) {
	.header-layout4 {
		--logo-bg: 32%;
	}
}
@media (max-width: 1500px) {
	.header-layout4 {
		--logo-bg: 32%;
	}
}
@media (max-width: 1199px) {
	.header-layout4 {
		--logo-bg: 40%;
	}
}
@media (max-width: 991px) {
	.header-layout4 {
		--logo-bg: 70%;
	}
}

.card-2 {
	background-color: var(--white-color);
	box-shadow: 0px 0px 15px rgba(193, 193, 193, 0.15);
	border-radius: 10px;
	padding: 30px;
}

.th-carousel .th-hero-slide {
	height: 100vh;
}

.choose-feature {
	padding: 0 30px 30px 30px;
}
.copyright-text a {
	color: white;
}
.info-box_icon {
	color: white;
}

.project-card:hover .project-img-no-hover::before {
	display: none;
}

.feature-card:hover .feature-card_text a {
	color: var(--white-color);
}

/* Feature card responsive styles */
.feature-card {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.feature-card_text {
	margin-bottom: 20px;
}

@media (max-width: 575px) {
	.feature-card {
		padding: 20px;
	}
	.feature-card .box-title2 {
		font-size: 18px;
	}
	.feature-card_text {
		font-size: 14px;
	}
}

.line-icon img {
	width: 60px;
}

.movingCar {
	animation: pulseCar 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
	transform-origin: center center;
}

@keyframes pulseCar {
	0% {
		transform: scale(1);
		filter: brightness(1);
	}
	50% {
		transform: scale(1.03);
		filter: brightness(1.05);
	}
	100% {
		transform: scale(1);
		filter: brightness(1);
	}
}

/* Calendar container and loading styles */
.calendar-container {
	min-height: 600px;
	position: relative;
}

.loading-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.8);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 10;
}

.loading-spinner {
	width: 50px;
	height: 50px;
	border: 5px solid #f3f3f3;
	border-top: 5px solid var(--theme-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.feature-sec1 .line-btn {
	width: fit-content;
	margin: 0 auto;
}