/*------------------------------------------------------------------
[Project details]

Author: Jacques Peacock
Author URI: http://jacquespeacock.com
Last change:    21/9/2016

[Table of contents]
1. RESET / #reset
-------------------------------------------------------------------*/

@charset "UTF-8";

/*------------------------------------------------------------------
[1. RESET / #reset]
*/
/* 
    http://meyerweb.com/eric/tools/css/reset/ 
    v2.0 | 20110126
    License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; }
* {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}
*:active {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
       -moz-tap-highlight-color: rgba(0,0,0,0);
            tap-highlight-color: rgba(0,0,0,0);
}
a:link, input { 
    -webkit-tap-highlight-color: rgba(0,0,0,0); 
}


/*------------------------------------------------------------------
[1. FONT FACE / #font-face]
*/
@import url("//hello.myfonts.net/count/32c2b4");

@font-face {
  font-family: 'Covington Regular';
  src: url('../fonts/covington-regular.eot');
  src: url('../fonts/covington-regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/covington-regular.woff2') format('woff2'),
    url('../fonts/covington-regular.woff') format('woff'),
    url('../fonts/covington-regular.ttf') format('truetype'),
    url('../fonts/covington-regular.svg#CovingtonRegular') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Covington Bold';
  src: url('../fonts/covington-bold.eot');
  src: url('../fonts/covington-bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/covington-bold.woff2') format('woff2'),
    url('../fonts/covington-bold.woff') format('woff'),
    url('../fonts/covington-bold.ttf') format('truetype'),
    url('../fonts/covington-bold.svg#CovingtonBold') format('svg');
  font-weight: normal;
  font-style: normal;
}

/**
 * @license
 * MyFonts Webfont Build ID 3326644, 2017-01-03T10:18:20-0500
 * 
 * The fonts listed in this notice are subject to the End User License
 * Agreement(s) entered into by the website owner. All other parties are 
 * explicitly restricted from using the Licensed Webfonts(s).
 * 
 * You may obtain a valid license at the URLs below.
 * 
 * Webfont: ThirstyScriptBold by Yellow Design Studio
 * URL: http://www.myfonts.com/fonts/yellow-design/thirsty-script/bold/
 * 
 * License: http://www.myfonts.com/viewlicense?type=web&buildid=3326644
 * Licensed pageviews: 500,000
 * Webfonts copyright: Copyright (c) 2012 by Yellow Design Studio. All rights reserved.
 * 
 * © 2017 MyFonts Inc
*/
@font-face {
  font-family: 'Thirsty Script Bold';
  src: url('../fonts/32C2B4_1_0.eot');
  src: url('../fonts/32C2B4_1_0.eot?#iefix') format('embedded-opentype'),
       url('../fonts/32C2B4_1_0.woff2') format('woff2'),
       url('../fonts/32C2B4_1_0.woff') format('woff'),
       url('../fonts/32C2B4_1_0.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


/*------------------------------------------------------------------
[1. GENERAL / #general]
*/
body {
  background: #222;
  color: #fff;
  font-family: 'Covington Regular', "Open Sans", sans-serif;
  font-size: 18px;
  width: 100%;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.overlay-open {
  overflow: hidden;
}

body.overlay-open header {
  padding-right: 15px;
}

/**, *:hover, *:active, *:focus {
  -webkit-transition: all 0.2s;
     -moz-transition: all 0.2s;
       -o-transition: all 0.2s;
          transition: all 0.2s;
}*/

section ol.summary {
  list-style-type: lower-alpha;
  margin-bottom: 25px;
}
section ol.summary li {
  margin: 0 0 10px 20px;
  line-height: 25px;
}

#loading-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
}
#loading-overlay img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -50px;
    margin-top: -50px;
}

/*------------------------------------------------------------------
[1. BUTTONS / #buttons]
*/
.btn {
  font-family: 'Covington Regular', "Open Sans", sans-serif;
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 2px solid transparent;
  white-space: nowrap;
  padding: 8px 16px 6px 16px;
  font-size: 16px;
  line-height: 1.42857143;
  border-radius: 3px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn:hover,
.btn:active, 
.btn:focus,
.btn.focus {
  color: #333333;
  text-decoration: none;
  outline: 0;
}

.btn-lg {
  font-size: 20px;
  line-height: 1.3333333;
}

.btn-md {
  padding: 12px 18px 10px 18px;
  font-size: 18px;
  line-height: 1.3333333;
}

.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-thin {
  padding: 0px 25px;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 5px;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

.btn-pill {
    border-radius: 30px;
}

.no-p {
  padding: 0 !important;
}
.p-20 {
  padding: 20px;
}
.p-15 {
  padding: 15px;
}
.p-30 {
  padding: 30px;
}
.p-lr-15 {
  padding-left: 15px;
  padding-right: 15px;
}
.p-tb-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}
.p-tb-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}
.p-tb-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}
.no-m {
  margin: 0 !important;
}
.m-t-0 {
  margin-top: 0 !important;
}
.m-t-5 {
  margin-top: 5px !important;
}
.m-b-0 {
  margin-bottom: 0 !important;
}
.m-b-5 {
  margin-bottom: 5px;
}
.m-b-10 {
  margin-bottom: 10px !important;
}
.m-l-10 {
  margin-left: 10px !important;
}
.m-r-15 {
  margin-right: 15px !important;
}
.m-r-20 {
  margin-right: 20px !important;
}

.btn-default {
  color: #333333;
  background-color: #fff;
  border-color: #fff;
}

.btn-default:hover,
.btn-default:active, 
.btn-default:focus {
  color: #333333 !important;
  background-color: #e6e6e6;
  border-color: #e6e6e6;
}

.btn-primary {
  color: #ffffff !important;
  background-color: #788a58;
  border-color: #788a58;
}

.btn-primary:hover, 
.btn-primary:active, 
.btn-primary:focus {
  color: #ffffff !important;
  background-color: #6b7d4a;
  border-color: #6b7d4a;
}

.btn-primary-dark {
  color: #ffffff !important;
  background-color: #556140;
  border-color: #556140;
}

.btn-primary-dark:hover, 
.btn-primary-dark:active, 
.btn-primary-dark:focus {
  color: #ffffff !important;
  background-color: #475333;
  border-color: #475333;
}

.btn-secondary {
  color: #444 !important;
  background-color: #ccc;
  border-color: #ccc;
}

.btn-secondary:hover, 
.btn-secondary:active, 
.btn-secondary:focus {
  color: #444;
  background-color: #ccc;
  border-color: #ccc;
}

.btn-black {
  color: #fff !important;
  background-color: #222;
  border-color: #222;
}

.btn-black:hover, 
.btn-black:active, 
.btn-black:focus {
  color: #fff;
  background-color: #1b1a1a;
  border-color: #1b1a1a;
}

.btn-grey {
  color: #333333;
  background-color: #ddd;
  border-color: #ddd;
}

.btn-grey:hover,
.btn-grey:active, 
.btn-grey:focus {
  color: #333333 !important;
  background-color: #ccc;
  border-color: #ccc;
}

/*------------------------------------------------------------------
[1. LAYOUT / #layout]
*/
section, footer {
    padding: 80px 0;
    position: relative;
    width: 100%;
}
.indent-top {
  margin-top: -240px;
  background: #fff;
  padding: 50px 15px 0 15px;
}
.bg-highlight {
  background: #788a58 !important;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
}
.bg-highlight-light {
  background: #a2bba2 !important;
}
.bg-grey {
    background: #eaeaea;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
}
.bg-white {
    background: #fff;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
}
.bg-grey h2 {
  color: #333;
}
.bg-image {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
}
.bg-coal {
    background: #191919;
}
.bg-black-transparent {
  background-color: rgba(0, 0, 0, 0.7);
  display: inline-block;
  width: 100%;
}
.bg-black-light-transparent {
  background-color: rgba(0, 0, 0, 0.6);
  display: inline-block;
  width: 100%;  
}
.center-block {
  float: none !important;
}
.table {
  display: table;
}
.cell {
    display: table-cell;
    vertical-align: middle;
}
.p-b-n {
  padding-bottom: 0;
}
.m-b-15 {
  margin-bottom: 15px;
}

hr {
  border-top: 2px solid #fff;
  margin: 20px 0;
}

/*------------------------------------------------------------------
[1. HEADER / #header]
*/
header {
    background: #788a58;
    position: fixed;
    top: 0;
    width: 100%;
    display: inline;
    -webkit-transition: all 0.3s;
       -moz-transition: all 0.3s;
         -o-transition: all 0.3s;
            transition: all 0.3s;
    padding: 12px 0;
    outline-offset: 0px;
    outline: 0px;
    z-index: 200;
    height: 75px;
}

header.fixed-open, #signup.fixed-open {
    transform: translate3d(-260px, 0px, 0px);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

header .container {
  padding: 0;
}

header .logo {
  width: 155px;
  height: auto;
  margin: 1px 6.5% 0 0;
  outline-offset: 0px;
  border: none;
  outline: 0px;
}
header .center-block .logo {
  margin-right: 0;
}
header .logo.small {
  width: 80px;
}
header a:last-child .logo {
  margin-right: 0;
}

header .col-lg-4, header .col-lg-8 {
  padding: 0;
}
header .col-lg-4 {
  width: 466px;
}
header .col-lg-8 {
  width: 70.666667%;
}

@media (max-width: 620px) {
  header .col-lg-4 {
    width: 60%;
  }
}

@media (max-width: 1350px) {
  header .col-lg-8 {
    width: auto !important;
  }
}

@media (max-width: 1350px) {
  header .visible-lg {
      display: none !important;
  }
  header .hidden-lg {
      display: block !important;
  }
}

header nav {
    text-align: right;
}

header .mobile .phone {
  font-size: 28px;
  margin-right: 10px;
  position: relative;
  top: -2px;
}

header nav ul {
    margin: 13px 0 0 0;
    padding-left: 0;
}

header i.fa-phone {
  color: #fff;
  font-size: 19px;
  cursor: pointer;
  position: relative;
  top: 3px;
}

header nav li {
  display: inline-block;
  font-size: 19px;
  letter-spacing: 1px;
  margin-top: 0;
  position: relative;
  text-transform: uppercase;
}

header nav li a:hover, header nav li a:active, header nav li a.active {
  color: #373737;
}
.slideout-menu li a.active {
  color: #788a58;
}

header nav li:after, .circle {
  content: "";
  width: 5px;
  height: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: #fff;
  text-align: center;
  margin: -3px 8px 0 8px;
  vertical-align: middle;
  display: inline-block;
}

header nav li a {
  color: #fff;
}

header nav ul li ul {
  background: #788a58;
  position: absolute;
  margin: 0 0 0 -53px;
  top: 45px;
  width: 180px;
}

header nav ul li ul li {
  width: 100%;
}

header nav ul li ul li a {
  display: block;
  padding: 15px 10px;
  color: #444;
}

header nav ul li ul li:hover a {
  background: #F7F7F7;
}

header nav .dropdown {
  display: none;
  text-align: center;
}

header nav .dropdown.visible {
  display: block; 
}

header nav .dropdown li:after {
  display: none;
  height: 0px;
  margin: 0;
  width: 0px;
}


@media (max-width: 1675px) {
  header .col-lg-8 {
    width: 63.666667%;
  }
  header nav li.hidden-lg {
    display: inline-block !important;
  }
  header nav li.hide-dropdown {
    display: none !important;
  }
}

header nav .caret {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 22px;
  margin-left: -22px;
  border-top: 5px solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  width: 0;
  height: 0;
}

.circle {
  width: 10px;
  height: 10px;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
  margin: -3px 0 0 0;
}
.circle.medium {
  -webkit-border-radius: 50px;
     -moz-border-radius: 50px;
          border-radius: 50px;
  height: 50px;
  line-height: 50px;
  width: 50px;
}
.circle.medium i {
  color: #333;
  font-size: 26px;
}
a.circle.medium:hover {
  background: #788a58;
}
a.circle.medium:hover i {
  color: #fff;
}

header nav li:last-child:after, header nav li.no-divider:after {
  background-color: transparent;
  display: block;
  margin: 0;
  width: 0;
}

header .menu-accent {
  font-size: 13px;
}

.inline-nav li {
  font-size: 20px;
  margin-left: 100px;
  cursor: pointer;
}

/* Minimalized menu */
header .minimalized {
    padding-bottom: 18px;
    background-color: #31353e;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    z-index: 200;
}

/* Mobile menu */
header .mobile-menu {
    position: fixed;
    background-color: #31353e;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2), 0 3px 6px rgba(0,0,0,0.23);
    top: 0px;
    right: 0;
    height: 100%;
    display: none;
    z-index: 1;
}

header .mobile-menu li {
    font-size: 11px;
}

header .mobile-menu .menu-accent a {
    color: #dbe8f1;
}

header .mobile-menu ul {
    padding: 0;
    padding-top: 70px;
    padding-bottom: 70px;
}

.hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
    margin: 0;
    padding: 15px 0 0 0;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity,-webkit-filter;
    transition-property: opacity,filter;
    transition-property: opacity,filter,-webkit-filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent
}

.hamburger:hover {
    opacity: .7
}

.hamburger-box {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 24px
}

.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    position: absolute;
    width: 35px;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
    border-radius: 0;
    background-color: #fff
}

header .hamburger:hover {
  opacity: 1;
}

header .hamburger:hover .hamburger-inner,
header .hamburger:hover .hamburger-inner:after,
header .hamburger:hover .hamburger-inner:before {
  background-color: rgba(255, 255, 255, 0.7);
}


.hamburger-inner:after, .hamburger-inner:before {
    display: block;
    content: ''
}

.hamburger-inner:before {
    top: -10px
}

.hamburger-inner:after {
    bottom: -10px
}

.hamburger .hamburger-inner {
    transition-timing-function: cubic-bezier(.55,.055,.675,.19);
    transition-duration: .1s
}

.hamburger .hamburger-inner:before {
    transition: top .1s .14s ease,opacity .1s ease
}

.hamburger .hamburger-inner:after {
    transition: bottom .1s .14s ease,-webkit-transform .1s cubic-bezier(.55,.055,.675,.19);
    transition: bottom .1s .14s ease,transform .1s cubic-bezier(.55,.055,.675,.19);
    transition: bottom .1s .14s ease,transform .1s cubic-bezier(.55,.055,.675,.19),-webkit-transform .1s cubic-bezier(.55,.055,.675,.19)
}

.hamburger.is-active .hamburger-inner {
    transition-delay: .14s;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.hamburger.is-active .hamburger-inner:before {
    top: 0;
    transition: top .1s ease,opacity .1s .14s ease;
    opacity: 0
}

.hamburger.is-active .hamburger-inner:after {
    bottom: 0;
    transition: bottom .1s ease,-webkit-transform .1s .14s cubic-bezier(.215,.61,.355,1);
    transition: bottom .1s ease,transform .1s .14s cubic-bezier(.215,.61,.355,1);
    transition: bottom .1s ease,transform .1s .14s cubic-bezier(.215,.61,.355,1),-webkit-transform .1s .14s cubic-bezier(.215,.61,.355,1);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.menu {
  display: none;
}
.slideout-menu {
  background: #222;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  width: 260px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: none;
}

.slideout-menu li {
  text-align: center;
}

.slideout-menu li a {
  padding: 15px 10px;
  display: block;
  color: #fff;
  font-size: 20px;
  border-bottom: 1px solid #555;
  text-transform: uppercase;
}

.slideout-menu li a.btn {
  padding: 12px 18px 10px 18px;
  font-size: 18px;
  display: inline-block;
  margin: 30px auto;
}

.slideout-panel {
  position: absolute;
  z-index: 0;
  top: 75px;
  width: 100%;
  /*will-change: transform;*/
}

.home .slideout-panel {
  height: 100%;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
  /*overflow: hidden;*/
  height: 100%;
}

.slideout-open .slideout-menu {
  display: block;
}
.slideout-menu { 
  left: auto; 
}


@media (max-width: 620px) {
  .image-section.image-section-full {
    height: auto !important;
  }
  .home .slideout-panel {
    height: auto !important;
  }
}


/*------------------------------------------------------------------
[1. SIGNUP / #signup]
*/
#signup {
  background: #323232;
  margin-top: 75px;
  padding: 8px 15px;
  position: relative;
  z-index: 1;

  -webkit-transition: all 0.3s;
       -moz-transition: all 0.3s;
         -o-transition: all 0.3s;
            transition: all 0.3s;
}

#signup p {
  display: inline-block;
  font-size: 20px;
  margin: 0 5px 0 0;
}

#signup .btn {
  font-size: 15px;
  margin-top: -1px;
}

#mce-responses .response, #option-error-response {
  border-radius: 18px;
  color: #000;
  padding: 10px;
  line-height: 24px;
}

#mce-responses #mce-success-response {
  background: rgb(253, 205, 115);
}

#mce-responses #mce-error-response, #option-error-response {
  background: rgb(253, 79, 79);
  color: #fff;
  display: none;
}
#option-error-response {
  margin-bottom: 10px;
}

@media (max-width: 600px) {
  #signup p {
    margin: 0 0 5px 0;
    display: block;
    line-height: 24px;
  }
}

@media (max-width: 620px) {
  header {
    height: 69px;
  }
  header .col-lg-4.no-menu {
    width: 100%;
  }
  header .logo {
      width: 150px;
  }
  header .center {
    text-align: center;
    margin: 0 auto;
    display: block;
  }
  header .logo {
    margin-right: 0;
  }
  .hamburger {
    padding: 11px 0 0 0;
  }
  .slideout-panel {
    top: 69px;
  }
  #signup {
    margin-top: 69px;
  }
  .hide-mobile {
    display: none;
  }
}

@media (max-width: 620px) {
  /*.image-section.col-lg-8 {
    height: 540px !important;
  }*/
  .image-section-full .info .table {
    height: 300px !important;
  }
  .image-section .info.fade, .image-section .info.fade .table {
    height: 100% !important;
  }
  /*.slideout-panel {
    height: 100% !important;
  }*/
}

.bg-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.image-section {
  height: 100%;
}

.image-section, .image-section-half {
  background-color: #222;
  padding: 0 !important;
  position: relative;
  opacity: 1;
  -webkit-transition: all 0.3s;
     -moz-transition: all 0.3s;
       -o-transition: all 0.3s;
          transition: all 0.3s;
  z-index: 2;
}
.image-section.link:hover .bg-image, .image-section-half.link:hover .bg-image {
  opacity: 0.8;
  -webkit-transition: all 0.3s;
     -moz-transition: all 0.3s;
       -o-transition: all 0.3s;
          transition: all 0.3s;
}
.image-section .bg-image {
  height: 100%;

  width: 100%;
  position: fixed;
}

.image-section .fading-slider li {
  opacity: 0;
}

.bg-image.table {
  display: table;
  text-align: center;
  width: 100%;
}
.image-section .fading-slider {
  background-color: #333;
  height: 100%;
  position: fixed !important;
  width: 100%;
}

.image-section-full .fading-slider {
  position: absolute !important;
}
.image-section-full .bg-image {
  position: relative;
}
.col-lg-8 .bg-image {
  position: fixed;
}

.image-section .info {
  /*position: absolute;*/
  position: relative;
  /*top: 47px;*/
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}
.image-section .info .table {
    width: 100%;
    height: 100%;
    margin-top: 50px;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.image-section.image-section-full .info .table {
  position: absolute;
  margin-top: 0;
    /*margin-top: 0;
    -webkit-transform: none;
       -moz-transform: none;
            transform: none;*/
}
@media (max-width: 620px) {
  header nav ul {
    margin-top: 10px;
  }
  .image-section .info .table, .image-section.image-section-full .info .table {
    position: static;
    margin-top: 0;
    height: auto;
    -webkit-transform: none;
       -moz-transform: none;
            transform: none;
  }
}
.fade {
  background: -moz-linear-gradient(top, rgba(0,0,0,0) 50%, rgb(0,0,0) 100%);
  background: -webkit-linear-gradient(top, rgba(0,0,0,0) 50%,rgb(0,0,0) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,0) 50%,rgb(0,0,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#80000000',GradientType=0 );
  height: 100%;
  position: fixed;
  left: 0;
  width: 100%;
}
.image-section .info .table {
  padding: 30px 0;
}
.image-section-full .info .table {
  padding: 0;
}

.info p.large {
  font-size: 36px;
  line-height: 38px;
}
.info hr {
  margin: 15px 0;
}

.info .content-small {
    width: 580px;
}

@media (max-width: 620px) {
  .info .content-small {
    width: 100%;
  }
}

@media (max-width: 620px) {

  .image-section-half .bg-image.table {
    height: 300px !important;
  }

}

/*------------------------------------------------------------------
[1. UTILITY / #utility]
*/
.float-left {
    float: left;
}

.float-right {
    float: right;
}

.float-none {
    float: none;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.text-quote {
    font-family: Georgia, serif;
}

.align-top {
    vertical-align: top;
}

.align-middle {
    vertical-align: middle;
}

.align-bottom {
    vertical-align: bottom;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.position-absolute {
    position: absolute;
}

.position-relative {
    position: relative;
}

.position-fixed {
    position: fixed;
}

.hide {
    display: none;
}

.invisible {
    visibility: hidden;
}

.text-medium {
    font-weight: 600;
}

.text-bold {
    font-weight: 700;
}

.text-italic {
    font-style: italic;
}

.display-inline-block {
    display: inline-block;
}

.center-image {
    display: block;
    margin: 0 auto;
}

.full-width {
    width: 100%;
}

.line-height {
    line-height: 1.65;
}

.small-text {
    font-size: 70%;
}

.no-overflow {
    overflow: hidden;
}

.display-flex {
    display: flex;
}
@media (max-width: 992px) { 
  .display-flex {
    display: block;
    margin-bottom: 15px;
  }
}

/*------------------------------------------------------------------
[1. TEXT / #text]
*/
h1, h2, h3, h4, h5, h6, .md-modal h2 {
    font-family: 'Thirsty Script Bold', 'Open Sans', sans-serif;
    margin: 0 0 20px 0;
    line-height: 1;
    text-rendering: optimizeLegibility;
    color: #fff;
    font-weight: 700;
    -webkit-text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.9);
       -moz-text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.9);
            text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.9);
}

h1 {
    font-size: 40px;
    line-height: 53px;
}
@media (max-width: 600px) { 
  h1 {
    font-size: 34px;
    line-height: 46px;
  }
}

h2, .md-modal h2, .info .bg-black-transparent h2 {
    font-size: 28px;
    line-height: 40px;
}

.info h2 {
    font-size: 50px;
    line-height: 60px;
}
.info h3 {
    font-size: 36px;
    line-height: 46px;
}

@media (max-width: 600px) { 
  h2, .md-modal h2 .info .bg-black-transparent h2 {
      font-size: 28px;
      line-height: 36px;
  }
  .info h2 {
      font-size: 38px;
      line-height: 44px;
  }
  .info h3 {
      font-size: 28px;
      line-height: 34px;
  }
}

.md-modal h2 {
  text-shadow: none;
  font-size: 30px;
}

h3 {
    font-size: 22px;
    line-height: 32px;
    margin: 0 0 10px 0;
}

h4 {
    font-size: 16px;
}

h5 {
    font-size: 15px;
}

h6 {
    font-size: 14px;
}

h1.highlight:before, h2.highlight:before, h1.highlight:after, h2.highlight:after {
  content: "";
  display: inline-block;
  height: 35px;
  width: 68px;
}
h1.highlight:before, h2.highlight:before {
  background: url('../images/icons/ornament-left.png') no-repeat;
  margin: 0 15px -5px 0;
}
h1.highlight:after, h2.highlight:after {
  background: url('../images/icons/ornament-right.png') no-repeat;
  margin: 0 0 -5px 15px;
}

.no-shadow {
  -webkit-text-shadow: none !important;
     -moz-text-shadow: none !important;
          text-shadow: none !important;
}
.light-shadow {
  -webkit-text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
     -moz-text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
          text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
}

p {
  font-size: 20px;
  margin: 0 0 20px 0;
  line-height: 28px;
  -webkit-text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.9);
     -moz-text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.9);
          text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.9);
}

p.text-bold {
  font-family: 'Covington Bold', "Open Sans", sans-serif;
}

a {
    -webkit-transition: all,.2s,ease-in-out;
    -moz-transition: all,.2s,ease-in-out;
    transition: all,.2s,ease-in-out;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}

a, a:hover, a:active, a:focus {
  color: #788a58;
  text-decoration: none !important;
  outline: none !important;
  -webkit-transition: all,.2s,ease-in-out;
    -moz-transition: all,.2s,ease-in-out;
    transition: all,.2s,ease-in-out;
}

.email-text a {
  color: #fff;
}
.email-text a:hover {
  color: #788a58;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

.text-covington {
  font-family: 'Covington Bold', "Open Sans", sans-serif !important;
}
.text-light {
  font-weight: 300;
}
.text-bold {
  font-weight: 700;
}
.text-highlight {
  color: #97a879;
}

.f-s-20 {
  font-size: 20px !important;
  line-height: 24px !important;
}
.f-s-24 {
  font-size: 24px !important;
  line-height: 28px !important;
}
.f-s-25 {
  font-size: 25px !important;
  line-height: 32px !important;
}
.f-s-26 {
  font-size: 22px !important;
  line-height: 26px !important;
}
.f-s-27 {
  font-size: 27px !important;
  line-height: 32px !important;
}
.f-s-30 {
  font-size: 30px !important;
  line-height: 34px !important;
}
.f-s-34 {
  font-size: 30px !important;
  line-height: 34px !important;
}
.f-s-36 {
  font-size: 32px !important;
  line-height: 36px !important;
}
.f-s-40 {
  font-size: 36px !important;
  line-height: 40px;
}
.f-s-43 {
  font-size: 38px !important;
  line-height: 42px;
}
.f-s-45 {
  font-size: 45px !important;
  line-height: 48px;
}

/* mobile fonts */
@media (max-width: 620px) {
  .m-f-s-34 {
      font-size: 34px !important;
  }
  .m-f-s-24 {
      font-size: 24px !important;
  }
  .m-f-s-28 {
      font-size: 28px !important;
  }
  .f-s-43 {
    font-size: 34px !important;
    line-height: 38px;
  }
}

.white {
  color: #fff;
}
.grey {
  color: #ccc;
}
.coal {
  color: #333;
}

@media (max-width: 620px) {
  h1.highlight:before, h2.highlight:before, h1.highlight:after, h2.highlight:after {
    display: none;
  }
  hr {
    margin: 20px 0;
  }
  .email-text {
    font-size: 19px !important;
  }
}


/*------------------------------------------------------------------
[1. FORMS / #forms]
*/
label.form-label {
  display: inline-block;
  font-size: 18px;
  margin: 0 0 4px 0;
  width: 100%;
}
input.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 18px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
  -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

select {
  cursor: pointer;
}

.input {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: calc(100% - 2em);
  vertical-align: top;
}

/*------------------------------------------------------------------
[1. NEWSLETTER / #newsletter]
*/
#newsletter {
  padding-top: 60px;
}

@media (max-width: 970px) {
  #newsletter {
    padding-top: 90px;
  }
}

@media (max-width: 585px) {
  #newsletter {
    padding-top: 110px;
  }
}

#newsletter #templatePreheader, #newsletter #templateHeader {
  display: none;
}
#newsletter center:last-child {
  display: none;
}


/*------------------------------------------------------------------
[1. TEXT BLOCK / #textBlock]
*/
.text-block {
  min-height: 510px;
  position: relative;
  padding: 20px;
  margin-bottom: 25px;
}
.text-block .table {
  height: 110px;
  width: 100%;
}
.text-block hr {
  margin: 15px 0;
}
.text-block p {
  min-height: 265px;
  font-size: 17px;
  line-height: 24px;
}
.text-block a {
  /*position: absolute;
  bottom: 20px;
  left: 0;*/
  display: block;
  text-align: center;
  border-bottom: 2px solid #fff;
  padding: 0 20px 20px 20px;
  width: 100%;
}
@media (max-width: 992px) {
  .text-block, .text-block p {
    min-height: auto;
    height: auto;
  }
  .text-block a {
    padding-top: 20px;
  }
}


/*------------------------------------------------------------------
[1. SOICAL ICONS / #socialIcons]
*/
.info .social-icons {
  margin-top: 30px;
}
.social-icons a {
  color: #fff;
  font-size: 45px;
  -webkit-text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.7);
     -moz-text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.7);
          text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.7);
}
.social-icons a:hover {
  color: #788a58;
}

/*------------------------------------------------------------------
[1. MODAL / #modal]
*/
.md-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 50%;
  max-width: 630px;
  min-width: 290px;
  height: auto;
  z-index: 2000;
  visibility: hidden;
  backface-visibility: hidden;
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
}

.md-show {
  visibility: visible;
}

.md-overlay {
  cursor: pointer;
  position: fixed;
  width: 100%;
  height: 100%;
  visibility: hidden;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0;
  background: rgba(0, 0, 0, 0.75);
  transition: all 0.3s;
}

.md-show ~ .md-overlay {
  opacity: 1;
  visibility: visible;
}


.md-modal .md-header {
  background: #788a58;
  display: inline-block;
  padding: 15px 10px;
  width: 100%;
}
.md-modal .md-header h2 {
  text-align: center;
  margin: 0;
}

@media (max-width: 620px) {
  .md-modal .md-header h2 {
    font-size: 27px;
    line-height: 32px;
  }
}

.md-modal .md-body {
  background: #232323;
  padding: 15px 0;
  max-height: 440px;
  overflow-y: auto;
}

.md-perspective,
.md-perspective body {
  height: 100%;
  overflow: hidden;
}

.md-perspective body {
  background: #222;
  perspective: 600px;
}


/* Effect: 3D flip vertical */
.md-effect.md-modal {
  -webkit-perspective: 1300px;
  -moz-perspective: 1300px;
  perspective: 1300px;
}

.md-effect .md-content {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: rotateX(-70deg);
  -moz-transform: rotateX(-70deg);
  -ms-transform: rotateX(-70deg);
  transform: rotateX(-70deg);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}

.md-show.md-effect .md-content {
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  transform: rotateX(0deg);
  opacity: 1;
}

.md-modal .md-close {
  cursor: pointer;
  position: absolute;
  right: -12px;
  top: -12px;
  background: #556141;
  border-radius: 50%;
  height: 28px;
  width: 28px;
  line-height: 28px;
  text-align: center;
}






