/**
* Template Name: Nova
* Updated: Mar 10 2023 with Bootstrap v5.2.3
* Template URL: https://bootstrapmade.com/nova-bootstrap-business-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
:root {
	--font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--font-primary: "Montserrat", sans-serif;
	--font-secondary: "Raleway", sans-serif;
}

/* Colors */
:root {
	--color-default: #2b180d;
	/*
	--color-primary: #56b8e6;
	--color-secondary: #1b2f45;
	--color-secondary-rgb: 27, 47, 69;
	*/
	--color-primary: #451b2f;
	--color-primary-rgb: 69, 27, 47;
	--color-primary-hover: #745; /* #82cbed; */
	--color-secondary: #a63638;
	--color-secondary-rgb: 166, 54, 56;
	--color-secondary-hover: #d33; /* #82cbed; */

	--color-link: #a63638;
	--color-link-hover: #d33;

	--color-icon: #a63638;
	--color-icon-rgb: 100, 0, 0;
}

/* Smooth scroll behavior */
:root {
	scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
	font-family: var(--font-default);
	color: var(--color-default);
	/*
	background: #745;
	color: #fff; */
}

a {
	color: var(--color-secondary);
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	color: var(--color-secondary-hover); /* #82cbed; */
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-primary);
}

BLOCKQUOTE {
/*	background-color:var(--color-secondary); */
	border-radius:5px;
	color: #fff;
	font-style: italic;
	margin: 20px auto;
	padding: 20px;
	text-align:center;
}
BLOCKQUOTE p:first-of-type:before {
	color: var(--color-secondary);
	content: "\201C";
	font-family: Georgia, serif;
	font-size: 4em;
	line-height: 0.1em;
	margin-right: 0.25em;
	vertical-align: -0.45em;
}
blockquote p.author /*, blockquote p:last-of-type*/ {
	color: var(--color-secondary);
	display: block;
	font-style: italic;
	font-weight: bold;
	margin-bottom: 0;
}
blockquote p.author:before /*, blockquote p:last-of-type:before */ {
	content: '\2014 \00A0';
}



.btn-secondary {
	background: var(--color-primary-hover); /* #e0d0f0; */
	color: #fff;
}
.btn-secondary:hover {
	background: var(--color-primary);
	color: #fff;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
	overflow: hidden;
	padding: 40px 0 0 0;
	min-height: 350px;
}
section:last-of-type {
	padding-bottom: 80px;
}

.section-header {
	text-align: center;
	padding-bottom: 30px;
}

.section-header h2 {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
}

.section-header h2:after {
	content: "";
	position: absolute;
	display: block;
	width: 60px;
	height: 2px;
	background: var(--color-secondary);
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.section-header p {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/



.breadcrumbs {
	padding: 140px 0 60px 0;
	min-height: 30vh;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.breadcrumbs:before {
	content: "";
	background-color: rgba(var(--color-primary-rgb), 0.7);
	position: absolute;
	inset: 0;
}

.breadcrumbs h1, .breadcrumbs h2 {
	font-size: 56px;
	font-weight: 500;
	color: #fff;
	font-family: var(--font-secondary);
}

@media only screen and (max-width: 768px) {
	.breadcrumbs h1, .breadcrumbs h2 {
		font-size: 42px;
	}
}
#breadcrumbs {
	margin: 5px 0 0 25px;
}

#breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0 0 10px 0;
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: var(--color-primary);
}

#breadcrumbs ol a {
	color: var(--color-link);
	transition: 0.3s;
}

#breadcrumbs ol a:hover {
	text-decoration: underline;
}

#breadcrumbs ol li+li {
	padding-left: 10px;
}

#breadcrumbs ol li+li::before {
	display: inline-block;
	padding-right: 10px;
	color: #000;
	content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 1990; /* under fancybox */
	background: var(--color-primary);
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all 0.4s;
}

.scroll-top i {
	font-size: 24px;
	color: #fff;
	line-height: 0;
}

.scroll-top:hover {
	/*background: rgba(86, 184, 230, 0.8);*/
	background: var(--color-primary-hover);
	color: #fff;
}

.scroll-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	overflow: hidden;
	background: #100;
	transition: all 0.6s ease-out;
}

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

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

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
	transition: padding 0.5s;
	padding: 24px 0;
	z-index: 997;
}

@media (max-width: 1200px) {
	.header {
		padding: 12px 0;
	}
}

.header.sticked {
	background-color: rgba(var(--color-primary-rgb), 0.8);
	padding: 12px 0;
}

.header .logo img {
	max-height: 40px;
	margin-right: 6px;
}

.header .logo .home {
	font-size: 30px;
	font-weight: 700;
	color: #fff;
	font-family: var(--font-secondary);
	margin: 0;
}

.anchor {
	scroll-margin-top: 90px;
}

.floating {
	position:absolute;
	right: 20px;
	top: 220px;
	@media (min-width: 768px) {
		top: 240px;
	}
	z-index: 100;
}
.floating a {
	background: purple; /*var(--color-secondary);*/
	border-radius: 8px;
	color: #fff;
	display: block;
	font-size: 32px;
	height: 64px;
	padding-top: 6px;
	text-align: center;
	width: 64px;
}
.floating a:hover {
	background: mediumpurple; /* var(--color-primary); */
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/

.navbar { /* mdb reset */
	--mdb-navbar-box-shadow: 0;
}

@media (min-width: 1280px) {
	.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: 15px 0 15px 30px;
		font-family: var(--font-default);
		font-size: 15px;
		font-weight: 500;
		color: rgba(255, 255, 255, 0.6);
		white-space: nowrap;
		transition: 0.3s;
	}

	.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: #fff;
	}

	.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.2s;
	}

	.navbar .dropdown ul li {
		min-width: 200px;
	}

	.navbar .dropdown ul a {
		padding: 10px 20px;
		font-size: 15px;
		text-transform: none;
/*		color: var(--color-primary); */
		color: #fff;
		background: var(--color-primary-hover);
	}

	.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(--color-primary); */
		background: var(--color-primary);
	}

	.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 (min-width: 1280px) and (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}

	.navbar .dropdown .dropdown:hover>ul {
		left: -100%;
	}
}

@media (min-width: 1280px) {

	.mobile-nav-show,
	.mobile-nav-hide {
		display: none;
	}
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
	.navbar {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		max-width: 400px;
		bottom: 0;
		transition: 0.3s;
		z-index: 9997;
	}

	.navbar ul {
		position: absolute;
		inset: 0;
		padding: 50px 0 10px 0;
		margin: 0;
		background: rgba(var(--color-primary-rgb), 0.9);
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
	}

	.navbar a,
	.navbar a:focus {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 10px 20px;
		font-family: var(--font-default);
		font-size: 15px;
		font-weight: 600;
		color: rgba(255, 255, 255, 0.7);
		white-space: nowrap;
		transition: 0.3s;
	}

	.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: #fff;
	}

	.navbar .dropdown ul,
	.navbar .dropdown .dropdown ul {
		position: static;
		display: none;
		padding: 10px 0;
		margin: 10px 20px;
		background-color: rgba(var(--color-secondary-rgb), 0.6);
	}

	.navbar .dropdown>.dropdown-active,
	.navbar .dropdown .dropdown>.dropdown-active {
		display: block;
	}

	.mobile-nav-show {
		color: rgba(255, 255, 255, 0.9);
		font-size: 28px;
		cursor: pointer;
		line-height: 0;
		transition: 0.5s;
	}

	.mobile-nav-hide {
		color: rgba(255, 255, 255, 0.9);
		font-size: 32px;
		cursor: pointer;
		line-height: 0;
		transition: 0.5s;
		position: fixed;
		right: 15px;
		top: 15px;
		z-index: 9999;
	}

	.mobile-nav-active {
		overflow: hidden;
	}

	.mobile-nav-active .navbar {
		right: 0;
	}

	.mobile-nav-active .navbar:before {
		content: "";
		position: fixed;
		inset: 0;
		background: rgba(var(--color-primary-rgb), 0.7);
		z-index: 9996;
	}
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
	color: #fff;
	font-size: 14px;
}

.footer .footer-content {
	background-color: var(--color-primary);
	background-size: contain;
	padding: 60px 0 30px 0;
}

.footer .footer-content .footer-info {
	margin-bottom: 30px;
}

.footer .footer-content .footer-info .logo {
	line-height: 0;
	margin-bottom: 25px;
}

.footer .footer-content .footer-info .logo img {
	max-height: 40px;
	margin-right: 6px;
}

.footer .footer-content .footer-info .logo span {
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #fff;
	font-family: var(--font-secondary);
	margin-top: 3px;
}

.footer .footer-content .footer-info p {
	font-size: 15px;
	margin-bottom: 0;
	font-family: var(--font-primary);
	color: #fff;
}

.footer .footer-content .social-links a {
	font-size: 14px;
	line-height: 0;
	display: inline-block;
	width: 32px;
	height: 32px;
	color: rgba(var(--color-primary-rgb), 0.5);
	margin-right: 10px;
	transition: 0.3s;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--color-primary);
	color: #fff;
	border-radius: 50px;
}

.footer .footer-content .social-links a:hover {
	background-color: #38618e;
}
/*
footer .footer-content blockquote {
	padding-left: 20px;
	font-size: 15px;
	font-family: var(--font-default);
	font-style: italic;
	border-left: 2px solid var(--color-primary);
	margin: 40px 0;
}

footer .footer-content blockquote author {
	font-weight:bold;
}
footer .footer-content blockquote author:before {
	content: '-';
	display: inline-block;
}
*/
.footer .footer-content h3 {
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	position: relative;
	padding-bottom: 12px;
}

.footer .footer-content .footer-links {
	margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer .footer-content .footer-links ul i {
	margin-right: 2px;
	color: var(--color-primary);
	font-size: 16px;
	line-height: 0;
}

.footer .footer-content .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

.footer .footer-content .footer-links ul li:first-child {
	padding-top: 0;
}

.footer .footer-content .footer-links ul a {
	color: #fff;
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
	color: var(--color-secondary);
}

.footer .footer-content .footer-contact p {
	line-height: 26px;
	color: var(--color-primary);
}

.footer .footer-legal {
	background: #fff;
	padding: 30px 0;
}

.footer .footer-legal .copyright {
	text-align: center;
	color: var(--color-primary);
}

.footer .footer-legal .credits {
	padding-top: 4px;
	text-align: center;
	font-size: 13px;
	color: var(--color-primary);
}