/* Base Styles */
:root {
	--primary: #E8491D;     /* Marathon orange */
	--secondary: #2B2D42;     /* Dark blue */
	--light: #F8F9FA;
	--color1:#3134BA;
	--color2:#B65E37;
	--color3:#3E4EEC;
	--color4:#F7680C;
}

@font-face {
	font-family: 'MyCustomFont';
	src: url('assets/fonts/AvenirLTStd-HeavyOblique.otf') format('otf');
	font-weight: bolder;
}

.color1 {
	color: var(--color1);
	font-weight: 900;
	font-family: 'MyCustomFont', sans-serif;
}

.color2 {
	color: var(--color2);
	font-weight: 900;
	font-family: 'MyCustomFont', sans-serif;
}

.color3 {
	color: var(--color3);
	font-weight: 900;
	font-family: 'MyCustomFont', sans-serif;
}

.color4 {
	color: var(--color4);
	font-weight: 900;
	font-family: 'MyCustomFont', sans-serif;
}







@keyframes slide {
	0%, 20% {
		opacity: 1;
	}

	25%, 100% {
		opacity: 0;
	}

}

.testimonial-slide {
	animation: slide 16s infinite;
}

.slide1 {
	animation-delay: 0s;
}

.slide2 {
	animation-delay: 4s;
}

.slide3 {
	animation-delay: 8s;
}

.slide4 {
	animation-delay: 12s;
}
.slide5 {
	animation-delay: 16s;
}
.slide6 {
	animation-delay: 20s;
}
.slide7 {
	animation-delay: 24s;
}
.slide8 {
	animation-delay: 28s;
}

.slider-height {
	height: 750px;
}

.image-height {
	width: 75%;
	margin-top: -150px
}

.banner_web {
	display: block !important;
}

.banner_mobile {
	display: none !important;
}

@media (max-width:766px) {
	.slider-height {
		height: 510px;
	}

	.image-height {
		width: 1200px;
		margin-top: 30px
	}

	.banner_web {
		display: none !important;
	}

	.banner_mobile {
		display: block !important;
	}

}

@media (min-width:766px) and (max-width:991px) {
	.banner_web {
		display: none !important;
	}

	.banner_mobile {
		display: block !important;
	}

	.slider-height {
		height: 530px;
	}

	.image-height {
		width: 100%;
		margin-top: 50px
	}

}

@media (min-width:1000px) and (max-width:1300px) {
	.slider-height {
		height: 630px;
	}

	.image-height {
		width: 100%;
		margin-top: 10px
	}

}

@media (min-width:1000px) and (max-width:1366px) {
	.marathon-slide-height {
		min-height: 824px;
	}

	.slider-height {
		height: 824px;
	}

	.image-height {
		width: 100%;
		margin-top: 15px
	}

}

.button-3d {
	background-color: #ff0000;     /* Bright red background */
	color: #ffffff;
	font-size: 30px;     /* Adjust size as needed */
	font-weight: bold;     /* Make the text stand out */
	padding: 10px 20px;     /* Add padding for button size */
	border: none;     /* Remove default border */
	border-radius: 5px;     /* Slightly rounded corners */
	box-shadow: 0 4px #cc0000;     /* Shadow for the 3D effect */
	cursor: pointer;     /* Change cursor to pointer on hover */
	transition: all 0.2s ease-in-out;     /* Smooth transitions */
}

.button-3d:active {
	box-shadow: 0 2px #cc0000;     /* Reduce shadow on click */
	transform: translateY(2px);     /* Create a pressed effect */
}

.btn-container {
	margin-top: -25px;     /* Default for mobile (no margin) */
}

@media (min-width:768px) {
	.btn-container {
		margin-top: 50px;         /* Add margin for larger screens */
	}

}

.custom-content-container {
	max-width: 600px;
	margin: 0 auto;
	text-align: justify;
	overflow: hidden;
}

#full-content1 {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-in-out;
}

#full-content1.open {
	max-height: 300px;     /* Adjust this value based on the full content height */
}

#full-content2 {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-in-out;
}

#full-content2.open {
	max-height: 300px;     /* Adjust this value based on the full content height */
}

.custom_button {
	cursor: pointer;
}

.slider {
	background: linear-gradient(to right, #F7680C, #3E4EEC);
	background: linear-gradient(to right, #ec866d, #eeae7e);      /* Background for better visibility */
	position: relative;
	max-width: 900px;
	width: 100%;
	height: 450px;     /* Fixed height for the slider */

	/* margin: auto; */
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;     /* Center content vertically */
	justify-content: center;
}

.slides {
	display: flex;
	transition: transform 0.5s ease-in-out;
	width: 300%;     /* Adjust based on the number of slides */
	height: 100%;     /* Ensure it matches the slider height */
}

.slide {
	flex: 1 0 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 40px;
	box-sizing: border-box;
	height: 100%;     /* Match parent container height */
}

.h2_slide {
	font-size: 24px;
	margin-bottom: 10px;
	color: white;
}

.p_slide {
	font-size: 19px;
	margin: 15px 0;
	max-width: 600px;
	line-height: 1.6;
	color: white;
}

.slide_btn {
	padding: 10px 20px;
	background: linear-gradient(to right, #F7680C, #feb47b);
	border: none;
	color: white;
	font-size: 16px;
	border-radius: 20px;
	cursor: pointer;
}

.prev, .next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	cursor: pointer;
	font-size: 18px;
}

.prev {
	left: 10px;
}

.next {
	right: 10px;
}

/* Base styling for the logo */
.logos {
	width: 320px;     /* Default size for desktop */
	height: auto;     /* Maintain aspect ratio */
	transition: all 0.3s ease-in-out;     /* Smooth transition when resizing */
}

.art-logo {
	width: 250px;     /* Default size for desktop */
	height: auto;     /* Maintain aspect ratio */
	transition: all 0.3s ease-in-out;     /* Smooth transition when resizing */
}

/* Larger logo for mobile devices */
@media (max-width:768px) {
	.logos {
		width: 200px;         /* Increase size for smaller screens */
	}

	.art-logo {
		width: 200px;
	}

}

/* Custom CSS with unique class names */
.custom-container {
	max-width: 1500px;
	margin: 0 auto;
	padding: 10px;
}

/* Hover Effects */
.custom-img-wrapper:hover {
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.custom-img-wrapper:hover img {
	transform: scale(1.08);
}

.custom-row {
	display: flex;
	gap: 8px;
}

.custom-col-main {
	flex: 1.2;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.custom-col-side {
	flex: 0.8;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.custom-row-small {
	display: flex;
	gap: 8px;
}

.custom-img {
	border-radius: 4px;
	transition: transform 0.3s ease;
	border: 1px solid #f0f0f0;
}

.custom-img:hover {
	transform: scale(1.03);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.custom-img-large {
	height: 250px;
	object-fit: cover;
	width: 100%;
}

.custom-img-medium {
	height: 160px;
	object-fit: cover;
	width: 100%;
}

.custom-img-small {
	flex: 1;
	height: 120px;
	object-fit: cover;
}

.custom-img-wide {
	height: 180px;
	object-fit: cover;
	width: 100%;
}

@media (max-width:768px) {
	.custom-row {
		flex-direction: column;
	}

	.custom-img-large, .custom-img-medium, .custom-img-small, .custom-img-wide {
		height: auto;
		max-height: 200px;
	}

}

.mobile-links {
	display: none !important;
}

@media (max-width:768px) {
	.mobile-links {
		display: flex !important;
	}

}

.split-section {
	padding-top: 150px;
	/* padding-bottom: 0px; */
	/* display: flex; */
	/* width: 100%; */
	/* min-height: auto; */
	/* margin-bottom: 0; */
}

.half-section {
	flex: 1;
	padding: 0px 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.static-image-section {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slider-container-section {
	width: 100%;
	height: 100%;
	position: relative;
}

.slider-section {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.slide-section {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	object-fit: cover;
}

.slide-section.active-section {
	opacity: 1;
}

.slider-controls-section {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.slider-dot-section {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: background-color 0.3s;
}

.slider-dot-section.active-section {
	background-color: white;
}

@media (max-width:768px) {
	.split-section {
		flex-direction: column;
	}

	.half-section {
		min-height: 300px;
	}

	/* ✅ ADDED FIX: ensure slider has auto height */
	.slider-container-section, .slider-section {
		height: auto;
		min-height: 300px;
	}

}
