@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
html, body {
	width: auto!important; overflow-x: hidden!important;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		4;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

.fluid {
	clear: both;
	margin-left: 0;
	width: 100%;
	float: left;
	display: block;
}

.fluidList {
    list-style:none;
    list-style-image:none;
    margin:0;
    padding:0;        
}

/*fonts*/
@font-face {
    font-family: 'Gotham';
    src: url('Gotham.ttf') format('truetype');
}
@font-face {
    font-family: 'GothamBold';
    src: url('GothamBold.ttf') format('truetype');
}
@font-face {
    font-family: 'GothamBook';
    src: url('GothamBook.ttf') format('truetype');
}
@font-face {
    font-family: 'GothamLight';
    src: url('GothamBook.ttf') format('truetype');
}
@font-face {
    font-family: 'GothamMedium';
    src: url('GothamBook.ttf') format('truetype');
}
@font-face {
    font-family: 'LeagueGothicRegular';
    src: url('LeagueGothicRegular.otf') format('truetype');
}
@font-face {
    font-family: 'LeagueGothicCondensed';
    src: url('LeagueGothicCondensed.otf') format('truetype');
}
@font-face {
    font-family: 'WeddingChardonnay';
    src: url('WeddingChardonnay.ttf') format('truetype');
}
@font-face {
    font-family: 'Windsong';
    src: url('Windsong.ttf') format('truetype');
}
@font-face {
    font-family: 'impact';
    src: url('impact.ttf') format('truetype');
}
@font-face {
    font-family: 'Avenir';
    src: url('Avenir.otf') format('truetype');
}
@font-face {
    font-family: 'Milton_Two';
    src: url('Milton_Two_Bold.otf') format('truetype');
}
@font-face {
    font-family: 'Milton_Two_Bold';
    src: url('Milton_Two_Bold.otf') format('truetype');
}
/*preloader*/
#preloader  {
     position: fixed;
     margin-top: 0px;
     left: 0;
     right: 0;
     bottom: 0;
     background-color: #FFFFFF;
     z-index: 99;
     height: 100vh;
 }
#status  {
     width: 40px;
     height: 100vh;
     position: absolute;
     left:48%;
     top: 44%;
 }
 @media only screen and (max-width: 560px){
#status  {
     width: 40px;
     height: 40px;
     position: absolute;
     left:44%;
     top: 40%;
 }
 }
.preloader1 {
   width:auto;
   height:auto;
   display:inline-block;
   padding:0px;
   text-align:center;
   left:48%;
   top: 44%;
}
.preloader1 span {
   position:absolute;
   display:inline-block;
   width:50px;
   height:50px;
   border-radius:100%;
   background:#687d80;
   -webkit-animation:preloader1 1.6s linear infinite;
   animation:preloader1 1.6s linear infinite;
}
.preloader1 span:last-child {
   animation-delay:-0.8s;
   -webkit-animation-delay:-0.8s;
}
@keyframes preloader1 {
   0% {transform: scale(0, 0);opacity:0.8;}
   100% {transform: scale(1, 1);opacity:0;}
}
@-webkit-keyframes preloader1 {
   0% {-webkit-transform: scale(0, 0);opacity:0.5;}
   100% {-webkit-transform: scale(1, 1);opacity:0;}
}
/*video*/
.js-video {
	height: 0;
	padding-top: 25px;
	padding-bottom: 67.5%;
	margin-bottom: 10px;
	position: relative;
	overflow: hidden;
	z-index:0;
	}
	.js-video.widescreen {
	padding-bottom: 56.34%;
	}	
	.js-video.vimeo {
	padding-top: 0;
	}
 	.js-video embed, .js-video iframe, .js-video object, .js-video video {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	}
/*............*/
/*links*/
a.l1:link {
	color: #FFF;
	text-decoration: none;
	-o-transition: .7s;
	-ms-transition: .7s;
	-moz-transition: .7s;
	-webkit-transition: .7s;
	transition: .7s;
	background: rgba(4, 109, 177, 0.0);
	border-top: 0px solid #FFF;
	padding: 10px;
}
a.l1:visited {
	color: #FFF;
	text-decoration: none;
	-o-transition: .7s;
	-ms-transition: .7s;
	-moz-transition: .7s;
	-webkit-transition: .7s;
	transition: .7s;
	color: #000000;
	background: rgba(4, 109, 177, 0.0);
	border-top: 0px solid #647a84;
	padding: 10px;
}
a.l1:hover {
    color: #FFF;
	text-decoration:none;    
	background: rgba(0, 0, 0, 0.7);
	border-top: 0px solid #647a84;
	padding: 10px;
}
a.l1c:link {
	color: #000;
	font-size: 16px;
	text-decoration: none;
	font-weight: normal;
	-o-transition: .7s;
	-ms-transition: .7s;
	-moz-transition: .7s;
	-webkit-transition: .7s;
	transition: .7s;
	background: rgba(255, 255, 255, 1.0);
	border: thin solid #db7721;
	padding: 8px;
}
a.l1c:visited {
	color: #000;
	font-size: 16px;
	text-decoration: none;
	font-weight: normal;
	-o-transition: .7s;
	-ms-transition: .7s;
	-moz-transition: .7s;
	-webkit-transition: .7s;
	transition: .7s;
	background: rgba(255, 255, 255, 1.0);
	border: thin solid #db7721;
	padding: 8px;
}
a.l1c:hover {
        color: #fde2a3;
	font-size: 16px;
	text-decoration:none;    
	font-weight: normal;
	background: #575f67;
	border: thin solid #6f3010;
}
a.l1d:link {
	color: #FFF;
	font-size: 16px;
	font-weight: bold;
	font-family: 'GothamBold', Helvetica Neue, Helvetica, Arial, sans-serif;
	text-decoration: none;
	-o-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	transition: .5s;
}
a.l1d:visited {
	color: #FFF;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	-o-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	transition: .5s;
}
a.l1d:hover {
        color: #f6d8d0;
	font-size: 16px;
	text-decoration:none;
}
a.lql:link {
	color: #db7721;
	text-decoration: none;
	font-weight: bold;
	-o-transition: .7s;
	-ms-transition: .7s;
	-moz-transition: .7s;
	-webkit-transition: .7s;
	transition: .7s;
}
a.lql:visited {
	color: #db7721;
	text-decoration: none;
	font-weight: bold;
	-o-transition: .7s;
	-ms-transition: .7s;
	-moz-transition: .7s;
	-webkit-transition: .7s;
	transition: .7s;
}
a.lql:hover {
        color: #6f3010;
	text-decoration:none;    
	font-weight: bold;
}
a.l2:link {
	color: #cccccc;
	text-decoration: none;
	font-weight: bold;
	-o-transition: .7s;
	-ms-transition: .7s;
	-moz-transition: .7s;
	-webkit-transition: .7s;
	transition: .7s;
}
a.l2:visited {
	color: #cccccc;
	text-decoration: none;
	font-weight: bold;
	-o-transition: .7s;
	-ms-transition: .7s;
	-moz-transition: .7s;
	-webkit-transition: .7s;
	transition: .7s;
}
a.l2:hover {
        color: #FFF;
	text-decoration:none;    
	font-weight: thin;
}
/*mobile menu*/
        hr.mobile_menu {
	margin: 10px;
        color: #575757;
        background-color: #575757;
	border-color: #575757;
}
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 99;
    top: 0px;
    left: 0px;
    background-color: #2e3839;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 50px;
    padding-right: 0px;
}
.sidenav a {
    text-align:left;
    padding: 0px 20px 0px 32px;
    text-decoration: none;
    font-size: 14px;
    font-weight:bold;
    color: #FFF;
    display: block;
    transition: 0.3s
    padding-top: 5px;
    font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
}
.sidenav a:hover, .offcanvas a:focus{
    color: #fde2a3;
}
.sidenav .closebtn {
    position: absolute;
    top: 0;
    left: 5px;
    font-size: 24px;
    margin-left: 0px;
    padding-top: 0px;
}
@media screen and (max-height: 560px) {
.sidenav {padding-top: 30px;}
.sidenav a {
	font-size: 14px;
    padding-top: 5px;
}
.sidenav .closebtn {
	padding-top: 0px;
    margin-left: 0px;
}
}
/*Main Navigation*/
.sc_holder_01 {
	display: block;
	position: relative;
	width: 100%;
    margin-left: 0%;
	margin-top:0px;
	background: rgba(255, 255, 255, 1.0);
	text-align:right;
	padding: 0px;
}
.sc_menu_m { 
   display: block;
   top: 0px; 
   margin-left: 0%;
   margin-right: 0%;
   width: 100%; 
   text-align:left;
   padding-top: 10px;
   padding-bottom: 10px;
   padding-left: 25px;
   background-color:rgba(255, 255, 255, 1.0);
}
.container03 {
	display: none;
	width: 100%;
    margin-left: 0%;
	background: rgba(0, 0, 0, 0.0);
	text-align:center;
	padding: 0px;
	font-size: 16px;
	color: #FFFFFF;
	min-width: 1200px;
}
.wrapper03 {
	width: 100%;
	margin-left: 0%;	
}
.sc_holder_menu {
	display: block;
	position: relative;
	clear: none;
	width: 100%;
	margin-left: 0%;
	margin-top:0px;
        background-color:rgba(0, 0, 0, 0.0);
	text-align:right;
	padding: 0px;
}
/*links*/
.navigation {
  margin:0px;
  width: 100%;
  padding: 0;
  text-align: right;
  list-style: none;
}
.navigation li {
	display: block; 
        float: left;
        width: auto;
	color: #FFF;
	font-weight: normal;
        margin-right: 0px;
	text-align: center;
	background: rgba(0, 0, 0, 0.0);
	border-left: 0px solid #07d7d7d;
	border-right: 0px solid #7d7d7d;
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
}
.navigation li a {
        display: block;
	font-weight: normal;
	color: #FFF;
	text-decoration: none;
	-o-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	transition: .5s;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 10px;
	padding-bottom:5px;
	border-bottom: 0px solid #647a84;
}
.navigation li a:visited {
        display: block;
	color: #FFF;
	text-decoration: none;
	-o-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	transition: .5s;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 10px;
	padding-bottom:5px;
	border-bottom: 0px solid #647a84;
}
.navigation li a:hover {
       display: block;
        color: #f6d8d0;
	text-decoration:none;    
	background-color: #5f6d6f;
	color: #fde2a3;
	padding-top: 10px;
	padding-bottom:5px;
	border-top: 0px solid #647a84;
	
}
a.bline:link {
	border-bottom: 1px solid #647a84;
}
/*end links*/
/*extra features*/
.outline_01 {
	background: rgba(10, 25, 35, 0.4);
	border: 1px solid #FFFFFF;
	padding: 10px;
}
.sp01 {
	font-weight: bold;
}
.sp02 {
	font-weight: bold;
	font-style:italic;
}
.padding01 {
	padding: 0px;
}
.phone02 {
	color: #000;
	font-weight:bold;
	text-decoration: none;
}
/* /////////////////////////////////*/
/* /////////////////////////////////*/
/* /////////////////////////////////*/
/* Mobile Layout: 480px and below. */
  
.gridContainer {
	margin-left: 0px;
	margin-right: a0px;
	width: 100%;
	padding-left: 0%;
	padding-right: 0%;
	clear: none;
	float: none;
}
.sc_holder_01 {
	display: block;
	position: relative;
	width: 100%;
        margin-left: 0%;
	margin-top:0px;
	background-color: #2e3839;
	text-align:center;
	padding: 0px;
}
.sc_menu_m { 
   display: block;
   top: 0px; 
   margin-left: 0%;
   margin-right: 0%;
   width: 100%; 
   text-align:left;
   padding-top: 10px;
   padding-bottom: 10px;
   padding-left: 25px;
   background-color: #2e3839;
}
/*..........*/
body{
	overflow-x: hidden;
	margin-top: 0px;
	margin-left:0px;
	font-family: "Gotham", Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #000; 
}
/*SPACING*/
a.anchor {
    display: block;
    position: relative;
    top: 0px;
    visibility: hidden;
}
/*TITLES-TEXT*/
.content_holder_title01 {
	display: block;
	width: 100%;
	height: auto;
	margin-top:0px;
	margin-left:0px;
	clear: none;
	background-color:#faede7;
	color:#2d2d2d;
	font-weight: normal;
	font-size: 40px;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 25px;
        box-sizing: border-box;
	border: 0px solid #2d2d2d;
}
.content_holder_title01:after {
    content: ""; /* This is necessary for the pseudo element to work. */ 
    display: block; /* This will put the pseudo element on its own line. */
    margin: 0 auto; /* This will center the border. */
    width: 50px; /* Change this to whatever width you want. */
    padding-top: 0px; /* This creates some space between the element and the border. */
    border-bottom: 0px solid #2d2d2d; /* This creates the border. Replace black with whatever color you want. */
}
.content_holder_title01a {
        font-family: 'GothamLight', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
}
.content_holder_title02a {
        font-family: 'GothamLight', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
}
.fgo_text01a {
        font-family: 'GothamBold', Arial, sans-serif;
        color:#fff;
	font-weight: bold;
	font-size: 25px;
}
.fgo_text01c {
        font-family: 'GothamBold', Arial, sans-serif;
        color:#fff;
	font-weight: bold;
	font-size: 18px;
}
.cover_text01a {
        color:#f1dac7;
	font-weight: 900;
	font-size: 30px;
        letter-spacing: 2px;
        font-family: 'Gotham', Arial, sans-serif;
        text-shadow: 1px 1px #524537;
}
.cover_text01b {
        color:#000;
	font-weight: 800;
	font-size: 20px;
        letter-spacing: 0px;
        font-family: 'Gotham', Arial, sans-serif;
}
.sig_01 {
        font-family: 'Avenir', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
	font-size: 60px;
        color: #000;
        -webkit-filter: drop-shadow(0px 0px 0px #545454);
        filter: drop-shadow(0px 0px 0px #545454);
}
.sig_02 {
        font-family: 'GothamBook', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
	font-size: 24px;
        color: #c04c57;
        line-height:30px;
}
.sig_03 {
        font-family: 'GothamBook', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
	font-size: 30px;
        color: #665341;
        line-height:50px;
}
.sig_04 {
        font-family: 'GothamBook', Arial, sans-serif;
        font-weight:bold;
        color: #faede7;
	font-size: 20px;
}
.sig_05 {
        font-family: 'GothamBold', Arial, sans-serif;
        font-weight:bold;
	font-size: 24px;
        text-decoration: underline;
        color: #ebc5a0;
}
.sig_06 {
        font-family: 'Gotham', Arial, sans-serif;
        font-weight:normal;
	font-size: 18px;
}
.sig_07 {
        font-family: 'Windsong', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
	font-size: 60px;
        color: #000;
padding-top: 10px;
        line-height:30px;
}
.sig_08 {
        font-family: 'Windsong', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
	font-size: 60px;
        color: #FFF;
        line-height:100px;
}
.sig_09 {
        font-family: 'GothamBook', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
	    font-size: 18px;
        color: #c04c57;
}
.title01 {
        font-family: 'Windsong', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
	font-size: 90px;
        color: #FFF;
        -webkit-filter: drop-shadow(0px 0px 0px #545454);
        filter: drop-shadow(0px 0px 0px #545454);
        margin: 0px 0px -50px 0px; 
        padding: 0px 0px 0px 0px;
}
.title02 {
        font-family: 'GothamBold', Arial, sans-serif;
        font-weight:bold;
	font-size: 14px;
        color:#fff;
}
.space01 {
	display: block;
        text-align: center;
        line-height: 30px;
	color:#FFF;
}
.space02 {
	display: block;
        line-height: 120%;
	color:#000;
}
.space03 {
	display: block;
        text-align: justify;
	color:#fff;
}
.shdw01 {
         filter: drop-shadow(1px 3px 5px #545454);
}
/*SOCIAL-NAV*/
.container01b {
	display: none;
        position: fixed;
        top: 0;
        z-index: 10;
	width: 100%;
	height: auto;
        margin-left: 0%;
	background-color:#2e3839;
	text-align:center;
	padding-top: 0px;
	color: #FFF;
        border-bottom: thin solid #e2e2e2;
}
.wrapper01b {
	width: 100%;
	margin-left: 0%;
}
.content_logo01 {
	display: none;
	width: 40%;
	min-width: 200px;
	height: auto;
	margin-left: 0%;
	clear: none;
	background: rgba(40, 54, 83, 0.0);
	font-weight: normal;
	font-size: 11px;
	color: #FFF;
	text-align: center;
	padding-top: 0px;
	padding-bottom: 0px;
	border: 0px solid #000000;
}
.content_nav01 {
	display: none;
	width: 60%;
	min-width: 500px;
	height: auto;
	margin-right: 0px;
	clear: none;
        background: rgba(0, 0, 0, 0.0);
	color:#000000;
	font-weight: normal;
	font-size: 14px;
	text-align: right;
	padding: 0px;
	border: 0px solid #000000;
}
/*LOGO*/
.container01c {
	display: block;
        position: absolute;
        top: 45px;
	width: 100%;
	height: auto;
        margin-left: 0%;
	background-color: #FFF;
	text-align:center;
	padding-top: 0px;
	color: #000;
}
.wrapper01c {
	width: 100%;
	margin-left: 0%;
}
.content_logo01c {
	display: block;
	width: 40%;
	min-width: 100px;
	height: auto;
	margin-left: 30%;
	clear: none;
	font-weight: bold;
	font-size: 11px;
	color: #000;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 0px;
	border: 0px solid #000000;
}
/*BANNER*/
.container_home01 {
	width: 100%;
	height: auto;
	min-height: 600px;
	overflow-x: hidden;
	margin-top: 0px;
	background-image:url(img/main01l.jpg);
        background-position: top center; 
        background-repeat:no-repeat;
       -webkit-background-size:cover;
       -moz-background-size:cover;
       -o-background-size:cover;
       background-size:cover;
       background-position:center;
}
.wrapper_home01 {
	width: 100%;
	margin-left: 0%;
}
.content_home01a {
	width: 80%;
	height: auto;
	margin-left:10%;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#000;
	text-align: right;
	font-weight: normal;
	font-size: 24px;
	padding-top: 210px;
}
.content_home01b {
        width: 90%;
	height: auto;
	margin-left:5%;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#000;
	text-align: justify;
	font-weight: 600;
	font-size: 16px;
	padding-top: 0px;
	padding-bottom: 0px;
	border-bottom: 0px solid #000000;
        font-family: 'Gotham', Arial, sans-serif;
}

/*INTRO*/
.container_intro01 {
	width: 100%;
	margin-top: 0px;
	margin-left: 0%;
	background-color:#889da0;
	color: #FFF;
}
.wrapper_intro01 {
	width: 100%;
	margin-left: 0%;
}
.content_holder_intro01 {
	display: block;
	width: 100%;
	height: auto;
	margin-left:0%;
	clear: none;
	color:#FFF;
	font-weight: normal;
	font-size: 20px;
	text-align: left;
	padding-top: 0px;
	border: 0px solid #545454;
}
.content_intro01 {
	display: block;
	width: 90%;
	height: auto;
	margin-left:5%;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#FFF;
	text-align: center;
	font-weight: normal;
	font-size: 18px;
	padding-top: 40px;
	padding-bottom: 0px;
	border-bottom: 0px solid #000000;
}

/*WELCOME*/
.container_welcome01 {
	width: 100%;
	margin-top: 0px;
	margin-left: 0%;
	background-color:#889da0;
	color: #FFF;
}
.wrapper_welcome01 {
	width: 100%;
	margin-left: 0%;
}
.content_holder_welcome01 {
	display: block;
	width: 80%;
	height: auto;
	margin-left:10%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#FFF;
	font-size: 20px;
	text-align: left;
	padding-top: 0px;
	border: 0px solid #545454;
}
.content_welcome01 {
	display: block;
	width: 90%;
	height: auto;
	margin-left:5%;
	margin-bottom:30px;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#FFF;
	text-align: center;
	font-weight: normal;
        font-style: italic;
	font-size: 20px;
	padding-top: 0px;
	border-bottom: 0px solid #000000;
}

/*OTHER WORK*/
.container_ow01 {
	width: 100%;
	margin-top: 0px;
	margin-left: 0%;
	background-color:#FFFFFF;
	color: #000;
    border-bottom: thin solid #ebc5a0;
}
.wrapper_ow01 {
	width: 100%;
	margin-left: 0%;
}
.content_holder_ow_title01 {
    display: block;
    margin: 0 auto;
	text-align: center;
	font-weight: normal;
	font-size: 40px;
	background-color:#FFFEF2;
    padding: 20px 0px 20px 0px;
    box-sizing: border-box;
}
.content_holder_ow01a {
	display: block;
	width: 94%;
	height: auto;
	margin-left: 3%;
	margin-bottom:0px;
	clear: none;
	color:#2d2d2d;
	text-align: left;
	font-weight: normal;
	font-size: 15px;
    padding: 10px 10px 20px 10px;
    box-sizing: border-box;
	border-bottom: 0px solid #cdcdcd;
}
.content_holder_ow01b {
	display: block;
	width: 94%;
	height: auto;
	margin-left: 3%;
	margin-bottom:0px;
	clear: none;
	color:#2d2d2d;
	text-align: left;
	font-weight: normal;
	font-size: 15px;
    padding: 10px 10px 20px 10px;
    box-sizing: border-box;
	border-left: 0px solid #e4e4e4;
}


/*ABOUT US*/
.container_aboutus01 {
	width: 100%;
	margin-top: 0px;
	margin-left: 0%;
	background-color:#FFFEF2;
	color: #000;
        border-bottom: thin solid #ebc5a0;
}
.wrapper_aboutus01 {
	width: 100%;
	margin-left: 0%;
}
.content_holder_aboutus01_arrow {
      	display: block;
        margin-top: 0px;
        height: auto;
        margin-left: 49%;
        margin-right: 49%;
        width: 0;
        height: 0;
        border-left: 40px solid transparent;
        border-right: 40px solid transparent;
        border: 10px solid #daeae4;
}
.content_holder_aboutus01a {
	display: block;
	width: 90%;
	height: auto;
	margin-left: 5%;
	margin-bottom:0px;
	clear: none;
	color:#2d2d2d;
	text-align: center;
	font-weight: 500;
	font-size: 20px;
	padding-top: 0px;
	padding-bottom: 5px;
	border-bottom: 0px solid #000000;
}
.content_holder_aboutus01b {
	display: block;
	width: 90%;
	height: auto;
	margin-left: 5%;
	margin-bottom:0px;
	clear: none;
	color:#2d2d2d;
	text-align: justify;
	font-weight: 600;
	font-size: 18px;
	padding-top: 0px;
	padding-bottom: 40px;
	border-bottom: 0px solid #000000;
}

/*SERVICES*/
.container_services01 {
        width: 100%;
	margin-top: 0px;
	margin-left: 0px;
	background-color: #889da0;
	color: #ccc;
}
.wrapper_services01 {
	width: 100%;
	margin-left: 0px;
}
.content_services01_section02a_arrow {
      	display: block;
        margin-top: 0px;
        height: auto;
        margin-left: 49%;
        margin-right: 49%;
        width: 0;
        height: 0;
        border-left: 30px solid transparent;
        border-right: 30px solid transparent;
        border: 10px solid #daeae4;
}
.content_holder_services01 {
	display: block;
	width: 100%;
	height: auto;
	margin-left:0px;
	clear: none;
	background-color: #889da0;
	color:#fff;
	font-weight: normal;
	font-size: 50px;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 40px;
	border: 0px solid #ccc;
}
.content_holder_services02 {
	display: block;
	width: 100%;
	height: auto;
	margin-left:0%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#ccc;
	font-weight: normal;
	font-size: 20px;
	text-align: left;
	padding-top: 30px;
	padding-bottom: 20px;
	border: 0px solid #ccc;
}
.content_holder_services03a {
	display: block;
	width: 90%;
	height: auto;
	margin-left:5%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#FFF;
	font-weight: bold;
	font-size: 22px;
	text-align: center;
	padding-top: 0px;
	padding-bottom: 20px;
	border: 0px solid #ccc;
}
.content_holder_services03b {
	display: block;
	width: 30%;
	height: auto;
	margin-left:5%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#000;
	font-weight: bold;
	font-size: 12px;
	text-align: center;
	padding-top: 0px;
	padding-bottom: 30px;
	border: 0px solid #ccc;
}
.content_holder_services03c {
	display: block;
	width: 30%;
	height: auto;
	margin-left:5%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#000;
	font-weight: bold;
	font-size: 12px;
	text-align: center;
	padding-top: 0px;
	padding-bottom: 30px;
	border: 0px solid #ccc;
}

/*QUOTES*/
.container_quote01 {
	width: 100%;
	height: auto;
	min-height: 600px;
	max-height: 800px;
	overflow-x: hidden;
	margin-top: 0px;
	background-image:url(img/main01f3b.jpg);
        background-position: top center; 
        background-repeat:no-repeat;
       -webkit-background-size:cover;
       -moz-background-size:cover;
       -o-background-size:cover;
       background-size:cover;
}
.wrapper_quote01 {
	width: 100%;
	margin-left: 0%;
}
.content_quote01_holder {
	display: block;
	width: 90%;
	height: auto;
	margin-left:5%;
	margin-bottom:0px;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#FFF;
	text-align: center;
	font-weight: 600;
        font-style: italic;
	font-size: 26px;
	padding-top: 100px;
	border-bottom: 0px solid #000000;
        font-family: 'Gotham', Arial, sans-serif;
        -webkit-filter: drop-shadow(2px 2px 0px #000);
        filter: drop-shadow(2px 2px 0px #000);
}
.content_quote01_section01 {
	display: block;
	width: 50%;
	height: auto;
	clear: none;
	color:#fde2a3;
	text-align: center;
	font-weight: normal;
        font-style: italic;
	font-size: 24px;
	padding: 140px;
        box-sizing: border-box;
	border-bottom: 0px solid #000000;
}
.content_quote01_section02 {
	display: block;
	width: 50%;
	height: auto;
	margin-left:0%;
	clear: none;
	text-align: center;
	padding: 0px;
	border: 0px solid #545454;
}

/*CTA*/
.container_cta01 {
	width: 100%;
	margin-top: 0px;
	margin-left: 0%;
	background: #fff;
	color: #000;
}
.wrapper_cta01 {
	width: 100%;
	margin-left: 0%;
}
.content_holder_cta01 {
	display: block;
	width: 80%;
	height: auto;
	margin-left:10%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#000;
	font-weight: normal;
	font-size: 25px;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 25px;
	border: 0px solid #ccc;
        line-height: 30px;
}

/*FOOTER*/
.container_footer {
	width: 100%;
        margin-left: 0%;
	background: #faede7;
	text-align:center;
	padding: 0px;
}
.wrapper_footer {
	width: 100%;
	margin-left: 0%;	
}
.content_holder_footer01 {
	width: 100%;
	margin-top: 0px;
        margin-left: 0%;
	background: #faede7;
	text-align:center;
	padding: 0px;
}
.content_footer01a {
	display: block;
	width: 90%;
	height: auto;
	margin-left:5%;
	clear: none;
        background: rgba(0, 157, 184, 0.0);
	color:#000;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
	padding-top: 30px;
	border: 0px solid #000000;
	font-family: 'GothamBold';
    src: url('GothamBold.ttf') format('truetype');
}
.content_footer01b {
	display: block;
	width: 90%;
	height: auto;
	margin-left:5%;
	clear: none;
        background: rgba(0, 0, 0, 0.0);
	color:#000000;
	font-weight: normal;
	font-size: 24px;
	text-align: center;
	padding: 0px;
	border: 0px solid #000000;
}
.content_footer01c {
	display: block;
	width: 90%;
	height: auto;
	margin-left:5%;
	clear: none;
        background: rgba(0, 0, 0, 0.0);
	color:#000;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
	padding-top: 20px;
	border: 0px solid #000000;
	font-family: 'GothamBook';
    src: url('GothamBook.ttf') format('truetype');
}
.content_holder_footer02 {
	width: 100%;
	margin-top: 0px;
        margin-left: 0%;
	background: #faede7;
	text-align:center;
	padding-top:20px;
	padding-bottom:20px;
}
.content_footer02a {
	display: block;
	width: 80%;
	height: auto;
	margin-left:10%;
	clear: none;
    background: rgba(0, 0, 0, 0.0);
	color:#000;
	font-weight: normal;
	font-size: 24px;
	text-align: center;
	padding: 0px;
	border-top: 1px solid #d0bab0;
}
.content_footer02b {
	display: block;
	width: 80%;
	height: auto;
	margin-left:10%;
	clear: none;
    background: rgba(0, 0, 0, 0.0);
	color:#000000;
	font-weight: normal;
	font-size: 14px;
	text-align: center;
	padding: 0px;
	border: 0px solid #000000;
}
.container_holder_footer03 {
    position: relative;
	width: 100%;
	height: auto;
	overflow-x: hidden;
	margin-top: 0px;
	margin-left: 0px;
	background-color: #2e3839;
	padding-top: 10px;
	padding-bottom: 10px;
}
.wrapper_footer03 {
	width: 100%;
	margin-left: 0%;
}
.content_footer03a {
	width: 100%;
	display: block;
	height: auto;
	margin-left: 0%;
	clear: none;
	background: rgba(40, 54, 83, 0.0);
	font-weight: normal;
	font-size: 12px;
	color: #ccc;
	text-align: center;
	padding-top: 0px;
	border: 0px solid #000000;
	font-family: 'GothamBold';
    src: url('GothamBold.ttf') format('truetype');
}
.content_footer03b {
	display: block;
	width: 100%;
	height: auto;
	margin-left: 0%;
	margin-right: 0%;
	clear: none;
    background: rgba(0, 0, 0, 0.0);
	color:#000000;
	font-weight: bold;
	font-size: 12px;
	text-align: center;
	padding-top: 0px;
	border: 0px solid #000000;
}
input.subscribe01{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #000;
	border:1px solid #cccccc;
	background-color: #fff;
	font-size: 26px;
} 
input.btn_subscribe01{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	border:0px solid #cccccc;
	font-weight:normal;
	background: rgba(204, 204, 204, 1.0);
	color: #000;
	font-size: 22px;
	padding: 5px;
	text-decoration: none;
}

/*TERMS*/
.container_terms02 {
	width: 100%;
	margin-top: 0px;
	margin-left: 0%;
	background-color:#FFFFFF;
	color: #000;
}
.wrapper_terms02 {
	width: 100%;
	margin-left: 0%;
}
.content_terms01_title01 {
	display: block;
	width: 100%;
	height: auto;
	margin-left:0px;
	clear: none;
	background: #fff;
	color:#2d2d2d;
	font-weight: normal;
	font-size: 50px;
	text-align: center;
	padding-top: 50px;
	padding-bottom: 40px;
	border: 0px solid #ccc;
}
.content_holder_terms02 {
	display: block;
	width: 90%;
	height: auto;
	margin-left:5%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#000;
	font-weight: normal;
	font-size: 20px;
	text-align: left;
	padding-top: 0px;
	border: 0px solid #545454;
}
.content_terms02 {
	display: block;
	width: 100%;
	height: auto;
	margin-left:0%;
	margin-bottom:30px;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#000;
	text-align: left;
	font-weight: normal;
	font-size: 18px;
	padding-top: 50px;
	border-bottom: 0px solid #000000;
}
.container_terms03 {
	width: 100%;
	margin-top: 0px;
	margin-left: 0%;
	background-color:#FFFFFF;
	color: #000;
}
.wrapper_terms03 {
	width: 100%;
	margin-left: 0%;
}
.content_holder_terms03 {
	display: block;
	width: 100%;
	height: auto;
	margin-left:0%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#000;
	font-weight: normal;
	font-size: 14px;
	text-align: left;
	padding-top: 0px;
	border: 0px solid #545454;
}
.content_terms03 {
	display: block;
	width: 90%;
	height: auto;
	margin-left:5%;
	margin-bottom:30px;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#000;
	text-align: left;
	font-weight: normal;
	font-size: 14px;
	padding-top: 400px;
	border-bottom: 0px solid #000000;
}
/*CONTACT US*/
.container_contact01 {
	display: block;
	width: 100%;
        margin-left: 0%;
	background-color: #889da0;
	text-align:center;
	padding: 0px;
	color: #ccc;
}
.wrapper_contact01 {
	width: 100%;
	margin-left: 0%;
}
.content_contact01_title01 {
	display: block;
	width: 100%;
	height: auto;
	margin-left:0px;
	clear: none;
	background-color: #faede7;
	color:#000;
	font-weight: normal;
	font-size: 30px;
	text-align: center;
	padding-top: 200px;
	padding-bottom: 30px;
	border: 0px solid #ccc;
}
.content_contact01_arrow {
      	display: block;
        margin-top: 0px;
        height: auto;
        margin-left: 48%;
        width: 0;
        height: 0;
        border-left: 40px solid transparent;
        border-right: 40px solid transparent;
        border-top: 50px solid #fff;
}
.content_contact01 {
	display: block;
	width: 90%;
	height: auto;
	margin-left: 5%;
	clear: none;
	background: rgba(0, 0, 0, 0.0);
	font-weight: normal;
	font-size: 18px;
	color: #FFF;
	text-align: left;
	padding-top: 40px;
	padding-bottom: 20px;
	border: 0px solid #000000;
}
.content_contact02 {
	display: block;
	width: 90%;
	height: auto;
	margin-left:5%;
	clear: none;
        background: rgba(0, 0, 0, 0.0);
	color:#FFF;
	font-weight: normal;
	font-size: 14px;
	text-align: left;
	padding-top: 20px;
	padding-bottom: 60px;
	border: 0px solid #000000;
}
/*CONTACT FORM*/
.form_1 {
	font-family: 'Gotham', Helvetica Neue, Helvetica, Arial, sans-serif;
	text-align: left;
	vertical-align: top;
	padding: 20px;
	margin-top: 0px;
	margin-left: 0px;
	border-right-width: thin;
	border-right-style: solid;
	border-right-color: #000;
	border-top-width: 5px;
	border-top-style: solid;
	border-top-color: #000;
}
.form_text {
	font-family: 'Gotham', Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #000;
	text-align: right;
	vertical-align: top;
	padding: 5px;
	background-color: #fff;
}
textarea{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #000;
	border: thin solid #9199a1;
	background-color: #fff;
}
input.nl{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	color:#fff;
	border:1px solid #545454;
	background-color: #545454;
} 
input.nlb{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	background:#cccccc;
	color:#000000;
	font:10px;
	border:1px solid #fec7da;
	border-right:1px solid #fec7da;
	border-bottom:1px solid #fec7da;
	font-weight:bold
}
input.emf{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #000;
	border: thin solid #899199;
	background-color: #fff;
	font-size: 18px;
}
input.emf02{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #000;
	border: thin solid #bc9c72;
	background-color: #fff;
	font-size: 18px;
} 
input.smf{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	border:0px solid #fde2a3;
	font-weight:normal;
	background: rgba(54, 54, 54, 1.0);
	color: #FFFFFF;
	border: thin solid #ccc;
	font-size: 20px;
	padding: 10px;
	text-decoration: none;
} 
select.dmf {
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	background:#e0e0e0;
	color:#000;
	border:0px solid #fec7da;
	border-right:2px solid #fec7da;
	border-bottom:1px solid #fec7da;
	}
input.subscribe01{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #000000;
	border:thin solid #cccccc;
	background-color: #fff;
	font-size: 20px;
} 
input.btn_subscribe01{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	border:thin solid #ccc;
	font-weight:normal;
	background: rgba(0, 0, 0, 0.8);
	color: #FFFFFF;
	font-size: 14px;
        padding: 7px 68px 6px 68px;
	text-decoration: none;
} 
input.subscribe02{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #FFF;
	border:1px solid #f6d8d0;
	background-color:rgba(0, 0, 0, 1.0);
	font-size: 16px;
} 
input.btn_subscribe02{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	border:thin solid #f6d8d0;
	font-weight:normal;
	background: rgba(0, 0, 0, 1.0);
	color: #FFFFFF;
	font-size: 14px;
        padding: 7px 68px 6px 68px;
	text-decoration: none;
}
.content_contact02a {
	width: 40%;
	height: auto;
	margin-left:1%;
	clear: none;
        background: rgba(0, 0, 0, 0.0);
	font-weight: normal;
	font-size: 18px;
	text-align: left;
	padding: 8px;
}
::-webkit-input-placeholder {
   color: #ccc;
}
:-moz-placeholder { /* Firefox 18- */
   color: #a4a4a4;  
}
::-moz-placeholder {  /* Firefox 19+ */
   color: #a4a4a4;  
}
:-ms-input-placeholder {  
   color: #a4a4a4;
}
hr.v01 {
    background-color: #d0bab0;
    border: 0 none;
    color: #d0bab0;
    height: 1px;
}
hr.v02 {
    background-color: #e6bf97;
    border: 0 none;
    color: #e6bf97;
    height: 1px;
}
/*.....................*/
/*..........*/
/*.....................*/
/*..........*/
/*..........*/
.zeroMargin_mobile {
    margin-left: 0;
}
.hide_mobile {
    display: none;
}
/*..........*/
/*..........*/
/*..........*/
/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {

.gridContainer {
	width: 100%;
	padding-left: 0%;
	padding-right: 0%;
	clear: none;
	float: none;
	margin-left: auto;
}
/*..........*/
.sc_holder_01 {
	display: block;
	position: relative;
	width: 100%;
    margin-left: 0%;
	margin-top:0px;
	background: rgba(255, 255, 255, 1.0);
	text-align:center;
	padding: 0px;
}
.sc_menu_m { 
   display: block;
   top: 0px; 
   margin-left: 0%;
   margin-right: 0%;
   width: 100%; 
   text-align:left;
   padding-top: 10px;
   padding-bottom: 10px;
   padding-left: 25px;
   background: rgba(255, 255, 255, 1.0);
}
/*..........*/
.zeroMargin_tablet {
    margin-left: 0;
}
.hide_tablet {
    display: none;
}
}
/*.............*/
/*.............*/
/*.............*/
@media only screen and (min-width: 481px) {
.gridContainer {
	width: 100%;
	padding-left: 0%;
	padding-right: 0%;
	clear: none;
	float: none;
	margin-left: auto;
}
.sc_holder_01 {
	display: block;
	position: relative;
	width: 100%;
        margin-left: 0%;
	margin-top:0px;
	background-color: #2e3839;
	text-align:center;
	padding: 0px;
}
.sc_menu_m { 
   display: block;
   top: 0px; 
   margin-left: 0%;
   margin-right: 0%;
   width: 100%; 
   text-align:left;
   padding-top: 10px;
   padding-bottom: 10px;
   padding-left: 25px;
   background-color: #2e3839;
}
/*..........*/
body{
	overflow-x: hidden;
	margin-top: 0px;
	margin-left:0px;
	font-family: "Gotham", Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #000; 
}
/*SPACING*/
a.anchor {
    display: block;
    position: relative;
    top: 0px;
    visibility: hidden;
}
/*TITLES-TEXT*/
.content_holder_title01 {
	display: block;
	width: 100%;
	height: auto;
	margin-top:0px;
	margin-left:0px;
	clear: none;
	background-color:#faede7;
	color:#2d2d2d;
	font-weight: normal;
	font-size: 45px;
	text-align: center;
	padding-top: 35px;
	padding-bottom: 30px;
        box-sizing: border-box;
	border: 0px solid #2d2d2d;
}
.content_holder_title01:after {
    content: ""; /* This is necessary for the pseudo element to work. */ 
    display: block; /* This will put the pseudo element on its own line. */
    margin: 0 auto; /* This will center the border. */
    width: 50px; /* Change this to whatever width you want. */
    padding-top: 0px; /* This creates some space between the element and the border. */
    border-bottom: 0px solid #2d2d2d; /* This creates the border. Replace black with whatever color you want. */
}
.content_holder_title01a {
        font-family: 'GothamLight', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
}
.content_holder_title02a {
        font-family: 'GothamLight', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
}
.fgo_text01a {
        font-family: 'GothamBold', Arial, sans-serif;
        color:#fff;
	font-weight: bold;
	font-size: 25px;
}
.fgo_text01c {
        font-family: 'GothamBold', Arial, sans-serif;
        color:#fff;
	font-weight: bold;
	font-size: 18px;
}
.cover_text01a {
        color:#f1dac7;
	font-weight: 900;
	font-size: 30px;
        letter-spacing: 2px;
        font-family: 'Gotham', Arial, sans-serif;
        text-shadow: 1px 1px #524537;
}
.cover_text01b {
        font-family: 'Gotham', Arial, sans-serif;
        color:#000;
	font-weight: 800;
	font-size: 20px;
        letter-spacing: 0px;
}
.sig_01 {
        font-family: 'Avenir', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
	font-size: 60px;
        color: #000;
        -webkit-filter: drop-shadow(0px 0px 0px #545454);
        filter: drop-shadow(0px 0px 0px #545454);
}
.sig_02 {
        font-family: 'GothamBook', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
	font-size: 24px;
        color: #c04c57;
        line-height:30px;
}
.sig_03 {
        font-family: 'GothamBook', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
	font-size: 30px;
        color: #665341;
        line-height:50px;
}
.sig_04 {
        font-family: 'GothamBook', Arial, sans-serif;
        font-weight:bold;
        color: #faede7;
	font-size: 20px;
}
.sig_05 {
        font-family: 'GothamBold', Arial, sans-serif;
        font-weight:bold;
	font-size: 24px;
        text-decoration: underline;
        color: #ebc5a0;
}
.sig_06 {
        font-family: 'Gotham', Arial, sans-serif;
        font-weight:normal;
	font-size: 18px;
}
.sig_07 {
        font-family: 'Windsong', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
	font-size: 60px;
        color: #000;
padding-top: 10px;
        line-height:30px;
}
.sig_08 {
        font-family: 'Windsong', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
	font-size: 80px;
        color: #FFF;
        line-height:100px;
}
.title01 {
        font-family: 'Windsong', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
	font-size: 110px;
        color: #FFF;
        -webkit-filter: drop-shadow(0px 0px 0px #545454);
        filter: drop-shadow(0px 0px 0px #545454);
        margin: 0px 0px -50px 0px; 
        padding: 0px 0px 0px 0px;
}
.title02 {
        font-family: 'GothamBold', Arial, sans-serif;
        font-weight:bold;
	font-size: 14px;
}
.space01 {
	display: block;
        text-align: center;
        line-height: 30px;
	color:#FFF;
}
.space02 {
        line-height: 120%;
}
.space03 {
  text-align: justify;
}
.shdw01 {
         filter: drop-shadow(1px 3px 5px #545454);
}
/*SOCIAL-NAV*/
.container01b {
	display: none;
        position: fixed;
        top: 0;
        z-index: 10;
	width: 100%;
	height: auto;
        margin-left: 0%;
	background-color:#2e3839;
	text-align:center;
	padding-top: 0px;
	color: #FFF;
        border-bottom: thin solid #e2e2e2;
}
.wrapper01b {
	width: 100%;
	margin-left: 0%;
}
.content_logo01 {
	display: none;
	width: 40%;
	min-width: 200px;
	height: auto;
	margin-left: 0%;
	clear: none;
	background: rgba(40, 54, 83, 0.0);
	font-weight: normal;
	font-size: 11px;
	color: #FFF;
	text-align: center;
	padding-top: 0px;
	padding-bottom: 0px;
	border: 0px solid #000000;
}
.content_nav01 {
	display: none;
	width: 60%;
	min-width: 500px;
	height: auto;
	margin-right: 0px;
	clear: none;
        background: rgba(0, 0, 0, 0.0);
	color:#000000;
	font-weight: normal;
	font-size: 14px;
	text-align: right;
	padding: 0px;
	border: 0px solid #000000;
}
/*LOGO*/
.container01c {
	display: block;
        position: absolute;
        top: 45px;
	width: 100%;
	height: auto;
        margin-left: 0%;
	background-color: #FFF;
	text-align:center;
	padding-top: 0px;
	color: #000;
}
.wrapper01c {
	width: 100%;
	margin-left: 0%;
}
.content_logo01c {
	display: block;
	width: 50%;
	min-width: 150px;
	height: auto;
	margin-left: 25%;
	clear: none;
	font-weight: bold;
	font-size: 11px;
	color: #000;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 0px;
	border: 0px solid #000000;
}
/*BANNER*/
.container_home01 {
	width: 100%;
	height: auto;
	min-height: 600px;
	overflow-x: hidden;
	margin-top: 0px;
	background-image:url(img/main01l.jpg);
        background-position: top center; 
        background-repeat:no-repeat;
       -webkit-background-size:cover;
       -moz-background-size:cover;
       -o-background-size:cover;
       background-size:cover;
       background-position:center;
}
.wrapper_home01 {
	width: 100%;
	margin-left: 0%;
}
.content_home01a {
	width: 60%;
	height: auto;
	margin-left:15%;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#000;
	text-align: right;
	font-weight: normal;
	font-size: 24px;
	padding-top: 270px;
}
.content_home01b {
     width: 90%;
	height: auto;
	margin-left:5%;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#000;
	text-align: justify;
	font-weight: 600;
	font-size: 16px;
	padding-top: 0px;
	padding-bottom: 0px;
	border-bottom: 0px solid #000000;
        font-family: 'Gotham', Arial, sans-serif;
}

/*INTRO*/
.container_intro01 {
	width: 100%;
	margin-top: 0px;
	margin-left: 0%;
	background-color:#889da0;
	color: #FFF;
}
.wrapper_intro01 {
	width: 100%;
	margin-left: 0%;
}
.content_holder_intro01 {
	display: block;
	width: 100%;
	height: auto;
	margin-left:0%;
	clear: none;
	color:#FFF;
	font-weight: normal;
	font-size: 20px;
	text-align: left;
	padding-top: 0px;
	border: 0px solid #545454;
}
.content_intro01 {
	display: block;
	width: 90%;
	height: auto;
	margin-left:5%;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#FFF;
	text-align: center;
	font-weight: normal;
	font-size: 18px;
	padding-top: 50px;
	padding-bottom: 0px;
	border-bottom: 0px solid #000000;
}

/*WELCOME*/
.container_welcome01 {
	width: 100%;
	margin-top: 0px;
	margin-left: 0%;
	background-color:#889da0;
	color: #FFF;
}
.wrapper_welcome01 {
	width: 100%;
	margin-left: 0%;
}
.content_holder_welcome01 {
	display: block;
	width: 100%;
	height: auto;
	margin-left:0%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#000;
	font-size: 20px;
	text-align: left;
	padding-top: 0px;
	border: 0px solid #545454;
}
.content_welcome01 {
	display: block;
	width: 90%;
	height: auto;
	margin-left:5%;
	margin-bottom:30px;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#FFF;
	text-align: center;
	font-weight: normal;
        font-style: italic;
	font-size: 20px;
	padding-top: 0px;
	border-bottom: 0px solid #000000;
}

/*ABOUT US*/
.container_aboutus01 {
	width: 100%;
	margin-top: 0px;
	margin-left: 0%;
	background-color:#FFFEF2;
	color: #000;
        border-bottom: thin solid #ebc5a0;
}
.wrapper_aboutus01 {
	width: 100%;
	margin-left: 0%;
}
.content_holder_aboutus01_arrow {
      	display: block;
        margin-top: 0px;
        height: auto;
        margin-left: 49%;
        margin-right: 49%;
        width: 0;
        height: 0;
        border-left: 40px solid transparent;
        border-right: 40px solid transparent;
        border: 10px solid #daeae4;
}
.content_holder_aboutus01a {
	display: block;
	width: 70%;
	height: auto;
	margin-left: 15%;
	margin-bottom:0px;
	clear: none;
	color:#2d2d2d;
	text-align: center;
	font-weight: 500;
	font-size: 20px;
	padding-top: 0px;
	padding-bottom: 5px;
	border-bottom: 0px solid #000000;
}
.content_holder_aboutus01b {
	display: block;
	width: 70%;
	height: auto;
	margin-left: 15%;
	margin-bottom:0px;
	clear: none;
	color:#2d2d2d;
	text-align: justify;
	font-weight: 600;
	font-size: 18px;
	padding-top: 0px;
	padding-bottom: 40px;
	border-bottom: 0px solid #000000;
}

/*SERVICES*/
.container_services01 {
        width: 100%;
	margin-top: 0px;
	margin-left: 0px;
	background-color: #889da0;
	color: #ccc;
}
.wrapper_services01 {
	width: 100%;
	margin-left: 0px;
}
.content_services01_section02a_arrow {
      	display: block;
        margin-top: 0px;
        height: auto;
        margin-left: 49%;
        margin-right: 49%;
        width: 0;
        height: 0;
        border-left: 30px solid transparent;
        border-right: 30px solid transparent;
        border: 10px solid #daeae4;
}
.content_holder_services01 {
	display: block;
	width: 100%;
	height: auto;
	margin-left:0px;
	clear: none;
	background-color: #889da0;
	color:#fff;
	font-weight: normal;
	font-size: 50px;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 40px;
	border: 0px solid #ccc;
}
.content_holder_services02 {
	display: block;
	width: 100%;
	height: auto;
	margin-left:0%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#ccc;
	font-weight: normal;
	font-size: 20px;
	text-align: left;
	padding-top: 30px;
	padding-bottom: 20px;
	border: 0px solid #ccc;
}
.content_holder_services03a {
	display: block;
	width: 90%;
	height: auto;
	margin-left:5%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#FFF;
	font-weight: bold;
	font-size: 22px;
	text-align: center;
	padding-top: 0px;
	padding-bottom: 20px;
	border: 0px solid #ccc;
}
.content_holder_services03b {
	display: block;
	width: 30%;
	height: auto;
	margin-left:5%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#000;
	font-weight: bold;
	font-size: 12px;
	text-align: center;
	padding-top: 0px;
	padding-bottom: 30px;
	border: 0px solid #ccc;
}
.content_holder_services03c {
	display: block;
	width: 30%;
	height: auto;
	margin-left:5%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#000;
	font-weight: bold;
	font-size: 12px;
	text-align: center;
	padding-top: 0px;
	padding-bottom: 30px;
	border: 0px solid #ccc;
}

/*QUOTES*/
.container_quote01 {
	width: 100%;
	height: 100vw;
	min-height: 800px;
	max-height: 900px;
	overflow-x: hidden;
	margin-top: 0px;
	background-image:url(img/main01f3.jpg);
        background-position: top center; 
        background-repeat:no-repeat;
       -webkit-background-size:cover;
       -moz-background-size:cover;
       -o-background-size:cover;
       background-size:cover;
}
.wrapper_quote01 {
	width: 100%;
	margin-left: 0%;
}
.content_quote01_holder {
	display: block;
	width: 80%;
	height: auto;
	margin-left:10%;
	margin-bottom:0px;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#FFF;
	text-align: center;
	font-weight: 600;
        font-style: italic;
	font-size: 30px;
	padding-top: 200px;
	border-bottom: 0px solid #000000;
        font-family: 'Gotham', Arial, sans-serif;
        -webkit-filter: drop-shadow(2px 2px 0px #000);
        filter: drop-shadow(2px 2px 0px #000);
}
.content_quote01_section01 {
	display: block;
	width: 50%;
	height: auto;
	clear: none;
	color:#fde2a3;
	text-align: center;
	font-weight: normal;
        font-style: italic;
	font-size: 30px;
	padding: 150px;
        box-sizing: border-box;
	border-bottom: 0px solid #000000;
}
.content_quote01_section02 {
	display: block;
	width: 50%;
	height: auto;
	margin-left:0%;
	clear: none;
	text-align: center;
	padding: 0px;
	border: 0px solid #545454;
}

/*CTA*/
.container_cta01 {
	width: 100%;
	margin-top: 0px;
	margin-left: 0%;
	background: #fff;
	color: #000;
}
.wrapper_cta01 {
	width: 100%;
	margin-left: 0%;
}
.content_holder_cta01 {
	display: block;
	width: 80%;
	height: auto;
	margin-left:10%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#000;
	font-weight: normal;
	font-size: 25px;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 25px;
	border: 0px solid #ccc;
        line-height: 30px;
}

/*FOOTER*/
.container_footer {
	width: 100%;
        margin-left: 0%;
	background: #faede7;
	text-align:center;
	padding: 0px;
}
.wrapper_footer {
	width: 100%;
	margin-left: 0%;	
}
.content_holder_footer01 {
	width: 100%;
	margin-top: 0px;
        margin-left: 0%;
	background: #faede7;
	text-align:center;
	padding: 0px;
}
.content_footer01a {
	display: block;
	width: 90%;
	height: auto;
	margin-left:5%;
	clear: none;
        background: rgba(0, 157, 184, 0.0);
	color:#000;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
	padding-top: 30px;
	border: 0px solid #000000;
	font-family: 'GothamBold';
    src: url('GothamBold.ttf') format('truetype');
}
.content_footer01b {
	display: block;
	width: 90%;
	height: auto;
	margin-left:5%;
	clear: none;
        background: rgba(0, 0, 0, 0.0);
	color:#000000;
	font-weight: normal;
	font-size: 24px;
	text-align: center;
	padding: 0px;
	border: 0px solid #000000;
}
.content_footer01c {
	display: block;
	width: 90%;
	height: auto;
	margin-left:5%;
	clear: none;
        background: rgba(0, 0, 0, 0.0);
	color:#000;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
	padding-top: 20px;
	border: 0px solid #000000;
	font-family: 'GothamBook';
    src: url('GothamBook.ttf') format('truetype');
}
.content_holder_footer02 {
	width: 100%;
	margin-top: 0px;
        margin-left: 0%;
	background: #faede7;
	text-align:center;
	padding-top:20px;
	padding-bottom:20px;
}
.content_footer02a {
	display: block;
	width: 80%;
	height: auto;
	margin-left:10%;
	clear: none;
    background: rgba(0, 0, 0, 0.0);
	color:#000;
	font-weight: normal;
	font-size: 24px;
	text-align: center;
	padding: 0px;
	border-top: 1px solid #d0bab0;
}
.content_footer02b {
	display: block;
	width: 80%;
	height: auto;
	margin-left:10%;
	clear: none;
    background: rgba(0, 0, 0, 0.0);
	color:#000000;
	font-weight: normal;
	font-size: 14px;
	text-align: center;
	padding: 0px;
	border: 0px solid #000000;
}
.container_holder_footer03 {
    position: relative;
	width: 100%;
	height: auto;
	overflow-x: hidden;
	margin-top: 0px;
	margin-left: 0px;
	background-color: #2e3839;
	padding-top: 10px;
	padding-bottom: 10px;
}
.wrapper_footer03 {
	width: 100%;
	margin-left: 0%;
}
.content_footer03a {
	width: 100%;
	display: block;
	height: auto;
	margin-left: 0%;
	clear: none;
	background: rgba(40, 54, 83, 0.0);
	font-weight: normal;
	font-size: 12px;
	color: #ccc;
	text-align: center;
	padding-top: 0px;
	border: 0px solid #000000;
	font-family: 'GothamBold';
    src: url('GothamBold.ttf') format('truetype');
}
.content_footer03b {
	display: block;
	width: 100%;
	height: auto;
	margin-left: 0%;
	margin-right: 0%;
	clear: none;
    background: rgba(0, 0, 0, 0.0);
	color:#000000;
	font-weight: bold;
	font-size: 12px;
	text-align: center;
	padding-top: 0px;
	border: 0px solid #000000;
}
input.subscribe01{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #000;
	border:1px solid #cccccc;
	background-color: #fff;
	font-size: 26px;
} 
input.btn_subscribe01{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	border:0px solid #cccccc;
	font-weight:normal;
	background: rgba(204, 204, 204, 1.0);
	color: #000;
	font-size: 22px;
	padding: 5px;
	text-decoration: none;
}

/*TERMS*/
.container_terms02 {
	width: 100%;
	margin-top: 0px;
	margin-left: 0%;
	background-color:#FFFFFF;
	color: #000;
}
.wrapper_terms02 {
	width: 100%;
	margin-left: 0%;
}
.content_terms01_title01 {
	display: block;
	width: 100%;
	height: auto;
	margin-left:0px;
	clear: none;
	background: #fff;
	color:#2d2d2d;
	font-weight: normal;
	font-size: 50px;
	text-align: center;
	padding-top: 50px;
	padding-bottom: 40px;
	border: 0px solid #ccc;
}
.content_holder_terms02 {
	display: block;
	width: 90%;
	height: auto;
	margin-left:5%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#000;
	font-weight: normal;
	font-size: 20px;
	text-align: left;
	padding-top: 0px;
	border: 0px solid #545454;
}
.content_terms02 {
	display: block;
	width: 100%;
	height: auto;
	margin-left:0%;
	margin-bottom:30px;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#000;
	text-align: left;
	font-weight: normal;
	font-size: 18px;
	padding-top: 50px;
	border-bottom: 0px solid #000000;
}
.container_terms03 {
	width: 100%;
	margin-top: 0px;
	margin-left: 0%;
	background-color:#FFFFFF;
	color: #000;
}
.wrapper_terms03 {
	width: 100%;
	margin-left: 0%;
}
.content_holder_terms03 {
	display: block;
	width: 100%;
	height: auto;
	margin-left:0%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#000;
	font-weight: normal;
	font-size: 14px;
	text-align: left;
	padding-top: 0px;
	border: 0px solid #545454;
}
.content_terms03 {
	display: block;
	width: 90%;
	height: auto;
	margin-left:5%;
	margin-bottom:30px;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#000;
	text-align: left;
	font-weight: normal;
	font-size: 14px;
	padding-top: 400px;
	border-bottom: 0px solid #000000;
}
/*CONTACT US*/
.container_contact01 {
	display: block;
	width: 100%;
        margin-left: 0%;
	background-color: #889da0;
	text-align:center;
	padding: 0px;
	color: #ccc;
}
.wrapper_contact01 {
	width: 100%;
	margin-left: 0%;
}
.content_contact01_title01 {
	display: block;
	width: 100%;
	height: auto;
	margin-left:0px;
	clear: none;
	background-color: #faede7;
	color:#000;
	font-weight: normal;
	font-size: 40px;
	text-align: center;
	padding-top: 280px;
	padding-bottom: 40px;
	border: 0px solid #ccc;
}
.content_contact01_arrow {
      	display: block;
        margin-top: 0px;
        height: auto;
        margin-left: 48%;
        width: 0;
        height: 0;
        border-left: 40px solid transparent;
        border-right: 40px solid transparent;
        border-top: 50px solid #fff;
}
.content_contact01 {
	display: block;
	width: 90%;
	height: auto;
	margin-left: 5%;
	clear: none;
	background: rgba(0, 0, 0, 0.0);
	font-weight: normal;
	font-size: 18px;
	color: #FFF;
	text-align: left;
	padding-top: 40px;
	padding-bottom: 20px;
	border: 0px solid #000000;
}
.content_contact02 {
	display: block;
	width: 90%;
	height: auto;
	margin-left:5%;
	clear: none;
        background: rgba(0, 0, 0, 0.0);
	color:#FFF;
	font-weight: normal;
	font-size: 14px;
	text-align: left;
	padding-top: 20px;
	padding-bottom: 60px;
	border: 0px solid #000000;
}
/*CONTACT FORM*/
.form_1 {
	font-family: 'Gotham', Helvetica Neue, Helvetica, Arial, sans-serif;
	text-align: left;
	vertical-align: top;
	padding: 20px;
	margin-top: 0px;
	margin-left: 0px;
	border-right-width: thin;
	border-right-style: solid;
	border-right-color: #000;
	border-top-width: 5px;
	border-top-style: solid;
	border-top-color: #000;
}
.form_text {
	font-family: 'Gotham', Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #000;
	text-align: right;
	vertical-align: top;
	padding: 5px;
	background-color: #fff;
}
textarea{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #000;
	border: thin solid #9199a1;
	background-color: #fff;
}
input.nl{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	color:#fff;
	border:1px solid #545454;
	background-color: #545454;
} 
input.nlb{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	background:#cccccc;
	color:#000000;
	font:10px;
	border:1px solid #fec7da;
	border-right:1px solid #fec7da;
	border-bottom:1px solid #fec7da;
	font-weight:bold
}
input.emf{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #000;
	border: thin solid #899199;
	background-color: #fff;
	font-size: 18px;
}
input.emf02{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #000;
	border: thin solid #bc9c72;
	background-color: #fff;
	font-size: 18px;
} 
input.smf{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	border:0px solid #fde2a3;
	font-weight:normal;
	background: rgba(54, 54, 54, 1.0);
	color: #FFFFFF;
	border: thin solid #ccc;
	font-size: 20px;
	padding: 10px;
	text-decoration: none;
} 
select.dmf {
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	background:#e0e0e0;
	color:#000;
	border:0px solid #fec7da;
	border-right:2px solid #fec7da;
	border-bottom:1px solid #fec7da;
	}
input.subscribe01{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #000000;
	border:thin solid #cccccc;
	background-color: #fff;
	font-size: 20px;
} 
input.btn_subscribe01{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	border:thin solid #ccc;
	font-weight:normal;
	background: rgba(0, 0, 0, 0.8);
	color: #FFFFFF;
	font-size: 14px;
        padding: 7px 68px 6px 68px;
	text-decoration: none;
} 
input.subscribe02{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #FFF;
	border:1px solid #f6d8d0;
	background-color:rgba(0, 0, 0, 1.0);
	font-size: 16px;
} 
input.btn_subscribe02{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	border:thin solid #f6d8d0;
	font-weight:normal;
	background: rgba(0, 0, 0, 1.0);
	color: #FFFFFF;
	font-size: 14px;
        padding: 7px 68px 6px 68px;
	text-decoration: none;
}
.content_contact02a {
	width: 40%;
	height: auto;
	margin-left:1%;
	clear: none;
        background: rgba(0, 0, 0, 0.0);
	font-weight: normal;
	font-size: 18px;
	text-align: left;
	padding: 8px;
}
::-webkit-input-placeholder {
   color: #ccc;
}
:-moz-placeholder { /* Firefox 18- */
   color: #a4a4a4;  
}
::-moz-placeholder {  /* Firefox 19+ */
   color: #a4a4a4;  
}
:-ms-input-placeholder {  
   color: #a4a4a4;
}
hr.v01 {
    background-color: #d0bab0;
    border: 0 none;
    color: #d0bab0;
    height: 1px;
}
hr.v02 {
    background-color: #e6bf97;
    border: 0 none;
    color: #e6bf97;
    height: 1px;
}
/*.....................*/
/*..........*/
/*.....................*/
/*..........*/
/*..........*/
.zeroMargin_mobile {
    margin-left: 0;
}
.hide_mobile {
    display: none;
}
.zeroMargin_tablet {
    margin-left: 0;
}
.hide_tablet {
    display: none;
}
}
/*.............*/
/*.............*/
/*.............*/
@media only screen and (min-width: 950px) {
.gridContainer {
	width: 100%;
	max-width: auto;
	padding-left: 0.0%;
	padding-right: 0.0%;
	margin: auto;
	clear: none;
	float: none;
	margin-left: auto;
}
body{
	overflow-x: hidden;
	margin-top: 0px;
	margin-left:0px;
	font-family: "Gotham", Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #FFF; 
}
/*SPACING*/
a.anchor {
    display: block;
    position: relative;
    top: -60px;
    visibility: hidden;
}
/*TITLES-TEXT*/
.content_holder_title01 {
	display: block;
	width: 100%;
	height: auto;
	margin-top:0px;
	margin-left:0px;
	clear: none;
	background-color:#faede7;
	color:#2d2d2d;
	font-weight: normal;
	font-size: 54px;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 20px;
        box-sizing: border-box;
	border: 0px solid #2d2d2d;
}
.content_holder_title01:after {
    content: ""; /* This is necessary for the pseudo element to work. */ 
    display: block; /* This will put the pseudo element on its own line. */
    margin: 0 auto; /* This will center the border. */
    width: 50px; /* Change this to whatever width you want. */
    padding-top: 0px; /* This creates some space between the element and the border. */
    border-bottom: 0px solid #2d2d2d; /* This creates the border. Replace black with whatever color you want. */
}
.content_holder_title01a {
        font-family: 'GothamLight', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
}
.content_holder_title02a {
        font-family: 'GothamLight', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
}
.fgo_text01a {
        font-family: 'GothamBold', Arial, sans-serif;
        color:#fff;
	font-weight: bold;
	font-size: 30px;
}
.fgo_text01c {
        font-family: 'GothamBold', Arial, sans-serif;
        color:#fff;
	font-weight: bold;
	font-size: 20px;
}
.cover_text01a {
        color:#f1dac7;
	font-weight: 900;
	font-size: 30px;
        letter-spacing: 2px;
        font-family: 'Gotham', Arial, sans-serif;
        text-shadow: 1px 1px #524537;
}
.cover_text01b {
        font-family: 'Gotham', Arial, sans-serif;
        color:#000;
	font-weight: 800;
	font-size: 29px;
        letter-spacing: 0px;
}
.sig_01 {
        font-family: 'Avenir', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
	font-size: 60px;
        color: #000;
        -webkit-filter: drop-shadow(0px 0px 0px #545454);
        filter: drop-shadow(0px 0px 0px #545454);
}
.sig_02 {
        font-family: 'GothamBook', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
	font-size: 24px;
        color: #c04c57;
        line-height:30px;
}
.sig_03 {
        font-family: 'GothamBook', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
	font-size: 40px;
        color: #665341;
        line-height:100px;
}
.sig_04 {
        font-family: 'GothamBook', Arial, sans-serif;
        font-weight:bold;
        color: #faede7;
	font-size: 20px;
}
.sig_05 {
        font-family: 'GothamBold', Arial, sans-serif;
        font-weight:bold;
	font-size: 24px;
        text-decoration: underline;
        color: #ebc5a0;
}
.sig_06 {
        font-family: 'Gotham', Arial, sans-serif;
        font-weight:normal;
	font-size: 18px;
}
.sig_07 {
        font-family: 'Windsong', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
	font-size: 60px;
        color: #000;
padding-top: 10px;
        line-height:30px;
}
.sig_08 {
        font-family: 'Windsong', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
	font-size: 100px;
        color: #FFF;
        line-height:100px;
}
.sig_09 {
        font-family: 'GothamBook', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
	    font-size: 20px;
        color: #c04c57;
}
.title01 {
        font-family: 'Windsong', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
	font-size: 130px;
        color: #FFF;
        -webkit-filter: drop-shadow(0px 0px 0px #545454);
        filter: drop-shadow(0px 0px 0px #545454);
        margin: 0px 0px -50px 0px; 
        padding: 0px 0px 0px 0px;
}
.title02 {
        font-family: 'GothamBold', Arial, sans-serif;
        font-weight:bold;
	font-size: 14px;
}
.space01 {
	display: block;
        text-align: left;
        line-height: 30px;
	color:#FFF;
}
.space02 {
        line-height: 120%;
}
.space03 {
  text-align: justify;
}
.shdw01 {
         filter: drop-shadow(1px 3px 5px #545454);
}
/*SOCIAL-NAV*/
.container01b {
	display: block;
        position: fixed;
        top: 0;
        z-index: 10;
	width: 100%;
	height: auto;
        margin-left: 0%;
	background-color:#2e3839;
	text-align:center;
	padding-top: 0px;
	color: #FFF;
        border-bottom: thin solid #e2e2e2;
}
.wrapper01b {
	width: 100%;
	margin-left: 0%;
}
.content_logo01 {
	display: block;
	width: 40%;
	min-width: 200px;
	height: auto;
	margin-left: 0%;
	clear: none;
	background: rgba(40, 54, 83, 0.0);
	font-weight: normal;
	font-size: 11px;
	color: #FFF;
	text-align: center;
	padding-top: 0px;
	padding-bottom: 0px;
	border: 0px solid #000000;
}
.content_nav01 {
	display: block;
	width: 60%;
	min-width: 500px;
	height: auto;
	margin-right: 0px;
	clear: none;
        background: rgba(0, 0, 0, 0.0);
	color:#000000;
	font-weight: normal;
	font-size: 14px;
	text-align: right;
	padding: 0px;
	border: 0px solid #000000;
}
/*LOGO*/
.container01c {
	display: block;
        position: absolute;
        top: 0;
	width: 100%;
	height: auto;
        margin-left: 0%;
	background-color: #FFF;
	text-align:center;
	padding-top: 0px;
	color: #000;
}
.wrapper01c {
	width: 100%;
	margin-left: 0%;
}
.content_logo01c {
	display: block;
	width: 100%;
	min-width: 200px;
	height: auto;
	margin-left: 0%;
	clear: none;
	font-weight: bold;
	font-size: 11px;
	color: #000;
	text-align: center;
	padding-top: 35px;
	padding-bottom: 5px;
	border: 0px solid #000000;
}
/*BANNER*/
.container_home01 {
        width: 100%;
	height: 100vh;
	min-height: 900px;
	overflow-x: hidden;
        overflow-y:auto;
	margin-top: 0px;
	background-image:url(img/main01l.jpg);
        background-color: #c9d9d8;
        background-attachment: fixed;
        background-position: top center; 
        background-repeat:no-repeat;
       -webkit-background-size:cover;
       -moz-background-size:cover;
       -o-background-size:cover;
        background-size:cover;
        background-position:center;
}
.wrapper_home01 {
	width: 100%;
	margin-left: 0%;
}
.content_home01a {
	width: 30%;
	height: auto;
	margin-left:3%;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#000;
	text-align: right;
	font-weight: normal;
	font-size: 24px;
	padding-top: 330px;
}
.content_home01b {
    width: 65%;
	height: auto;
	margin-left:0%;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#000;
	text-align: justify;
	font-weight: 600;
	font-size: 15px;
	padding-top: 300px;
	padding-bottom: 0px;
	border-bottom: 0px solid #000000;
        font-family: 'Gotham', Arial, sans-serif;
}

/*INTRO*/
.container_intro01 {
	width: 100%;
	margin-top: 0px;
	margin-left: 0%;
	background-color:#889da0;
	color: #FFF;
}
.wrapper_intro01 {
	width: 100%;
	margin-left: 0%;
}
.content_holder_intro01 {
	display: block;
	width: 100%;
	height: auto;
	margin-left:0%;
	clear: none;
	color:#FFF;
	font-weight: normal;
	font-size: 20px;
	text-align: left;
	padding-top: 0px;
	border: 0px solid #545454;
}
.content_intro01 {
	display: block;
	width: 90%;
	height: auto;
	margin-left:5%;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#FFF;
	text-align: center;
	font-weight: normal;
	font-size: 18px;
	padding-top: 40px;
	padding-bottom: 0px;
	border-bottom: 0px solid #000000;
}

/*WELCOME*/
.container_welcome01 {
	width: 100%;
	margin-top: 0px;
	margin-left: 0%;
	background-color:#889da0;
	color: #FFF;
}
.wrapper_welcome01 {
	width: 100%;
	margin-left: 0%;
}
.content_holder_welcome01 {
	display: block;
	width: 80%;
	height: auto;
	margin-left:10%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#000;
	font-size: 20px;
	text-align: left;
	padding-top: 0px;
	border: 0px solid #545454;
}
.content_welcome01 {
	display: block;
	width: 90%;
	height: auto;
	margin-left:5%;
	margin-bottom:30px;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#FFF;
	text-align: center;
	font-weight: normal;
        font-style: italic;
	font-size: 20px;
	padding-top: 0px;
	border-bottom: 0px solid #000000;
}

/*OTHER WORK*/
.container_ow01 {
	width: 100%;
	margin-top: 0px;
	margin-left: 0%;
	background-color:#FFFFFF;
	color: #000;
    border-bottom: thin solid #ebc5a0;
}
.wrapper_ow01 {
	width: 100%;
	margin-left: 0%;
}
.content_holder_ow_title01 {
    display: block;
    margin: 0 auto;
	text-align: center;
	font-weight: normal;
	font-size: 40px;
	background-color:#FFFEF2;
    padding: 20px 0px 20px 0px;
    box-sizing: border-box;
}
.content_holder_ow01a {
	display: block;
	width: 45%;
	height: auto;
	margin-left: 5%;
	margin-bottom:0px;
	clear: none;
	color:#2d2d2d;
	text-align: left;
	font-weight: normal;
	font-size: 16px;
    padding: 10px 10px 30px 10px;
    box-sizing: border-box;
	border-bottom: 0px solid #cdcdcd;
}
.content_holder_ow01b {
	display: block;
	width: 45%;
	height: auto;
	margin-left: 0%;
	margin-bottom:0px;
	clear: none;
	color:#2d2d2d;
	text-align: left;
	font-weight: normal;
	font-size: 16px;
    padding: 10px 10px 30px 10px;
    box-sizing: border-box;
	border-left: 1px solid #e4e4e4;
}
	

/*ABOUT US*/
.container_aboutus01 {
	width: 100%;
	margin-top: 0px;
	margin-left: 0%;
	background-color:#FFFEF2;
	color: #000;
        border-bottom: thin solid #ebc5a0;
}
.wrapper_aboutus01 {
	width: 100%;
	margin-left: 0%;
}
.content_holder_aboutus01_arrow {
      	display: block;
        margin-top: 0px;
        height: auto;
        margin-left: 49%;
        margin-right: 49%;
        width: 0;
        height: 0;
        border-left: 40px solid transparent;
        border-right: 40px solid transparent;
        border: 10px solid #daeae4;
}
.content_holder_aboutus01a {
	display: block;
	width: 40%;
	height: auto;
	margin-left: 10%;
	margin-bottom:0px;
	clear: none;
	color:#2d2d2d;
	text-align: center;
	font-weight: 500;
	font-size: 20px;
	padding-top: 0px;
	padding-bottom: 40px;
	border-bottom: 0px solid #000000;
}
.content_holder_aboutus01b {
	display: block;
	width: 40%;
	height: auto;
	margin-left: 3%;
	margin-bottom:0px;
	clear: none;
	color:#2d2d2d;
	text-align: justify;
	font-weight: 600;
	font-size: 20px;
	padding-top: 0px;
	padding-bottom: 40px;
	border-bottom: 0px solid #000000;
}

/*SERVICES*/
.container_services01 {
        width: 100%;
	margin-top: 0px;
	margin-left: 0px;
	background-color: #889da0;
	color: #ccc;
}
.wrapper_services01 {
	width: 100%;
	margin-left: 0px;
}
.content_services01_section02a_arrow {
      	display: block;
        margin-top: 0px;
        height: auto;
        margin-left: 49%;
        margin-right: 49%;
        width: 0;
        height: 0;
        border-left: 30px solid transparent;
        border-right: 30px solid transparent;
        border: 10px solid #daeae4;
}
.content_holder_services01 {
	display: block;
	width: 100%;
	height: auto;
	margin-left:0px;
	clear: none;
	background-color: #889da0;
	color:#fff;
	font-weight: normal;
	font-size: 50px;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 40px;
	border: 0px solid #ccc;
}
.content_holder_services02 {
	display: block;
	width: 100%;
	height: auto;
	margin-left:0%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#ccc;
	font-weight: normal;
	font-size: 20px;
	text-align: left;
	padding-top: 30px;
	padding-bottom: 20px;
	border: 0px solid #ccc;
}
.content_holder_services03a {
	display: block;
	width: 80%;
	height: auto;
	margin-left:10%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#FFF;
	font-weight: bold;
	font-size: 26px;
	text-align: center;
	padding-top: 0px;
	padding-bottom: 30px;
	border: 0px solid #ccc;
}
.content_holder_services03b {
	display: block;
	width: 30%;
	height: auto;
	margin-left:5%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#000;
	font-weight: bold;
	font-size: 12px;
	text-align: center;
	padding-top: 0px;
	padding-bottom: 30px;
	border: 0px solid #ccc;
}
.content_holder_services03c {
	display: block;
	width: 30%;
	height: auto;
	margin-left:5%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#000;
	font-weight: bold;
	font-size: 12px;
	text-align: center;
	padding-top: 0px;
	padding-bottom: 30px;
	border: 0px solid #ccc;
}

/*QUOTES*/
.container_quote01 {
        width: 100%;
	height: 100vw;
	min-height: 500px;
	max-height: 550px;
	overflow-x: hidden;
        overflow-y:auto;
	margin-top: 0px;
	background-image:url(img/main01f3.jpg);
        background-attachment: fixed;
        background-position: top left; 
        background-repeat:no-repeat;
       -webkit-background-size:cover;
       -moz-background-size:cover;
       -o-background-size:cover;
        background-size:cover;
}
.wrapper_quote01 {
	width: 100%;
	margin-left: 0%;
}
.content_quote01_holder {
	display: block;
	width: 80%;
	height: auto;
	margin-left:10%;
	margin-bottom:0px;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#FFF;
	text-align: center;
	font-weight: 600;
        font-style: italic;
	font-size: 30px;
	padding-top: 120px;
	border-bottom: 0px solid #000000;
        font-family: 'Gotham', Arial, sans-serif;
        -webkit-filter: drop-shadow(2px 2px 0px #000);
        filter: drop-shadow(2px 2px 0px #000);
}
.content_quote01_section01 {
	display: block;
	width: 50%;
	height: auto;
	clear: none;
	color:#fde2a3;
	text-align: center;
	font-weight: normal;
        font-style: italic;
	font-size: 30px;
	padding: 150px;
        box-sizing: border-box;
	border-bottom: 0px solid #000000;
}
.content_quote01_section02 {
	display: block;
	width: 50%;
	height: auto;
	margin-left:0%;
	clear: none;
	text-align: center;
	padding: 0px;
	border: 0px solid #545454;
}

/*CTA*/
.container_cta01 {
	width: 100%;
	margin-top: 0px;
	margin-left: 0%;
	background: #fff;
	color: #000;
}
.wrapper_cta01 {
	width: 100%;
	margin-left: 0%;
}
.content_holder_cta01 {
	display: block;
	width: 80%;
	height: auto;
	margin-left:10%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#000;
	font-weight: normal;
	font-size: 30px;
	text-align: center;
	padding-top: 20px;
	padding-bottom: 30px;
	border: 0px solid #ccc;
        line-height: 30px;
}

/*FOOTER*/
.container_footer {
	width: 100%;
        margin-left: 0%;
	background: #faede7;
	text-align:center;
	padding: 0px;
}
.wrapper_footer {
	width: 100%;
	margin-left: 0%;	
}
.content_holder_footer01 {
	width: 100%;
	margin-top: 0px;
        margin-left: 0%;
	background: #faede7;
	text-align:center;
	padding: 0px;
}
.content_footer01a {
	display: block;
	width: 30%;
	height: auto;
	margin-left:5%;
	clear: none;
        background: rgba(0, 157, 184, 0.0);
	color:#000;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
	padding-top: 30px;
	border: 0px solid #000000;
	font-family: 'GothamBold';
    src: url('GothamBold.ttf') format('truetype');
}
.content_footer01b {
	display: block;
	width: 30%;
	height: auto;
	margin-left:0%;
	clear: none;
        background: rgba(0, 0, 0, 0.0);
	color:#000000;
	font-weight: normal;
	font-size: 24px;
	text-align: center;
	padding: 0px;
	border: 0px solid #000000;
}
.content_footer01c {
	display: block;
	width: 30%;
	height: auto;
	margin-left:0%;
	clear: none;
        background: rgba(0, 0, 0, 0.0);
	color:#000;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
	padding-top: 20px;
	border: 0px solid #000000;
	font-family: 'GothamBook';
    src: url('GothamBook.ttf') format('truetype');
}
.content_holder_footer02 {
	width: 100%;
	margin-top: 0px;
        margin-left: 0%;
	background: #faede7;
	text-align:center;
	padding-top:20px;
	padding-bottom:20px;
}
.content_footer02a {
	display: block;
	width: 80%;
	height: auto;
	margin-left:10%;
	clear: none;
    background: rgba(0, 0, 0, 0.0);
	color:#000;
	font-weight: normal;
	font-size: 24px;
	text-align: center;
	padding: 0px;
	border-top: 1px solid #d0bab0;
}
.content_footer02b {
	display: block;
	width: 80%;
	height: auto;
	margin-left:10%;
	clear: none;
    background: rgba(0, 0, 0, 0.0);
	color:#000000;
	font-weight: normal;
	font-size: 14px;
	text-align: center;
	padding: 0px;
	border: 0px solid #000000;
}
.container_holder_footer03 {
    position: relative;
	width: 100%;
	height: auto;
	overflow-x: hidden;
	margin-top: 0px;
	margin-left: 0px;
	background-color: #2e3839;
	padding-top: 10px;
	padding-bottom: 10px;
}
.wrapper_footer03 {
	width: 100%;
	margin-left: 0%;
}
.content_footer03a {
	width: 48%;
	display: block;
	height: auto;
	margin-left: 2%;
	clear: none;
	background: rgba(40, 54, 83, 0.0);
	font-weight: normal;
	font-size: 14px;
	color: #ccc;
	text-align: left;
	padding-top: 0px;
	border: 0px solid #000000;
	font-family: 'GothamBold';
    src: url('GothamBold.ttf') format('truetype');
}
.content_footer03b {
	display: block;
	width: 48%;
	height: auto;
	margin-left: 0%;
	margin-right: 2%;
	clear: none;
    background: rgba(0, 0, 0, 0.0);
	color:#000000;
	font-weight: bold;
	font-size: 14px;
	text-align: right;
	padding-top: 0px;
	border: 0px solid #000000;
}
input.subscribe01{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #000;
	border:1px solid #cccccc;
	background-color: #fff;
	font-size: 26px;
} 
input.btn_subscribe01{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	border:0px solid #cccccc;
	font-weight:normal;
	background: rgba(204, 204, 204, 1.0);
	color: #000;
	font-size: 22px;
	padding: 5px;
	text-decoration: none;
}

/*TERMS*/
.container_terms02 {
	width: 100%;
	margin-top: 0px;
	margin-left: 0%;
	background-color:#FFFFFF;
	color: #000;
}
.wrapper_terms02 {
	width: 100%;
	margin-left: 0%;
}
.content_terms01_title01 {
	display: block;
	width: 100%;
	height: auto;
	margin-left:0px;
	clear: none;
	background: #fff;
	color:#2d2d2d;
	font-weight: normal;
	font-size: 50px;
	text-align: center;
	padding-top: 50px;
	padding-bottom: 40px;
	border: 0px solid #ccc;
}
.content_holder_terms02 {
	display: block;
	width: 90%;
	height: auto;
	margin-left:5%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#000;
	font-weight: normal;
	font-size: 20px;
	text-align: left;
	padding-top: 0px;
	border: 0px solid #545454;
}
.content_terms02 {
	display: block;
	width: 100%;
	height: auto;
	margin-left:0%;
	margin-bottom:30px;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#000;
	text-align: left;
	font-weight: normal;
	font-size: 18px;
	padding-top: 50px;
	border-bottom: 0px solid #000000;
}
.container_terms03 {
	width: 100%;
	margin-top: 0px;
	margin-left: 0%;
	background-color:#FFFFFF;
	color: #000;
}
.wrapper_terms03 {
	width: 100%;
	margin-left: 0%;
}
.content_holder_terms03 {
	display: block;
	width: 100%;
	height: auto;
	margin-left:0%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#000;
	font-weight: normal;
	font-size: 20px;
	text-align: left;
	padding-top: 0px;
	border: 0px solid #545454;
}
.content_terms03 {
	display: block;
	width: 90%;
	height: auto;
	margin-left:5%;
	margin-bottom:30px;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#000;
	text-align: left;
	font-weight: normal;
	font-size: 18px;
	padding-top: 400px;
	border-bottom: 0px solid #000000;
}
/*CONTACT US*/
.container_contact01 {
	display: block;
	width: 100%;
        margin-left: 0%;
	background-color: #889da0;
	text-align:center;
	padding: 0px;
	color: #ccc;
}
.wrapper_contact01 {
	width: 100%;
	margin-left: 0%;
}
.content_contact01_title01 {
	display: block;
	width: 100%;
	height: auto;
	margin-left:0px;
	clear: none;
	background-color: #faede7;
	color:#000;
	font-weight: normal;
	font-size: 50px;
	text-align: center;
	padding-top: 300px;
	padding-bottom: 40px;
	border: 0px solid #ccc;
}
.content_contact01_arrow {
      	display: block;
        margin-top: 0px;
        height: auto;
        margin-left: 48%;
        width: 0;
        height: 0;
        border-left: 40px solid transparent;
        border-right: 40px solid transparent;
        border-top: 50px solid #fff;
}
.content_contact01 {
	display: block;
	width: 35%;
	height: auto;
	margin-left: 15%;
	clear: none;
	background: rgba(0, 0, 0, 0.0);
	font-weight: normal;
	font-size: 20px;
	color: #FFF;
	text-align: left;
	padding-top: 60px;
	padding-bottom: 60px;
	border: 0px solid #000000;
}
.content_contact02 {
	display: block;
	width: 40%;
	height: auto;
	margin-left:5%;
	clear: none;
        background: rgba(0, 0, 0, 0.0);
	color:#FFF;
	font-weight: normal;
	font-size: 14px;
	text-align: left;
	padding-top: 60px;
	padding-bottom: 60px;
	border: 0px solid #000000;
}
/*CONTACT FORM*/
.form_1 {
	font-family: 'Gotham', Helvetica Neue, Helvetica, Arial, sans-serif;
	text-align: left;
	vertical-align: top;
	padding: 20px;
	margin-top: 0px;
	margin-left: 0px;
	border-right-width: thin;
	border-right-style: solid;
	border-right-color: #000;
	border-top-width: 5px;
	border-top-style: solid;
	border-top-color: #000;
}
.form_text {
	font-family: 'Gotham', Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #000;
	text-align: right;
	vertical-align: top;
	padding: 5px;
	background-color: #fff;
}
textarea{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #000;
	border: thin solid #9199a1;
	background-color: #fff;
}
input.nl{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	color:#fff;
	border:1px solid #545454;
	background-color: #545454;
} 
input.nlb{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	background:#cccccc;
	color:#000000;
	font:10px;
	border:1px solid #fec7da;
	border-right:1px solid #fec7da;
	border-bottom:1px solid #fec7da;
	font-weight:bold
}
input.emf{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #000;
	border: thin solid #899199;
	background-color: #fff;
	font-size: 18px;
}
input.emf02{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #000;
	border: thin solid #bc9c72;
	background-color: #fff;
	font-size: 18px;
} 
input.smf{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	border:0px solid #fde2a3;
	font-weight:normal;
	background: rgba(54, 54, 54, 1.0);
	color: #FFFFFF;
	border: thin solid #ccc;
	font-size: 20px;
	padding: 10px;
	text-decoration: none;
} 
select.dmf {
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	background:#e0e0e0;
	color:#000;
	border:0px solid #fec7da;
	border-right:2px solid #fec7da;
	border-bottom:1px solid #fec7da;
	}
input.subscribe01{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #000000;
	border:thin solid #cccccc;
	background-color: #fff;
	font-size: 20px;
} 
input.btn_subscribe01{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	border:0px solid #cccccc;
	font-weight:normal;
	background: rgba(204, 204, 204, 1.0);
	color: #000000;
	font-size: 18px;
	padding: 3px;
	text-decoration: none;
} 
input.subscribe02{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #FFF;
	border:1px solid #f6d8d0;
	background-color:rgba(0, 0, 0, 1.0);
	font-size: 16px;
} 
input.btn_subscribe02{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	border:thin solid #f6d8d0;
	font-weight:normal;
	background: rgba(0, 0, 0, 1.0);
	color: #FFFFFF;
	font-size: 14px;
        padding: 7px 68px 6px 68px;
	text-decoration: none;
}
.content_contact02a {
	width: 40%;
	height: auto;
	margin-left:1%;
	clear: none;
    background: rgba(0, 0, 0, 0.0);
	font-weight: normal;
	font-size: 18px;
	text-align: left;
	padding: 8px;
}
::-webkit-input-placeholder {
   color: #ccc;
}
:-moz-placeholder { /* Firefox 18- */
   color: #a4a4a4;  
}
::-moz-placeholder {  /* Firefox 19+ */
   color: #a4a4a4;  
}
:-ms-input-placeholder {  
   color: #a4a4a4;
}
hr.v01 {
    background-color: #d0bab0;
    border: 0 none;
    color: #d0bab0;
    height: 1px;
}
hr.v02 {
    background-color: #e6bf97;
    border: 0 none;
    color: #e6bf97;
    height: 1px;
}
/*.....................*/
/*..........*/
/*.............*/
.sc_holder_01 {
	display: none;
	position: relative;
	width: 100%;
    margin-left: 0%;
	margin-top:0px;
    background-color:rgba(0, 0, 0, 0.0);
	text-align:center;
	padding: 0px;
}
.sc_menu_m { 
   display: block;
   top: 0px; 
   margin-left: 0%;
   margin-right: 0%;
   width: 100%; 
   text-align:left;
   padding-top: 10px;
   padding-bottom: 10px;
   padding-left: 25px;
   background: rgba(35, 42, 45, 1.0);
}
.zeroMargin_tablet {
    margin-left: 0;
}
.hide_tablet {
    display: none;
}
}
/*.............*/
/*.............*/
/*.............*/
@media only screen and (min-width: 1200px) {
.gridContainer {
	width: 100%;
	max-width: auto;
	padding-left: 0.0%;
	padding-right: 0.0%;
	margin: auto;
	clear: none;
	float: none;
	margin-left: auto;
}
body{
	overflow-x: hidden;
	margin-top: 0px;
	margin-left:0px;
	font-family: "Gotham", Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #FFF; 
}
/*SPACING*/
a.anchor {
    display: block;
    position: relative;
    top: -30px;
    visibility: hidden;
}
/*TITLES-TEXT*/
.content_holder_title01 {
	display: block;
	width: 100%;
	height: auto;
	margin-top:0px;
	margin-left:0px;
	clear: none;
	background-color:#faede7;
	color:#2d2d2d;
	font-weight: normal;
	font-size: 60px;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 20px;
        box-sizing: border-box;
	border: 0px solid #2d2d2d;
}
.content_holder_title01:after {
    content: ""; /* This is necessary for the pseudo element to work. */ 
    display: block; /* This will put the pseudo element on its own line. */
    margin: 0 auto; /* This will center the border. */
    width: 50px; /* Change this to whatever width you want. */
    padding-top: 0px; /* This creates some space between the element and the border. */
    border-bottom: 0px solid #2d2d2d; /* This creates the border. Replace black with whatever color you want. */
}
.content_holder_title01a {
        font-family: 'GothamLight', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
}
.content_holder_title02a {
        font-family: 'GothamLight', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
}
.fgo_text01a {
        font-family: 'GothamBold', Arial, sans-serif;
        color:#fff;
	font-weight: bold;
	font-size: 40px;
}
.fgo_text01c {
        font-family: 'GothamBold', Arial, sans-serif;
        color:#fff;
	font-weight: bold;
	font-size: 24px;
}
.cover_text01a {
        color:#f1dac7;
	font-weight: 900;
	font-size: 40px;
        letter-spacing: 2px;
        font-family: 'Gotham', Arial, sans-serif;
         text-shadow: 1px 1px #524537;
}
.cover_text01b {
        font-family: 'Gotham', Arial, sans-serif;
        color:#000;
	font-weight: 800;
	font-size: 35px;
        letter-spacing: 0px;
}
.sig_01 {
        font-family: 'Avenir', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
	font-size: 60px;
        color: #000;
        -webkit-filter: drop-shadow(0px 0px 0px #545454);
        filter: drop-shadow(0px 0px 0px #545454);
}
.sig_02 {
        font-family: 'GothamBook', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
	font-size: 24px;
        color: #c04c57;
        line-height:30px;
}
.sig_03 {
        font-family: 'GothamBook', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
	font-size: 40px;
        color: #665341;
        line-height:100px;
}
.sig_04 {
        font-family: 'GothamBook', Arial, sans-serif;
        font-weight:bold;
        color: #faede7;
	font-size: 20px;
}
.sig_05 {
        font-family: 'GothamBold', Arial, sans-serif;
        font-weight:bold;
	font-size: 24px;
        text-decoration: underline;
        color: #ebc5a0;
}
.sig_06 {
        font-family: 'Gotham', Arial, sans-serif;
        font-weight:normal;
	font-size: 18px;
}
.sig_07 {
        font-family: 'Windsong', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
	font-size: 60px;
        color: #000;
padding-top: 10px;
        line-height:30px;
}
.sig_08 {
        font-family: 'Windsong', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
	font-size: 100px;
        color: #FFF;
        line-height:100px;
}
.sig_09 {
        font-family: 'GothamBook', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
	    font-size: 24px;
        color: #c04c57;
}
.title01 {
        font-family: 'Windsong', Arial, sans-serif;
        font-weight:normal;
        font-style:normal;
	font-size: 140px;
        color: #FFF;
        -webkit-filter: drop-shadow(0px 0px 0px #545454);
        filter: drop-shadow(0px 0px 0px #545454);
        margin: 0px 0px -50px 0px; 
        padding: 0px 0px 0px 0px;
}
.title02 {
        font-family: 'GothamBold', Arial, sans-serif;
        font-weight:bold;
	font-size: 14px;
	color:#000;
}
.space01 {
	display: block;
        text-align: left;
        line-height: 30px;
	color:#FFF;
}
.space02 {
        line-height: 120%;
}
.space03 {
  text-align: justify;
}
.shdw01 {
         filter: drop-shadow(1px 3px 5px #545454);
}
/*SOCIAL-NAV*/
.container01b {
	display: block;
        position: fixed;
        top: 0;
        z-index: 10;
	width: 100%;
	height: auto;
        margin-left: 0%;
	background-color:#2e3839;
	text-align:center;
	padding-top: 0px;
	color: #FFF;
        border-bottom: thin solid #cef9cc;
}
.wrapper01b {
	width: 100%;
	margin-left: 0%;
}
.content_logo01 {
	display: block;
	width: 50%;
	min-width: 200px;
	height: auto;
	margin-left: 0%;
	clear: none;
	background: rgba(40, 54, 83, 0.0);
	font-weight: normal;
	font-size: 11px;
	color: #FFF;
	text-align: center;
	padding-top: 0px;
	padding-bottom: 0px;
	border: 0px solid #000000;
}
.content_nav01 {
	display: block;
	width: 50%;
	min-width: 500px;
	height: auto;
	margin-right: 0px;
	clear: none;
        background: rgba(0, 0, 0, 0.0);
	color:#000000;
	font-weight: normal;
	font-size: 14px;
	text-align: right;
	padding: 0px;
	border: 0px solid #000000;
}
/*LOGO*/
.container01c {
	display: block;
        position: absolute;
        top: 0;
	width: 100%;
	height: auto;
        margin-left: 0%;
	background-color: #FFF;
	text-align:center;
	padding-top: 0px;
	color: #000;
}
.wrapper01c {
	width: 100%;
	margin-left: 0%;
}
.content_logo01c {
	display: block;
	width: 100%;
	min-width: 200px;
	height: auto;
	margin-left: 0%;
	clear: none;
	font-weight: bold;
	font-size: 11px;
	color: #000;
	text-align: center;
	padding-top: 35px;
	padding-bottom: 5px;
	border: 0px solid #000000;
}
/*BANNER*/
.container_home01 {
        width: 100%;
	height: 100vh;
	min-height: 900px;
	overflow-x: hidden;
        overflow-y:auto;
	margin-top: 0px;
	background-image:url(img/main01l.jpg);
        background-color: #FFF;
        background-attachment: fixed;
        background-position: top center; 
        background-repeat:no-repeat;
       -webkit-background-size:cover;
       -moz-background-size:cover;
       -o-background-size:cover;
        background-size:cover;
        background-position:center;
}
.wrapper_home01 {
	width: 100%;
	margin-left: 0%;
}
.content_home01a {
	width: 30%;
	height: auto;
	margin-left:5%;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#000;
	text-align: right;
	font-weight: normal;
	font-size: 24px;
	padding-top: 330px;
}
.content_home01b {
        width: 59%;
	height: auto;
	margin-left:2%;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#000;
	text-align: justify;
	font-weight: 600;
	font-size: 15px;
	padding-top: 300px;
	padding-bottom: 0px;
	border-bottom: 0px solid #000000;
        font-family: 'Gotham', Arial, sans-serif;
}

/*INTRO*/
.container_intro01 {
	width: 100%;
	margin-top: 0px;
	margin-left: 0%;
	background-color:#889da0;
	color: #FFF;
}
.wrapper_intro01 {
	width: 100%;
	margin-left: 0%;
}
.content_holder_intro01 {
	display: block;
	width: 100%;
	height: auto;
	margin-left:0%;
	clear: none;
	color:#FFF;
	font-weight: normal;
	font-size: 20px;
	text-align: left;
	padding-top: 0px;
	border: 0px solid #545454;
}
.content_intro01 {
	display: block;
	width: 80%;
	height: auto;
	margin-left:10%;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#FFF;
	text-align: center;
	font-weight: normal;
	font-size: 18px;
	padding-top: 40px;
	padding-bottom: 0px;
	border-bottom: 0px solid #000000;
}

/*WELCOME*/
.container_welcome01 {
	width: 100%;
	margin-top: 0px;
	margin-left: 0%;
	background-color:#889da0;
	color: #FFF;
}
.wrapper_welcome01 {
	width: 100%;
	margin-left: 0%;
}
.content_holder_welcome01 {
	display: block;
	width: 80%;
	height: auto;
	margin-left:10%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#000;
	font-size: 20px;
	text-align: left;
	padding-top: 0px;
	border: 0px solid #545454;
}
.content_welcome01 {
	display: block;
	width: 80%;
	height: auto;
	margin-left:10%;
	margin-bottom:30px;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#FFF;
	text-align: center;
	font-weight: normal;
        font-style: italic;
	font-size: 22px;
	padding-top: 0px;
	border-bottom: 0px solid #000000;
}
	
/*OTHER WORK*/
.container_ow01 {
	width: 100%;
	margin-top: 0px;
	margin-left: 0%;
	background-color:#FFFFFF;
	color: #000;
    border-bottom: thin solid #ebc5a0;
}
.wrapper_ow01 {
	width: 100%;
	margin-left: 0%;
}
.content_holder_ow_title01 {
    display: block;
    margin: 0 auto;
	text-align: center;
	font-weight: normal;
	font-size: 40px;
	background-color:#FFFEF2;
    padding: 20px 0px 20px 0px;
    box-sizing: border-box;
}
.content_holder_ow01a {
	display: block;
	width: 40%;
	height: auto;
	margin-left: 10%;
	margin-bottom:0px;
	clear: none;
	color:#2d2d2d;
	text-align: left;
	font-weight: normal;
	font-size: 16px;
    padding: 10px 10px 30px 10px;
    box-sizing: border-box;
	border-bottom: 0px solid #cdcdcd;
}
.content_holder_ow01b {
	display: block;
	width: 40%;
	height: auto;
	margin-left: 0%;
	margin-bottom:0px;
	clear: none;
	color:#2d2d2d;
	text-align: left;
	font-weight: normal;
	font-size: 16px;
    padding: 10px 10px 30px 10px;
    box-sizing: border-box;
	border-left: 1px solid #e4e4e4;
}


/*ABOUT US*/
.container_aboutus01 {
	width: 100%;
	margin-top: 0px;
	margin-left: 0%;
	background-color:#FFFEF2;
	color: #000;
        border-bottom: thin solid #ebc5a0;
}
.wrapper_aboutus01 {
	width: 100%;
	margin-left: 0%;
}
.content_holder_aboutus01_arrow {
      	display: block;
        margin-top: 0px;
        height: auto;
        margin-left: 49%;
        margin-right: 49%;
        width: 0;
        height: 0;
        border-left: 40px solid transparent;
        border-right: 40px solid transparent;
        border: 10px solid #daeae4;
}
.content_holder_aboutus01a {
	display: block;
	width: 40%;
	height: auto;
	margin-left: 10%;
	margin-bottom:0px;
	clear: none;
	color:#2d2d2d;
	text-align: center;
	font-weight: 500;
	font-size: 20px;
	padding-top: 0px;
	padding-bottom: 40px;
	border-bottom: 0px solid #000000;
}
.content_holder_aboutus01b {
	display: block;
	width: 40%;
	height: auto;
	margin-left: 3%;
	margin-bottom:0px;
	clear: none;
	color:#2d2d2d;
	text-align: justify;
	font-weight: 600;
	font-size: 22px;
	padding-top: 0px;
	padding-bottom: 40px;
	border-bottom: 0px solid #000000;
}

/*SERVICES*/
.container_services01 {
        width: 100%;
	margin-top: 0px;
	margin-left: 0px;
	background-color: #889da0;
	color: #ccc;
}
.wrapper_services01 {
	width: 100%;
	margin-left: 0px;
}
.content_services01_section02a_arrow {
      	display: block;
        margin-top: 0px;
        height: auto;
        margin-left: 49%;
        margin-right: 49%;
        width: 0;
        height: 0;
        border-left: 30px solid transparent;
        border-right: 30px solid transparent;
        border: 10px solid #daeae4;
}
.content_holder_services01 {
	display: block;
	width: 100%;
	height: auto;
	margin-left:0px;
	clear: none;
	background-color: #889da0;
	color:#fff;
	font-weight: normal;
	font-size: 50px;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 40px;
	border: 0px solid #ccc;
}
.content_holder_services02 {
	display: block;
	width: 80%;
	height: auto;
	margin-left:10%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#ccc;
	font-weight: normal;
	font-size: 20px;
	text-align: left;
	padding-top: 30px;
	padding-bottom: 20px;
	border: 0px solid #ccc;
}
.content_holder_services03a {
	display: block;
	width: 70%;
	height: auto;
	margin-left:15%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#FFF;
	font-weight: bold;
	font-size: 26px;
	text-align: center;
	padding-top: 0px;
	padding-bottom: 30px;
	border: 0px solid #ccc;
}
.content_holder_services03b {
	display: block;
	width: 30%;
	height: auto;
	margin-left:5%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#000;
	font-weight: bold;
	font-size: 12px;
	text-align: center;
	padding-top: 0px;
	padding-bottom: 30px;
	border: 0px solid #ccc;
}
.content_holder_services03c {
	display: block;
	width: 30%;
	height: auto;
	margin-left:5%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#000;
	font-weight: bold;
	font-size: 12px;
	text-align: center;
	padding-top: 0px;
	padding-bottom: 30px;
	border: 0px solid #ccc;
}

/*QUOTES*/
.container_quote01 {
        width: 100%;
	height: 100vw;
	min-height: 500px;
	max-height: 600px;
	overflow-x: hidden;
        overflow-y:auto;
	margin-top: 0px;
	background-image:url(img/main01f3.jpg);
        background-attachment: fixed;
        background-position: top left; 
        background-repeat:no-repeat;
       -webkit-background-size:cover;
       -moz-background-size:cover;
       -o-background-size:cover;
        background-size:cover;
}
.wrapper_quote01 {
	width: 100%;
	margin-left: 0%;
}
.content_quote01_holder {
	display: block;
	width: 70%;
	height: auto;
	margin-left:15%;
	margin-bottom:0px;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#FFF;
	text-align: center;
	font-weight: 600;
        font-style: italic;
	font-size: 36px;
	padding-top: 130px;
	border-bottom: 0px solid #000000;
        font-family: 'Gotham', Arial, sans-serif;
        -webkit-filter: drop-shadow(2px 2px 0px #000);
        filter: drop-shadow(2px 2px 0px #000);
}
.content_quote01_section01 {
	display: block;
	width: 50%;
	height: auto;
	clear: none;
	color:#fde2a3;
	text-align: center;
	font-weight: normal;
        font-style: italic;
	font-size: 30px;
	padding: 150px;
        box-sizing: border-box;
	border-bottom: 0px solid #000000;
}
.content_quote01_section02 {
	display: block;
	width: 50%;
	height: auto;
	margin-left:0%;
	clear: none;
	text-align: center;
	padding: 0px;
	border: 0px solid #545454;
}

/*CTA*/
.container_cta01 {
	width: 100%;
	margin-top: 0px;
	margin-left: 0%;
	background: #fff;
	color: #000;
}
.wrapper_cta01 {
	width: 100%;
	margin-left: 0%;
}
.content_holder_cta01 {
	display: block;
	width: 60%;
	height: auto;
	margin-left:20%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#000;
	font-weight: normal;
	font-size: 30px;
	text-align: center;
	padding-top: 40px;
	padding-bottom: 40px;
	border: 0px solid #ccc;
        line-height: 30px;
}

/*FOOTER*/
.container_footer {
	width: 100%;
        margin-left: 0%;
	background: #faede7;
	text-align:center;
	padding: 0px;
}
.wrapper_footer {
	width: 100%;
	margin-left: 0%;	
}
.content_holder_footer01 {
	width: 100%;
	margin-top: 0px;
        margin-left: 0%;
	background: #faede7;
	text-align:center;
	padding: 0px;
}
.content_footer01a {
	display: block;
	width: 20%;
	height: auto;
	margin-left:20%;
	clear: none;
        background: rgba(0, 157, 184, 0.0);
	color:#000;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
	padding-top: 30px;
	border: 0px solid #000000;
	font-family: 'GothamBold';
    src: url('GothamBold.ttf') format('truetype');
}
.content_footer01b {
	display: block;
	width: 20%;
	height: auto;
	margin-left:0%;
	clear: none;
        background: rgba(0, 0, 0, 0.0);
	color:#000000;
	font-weight: normal;
	font-size: 24px;
	text-align: center;
	padding: 0px;
	border: 0px solid #000000;
}
.content_footer01c {
	display: block;
	width: 20%;
	height: auto;
	margin-left:0%;
	clear: none;
        background: rgba(0, 0, 0, 0.0);
	color:#000;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
	padding-top: 20px;
	border: 0px solid #000000;
	font-family: 'GothamBook';
    src: url('GothamBook.ttf') format('truetype');
}
.content_holder_footer02 {
	width: 100%;
	margin-top: 0px;
        margin-left: 0%;
	background: #faede7;
	text-align:center;
	padding-top:20px;
	padding-bottom:20px;
}
.content_footer02a {
	display: block;
	width: 80%;
	height: auto;
	margin-left:10%;
	clear: none;
    background: rgba(0, 0, 0, 0.0);
	color:#000;
	font-weight: normal;
	font-size: 24px;
	text-align: center;
	padding: 0px;
	border-top: 1px solid #d0bab0;
}
.content_footer02b {
	display: block;
	width: 80%;
	height: auto;
	margin-left:10%;
	clear: none;
    background: rgba(0, 0, 0, 0.0);
	color:#000000;
	font-weight: normal;
	font-size: 14px;
	text-align: center;
	padding: 0px;
	border: 0px solid #000000;
}
.container_holder_footer03 {
    position: relative;
	width: 100%;
	height: auto;
	overflow-x: hidden;
	margin-top: 0px;
	margin-left: 0px;
	background-color: #2e3839;
	padding-top: 10px;
	padding-bottom: 10px;
}
.wrapper_footer03 {
	width: 100%;
	margin-left: 0%;
}
.content_footer03a {
	width: 48%;
	display: block;
	height: auto;
	margin-left: 2%;
	clear: none;
	background: rgba(40, 54, 83, 0.0);
	font-weight: normal;
	font-size: 14px;
	color: #ccc;
	text-align: left;
	padding-top: 0px;
	border: 0px solid #000000;
	font-family: 'GothamBold';
    src: url('GothamBold.ttf') format('truetype');
}
.content_footer03b {
	display: block;
	width: 48%;
	height: auto;
	margin-left: 0%;
	margin-right: 2%;
	clear: none;
    background: rgba(0, 0, 0, 0.0);
	color:#000000;
	font-weight: bold;
	font-size: 14px;
	text-align: right;
	padding-top: 0px;
	border: 0px solid #000000;
}
input.subscribe01{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #000;
	border:1px solid #cccccc;
	background-color: #fff;
	font-size: 26px;
} 
input.btn_subscribe01{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	border:0px solid #cccccc;
	font-weight:normal;
	background: rgba(204, 204, 204, 1.0);
	color: #000;
	font-size: 22px;
	padding: 5px;
	text-decoration: none;
}

/*TERMS*/
.container_terms02 {
	width: 100%;
	margin-top: 0px;
	margin-left: 0%;
	background-color:#FFFFFF;
	color: #000;
}
.wrapper_terms02 {
	width: 100%;
	margin-left: 0%;
}
.content_terms01_title01 {
	display: block;
	width: 100%;
	height: auto;
	margin-left:0px;
	clear: none;
	background: #fff;
	color:#2d2d2d;
	font-weight: normal;
	font-size: 50px;
	text-align: center;
	padding-top: 50px;
	padding-bottom: 40px;
	border: 0px solid #ccc;
}
.content_holder_terms02 {
	display: block;
	width: 70%;
	height: auto;
	margin-left:15%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#000;
	font-weight: normal;
	font-size: 20px;
	text-align: left;
	padding-top: 0px;
	border: 0px solid #545454;
}
.content_terms02 {
	display: block;
	width: 100%;
	height: auto;
	margin-left:0%;
	margin-bottom:30px;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#000;
	text-align: left;
	font-weight: normal;
	font-size: 18px;
	padding-top: 50px;
	border-bottom: 0px solid #000000;
}
.container_terms03 {
	width: 100%;
	margin-top: 0px;
	margin-left: 0%;
	background-color:#FFFFFF;
	color: #000;
}
.wrapper_terms03 {
	width: 100%;
	margin-left: 0%;
}
.content_holder_terms03 {
	display: block;
	width: 80%;
	height: auto;
	margin-left:10%;
	clear: none;
	background: rgba(249, 237, 137, 0.0);
	color:#000;
	font-weight: normal;
	font-size: 20px;
	text-align: left;
	padding-top: 0px;
	border: 0px solid #545454;
}
.content_terms03 {
	display: block;
	width: 80%;
	height: auto;
	margin-left:10%;
	margin-bottom:30px;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#000;
	text-align: left;
	font-weight: normal;
	font-size: 18px;
	padding-top: 400px;
	border-bottom: 0px solid #000000;
}
/*CONTACT US*/
.container_contact01 {
	display: block;
	width: 100%;
        margin-left: 0%;
	background-color: #889da0;
	text-align:center;
	padding: 0px;
	color: #ccc;
}
.wrapper_contact01 {
	width: 100%;
	margin-left: 0%;
}
.content_contact01_title01 {
	display: block;
	width: 100%;
	height: auto;
	margin-left:0px;
	clear: none;
	background-color: #faede7;
	color:#000;
	font-weight: normal;
	font-size: 50px;
	text-align: center;
	padding-top: 300px;
	padding-bottom: 40px;
	border: 0px solid #ccc;
}
.content_contact01_arrow {
      	display: block;
        margin-top: 0px;
        height: auto;
        margin-left: 48%;
        width: 0;
        height: 0;
        border-left: 40px solid transparent;
        border-right: 40px solid transparent;
        border-top: 50px solid #fff;
}
.content_contact01 {
	display: block;
	width: 30%;
	height: auto;
	margin-left: 20%;
	clear: none;
	background: rgba(0, 0, 0, 0.0);
	font-weight: normal;
	font-size: 20px;
	color: #FFF;
	text-align: left;
	padding-top: 60px;
	padding-bottom: 60px;
	border: 0px solid #000000;
}
.content_contact02 {
	display: block;
	width: 40%;
	height: auto;
	margin-left:5%;
	clear: none;
        background: rgba(0, 0, 0, 0.0);
	color:#FFF;
	font-weight: normal;
	font-size: 14px;
	text-align: left;
	padding-top: 60px;
	padding-bottom: 60px;
	border: 0px solid #000000;
}
/*CONTACT FORM*/
.form_1 {
	font-family: 'Gotham', Helvetica Neue, Helvetica, Arial, sans-serif;
	text-align: left;
	vertical-align: top;
	padding: 20px;
	margin-top: 0px;
	margin-left: 0px;
	border-right-width: thin;
	border-right-style: solid;
	border-right-color: #000;
	border-top-width: 5px;
	border-top-style: solid;
	border-top-color: #000;
}
.form_text {
	font-family: 'Gotham', Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #000;
	text-align: right;
	vertical-align: top;
	padding: 5px;
	background-color: #fff;
}
textarea{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #000;
	border: thin solid #9199a1;
	background-color: #fff;
}
input.nl{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	color:#fff;
	border:1px solid #545454;
	background-color: #545454;
} 
input.nlb{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	background:#cccccc;
	color:#000000;
	font:10px;
	border:1px solid #fec7da;
	border-right:1px solid #fec7da;
	border-bottom:1px solid #fec7da;
	font-weight:bold
}
input.emf{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #000;
	border: thin solid #899199;
	background-color: #fff;
	font-size: 18px;
}
input.emf02{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #000;
	border: thin solid #bc9c72;
	background-color: #fff;
	font-size: 18px;
} 
input.smf{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	border:0px solid #fde2a3;
	font-weight:normal;
	background: rgba(54, 54, 54, 1.0);
	color: #FFFFFF;
	border: thin solid #ccc;
	font-size: 20px;
	padding: 10px;
	text-decoration: none;
} 
select.dmf {
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	background:#e0e0e0;
	color:#000;
	border:0px solid #fec7da;
	border-right:2px solid #fec7da;
	border-bottom:1px solid #fec7da;
	}
input.subscribe01{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #000000;
	border:thin solid #cccccc;
	background-color: #fff;
	font-size: 20px;
} 
input.btn_subscribe01{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	border:0px solid #cccccc;
	font-weight:normal;
	background: rgba(204, 204, 204, 1.0);
	color: #000000;
	font-size: 18px;
	padding: 3px;
	text-decoration: none;
} 
input.subscribe02{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #FFF;
	border:1px solid #f6d8d0;
	background-color:rgba(0, 0, 0, 1.0);
	font-size: 16px;
} 
input.btn_subscribe02{
	font-family: 'Avenir', Helvetica Neue, Helvetica, Arial, sans-serif;
	border:thin solid #f6d8d0;
	font-weight:normal;
	background: rgba(0, 0, 0, 1.0);
	color: #FFFFFF;
	font-size: 14px;
        padding: 7px 68px 6px 68px;
	text-decoration: none;
}
.content_contact02a {
	width: 40%;
	height: auto;
	margin-left:1%;
	clear: none;
    background: rgba(0, 0, 0, 0.0);
	font-weight: normal;
	font-size: 18px;
	text-align: left;
	padding: 8px;
}
::-webkit-input-placeholder {
   color: #ccc;
}
:-moz-placeholder { /* Firefox 18- */
   color: #a4a4a4;  
}
::-moz-placeholder {  /* Firefox 19+ */
   color: #a4a4a4;  
}
:-ms-input-placeholder {  
   color: #a4a4a4;
}
hr.v01 {
    background-color: #d0bab0;
    border: 0 none;
    color: #d0bab0;
    height: 1px;
}
hr.v02 {
    background-color: #e6bf97;
    border: 0 none;
    color: #e6bf97;
    height: 1px;
}

/*.....................*/
/*..........*/
.zeroMargin_tablet {
    margin-left: 0;
}
.hide_tablet {
    display: none;
}
}
/*.............*/
/*.............*/
/*.............*/
@media only screen and (min-width: 1500px) {
.gridContainer {
	width: 100%;
	max-width: auto;
	padding-left: 0.0%;
	padding-right: 0.0%;
	margin: auto;
	clear: none;
	float: none;
	margin-left: auto;
}
/*LOGO*/
.container01c {
	display: block;
        position: absolute;
        top: 0;
	width: 100%;
	height: auto;
        margin-left: 0%;
	background-color: #FFF;
	text-align:center;
	padding-top: 0px;
	color: #000;
}
.wrapper01c {
	width: 100%;
	margin-left: 0%;
}
.content_logo01c {
	display: block;
	width: 100%;
	min-width: 200px;
	height: auto;
	margin-left: 0%;
	clear: none;
	font-weight: bold;
	font-size: 11px;
	color: #000;
	text-align: center;
	padding-top: 35px;
	padding-bottom: 5px;
	border: 0px solid #000000;
}
/*BANNER*/
.container_home01 {
        width: 100%;
	height: 100vh;
	min-height: 900px;
	overflow-x: hidden;
        overflow-y:auto;
	margin-top: 0px;
	background-image:url(img/main01l.jpg);
        background-color: #FFF;
        background-attachment: fixed;
        background-position: top center; 
        background-repeat:no-repeat;
       -webkit-background-size:cover;
       -moz-background-size:cover;
       -o-background-size:cover;
        background-size:cover;
        background-position:center;
}
.wrapper_home01 {
	width: 100%;
	margin-left: 0%;
}
.content_home01a {
	width: 30%;
	height: auto;
	margin-left:5%;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#fff;
	text-align: right;
	font-weight: normal;
	font-size: 24px;
	padding-top: 330px;
}
.content_home01b {
        width: 51%;
	height: auto;
	margin-left:0%;
	clear: none;
	background: rgba(10, 25, 35, 0.0);
	color:#fff;
	text-align: justify;
	font-weight: 600;
	font-size: 16px;
	padding-top: 300px;
	padding-bottom: 0px;
	border-bottom: 0px solid #000000;
        font-family: 'Gotham', Arial, sans-serif;
}

/*ABOUT US*/
.container_aboutus01 {
	width: 100%;
	margin-top: 0px;
	margin-left: 0%;
	background-color:#FFFEF2;
	color: #000;
        border-bottom: thin solid #ebc5a0;
}
.wrapper_aboutus01 {
	width: 100%;
	margin-left: 0%;
}
.content_holder_aboutus01_arrow {
      	display: block;
        margin-top: 0px;
        height: auto;
        margin-left: 49%;
        margin-right: 49%;
        width: 0;
        height: 0;
        border-left: 40px solid transparent;
        border-right: 40px solid transparent;
        border: 10px solid #daeae4;
}
.content_holder_aboutus01a {
	display: block;
	width: 30%;
	height: auto;
	margin-left: 20%;
	margin-bottom:0px;
	clear: none;
	color:#2d2d2d;
	text-align: center;
	font-weight: 500;
	font-size: 20px;
	padding-top: 0px;
	padding-bottom: 40px;
	border-bottom: 0px solid #000000;
}
.content_holder_aboutus01b {
	display: block;
	width: 30%;
	height: auto;
	margin-left: 3%;
	margin-bottom:0px;
	clear: none;
	color:#2d2d2d;
	text-align: justify;
	font-weight: 600;
	font-size: 22px;
	padding-top: 0px;
	padding-bottom: 40px;
	border-bottom: 0px solid #000000;
}
	
/*OTHER WORK*/
.container_ow01 {
	width: 100%;
	margin-top: 0px;
	margin-left: 0%;
	background-color:#FFFFFF;
	color: #000;
    border-bottom: thin solid #ebc5a0;
}
.wrapper_ow01 {
	width: 100%;
	margin-left: 0%;
}
.content_holder_ow_title01 {
    display: block;
    margin: 0 auto;
	text-align: center;
	font-weight: normal;
	font-size: 40px;
	background-color:#FFFEF2;
    padding: 20px 0px 20px 0px;
    box-sizing: border-box;
}
.content_holder_ow01a {
	display: block;
	width: 35%;
	height: auto;
	margin-left: 15%;
	margin-bottom:0px;
	clear: none;
	color:#2d2d2d;
	text-align: left;
	font-weight: normal;
	font-size: 16px;
    padding: 10px 10px 30px 10px;
    box-sizing: border-box;
	border-bottom: 0px solid #cdcdcd;
}
.content_holder_ow01b {
	display: block;
	width: 35%;
	height: auto;
	margin-left: 0%;
	margin-bottom:0px;
	clear: none;
	color:#2d2d2d;
	text-align: left;
	font-weight: normal;
	font-size: 16px;
    padding: 10px 10px 30px 10px;
    box-sizing: border-box;
	border-left: 1px solid #e4e4e4;
}

/*.....................*/
/*..........*/
.zeroMargin_tablet {
    margin-left: 0;
}
.hide_tablet {
    display: none;
}
}



