﻿/*===================== 
	Color information
	
	-yellow #f9af3c
grey #f5f2ef
	-
	-
	-
		 
=======================*/
/*===================== 
	CSS reset/normalize 
=======================*/

/**Correct `block` display not defined in IE 8/9.**/
article,aside,details,figcaption,figure,footer,header,hgroup,
main,nav,section,summary {display: block;}
pre {white-space: pre-wrap;}
small { font-size: 80%;}


/*===================== 
	@Font-Face 
=======================*/


/*===================== 
	base styles 
=======================*/

html {
    -ms-text-size-adjust: 100%; 
    -webkit-text-size-adjust: 100%; 
	}

body {
	    font-family: 'Montserrat', sans-serif;
    margin: 0;
	padding:0;
	}

svg:not(:root) {overflow: hidden;/*reset*/}
	
.clear { clear: both;}

img { border: 0;} 
	
/*===================== 
	typography 
=======================*/

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	}
	h1 {
            font-family: 'Raleway', sans-serif;
        font-size: 30px;
        font-weight: 700;
}
	h2 {
            font-family: 'Raleway', sans-serif;
        font-size: 28px;
        font-weight: 700;
}
	h3 {
            font-family: 'Raleway', sans-serif;
        font-size: 24px;
        font-weight: 700;
}
	h4 {
            font-family: 'Raleway', sans-serif;
        font-size: 20px;
        font-weight: 700;
}
	h5 {
            font-family: 'Raleway', sans-serif;
        font-size: 18px;
        font-weight: 700;
}
	h6 {}

p {
    
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
	margin: 0;
	}

.bold {
    font-weight: bold;
	}

/*===================== 
	link styles 
=======================*/

a:focus {outline: thin dotted;/*reset*/}
	
a,
a:link, 
a:visited, 
a:active {
	outline: 0;/*reset*/
    color: inherit; 
    text-decoration:none;
	}
	a:hover  {
		outline: 0;/*reset*/
		text-decoration: none;
		color: #ccc;
		}  

.text-link-1 {
    font-size: 20px;
    font-weight: 600;
    color:#000;
    transition: .2s ease-in;
    margin:5px 0;
}
.text-link-1 i {
    color:#f9af3c;
}
.text-link-1:hover {
    color:#f9af3c;
}

/*===================== 
	header styles 
=======================*/

.header-wrap {
	width: 100%;
	margin: 0;
	}

header {
        background:#f5f2ef;
    border-top:4px solid #f9af3c;
	margin: 0 auto;
	width:100%;
    display: flex;
    justify-content: space-between;
}
.head-logo-1 {
    width:340px;
    position: relative;
}
.head-logo-1 a {
    background:#fff;
    border:1px solid #000;
    padding:30px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top:-4px;
    z-index: 300;
    width:100%;
}
.head-logo-1 img {
	max-width: 250px;
    width:100%;
	height: auto;
	display: block;
    margin:0 auto;
}
.header-right {
    width:calc(100% - 150px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.top-header {
    background:#f9af3c;   
    padding:0 40px 0 10px;
    margin:0;
}
.top-header ul {
    padding:0;
    margin:0;
    display: flex;
    gap:0 20px;
}
.top-header li {
    padding:5px;
    margin:0;
    list-style: none;
}
.top-header li a {
    color:#613c00;
    transition: .2s ease-in;
}
.top-header li a span {
    font-size: 14px;
    font-weight: 400;
    margin-left:5px;
}
.top-header li a i {
    font-size: 16px;
}
.top-header li a:hover {
    color:#000;
}

/*===================== 
	nav styles 
=======================*/

#menu-button{display: none;}
nav.mobile, .mobile-nav-cont-1 { display:none;}

nav.primary {
	padding:20px 25px 20px 0;
	display:block;
	margin:0;
	position:relative;
	}
	nav.primary ul {
		margin:0 auto; 
		padding:0;
        display: flex;
		}
		nav.primary ul li {
			display:inline-block;
			margin:0;
			list-style-type:none; 
			}
			nav.primary ul li a {
                font-family: 'Montserrat', sans-serif;
				color: #000;
				font-size: 16px;
				text-decoration: none;
				padding: 10px;
				display: block;
				margin: 0;
				text-align: center;
				-webkit-transition: .4s ease-in;
				-moz-transition: .2s ease-in;
				-o-transition: .2s ease-in;
				transition: .2s ease-in;
				font-weight: 400;
				}	
			nav.primary ul li a:hover {
				background: #f9af3c;
				color:#fff;
				}
			/* Appearance of the sub-level links */
			nav.primary ul li li a { 
				font-size:16px;
				line-height:16px;
				padding:10px 0;
				color:#fff;
				background: #181818;
				display: block;
				text-align:center;
				border-right:none;
				border-left:none;
				border-bottom: #fff solid 1px;
			}
			/* Appearance of the sub-level links on hover */
			nav.primary ul li li a:hover { 
			}
/* This controls the Primary nav dropdowns for sublinks. Should not have to edit this too muuch */
nav.primary ul ul {
    display: none;
    position: absolute; 
}
nav.primary ul ul ul {
    position: absolute; 
    left: 100%;
    top:0; 
}
nav.primary ul li:hover > ul {  
    display: block;
    line-height:18px; 
    z-index: 100;
}
nav.primary ul ul li {
	display: block;
    float: none; 
	width: 230px;
    position: relative;
    margin:0;
}

.nav-btn-1 {
    background:#fff;
    border:1px solid  #f9af3c;
}

/*===================== 
	content styles 
=======================*/

.wrap-hero {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 30%, rgba(0, 0, 0, 0.9) 100%),
                      url("../siteart/newhero-web.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.wrap-hero .container-1 {
    height: calc(100vh - 380px);
    min-height: 300px;
    padding-bottom:30px;
    display: flex;
    align-items: flex-end;
    background-image: -webkit-linear-gradient(270deg,rgba(0,0,0,0.00) 52.85%,rgba(0,0,0,0.9) 100%);
    background-image: -moz-linear-gradient(270deg,rgba(0,0,0,0.00) 52.85%,rgba(0,0,0,0.9) 100%);
    background-image: -o-linear-gradient(270deg,rgba(0,0,0,0.00) 52.85%,rgba(0,0,0,0.9) 100%);
    background-image: linear-gradient(180deg,rgba(0,0,0,0.00) 52.85%,rgba(0,0,0,0.9) 100%);    
}
.wrap-hero .container-1 .lg-hero-txt {
    font-family: 'Raleway', sans-serif;
    color:#fff;
    font-size: 5.2vw;
    font-weight: 900;
    display: block;
    padding-bottom:20px;
}
.wrap-hero .container-1 .sml-hero-txt {
    font-family: 'Raleway', sans-serif;
    color:#f9af3c;
    font-size: 2.5vw;
    font-weight: 500;
    display: block;
}
.wrap-cta {
    width:100%;
    position: relative;
    z-index: 2;
}
.wrap-cta .container-1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.cta-search-cont-1 {
    width:49%;
}
.cta-search-cont-1 form {
    background:#fff;
    border:2px solid #000;
    display: flex;
    align-items: center;
    padding-right:15px;
    box-sizing: border-box;
    width:100%;
}
.cta-search-cont-1 form input {
    background:none;
    padding:15px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;    
    border:0px;
    outline:0;
    width:100%;
}
.cta-search-cont-1 form button {
    border:0px;
    outline:0;
    background:none;
    font-size: 30px;
    cursor: pointer;
}
.cta-btn-cont-1 {
    width:49%;
    display: flex;
    justify-content: space-between;
    margin-top: -90px;
}
.cta-btn-cont-1 a {
    width:32%;
    background:#fff;
    border:2px solid #000;
    padding:50px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap:40px;
    transition: .2s ease-in;
}
.cta-btn-cont-1 a img {
    max-width: 100%;
    display: block;
    margin:0 auto;
    transition: .2s ease-in;
}
.cta-btn-cont-1 a p {
    text-align: center;
    font-size: 1.5vw;
    font-weight: 500;
    color:#000;
    transition: .2s ease-in;
}
.cta-btn-cont-1 a:hover {
    background:#f9af3c;   
}
.cta-btn-cont-1 a:hover img {
    filter: brightness(0) invert(1);
}
.cta-btn-cont-1 a:hover p {
    color:#fff; 
}

.wrap-about-home {
    width:100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top:-130px;
    position: relative;
    z-index: 1;
}
.about-home-right-1 {
    width:50%;
    background:#f5f2ef;
    display: flex;
    justify-content: flex-end;
}
.about-home-cont-1 {
    width: 100%;
    max-width: 550px;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-home-cont-1 h2 {
    font-size: 22px;
    margin-bottom:10px;
}
.about-home-cont-1 p {
    line-height: 1.5;
}
.about-home-left-1 {
    width:50%;
    border-bottom:2px solid #f9af3c;
    box-sizing: border-box;
}
.about-home-cont-2 {
    width:100%;
    padding:140px 40px 140px 20px;
    box-sizing: border-box;
}
.about-home-cont-2 img {
    width:100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.wrap-home-contact {
    width:100%;
    margin:80px 0;
}
.wrap-home-contact .container-2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.contact-home-cont-1 {
    max-width: 360px;
    width:100%;
    background:#fff;
    border:2px solid #000;
    padding:40px 20px;
    box-sizing: border-box;
}
.contact-home-cont-1 h3 {
    font-size: 20px;
}
.contact-home-cont-1 p {
    padding:20px 0;
    font-size: 16px;
    font-weight: 400;
}
.contact-home-cont-1 p a {
    color:#000;
    transition: .2s ease-in;
}
.contact-home-cont-1 p a:hover {
    color:#f9af3c;
}
.contact-home-cont-2 {
    width:calc(100% - 360px);
    height: 300px;
}
.wrap-content {
    width:100%;
    padding:80px 0;
}
.wrap-content .container-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.content-right-1 {
    width:49%;
    padding:80px 0;
}
.content-right-1 h1 {
    color:#f9af3c;
    padding-bottom:15px;
}
.content-right-1 h2 {
    font-size: 20px;
}
.content-right-1 ul {
    padding:0px 0 10px 0;
    margni:0;
}
.content-right-1 ul li {
    padding:3px 0;
    margni:0;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color:#000;
    list-style: none;
}
.content-right-1 ul li a {
    color:#000;
    transition: .2s ease-in;
}
.content-right-1 ul li a:hover {
    color:#f9af3c;
}
.content-left-1 {
    width:50%;
}
.content-left-1 img {
    width:100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}
.wrap-content-cta {
    width:100%;
    padding:0 0 80px 0;
}
.wrap-content-cta .container-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:20px 0;
}
.wrap-content-cta .container-2 h2 {
    color:#f9af3c;
    padding-bottom:15px;
    width:100%;
}
.wrap-content-cta .container-2 a {
    background:#fff;
    border:2px solid #000;
    padding:40px;
    box-sizing: border-box;
    width:48%;
    text-align: center;
    font-size: 24px;
    transition: .2s ease-in;
}
.wrap-content-cta .container-2 a:hover {
    background:#f9af3c;
    border:2px solid #f9af3c;
    color:#fff;
}

/*===================== 
	Form styles 
=======================*/


.wrap-form {
    width:100%;
    display: flex;
    flex-wrap: wrap;  
    background:#f5f2ef;
    padding:40px 0;
    margin-bottom:50px;
}

.wrap-form h2 {
    color:#f9af3c;
    padding-bottom:15px;
}


/* Containers */



.form-info-cont {
	width: 100%;
	box-sizing: border-box;
}
.form-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.form-inline-1 {
	display: flex;
	flex-wrap: wrap;
}
.thankyou-container {
	width:100%;
	box-sizing: border-box;
	padding:30px 10% 10% 10%;
	margin-top:0;
}

/* Inputs */

.radio-pad {
	padding: 0 0 0 10px;
}

.form-info-cont input, .form-info-cont date, .form-info-cont select {
	width: 100%;
	display: block;
	padding: 5px 0 5px 5px;
	font-size: 17px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
}
.form-info-checkbox input[type="checkbox"] {
	padding: 5px 0 5px 5px;
	margin:  0 0 15px 0;
	box-sizing: border-box;
}
.form-info-cont textarea {
	width: 100%;
	display: block;
	padding: 5px;
	font-size: 17px;
	min-height: 120px;
	box-sizing: border-box;
	margin:  0 0 15px 0;
	font-family: 'Montserrat', sans-serif;
}

select {
	margin:0;
	padding:0;
}
.form-inline .button {
    font-family: 'Montserrat', sans-serif;
	color: #fff;
	font-size:20px;
	font-weight: 500; 
    display: block;
    padding: 10px;
	width: 100%;
    max-width: 300px;
    margin: 10px auto;
	-webkit-transition: .4s ease-in;
    -moz-transition: .2s ease-in;
    -o-transition: .2s ease-in;
    transition: .2s ease-in;
	border: none;
    background: #f9af3c;
	-webkit-appearance: none;
    cursor: pointer;
}


.form-inline .button:hover {
    background: #000;

}

.CaptchaImage {
  max-width: 100%;
}

.CaptchaWhatsThisPanel a {color:#000;}
.CaptchaWhatsThisPanel a:hover {text-decoration:underline;} 



/*===================== 
	banner styles 
=======================*/


/*===================== 
	layout styles 
=======================*/

.wrap {
	width: 100%;
	margin: 0;
	}
	

.container-1 {
	width:100%;
	margin: 0 auto;
	padding:20px 40px;
	box-sizing: border-box;
	}
.container-2 {
	max-width: 1100px;
    width:100%;
	margin: 0 auto;
	padding:20px 40px;
	box-sizing: border-box;
	}
.flex-cont-1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
	
.col-1-6 { width: 16%; box-sizing:border-box;}
.col-1-5 { width: 20%; box-sizing:border-box;}
.col-1-4 { width: 24%; box-sizing:border-box;}
.col-1-3 { width: 33%; box-sizing:border-box;}
.col-1-2 { width: 49%; box-sizing:border-box;}
.col-2-3 { width: 65%; box-sizing:border-box;}
.col-3-4 { width: 75%; box-sizing:border-box;}

/*===================== 
	footer styles 
=======================*/

footer {
	margin: 0;
	width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
	}
.foot-nav {
    background:#fff;
    border-top:4px solid #f9af3c;
    display: flex;
    gap:0 10%;
    width:calc(100% - 535px);
    padding:70px 40px;
    box-sizing: border-box;
}
.foot-nav-row-1 h4 {
    font-size: 20px;
    padding-bottom:5px;
}
.foot-nav-row-1 ul {
    padding:0;
    margin:0;
}
.foot-nav-row-1 ul li {
    padding:5px 0;
    margin:0;
    list-style: none;
}
.foot-nav-row-1 ul li a {
    font-size: 16px;
    transition: .2s ease-in;
    color:#000;
}
.foot-nav-row-1 ul li a:hover {
    color:#f9af3c;
}
.foot-logo-1 {
    max-width: 535px;
    width:100%;
    background:#f9af3c;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:20px 0;
    padding:90px 40px;
    box-sizing: border-box;
}
.foot-logo-1 img {
    display: block;
    max-width: 250px;
    width:100%;
    height: auto;
    filter: brightness(0) invert(1);
}
.foot-logo-1 ul {
    padding:0;
    margin:0;
}
.foot-logo-1 ul li {
    padding:5px 0;
    margin:0;
    text-align: center;
    list-style: none;
}
.foot-logo-1 ul li a {
    font-size: 14px;
    font-weight: 400;
    color:#613c00;
    transition: .2s ease-in;
}
.foot-logo-1 ul li a:hover {
    color:#000;
}



/*========================== 
	  Responsive styles 
============================*/

@media screen and (max-width: 1360px)  {
    
    .head-logo-1 {
      width: 28%;   
    }
    nav.primary {
      padding:20px 25px 10px 0;
    }
    nav.primary ul li {
      margin: 0;
    }
    nav.primary ul li a {
        font-size: 1vw;
    }
    
    
}
@media screen and (max-width: 1200px)  {
    footer {
      align-items: stretch;
    }
    
    .foot-nav {
          gap: 10px;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 920px)  {

    .top-header {
      padding: 0 20px 0 10px;
    }
    
    
	/*==============================
		Mobile Nav Styles			
	================================*/	
    
    
	nav.primary{display:none;}
    .mobile-nav-cont-1 { display:block;} 
	#menu-button{ 
		width: auto;
        text-align: center;
		display: block;
        padding:10px 20px 10px 10px;
		font-size: 24px;
	}
		#menu-button a{
        color:#000;
        text-decoration: none;
        font-weight:normal;
      }
	nav.mobile {
		display:none;
		position: absolute;
		left: 0px;
		width: 100%;
        padding-top:40px;
		height: auto;
		background: #f9af3c;
		z-index: 200; 
		overflow:auto;
        border-bottom:2px solid #000;
	}
	/* MENU HEADER SOCIAL MEDIA */
		nav.mobile .social-media {
			position: relative;
			text-decoration: none;
			display: inline-block;
			font-size:16px;
			word-spacing:13px;
			padding:0 0 0 15px;
			color: #ccc !important;
		}

		nav.mobile .social-media a:link, nav.mobile .social-media a:visited {color:#ccc; text-decoration:none;}
		nav.mobile .social-media a:hover, nav.mobile .social-media a:active {color:#fff; text-decoration:underline;}

	/* MENU HEADER STYLES */
	nav.mobile .mobile_top {
		position: relative;
		display:block;
		padding: 0;
		margin:15px 0 10px 0;
		color: #999;
		font-size: 18px;
		font-weight: 400;
	}

	/* MENU CLOSE 'X' BUTTON */
	nav.mobile .menu-toggle {
		position: absolute;
		padding: 3px 8px 3px;
		font-family: Arial, sans-serif;
		font-size:24px;
		font-weight: bold;
		line-height: 1;
		background: #222;
		color: #999;
		text-decoration: none;
		top:-4px;
		right:13px;
	}
	nav.mobile .menu-toggle:hover { /* Menu close button on hoveer */
		color: #fff;
	}

	/* MENU LIST STYLE */
	nav.mobile ul {
		list-style: none;
		margin:0;
		padding:0;
	}
	nav.mobile ul li {
		position:relative;
	}

	/* FIRST LEVEL */
	nav.mobile ul li a {
		position: relative;
		display: block;
		font-size:18px;
		padding: 10px;
		color: #613c00;
		text-decoration: none;
        text-align: center;
        font-weight: 500;
	}
    .nav-btn-1 {
      color:#000!important;
        text-shadow: 0 0 6px rgba(0,0,0,0.0)!important;
    }
    .nav-btn-1:hover {
        color: #fff!important; 
    }
	nav.mobile ul li a:hover {
		background:rgba(45,45,45,0.5); 
		color: #fff; 
	}

	/* SECOND LEVEL */
	nav.mobile ul li li:last-child {border:none;}
	nav.mobile ul li li a {
		background: #444;
		position: relative;
		display: block;
		padding: 10px 10px 10px 15px;
		border-left:4px #444 solid;
		color: #ccc;
		text-decoration: none;
	}
	nav.mobile ul li li a:hover {background:rgba(65,65,65,0.5);}

	/* THIRD LEVEL */
	nav.mobile ul li li li:last-child {border:none;}
	nav.mobile ul li li li a {
		background: #555;
		position: relative;
		display: block;
		padding: 10px 10px 10px 25px;
		color: #ccc;
		text-decoration: none;
	}
	nav.mobile ul li li li a:hover {background:rgba(85,85,85,0.5);}

	nav.mobile ul li .click{/* dropdown menu idicator arrow be sure to include this image with your image files */ 
		position:absolute;
		display:block;
		cursor:pointer;
		z-index: 12399994;
		top:0;
		right:0;
		width:auto;
		height:auto;
		padding: 17px 20px;
		color:#fff;

	}
	.nav-footer {color:#1B1B1B; position:relative; text-align:center; font-size:14px; line-height:16px; padding:15px 0;}

	/* FONT AWESOME ICONS */
	nav.mobile ul li a i{
		width:25px;
		padding:8px 3px;
		margin:0 6px 0 0;
		text-align:center;
		background:#292929;
		-webkit-border-radius: 30px;
		-moz-border-radius: 30px;
		border-radius: 30px;
	}

    .wrap-hero {
        background:url("../siteart/newhero-mobile.jpg") no-repeat center;
        background-size: cover;
        margin-bottom:70px;
    }
    .wrap-hero .container-1 {
        height: auto;
        min-height: 60vw;
    }
    .wrap-hero .container-1 h1 {
        display: block;
        width:100%;
    }
    
    .wrap-hero .container-1 .lg-hero-txt {
      font-size: 7vw;
        text-align: center;
        padding-bottom: 40px;
    }
    .wrap-hero .container-1 .sml-hero-txt {
      font-size: 4.5vw;
        text-align: center;
        margin-bottom:-90px;
    }
	.cta-search-cont-1 {
      width: 100%;
    }
    .cta-btn-cont-1 {
      width: 100%;
      margin-top: 40px;
    }
    .cta-btn-cont-1 a {
      padding: 20px;
    }
    .cta-btn-cont-1 a p {
      font-size: 2vw;
    }
    .wrap-about-home {
      margin-top: 20px;
    }
    .about-home-right-1 {
        width: 100%;
    }
    .about-home-left-1 {
        width: 100%;
    }
    .about-home-cont-1 {
        max-width: 100%;
        padding: 60px 40px;
    }
    .about-home-cont-2 {
      padding: 40px;
    }
    .wrap-home-contact .container-2 {
      padding:20px 0;
    }
    .contact-home-cont-1 {
      max-width: 100%;
      width: calc(100% - 40px);
        margin:0 auto -10px auto;
        position: relative;
        z-index: 1;
    }
    .contact-home-cont-2 {
      width: 100%;
      height: 400px;
    }
    .wrap-content-cta .container-2 a {
        width:100%;
        font-size: 3.5vw;
    }
    .content-right-1 {
      width: 100%;
      padding: 40px 0;
    }
    .content-left-1 {
      width: 100%;
    }
    .content-left-1 iframe {
      height: 350px;
    }
    .wrap-content {
      padding: 40px 0 10px 0;
    }
    

}
@media screen and (max-width: 760px)  {
    .head-logo-1 {
        width: 100%;
        max-width: 200px;
    }
    .header-right {
      width: auto;
        padding-left:10px;
    }
    .top-header li a span {
      display: none;
    }
    .cta-btn-cont-1 a p {
      font-size: 3vw;
    }
    .foot-nav {
      display: none;
    }
    .foot-logo-1 {
        max-width: 100%;
    }
}
@media screen and (max-width: 450px)  {
    .cta-btn-cont-1 {
         flex-wrap: wrap;
        gap:20px;
    }
    .cta-btn-cont-1 a {
          width: 100%;
    }
    .cta-btn-cont-1 a p {
      font-size: 5.4vw;
    }
}

	
