body {
	background-color: #f0f4f8;
	color: #333;
	font-family: "TikTok Sans", sans-serif;
}
.navbar, .footer {
	background-color: #2c3e50;
	color: white;
}
.hero-section {
	background:
		url('../../img/heroBG.png') center center no-repeat,
		linear-gradient(135deg, #4682b4, #2c3e50);
		background-size: cover;
	color: white;
	padding: 40px 0px 120px 0px;
	min-height: 556px; /* Instead of fixed height */
	height: auto;      /* Let content dictate height on mobile */
}

.contact-form {
	background-color: #34495e;
	padding: 20px;
	border-radius: 8px;
	position: sticky;
	top: 20px;
}
.contact-form input, .contact-form button {
	margin-bottom: 10px;
}
.feature-card {
	background-color: white;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.btn-primary {
	background-color: #4682b4;
	border-color: #4682b4;
}
.btn-primary:hover {
	background-color: #2c3e50;
	border-color: #2c3e50;
}
.font-sm {
	font-size: 14px;
}
.font-sm > b {
	color: #e8b061;
}
/*.hero-section {
	position: relative;
	padding: 80px 20px;
	background: #1e2a38;
	color: #fff;
	text-align: center;
	overflow: hidden;
}*/

.hero-slider {
	position: relative;
	height: 100px;
}

.hero-slide {
	position: absolute;
	width: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	font-size: 1.5rem;
}

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

.hero-nav {
	/*margin-top: 20px;*/
}

.nav-dot {
	width: 12px;
	height: 12px;
	margin: 0 5px;
	border-radius: 50%;
	border: none;
	background-color: #888;
	cursor: pointer;
	transition: background-color 0.3s;
}

.nav-dot.active {
	background-color: #fff;
}

.font-gold {
	color: #e8b061;
}
@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}

.heartbeat {
  animation: heartbeat 1s ease-in-out infinite;
}
.darken {
	filter: brightness(75%);
}
.modal-pg {
	position: fixed;
	top:0px;
	left:0px;
	z-index: 10000;
	width: 100vw;
	height: 100vh;
	background:black;
	opacity: .5;
}
.modal-section {
	position: relative;
	z-index: 10001;
	background:white !important;
	position: absolute;
/*	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);*/
	border-radius:10px !important;
	padding:30px;
	margin-left:6vw;
	margin-top:6vh;
}
.terms-modal {
	position: fixed;
	top:0px;
	left:0px;
	z-index: 10000;
	width: 100vw;
	height: 100vh;
	background:black;
	/*opacity: .5;*/	
}
.disclaimer {
	font-size:10px;
	text-align: center;
	color:#d5d5d5;
}
.thanks-modal {
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 10000;
	width:60vw;
	height:34vh;
	margin-left:20vw;
/*	width: 100vw;
	height: 100vh;*/
	background: black;
	/*opacity: .5;*/
}


@media (min-width: 992px) {
	.hero-section {
		height: 556px;
	}

}
@media (max-width: 992px) {
	.col-12-height {
		height: auto !important;
	}
}
