
body{
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	font-size: 15px;
	line-height: 1.7;
	color: #043633;
	/*background-color: #1f2029;
	background-color: #151515;*/
	background-color: #e9f4e5;
	overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	margin-bottom: 0;
	line-height: 1.5;
	/*color: #000;*/
	color:#ffffff;
	letter-spacing: 3px;
	text-transform: uppercase;
}
h1, .h1{
	font-size: 1.4rem;
	font-weight: 500;
}
h2, .h2 {
	font-size: 0.9rem;
	font-weight: 500;
}
h3, .h3 {
	font-size: 0.8rem;
	font-weight: 400;
}
h4, .h4 {
	font-size: 1.9rem;
	font-weight: 400;
}
h5, .h5 {
	font-size: 1.35rem;
	font-weight: 400;
}
h6, .h6 {
	font-size: 1rem;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 1rem;
}
.button{
	display: block;
	margin:0.4 auto;
  padding: 0.5em 3em;
  border: 1px solid #bb9d69;
  box-sizing: border-box;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Roboto',sans-serif;
  font-weight: 400;
  color: #bb9d69;
  text-align: center;
  transition: all 0.15s;
	margin-top: 15px;
}

.button:hover{
	color:#755a2b;
	border-color:#755a2b;
}
.button:active{
	color:#755a2b;
	border-color:#755a2b;
}
.h2-about {
	display:flex;
}
.h2-about:before {
    background-image:url('../images/wave.png');
		content: " ";
		height: 6px;
		position:relative;
		margin-top:9px;
		flex: 1;
		margin-right:20px;
}
.h2-about:after {
	background-image:url('../images/wave.png');
	content: " ";
	height: 6px;
	position:relative;
	margin-top:9px;
	flex: 1;
	margin-left:20px;
}

/* #Navigation
================================================== */

.header{
  position: fixed;
	width:100%;
	top:0;
	left:0;
	z-index:100;
}
.header-wrapper{
    position: relative;
		width:100%;
	/* width: calc(100% - 100px);
	margin-left: 50px; */
}
.logo-wrap {
	position: relative;
	display:inline-block;
	cursor: pointer;
}
.logo-wrap a {
	cursor: pointer;
}
.logo-wrap img{
	height:25px;
	width:auto;
	display:block;
	cursor: pointer;
  margin-top: 24px;
}
.cd-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 2002;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	height: 75px;
  /* background: rgba(20, 21, 26, 0.96);
  background: transparent; */
  background: #043633;
	box-shadow: none;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	transition: all 300ms linear;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	padding:0 25px;
}
.cd-header.is-fixed {
	position: fixed;
	top: -75px;
	/*background-color: rgba(20, 21, 26, 0.96);*/
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
}
.cd-header.is-visible {
	-webkit-transform: translate3d(0, 100%, 0);
	-moz-transform: translate3d(0, 100%, 0);
	-ms-transform: translate3d(0, 100%, 0);
	-o-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}
.cd-header.menu-is-open {
	background-color: rgba(21, 21, 21, 0);
}

.nav-but-wrap{
	position: relative;
	display: inline-block;
	float: right;
	padding-left: 15px;
	padding-top: 15px;
	/* margin-top: 26px; */
	-webkit-transition : all 0.3s ease-out;
	-moz-transition : all 0.3s ease-out;
	-o-transition :all 0.3s ease-out;
	transition : all 0.3s ease-out;
}
.menu-icon {
	height: 30px;
	width: 30px;
	position: relative;
	z-index: 2;
	cursor: pointer;
	display: block;
}
.menu-icon__line {
	height: 2px;
	width: 30px;
	display: block;
	background-color: #bb9d69;
	margin-bottom: 7px;
	cursor: pointer;
	-webkit-transition: background-color .5s ease, -webkit-transform .2s ease;
	transition: background-color .5s ease, -webkit-transform .2s ease;
	transition: transform .2s ease, background-color .5s ease;
	transition: transform .2s ease, background-color .5s ease, -webkit-transform .2s ease;
}
.menu-icon__line-left {
	width: 16.5px;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}
.menu-icon__line-right {
	width: 16.5px;
	float: right;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
}
.menu-icon:hover .menu-icon__line-left,
.menu-icon:hover .menu-icon__line-right {
	width: 30px;
}

.nav {
	position: fixed;
	z-index: 98;
}
.nav:before, .nav:after {
	content: "";
	position: fixed;
	width: 100vw;
	height: 100vh;
	/* background: rgba(61, 61, 61,0.6); */
  background: #052826;
	z-index: -1;
	-webkit-transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
	transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
	transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
	transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s, -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.8s;
	-webkit-transform: translateX(0%) translateY(-100%);
          transform: translateX(0%) translateY(-100%);
}
.nav:after {
	/*background: rgba(9,9,12,1);*/
	background: #043633;
	-webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.nav:before {
	-webkit-transition-delay: .2s;
          transition-delay: .2s;
}
.nav__content {
	position: fixed;
	visibility: hidden;
	top: 50%;
	margin-top: 40px;
	-webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
	width: 100%;
	text-align: center;
}
.nav__list {
	position: relative;
	padding: 0;
	margin: 0;
	z-index: 2;
}
.nav__list-item {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	letter-spacing: 3px;
	color: #fff;
	font-size: 4vh;
	line-height: 1.5;
	margin-top: 0;
	margin-bottom: 0;
	text-transform: uppercase;

	position: relative;
	display: block;
	-webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
	opacity: 0;
	text-align: center;
	overflow: hidden;
	-webkit-transform: translate(0%, 100%);
          transform: translate(0%, 100%);
	-webkit-transition: opacity .2s ease, -webkit-transform .3s ease;
	transition: opacity .2s ease, -webkit-transform .3s ease;
	transition: opacity .2s ease, transform .3s ease;
	transition: opacity .2s ease, transform .3s ease, -webkit-transform .3s ease;

}
.nav__list-item a{
	position: relative;
	text-decoration: none;
	color: rgba(255,255,255,0.6);
	overflow: hidden;
	cursor: pointer;
	padding-left: 5px;
	padding-right: 5px;
	z-index: 2;
	display: inline-block;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.nav__list-item a:after{
	opacity: 0;
	background-color: rgba(255,255,255,0.2);
	z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.nav__list-item a:hover:after{
	opacity: 1;
}
.nav__list-item a:hover{
	color: rgba(255,255,255,1);
}
.nav__list-item.active-nav a{
	color: rgba(255,255,255,1);
}
.nav__list-item.active-nav a:after{
	height: 20px;
	opacity: 1;
}
body.nav-active .nav__content {
	visibility: visible;
}
body.nav-active .cd-header.is-fixed {
	-webkit-transform: translate3d(0, 100%, 0);
	-moz-transform: translate3d(0, 100%, 0);
	-ms-transform: translate3d(0, 100%, 0);
	-o-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}
body.nav-active .cd-header.is-visible {
}
body.nav-active .menu-icon__line {
	background-color: #fff;
	-webkit-transform: translate(0px, 0px) rotate(-45deg);
          transform: translate(0px, 0px) rotate(-45deg);
}
body.nav-active .menu-icon__line-left {
	width: 15px;
	-webkit-transform: translate(2px, 4px) rotate(45deg);
          transform: translate(2px, 4px) rotate(45deg);
}
body.nav-active .menu-icon__line-right {
	width: 15px;
	float: right;
	-webkit-transform: translate(-3px, -3.5px) rotate(45deg);
          transform: translate(-3px, -3.5px) rotate(45deg);
}
body.nav-active .menu-icon:hover .menu-icon__line-left,
body.nav-active .menu-icon:hover .menu-icon__line-right {
	width: 15px;
}
body.nav-active .nav {
	visibility: visible;
}
body.nav-active .nav:before, body.nav-active .nav:after {
	-webkit-transform: translateX(0%) translateY(0%);
          transform: translateX(0%) translateY(0%);
}
body.nav-active .nav:after {
	-webkit-transition-delay: .1s;
          transition-delay: .1s;
}
body.nav-active .nav:before {
	-webkit-transition-delay: 0s;
          transition-delay: 0s;
}
body.nav-active .nav__list-item {
	opacity: 1;
	-webkit-transform: translateX(0%);
          transform: translateX(0%);
	-webkit-transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
	transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
	transition: opacity .3s ease, transform .3s ease, color .3s ease;
	transition: opacity .3s ease, transform .3s ease, color .3s ease, -webkit-transform .3s ease;
}
body.nav-active .nav__list-item:nth-child(0) {
	-webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
body.nav-active .nav__list-item:nth-child(1) {
	-webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
body.nav-active .nav__list-item:nth-child(2) {
	-webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
body.nav-active .nav__list-item:nth-child(3) {
	-webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
body.nav-active .nav__list-item:nth-child(4) {
	-webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
body.nav-active .nav__list-item:nth-child(5) {
	-webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
body.nav-active .nav__list-item:nth-child(6) {
	-webkit-transition-delay: 1s;
          transition-delay: 1s;
}
body.nav-active .nav__list-item:nth-child(7) {
	-webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
body.nav-active .nav__list-item:nth-child(8) {
	-webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
body.nav-active .nav__list-item:nth-child(9) {
	-webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
body.nav-active .nav__list-item:nth-child(10) {
	-webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
.nav__list .sub-links{
	position: relative;
	padding: 0;
	margin: 0;
	margin-bottom: 20px;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.nav__list .sub-links li{
	padding: 0;
	margin: 0 auto;
	text-align: center;
	margin-top: 7px;
	margin-bottom: 7px;
	display: block;
}
.nav__list .sub-links li:first-child{
	margin-top: 0;
}
.nav__list .sub-links li a{
	color: rgba(255,255,255,.6);
	overflow: hidden;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 22px;
	letter-spacing: 2px;
	padding: 0;
	margin: 0 auto;
	text-align: center;
	max-width: 250px;
	display: block;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.nav__list .sub-links li a:after{
	display: none;
}
.nav__list .sub-links li a:hover{
	color: rgba(255,255,255,1);
}
.nav__list .sub-links li.active-nav a{
	color: rgba(255,255,255,1);
}

.masthead {
  height: 400px;
  width:100%;
  /* min-height: 400px; */
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  position:relative;
}
 .banner-container{
	 padding-top:100px
 }

 .form-style-5{
 	/* max-width: 500px;
 	padding: 10px 20px;
 	background: #f4f7f8;
 	margin: 10px auto;
 	padding: 20px;
 	background: #f4f7f8;
 	border-radius: 8px;
 	font-family: Georgia, "Times New Roman", Times, serif; */
 }
 .form-style-5 fieldset{
 	border: none !important;
 }
 .form-style-5 legend {
 	font-size: 1.4em !important;
 	margin-bottom: 10px !important;
 }
 .form-style-5 label {
 	display: block !important;
 	margin-bottom: 8px !important;
 }
 .form-style-5 input[type="text"],
 .form-style-5 input[type="date"],
 .form-style-5 input[type="datetime"],
 .form-style-5 input[type="email"],
 .form-style-5 input[type="number"],
 .form-style-5 input[type="search"],
 .form-style-5 input[type="time"],
 .form-style-5 input[type="url"],
 .form-style-5 textarea,
 .form-style-5 select {
 	/* background: rgba(255,255,255,.1); */
	font-family: 'Roboto', sans-serif !important;
	font-weight: 300 !important;
	font-size: 15px !important;
	line-height: 1.7 !important;

	background: transparent !important;
 	border: none !important;
 	font-size: 15px !important;
 	margin: 0 !important;
 	outline: 0 !important;
 	padding: 6px !important;
	margin:0 !important;
 	width: 100% !important;
 	box-sizing: border-box !important;
 	-webkit-box-sizing: border-box !important;
 	-moz-box-sizing: border-box !important;
 	background-color: transparent !important;
	border:1px solid #bb9d69 !important;
 	color:#bb9d69 !important;
	border-radius:0 !important;
 	/* -webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.03) inset;
 	box-shadow: 0 1px 0 rgba(0,0,0,0.03) inset; */
 }
 .form-style-5 input[type="text"]:focus,
 .form-style-5 input[type="date"]:focus,
 .form-style-5 input[type="datetime"]:focus,
 .form-style-5 input[type="email"]:focus,
 .form-style-5 input[type="number"]:focus,
 .form-style-5 input[type="search"]:focus,
 .form-style-5 input[type="time"]:focus,
 .form-style-5 input[type="url"]:focus,
 .form-style-5 textarea:focus,
 .form-style-5 select:focus{
 	background: #012321 !important;
 }
 .form-style-5 select{
 	-webkit-appearance: menulist-button !important;
 	height:35px !important;
 }
 .form-style-5 .number {
 	background: #1abc9c !important;
 	color: #fff !important;
 	height: 30px !important;
 	width: 30px !important;
 	display: inline-block !important;
 	font-size: 0.8em !important;
 	margin-right: 4px !important;
 	line-height: 30px !important;
 	text-align: center !important;
 	text-shadow: 0 1px 0 rgba(255,255,255,0.2) !important;
 	border-radius: 15px 15px 15px 0px !important;
 }

 .form-style-5 input[type="submit"],
 .form-style-5 input[type="button"]
 {
 	position: relative !important;
 	display: inline !important;
 	padding: 0px 30px !important;
 	color: #fff !important;
	font-weight:normal;
 	margin: 0 auto !important;
 	background: transparent !important;
 	font-size: 14px !important;
 	text-align: center !important;
 	font-style: normal !important;
 	width: auto !important;
 	border: 1px solid #bb9d69 !important;
 	margin-bottom: 10px !important;
	border-radius:0 !important;
 }
 .form-style-5 input[type="submit"]:hover,
 .form-style-5 input[type="button"]:hover
 {
 	/* background: #109177 !important; */
 }

@media (min-width: 767px) {
	h2, .h2 {
		font-size: 1rem;
	}
  .masthead {
    height: 650px;
    width:100%;
    /* min-height: 750px; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
	.banner-container{
 	 padding-top:200px
  }

.button {
	display: inline-block;
  margin: 0 0.3em 0.3em 0;

}
}
