@import url('https://fonts.googleapis.com/css2?family=Alkatra:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;200;300;400;500;600;700;800&display=swap");

:root {
	/* colors */
	--color-1: #14693a; /* Main */
	--color-2: #f6f6f6; /* Accent/Neutral */
	--color-3: #121212; /* Main Background */
	--color-4: #ffffff; /* Text */
	--color-5: #000; /* Footer */
	--color-6: #ec1625;

	--color-1-opacity: #14693a55;
	--color-2-opacity: #f6f6f655;
	--color-3-opacity: #38383855;
	--color-4-opacity: #ffffff55;
	--color-5-opacity: #14141455;

	--color-1-opacity-darker: #14693a99;
	--color-2-opacity-darker: #f6f6f699;
	--color-3-opacity-darker: #38383899;
	--color-4-opacity-darker: #ffffff99;
	--color-5-opacity-darker: #14141499;

	/* body */
	--page-background: var(--color-3);
	--text: var(--color-4);
	--text-font: "Noto Sans", sans-serif;
	--headers: var(--color-4);
	--headers-hover: var(--color-2);
	--big-headers-font: "Alkatra", cursive;
	--small-headers-font: "Oswald", sans-serif;

	/* navbar */
	--nav-bg: var(--color-5-opacity);
	--nav-bg-scrolled: var(--color-5-opacity-darker);
	--nav: var(--color-4);
	--nav-hover: var(--color-1);
	--nav-font: "Alkatra", cursive;
	--nav-x-button: var(--color-4);

	/* links */
	--links: var(--color-1);
	--links-hover: var(--color-1-opacity);

	/* main colors */
	--main-accent: var(--color-1);
	--main-accent-text: var(--color-4);
	--main-accent-text-hover: var(--color-2);
	--main-accent-title: var(--color-3);
	--main-accent-border: var(--color-2);

	/* secondary colors */
	--secondary-accent: var(--color-3);
	--secondary-accent-text: var(--color-3);
	--secondary-accent-text-hover: var(--color-1);
	--secondary-accent-title: var(--color-3);
	--secondary-accent-border: var(--color-2);

	/* footer colors */
	--footer: var(--color-5);
	--footer-text: var(--color-4);
	--footer-title: var(--color-1);
	--footer-link: var(--color-6);
	--footer-link-hover: var(--color-4);
	--footer-borders: var(--color-3);
	--footer-spillover: var(--color-3);

	/* buttons */
	--btn-font-size: 0.75rem;
	--btn-border-radius: 0px;
	--btn-hover-bg: var(--color-1);
	--btn-hover-text: var(--color-4);
	--btn-hover-border: var(--color-1);
	--btn-main-bg: var(--color-1);
	--btn-main-text: var(--color-4);
	--btn-main-border: var(--color-1);

	/* socials */
	--socials: var(--color-1);
	--socials-hover: var(--color-4);

	/* reviews colors */
	--reviews: var(--color-3);
	--reviews-stars: var(--color-1);
	--reviews-text: var(--color-4);
	--reviews-title: var(--color-4);
	--reviews-border: var(--color-4-opacity);

	/* Calendar */
	--calendar-month-border: var(--color-1);
	--calendar-month-bg: var(--color-3);
	--calendar-month-day: var(--color-1);
	--calendar-month-highlight: var(--color-2-opacity);
	--calendar-month-number: var(--color-1);

	/* Offcanvas Close/Open Buttons */
	--sandwich-button: var(--color-3);
	--x-button: var(--color-3);

	/* Forms */
	--form-text: var(--color-4);
	--form-input-border: var(--color-4-opacity);
	--form-input-border-focused: var(--color-1);
	--form-input-text: var(--color-4);
	--form-input-text-background: var(--color-3);
	--form-input-text-focused: var(--color-4);
	--form-input-text-focused-background: var(--color-3);
	--form-checkbox: var(--color-1);
	--form-checkbox-focus-dropshadow: var(--color-1-opacity);

	/* Modals */
	--modal-x-button: var(--color-4);
	--modal-x-button-hover: var(--color-4);
	--modal-text: var(--color-4);
	--modal-bg: var(--color-3);

	/* Scroll Bar */
	--scrollbar-bg: var(--color-3);
	--scrollbar-thumb: var(--color-1);

	--topbar-color: var(--color-3);
	--topbar-bg: var(--color-4-opacity);
	--topbar-internal-bg: var(--color-5);
	--topbar-border-color: var(--color-1);
}

/*=========================
Colors
=========================*/
html {
	scrollbar-color: var(--scrollbar-bg) var(--scrollbar-thumb);
	--scrollbarBG: var(--scrollbar-bg);
	--thumbBG: var(--scrollbar-thumb);
}
body::-webkit-scrollbar {
	width: 15px;
}
body {
	scrollbar-width: thin;
	scrollbar-color: var(--thumbBG) var(--scrollbarBG);
	background-color: var(--page-background);
}
body::-webkit-scrollbar-track {
	background: var(--scrollbarBG);
}
body::-webkit-scrollbar-thumb {
	background-color: var(--thumbBG);
	border-radius: 100px;
	border: 3px solid var(--scrollbarBG);
}

h1,
.h1,
h2,
.h2 {
	font-family: var(--big-headers-font);
	color: var(--headers);
	text-transform: capitalize;
}

h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	font-family: var(--small-headers-font);
	color: var(--headers);
	text-transform: uppercase;
}

.title::after {
    margin: 10px auto 0;
	display: block;
    position: relative;
    -webkit-transition: width 0.5s ease;
    -o-transition: width 0.5s ease;
    transition: width 0.5s ease;
    margin: 10px 0 20px;
    background: var(--color-1);
    width: 30px;
    height: 2px;
    content: "";
	margin: auto;
}

.title {
	padding-bottom: 1.5rem;
}

p,
body,
li,
.block2 .text2.big,
table {
	color: var(--text);
	-webkit-transition: color 0.3s ease-in-out;
	-o-transition: color 0.3s ease-in-out;
	transition: color 0.3s ease-in-out;
	font-family: var(--text-font);
}

a {
	color: var(--links);
	text-decoration: none;
}

a:hover,
a:focus,
a:active {
	color: var(--links-hover);
}

.nav-link:focus,
.nav-link:hover {
	color: var(--nav-hover);
}

.nav-link {
	color: var(--nav);
	font-family: var(--nav-font);
	font-weight: 600;
	font-size: 20px;
	margin-right: 5px;
	margin-left: 5px;
}
/* footer */

#footer {
	color: var(--footer-text);
	background-color: var(--footer);
}

#footer h1,
#footer .h1,
#footer h2,
#footer .h2,
#footer h3,
#footer .h3,
#footer h4,
#footer .h4,
#footer h5,
#footer .h5,
#footer h6,
#footer .h6 {
	color: var(--footer-title);
}

#footer p,
#footer body,
#footer li {
	color: var(--footer-text);
}

#footer a {
	color: #fff;
}

#footer a:hover,
#footer a:active,
#footer a:focus {
	color: var(--footer-link-hover);
}
#footer .footer-title {
	margin-bottom: 0.5em;
	padding-bottom: 0.5em;
	color: var(--footer-header);
}

/* Copyright */

#footer .spillover {
	background-color: var(--footer-spillover);
	padding: 0;
}
#footer .spillover {
	background-color: var(--footer-spillover);
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
#footer .copyright-text {
	padding-top: 1.5em;
	padding-bottom: 1.5em;
}
#footer .copyright p,
#footer .copyright a {
	font-size: 1rem !important;
	margin-bottom: 10px;
}

/* Spillover */

.spillover * {
	margin: auto;
}

.spillover {
	background-color: var(--footer);
	padding: 9px 0 9px 0;
	text-align: center;
}

/* Buttons */

.btn-template.btn-sm {
	padding: 2px 22px;
}

.btn:hover {
	background-color: transparent;
}

.btn-primary,
.btn-success,
.btn-secondary,
.btn-danger,
.btn-warning,
.btn-info,
.btn-light,
.btn-dark,
.btn-default,
.btn-template,
button#header-arrows,
.subscribe-button {
	position: relative;
	-webkit-transition: color 0.3s;
	-o-transition: color 0.3s;
	transition: color 0.3s;
	z-index: 10;
	border: 3px solid var(--btn-main-border);
	border-radius: 0;
	background: transparent;
	padding: 15px 25px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--btn-main-text);
	font-weight: 700;
}

.btn-primary::after,
.btn-success::after,
.btn-secondary::after,
.btn-danger::after,
.btn-warning::after,
.btn-info::after,
.btn-light::after,
.btn-dark::after,
.btn-default::after,
.btn-template::after,
button#header-arrows::after,
.subscribe-button::after {
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: width 0.3s;
	-o-transition: width 0.3s;
	transition: width 0.3s;
	z-index: -1;
	background: var(--btn-main-bg);
	width: 0;
	height: 100%;
	content: "";
}

/* hover */
.btn-primary:hover,
  .btn-success:hover,
  .btn-secondary:hover,
  .btn-danger:hover,
  .btn-warning:hover,
  .btn-info:hover,
  .btn-light:hover,
  .btn-dark:hover,
  .btn-default:hover,
  .btn-template:hover,
  button#header-arrows:hover,
  .subscribe-button:hover,
  /* focus */
  .btn-primary:focus,
  .btn-success:focus,
  .btn-secondary:focus,
  .btn-danger:focus,
  .btn-warning:focus,
  .btn-info:focus,
  .btn-light:focus,
  .btn-dark:focus,
  .btn-default:focus,
  .btn-template:focus,
  button#header-arrows:focus,
  .subscribe-button:focus,
  /* active */
  .btn-primary:active,
  .btn-success:active,
  .btn-secondary:active,
  .btn-danger:active,
  .btn-warning:active,
  .btn-info:active,
  .btn-light:active,
  .btn-dark:active,
  .btn-default:active,
  .btn-template:active,
  button#header-arrows:active,
  .subscribe-button:active {
	color: var(--btn-hover-text);
	border: 3px solid var(--btn-hover-border);
}

.btn-primary:hover:after,
  .btn-success:hover:after,
  .btn-secondary:hover:after,
  .btn-danger:hover:after,
  .btn-warning:hover:after,
  .btn-info:hover:after,
  .btn-light:hover:after,
  .btn-dark:hover:after,
  .btn-default:hover:after,
  .btn-template:hover:after,
  button#header-arrows:hover:after,
  .subscribe-button:hover:after,
  /* focus */
  .btn-primary:focus:after,
  .btn-success:focus:after,
  .btn-secondary:focus:after,
  .btn-danger:focus:after,
  .btn-warning:focus:after,
  .btn-info:focus:after,
  .btn-light:focus:after,
  .btn-dark:focus:after,
  .btn-default:focus:after,
  .btn-template:focus:after,
  button#header-arrows:focus:after,
  .subscribe-button:focus:after,
  /* active */
  .btn-primary:active:after,
  .btn-success:active:after,
  .btn-secondary:active:after,
  .btn-danger:active:after,
  .btn-warning:active:after,
  .btn-info:active:after,
  .btn-light:active:after,
  .btn-dark:active:after,
  .btn-default:active:after,
  .btn-template:active:after,
  button#header-arrows:active:after,
  .subscribe-button:active:after {
	width: 100%;
}


.btn.dropdown-toggle {
	background: var(--btn-main-bg);
	border: 3px solid var(--btn-main-border);
	color: var(--btn-main-text);
}
.btn.dropdown-toggle:hover, .btn.dropdown-toggle:focus, .btn.dropdown-toggle:active {
	background: var(--btn-hover-bg);
	border: 3px solid var(--btn-hover-border);
	color: var(--btn-hover-text);
}
.btn.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    height: auto !important;
    width: auto !important;
    position: relative !important;
    background-color: transparent !important;
}

/* Main Accent */

.accent-1 .btn-primary,
.accent-1 .btn-success,
.accent-1 .btn-secondary,
.accent-1 .btn-danger,
.accent-1 .btn-warning,
.accent-1 .btn-info,
.accent-1 .btn-light,
.accent-1 .btn-dark,
.accent-1 .btn-default,
.accent-1.btn-template,
.accent-1 .btn-template,
.accent-1 button#header-arrows,
.accent-1 .subscribe-button,
.accent-1 .portfolio-shuffle a {
	background: var(--btn-main) !important;
	color: var(--btn-main-text) !important;
	border-radius: var(--btn-border-radius) !important;
	-webkit-box-shadow: var(--btn-main-shadow) !important;
	box-shadow: 0.3em 0.3em 0 0 var(--color-3-opacity-darker), -0.3em -0.3em var(--color-3-opacity-darker), inset 0.3em 0.3em 0 0 transparent !important;
	text-decoration: none !important;
	font-family: var(--small-headers-font) !important;
	border: 4px solid transparent !important;
	-webkit-animation: 0.5s offset !important;
	animation: 0.5s offset !important;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
}

/* hover */
.accent-1 .btn-primary:hover,
.accent-1 .btn-success:hover,
.accent-1 .btn-secondary:hover,
.accent-1 .btn-danger:hover,
.accent-1 .btn-warning:hover,
.accent-1 .btn-info:hover,
.accent-1 .btn-light:hover,
.accent-1 .btn-dark:hover,
.accent-1 .btn-default:hover,
.accent-1 .btn-template:hover,
.accent-1.btn-template:hover,
.accent-1 button#header-arrows:hover,
.accent-1 .subscribe-button:hover,
.accent-1 .portfolio-shuffle a:hover,
/* focus */
.accent-1 .btn-primary:focus,
.accent-1 .btn-success:focus,
.accent-1 .btn-secondary:focus,
.accent-1 .btn-danger:focus,
.accent-1 .btn-warning:focus,
.accent-1 .btn-info:focus,
.accent-1 .btn-light:focus,
.accent-1 .btn-dark:focus,
.accent-1 .btn-default:focus,
.accent-1 .btn-template:focus,
.accent-1.btn-template:focus,
.accent-1 button#header-arrows:focus,
.accent-1 .subscribe-button:focus,
.accent-1 .portfolio-shuffle a:focus,
/* active */
.accent-1 .btn-primary:active,
.accent-1 .btn-success:active,
.accent-1 .btn-secondary:active,
.accent-1 .btn-danger:active,
.accent-1 .btn-warning:active,
.accent-1 .btn-info:active,
.accent-1 .btn-light:active,
.accent-1 .btn-dark:active,
.accent-1 .btn-default:active,
.accent-1 .btn-template:active,
.accent-1.btn-template:active,
.accent-1 button#header-arrows:active,
.accent-1 .subscribe-button:active
.accent-1 .portfolio-shuffle a:active,
.accent-1 .portfolio-shuffle a.active {
	background: var(--color-3-opacity) !important;
	color: var(--btn-hover-text) !important;
	text-decoration: none !important;
	border: 3px solid var(--btn-hover-border) !important;
	-webkit-box-shadow: 0em 0em 0 0 var(--btn-hover-border), -0em -0em var(--btn-hover-border), inset 0em 0em 0 0 transparent !important;
	box-shadow: 0em 0em 0 0 var(--btn-hover-border), -0em -0em var(--btn-hover-border), inset 0em 0em 0 0 transparent !important;
	-webkit-animation: 0.5s offset !important;
	animation: 0.5s offset !important;
	margin: 1px;
}

.accent-1 {
	background-color: var(--main-accent);
}

.accent-1 h1,
.accent-1 .h1,
.accent-1 h2,
.accent-1 .h2,
.accent-1 h3,
.accent-1 .h3,
.accent-1 h4,
.accent-1 .h4,
.accent-1 h5,
.accent-1 .h5,
.accent-1 h6,
.accent-1 .h6 {
	color: var(--main-accent-title);
}

.accent-1 p,
.accent-1 body,
.accent-1 li,
.accent-1 a {
	color: var(--main-accent-text);
}

.accent-1 a:hover,
.accent-1 a:active,
.accent-1 a:focus {
	color: var(--main-accent-text-hover);
}

.hidden {
	display: none;
}

/* Socials */

.socials {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-left: 0;
}

.socials li {
	-ms-flex-item-align: center;
	align-self: center;
	justify-self: center;
	cursor: pointer;
	height: 5vh;
	width: 5vh;
	height: 40px;
	width: 40px;
	margin: 1rem;
}

.socials li a {
	background-color: transparent;
	-webkit-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
	height: 5vh;
	width: 5vh;
	height: 40px;
	width: 40px;
	font-size: 1.5rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none;
}
.socials li:hover a {
	background-color: transparent;
}

.socials li a i, .socials li a span, .socials li a em {
	font-size: 2rem;
	color: var(--socials, var(--color-1));
	-webkit-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.socials li:hover a i, .socials li:hover a span, .socials li:hover a em {
	color: var(--socials-hover, var(--color-2));
}

.socials li.facebook,
.socials li.facebook:hover {
	--socials-bg: transparent;
	--socials-bg-hover: #ffffff;
	--socials-hover: #4267b2;
}
.socials li.twitter,
.socials li.twitter:hover {
	--socials-bg: transparent;
	--socials-bg-hover: #ffffff;
	--socials-hover: #1da1f2;
}
.socials li.instagram,
.socials li.instagram:hover {
	--socials-bg: transparent;
	--socials-bg-hover: #ffffff;
	--socials-hover: #c13584;
}
.socials li.google,
.socials li.google:hover {
	--socials-bg: transparent;
	--socials-bg-hover: #ffffff;
	--socials-hover: #4285f4;
}
.socials li.yelp,
.socials li.yelp:hover {
	--socials-bg: transparent;
	--socials-bg-hover: #ffffff;
	--socials-hover: #ff1a1a;
}

@media (max-width: 992px) {
	.socials {
		margin: auto;
	}

	.socials li {
		margin: 0.5rem 0.25rem 0rem 0.25rem;
	}
}
