/*! HTML5 Boilerplate v6.0.1 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0;
    background: #B22222;
    color: #fff;
    padding: 0.5em 0;
    text-align: center;
    z-index: 100000;
}

.browserupgrade strong, .browserupgrade a{
  color: #fff;
}


/* ============================================== GLOBAL
*/


*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html{
  background-color: #fff;
}


body {
  font-size: 16px;
  color: #000;
}

a, a img {
   outline: 0;
   border:none;
   border: 0;
   -webkit-tap-highlight-color: rgba(0,0,0,0);
}

input::-moz-focus-inner { 
  border: 0; 
}

a {
 color: #000;
 -webkit-transition: all 0.25s ease-in; /*safari and chrome */
 -moz-transition: all 0.25s ease-in; /* firefox */
 -o-transition: all 0.25s ease-in; /* opera */
 transition: all 0.25s ease-in; /* opera */
}

a:hover, a:focus {
  color: #c46e4f;
}

/* Remove input outline for WebKit browsers */

input[type="text"]:focus {
  outline: none;
}


#loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #fff;
  z-index: 100000;
}

.number{
  display: inline-block;
}

.number:hover{
  cursor: context-menu;
}

#formSubmit:hover{
  cursor: pointer;
}


.tbl {
  display: table;
  height: 100%;
}

.tblCell {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

/* ============================================== FORM VALIDATION
*/


.parsley-errors-list{
  list-style-type: none;
  margin-left: 0;
  margin-top: -5px;
  color: #f04124;
  font-size: 11px;
}

.parsley-errors-list {
  list-style:none;
}
.parsley-required, .parsley-type, .parsley-pattern, .parsley-minlength, .parsley-minlength{
  color:#f04124;
}

#error{ 
	text-align:center; 
	padding:15px; 
	background:#a41320; 
	color:#fff;
	width: 100%;
	margin-right:auto; 
	margin-left:auto;
	margin-bottom:40px;
}
.close_err{ float:right; cursor:pointer;}

.screen_names{
	font-weight:700;
  text-transform:capitalize;
}

.msg-textarea{
  position:relative;
}

#message .success_submit, .msg-textarea {
	display: block;
	padding: 10px;
	font-size: 22px;
	font-style: normal;
  text-align: center;
}



/* Autoselection for Chrome browsers -  change colors and background for your theme */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	background-color:#fff !important;
	transition: background-color 5000s ease-in-out 0s;
	-webkit-text-fill-color: #000 !important;
}



/* if you have placeholder in your form change to your theme color and do not forget the !important */

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #fff !important;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #fff !important;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #fff !important;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #fff !important;
}



/* select arrow change the color and background size for your theme */

select {

  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: #da7c5a'></polygon></svg>");
  background-size: 15px;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap; /* 1 */
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    -webkit-clip-path: none;
    clip-path: none;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
    white-space: inherit;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}



/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* minion-pro Italic
 
 font-family: minion-pro, serif;
font-style: italic;
font-weight: 400;
*/

  
/* regular

font-family: proxima-nova, sans-serif;
font-style: normal;
font-weight: 400;

*/

/* light

font-family: proxima-nova, sans-serif;
font-style: normal;
font-weight: 300;

*/


/* freight bold

font-family: freight-micro-pro, serif;
font-style: normal;
font-weight: 700;

*/

/*normal

font-family: montserrat, sans-serif;
font-style: normal;
font-weight: 400;

*/

/*light

font-family: montserrat, sans-serif;
font-style: normal;
font-weight: 300;

*/






/* ============================================== COMMENT
*/


.test{ border:1px solid #000; }
.test2{ border:1px solid #fff; }
.pos_rel{ position:relative !important; }
.m_w{ min-width:100% !important;} 
.no_pad { padding-left:0; padding-right:0;}

.color_text{ color:#001916 !important; }
.white_c{ color:#fff !important;}

.section_pad{
	padding-top:50px;
	padding-bottom:50px;
}

p {
    margin-bottom: 0;
}
.section_top{ padding-top:50px; }
.section_bottom{ padding-bottom:50px;}


body{
	font-family: proxima-nova, sans-serif;
	font-style: normal;
	font-weight: 400;
	color:#001916;
}

h1{
	margin-bottom: 0;
}

#heroSlider {
  width: 100%;
  height: 100%;
  background:#001916;
}
.slide {
  background: #fff;
  width: 100%;
  width: 100vw;
  height: 100%;
  height: 100vh;
  outline: 0 !important;
}
.hero-1 {
  background-image:url("../img/header-index.jpg");
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center;
  position:fixed;
}

.hero_message{
	position:absolute;
	top:50%;
	text-align:center;
	width:100%;
	color:#fff;
	font-size:36px;
	-ms-transform: translate(0,-50%); /* IE 9 */
	-webkit-transform: translate(0,-50%); /* Safari */
	transform: translate(0,-50%);  
}


.btn{
	font-family: proxima-nova, sans-serif;
	font-style: normal;
	font-weight: 300;
	color:#da7c5a;
	text-transform:uppercase;
	padding:8px 20px;
	border:1px solid #da7c5a;
	font-size:20px;
	letter-spacing:4px;
	position:relative;
}
a.btn:hover, a.btn:focus{ background:#d87c5a;
	color:#fff !important;}


/********************/
a.btn span{
	
}
/*********************/




.slide h2{
	font-size:40px;
	color:#fff;
	font-family: freight-micro-pro, serif;
	font-style: normal;
	font-weight: 700;
	line-height:1;
	margin:60px 0;
	position: relative;
    display: inline-block;
}


.small_object{
	font-size:11px;
}


.hero_message .box_text{
	padding-bottom: 0;
	padding-top: 0;
}

/***************************************************************************loading  ****************************************/

#loading, #rotate {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #fff;
}

#loading{
  z-index: 100000;
}
/* Loader 4 */
.loader-4 {
  height: 32px;
  width: 32px;
}
.loader-4::after {
  content: "";
  display: block;
  position: absolute;
  top: 0; left: 0;
  bottom: 0; right: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  background: #da7c5a;
  border-radius: 50%;
  -webkit-animation: loader-4-1 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
          animation: loader-4-1 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
}
@-webkit-keyframes loader-4-1 {
  0%   { -webkit-transform: scale(0); opacity: 0; }
  50%  { -webkit-transform: scale(1); opacity: 1; }
  100% { -webkit-transform: scale(0); opacity: 0; }
}
@keyframes loader-4-1 {
  0%   { transform: scale(0); opacity: 0; }
  50%  { transform: scale(1); opacity: 1; }
  100% { transform: scale(0); opacity: 0; }
}
.loader-4 span {
  display: block;
  position: absolute;
  top: 0; left: 0;
  bottom: 0; right: 0;
  margin: auto;
  height: 32px;
  width: 32px;
  -webkit-animation: loader-4-2 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
          animation: loader-4-2 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
}
@-webkit-keyframes loader-4-2 {
  0%   { -webkit-transform: rotate(0deg); }
  50%  { -webkit-transform: rotate(180deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes loader-4-2 {
  0%   { transform: rotate(0deg); }
  50%  { transform: rotate(180deg); }
  100% { transform: rotate(360deg); }
}
.loader-4 span::before,
.loader-4 span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0; left: 0;
  bottom: 0; right: 0;
  margin: auto;
  height: 12px;
  width: 12px;
  background: #da7c5a;
  border-radius: 50%;
  -webkit-animation: loader-4-3 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
          animation: loader-4-3 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
}
@-webkit-keyframes loader-4-3 {
  0%   { -webkit-transform: translate3d(0, 0, 0) scale(1); }
  50%  { -webkit-transform: translate3d(-16px, 0, 0) scale(.5); }
  100% { -webkit-transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes loader-4-3 {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(-16px, 0, 0) scale(.5); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}
.loader-4 span::after {
  -webkit-animation: loader-4-4 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
          animation: loader-4-4 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
}
@-webkit-keyframes loader-4-4 {
  0%   { -webkit-transform: translate3d(0, 0, 0) scale(1); }
  50%  { -webkit-transform: translate3d(16px, 0, 0) scale(.5); }
  100% { -webkit-transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes loader-4-4 {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(16px, 0, 0) scale(.5); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}
#loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #001916;
  z-index: 9999999;
}

/***************************  PARALLAX  ******************/

.parallax {
    /* Full height */
    height: 100%;
	min-height: 100vh;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax_img1{
    background-image:url(../img/interior-1.jpg);
}
html, body {height: 100%}


/*********************************************************************************************************************/

#content_page{
	background:#fff;
	width:100%;
	min-width:100%;
	position:relative;
}
.section{
	
}
.box_text{
	text-align:center;
	padding-bottom:48px;
	padding-top:48px;
}
.box_text h1{
	color:#d87c5a;
	font-size:48px;
	text-transform:uppercase;
	font-family: freight-micro-pro, serif;
	font-style: normal;
	font-weight: 700;
	line-height:1;
	display: inline-block;
	-webkit-transition: all 300ms ease-in-out;
     -moz-transition: all 300ms ease-in-out;
          transition: all 300ms ease-in-out;
}

.box_text .subtitle, .slider_section .subtitle{
	text-transform:uppercase;
	font-size:18px;
	color:#001916;
	letter-spacing:10px;
	font-family: proxima-nova, sans-serif;
	font-style: normal;
	font-weight: 400;
	margin:25px auto;
}

.box_text h1.title_header{
	font-size: 60px;
    line-height: 65px;
}

.slider_section{
	text-align:center;
}

.slider_section .subtitle{
	margin:35px auto 25px auto;
}

.box_text .paragraph{
	max-width: 80%;
    margin-right: auto;
    margin-left: auto;
}

.slider_section .paragraph{
	max-width: 90%;
    margin-right: auto;
    margin-left: auto;
}

.tbl .box_text .paragraph {
    max-width: 60%;
    margin-right: auto;
    margin-left: auto;
}

.box_text_interior{
	text-align:center;
}

.box_text_interior h1{
}

.menu-desktop li.to_btn a{
	color:#da7c5a;
}


.toMobile a.mPS2id-highlight {

	border-bottom:none;
	padding-bottom:9px;
  
}

a.mPS2id-highlight {

	border-bottom:1px solid #d87c5a;
	padding-bottom:7px;
  
}

.to_btn a.mPS2id-highlight {

	/*border-bottom:1px solid #d87c5a;*/
	background:#d87c5a;
	color:#fff !important;
	
  
}


/***************   MENU   **************/
	

.logo_dev_arch{
	margin:40px auto 10px auto;
}

.team{
	 margin: 0 0 50px 0;
    font-size: 48px;
    text-transform: uppercase;
    font-family: freight-micro-pro, serif;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    display: inline-block;
    text-align: center;
    width: 100%;
}


/************************************************     HEADER    *****************************************/


/* ============================================== PLUGINS
*/

/*jQuery Images Compare - https://github.com/sylvaincombes/jquery-images-compare*/

/* Images compare main container */
.images-compare-container {
    display: inline-block;
    position: relative;
    overflow: hidden;
}

/* Images compare front element */
.images-compare-before {
    will-change: clip;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

/* Images compare back element */
.images-compare-after {
    pointer-events: none;
}

/* Responsive image settings */
.images-compare-before img, .images-compare-after img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Separator (thin vertical blank line) */
.images-compare-separator {
    position: absolute;
    background: #da7c5a;
    height: 100%;
    width: 4px;
    z-index: 4;
    left: 0;
    top: 0;
}

/* Drag handle (circle) */
.images-compare-handle {
    height: 38px;
    width: 38px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -19px;
    margin-top: -19px;
    /*border: 3px solid white;
    -webkit-border-radius: 1000px;
    -moz-border-radius: 1000px;
    border-radius: 1000px;
    -webkit-box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
    box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);*/
    z-index: 3;
    background: #da7c5a;
    cursor: pointer;
}

/* Drag handle arrows */
.images-compare-left-arrow, .images-compare-right-arrow {
    width: 0;
    height: 0;
    border: 6px inset transparent;
    position: absolute;
    top: 50%;
    margin-top: -6px;
}

.images-compare-left-arrow {
    border-right: 6px solid #fff;
    left: 50%;
    margin-left: -17px;
}

.images-compare-right-arrow {
    border-left: 6px solid #fff;
    right: 50%;
    margin-right: -17px;
}

/* Label */
.images-compare-label {
	font-family: inherit;
	/*text-transform: uppercase;*/
	/* font-weight: bold;*/
	position: absolute;
	bottom: 10px;
	left: 10px;
	z-index: 1;
	color: #001916;
	font-size:12px;
	line-height: 1;
	/*color: rgb(0, 0, 0);
	color: rgba(0, 0, 0, 0.4);
	background: rgb(255, 255, 255);
	background: rgba(255, 255, 255, 0.7);*/
	/*padding: 10px;*/
	/*border-radius: 5px;*/
	pointer-events: none;
	display: none;
	font-family: minion-pro, serif;
	font-style: italic;
	font-weight: 400;
}
.slider-small-text{
	font-size:11px;
}

.images-compare-container .images-compare-label {
    display: inherit;
}

.images-compare-before .images-compare-label {
    left: 10px;
}

.images-compare-after .images-compare-label {
    left: auto;
    right: 10px;
}

.box-to-left{
	position:relative;
	left: -200px;
	
}



.slider_page{
	max-width:80%;
	margin:48px auto 0 auto;
}

.max_width_page{
	max-width:80%;
}

.slider_page2 img{
	margin-left: auto;
    margin-right: auto;
}

/***************************************  REGISTER SECTION  ********************************/

.register_section{ background:#062320;}
.register_section .footer {
/*  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
*/
  text-align: center;
  position:relative;
  bottom:0;
  left:0;
  
}

.register_section .logo_footer{
	text-align:center;
	margin-top:95px;
}

.register_section .heigh100{
	height:100% !important;
}


.bg_footer{
	background:url(../img/bg-footer.png) center center no-repeat;
	background-size:cover;
	position:absolute;
	bottom:0;
	right:0;
	left:0;
	height:200px;
}



.register_section #fullpage{
	height:100%;
}

.register_section h1{
	font-family: freight-micro-pro, serif;
	font-style: normal;
	font-weight: 700;
	font-weight:bold;
	font-size:32px;
	text-align:center;
	letter-spacing:3px;
	margin-bottom:0;
	line-height:1px;
	line-height: 36px;
}

.number_ph{
	font-family: freight-micro-pro, serif;
	font-style: normal;
	font-weight: 700;
	font-weight:400;
	font-size:40px;
	text-align:center;
	letter-spacing:5px;
	display:inline-block;
	font-weight:bold;
}

.number_ph a{
	color:#fff;
	text-decoration:none;
}

.orange{
	color:#da7c5a;
}
.box_number{
	display:inline-block;
	margin:4% 0 2% 0;
	text-align:center;
}

.formSubmit, .formSubmit:hover, .formSubmit:focus, .formSubmit:active{
	background:#062320;
	color:#fff;
	border:1px solid #fff;
	text-transform:uppercase;
	padding:15px 50px;
	font-family: freight-micro-pro, serif;
	font-style: normal;
	font-weight: 700;
	font-size:16px;
	letter-spacing:3px;
	text-align:center;
	border-radius:0;
}

.button_align{
	position: relative;bottom: -100px;z-index: 99;
}
[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'], textarea {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 3.4rem;
    margin: 0 0 1rem;
    padding: 0.5rem;
    border: 1px solid #da7c5a;
    border-radius:0;
    background-color: #062320;
    box-shadow:none;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.5;
    color: #fff;;
    transition:none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	letter-spacing:2px;
	font-family: 'Lato', sans-serif;
}

[type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus, textarea:focus {
    outline: none;
    border: 1px solid #da7c5a;
    background-color: #062320;
    box-shadow:none;
    transition: none;
}


select {
    height: 3.4rem;
    margin: 0 0 1rem;
    padding: 0.5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #da7c5a;
    border-radius: 0;
    background-color: #062320;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.5;
    color: #fff;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: #da7c5a'></polygon></svg>");
    background-origin: content-box;
    background-position: right -1rem center;
    background-repeat: no-repeat;
    background-size: 9px 6px;
    padding-right: 1.5rem;
    transition:none;
	letter-spacing:2px;
	font-family: 'Lato', sans-serif;
	background-size: 15px;
}



select:focus {
    outline: none;
    border: 1px solid #da7c5a;
    background-color: #062320;
    box-shadow: none;
    transition: none;
}

/* Autoselection for Chrome browsers */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  background-color:#062320 !important;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #fff !important;
}


::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #fff !important;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #fff !important;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #fff !important;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #fff !important;
}

.wrap_btn{
	text-align:center;
	position:relative;
}
.footer_logo{
	/*position:absolute;
	top:20%;*/
}
.center_div_interior {
    left: 50%;
    width: 100%;
    position: absolute;
    top: 40%;
    transform: translate(-50%, 50%);
    transition: width 0.2s ease-in 0s;
    z-index: 99;
    text-align: center;
}

.center_div_logo{
	left: 50%;
	max-width: 50%;
	position: absolute;
	top: 40%;
	transform: translate(-50%, -50%);
	transition: width 0.2s ease-in 0s;
	z-index: 9;
}
#response p{
	color:#fff;
	font-size:11px;
	padding-top: 5px;
}


.slider-item span {
	position: absolute;
	bottom: 10px;
	right: 10px;
	z-index: 9999;
	color: #fff;
	font-family: minion-pro, serif;
	font-style: italic;
	font-weight: 400;
	font-size:12px;
}

.subtitle.white_c{ margin: 5px auto;}

.eppadding{ padding-top:50px; padding-bottom:50px;}




.msg_thanks p{
	color:#fff;
	text-align:center;
	font-size:18px;
}


/*********************************  MENU  ********************************/
/**********************************/

.shrink_li{
	    margin: 0 1.5% !important;
}

.max_wlogo{
	max-width:80%;
}

ul.menu-desktop {
	margin-left: 3rem;
	margin-bottom:0;
}
a.mPS2id-highlight {
    border-bottom: 1px solid #d87c5a;
    padding-bottom: 7px;
}

/***************************************    MENU HEADER    ***********************************/

#header{
	position:fixed;
	z-index: 99999;
	display:inline-block; 
	text-align:center;
	background:#001916;
	padding:15px 0;
	width:100%;
	margin-left: auto;
	margin-right:auto;
	
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	
}

#logo{
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}


.menu-desktop {
	margin-left: 0;
	width:100%;
}
.menu-desktop li{ 
	list-style:none; 
	display:inline-block; 
	text-align:center; 
	text-transform:uppercase;
		margin: 0 2.5%;
	position: relative;
    top: 0;
    left: 0;
    z-index: 999999;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	
}

.menu-desktop li a{ 
	letter-spacing: 3px;
	text-transform:uppercase;
	font-family: proxima-nova, sans-serif;
	font-style: normal;
	font-weight: 300;
	font-size:12px;
	color: #fff;
}
.to_logo{
	position:relative;
}
.menu-desktop .logo{
	position: relative;
    left: -6px;
    z-index: 999999;
	-webkit-transition: .5s all ease-out;
    -moz-transition: .5s all ease-out;
    transition: .5s all ease-out;
}

.active{
	 border-bottom:2px solid #da7c5a;
	  -webkit-transition: .5s all ease-out;
    -moz-transition: .5s all ease-out;
    transition: .5s all ease-out;
}  
   

#menu-in li.to_logo > a:before, #menu-in li.to_btn > a:before{
	position:relative;
	width:0;
	height: 0;
	bottom: 0;
	left: 0;
	background-color:transparent;
	visibility: hidden;
	-webkit-transform:none;
	transform: none;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	
}
#menu-in li.to_logo > a:hover:before, #menu-in li.to_btn > a:hover:before {
  visibility: hidden;
  -webkit-transform:none;
  transform:none;
}
   
#menu-in li > a:before {
 content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #da7c5a;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
#menu-in li > a:hover:before {
 visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}


#menu-in li.active > a:hover:before{ visibility:hidden; }


/****************************************	menu	**********************************************************/

.b-a, .bar, .bar:before, .bar:after {
  transition: all .25s;
  content: "";
  position: absolute;
  right: 0;
  height: 2px;
  width: 25px;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.95);
}

.menu-collapsed {
  transition: all .25s;
  position: fixed;
  top: 10px;
  right:9px;
  height: 36px;
  width: 36px;
  z-index: 1;
  cursor: pointer;
}
.menu-collapsed ul {
  transition: all 0s;
  position: fixed;
  right: -9000px;
}

.bar {
  position: fixed;
  right: 15px;
  top: 24px;
}
.bar:before {
  top: -6px;
}
.bar:after {
  top: 6px;
}

.b-a-expanded, .menu-expanded .bar:before, .menu-expanded .bar:after {
  transition: all .25s;
  top: -0px;
}

.menu-expanded {
  transition: all .25s;
  text-align: center;
  line-height: 200px;
  height: 100%;
  width: 100%;
  border-radius: 0px;
  top: 0;
  right: 0;
  background-color: rgba(0, 25, 22, 1);
  z-index:99999999;
  overflow:scroll;
}
.menu-expanded ul {
  transition: all 0s;
  position: relative;
  right: 0;
  top:50px;
  z-index: 2;
  list-style:none;
}
.menu-expanded a {
	transition: all .15s;
	text-decoration: none;
	font-size: 18px;
	padding: 5px;
	color: #FFF;
	display: block;
	text-transform: uppercase;
	margin-top: 5px;
}
.menu-expanded a:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transition: all .15s;
  letter-spacing: 2px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.menu-expanded .bar {
  background-color: transparent;
  transition: all .25s;
}
.menu-expanded .bar:before {
  transform: rotate(45deg);
}
.menu-expanded .bar:after {
  transform: rotate(-45deg);
}


nav ul {
	margin: 0 2.0%;
}




.toMobile a.mPS2id-highlight {

	border-bottom:none;
	padding-bottom:9px;
  
}

.to_btn a.mPS2id-highlight {

	border-bottom:none;
	padding-bottom:9px;
  
}



#left_bar{
	position:fixed;
	top:40%;
	left:3%;
	z-index:999;
}


#right_bar{
	position:fixed;
	top:40%;
	right:3%;
	z-index:999;
}

/*************************************************************************/

/***********************************/



/* no less than 1024 */

@media screen and (max-width : 1024px)
 and (orientation: portrait)
 and (-webkit-min-device-pixel-ratio: 1.5) {
	.displaNot_less1024{
		display: none !important;
	}
	.displayLess1024{
		display:block !important;
	}
	
}

@media screen and (max-width : 1024px){
	.displaNot_less1024{
		display: none !important;
	}
	.displayLess1024{
		display:block !important;
	}
	
	
}

@media screen and (min-width : 1025px){
	.displaNot_less1024{
		display: block !important;
	}
	
	.displayLess1024{
		display:none !important;
	}
	
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */


/*Small screens Define mobile styles */

@media only screen and (max-width: 481px ) {
	
	.slide h2 {
    font-size: 20px;
    color: #fff;
    font-family: freight-micro-pro, serif;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    margin: 30px 0;
    position: relative;
    display: inline-block;
}
.bar {
    position: fixed;
    right: 15px;
    top: 25px;
}
.max_wlogo{
	max-width: 45%;
}

#header {
    height: 68px;
    padding: 10px 0;
}
}


/* max-width 640px, mobile-only styles, use when QAing mobile issues */
@media only screen and (max-width: 640px) {
		.tbl .box_text .paragraph, .box_text .paragraph {
    max-width: 100%;

}
.box_text h1{ font-size:32px;}
.no_pad{
	padding-left:15px;
	padding-right:15px;
}

.pad_left{
	padding-left:0;
	padding-right:15px;
}
.pad_right{
	padding-left:15px;
	padding-right:0;
}

.max_width_page{ max-width:100%;}
.slider_section .paragraph {
    max-width: 100%;

}
.slick-prev, .slick-next{
	display:none !important;
}
.slider_page {
    max-width: 95%;
}
.slider_section {
	/*margin-bottom:30px;*/
	margin-bottom:0;
}
.section_pad {
    padding-top: 0;
    padding-bottom: 20px;
}
.box_text {
    text-align: center;
    padding-bottom: 30px;
    padding-top: 30px;
}
#content_page{ overflow:hidden; }

.container_burger {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}
.box_text h1.title_header {
    font-size: 40px;
    line-height: 45px;
}
.section_bottom {
    padding-bottom: 0;
}
}


/* max-width 640px, mobile-only styles, use when QAing portrait mobile issues */
@media only screen and (max-width: 640px) and (orientation:portrait) {

}

/* max-width 640px, mobile-only styles, use when QAing landscape mobile issues */
@media only screen and (max-width: 640px) and (orientation:landscape) {

}

/*Only iPhone 4/4S (both: landscape and portrait)*/
@media only screen
and (min-device-width: 320px)
and (max-device-width: 480px)
and (-webkit-device-pixel-ratio: 2)
and (device-aspect-ratio: 2/3)
and (orientation:portrait) {

}

@media only screen
and (min-device-width: 320px)
and (max-device-width: 480px) 
and (orientation: landscape){
	#message_header{ display:none; }
.hero_message { top: 55%; }
.max_wlogo {
    max-width: 35% !important;
}
}


/*Medium screens min-width 641px, medium screens */
@media only screen and (min-width: 641px) {

}



/* iphone X landscape */
@media only screen
and (min-device-width: 375px)
and (max-device-height: 812px)
and (-webkit-device-pixel-ratio: 3)
and (orientation: landscape) {
#message_header{ display:none; }
.hero_message { top: 55%; }

}


/* iphone X portrait */
@media only screen
and (min-device-width: 375px)
and (max-device-height: 812px)
and (-webkit-device-pixel-ratio: 3)
and (orientation: portrait) {

}



/* iPhone 6, 7, 8 Landscape */
@media only screen 
and (min-device-width: 375px) 
and (max-device-width: 667px) 
and (-webkit-min-device-pixel-ratio: 2)
and (orientation: landscape) {

}


/* iPhone 6, 7, 8 portrait */
@media only screen 
and (min-device-width: 375px) 
and (max-device-width: 667px) 
and (-webkit-min-device-pixel-ratio: 2)
and (orientation: portrait) {

}


/* iPhone 6+, 7+, 8+ landscape */
@media only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: landscape) {

}

/* iPhone 6+, 7+, 8+ portrait */
@media only screen 
  and (min-device-width: 414px) 
  and (max-device-width: 736px) 
  and (-webkit-min-device-pixel-ratio: 3)
  and (orientation: portrait) {

}

/* min-width 641px and max-width 1024px, use when QAing tablet-only issues */
@media only screen
and (min-width: 641px)
and (max-width: 1024px) {

}

/* min-width 641px and max-width 1024px, use when QAing tablet-only landscape issues */
@media only screen
and (min-width: 641px)
and (max-width: 1024px)
and (orientation: landscape) {

}

/* min-width 641px and max-width 1024px, use when QAing tablet-only portrait issues */
@media only screen
and (min-width: 641px)
and (max-width: 1024px)
and (orientation: portrait) {

}

@media only screen
and (min-width: 641px)
and (max-width: 1024px) {
	
	h1, .box_text h1{
		font-size:32px;
	}
	
	.tbl .box_text .paragraph {
    max-width: 90%;
	}
	
	.no_pad_1024{
		padding-bottom:0;
	}


}

@media only screen and (max-width: 1024px) {
	.section_pad {
		padding-top: 0;
		padding-bottom: 50px;
	}

	.slider_section{  padding-bottom: 50px;}
	.button_align {
		bottom: -10px;
	}
	.center_div_interior{ top: 0;}
.dp100{ max-width:100%; width:100%;}
}


/* iPad Pro Portrait and Landscape */
@media only screen 
  and (min-device-width: 1024px) 
  and (max-device-width: 1366px) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
}

/* iPad Pro Landscape */
@media only screen 
  and (min-device-width: 1024px) 
  and (max-device-width: 1366px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
}

/* iPad Pro Portrait */
@media only screen 
  and (min-device-width: 1024px) 
  and (max-device-width: 1366px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
}


/*10" macbook*/
@media only screen
and (min-width: 600px)
and (max-width: 1024px) {

}


/*13" macbook*/
@media only screen
and (min-width: 800px)
and (max-width: 1024px) {

}


/*Large screens min-width 1025px, large screens*/
@media only screen
and (min-width: 1025px) {
    
}


/*15" macbook*/
@media screen
and (min-width: 768px)
and (max-width: 1366px) {

}


/*19" laptop*/
@media screen
and (min-width: 900px)
and (max-width: 1440px) {

}

/*20" laptop*/
@media screen
and (min-width: 900px)
and (max-width: 1600px) {

}


/*22" laptop*/
@media screen
and (min-width: 1050px)
and (max-width: 1680px) {

}

/* min-width 1024px and max-width 1440px, use when QAing large screen-only issues */
@media only screen
and (min-width: 1024px)
and (max-width: 1440px) { 

}

@media only screen
and (min-width: 1024px)
and (max-width: 1380px) {
	 .menu-desktop li { margin: 0 0.8%}
	 ul.menu-desktop {
    margin-left: 3.2rem;
}
	 .shrink_li { margin: 0 0.8% !important; }

h1, .box_text h1{
		font-size:32px;
	}
	

	.tbl .box_text .paragraph {
    max-width: 90%;
	}
	.slider_section .paragraph {
    max-width: 100%;
	}

}


@media only screen
and (min-width: 1023px)
and (max-width: 1200px) {

}



@media only screen
and (min-width: 1201px)
and (max-width: 1440px) {
	 .menu-desktop li { margin: 0 1.8%}
	 

}


/* XLarge screens min-width 1441px, xlarge screens */
@media only screen
and (min-width: 1441px) {

}

/* min-width 1441px and max-width 1920px, use when QAing xlarge screen-only issues */
@media only screen
and (min-width: 1441px)
and (max-width: 1920px) {

}


/* min-width 1921px, xxlarge screens */
@media only screen
and (min-width: 1921px) {

} 


@media screen
and (orientation: portrait) {
 
}

@media screen
and (orientation: landscape) {
  .menu_mobile li {
    margin: 10px 0;
}
}


@media print,
       (-o-min-device-pixel-ratio: 5/4),
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}





