:root {
	--thm-font: "DM Sans", sans-serif;
	--thm-b-font: "DM Sans", sans-serif;
	--thm-black: #182e65;
	--thm-black-rgb: 24, 46, 101;
	--thm-text: #7c8498;
	--thm-base: #d35400;
}


.scroll-to-top {
	color: var(--thm-black);
}

/* Header Fix: Make header relative to push content down */
.header-eight .main-header {
	position: relative !important;
	top: 0;
	width: 100%;
	background-color: #ffffff;
	z-index: 999;
}

/* Ensure no overlap */
.slider-eight,
.page-banner {
	margin-top: 0 !important;
}

/* FOOTER MINIMIZATION */
.fancy-footer {
	padding: 30px 0 10px !important;
	background-size: cover;
}

.fancy-footer .footer-widget {
	margin-bottom: 20px !important;
}

.fancy-footer .widget-title {
	margin-bottom: 15px !important;
	margin-top: 0 !important;
}

.fancy-footer .logo-widget {
	margin-top: 0 !important;
}

.fancy-footer .footer-bottom {
	padding: 15px 0 !important;
	margin-top: 0 !important;
}

.footer-widget .text {
	margin-bottom: 15px !important;
}


/* BUBBLE BACKGROUND EFFECT */
.bubble-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	overflow: hidden;
	background: #fdfdfd;
	/* Very subtle light background */
	opacity: 1;
	pointer-events: none;
}

.bubble {
	position: absolute;
	bottom: -100px;
	background-color: var(--thm-base);
	border-radius: 50%;
	opacity: 0.8;
	animation: rise 15s infinite ease-in;
}

.bubble:nth-child(1) {
	width: 40px;
	height: 40px;
	left: 10%;
	animation-duration: 8s;
}

.bubble:nth-child(2) {
	width: 20px;
	height: 20px;
	left: 20%;
	animation-duration: 5s;
	animation-delay: 1s;
}

.bubble:nth-child(3) {
	width: 50px;
	height: 50px;
	left: 35%;
	animation-duration: 10s;
	animation-delay: 2s;
}

.bubble:nth-child(4) {
	width: 80px;
	height: 80px;
	left: 50%;
	animation-duration: 11s;
	animation-delay: 0s;
}

.bubble:nth-child(5) {
	width: 35px;
	height: 35px;
	left: 55%;
	animation-duration: 6s;
	animation-delay: 1s;
}

.bubble:nth-child(6) {
	width: 45px;
	height: 45px;
	left: 65%;
	animation-duration: 8s;
	animation-delay: 3s;
}

.bubble:nth-child(7) {
	width: 90px;
	height: 90px;
	left: 70%;
	animation-duration: 12s;
	animation-delay: 2s;
}

.bubble:nth-child(8) {
	width: 25px;
	height: 25px;
	left: 80%;
	animation-duration: 6s;
	animation-delay: 2s;
}

.bubble:nth-child(9) {
	width: 15px;
	height: 15px;
	left: 70%;
	animation-duration: 5s;
	animation-delay: 1s;
}

.bubble:nth-child(10) {
	width: 90px;
	height: 90px;
	left: 25%;
	animation-duration: 10s;
	animation-delay: 4s;
}

@keyframes rise {
	0% {
		bottom: -100px;
		transform: translateX(0);
	}

	50% {
		transform: translateX(100px);
	}

	100% {
		bottom: 100%;
		transform: translateX(-200px);
	}
}