/* =======================
   Loader
======================= */
.loader {
	border: 16px solid #f3f3f3;
	border-top: 16px solid #174bb0;
}

/* =======================
   Banner / Slider
======================= */
.banner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
}
.banner-slider {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
}
.banner-slider .swiper-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0; /* hidden by default */
	z-index: 1;
	transition: opacity 0.8s ease;
	pointer-events: none; /* block interactions */
}
.banner-slider .swiper-slide.active {
	opacity: 1;
	z-index: 2;
	pointer-events: auto; /* allow clicks */
}
.banner-section-two .banner-content p::after {
	background: -webkit-linear-gradient(
		right,
		rgba(255, 255, 255, 0.1) 0%,
		#4171ff 100%
	);
	width: 13.5%;
}
.banner-section-two .banner-content p::before {
	background: -webkit-linear-gradient(
		right,
		#4171ff 0%,
		rgba(255, 255, 255, 0.1) 100%
	);
	width: 13.5%;
}
.inner-banner-section .banner-content .title span {
	color: #1234ff;
}

/* =======================
   Breadcrumb
======================= */
.breadcrumb {
	background-color: #004ce8;
}
.breadcrumb-area {
	margin-top: -45px;
}

/* =======================
   Background Overlays
======================= */
.bg-overlay-red:after {
	background-color: rgba(0, 36, 255, 0.6); /* 60% opacity */
}
.bg-overlay-base:after {
	background-image: linear-gradient(
		335deg,
		#194497 15%,
		rgba(25, 25, 25, 0) 100%
	);
}

/* =======================
   Scrollbar
======================= */
::-webkit-scrollbar-button {
	background: white;
}
::-webkit-scrollbar-track {
	background: #0033ff;
}
::-webkit-scrollbar-thumb {
	background: white;
}

/* =======================
   Links
======================= */
a {
	color: #ffffff;
	transition: all 0.3s ease;
}
a:focus,
a:hover {
	text-decoration: none;
	color: #174bb0;
}

/* =======================
   Footer Social
======================= */
.footer-social li a:hover {
	background-color: #174bb0;
	border: 1px solid #174bb0;
	color: #ffffff;
}

/* =======================
   About / Section Header
======================= */
.about-icon::before {
	background-color: #174bb0;
}
.section-header .section-title span {
	color: #174bb0;
}

/* =======================
   Slider Controls
======================= */
.slider-next,
.slider-prev {
	border: 1px solid #174bb0;
	color: #174bb0;
}
.slider-next:hover,
.slider-prev:hover {
	border: 1px solid transparent;
	background-color: rgba(23, 75, 176, 0.6);
	color: #174bb0;
}

/* =======================
   Header Menu
======================= */
.header-section-two .header-bottom-area .navbar-collapse .main-menu li a:hover {
	color: #174bb0;
}
.header-section-two
	.header-bottom-area
	.navbar-collapse
	.main-menu
	li
	a::before {
	background-color: #174bb0;
}

/* =======================
   Scroll To Top
======================= */
.scrollToTop.active {
	width: 130px;
}

/* =======================
   Custom Table
======================= */
.custom-table thead tr th {
	color: #000000;
}
.custom-table thead tr {
	background: #ffffff;
}

/* =======================
   Trainer Thumb
======================= */
.trainer-thumb::before {
	border: 2px solid #194497;
}
.trainer-thumb .trainer-overlay .share-icon {
	background-color: #194497;
}
.trainer-thumb .trainer-overlay .social-list li i {
	color: #194497;
	background-color: #ffffff;
}
.trainer-thumb .trainer-overlay .social-list li a:hover {
	color: #194497;
	background-color: #ffffff;
}
.trainer-thumb img {
	width: 100%;
	overflow: hidden;
	transition: all 0.5s;
	height: 350px;
}

/* =======================
   Images
======================= */
img {
	max-width: 100%;
	height: auto;
	object-fit: cover;
}

/* =======================
   Hero Video Section
======================= */
.hero-video-section {
	position: relative;
	width: 100vw;
	min-height: 65vh;
	height: 100vh;
	max-height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-bg-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	pointer-events: none;
}
.hero-video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #00102ca7; /* note: one version had rgba(0,0,0,0.6) */
	z-index: 2;
}
.hero-video-section > *:not(video):not(.hero-video-overlay) {
	position: relative;
	z-index: 3;
}

/* =======================
   Service Section
======================= */
.service-section {
	margin-top: 0;
	position: relative;
	z-index: 9;
}

/* =======================
   Buttons
======================= */
.btn--base {
	background: #ffffff;
	border: 2px solid #ffffff;
	color: #000000;
	margin-bottom: 30px;
}
.btn--base:hover,
btn-base:focus {
	color: #ffffff;
	background: #194497;
}

/* =======================
   Contact Section
======================= */
.contact-icon-area::before {
	background-image: none;
}
.contact-icon-area .contact-icon {
	background-color: #2d5aff;
}
.contact-content p a {
	color: #357ae8;
}

/* =======================
   Feature Section
======================= */
.feature-section--style .feature-item .feature-content .title span {
	color: #174bb0;
}
.feature-section--style .feature-item .feature-icon-area .feature-icon {
	background-color: #174bb0;
}

/* =======================
   Responsive
======================= */
@media (max-width: 768px) {
	.hero-video-section {
		min-height: 300px;
		height: 100vh;
	}
}
