/*
Theme Name: Carbone
Theme URI: https://www.cssigniter.com/ignite/themes/carbone/
Author: CSSIgniter
Author URI: https://www.cssigniter.com
Description: Restaurant theme for WordPress
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: carbone
Domain Path: /languages
*/
/* -----------------------------------------
	Table of Contents
--------------------------------------------

.. 01. General
.. 02. Main Navigation
.. 03. Header
.. 04. Modules
.. 05. Footer
.. 06. Comments
.. 07. Widgets Styling
.. 08. WordPress defaults
.. 09. Mobile Menu
.. 10. External Plugins
.. 11. Global Mediaqueries

*/
@import url('https://fonts.googleapis.com/css?family=Poppins:400,600|Oswald:400,600|Roboto+Slab');
@-webkit-keyframes rot {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}
@keyframes rot {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

@-webkit-keyframes flash {
	0% { opacity: 1; } 
	50% { opacity: .1; } 
	100% { opacity: 1; }
}
@keyframes flash {
	0% { opacity: 1; } 
	50% { opacity: .1; } 
	100% { opacity: 1; }
}

/* -----------------------------------------
	01. General
----------------------------------------- */
html {
	box-sizing: border-box;
	-ms-overflow-style: scrollbar;
	-webkit-tap-highlight-color: rgba(33, 33, 33, 0);
}

* {
	box-sizing: inherit;
}

*::before, *::after {
	box-sizing: inherit;
}

/* Basic Typography
=================================== */
body {
	line-height: 1.6;
	font-size: 15px;
	background-color: #fff;
	color: #6a6a6a;
	font-family: 'Poppins', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	line-height: normal;
	margin: 0 0 15px;
	word-wrap: break-word;
	text-rendering: optimizeLegibility;
	font-weight: 600;
	text-transform: uppercase;
	color: #2d2d2d;
	font-family: 'Poppins', sans-serif;
}


h1 {
	font-size: 30px;
}

h2 {
	font-size: 26px;
}

h3 {
	font-size: 20px;
}

h4 {
	font-size: 18px;
}

h5 {
	font-size: 16px;
}

h6 {
	font-size: 14px;
}

p {
	margin: 0 0 15px;
}

img {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}

a {
	-webkit-transition: color .18s ease, background-color .18s ease, border-color .18s ease;
	transition: color .18s ease, background-color .18s ease, border-color .18s ease;
	outline: none;
	color: #efc261;
	text-decoration: none;
}

a:hover, a:focus {
	color: #f4d48f;
	outline: none;
	text-decoration: none;
}

a:active {
	outline: none;
}

.group::after {
	content: "";
	display: table;
	clear: both;
}

/* General Element Styling
=================================== */
/* Reset figure margin from normalize.css */
figure {
	margin: 0;
}

/* Lists */
ul, ol {
	padding-left: 20px;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

dl {
	margin: 0 0 20px;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 0 15px;
}

/* Blockquotes */
blockquote {
	margin: 20px 0;
	padding-left: 15px;
	border-left: 3px solid #e1e1e1;
	font-size: 17px;
	font-weight: 300;
}

blockquote cite {
	display: block;
	font-weight: bold;
	font-style: italic;
	margin: 10px 0 0;
	color: rgba(106, 106, 106, 0.8);
	font-size: 14px;
}

/* Tables */
table {
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
}

.entry-content table {
	border-width: 1px 0 0 1px;
	margin-bottom: 24px;
}

.entry-content th,
.entry-content td {
	border-bottom: 1px solid rgba(33, 33, 33, 0.1);
}

.entry-content th:first-child,
.entry-content td:first-child {
	padding-left: 0;
}

.entry-content caption,
.entry-content th,
.entry-content td {
	font-weight: normal;
	text-align: left;
	padding: 5px;
	vertical-align: middle;
}

.entry-content th {
	border-width: 0 1px 1px 0;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 85%;
}

.entry-content td {
	border-width: 0 1px 1px 0;
}

/* Code */
code, kbd, tt, var, samp, pre {
	font-family: monospace, serif;
	-webkit-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
	font-style: normal;
}

pre {
	padding: 15px;
	border: 1px solid rgba(33, 33, 33, 0.1);
}

/* Various */
address {
	margin: 0 0 15px;
}

.sr-only,
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* Embeds and iframes
=================================== */
embed,
iframe,
object,
video,
audio {
	margin-bottom: 15px;
	max-width: 100%;
}

p > embed,
p > iframe,
p > object,
p > audio,
span > embed,
span > iframe,
span > object,
span > audio {
	margin-bottom: 0;
}

#map *,
.map * {
	max-width: none !important;
}

/* General Form Styling
=================================== */
label {
	display: block;
	margin: 0 0 2px;
	font-weight: normal;
	font-style: italic;
}

.input-field {
	margin-bottom: 30px;
}

input,
textarea {
	display: inline-block;
	font-size: inherit;
	width: 100%;
	max-width: 100%;
	height: 57px;
	padding: 6px 12px;
	box-shadow: none;
	line-height: normal;
	border: 3px solid #afafaf;
	color: #6a6a6a;
	background-color: #fff;
	background-image: none;
	border-radius: 0;
	-webkit-transition: border-color .18s ease;
	transition: border-color .18s ease;
}

input:hover, input:focus,
textarea:hover,
textarea:focus {
	border-color: #212121;
	outline: none;
}

@media (max-width: 543px) {
	input,
	textarea {
		width: 100%;
	}
}

input[type="search"] {
	/* Restoring box-sizing */
	box-sizing: border-box;
}

textarea {
	height: auto;
	padding-top: 10px;
	padding-bottom: 10px;
}

select {
	max-width: 100%;
}

input[type="checkbox"],
input[type="radio"] {
	margin: 4px 0 0;
	line-height: normal;
	width: auto;
	height: auto;
}

fieldset {
	margin: 0 0 15px;
	padding: 0;
	border: 0;
	min-width: 0;
}

/* Placeholder text color */
::-webkit-input-placeholder {
	color: rgba(106, 106, 106, 0.5);
	font-weight: normal;
	font-style: italic;
	opacity: 1;
}

:-moz-placeholder {
	color: rgba(106, 106, 106, 0.5);
	font-weight: normal;
	font-style: italic;
	opacity: 1;
}

::-moz-placeholder {
	color: rgba(106, 106, 106, 0.5);
	font-weight: normal;
	font-style: italic;
	opacity: 1;
}

:-ms-input-placeholder {
	color: rgba(106, 106, 106, 0.5);
	font-weight: normal;
	font-style: italic;
	opacity: 1;
}

/* Buttons
=================================== */
.btn,
.comment-reply-link,
input[type="submit"],
input[type="reset"],
button {
	display: inline-block;
	font-weight: normal;
	margin: 0;
	line-height: normal;
	border: 0;
	box-shadow: none;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	white-space: nowrap;
	-webkit-transition: .18s background-color ease, .18s color ease, .18s border-color ease;
	transition: .18s background-color ease, .18s color ease, .18s border-color ease;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border-radius: 0;
	width: auto;
	height: auto;
	background-image: none;
	text-transform: uppercase;
	font-weight: 900;
	background-color: transparent;
	border: 3px solid #212121;
	color: #212121;
	padding: 17px 24px;
	font-size: 14px;
}

.btn:active,
.comment-reply-link:active,
input[type="submit"]:active,
input[type="reset"]:active,
button:active {
	outline: none;
}

.btn:hover,
.comment-reply-link:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
button:hover {
	text-decoration: none;
	background-color: #212121;
	color: #fff;
}

.btn:focus,
.comment-reply-link:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
button:focus {
	outline: none;
}

.btn-sm {
	padding: 12px 18px 11px;
	font-size: 13px;
}

.btn-lg {
	padding: 23px 47px;
	font-size: 16px;
}

.btn-block {
	min-width: 100%;
	display: block;
	padding-left: 20px;
	padding-right: 20px;
}

.btn-white {
	border-color: #fff;
	color: #fff;
}

.btn-white:hover {
	background-color: #fff;
	color: #2d2d2d;
}

/* Magnific Popup Overrides
=================================== */
.mfp-bg {
	background-color: #212121;
}

.mfp-preloader {
	color: #fff;
}

.mfp-preloader a {
	color: #fff;
}

.mfp-preloader a:hover {
	color: #fff;
}

.mfp-container:not(.mfp-s-error) .mfp-preloader {
	border: 6px solid rgba(255, 255, 255, 0.35);
	border-top-color: rgba(255, 255, 255, 0.875);
	border-radius: 100%;
	height: 40px;
	width: 40px;
	-webkit-animation: rot .8s infinite linear;
	animation: rot .8s infinite linear;
	background-color: transparent;
	text-indent: -999em;
	margin: 0 auto;
}

button.mfp-close, button.mfp-arrow {
	border: 0;
	opacity: 1;
}

button.mfp-close:hover, button.mfp-arrow:hover {
	background: none;
	border: 0;
}

.mfp-close-btn-in .mfp-close {
	color: #fff;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
	color: #fff;
}

.mfp-arrow {
	line-height: .3;
}

.mfp-arrow::before, .mfp-arrow::after {
	border: 0;
}

.mfp-arrow::after {
	font-family: FontAwesome;
	font-size: 70px;
	color: #fff;
}

.mfp-arrow-right::after,
.mfp-arrow-right .mpf-a {
	content: "\f105";
}

.mfp-arrow-left::after,
.mfp-arrow-left .mpf-a {
	content: "\f104";
}

/* Text Alignment Helpers
=================================== */
.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-center {
	text-align: center;
}

.text-justified {
	text-align: justify;
}

/* Spacing Helpers
=================================== */
.mb-sm {
	margin-bottom: 15px !important;
}

.mb-md {
	margin-bottom: 30px !important;
}

.mb-lg {
	margin-bottom: 45px !important;
}

/* -----------------------------------------
	02. Main Navigation
----------------------------------------- */
.nav {
	display: block;
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 0;
	-ms-flex: 1 1 0px;
	flex: 1 1 0;
}

.navigation-main {
	margin: 0;
	padding: 0;
	list-style: none;
	line-height: normal;
	display: block;
	/* Functional Styles
	=================================== */
	/* Visual Styles
	=================================== */
}

.navigation-main::after {
	content: "";
	display: table;
	clear: both;
}

.nav-main-left .navigation-main {
	text-align: right;
}

.navigation-main li {
	position: relative;
}

.navigation-main > li {
	display: inline-block;
}

.navigation-main a {
	display: block;
	white-space: nowrap;
}

.navigation-main ul {
	position: absolute;
	z-index: 10;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity .25s ease .2s, visibility 0s ease .35s, -webkit-transform .25s ease .2s;
	transition: opacity .25s ease .2s, visibility 0s ease .35s, -webkit-transform .25s ease .2s;
	transition: transform .25s ease .2s, opacity .25s ease .2s, visibility 0s ease .35s;
	transition: transform .25s ease .2s, opacity .25s ease .2s, visibility 0s ease .35s, -webkit-transform .25s ease .2s;
	-webkit-transform: translate(0, 10px);
	-ms-transform: translate(0, 10px);
	transform: translate(0, 10px);
}

.nav-main-right .navigation-main > li:last-child > ul {
	right: 0;
}

.nav-main-right .navigation-main > li:last-child > ul::before {
	left: auto;
	right: 10px;
}

.nav-main-right .navigation-main ul ul {
	right: 100%;
}

.nav-main-left .navigation-main ul ul {
	left: 100%;
}

.navigation-main ul ul {
	top: 0;
	-webkit-transform: translate(-10px, 0);
	-ms-transform: translate(-10px, 0);
	transform: translate(-10px, 0);
}

.navigation-main li:hover > ul {
	-webkit-transition-delay: 0s, 0s, 0s;
	transition-delay: 0s, 0s, 0s;
	visibility: visible;
	opacity: 1;
}

.navigation-main li:hover ul {
	z-index: 15;
}

.navigation-main > li:hover > ul {
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
}

.navigation-main li li:hover > ul {
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
}

.navigation-main ul {
	padding: 15px 7px;
	margin: 0;
	list-style: none;
	background-color: #212121;
	min-width: 200px;
}

.navigation-main li {
	text-align: left;
}

.navigation-main a {
	position: relative;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
}

.navigation-main > li > a {
	padding: 15px 0;
	margin: 0 12px;
}

.navigation-main > li > a:hover::after,
.navigation-main > li > a:active::after,
.navigation-main > li > a:focus::after{
	width: 100% !important;
}

.navigation-main > li > a::after{
	position: absolute;
	top: 80%;
	left: 0;
	width: 0;
	height: 2px;
	background: #3d9338;
	content: '';
	transition: all ease 0.3s;
}
.navigation-main > li:hover > a,
.navigation-main > li > a:focus,
.navigation-main > .current-menu-item > a,
.navigation-main > .current-menu-parent > a,
.navigation-main > .current-menu-ancestor > a {
	color: #fff;
}

.navigation-main li li a {
	padding: 5px 12px;
	font-size: 12px;
}

.navigation-main li li:hover > a,
.navigation-main li li > a:focus,
.navigation-main li .current-menu-item > a,
.navigation-main li .current-menu-parent > a,
.navigation-main li .current-menu-ancestor > a {
	color: #efc261;
}

.navigation-main .menu-item-has-children > a::after {
	content: "\f078";
	font-family: FontAwesome;
	font-size: 6px;
	position: relative;
	top: -5px;
	right: -6px;
	line-height: normal;
}

.navigation-main li .menu-item-has-children > a::after {
	content: "\f054";
	position: absolute;
	right: 10px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

/* -----------------------------------------
	03. Header
----------------------------------------- */
.header {
	position: absolute;
	z-index: 50;
	width: 100%;
}

.header::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.header::before{
	background: transparent !important;
}

/* .page-template-template-builder .header {
	position: relative;
	margin: 0;
}  */

.mast-head {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.site-identity {
	width: 240px;
	padding-left: 40px;
	padding-right: 40px;
	text-align: center;
	color: #fff;
/* 	margin-top: -25px; */
}

.site-logo {
	margin-bottom: 5px;
}

.site-logo a {
	color: #fff;
}

.site-tagline {
	text-transform: uppercase;
	font-size: 11px;
	margin-bottom: 0;
}

/* -----------------------------------------
	04. Modules
----------------------------------------- */
/* Page Hero
=================================== */
.page-hero {
	min-height: 500px;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center top;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	position: relative;
}

.page-hero::before {
	content: "";
	background-color: rgba(33, 33, 33, 0.85);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.page-hero .container {
	z-index: 10;
}

.page-hero .btn {
	margin-top: 35px;
}

.page-hero-lg {
	height: 100vh;
	max-height: 870px;
}

.page-hero-title {
	font-size: 60px;
	color: inherit;
	font-weight: 900;
	margin: 110px 0 0;
	line-height: 1.2;
}

.page-hero-subtitle {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .18em;
}

.ci-video-wrap {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
}

.ci-video-wrap.visible .ci-video-background {
	opacity: 1;
}

.ci-video-wrap.visible::before {
	display: none;
}

.ci-video-wrap::before {
	border: 6px solid rgba(255, 255, 255, 0.35);
	border-top-color: rgba(255, 255, 255, 0.875);
	border-radius: 100%;
	height: 40px;
	width: 40px;
	-webkit-animation: rot .8s infinite linear;
	animation: rot .8s infinite linear;
	content: "";
	position: absolute;
	bottom: 50px;
	z-index: 1000;
	left: 50%;
	margin-left: -20px;
}

@media (max-width: 1080px) {
	.ci-video-wrap::before {
		display: none;
	}
}

.ci-video-background {
	position: absolute;
	left: 0;
	width: 100%;
	pointer-events: none;
	opacity: 0;
	-webkit-transition: opacity .45s ease;
	transition: opacity .45s ease;
	height: 300%;
	top: -100%;
}

.ci-video-background iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

@media (max-aspect-ratio: 16 / 9) {
	.page-hero-lg .ci-video-background {
		height: 100%;
		top: 0;
		width: 300%;
		left: -100%;
	}
}

/* Main Layout
=================================== */
.main {
	padding: 90px 0;
}

@media (min-width: 992px) {
	.main > .container > .row > .col-lg-8 {
		padding-right: 45px;
	}
}

.widget-sections {
	padding: 0;
}

.align-items-center {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

/* Entry Styles
=================================== */
.entry {
	margin: 0 0 60px;
}

.entry:only-of-type {
	margin: 0;
}

.entry-thumb {
	margin-bottom: 30px;
}

.entry-thumb img {
	padding: 15px;
	border: 1px solid #e1e1e1;
}

.entry-thumb:last-child {
	margin-bottom: 0;
}

@media (max-width: 991px) {
	.entry-thumb:last-child {
		margin-bottom: 30px;
	}
}

.entry-thumb.alignnone, .entry-thumb.alignleft, .entry-thumb.alignright, .entry-thumb.aligncenter {
	margin-top: 0;
}

.entry-meta,
.entry-title-eyebrow {
	font-size: 14px;
	text-transform: uppercase;
	margin-bottom: 2px;
}

.entry-categories {
	font-weight: 700;
	font-style: italic;
}

.entry-title {
	margin-bottom: 30px;
}

.entry-title a {
	color: #2d2d2d;
}

.entry-title a:hover {
	color: #efc261;
}

.entry-content::after {
	content: "";
	display: table;
	clear: both;
}

.entry-content p {
	margin-bottom: 20px;
}

.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
	margin: 30px 0 25px;
}

.entry-content h1:first-child, .entry-content h2:first-child, .entry-content h3:first-child, .entry-content h4:first-child, .entry-content h5:first-child, .entry-content h6:first-child {
	margin-top: 0;
}

.btn-read-more {
	margin-top: 25px;
}

/* Menu
=================================== */
.menu-category {
	margin-bottom: 40px;
}

.menu-category:last-child {
	margin-bottom: 0;
}

.menu-category-title {
	text-align: center;
	margin-bottom: 30px;
}

.item-menu {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 45px;
}

.item-menu .item-menu-thumb {
	margin-right: 30px;
}

.item-menu .item-menu-thumb img {
	border-radius: 50%;
}

.item-menu-content {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.item-menu-title {
	font-size: 18px;
	color: #2d2d2d;
	margin-bottom: 5px;
	line-height: normal;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.item-menu-title::after {
	content: "";
	border-bottom: 2px dotted #e1e1e1;
	width: auto;
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	position: relative;
	top: -3px;
	margin-left: 3px;
}

.item-menu-price {
	margin-left: auto;
	padding-left: 5px;
	-webkit-box-ordinal-group: 4;
	-webkit-order: 3;
	-ms-flex-order: 3;
	order: 3;
	display: inline-block;
}

.item-menu-desc {
	font-style: italic;
	margin-bottom: 0;
	line-height: normal;
}

.tpl-menu-content {
	margin-bottom: 60px;
}

/* Pagination
=================================== */
.navigation {
	margin: 40px 0 0;
}

.navigation a,
.navigation span {
	background-color: transparent;
	display: inline-block;
	padding: 5px 12px;
	color: #afafaf;
	font-style: italic;
	border: 3px solid #afafaf;
	margin-right: 5px;
}

.navigation a:hover,
.navigation .current {
	color: #212121;
	border-color: #212121;
}

.navigation .nav-links::after {
	content: "";
	display: table;
	clear: both;
}

.navigation .nav-previous {
	float: left;
}

.navigation .nav-next {
	float: right;
}

/* Social Icons
=================================== */
.list-social-icons {
	margin: 0;
	padding: 0;
	list-style: none;
}

.list-social-icons::after {
	content: "";
	display: table;
	clear: both;
}

.list-social-icons li {
	float: left;
	margin-right: 5px;
}

.social-icon {
	display: inline-block;
	width: 32px;
	height: 32px;
	line-height: 28px;
	font-size: 16px;
	text-align: center;
	color: #2d2d2d;
	border: 2px solid #2d2d2d;
	background-color: transparent;
	border-radius: 50%;
}

.widget_ci-info .social-icon,
.footer .social-icon {
	color: #dfdfdf;
	border-color: #dfdfdf;
}

.social-icon:hover {
	color: #efc261;
	border-color: #efc261;
}

/* -----------------------------------------
	05. Footer
----------------------------------------- */
.footer {
	background-color: #2e2e30;
	color: #fff;
	font-size: 13px;
	position: relative;
}

.footer-widgets {
	padding: 80px 0 20px;
}

.footer-credits {
	padding: 30px 0;
	background-color: #b60001;
	border-top: 1px solid #383838;
	color: #dfdfdf;
	text-transform: uppercase;
	font-size: 11px;
}

.footer-credits p {
	margin-bottom: 0;
}

/* -----------------------------------------
   06. Comments
----------------------------------------- */
#comments {
	margin: 40px 0 0;
}

#comment-list {
	margin: 0;
	list-style: none;
	padding: 0;
}

#comment-list ol {
	list-style: none;
}

@media (max-width: 767px) {
	#comment-list ol {
		margin: 0;
		padding: 0;
	}
}

#comment-list .comment-body {
	margin-bottom: 20px;
	padding-top: 20px;
}

#comment-list > .comment:first-child > .comment-body {
	border-top: 0;
	padding-top: 0;
}

.post-comments {
	margin: 0 0 45px;
}

.comment-author .avatar {
	width: 64px;
	height: 64px;
	float: left;
	margin: 0 15px 15px 0;
	overflow: visible;
}

@media (max-width: 543px) {
	.comment-author .avatar {
		display: none;
	}
}

.comment-content {
	overflow: hidden;
	zoom: 1;
	font-size: 13px;
}

.comment-metadata {
	font-size: 12px;
	margin: 0 0 5px;
}

.comment-reply-link {
	font-size: 10px;
	text-transform: uppercase;
	padding: 4px 10px;
	margin-left: 80px;
	height: auto;
	width: auto;
}

@media (max-width: 767px) {
	.comment-reply-link {
		margin: 0;
	}
}

.bypostauthor > article .fn::before {
	font-family: FontAwesome;
	content: "\f005";
	margin: 0 2px 0 -2px;
	position: relative;
	top: -1px;
	font-size: 11px;
}

#cancel-comment-reply-link {
	font-size: 13px;
	font-weight: normal;
	margin-left: 5px;
}

.form-allowed-tags,
.comment-notes {
	font-size: 12px;
	line-height: 1.5;
	color: rgba(106, 106, 106, 0.8);
}

/* -----------------------------------------
	07. Widgets Styling
----------------------------------------- */
.widget {
	margin: 0 0 60px;
	/* Nullify bottom margin for last elements in widgets and sidebars */
}

.sidebar .widget:last-child {
	margin-bottom: 0;
}

.widget p:last-child {
	margin-bottom: 0;
}

.widget select {
	width: 100%;
	padding: 5px 10px;
	border-radius: 0;
	border: 1px solid #e1e1e1;
}

.widget-title {
	margin-bottom: 30px;
	font-size: 14px;
	font-weight: normal;
}

.widget-title label {
	text-transform: none;
	display: block;
	font-size: inherit;
	margin: 0;
	line-height: inherit;
	font-weight: inherit;
}

.footer .widget-title {
	color: #fff;
}

.widget-padded + .widget-padded {
	margin-top: -90px;
}

.widget-section {
	margin: 0 0 90px;
}

.widget-section:first-child:not(.widget-padded) {
	margin-top: 90px;
}

.widget-section:last-child.widget-padded {
	margin-bottom: 0;
}

.widget-section:last-child.null-instagram-feed {
	margin-bottom: 0;
}

.widget-section.null-instagram-feed {
	margin-top: -90px;
}

.widget-padded .widget-wrap {
	padding: 90px 0;
}

.widget-padded .widget-wrap.wrap-extra-pad {
	padding: 160px 0;
}

.widget-wrap {
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	position: relative;
}

.widget-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.widget-wrap-parallax {
	background-attachment: fixed;
}

.section-title {
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 40px;
}

.section-subtitle,
.section-title-eyebrow {
	font-size: 14px;
	text-transform: uppercase;
	text-align: center;
	margin-bottom: 0;
}

.section-subtitle-content-widget {
	font-size: 14px;
	text-transform: uppercase;
	margin-bottom: 0;
}

/* WIDGET: #Hero Widget
========================================= */
.widget_ci-hero {
	color: #fff;
}

.widget_ci-hero .btn {
	margin-top: 15px;
}

.hero-title {
	color: inherit;
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 10px;
}

.hero-subtitle {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .18em;
	text-align: center;
	line-height: normal;
}

/* WIDGET: #Info
========================================= */
.widget_ci-info {
	color: #dfdfdf;
	line-height: normal;
}

.widget_ci-info .widget-wrap {
	background-color: #212121;
	padding: 26px 0;
}

.widget_ci-info p {
	margin: 5px 0 0;
}

.widget_ci-info .list-social-icons {
	float: right;
}

/* WIDGET: #Opening Hours
========================================= */
.widget-opening-hours {
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
}

.widget-opening-hours li {
	display: block;
	text-transform: uppercase;
	margin-bottom: 5px;
	width: 100%;
}

.widget-opening-hours-date {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.widget-opening-hours-date::after {
	content: "";
	display: inline-block;
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	width: auto;
	border-bottom: 1px solid #e1e1e1;
	margin-left: 3px;
	position: relative;
	top: -4px;
}

.footer-widgets .widget-opening-hours-date::after {
	opacity: .15;
}

.widget-opening-hours-time {
	margin-left: auto;
	-webkit-box-ordinal-group: 4;
	-webkit-order: 3;
	-ms-flex-order: 3;
	order: 3;
	padding-left: 5px;
}

/* WIDGET: #List Widgets
========================================= */
.widget_meta ul,
.widget_pages ul,
.widget_categories ul,
.widget_archive ul,
.widget_nav_menu ul,
.widget_recent_entries ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget_meta ul ul,
.widget_pages ul ul,
.widget_categories ul ul,
.widget_archive ul ul,
.widget_nav_menu ul ul,
.widget_recent_entries ul ul {
	margin-left: 15px;
}

.widget_meta li,
.widget_pages li,
.widget_categories li,
.widget_archive li,
.widget_nav_menu li,
.widget_recent_entries li {
	line-height: normal;
	display: block;
	position: relative;
}

.widget_meta li a,
.widget_pages li a,
.widget_categories li a,
.widget_archive li a,
.widget_nav_menu li a,
.widget_recent_entries li a {
	display: inline-block;
	text-transform: uppercase;
	font-size: 13px;
	padding: 4px 0;
	margin-right: 5px;
	color: #2d2d2d;
}

.widget_meta li a:hover,
.widget_pages li a:hover,
.widget_categories li a:hover,
.widget_archive li a:hover,
.widget_nav_menu li a:hover,
.widget_recent_entries li a:hover {
	color: #efc261;
}

.footer-widgets .widget_meta li a, .footer-widgets
.widget_pages li a, .footer-widgets
.widget_categories li a, .footer-widgets
.widget_archive li a, .footer-widgets
.widget_nav_menu li a, .footer-widgets
.widget_recent_entries li a {
	color: #fff;
}

.footer-widgets .widget_meta li a:hover, .footer-widgets
.widget_pages li a:hover, .footer-widgets
.widget_categories li a:hover, .footer-widgets
.widget_archive li a:hover, .footer-widgets
.widget_nav_menu li a:hover, .footer-widgets
.widget_recent_entries li a:hover,
.footer-widgets li.current_page_item a{
	color: #b60001 !important;
}

.widget_recent_comments ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.widget_recent_comments li {
	display: block;
	padding: 11px 0;
	border-bottom: 1px solid #e1e1e1;
}

.widget_pages select,
.widget_categories select,
.widget_archive select {
	display: block;
	width: 100%;
	padding: 6px 15px;
	border-radius: 0;
	font-size: 14px;
	height: 40px;
	font-weight: normal;
	border: 1px solid #e1e1e1;
	background: #ffffff;
}

/* WIDGET: #Search
========================================= */
.searchform > div {
	position: relative;
}

.searchform .searchsubmit {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
}

/* WIDGET: #Text Widget
========================================= */
.widget_text p:last-child {
	margin-bottom: 0;
}

/* WIDGET: #Calendar
================================================== */
#wp-calendar {
	width: 100%;
}

#wp-calendar a {
	font-weight: bold;
	font-style: italic;
}

#wp-calendar caption {
	text-align: left;
	margin-top: 10px;
	background: none repeat scroll 0 0 rgba(33, 33, 33, 0.03);
	padding: 9px;
}

#wp-calendar thead {
	font-size: 10px;
}

#wp-calendar thead th {
	background: rgba(33, 33, 33, 0.1);
	font-weight: bold;
	padding: 8px;
}

#wp-calendar tbody td {
	background: none;
	border: 1px solid rgba(33, 33, 33, 0.1);
	text-align: center;
	padding: 3px;
}

#wp-calendar tbody td:hover {
	background: rgba(33, 33, 33, 0.1);
}

#wp-calendar tbody .pad {
	background: none;
}

#wp-calendar tfoot #next {
	font-size: 10px;
	text-transform: uppercase;
	text-align: right;
}

#wp-calendar tfoot #prev {
	font-size: 10px;
	text-transform: uppercase;
	padding-top: 10px;
}

/* -----------------------------------------
	08. WordPress Defaults
----------------------------------------- */
/* WordPress Galleries
=================================== */
.gallery {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -5px;
	margin-right: -5px;
	margin-bottom: 15px;
}

.gallery-item {
	margin-bottom: 10px;
}

.gallery-item img {
	width: 100%;
	max-width: 100%;
}

.gallery-item:hover .gallery-caption {
	opacity: 1;
}

.gallery-columns-1 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 100%;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}

.gallery-columns-2 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 50%;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 33.33333%;
	-ms-flex: 0 0 33.33333%;
	flex: 0 0 33.33333%;
	max-width: 33.33333%;
}

.gallery-columns-4 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 25%;
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 20%;
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
	max-width: 20%;
}

@media (max-width: 767px) {
	.gallery-columns-5 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 25%;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
}

.gallery-columns-6 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 16.66667%;
	-ms-flex: 0 0 16.66667%;
	flex: 0 0 16.66667%;
	max-width: 16.66667%;
}

@media (max-width: 767px) {
	.gallery-columns-6 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 25%;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
}

.gallery-columns-7 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 14.28571%;
	-ms-flex: 0 0 14.28571%;
	flex: 0 0 14.28571%;
	max-width: 14.28571%;
}

@media (max-width: 991px) {
	.gallery-columns-7 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 20%;
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
		max-width: 20%;
	}
}

@media (max-width: 767px) {
	.gallery-columns-7 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 25%;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
}

.gallery-columns-8 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 12.5%;
	-ms-flex: 0 0 12.5%;
	flex: 0 0 12.5%;
	max-width: 12.5%;
}

@media (max-width: 991px) {
	.gallery-columns-8 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 20%;
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
		max-width: 20%;
	}
}

@media (max-width: 767px) {
	.gallery-columns-8 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 25%;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
}

.gallery-columns-9 .gallery-item {
	position: relative;
	min-height: 1px;
	padding-right: 5px;
	padding-left: 5px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 11.11111%;
	-ms-flex: 0 0 11.11111%;
	flex: 0 0 11.11111%;
	max-width: 11.11111%;
}

@media (max-width: 991px) {
	.gallery-columns-9 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 20%;
		-ms-flex: 0 0 20%;
		flex: 0 0 20%;
		max-width: 20%;
	}
}

@media (max-width: 767px) {
	.gallery-columns-9 .gallery-item {
		position: relative;
		min-height: 1px;
		padding-right: 5px;
		padding-left: 5px;
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 25%;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
}

.gallery-caption {
	background-color: rgba(33, 33, 33, 0.7);
	color: #fff;
	font-size: 12px;
	line-height: 1.5;
	margin: 0 0 0 5px;
	max-height: 50%;
	opacity: 0;
	padding: 6px 8px;
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: left;
	width: calc(100% - 10px);
	-webkit-transition: opacity .18s ease;
	transition: opacity .18s ease;
}

.gallery-caption::before {
	content: "";
	height: 100%;
	min-height: 49px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
	display: none;
}

/* WordPress Classes
=================================== */
/* Alignment */
.alignnone {
	margin: 5px 0 20px;
}

p .alignnone {
	margin-bottom: 0;
}

.aligncenter {
	display: block;
	margin: 7px auto;
}

.alignright {
	float: right;
	margin: 7px 0 7px 24px;
}

.alignleft {
	float: left;
	margin: 7px 24px 7px 0;
}

/* Captions */
.wp-caption {
	max-width: 100%;
	margin-bottom: 15px;
}

.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	padding: 0;
	width: auto;
}

.wp-caption .wp-caption-text {
	font-size: 12px;
	line-height: 17px;
	margin: 3px 0 5px;
	padding: 5px 0 0;
	text-align: left;
	font-style: italic;
}

.sticky {
	/* Provide sticky styles */
}

/* -----------------------------------------
  09.  MOBILE MENU
----------------------------------------- */
.mm-page {
	position: static;
}

.mm-opened .mm-page {
	position: relative;
}

#mobilemenu {
	display: none;
}

@media (max-width: 991px) {
	#mobilemenu {
		display: block;
	}
}

.mobile-nav-trigger {
	display: none;
	text-transform: uppercase;
	color: #fff;
	font-weight: 700;
	font-size: 20px;
	position: relative;
	z-index: 20;
}

.mobile-nav-trigger i {
	margin-left: 5px;
}

/* -----------------------------------------
	10. External Plugins
----------------------------------------- */
/* Jetpack Sharing */
.sharedaddy {
	margin-top: 30px;
}

/* WP Instagram */
.null-instagram-feed p {
	padding-top: 10px;
}

.widget .instagram-pics {
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget .instagram-pics::after {
	content: "";
	display: table;
	clear: both;
}

.widget .instagram-pics li {
	border-bottom: 0;
	padding: 0;
	float: left;
	width: 33.33333333333%;
}

.widget .instagram-pics li a {
	display: block;
	color: #6a6a6a;
}

.widget-section.null-instagram-feed {
	position: relative;
}

.widget-section.null-instagram-feed .section-title {
	display: none;
}

.widget-section .instagram-pics {
	list-style: none;
	margin: 0;
	padding: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

@media (max-width: 767px) {
	.widget-section .instagram-pics {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

@media (max-width: 767px) {
	.widget-section .instagram-pics li {
		width: 33.333333333333%;
	}
}

.widget-section .clear {
	display: none;
}

/* -----------------------------------------
	11. Global Mediaqueries
----------------------------------------- */
@media (max-width: 1199px) {
	.site-identity {
		width: 185px;
		padding-left: 25px;
		padding-right: 25px;
	}
	.navigation-main a {
		font-size: 12px;
	}
}

@media (max-width: 991px) {
	.page-template-template-builder .header {
		padding: 15px 0;
	}
	.mobile-nav-trigger {
		display: block;
	}
	.header {
		margin-top: 25px;
	}
	.site-identity {
		margin-right: auto;
		text-align: left;
		padding-left: 0;
	}
	.nav {
		display: none;
	}
	.sidebar {
		margin-top: 55px;
	}
	.page-hero {
		min-height: 370px;
	}
	.page-hero-title {
		font-size: 48px;
	}
}

@media (max-width: 767px) {
	.site-logo img {
		max-height: 65px;
		width: auto;
	}
	.page-hero {
		min-height: 270px;
	}
	.page-hero .btn {
		margin-top: 10px;
	}
	.page-hero-lg {
		height: auto;
		min-height: 440px;
	}
	.page-hero-title {
		font-size: 30px;
	}
	.main {
		padding: 50px 0;
	}
	.widget-sections {
		padding: 0;
	}
	.widget-padded + .widget-padded {
		margin-top: -50px;
	}
	.widget-section {
		margin: 0 0 50px;
	}
	.widget-section:first-child:not(.widget-padded) {
		margin-top: 50px;
	}
	.widget-section:last-child.widget-padded {
		margin-bottom: 0;
	}
	.widget-section:last-child.null-instagram-feed {
		margin-bottom: 0;
	}
	.widget-section.null-instagram-feed {
		margin-top: -50px;
	}
	.widget-padded .widget-wrap {
		padding: 50px 0;
	}
	.widget-padded .widget-wrap.wrap-extra-pad {
		padding: 90px 0;
	}
	.widget-wrap-parallax {
		background-attachment: scroll;
		background-position: center;
	}
	.widget_ci-info .widget-wrap {
		padding: 20px 0;
	}
	.hero-title {
		font-size: 36px;
	}
	.widget_ci-info {
		text-align: center;
	}
	.widget_ci-info .list-social-icons {
		float: none;
		margin-top: 20px;
	}
	.widget_ci-info .list-social-icons li {
		display: inline-block;
		float: none;
	}
	.menu-category {
		margin-bottom: 10px;
	}
	.item-menu .item-menu-thumb {
		width: 40px;
		margin-right: 15px;
	}
	.item-menu-title {
		font-size: 15px;
	}
	.item-menu-desc {
		font-size: 13px;
	}
	.entry-thumb img {
		padding: 7px;
	}
	.entry-title {
		font-size: 24px;
	}
	.entry-content h1 {
		font-size: 26px;
	}
	.entry-content h2 {
		font-size: 22px;
	}
	.entry-content h3 {
		font-size: 20px;
	}
	.entry-content h4 {
		font-size: 18px;
	}
	.entry-content h5 {
		font-size: 16px;
	}
	.entry-content h6 {
		font-size: 14px;
	}
	.widget {
		margin-bottom: 45px;
	}
	.social-icon {
		width: 24px;
		height: 24px;
		font-size: 14px;
		line-height: 21px;
	}
	.footer-widgets {
		padding: 50px 0 10px;
	}
	.footer-credits {
		text-align: center;
	}
	.footer-credits .text-right {
		text-align: center;
		margin-top: 5px;
	}
}

.mast-head div {
    width: 33.33%;
}
.mast-head .left-content a {
    color: #fff !important;
    padding: 10px;
}
.header .container-fluid {

    max-width: 80%;

}
.nav-main-right {
    text-align: center;
}

.mast-head .left-content {
    text-align: right;
}
.mast-head .right-content {
    text-align: left;
}
.mast-head .right-content a:nth-child(1) {
    padding-left: 0;
}

.mast-head .right-content a {

    padding: 10px;
        padding-left: 10px;

}

.top-head {
    background: #3d9338;
	position: relative;
	color: #fff !important;
	text-align: center;
	padding: 10px 0;
}

.top-head svg {
    width: 15px;
    vertical-align: middle;
}

.top-head a, .top-head span {
    padding: 10px;
}

.top-head a {
    color: #fff !important;
}


.navigation-main > li:nth-last-child(1) > a {
    background: #3d9338;
    padding: 10px 15px;
}

.navigation-main > li:nth-last-child(1) > a:hover {
    background: #b60001;

}

.navigation-main > li:nth-last-child(1) > a::after {
    width: 0 !important;
}

.navi-container {
    background: #1a3a7b;
    padding: 10px 0;
}

.mast-head div a {

    color: #fff !important;

}

.wprs_rd_more, .wprs_rd_less {

    color: #fff !important;

}

.wprs_unslider-nav ol li.wprs_unslider-active {
    background: #B60001 !important;
    cursor: default;
}
.wprs_unslider-nav ol li{
	border: 1px solid #fff !important;
}

#el-9fd14f1c h1,
.footer-section h6{
    -webkit-text-stroke: 1px #fff !important;
}
.footer-creds {
	background: #B60001;
    padding: 10px 0;
    text-align: center;
    font-size: 1rem;
    text-transform: uppercase;

}
.footer-creds a {

    color: #fff !important;

}
.grecaptcha-badge {
    z-index: 9999;
}

.footer-additional-info{
	text-align: center;
}

.footer-additional-info h3 {
/*     color: #fff !important; */
	color: #3d9338 !important;
    font-size: 1.2rem;
	-webkit-text-stroke: .5px #fff;
}

.footer-additional-info h4 a {
    font-size: 2.5rem;
    color: #b60001 !important;
    -webkit-text-stroke: 1px #fff;
}

#nav_menu-5 {
    text-align: center;
}

#nav_menu-5 li {
    display: inline-block;
}

.footer .widget {
    margin: 0 0 20px;
}

.footer-widgets {
    padding: 20px 0 0;
}

#nav_menu-5 li a {
    font-size: 1rem;
    padding: 10px;
}

#el-5d507f03 {
    position: relative;
}

/* #el-52758a76 {
    display: none !important;
} */


@media screen and (max-width:1366px){
	.mast-head .left-content {
		text-align: left  !important;
	}
	.mast-head .right-content {
    text-align: center !important;
}
	.feat-menu h2 {
		line-height: 1em !important;
	}	
}
@media screen and (max-width:1024px){
	.vce-row--col-gap-30#el-a27a78b7 > .vce-row-content > .vce-col--md-40p,
	.vce-row--col-gap-30#el-a27a78b7 > .vce-row-content > .vce-col--md-60p{
		flex-basis: calc(50% - 18px) !important;
		max-width: calc(50% - 18px) !important;
	}
	.feat-menu .price {
		font-size: 1rem;
	}
	.mast-head .left-content {
		font-size: .7rem;
	}
	.vce-row--col-gap-30#el-74c1fca8 > .vce-row-content > .vce-col--md-50p {
		flex-basis: calc(80% - 15px) !important;
		max-width: calc(80% - 15px) !important;
		margin: auto;
	}
	.vce-row--col-gap-30#el-74c1fca8 > .vce-row-content > .vce-col--md-25p {
		display: none !important;
	}
	#el-95a6ae7d .vce-button--style-outline-container.vce-button--style-outline-container--align-left {
		text-align: center;
	}
	.navigation-container li a {
		font-size: .9rem;
	}
}
@media screen and (max-width:991px){
	.page-template-template-builder .header {
		padding: 0;
	}
	.mast-head .left-content, .mast-head .right-content {
		display: none;
	}
	.navi-container {
		display: none;
	}
	.sm-hamburger.sm-hamburger--emphatic.sm-position-right.sm-trigger-3.sm-show-on-mobile-only {
		position: absolute;
		top: 40px;
		right: 145px;
	}
	.sm-footer-text {
		font-size: 1.2rem !important;
	}
	.menu-foot-info {
		position: absolute;
		bottom: 20px;
		left: 0;
		right: 0;
	}
	.menu-address-info {
		margin-top: 20px;
	}
	.site-identity {
		width: 300px !important;
	}
	.mast-head {
		padding: 0;
	}
	.top-head {
		display: none;
	}
	.vce-row--col-gap-30#el-85390e94 > .vce-row-content > .vce-col--md-66-66p,
	.vce-row--col-gap-30#el-1bd3e977 > .vce-row-content > .vce-col--md-66-66p,
	.vce-row--col-gap-0#el-56b2c6b7 > .vce-row-content > .vce-col--md-66-66p,
	.vce-row--col-gap-30#el-3dff543b > .vce-row-content > .vce-col--md-66-66p{
		flex-basis: 95% !important;
		max-width: 95% !important;
		margin: auto;
	}
	
}
@media screen and (max-width:768px){
	.sm-hamburger.sm-hamburger--emphatic.sm-position-right.sm-trigger-3.sm-show-on-mobile-only {
		top: 45px;
	}
	.top-section .vce-asset-background-simple-item {
		background-size: 100% !important;
	}
	#el-5c552cd6 h2 {
		font-size: 1rem;
	}
	#el-53e1b408 h1 {
		font-size: 2rem !important;
	}
	.vce-row--col-gap-30#el-29038df7 > .vce-row-content > .vce-col--md-auto,
	.vce-row--col-gap-30#el-8ef7fa07 > .vce-row-content > .vce-col--md-auto{
		max-width: 100% !important;
		flex: 1 1 100% !important;
	}
	#el-9fd14f1c h1 {
		font-size: 4rem !important;
	}
	.sm-hamburger.sm-hamburger--emphatic.sm-position-right.sm-trigger-3.sm-show-on-mobile-only {
		right: 80px;
	}
	.vce-row--col-gap-0#el-51244252 > .vce-row-content > .vce-col--md-66-66p {
		flex-basis: 80% !important;
		max-width: 80% !important;
		margin: auto;
	}
	.vce-row--col-gap-0#el-51244252 > .vce-row-content > .vce-col--md-16-66p {
		display: none !important;
	}
	.feat-menu {
		flex-basis: 100% !important;
		max-width: 100% !important;
	}
	.vce-row--col-gap-30#el-57943206 > .vce-row-content > .vce-col--md-50p {

		flex-basis: 100% !important;
		max-width: 100% !important;
		margin: 50px auto !important;

	}
}
@media screen and (max-width:767px){
	.site-logo img{
		max-height: 100% !important;
	}
	.vce-typewriter-heading--align-right {
		text-align: center !important;
	}
	#el-9af5a512 {

		padding: 0 20px;

	}
	#el-b53c41ae {
		padding: 10px 50px !important;

	}
	#el-24f92d36,
	#el-64f5f3aa,
	#el-fc83ebf7,
	#el-9ee03d68{
		padding: 50px !important;
	}
	
	
}
@media screen and (max-width:520px){
	.menu-address-info {
		color: #fff !important;
	}
	#el-bc2a0729 {
		padding: 100px 50px !important;
	}
	.vce-row--col-gap-30#el-74c1fca8 > .vce-row-content > .vce-col--md-50p,
	.vce-row--col-gap-0#el-51244252 > .vce-row-content > .vce-col--md-66-66p{

		flex-basis: 100% !important;
		max-width: 100% !important;

	}
	#el-9fd14f1c h1 {
		font-size: 3.5rem !important;
	}
	#el-51244252 {
		padding: 0 !important;
	}
	#el-35c6fa0a {
		padding: 100px 0;
	}
	.site-identity {
		width: 200px !important;
	}
	.header .container-fluid {
		max-width: 95%;
	}
	.sm-hamburger.sm-hamburger--emphatic.sm-position-right.sm-trigger-3.sm-show-on-mobile-only {

		right: 40px;

	}
	#el-3df5a4df {
		margin: 50px auto;
	}
	#nav_menu-5 {
		display: none;
	}
	.footer-creds {
		font-size: 0.8rem;
	}
	.main-section,
	#el-b36a714c,
	#el-44ad3225{
		padding: 100px 30px !important;
	}
	.wprs_unslider {
		max-width: 90% !important;
		margin: auto !important;
	}
	
}
@media screen and (max-width:425px){
	.vce-row--col-gap-30#el-a27a78b7 > .vce-row-content > .vce-col--md-40p, .vce-row--col-gap-30#el-a27a78b7 > .vce-row-content > .vce-col--md-60p {
		flex-basis: 100% !important;
		max-width: 100% !important;
		padding: 20px;
	}
	#el-d908460c h2 {
		font-size: 1rem !important;
	}
	#el-24f92d36, #el-64f5f3aa, #el-fc83ebf7, #el-9ee03d68 {
		padding: 20px !important;
	}
	#el-5d507f03 h2 {
		text-align: center;
		font-size: 1rem !important;
	}
	
}
@media screen and (max-width:375px){
	#el-9fd14f1c h1 {
		font-size: 2.5rem !important;
	}
	.feat-menu .price {
		font-size: .9rem;
	}
	.main-section {

		padding: 100px 30px !important;

	}
}
@media screen and (max-width:320px){
	#el-b53c41ae {
		padding: 10px !important;
	}
	.sm-hamburger.sm-hamburger--emphatic.sm-position-right.sm-trigger-3.sm-show-on-mobile-only {
		right: 10px;
	}
}