/**
 * Template Name: Restaurantly - v3.7.0
 * Template URL: https://bootstrapmade.com/restaurantly-restaurant-template/
 * Author: BootstrapMade.com
 * License: https://bootstrapmade.com/license/
*/

/**
 * moOde audio player (C) 2022 Tim Curtis
 * http://moodeaudio.org
 *
 * Modifications made to Restaurantly-pro-bootstrap-5
 *
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
	--moode-orange: #d35400;
	--moode-green: #27ae60;
	font-family: "Open Sans", sans-serif;
	background: #0c0b09;
	color: #eee; /* Was #fff */
}

a {
	color: var(--moode-orange);
	text-decoration: none;
}
a:hover {
	color: var(--moode-orange);
	text-decoration: none;
}

a.text-link {
	color: inherit;
	text-decoration: underline;
}
a:hover.text-link {
	color: white;
	text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
	/*font-family: "Playfair Display", serif;*/
	font-family: "Open Sans", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #1a1814;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #1a1814;
	border-top-color: var(--moode-orange);
	border-bottom-color: var(--moode-orange);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	width: 44px;
	height: 44px;
	border-radius: 50px;
	transition: all 0.4s;
	border: 2px solid var(--moode-orange);
}
.back-to-top i {
	font-size: 28px;
	color: var(--moode-orange);
	line-height: 0;
}
.back-to-top:hover {
	background: var(--moode-orange);
	color: #1a1814;
}
.back-to-top:hover i {
	color: #444444;
}
.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;
	}
}

/*--------------------------------------------------------------
# Disable specifig images on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	.section-default-img {display:none;}
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	background: rgba(12, 11, 9, 0.6);
	border-bottom: 1px solid rgba(12, 11, 9, 0.6);
	transition: all 0.5s;
	z-index: 997;
	padding: 15px 0;
	top: 0; /* Was 40px; */
}
#header.header-scrolled {
	top: 0;
	background: rgba(0, 0, 0, 0.85);
	border-bottom: 1px solid #37332a;
}
#header .logo {
	font-size: 1.85em;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 300;
	letter-spacing: -0.5px;
	/*text-transform: uppercase;*/
	font-family: "Josefin Sans";
}
#header .logo a {
	color: #fff;
}
#header .logo img {
	max-height: 40px;
}

/*--------------------------------------------------------------
# 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: 10px 0 10px 30px;
	color: #fff;
	white-space: nowrap;
	transition: 0.3s;
	font-size: 14px;
}
.navbar a i, .navbar a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
	color: var(--moode-orange);
}
.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 14px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
	border-radius: 4px;
}
.navbar .dropdown ul li {
	min-width: 200px;
}
.navbar .dropdown ul a {
	padding: 10px 20px;
	color: #444444;
}
.navbar .dropdown ul a i {
	font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
	color: var(--moode-orange);
}
.navbar .dropdown:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}
.navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
}
@media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}
	.navbar .dropdown .dropdown:hover > ul {
		left: -100%;
	}
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: block;    
	}
	.navbar ul {
		display: none;
	}
	.section-default {
		height: unset!important;
	}
}
.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	/*left: 0;*/
	width:	12em;
	bottom: 0;
	background: rgba(0, 0, 0, 0.9);
	transition: 0.3s;
	z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}
.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	border-radius: 6px;
	background-color: #fff;
	overflow-y: auto;
	transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
	padding: 10px 20px;
	font-size: 15px;
	color: #1a1814;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
	color: var(--moode-orange);
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
	margin: 15px;
}
.navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
	min-width: 200px;
}
.navbar-mobile .dropdown ul a {
	padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
	font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
	color: var(--moode-orange);
}
.navbar-mobile .dropdown > .dropdown-active {
	display: block;
}

/*--------------------------------------------------------------
# moOde - Specific elements
--------------------------------------------------------------*/
#homepage-logotext {
	font-size:3.25em;
	font-weight:400;
	margin-top:.75em;
	margin-bottom:.0;
	letter-spacing:-1.5px;
	font-family:"Josefin Sans"!important;	
}
.tm-sup-sm {
	font-size:.35em;
	top:-.5em;	
}
.tm-sup-md {
	font-size:.35em;
	top:-.65em;	
}
.tm-sup-lg {
	font-size:.35em;
	top:-1em;	
}
.moode-orange {
	color: #d35400
}
#release-number {
	font-size:1.25em;
	font-weight:600;
}
#release-text {
	font-size:1em;
	font-weight:400;
	font-style: italic;
	text-transform: uppercase;
}
#paypal-img {
	height: 3.5em;
}
.text-label-overlay {
	position:absolute;
	top: 2em;
	left: 0;
	width: 100%;
	text-align: center;
}
.text-label-text {
	width: 9em;
	margin: 0 auto;
	background-color: rgba(32, 32, 32, 0.75);
	border: 1px solid #666;
	border-radius:	50px;
	padding: .25em 0;
}
.text-info-text-gray {
	display:block;
	font-size:.75em;
	margin:.25em 0 0 .25em;
	color: #aaa;
	font-weight: 600;	
}
.link-btn {
	font-weight: 600;
	font-size: 1em;
	letter-spacing: 0.5px;
	/*text-transform: uppercase;*/
	display: inline-block;
	padding: 0 .25em;
	border-radius: 5px;
	transition: 0.3s;
	line-height: 1;
	color: #eee; /* Was white */
	border: 1px solid var(--moode-orange);
	margin-right: .25em;
	background: rgba(0, 0, 0, 0.1);
}
.link-btn:hover {
	background: var(--moode-orange);
	color: #fff;
}
.download-btn {
	font-weight: 600;
	font-size: 1em;
	/*letter-spacing: 0.5px;*/
	/*text-transform: uppercase;*/
	display: inline-block;
	padding: .75em 1em;
	border-radius: 25px;
	transition: 0.3s;
	line-height: 1;
	color: #eee; /* Was white */
	border: 2px solid var(--moode-orange);
	min-width: 18.25em;
	text-align: center;
	background: rgba(0, 0, 0, 0.1);
}
.download-btn:hover {
	background: var(--moode-orange);
	color: #fff;
}

/*--------------------------------------------------------------
# moOde - Bootstrap overrides
--------------------------------------------------------------*/
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
	padding-right: var(--bs-gutter-x, 1.5rem); /* was 0.75 */
	padding-left: var(--bs-gutter-x, 1.5rem);
}

/*--------------------------------------------------------------
# moOde - Default Section Layout
--------------------------------------------------------------*/
section {
	overflow: hidden;
}

.section-default {
	width: 100%;
	height: 100%;
	position: relative;
	padding: 80px 0;
}
.section-default:before {
	content: "";
	background: rgba(0, 0, 0, 0.50);
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}
.section-default .section-default-img,
.section-default .section-protodac-img {
	position: relative;
	transition: 0.5s;
}
.section-default .section-default-img img,
.section-default .section-protodac-img img {
	max-width: 100%;
	border: 4px solid rgba(255, 255, 255, 0.2);
	position: relative;
}
.section-default .section-default-img::before.
.section-default .section-protodac-img::before {
	position: absolute;
	left: 20px;
	top: 20px;
	width: 60px;
	height: 60px;
	z-index: 1;
	content: "";
	border-left: 5px solid rgba(255, 255, 255, 0.2); /* Was #d35400 */
	border-top: 5px solid rgba(255, 255, 255, 0.2);
	transition: 0.5s;
}
.section-default .section-default-img::after,
.section-default .section-protodac-img::after {
	position: absolute;
	right: 20px;
	bottom: 20px;
	width: 60px;
	height: 60px;
	z-index: 2;
	content: "";
	border-right: 5px solid rgba(255, 255, 255, 0.2); /* Was #d35400 */
	border-bottom: 5px solid rgba(255, 255, 255, 0.2);
	transition: 0.5s;
}
.section-default .section-default-img:hover,
.section-default .section-protodac-img:hover {
	transform: scale(1.05); /* Was 1.03 */
}
.section-default .section-default-img:hover::before,
.section-default .section-protodac-img:hover::before {
	left: 10px;
	top: 10px;
}
.section-default .section-default-img:hover::after,
.section-default .section-protodac-img:hover::after {
	right: 10px;
	bottom: 10px;
}
.section-default .content h3 {
	font-weight: 600;
	font-size: 26px;
}
.section-default .content ul {
	list-style: none;
	padding: 0;
}
.section-default .content ul li {
	padding-bottom: 10px;
}
.section-default .content ul i {
	font-size: 1em;
	padding-right: .25em;
	/*color: var(--moode-orange);*/
}
.section-default .list ul li {
	padding-bottom: 0;
}
.section-default .content p:last-child {
	margin-bottom: 0;
}
@media (min-width: 1024px) {
	.section-default {
		background-attachment: fixed;
	}
}

/*--------------------------------------------------------------
# moOde - Section backgrounds and icon color
--------------------------------------------------------------*/
.home {
	background: url("../img/backgrounds/bg-1-home.jpg") top center;
	background-size: cover;
}
.about {
	background: url("../img/backgrounds/bg-2-about.jpg") center center;
	background-size: cover;
}
.about ul i {
	font-size: 1.25em!important;
	color: var(--moode-green);
}
.download {
	background: url("../img/backgrounds/bg-3-download.jpg") center center;
	background-size: cover;
}
.download ul i {
	color: #eee;
	padding: 0;
}
.features {
	background: url("../img/backgrounds/bg-4-features.jpg") center center;
	background-size: cover;
}
.features ul i {
	color: var(--moode-orange);
}
.features .links ul i {
	color: #eee!important;
	padding: 0!important;
	font-size: 1em!important;
	padding-right: .25em!important;
}
.feature-list {
	background: url("../img/backgrounds/bg-6-feature-list.jpg") center center;
	background-size: cover;
}
.feature-list ul i {
	font-size: 1.25em!important;
	color: var(--moode-green);
}
.support {
	background: url("../img/backgrounds/bg-5-support.jpg") center center;
	background-size: cover;
}
.support ul i {
	color: #eee;
	padding: 0;
}
.developer {
	background: url("../img/backgrounds/bg-7-developer.jpg") center center;
	background-size: cover;
}
.developer ul i {
	color: #eee;
	padding: 0;
}
.protodac {
	background: url("../img/backgrounds/bg-8-protodac.jpg") center center;
	background-size: cover;
}
.protodac ul i {
	color: #eee;
	padding: 0;
}

/*--------------------------------------------------------------
# moOde - Home Section
--------------------------------------------------------------*/
#home {
	width: 100%;
	height: 100vh;
	position: relative;
	padding: 0;
}
#home:before {
	content: "";
	background: rgba(0, 0, 0, 0.45); /* was .5 */
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}
#home .container {
	padding-top: 110px;
}
@media (max-width: 992px) {
	#home .container {
		padding-top: 98px;
	}
}
#home h1 {
	font-family: "Poppins", sans-serif;
}
#home h2 {
	color: #eee;
	margin-bottom: 10px 0 0 0;
	font-size: 22px;
}
@media (min-width: 1024px) {
	#home {
		background-attachment: fixed;
	}
}
@media (max-width: 992px) {
	#home .play-btn {
		margin-top: 30px;
	}
}
@media (max-height: 500px) {
	#home {
		height: auto;
	}
	#home .container {
		padding-top: 130px;
		padding-bottom: 60px;
	}
}
@media (max-width: 768px) {
	#home h1 {
		font-size: 28px;
		line-height: 36px;
	}
	#home h2 {
		font-size: 18px;
		line-height: 24px;
	}
}

/*--------------------------------------------------------------
# moOde - Features Section
--------------------------------------------------------------*/
#features {
	width: 100%;
	/*height: 100vh;*/
	position: relative;
	padding: 80px 0;
	/*padding: 80px 0 300px;*/
}
#features h3 {
	font-weight: 600;
	font-size: 26px;
}
#features ul {
	list-style: none;
	display: inline-flex;
	margin: 0;
	padding: 0;
}
#features ul li {
	padding-bottom: 10px;
	padding-right: 1em;
}
#features ul i {
	font-size: 20px;
	padding-right: 4px;
	color: var(--moode-orange);
}
#features:before {
	content: "";
	background: rgba(0, 0, 0, 0.65);
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}	
.feature-group {
	margin-bottom: 1.5em;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
	position: relative;
	overflow: hidden;
	border-right: 3px solid #454035;
	border-bottom: 3px solid #454035;
	/*border: 3px solid #454035;*/
}
.gallery .gallery-item img {
	transition: all ease-in-out 0.4s;
}
.gallery .gallery-item:hover img {
	transform: scale(1.1);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	background: black;
	padding: 0 0 1em 0; /* Was 0 0 30px 0 */
	color: #999; /* Was #fff */
	font-size: 14px;
}
#footer .copyright {
	text-align: center;
	padding-top: 1em; /* Was 30px */
}
#footer .credits {
	padding-top: 10px;
	text-align: center;
	font-size: 13px;
	color: #999; /* Was #fff */
}

/*--------------------------------------------------------------
# NEEDED?
--------------------------------------------------------------*/
/*.breadcrumbs {
	padding: 15px 0;
	background: #1d1b16;
	margin-top: 110px;
}
@media (max-width: 992px) {
	.breadcrumbs {
		margin-top: 98px;
	}
}
.breadcrumbs h2 {
	font-size: 26px;
	font-weight: 300;
}
.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
}
.breadcrumbs ol li + li {
	padding-left: 10px;
}
.breadcrumbs ol li + li::before {
	display: inline-block;
	padding-right: 10px;
	color: #37332a;
	content: "/";
}
@media (max-width: 768px) {
	.breadcrumbs .d-flex {
		display: block !important;
	}
	.breadcrumbs ol {
		display: block;
	}
	.breadcrumbs ol li {
		display: inline-block;
	}
}

/*--------------------------------------------------------------
# NEEDED?
--------------------------------------------------------------*/
/*@-webkit-keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}*/
