@font-face {
	/* Only uppercase and bold *//* Add 'text-transform: uppercase;' to elements using this font so that copied text will be uppercase */
    font-family: portico;
    font-weight: bold;
    src: url("/assets/Portico_Light_Rough.otf") format("opentype");
}

/*

font-family: bilo;

font-weight: 400;
font-style: normal;
font-style: italic;

font-weight: 700;
font-style: normal;

*/

:root{
	--clr-1: #ded3b4;/* Tan */
	--clr-1-rgb: 222, 211, 180;
	--clr-1-alt: #d5b692;/* Darker Tan */
	--clr-1-alt-rgb: 213, 182, 146;
	--clr-2: #393820;/* Dark Green */
	--clr-2-rgb: 57, 56, 32;
	--clr-3: #414042;/* Dark Gray */
	--clr-3-rgb: 65, 64, 66;
	
	--clr-4: #e5e6e6;/* Light Gray */

	--clr-brand: #a7152c;
	--clr-brand-rgb: 167, 21, 44;

	--header-clr-primary: #ffffff;
	--header-clr-primary-rgb: 255, 255, 255;
	--header-clr-secondary: #eeeeee;
	--header-clr-secondary-rgb: 238, 238, 238;
	--header-clr-bg: #333333;
	--header-clr-bg-rgb: 51, 51, 51;
	--header-clr-bg-highlight: var(--clr-2);
	--header-clr-bg-highlight-rgb: var(--clr-2-rgb);

	--header-btn-color: var(--header-clr-primary);
	--header-btn-color-rgb: var(--header-clr-primary-rgb);
	--header-btn-color-active: var(--header-clr-secondary);
	--header-btn-color-active-rgb: var(--header-clr-secondary-rgb);

	--clr-light: #ffffff;
	--clr-dark: #000000;
	--clr-inner: #eeeeee;
	--clr-outer: var(--clr-light);

	--inner-width: 90%;
	--inner-v-padding: 15px;
	--inner-h-padding: 25px;

	--header-height: var(--menu-size, 50px);/* #cssmenu size if it's included, otherwise fallback to the specified height. */
}
html{
	margin: 0;
	padding: 0;
}
body{
	background: var(--clr-outer);
	margin: 0;
	padding: 0;
    font-family: bilo, arial, helvetica, sans-serif;
}

a {
	color: inherit;
	outline: none;
	border: none;
	text-decoration: none;
}

p{
	font-size: 1.15em;
}

h1, h2, h3, h4, h5, h6{
    margin: 0.75em 0;
}
h1, h2{
	text-transform: uppercase;
	font-family: portico, bilo, arial, helvetica, sans-serif;
}
.section > .inner > h2,
.section > .inner > .sectionPart > h2{
	font-size: 2.75em;
	margin-top: 0;
}
hr{
	--width: 22.5em;
	--ratio: 0.0225;/* Image ratio 0.022 - bumped up by 0.005 to ensure width is full for 'contain' BGs */
	width: var(--width);
    max-width: 100%;
	height: calc(var(--width) * var(--ratio));
	background: url('/images/title-underline.png') center center no-repeat;
	background-size: contain;
	border: none;
	margin: 0 auto;
}
hr.hrInvert{
	background-image: url('/images/title-underline-flipped.png');
}
hr.hrShadow{
	filter: drop-shadow(0.15em 0.3em 0.25em rgba(0,0,0,0.5));
}
hr.hrLeft{
	margin: 0 auto 0 0;
}
hr.hrRight{
	margin: 0 0 0 auto;
}

img,
iframe{
	max-width: 100%;
}

form{
	text-align: center;
}

input,
textarea{
	display: block;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	font-family: inherit;
	font-size: inherit;
	line-height: 1.3em;
	text-align: left;
	box-shadow: none;
	border: none;
	border-radius: 0.5em;
	padding: 0.5em 0.75em;
	background: var(--clr-4);
	font-size: 1.15em;
}
textarea{
	min-width: 100%;
	max-width: 100%;
    min-height: 7.5em;
    max-height: 20.5em;
    resize: vertical
}
input:focus-visible,
textarea:focus-visible{
	outline: 2px solid var(--clr-1-alt);
}
input + input,
input + textarea,
input + button,
textarea + textarea,
textarea + input,
textarea + button{
	margin-top: 1em;
}

.cformblock{
	vertical-align: top;
	margin: 0;
	display: inline-block;
    width: 50%;
	box-sizing: border-box;
	padding: 0px 2em;
}
.cformblock-fullwidth{
	width: 100%;
	margin-top: 1em;
}

#cformname{/*Will display below .cformcheckboxes for Mobile*/
	width:100%;
	box-sizing:border-box;
}
.cformcheckboxes{/*Will display above #cformname for Mobile*/
	width:100%;
	box-sizing:border-box;
	text-align:left;
}
.cformcheckboxes p, .cformcheckboxes h1{
    font-size: 19px;
    margin: 20px 0px 10px 10px;
    color: #000000;
}
.cformcheckboxes h1{
	font-weight:bold;
}
.cformcheckboxes label, .cformcheckboxline label{
    cursor: pointer;
}
.cformcheckboxline label {
	display: inline-block;
	padding: 0.25em 0;
}
.cformcheckboxline{
	margin-left: 1em;
}
.cformcheckbox{
    width: 0;
    height: 0;
    border: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    opacity: 0;
    display: block;/* needed to not mess with layout */
}
.cformcheckboxes .cformcheckboxline p{
	position: relative;
	font-weight: normal;
	display: inline-block;
    margin: 0 10px 0 30px;
	-webkit-user-select: none !important;
	-ms-user-select: none !important;
	user-select: none !important;
}
.cformcheckboxes .cformcheckboxline p::before{
    position: absolute;
    display: block;
    content: "";
    width: 0.9em;
    height: 0.9em;
    top: 0.1em;
    left: -1.5em;
    background: #ffffff;
    border: 2px solid var(--clr-1);
}
.cformcheckboxes .cformcheckbox[type="radio"] ~ p::before,
.cformcheckboxes .cformcheckbox[type="radio"] ~ p::after{
    border-radius: 16px;
}
.cformcheckboxes input.cformcheckbox:checked ~ p::before,
.cformcheckboxes input.cformcheckbox:focus-visible ~ p::before{
    background: #ffffff;
    border-color: var(--clr-1-alt);
}
.cformcheckboxes input.cformcheckbox:focus-visible ~ p::before{
	border-color: var(--clr-brand);
}
.cformcheckboxes .cformcheckboxline p::after{
    content: "";
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    opacity: 0;
    background-image: url(../images/icons/checkmark-outline.png);
    background-size: contain;
    width: 1.1em;
    height: 1.1em;
    top: 0;
    left: calc(-1.5em + 3px);
}
.cformcheckboxes .cformcheckbox[type="radio"] ~ p::after{
	border: 2px solid var(--clr-1-alt);
    background: var(--clr-1-alt);
    width: 8px;
    height: 8px;
    top: 4px;
    bottom: auto !important;
    left: calc(-1.5em + 4px) !important;
}
.cformcheckboxes input.cformcheckbox:checked ~ p::after{
	opacity:1;
}
.cformcheckboxline-other .formline{
	margin-left: 30px !important;
	width: calc(100% - 30px) !important;
	max-width: calc(100% - 30px) !important;
	min-width: calc(100% - 30px) !important;
    max-height: 15em !important;
	display: none;
}
.other-selected .cformcheckboxline-other .formline {
    display: initial;
}
.formline{
    font-family: proxima-nova, sans-serif !important;
    text-align: left;
    margin: 10px auto;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    outline-offset: 0px;
    border: 2px solid #ffffff;
    border-radius: 0px;
	border-top: 0;
	border-right: 0;
	border-bottom: 2px solid #dddddd;
	border-left: 8px solid var(--clr-1);
	outline: 0 !important;
    font-size: 1em;
    padding: 0.3em;
    color: #000000;
	background: #fcfcfc;
	background: -moz-linear-gradient(top,  #ffffff 0%, #fafafa 100%);
	background: -webkit-linear-gradient(top,  #ffffff 0%,#fafafa 100%);
	background: linear-gradient(to bottom,  #ffffff 0%,#fafafa 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fafafa',GradientType=0 );
}
.formline.input-filled,
.formline.input-filled:required {
    border-left-color: var(--clr-1-alt);
}
.formline:focus-visible{
    border-left-color: var(--clr-brand) !important;
}
textarea.formline{
	min-width: 100%;
	max-width: 100%;
	height: 3.3em;
	min-height: 2.05em;
	max-height: 20em;
    resize: vertical;
}
.cformtitle{
	font-size: 1.5em;
	font-weight: bold;
    margin: 3em auto 1.5em auto;
	text-align: center;
}
.cformtitle span{
	display: block;
	margin: 0 auto;
    max-width: 45em;
	font-size: 0.65em;
	font-weight: normal;
}
.formline-item{
	display: block;
	margin-top: 2.5em;
}
.formline-item:nth-child(1){
	margin-top: 0;
}
.adding-inputs .formline-item{
	margin-top: 0;
}
.formline-item > span:nth-of-type(1) {
    color: #000000;
    text-align: left;
    display: block;
    font-size: 1.25em;
    margin-bottom: 10px;
    margin-top: 1em;
}
.formline-item.adding-btn-container{
	margin-top: 0;
	text-align: left;
}
.adding-btn-label{
	display: block;
	cursor: pointer;
    max-width: 10.5em;
    margin: 0 auto 0 0;
}
.adding-btn, .adding-btn-text{
	display: inline-block;
	vertical-align: middle;
}
.adding-btn{
    float: none;
    text-align: center;
    width: auto;
    height: auto;
    padding: 0 0.35em;
    line-height: 1.25em;
    margin: 0 auto 0 0 !important;
    font-size: 18px !important;
    text-shadow: none !important;
    user-select: none;
}
.adding-btn-text{
	color: var(--natek-primary);
	margin-left: 0.5em;
}
.adding-inputs.adding-max + .adding-btn-container, .adding-btn:disabled, .adding-btn:disabled + .adding-btn-text{
	display: none;
}
.formline-item + .cformcheckboxes, .cformcheckboxes + .cformcheckboxes{
	margin-top: 2.5em;
}
.formline-item > span:nth-of-type(1){
    color: #000000;
	text-align: left;
	display: block;
	font-size: 1.25em;
	margin-bottom: 10px;
	margin-top: 1em;
}
.formline-item-inner{
	border: 2px solid var(--natek-primary);
	padding: 1em 0;
	box-sizing: border-box;
	background: #fcfcfc;
}

input[role="uploadcare-uploader"] {
    appearance: none;
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
    pointer-events: none;
    user-select: none;
}

.has-tooltop{
	position: relative;
	display: inline-block;
    vertical-align: bottom;
    width: 1.2em;
    height: 1.2em;
    background-image: url('/images/icons/lightbulb-tan.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.has-tooltop:hover{
    /* -webkit-filter: hue-rotate(-300deg);
    filter: hue-rotate(-300deg); */
    background-image: url('/images/icons/lightbulb-red.png');
}
.tooltip{
	position: absolute;
	pointer-events: none;
	color: #000000;
	background: #fafafa;
	-webkit-filter: drop-shadow(0px 0px 3px #777777);
	filter: drop-shadow(0px 0px 3px #777777);
	text-align: center;
    font-size: 0.75em;
    line-height: 1em;
    left: 50%;
    top: -1.25em;
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
    width: 10.75em;
    padding: 0.25em;
    user-select: none;
    display: none;
}
.has-tooltop:hover .tooltip{
    display: block;
}
.tooltip:after{
	content: "";
	position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translate(-50%, 100%);
    transform: translate(-50%, 100%);
    border-top: 1em solid #fafafa;
    border-right: 1em solid transparent;
    border-left: 1em solid transparent;
    z-index: 1;
}

/* 
.contactMap{
	border-radius: 0.5em;
	border: 2px solid var(--clr-1-alt);
	width: 100%;
	height: 350px;
}
 */

button,
.btn,
.uploadcare--widget__button,
.uploadcare--widget__button:hover,
.uploadcare--widget__button:focus{
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase;
    font-size: 1.5em;
    padding: 0.4em 1em;
    line-height: 1em;
	border-radius: 0.4em;
	border: 0.1em solid var(--clr-3);
	outline: 0;
	font-family: inherit;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.975), rgba(255, 255, 255, 0.6));
	color: var(--clr-3);
	-webkit-backdrop-filter: blur(1px);
	backdrop-filter: blur(1px);
}
button:hover,
button:focus-visible,
.btn:hover,
.btn:focus-visible,
.uploadcare--widget__button:hover,
.uploadcare--widget__button:focus{
	background: #ffffff;
	box-shadow: 0em 0em 0.5em -0.05em #000000;
}
button.btn-small,
.btn.btn-small,
.uploadcare--widget__button,
.uploadcare--widget__button:hover,
.uploadcare--widget__button:focus,
form button[type="submit"]{
    font-size: 1.15em;
}
form button[type="submit"]{
    margin-bottom: 0.5em;
}

.uploadcare--button,
.uploadcare--button:hover,
.uploadcare--button:focus{
	color: var(--clr-1-alt);
	border-color: var(--clr-1-alt);
}
.uploadcare--button:focus{
	outline-color: var(--clr-1-alt);
}
.uploadcare--button_primary,
.uploadcare--button_primary:hover,
.uploadcare--button_primary:focus{
	color: #ffffff;
	background: var(--clr-1-alt);
}
.uploadcare--button_muted:hover,
.uploadcare--button_muted:focus{
	color: var(--clr-1-alt);
}
.uploadcare--widget__text{
    display: block;
}
.uploadcare--error{
	color: var(--clr-brand);
}
.uploadcare--dialog__powered-by{
	display: none !important;
}

.gallery{
	position: relative;
	box-sizing: border-box;
	text-align: center;
}
.gallery img{
	vertical-align: middle;
}
.gallery > a,
.gallery > img,
.gallery .gItem{
	position: relative;
	overflow: hidden;
	display: inline-block;
	vertical-align: middle;
	box-sizing: border-box;
	width: calc(33.3% - 1em);
	height: auto;
	margin: 0.5em;
	border-radius: 0.75em;
	border: 2px solid #ffffff;
	background: #ffffff;
}
.gallery > a > img,
.gallery .gItem img{
	width: 100%;
	height: auto;
}
.galleryInfo .gItem h3,
.galleryInfo .gItem p{
	position: absolute;
	top: 50%;
	left: 50%;
	margin: 0;
	width: 100%;
    box-sizing: border-box;
	padding: 1em;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	transition: opacity 0.5s ease;
	text-shadow: 0px 0px 0.5em #ffffff, 0px 0px 0.75em #ffffff, 0px 0px 1.25em #ffffff, 0px 0px 1.25em #ffffff;
}
.galleryInfo .gItem h3{
    font-size: 1.5em;
}
.galleryInfo .gItem p{
	z-index: 1;
}
.galleryInfo .gItem:after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--clr-1);
	transition: opacity 0.5s ease;
	opacity: 0;
}
.galleryInfo .gItem:hover h3,
.galleryInfo .gItem:focus-within h3,
.galleryInfo .gItem p{
	opacity: 0;
}
.galleryInfo .gItem:hover p,
.galleryInfo .gItem:focus-within p{
	opacity: 1;
}
.galleryInfo .gItem:hover:after{
	opacity: 0.85;
}

.fancyBlock{
	position: relative;
    margin: 3.3em auto;
	border: 2px solid var(--clr-1-alt);
	box-sizing: border-box;
	border-radius: 0.5em;
	padding: 1em;
	background: #ffffff;
	text-align: center;
}
.fancyBlock:before,
.fancyBlock:after{
	content: '';
	position: absolute;
	bottom: 100%;
	left: 50%;
	width: 10em;
	height: calc(10em / 3.0518);
	background: url('/images/fancy_block-top.png') center center no-repeat;
	background-size: 100% 100%;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}
.fancyBlock:after{
	top: 100%;
	bottom: auto;
	background-image: url('/images/fancy_block-bottom.png');
}
.fancyBlock > h2{
	text-align: center;
    margin: 0 auto 0.4em 0;
}

.fancyBlock .gallery > a,
.fancyBlock .gallery > img,
.fancyBlock .gallery .gItem{
	background: var(--clr-4);
	border: none;
}

.fancyTitle,
.fbTitle > h2{
	position: relative;
	background: url('/images/bgs/bg-title-slice.png');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
    line-height: 1em;
    padding: 0.6em 0em;
    text-align: center;
    margin: 0 auto;
    color: #ffffff;
    font-weight: normal;
    width: 10em;
    max-width: calc(100% - 3em);
}
.fancyTitle:before,
.fancyTitle:after,
.fbTitle > h2:before,
.fbTitle > h2:after{
	content: '';
	position: absolute;
	top: 50%;
	background-repeat: no-repeat;
    background-size: auto 100%;
    width: 1.5em;
    height: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.fancyTitle:before,
.fbTitle > h2:before{
	background-image: url('/images/bgs/bg-title-before.png');
	right: calc(100% - 1px);
	background-position: right center;
}
.fancyTitle:after,
.fbTitle > h2:after{
	background-image: url('/images/bgs/bg-title-after.png');
	left: calc(100% - 1px);
	background-position: left center;
}

.fancyBlock.fbTitle{
	padding-top: 1.5em;
    margin-top: 4.5em;
}
.fancyBlock.fbTitle:before{
	bottom: calc(100% + 1.2em);
}
.fancyBlock.fbTitle > h2{
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.iconLink{
	display: block;
	font-size: 1.5em;
	padding: 0.4em 0.25em;
	font-weight: bold;
}
.iconLink > img,
.iconLink > span{
	display: inline-block;
	vertical-align: middle;
}
.iconLink > img{
	width: 1.5em;
	height: auto;
}
.iconLink:hover,
.iconLink:focus-visible{
	color: #ffffff;
	filter: drop-shadow(0px 0px 1.5em rgba(0,0,0,0.25)) drop-shadow(0px 0px 0.5em rgba(0,0,0,0.75));
}
.iconLink:hover > img,
.iconLink:focus-visible > img{
	filter: invert(1);
}

.inner,
.section,
.sectionPart{
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.section{
	position: relative;
	max-width: 100%;
	width: 100%;
}
.inner{
    position: relative;
	width: var(--inner-width);
	max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
	padding: var(--inner-v-padding) var(--inner-h-padding);
}

#svgClips{
	position: absolute;
	width: 0;
	height: 0;
	user-select: none;
	pointer-events: none;
}
.section.clipTop,
.section.clipBottom{
    box-sizing: border-box;
    z-index: 1;
}
.section.clipTop{
	clip-path: url(#clipTop);
    margin-top: -200px;
}
.section.clipBottom{
	clip-path: url(#clipBottom);
    margin-bottom: -200px;
}
.section.clipTop.clipBottom{
	clip-path: url(#clipTopBottom2);
    margin-top: -200px;
    margin-bottom: -200px;
}

.sectionDouble,
.sectionTriple{
	--sp-padding: calc(var(--inner-h-padding) * 2);
	--sp-padding-between: var(--sp-padding);
}
.sectionTriple{
	--sp-padding-between: calc(var(--sp-padding) * 0.66);
}
.spNarrow{
	--sp-padding-between: calc(var(--sp-padding) / 2);
}
.sectionDouble .inner,
.sectionTriple .inner{
	text-align: center;
	padding: 0 var(--inner-h-padding);
}
.sectionPart{
    position: relative;
    z-index: 1;
	display: inline-block;
	vertical-align: top;
	text-align: left;
	box-sizing: border-box;
	padding: var(--inner-v-padding) var(--sp-padding-between);
}
.sectionPart:nth-child(1){
	padding-left: 0;
}
.sectionPart:nth-last-child(1){
	padding-right: 0;
}
.sectionPart:not(:nth-child(1)):not(:nth-last-child(1)){
	padding-left: calc(var(--sp-padding-between) / 2);
	padding-right: calc(var(--sp-padding-between) / 2);
}
.sectionDouble .sectionPart{
	width: 50%;
}
.sectionTriple .sectionPart{
	width: 33.33%;
}

/* Header */
#header{
	position: fixed;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--header-height);
}
#header .inner{
	padding: 0;
}
#cssmenu-wrapper{
/*     box-shadow: 0px 7px 15px -7px #000000; */
}

/* Page */
#page > .inner:nth-of-type(1){
	padding-top: calc(var(--header-height) + var(--inner-v-padding));
}
#page > .section:nth-of-type(1){
	padding-top: var(--header-height);
}

/* Copyright  */
#copyright{
	margin: 0 auto;
	font-size: 14px;
	background: #000000;
}
#copyright .inner{
	padding: 0.5em;
	overflow: auto;
	text-align: center;
	font-weight: 300;
	color: var(--clr-light);
}
#copyright span{
	display: inline-block;
}



.section-opening{
	background-image: url('/images/bgs/bg-index.jpg');
	text-align: center;
}
/* 
.section-opening img{
	display: block;
	margin: 5em auto 2.5em auto;
	width: 25em;
}
 */
.section-opening .btn{
    margin-top: 500px;
	margin-bottom: 5em;
	box-shadow: 0.25em 0.25em 0.85em 0em #000000;
}
.section-opening .btn:hover{
	box-shadow: 0.25em 0.25em 0.65em 0.15em #000000;
}

.section-about,
.section-contact{
	background-image: url('/images/bgs/bg-paper.jpg');
	padding: 200px 0;
}
.section-about > .inner > .sectionPart > h2{
	color: var(--clr-3);
	font-size: 2.25em;
	margin-top: 1.75em;
}
.section-about .gallery + a[onclick]{
	display: none;
}

.section-services{
	background-image: url('/images/bgs/bg-wood.jpg');
	padding: 50px 0 175px 0;
	text-align: center;
}
.section-services > .inner > h2{
	font-size: 3em;
	color: var(--clr-1);
	text-shadow: 0.1em 0.1em 0.3em rgba(0,0,0,0.75);
}
.section-services > .inner > img{
	width: 5em;
}

.section-contact{
	text-align: center;
	padding-bottom: 50px;
}
/* 
.section-contact > .inner > h2{
	margin-bottom: 0;
}
.section-contact > .inner > h2 + hr{
	margin-bottom: 2em;
}
*/
.section-contact > .inner > .sectionPart > h2{
	margin-top: 1.15em;
}
.section-contact .gallery a.gItem{
	border-color: var(--clr-2);
}
.section-contact .gallery a.gItem:hover,
.section-contact .gallery a.gItem:focus-visible{
	border-color: var(--clr-1-alt);
}

.form_page .logo{
	display: block;
	width: 350px;
	height: auto;
	margin: 0 auto;
	max-width: 70%;
}
.form_page .logo img{
	width: 100%;
	vertical-align: middle;
}
.section-form-opening{
	background-image: url(/images/bgs/bg-index.jpg);
	color: #ffffff;
	text-shadow: 0px 0px 0.25em #000000, 0px 0px 0.5em #000000;
	text-align: center;
	padding-bottom: 100px !important;
	font-size: 1.25em;
}
.section-form{
	background-image: url(/images/bgs/bg-paper.jpg);
    background-size: 100% auto;
    background-position: top center;
    background-repeat: repeat;
}
.section-form .inner{
	padding-top: 225px;
	background: #ffffff;
}