:root {
	--wvm_red: #AC1F2D;
	--wvm_darkred: #730a14;
	--wvm_warning: #F4C430;
	--wvm_success: #007739;
	--wvm_info: #039BE5;
	--wvm_primary: #1565c0;
	--wvm_secondary: #6c757d;
	--wvm_light: #f8f9fa;
	/* --wvm_light: #BDBDBD; */
	--wvm_dark: #4F4F4F;
}

/* General Styles */

html, body {
	overflow-x: hidden; /* Prevents horizontal scrolling */
	margin: 0;
	padding: 0;
	width: 100%;
}

body {
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 14px;
	line-height: 20px;
	font-weight: 300;
	color: #000000;
	padding-top: 70px;
}

a {
	color: var(--wvm_red);
}
	a:hover {
		color: var(--wvm_dark);
	}

.img-thumbnail {
	border-color: var(--wvm_red);
}

.form-label {
	font-weight: 400;
}

.wvm-banner {
	background: var(--wvm_red);
	color: #ffffff;
	padding: 5px;
	margin-top: 30px;
	margin-bottom: 30px;
	font-family: "Podkova", serif;
	font-size: 24px;
	font-weight: 400;
	text-align: center;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.main-heads {
	font-size: 40px;
	text-transform: uppercase;
	font-weight: 100;
	text-align: center;
}

.podkova {
	font-family: "Podkova", serif;
}

/* NAV SECTION */
a.nav-link {
	color: var(--wvm_red);
	font-size: 16px;
	padding: 10px 14px !important;
	font-weight: 500;
}
	.navbar-nav .last-menu .nav-link {
		padding-right: 0px !important;
	}

	.nav-item.last-menu .material-icons {
	  position: relative;
	  top: 50%;
	  transform: translateY(-15%);
	}

	@media (min-width: 1100px) {
		/* Desktop-specific styles here */
		ul.dropdown-menu {
			/* border-color: var(--wvm_red); */
			box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.3);
		}
		a.dropdown-item {
			color: var(--wvm_red);
			font-size: 16px;
			padding: 8px 16px !important;
			font-weight: 400;
		}
		a.dropdown-item:hover {
			background-color: #cccccc;
			color: #000000;
		}
	}

.video-container {
	height: 200px;
	position: relative;
	overflow: hidden;
}
	.video-container video {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
		height: 100%;
		object-fit: cover; /* Ensures the video fills the container */
		transition: opacity 0.4s ease-in-out;
	}

		/* Base styles: for extra-small devices (mobile) */
		/* No media query needed for mobile-first styles */

		/* Medium devices (tablets, 768px and up) */
		@media (min-width: 768px) {
			/* Tablet-specific styles here */
			.video-container {
				height: 600px;
			}
		}

		/* Large devices (desktops, 992px and up) */
		@media (min-width: 992px) {
			/* Desktop-specific styles here */
			.video-container {
				height: 600px;
			}
		}

	.banner-boxes {
		display: flex;
		align-items: center;  /* ✅ Ensures vertical centering */
		justify-content: center; /* ✅ Centers horizontally */
		height: 100px;
		text-align: center;
		padding: 5px 10px;
	}

	.banner-boxes-text {
		font-size: clamp(1rem, 2vw, 2rem);
		font-weight: 400;
		line-height: 1.2; /* ✅ Adds spacing between lines */
		white-space: nowrap;
	}
		/* At lg (992px and above), allow breaks */
		@media (min-width: 992px) {
			.banner-boxes-text {
				white-space: normal;
			}
		}

		/* At  (992px and below), step font size up */
		@media (max-width: 992px) {
			.banner-boxes-text {
				font-size: clamp(0.75rem, 6vw, 2rem);
				white-space: normal;
			}
		}

		/* At 1024px, ensure text doesn’t get too large */
		@media (min-width: 1024px) {
			.banner-boxes-text {
				font-size: clamp(0.75rem, 2vw, 2rem);
				white-space: normal;
				line-height: 1.1; /* ✅ Ensure spacing even when breaking into two lines */
			}
		}

	.slogan-box-text {
		font-size: clamp(0.75rem, 1.5vw, 1.7rem);
		font-weight: 400;
		line-height: 1.2; /* ✅ Adds spacing between lines */
		white-space: normal;
	}

		/* At  (992px and below), step font size up */
		@media (max-width: 992px) {
			.slogan-box-text {
				font-size: clamp(1.15rem, 1.5vw, 1.7rem);
				white-space: normal;
			}
		}

	.banner-boxes.blackbox {
		background: #000000;
		color: #ffffff;
	}
	.banner-boxes.greybox {
		background: #dfdfdf;
		color: var(--wvm_red);
		/* color: #ffffff; */
	}
	.banner-boxes.redbox {
		background: var(--wvm_red);
		color: #ffffff;
	}
	.banner-boxes.whitebox {
		background: #ffffff;
		color: var(--wvm_red);
	}
	.banner-boxes:hover {
		background: var(--wvm_darkred);
		color: #ffffff;
	}

	@media (min-width: 992px) {
		.col-lg-2-4 {
		  flex: 0 0 auto;
		  width: 20%;
		}
	  }



/* Auction Section */
.auction-card {
	background: #efefef;
	padding: 15px;
	border-radius: 0;
	text-align: center;
}
	.date-banner {
		background: var(--wvm_red);
		color: #ffffff;
		padding: 5px;
		margin-top: 10px;
		margin-bottom: 20px;
		font-family: "Podkova", serif;
		font-size: 24px;
		font-weight: 400;
		letter-spacing: 2px;
		text-transform: uppercase;
	}

	.location {
		margin-top: 10px;
		margin-bottom: 30px;
		font-size: 24px;
		font-weight: 600;
	}

	.details p {
		font-size: 14px;
		font-weight: 300;
	}

	.upcoming-calendar {
		text-align: left;
		/* padding-bottom: 20px; */
		margin-bottom: 20px;
	}
		.upcoming-calendar p {
			margin: 0;
			padding: 0;
			font-size: 16px;
			font-weight: 300;
		}

		.upcoming-calendar hr {
			margin:0;
			padding: 0;
			border-top: 1px solid #aaaaaa;
		}

	.fp_teaser p {
		margin: 0;
	}

.trusted-reps {
}
	.trusted-reps p {
		font-size: 16px;
		font-weight: 300;
		line-height: 22px;
		letter-spacing: 0.37pt;
	}



/* Side Scroller */
.sponsor-scroller {
	overflow: hidden;
	white-space: nowrap;
	position: relative;
	width: 100%;
	/* background: #dcd4ca; */
	padding: 15px 0;
}

.scroller-track {
	display: flex;
	align-items: center;
	gap: 50px; /* Adjust spacing between logos */
	animation: scroll-left 10s linear infinite;
}

.sponsor-scroller img {
	height: 60px; /* Adjust as needed */
	width: auto;
	display: inline-block;
}

@keyframes scroll-left {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}



/* Regular/CMS pages */
/* Hero Section */
.hero-section {
	/* padding: 50px 0 35px 0 ; */
	margin: 0;
	padding: 0;
}
	.hero-section.pg-top-banner {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 200px;
		flex: 0 0 200px; /* Prevent shrinking/growing */
		background: url('/assets/public/images/pg-top-banner.jpg');
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center center;
		color: white; /* Ensure text is visible */
		z-index: 1;
		width: 100%;
	}
		/* .hero-section.pg-top-banner::before {
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: rgba(0, 0, 0, 0.65);
			z-index: -1;
		}

	.hero-section.pg-top-banner h2 {
		font-size: 36px;
		font-weight: 300;
		color: #ffffff;
		text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.90);
		text-align: center;
		padding: 20px 0;
		font-family: "Podkova", serif;
	} */

		/* Base styles: for extra-small devices (mobile) */
		/* No media query needed for mobile-first styles */

		/* Medium devices (tablets, 768px and up) */
		@media (min-width: 768px) {
			/* Tablet-specific styles here */
			.hero-section.pg-top-banner h2 {
				font-size: 48px;
			}
		}

		/* Large devices (desktops, 992px and up) */
		@media (min-width: 992px) {
			/* Desktop-specific styles here */
			.hero-section.pg-top-banner h2 {
				font-size: 60px;
			}
		}

.cms-page-header {
	color: var(--wvm_red);
	text-align: left;
}
	.cms-page-header .header-boxes {
		display: flex;
		align-items: center;  /* ✅ Ensures vertical centering */
		justify-content: left;
		height: 50px;
		padding: 5px 10px;
	}
		/* At  (992px and below) */
		@media (max-width: 992px) {
			.cms-page-header .header-boxes {
				height: 30px;
			}
		}
	.cms-page-header .header-boxes-text {
		font-weight: 200;
		font-size: clamp(1.5rem, 2vw, 2rem);
		line-height: 1.2; /* ✅ Adds spacing between lines */
		letter-spacing: -.05rem;
		white-space: nowrap;
		margin: 0;
	}
	.cms-page-header .header-boxes.greybox {
		background: #dfdfdf;
	}
	.cms-page-header .header-boxes.whitebox {
		background: #ffffff;
	}


.cms-page {
	margin-top: 60px;
}
	.cms-page h2,
	.cms-page h3,
	.cms-page h4,
	.cms-page h5,
	.cms-page h6 {
		font-weight: 300;
	}
	.cms-page p,
	.cms-page ol li,
	.cms-page ul li {
		font-size: 18px;
		font-weight: 300;
		line-height: 26px;
		text-align: left;
	}
		.cms-page ul {
			padding-left: 50px;
		}
		.cms-page p strong {
			font-weight: 600;
		}

	.cms-page .main-heads {
		font-size: 30px;
		text-transform: uppercase;
		text-align: center;
	}
		.cms-page h1.main-heads {
			font-weight: 200;
			font-size: 60px;
			margin-bottom: 50px;
			letter-spacing: -.15rem;
		}
			/* At  (992px and below) */
			@media (max-width: 992px) {
				.cms-page h1.main-heads {
					font-size: 40px;
					letter-spacing: -.1rem;
				}
			}

	.partners .card-title {
		font-weight: 600;
		font-size: 24px;
	}

	.fp-secondary-menu {
		background-color: var(--wvm_light) !important;
		padding: 15px;
	}
		.fp-secondary-menu a {
			color: var(--wvm_red) !important;
			font-weight: 500;
			font-size: 16px;
			text-decoration: none;
		}
		.fp-secondary-menu a:hover {
			color: var(--wvm_dark) !important;
		}

	.vap {
		color: var(--wvm_red);
		font-family: "Podkova", serif;
		font-size: 22px;
		font-weight: 500;
		text-align: left;
		text-transform: uppercase;
	}


/* Footer */
.footer-spacer {
	margin-top: 60px;
		content: "";
}
.footer {
	width: 100%;
	/* height: 200px; */
	background-color: #363636;
	position: relative;
}
	.footer::before {
		content: "";
		position: absolute;
		top: 0; /* Stick to the top */
		left: 0; /* Stretch across full width */
		width: 100%;
		height: 40px; /* Adjust based on your image */
		background-image: url('/assets/public/images/border-white-top-alt.png'); /* Use uploaded image */
		background-repeat: repeat-x; /* Repeat horizontally */
		background-size: auto 100%; /* Stretch width, keep height consistent */
	}

	.footer a {
		color: #ffffff;
		text-decoration: none;
	}
		.footer a:hover {
			color: var(--wvm_red);
		}



/**************************************************************
				CUSTOM BACKGROUND & TEXT COLORS
**************************************************************/
.text-wvm,
.text-danger {
	color: var(--wvm_red) !important;
}
	.text-danger-50 {
		color: #D68F96 !important;
	}

.text-primary {
	color: var(--wvm_primary) !important;
}

.text-secondary {
	color: var(--wvm_secondary !important);
}

.text-success {
	color: var(--wvm_success) !important;
}
	.text-success-50 {
		color: #7fbb9c !important;
	}

.text-warning {
	color: var(--wvm_warning) !important;
}

.text-info {
	color: var(--wvm_info) !important;
}

.text-light {
	color: var(--wvm_light) !important;
}

.text-dark {
	color: var(--wvm_dark) !important;
}

.bg-info,
.text-bg-info {
	background-color: var(--wvm_info) !important;
}

.bg-primary,
.text-bg-primary {
	background-color: var(--wvm_primary) !important;
}

.bg-secondary,
.text-bg-secondary {
	background-color: var(--wvm_secondary) !important;
}

.bg-success,
.text-bg-success {
	background-color: var(--wvm_success) !important;
}

.bg-danger,
.text-bg-danger {
	background-color: var(--wvm_red) !important;
}

.border-danger {
	border-color: var(--wvm_red) !important;
}

.bg-warning,
.text-bg-warning {
	background-color: var(--wvm_warning) !important;
}

.bg-light,
.text-bg-light {
	background-color: var(--wvm_light) !important;
}

.bg-light-op {
	background-color: rgba(186, 187, 188, 0.25);
}

.bg-dark,
.text-bg-dark {
	background-color: var(--wvm_dark) !important;
}

.bg-danger-50 {
	background-color: #d58f96 !important;
}
.bg-danger-25 {
	background-color: #e6bbc0 !important;
}
.bg-danger-10 {
	background-color: #f6e8ea !important;
}
.bg-warning-50 {
	background-color: #f9e197 !important;
}
.bg-warning-25 {
	background-color: #fbedc0 !important;
}
.bg-warning-18 {
	background-color: #fcf3d5 !important;
}
.bg-warning-10 {
	background-color: #fdf9ea !important;
}
.bg-success-50 {
	background-color: #7fbb9c !important;
}
.bg-success-25 {
	background-color: #b2d6c3 !important;
}
.bg-success-10 {
	background-color: #e5f1eb !important;
}
.bg-info-50 {
	background-color: #81cdf2 !important;
}
.bg-info-25 {
	background-color: #b3e1f7 !important;
}
.bg-info-18 {
	background-color: #ccebf9 !important;
}
.bg-info-10 {
	background-color: #e5f5fc !important;
}
.bg-medium {
	background-color: #dededf;
}
.bg-wvm {
	background-color: var(--wvm_red);
}

/**************************************************************
				Tweak Button Formatting
**************************************************************/

.btn {
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1.1px;
}

/* PRIMARY BUTTONS */
.btn-primary {
	border-color: var(--wvm_primary);
	background-color: var(--wvm_primary);
}
	.btn-primary:hover {
		border-color: #0e4686;
		background-color: #0e4686;
	}
.btn-outline-primary {
	border-color: var(--wvm_primary);
	color: var(--wvm_primary);
	background-color: #fff;
}
	.btn-outline-primary:hover {
		border-color: #0e4686;
		background-color: #0e4686;
	}

/* SECONDARY BUTTONS */
.btn-secondary {
	border-color: var(--wvm_secondary);
	background-color: var(--wvm_secondary);
}
	.btn-secondary:hover {
		border-color: #4b5157;
		background-color: #4b5157;
	}
.btn-outline-secondary {
	border-color: var(--wvm_secondary);
	color: var(--wvm_secondary);
	background-color: #fff;
}
	.btn-outline-secondary:hover {
		border-color: #4b5157;
		background-color: #4b5157;
	}

/* SUCCESS BUTTONS */
.btn-success {
	border-color: var(--wvm_success);
	background-color: var(--wvm_success);
}
	.btn-success:hover {
		border-color: #005327;
		background-color: #005327;
	}
.btn-outline-success {
	border-color: var(--wvm_success);
	color: var(--wvm_success);
	background-color: #fff;
}
	.btn-outline-success:hover {
		border-color: #005327;
		background-color: #005327;
	}

/* DANGER BUTTONS */
.btn-danger {
	border-color: var(--wvm_red);
	background-color: var(--wvm_red);
}
	.btn-danger:hover {
		border-color: #78151f;
		background-color: #78151f;
	}
.btn-outline-danger {
	border-color: var(--wvm_red);
	color: var(--wvm_red);
	background-color: #fff;
}
	.btn-outline-danger:hover {
		border-color: #78151f;
		background-color: #78151f;
	}

/* WARNING BUTTONS */
.btn-warning {
	border-color: var(--wvm_warning);
	background-color: var(--wvm_warning);
	color: #000;
}
	.btn-warning:hover {
		border-color: #dbb02b;
		background-color: #dbb02b;
		color: #000;
	}
.btn-outline-warning {
	border-color: var(--wvm_warning);
	color: var(--wvm_warning);
	background-color: #fff;
}
	.btn-outline-warning:hover {
		border-color: #dbb02b;
		background-color: #dbb02b;
		color: #000;
	}

/* INFO BUTTONS */
.btn-info {
	border-color: var(--wvm_info);
	background-color: var(--wvm_info);
	color: #fff;
}
	.btn-info:hover {
		border-color: #026ca0;
		background-color: #026ca0;
		color: #fff;
	}
.btn-outline-info {
	border-color: var(--wvm_info);
	color: var(--wvm_info);
	background-color: #fff;
}
	.btn-outline-info:hover {
		color: #fff;
		border-color: #026ca0;
		background-color: #026ca0;
	}

/* LIGHT BUTTONS */
.btn-light {
	border-color: var(--wvm_light);
	background-color: var(--wvm_light);
}
	.btn-light:hover {
		border-color: #848484;
		background-color: #848484;
	}
.btn-outline-light {
	border-color: var(--wvm_light);
	color: var(--wvm_secondary);
	background-color: #fff;
}
	.btn-outline-light:hover {
		border-color: #848484;
		background-color: #848484;
	}

/* DARK BUTTONS */
.btn-dark {
	border-color: var(--wvm_dark);
	background-color: var(--wvm_dark);
}
	.btn-dark:hover {
		border-color: #000000;
		background-color: #000000;
	}
.btn-outline-dark {
	border-color: var(--wvm_dark);
	color: var(--wvm_dark);
	background-color: #fff;
}
	.btn-outline-dark:hover {
		border-color: #000000;
		background-color: #000000;
	}

/**************************************************************
				SET SOME MORE FIXED WIDTHS
	**************************************************************/
	.w-5 {
		width: 5% !important;
	}
	.w-8 {
		width: 8% !important;
	}
	.w-10 {
		width: 10% !important;
	}
	.w-12 {
		width: 12% !important;
	}
	.w-15 {
		width: 15% !important;
	}
	.w-20 {
		width: 20% !important;
	}
	.w-25 {
		width: 25% !important;
	}
	.w-30 {
		width: 30% !important;
	}
	.w-35 {
		width: 35% !important;
	}
	.w-40 {
		width: 40% !important;
	}
	.w-45 {
		width: 45% !important;
	}
	.w-50 {
		width: 50% !important;
	}
	.w-55 {
		width: 55% !important;
	}
	.w-60 {
		width: 60% !important;
	}
/* contact us page */
.importantfield {
	position: absolute;
	left: -9999px;
  }
