:root {
  --primary-color: #5777ba;
  --secondary-color: #FD8008;
  --title-font: "Oswald", sans-serif;
  --text-font: "Clara", sans-serif;
}
/**
* O'Menu Front Template
*/
/*-------------------------------------------------------------- # Bootstrap Grid Override --------------------------------------------------------------*/
@media (min-width: 992px) {
	.container-lg, .container-md, .container-sm, .container {
		max-width: 960px;
	}
}
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
	font-family: var(--text-font);
	font-size: 1rem;
	color: #585a61;
}
a {
	color: var(--primary-color);
	text-decoration: none;
}
a:hover {
	color: var(--secondary-color);
	text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--text-font);
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
	padding: 0 0;
	overflow: hidden;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.lazyload,
.lazyloading {
	opacity: 0;
	transition: opacity 300ms;
}
.lazyloaded {
	opacity: 1;
}
.scroll-up-icon {
	fill: var(--primary-color);
}
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	transition: all 0.4s;
}
.back-to-top.active {
	visibility: visible;
	opacity: 1;
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	z-index: 997;
	padding: 15px 0;
	background: #FFF;
}
#header.header-transparent {
	background: transparent;
}
#header.header-scrolled {
	background: #FFF;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3);
}
#header .logo img {
	width: 120px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
	padding: 0;
}
.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}
.navbar li {
	position: relative;
}
.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0px 0px 0px 30px;
	font-family: var(--text-font);
	font-size: 1rem;
	color: var(--primary-color);
	white-space: nowrap;
}
.navbar a i,
.navbar a:focus i {
	line-height: 0;
	margin-left: 5px;
}
#navbar a:hover {
	color: var(--secondary-color);
}
.login, .join, .admin, .logout {
  fill: var(--primary-color);
  transition: fill 0.3s ease;
}
.login:hover, .join:hover, .admin:hover, .logout:hover {
  fill: var(--secondary-color);
}
/** * Mobile Navigation */
.mobile-nav-toggle {
  display: none;
}
.menu-off, .menu-on {
	fill: var(--primary-color);
	cursor:pointer;
}
.menu-on {
  fill: #fff;
  transition: fill 0.3s ease;	
}
@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: block;
	}
	.navbar ul {
		display: none;
	}
}
.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 999;
}
@media (max-width: 374.98px) {
	.navbar-mobile .mobile-nav-toggle {
		position: absolute;
		top: 22px;
		right: 12px;
	}
}
@media (min-width: 375px) {
	.navbar-mobile .mobile-nav-toggle {
		position: absolute;
		top: 22px;
		right: 12px;
	}
}
@media (min-width: 576px) {
	.navbar-mobile .mobile-nav-toggle {
		position: absolute;
		top: 22px;
		right: 20px;
	}
}
.navbar-mobile .navbar-ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 55px;
	bottom: auto;
	left: auto;
	padding: 20px 15px 20px 20px;
	border-radius: 6px;
	background-color: #fff;
	overflow-y: auto;
}
.navbar-mobile a,
.navbar-mobile a:focus {
	padding: 10px 20px;
	font-size: 15px;
	color: var(--primary-color);
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
	color: var(--secondary-color);
}
/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.overlay-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--secondary-color);
	font-size: 3rem;
	text-shadow: 1px 1px 1px #000000;
	width: 100%;
}
.magnifying-plus {
	width: 42px;
	height: 42px;
}
.zoom-text {
	font-family: var(--title-font);
	font-size: 1.8rem;
	margin: -15px 0 0 0;
}
.gallery-item {
	overflow: hidden;
}
.gallery-item img {
	width: 100%;
	height: auto;
	transition: transform 0.3s ease-in-out;
}
.gallery-image-cropper {
	width: 100%;
	height: 100%; /* Adjust this height as needed */
	position: relative;
	overflow: hidden;
}
.gallery-image-cropper img {
	width: 100%;
	height: 100%; /* Adjust this height as needed */
	object-fit: cover;
	object-position: center;
}
.gallery-item:hover img {
	transform: scale(1.1);
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 80px 0 20px 0;
	margin-top: 20px;
}
.hero-title {
	font-family: var(--title-font);
	color: var(--secondary-color);
	font-size: 2.75rem;
	margin-top: 15px;
	text-shadow: 2px 2px 2px #E6E6E6;
}
.hero-img {
	filter: drop-shadow(2px 2px 2px #7F7F7F);
	width: 100%; /* Ensure it scales within the container */
	height: auto; /* Maintain aspect ratio */
	display: block; /* Remove inline spacing */
	margin: 0 auto; /* Center the image horizontally */
}
.hero-icon {
	fill: var(--secondary-color);
	margin-right: 7px;
}
.hero-box-title {
	font-family: var(--title-font);
	font-size: 1.4rem;
	color: var(--primary-color);
	padding-bottom: 5px;
	display: flex;
	align-items: center;
}
.saving-1000 {
	color: var(--secondary-color);
	text-shadow: 1px 1px 1px #E6E6E6;
}
@media (max-width: 374.98px) {
	.hero-title {
		font-size: 1.6rem;
		margin-top: 30px;
		margin-bottom: 15px;
	}
	.hero-img {
		width: 50%;
	}
	.hero-box-title {
		justify-content: center;
	}
}
@media (min-width: 375px) {
	.hero-title {
		font-size: 1.8rem;
		margin-top: 30px;
		margin-bottom: 15px;
	}
	.hero-img {
		width: 50%;
	}
	.hero-box-title {
		justify-content: center;
	}
}
@media (min-width: 576px) {
	.hero-title {
		font-size: 2.75rem;
		margin-top: 30px;
	}
	.hero-box-title {
		justify-content: left;
	}
}
@media (min-width: 992px) {
	#hero {
		height: 100vh;
		padding: 0;
		margin-top: 0;
	}
	.hero-img {
		width: 100%;
	}
}
@media (max-width: 991.98px) {
	#hero .hero-title,
	#hero .hero-img {
		text-align: center;
	}
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.scroll-down {
	fill: var(--primary-color);
}
.scroll-down:hover {
	fill: var(--secondary-color);
}
#about {
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 30px 0;
}
.about-title {
	color: var(--secondary-color);
	font-family: var(--title-font);
	margin-bottom: 15px;
	text-shadow: 2px 2px 2px #E6E6E6;
}
.about-img {
	filter: drop-shadow(2px 2px 2px #7F7F7F);
	width: 100%; /* Ensure it scales within the container */
	height: auto; /* Maintain aspect ratio */
	display: block; /* Remove inline spacing */
	margin: 0 auto; /* Center the image horizontally */
}
.chevrons-icon {
	display: none !important;
}
@media (max-width: 374.98px) {
	#about {
		padding: 20px 0;
	}
	.about-title {
		font-size: 1.6rem;
		margin-top: 10px;
	}
	.about-img {
		width: 65%;
		margin-bottom: 10px;
	}
}
@media (min-width: 375px) {
	.about-title {
		font-size: 1.8rem;
		margin-top: 10px;
		margin-bottom: 15px;
	}
	.about-img {
		width: 65%;
	}
}
@media (min-width: 576px) {
	.about-title {
		font-size: 2.75rem;
	}
	.about-img {
		width: 65%;
		margin-bottom: 10px;
	}
}
@media (min-width: 768px) {
	#about {
		padding: 60px 0;
	}
	.about-title {
		font-size: 2.75rem;
	}
	.about-img {
		width: 456px;
		margin-bottom: 10px;
	}
}
@media (min-width: 992px) {
	#about {
		height: 100vh;
		padding: 60px 0 160px 0;
	}
	.about-title {
		font-size: 2.75rem;
	}
	.about-img {
		width: 456px;
	}
	.chevrons-icon {
		display: block !important;
		text-align: center;
		margin-top: 80px;
	}
}
@media (max-width: 991.98px) {
	#about .about-title {
		text-align: center;
	}
}
/*--------------------------------------------------------------
# Rich
--------------------------------------------------------------*/
#rich {
	width: 100%;
	position: relative;
	overflow: hidden;
}
.rich-title {
	color: var(--secondary-color);
	font-family: var(--title-font);
	margin-bottom: 15px;
	text-shadow: 2px 2px 2px #E6E6E6;
}
.rich-img {
	filter: drop-shadow(2px 2px 2px #7F7F7F);
	width: 100%; /* Ensure it scales within the container */
	height: auto; /* Maintain aspect ratio */
	display: block; /* Remove inline spacing */
	margin: 0 auto; /* Center the image horizontally */
}
@media (max-width: 374.98px) {
	#rich {
		padding: 30px 0;
	}
	.rich-title {
		font-size: 1.6rem;
		margin-top: 30px;
	}
	.rich-img {
		width: 50%;
	}
}
@media (min-width: 375px) {
	#rich {
		padding: 30px 0;
	}
	.rich-title {
		font-size: 1.8rem;
	}
	.rich-img {
		width: 50%;
		margin-bottom: 10px;
	}
}
@media (min-width: 576px) {
	#rich {
		padding: 60px 0;
	}
	.rich-title {
		font-size: 2.75rem;
	}
}
@media (min-width: 768px) {
	.rich-img {
		width: 351px;
	}
}
@media (min-width: 992px) {
	#rich {
		padding: 80px 0 160px 0;
	}
}
@media (max-width: 991.98px) {
	#rich .rich-title {
		text-align: center;
	}
}
/*--------------------------------------------------------------
# Inform
--------------------------------------------------------------*/
#inform {
	width: 100%;
	position: relative;
	overflow: hidden;
}
.inform-title {
	color: var(--secondary-color);
	font-family: var(--title-font);
	margin-bottom: 15px;
	text-shadow: 2px 2px 2px #E6E6E6;
}
.inform-img {
	filter: drop-shadow(2px 2px 2px #7F7F7F);
	width: 100%; /* Ensure it scales within the container */
	height: auto; /* Maintain aspect ratio */
	display: block; /* Remove inline spacing */
	margin: 0 auto; /* Center the image horizontally */
}
@media (max-width: 374.98px) {
	#inform {
		padding: 30px 0;
	}
	.inform-title {
		font-size: 1.6rem;
		margin-top: 30px;
	}
	.inform-img {
		width: 50%;
	}
}
@media (min-width: 375px) {
	#inform {
		padding: 30px 0;
	}
	.inform-title {
		font-size: 1.8rem;
	}
	.inform-img {
		width: 50%;
		margin-bottom: 10px;
	}
}
@media (min-width: 576px) {
	#inform {
		padding: 60px 0;
	}
	.inform-title {
		font-size: 2.75rem;
	}
}
@media (min-width: 768px) {
	.inform-img {
		width: 351px;
	}
}
@media (min-width: 992px) {
	#inform {
		padding: 80px 0 160px 0;
	}
}
@media (max-width: 991.98px) {
	#inform .inform-title {
		text-align: center;
	}
}
/*--------------------------------------------------------------
# Clean
--------------------------------------------------------------*/
#clean {
	width: 100%;
	position: relative;
	overflow: hidden;
}
.clean-title {
	color: var(--secondary-color);
	font-family: var(--title-font);
	margin-bottom: 15px;
	text-shadow: 2px 2px 2px #E6E6E6;
}
.saving-pounds {
	color: var(--secondary-color);
	text-shadow: 1px 1px 1px #E6E6E6;
}
@media (max-width: 374.98px) {
	#clean {
		padding: 30px 0;
	}
	.clean-title {
		font-size: 1.6rem;
		margin-top: 30px;
	}
}
@media (min-width: 375px) {
	#clean {
		padding: 30px 0;
	}
	.clean-title {
		font-size: 1.8rem;
	}
}
@media (min-width: 576px) {
	#clean {
		padding: 60px 0;
	}
	.clean-title {
		font-size: 2.75rem;
	}
}
@media (min-width: 992px) {
	#clean {
		padding: 80px 0 160px 0;
	}
}
@media (max-width: 991.98px) {
	#clean .clean-title {
		text-align: center;
	}
}
/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
#pricing {
	width: 100%;
	position: relative;
	overflow: hidden;
}
.pricing-title {
	color: var(--secondary-color);
	font-family: var(--title-font);
	margin-bottom: 15px;
	text-shadow: 2px 2px 2px #E6E6E6;
}
.pricing .box {
	padding: 20px 40px 40px 40px;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
	background: #fff;
	text-align: center;
}
@media (max-width: 374.98px) {
	#pricing {
		padding: 30px 0;
	}
	.pricing-title {
		font-size: 1.6rem;
		margin-top: 30px;
	}
}
@media (min-width: 375px) {
	#pricing {
		padding: 30px 0;
	}
	.pricing-title {
		font-size: 1.8rem;
	}
}
@media (min-width: 575.98px) {
	#pricing {
		padding: 20px 0;
	}
	.pricing-title {
		font-size: 2.75rem;
	}
	.pricing .box {
		max-width: 657px;
		margin: 0 auto 30px auto;
	}
}
@media (min-width: 767px) {
	#pricing {
		padding: 60px 0;
	}
}
@media (min-width: 992px) {
	#pricing {
		padding: 80px 0 160px 0;
	}
}
.get-started-btn {
	min-width: 200px;
	background: var(--primary-color);
	display: inline-block;
	padding: 9px 0px 8px 0px;
	border: none;
	border-radius: 20px;
	color: #fff;
	transition: none;
	font-size: 1rem;
	transition: 0.3s;
}
.get-started-btn:hover {
	background: var(--secondary-color);
	color: #fff;
}
.featured {
	z-index: 10;
	margin: 0 0;
}
.get-started-btn {
	background: var(--primary-color);
}
.get-started-btn:hover {
	background: var(--secondary-color);
}
/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
#faq {
	width: 100%;
	position: relative;
	overflow: hidden;
}
.faq-title {
	color: var(--secondary-color);
	font-family: var(--title-font);
	margin-bottom: 15px;
	text-shadow: 2px 2px 2px #E6E6E6;
}
@media (max-width: 374.98px) {
	#faq {
		padding: 30px 0;
	}
	.faq-title {
		font-size: 1.6rem;
		margin-top: 30px;
	}
}
@media (min-width: 375px) {
	#faq {
		padding: 30px 0;
	}
	.faq-title {
		font-size: 1.8rem;
	}
}
@media (min-width: 576px) {
	#faq {
		padding: 20px 0;
	}
	.faq-title {
		font-size: 2.75rem;
	}
}
@media (min-width: 768px) {
	#faq {
		padding: 60px 0;
	}
	.accordion-list {
		padding: 0 50px;
	}
}
@media (min-width: 992px) {
	#faq {
		padding: 80px 0 160px 0;
	}
	.accordion-list {
		padding: 0 100px;
	}
}
.accordion-list ul {
	padding: 0;
	list-style: none;
}
.accordion-list li+li {
	margin-top: 15px;
}
.accordion-list li {
	padding: 20px;
	background: #fff;
	position: relative;
	box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
}
.accordion-list a {
	display: block;
	position: relative;
	font-size: 16px;
	line-height: 28px;
	padding: 0 40px;
	outline: none;
	cursor: pointer;
	color: var(--primary-color);
}
.accordion-list .icon-help {
	font-size: 24px;
	position: absolute;
	right: 0;
	left: 20px;
	color: var(--primary-color);
}
.accordion-list .icon-show,
.accordion-list .icon-close {
	font-size: 20px;
	position: absolute;
	right: 0;
	top: 0;
}
.accordion-list p {
	margin-bottom: 0;
	padding: 10px 0 0 0;
}
.tab-left {
	margin: 0 30px;
}
.tab-stripe {
	margin-left: -40px;
}
.faq .accordion-list .icon-show {
	display: none;
}
.faq .accordion-list a.collapsed {
	color: var(--primary-color);
}
.faq .accordion-list a.collapsed:hover {
	color: var(--secondary-color);
}
.faq .accordion-list a.collapsed .icon-show {
	display: inline-block;
}
.faq .accordion-list a.collapsed .icon-close {
	display: none;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-title {
	color: var(--secondary-color);
	font-family: var(--title-font);
	margin-bottom: 15px;
	text-shadow: 2px 2px 2px #E6E6E6;
}
.contact-text {
	font-size: 1rem;
}
@media (max-width: 374.98px) {
	#contact {
		padding: 30px 0;
	}
	.contact-title {
		font-size: 1.6rem;
		margin-top: 30px;
	}
}
@media (min-width: 375px) {
	#contact {
		padding: 30px 0;
	}
	.contact-title {
		font-size: 1.8rem;
	}
}
@media (min-width: 576px) {
	#contact {
		padding: 60px 0;
	}
	.contact-title {
		font-size: 2.75rem;
	}
}
@media (min-width: 992px) {
	#contact {
		padding: 80px 0 160px 0;
	}
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    padding: 0 0 20px 0;
    background: #FFF;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3);
}
#footer .copyright,
#footer .legal {
    text-align: center;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    #footer .copyright {
        text-align: left;
        margin-bottom: 0;
    }
    #footer .legal {
        text-align: right;
        margin-bottom: 0;
    }
}
