@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Comfortaa&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lobster+Two&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&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=Lora:ital,wght@0,400..700;1,400..700&display=swap');

:root {
	/* colors */
	--color-1: #BC191D; /* Main */
	--color-2: #009345; /* Accent */
	--color-3: #fff; /* Main Background */
	--color-4: #222222; /* Text */
	--color-5: #2B2728; /* Footer */

	--color-1-opacity: #BC191D55;
	--color-2-opacity: #00934555;
	--color-3-opacity: #ffffff55;
	--color-4-opacity: #22222255;
	--color-5-opacity: #2B272855;

	--color-1-opacity-darker: #BC191D99;
	--color-2-opacity-darker: #00934599;
	--color-3-opacity-darker: #ffffff99;
	--color-4-opacity-darker: #22222299;
	--color-5-opacity-darker: #2B272899;

	/* body */
	--page-background: var(--color-3);
	--text: var(--color-4);
	--text-font: "Lato", sans-serif;
	--headers: var(--color-4);
	--headers-font: "Lora", sans-serif;
	--links: var(--color-1);
	--links-hover: var(--color-2);

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

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

	/* buttons */
	--btn-font-size: 0.75rem;
	--btn-border-radius: 100px;
	--btn-main-bg: var(--color-1);
	--btn-main-text: var(--color-3);
	--btn-main-border: var(--color-3);
	--btn-main-outline: var(--color-2);
	--btn-main-shadow: var(--color-4-opacity) 0px 1px 3px, var(--color-4-opacity) 0px 1px 2px;
	--btn-hover-bg: var(--color-2);
	--btn-hover-text: var(--color-3);
	--btn-hover-border: var(--color-3);
	--btn-hover-outline: var(--color-2);
	--btn-focus-shadow: 0 0 0 0.25rem var(--color-1-opacity);

	/* header */
	--header-background: var(--color-3);
	--header-text: var(--color-4);
	--header-text-hover: var(--color-1);

	/* footer */
	--footer-background: var(--color-2);
	--footer-text: var(--color-3);

	/* home section */
	--home-title-color: var(--color-3);

	/* gallery */
	--gallery-bg: var(--color-4);

	/* modal */
	--modal-text: var(--color-4);
	--modal-bg: var(--color-3);
	--modal-btn-text: var(--color-3);
	--modal-close-btn-shadow: var(--color-1-opacity);

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

	/* forms/nav colors */
	--form-inputs: var(--color-3);
	--dropdown: var(--color-3);
	--dropdown-text: var(--color-4);
	--dropdown-border: var(--color-1);
	--dropdown-hover: var(--color-1);
	--dropdown-hover-text: var(--color-3);

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

	/* map */
	/* to get filter type getFilter('hexColor') into console
   replace hexColor with whatever color you want it to be
   may have to adjust brightness and contrast to get best color
   make sure your filter is .2 lossless or less (it will tell you in console)
   colors closer to #000000 will not work, #333333 tested, and it does work*/
	--map: grayscale(0);
	--map-border: var(--color-3);
	--map-shadow: var(--color-4-opacity) 0px 19px 38px, var(--color-4-opacity) 0px 15px 12px;
}

/*=========================
Colors
=========================*/

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	color: var(--headers);
	text-transform: capitalize;
	font-family: var(--headers-font) !important;
}

p,
body,
li,
a,
.block2 .text2.big,
.navbar-expand-md .navbar-nav .nav-link,
table {
	color: var(--text);
}

.nav-link {
	font-family: var(--headers-font) !important;
	font-size: 1.25rem;
}

/*Buttons*/

.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,
.portfolio-shuffle a,
div.form-group.d-grid.gap-2 > button:hover,
div.form-group.d-grid.gap-2 > button:focus,
div.form-group.d-grid.gap-2 > button:active {
	background: var(--btn-main-bg) !important;
	color: var(--btn-main-text) !important;
	border-radius: var(--btn-border-radius);
	-webkit-box-shadow: var(--btn-main-shadow) !important;
	box-shadow: var(--btn-main-shadow) !important;
	text-decoration: none !important;
	border: 5px solid var(--btn-main-border) !important;
	outline: 0px solid var(--btn-main-outline) !important;
	font-family: var(--headers-font) !important;
}

/* 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,
.portfolio-shuffle a: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,
.portfolio-shuffle a: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
.portfolio-shuffle a:active,
.portfolio-shuffle a.active,
/* forms */
div.form-group.d-grid.gap-2 > button {
	background: var(--btn-hover-bg) !important;
	color: var(--btn-hover-text) !important;
	text-decoration: none !important;
	border: 5px solid var(--btn-hover-border) !important;
	outline: 0px solid var(--btn-hover-outline) !important;
}

.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,
.portfolio-shuffle a:focus,
div.form-group.d-grid.gap-2 > button:focus {
	-webkit-box-shadow: var(--btn-focus-shadow) !important;
	box-shadow: var(--btn-focus-shadow) !important;
	text-decoration: none !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 button#header-arrows,
.accent-1 .subscribe-button,
.accent-1 .portfolio-shuffle a {
	background: var(--btn-hover-bg) !important;
	color: var(--btn-hover-text) !important;
	text-decoration: none !important;
	border-radius: var(--btn-border-radius) !important;
	-webkit-box-shadow: var(--btn-main-shadow) !important;
	box-shadow: var(--btn-main-shadow) !important;
	text-decoration: none !important;
	border: 5px solid var(--btn-hover-border) !important;
	outline: 0px solid var(--btn-hover-outline) !important;
}

/* 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 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 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 button#header-arrows:active,
.accent-1 .subscribe-button:active
.accent-1 .portfolio-shuffle a:active,
.accent-1 .portfolio-shuffle a.active {
	background: var(--btn-main-bg) !important;
	color: var(--btn-main-text) !important;
	text-decoration: none !important;
	border: 5px solid var(--btn-main-border) !important;
	outline: 0px solid var(--btn-main-outline) !important;
}

.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 button#header-arrows:focus,
.accent-1 .subscribe-button:focus,
.accent-1 .portfolio-shuffle a:focus {
	-webkit-box-shadow: var(--btn-focus-shadow) !important;
	box-shadow: var(--btn-focus-shadow) !important;
	text-decoration: none !important;
}

.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,
body .accent-1,
.accent-1 li,
.accent-1 a,
.accent-1 .block2 .text2.big,
.accent-1 .navbar-expand-md .navbar-nav .nav-link,
.accent-1 table {
	color: var(--main-accent-text);
}

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

/* Secondary Accent */

.accent-2 .btn-primary,
.accent-2 .btn-success,
.accent-2 .btn-secondary,
.accent-2 .btn-danger,
.accent-2 .btn-warning,
.accent-2 .btn-info,
.accent-2 .btn-light,
.accent-2 .btn-dark,
.accent-2 .btn-default,
.accent-2 .btn-template,
.accent-2 button#header-arrows,
.accent-2 .subscribe-button,
.accent-2 .portfolio-shuffle a {
	background: var(--btn-main-bg) !important;
	color: var(--btn-main-text) !important;
	border-radius: var(--btn-border-radius) !important;
	-webkit-box-shadow: var(--btn-main-shadow) !important;
	box-shadow: var(--btn-main-shadow) !important;
	text-decoration: none !important;
	border: 5px solid var(--btn-main-border) !important;
	outline: 0px solid var(--btn-main-outline) !important;
}

/* hover */
.accent-2 .btn-primary:hover,
.accent-2 .btn-success:hover,
.accent-2 .btn-secondary:hover,
.accent-2 .btn-danger:hover,
.accent-2 .btn-warning:hover,
.accent-2 .btn-info:hover,
.accent-2 .btn-light:hover,
.accent-2 .btn-dark:hover,
.accent-2 .btn-default:hover,
.accent-2 .btn-template:hover,
.accent-2 button#header-arrows:hover,
.accent-2 .subscribe-button:hover,
.accent-2 .portfolio-shuffle a:hover,
/* focus */
.accent-2 .btn-primary:focus,
.accent-2 .btn-success:focus,
.accent-2 .btn-secondary:focus,
.accent-2 .btn-danger:focus,
.accent-2 .btn-warning:focus,
.accent-2 .btn-info:focus,
.accent-2 .btn-light:focus,
.accent-2 .btn-dark:focus,
.accent-2 .btn-default:focus,
.accent-2 .btn-template:focus,
.accent-2 button#header-arrows:focus,
.accent-2 .subscribe-button:focus,
.accent-2 .portfolio-shuffle a:focus,
/* active */
.accent-2 .btn-primary:active,
.accent-2 .btn-success:active,
.accent-2 .btn-secondary:active,
.accent-2 .btn-danger:active,
.accent-2 .btn-warning:active,
.accent-2 .btn-info:active,
.accent-2 .btn-light:active,
.accent-2 .btn-dark:active,
.accent-2 .btn-default:active,
.accent-2 .btn-template:active,
.accent-2 button#header-arrows:active,
.accent-2 .subscribe-button:active
.accent-2 .portfolio-shuffle a:active,
.accent-2 .portfolio-shuffle a.active {
	background: var(--btn-hover-bg) !important;
	color: var(--btn-hover-text) !important;
	text-decoration: none !important;
	border: 5px solid var(--btn-hover-border) !important;
	outline: 0px solid var(--btn-hover-outline) !important;
}

.accent-2 .btn-primary:focus,
.accent-2 .btn-success:focus,
.accent-2 .btn-secondary:focus,
.accent-2 .btn-danger:focus,
.accent-2 .btn-warning:focus,
.accent-2 .btn-info:focus,
.accent-2 .btn-light:focus,
.accent-2 .btn-dark:focus,
.accent-2 .btn-default:focus,
.accent-2 .btn-template:focus,
.accent-2 button#header-arrows:focus,
.accent-2 .subscribe-button:focus,
.accent-2 .portfolio-shuffle a:focus {
	-webkit-box-shadow: var(--btn-focus-shadow) !important;
	box-shadow: var(--btn-focus-shadow) !important;
	text-decoration: none !important;
}

.accent-2 {
	background-color: var(--secondary-accent);
}

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

.accent-2 p,
body .accent-2,
.accent-2 li,
.accent-2 a,
.accent-2 .block2 .text2.big,
.accent-2 .navbar-expand-md .navbar-nav .nav-link,
.accent-2 table {
	color: var(--secondary-accent-text);
}

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

/* 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-text);
}

.footer p,
.footer body,
.footer li,
.footer a,
table {
	color: var(--footer-text);
}

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

.btn-close:focus {
	outline: 0;
	-webkit-box-shadow: 0 0 0 0.25rem var(--modal-close-btn-shadow);
	box-shadow: 0 0 0 0.25rem var(--modal-close-btn-shadow);
	opacity: 1;
}

.form-control:focus {
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 2px solid var(--main-accent-border);
}

/*End Buttons*/

.gallery figure .captions::after,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a {
	border-color: var(--secondary-color);
}

.sub-menu {
	border-top: var(--secondary-accent);
}

.primary-bg,
.menu-ribbon,
input[type="submit"],
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a,
.panel-title > a.collapsed:hover,
.panel-title > a,
.page-wrapper .tagline::before,
.feature-icon {
	background: var(--main-accent);
}

.primary-bg p,
.primary-bg h1,
.primary-bg h2,
.primary-bg h3,
.primary-bg h4,
.primary-bg h5 {
	color: var(--main-accent-text);
}

.sub-menu li a:hover,
.sub-menu li a:focus,
.navbar-default .navbar-brand,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > a:hover,
.unstyled li::before,
.btn-primary,
.feature.business i {
	color: var(--header-text-hover);
}

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

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

.card {
	background: var(--secondary-accent);
	color: var(--secondary-accent-text);
}

/*Social*/

.social .facebook {
	--primary-color: #3b5998;
}

.social .tiktok {
	--primary-color: #000000;
}

.social .twitter {
	--primary-color: #000000;
}

.social .instagram {
	--primary-color: var(--color-4);
}

.social.on-dark .instagram {
	--primary-color: #cd486b;
}

.social .google-plus {
	--primary-color: #db4437;
}

.social .google {
	--primary-color: #4285f4;
}

.social .youtube {
	--primary-color: #ff0000;
}

.social .yelp {
	--primary-color: #af0606;
}

.social .pinterest {
	--primary-color: #bd081c;
}

.social .tumblr {
	--primary-color: #35465c;
}

.social .linkedin {
	--primary-color: #0077b5;
}

.social .trip-advisor {
	--primary-color: #00af87;
}

.social .vimeo {
	--primary-color: #1ab7ea;
}

.social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.social li a {
	padding: 5px;
	font-size: 2rem;
}

.social li a:hover,
.social li a:focus {
	text-decoration: none;
	outline: 0;
}

.social li a {
	color: var(--color-3);
	-webkit-transition: color 300ms, background 300ms;
	-o-transition: color 300ms, background 300ms;
	transition: color 300ms, background 300ms;
	text-decoration: none;
}

.location-wrapper .social li a {
	color: var(--color-1);
	-webkit-transition: color 300ms, background 300ms;
	-o-transition: color 300ms, background 300ms;
	transition: color 300ms, background 300ms;
	text-decoration: none;
}

.social li a:hover,
.social li a:focus {
	color: var(--primary-color, --color-4);
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: var(--color-3);
}

.social li a:focus {
	-webkit-box-shadow: 0 0 0 2pt var(--color-1);
	box-shadow: 0 0 0 2pt var(--color-1);
	-webkit-box-shadow: 0 0 0 2pt var(--outline);
	box-shadow: 0 0 0 2pt var(--outline);
}

.social {
	list-style: none;
	font-size: 0;
	padding: 0;
}

.social li {
	display: inline-block;
	margin: 0 10px 0 10px;
}

.social li a {
	width: 40px;
	height: 40px;
	font-size: 24px;
}

.social li a i {
	line-height: 40px;
}

/* tooltips */

.template-tooltip {
	--bs-tooltip-max-width: auto;
	--bs-tooltip-bg: var(--color-1-opacity-darker);
	--bs-tooltip-color: var(--color-3);
	--bs-tooltip-font-size: 1rem;
	font-family: var(--text-font);
}

.template-tooltip .tooltip-inner {
	text-align: left;
}

/* Spillover */

.spillover * {
	margin: auto;
}

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