/*==============================================================================
  Normalize
==============================================================================*/

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */

html {
  font-family: HelveticaNeu, "Helvetica Neu", Helvetica, Arial, sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */

body {
  margin: 0;
  color: #3c3c3c;
}

/* NOTES

gold=#b59f70





/* Screen Sizes Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/


/* Larger than mobile */
@media (min-width: 400px) {}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {}

/* Larger than tablet */
@media (min-width: 750px) {}

/* Larger than desktop */
@media (min-width: 1000px) {}

/* Larger than Desktop HD */
@media (min-width: 1200px) {}


/* Screen Sizes  */

/* For devices smaller than 599px: */
@media only screen and (max-width: 599px) {}

/* For devices larger than 400px: */
@media (min-width: 400px) {}

/* For devices larger than 550px: */
@media (min-width: 550px) {}





/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */

[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */

/**
 * Remove the gray background color from active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */

a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */

/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */

abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */

b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
  color:#433535;
 font-family: 'Cinzel', serif;
 font-case: uppercase;
}

/**
 * Address styling not present in IE 8/9.
 */

mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

img {
  border: 0;
  border-radius: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address margin not present in IE 8/9 and Safari.
 */

figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */

/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */

input[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*==============================================================================
  Styles
==============================================================================*/


/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/


/* Contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/


/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.page-title-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  height: 200px;
  margin: auto;
  box-sizing: border-box; }

.container {
  position: relative;
  width: 100%;
  max-width: 1276px;
  margin: 0 auto;
  padding: 0 5px;
  box-sizing: border-box; 
}

.nav-container {
  position: relative;
  width: 100%;
/*  max-width: 1000px; */
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  border-bottom: 1px solid #d9d7d7;
}

.nav-container-line {
  position: relative;
  width: 100%;
/*  max-width: 1000px; */
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  border-bottom: 1px solid #d9d7d7;
}
  
.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box;
}

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
        width: 95%;
        padding: 0;
    }
}


/* For devices larger than 550px */

/* width: 93.2%;*/

@media (min-width: 550px) {
  .container {
    width: 93.2%; }
  .column,
  .columns {
    margin-left: 3.7%; }
  .column:first-child,
  .columns:first-child {
    margin-left: 0; }

  .one-columns.column,
  .one-columns.columns                    { width: 4.66666666667%; }
  .two-columns.columns                    { width: 13.3333333333%; }
  .three-columns.columns                  { width: 22%;            }
  .four-columns.columns                   { width: 30.6666666667%; }
  .five-columns.columns                   { width: 39.3333333333%; }
  .six-columns.columns                    { width: 48%;            }
  .seven-columns.columns                  { width: 56.6666666667%; }
  .eight-columns.columns                  { width: 65.3333333333%; }
  .nine-columns.columns                   { width: 74.0%;          }
  .ten-columns.columns                    { width: 82.6666666667%; }
  .eleven-columns.columns                 { width: 91.3333333333%; }
  .twelve-columns.columns                 { width: 100%; margin-left: 0; }

  .one-fourth.column              { width: 22.2%; }
  .one-third.column               { width: 30.6666666667%; }
  .two-thirds.column              { width: 65.3333333333%; }
  .three-fourths.column           { width: 73.9%; }

  .one-half.column                { width: 48%; }

  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns          { margin-left: 8.66666666667%; }
  .offset-by-two.column,
  .offset-by-two.columns          { margin-left: 17.3333333333%; }
  .offset-by-three.column,
  .offset-by-three.columns        { margin-left: 26%;            }
  .offset-by-four.column,
  .offset-by-four.columns         { margin-left: 34.6666666667%; }
  .offset-by-five.column,
  .offset-by-five.columns         { margin-left: 43.3333333333%; }
  .offset-by-six.column,
  .offset-by-six.columns          { margin-left: 52%;            }
  .offset-by-seven.column,
  .offset-by-seven.columns        { margin-left: 60.6666666667%; }
  .offset-by-eight.column,
  .offset-by-eight.columns        { margin-left: 69.3333333333%; }
  .offset-by-nine.column,
  .offset-by-nine.columns         { margin-left: 78.0%;          }
  .offset-by-ten.column,
  .offset-by-ten.columns          { margin-left: 86.6666666667%; }
  .offset-by-eleven.column,
  .offset-by-eleven.columns       { margin-left: 95.3333333333%; }

  .offset-by-one-fourth.column,
  .offset-by-one-fourth.columns    { margin-left: 22.2%; }
  
  .offset-by-one-third.column,
  .offset-by-one-third.columns    { margin-left: 34.6666666667%; }
  
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns   { margin-left: 69.3333333333%; }

  .offset-by-one-half.column,
  .offset-by-one-half.columns     { margin-left: 52%; }

}


/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 61%; }
body {
  font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 500;
  
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;

/*   color: #3c3c3c; */
  color: #464545;
}


/* Typography –––––––––––––––––––––––––––––––––––––––––––––––––– */

@import url('https://fonts.googleapis.com/css?family=Spartan:500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel&display=swap');






p {
  font-size: 22px;
  color: #464545;
  text-align: left;
  line-height: 150%;
  font-family: "Roboto", HelveticaNeu, "Helvetica Neu", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: normal;
  padding-top: 0;
  margin-top: 0;
}

p.smaller {
  font-size: 18px;
  color: #464545;
  text-align: left;
  line-height: 150%;
  font-family: "Roboto", HelveticaNeu, "Helvetica Neu", Helvetica, Arial, sans-serif;
  font-weight: 400;
}

p.question {
  font-size: 22px;
/*  color: #91130a; */
  color: #b59f70;
  text-align: left;
  line-height: 150%;
  margin: 20px 0 5px 0;
}

p.answer {
  font-size: 18px;
  color: #464545;
  text-align: left;
  line-height: 150%;
  font-weight: 400;
  margin: 5px 0 10px 0;
}

p.p1 {
  font-size: 22px;
  color: #333333;
  text-align: left;
  margin-left: 0;
  line-height: 150%;
}

p.main-text {
  text-align: left; 
  font-size: 24px;
  color: #484848;
  text-align: left;
  line-height: 150%;
}

p.learn-more {
  font-size: 18px;
  margin: -15px 0 30px 0;
}

h3.small-heading {
  text-align: center; 
  padding: 10px 0 30px 0; 
  color:#aa915d;
  font-size: 28px;
}

.bold {
  font-weight: bold;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.centered {
  text-align: center;
}

.right {
  text-align: right;
}

.heading {
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 0px;
  margin-top: -4px;
}

h2.section-heading {
  text-align: left;
  font-size: 32px;
  padding: 20px 0 0 0;
  margin: 0;
  color: #5c0b06;
}

h2.sub-heading {
  text-align: center;
  font-size: 28px;
  padding: 20px 0 20px 0;
  margin: 0;
  color: #464545;
}

h2.sub-1 {
  text-align: center;
  font-size: 22px;
  padding: 20px 0 0 0;
  margin: 0;
  color: #464545;
}

h2.sub-2 {
  text-align: center;
  font-size: 24px;
  padding: 20px 0 0 0;
  margin: 0;
  color: #464545;
  color: #464545;letter-spacing: -1.4px;
}

h2.sub-3 {
  text-align: center;
  font-size: 28px;
  padding: 20px 0 0 0;
  margin: 0;
  color: #464545;
}



.section-name {
  margin: 10px auto 0 auto; 
  text-align: center; 
  font-size: 24px;
  padding: 0 0 20px 0;
}

.section-name-small {
  margin: 10px auto 0 auto; 
  text-align: center; 
  font-size: 18px;
  padding: 0 0 20px 0;
}

.section-name-very-small {
  margin: 10px auto 0 auto; 
  text-align: center; 
  font-size: 14px;
  padding: 0 0 15px 0;
}


/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */

a {
  color: #0a74db; 
  letter-spacing: normal;  
}
  
a:hover {
  color: #2997ff; }
  
.white-color {
  color: #ffffff; 
  text-decoration: none:
  }
 
 .gold-color {
  color: #c89832; 
  text-decoration: none:
  } 
  
  
a.contact-info {
  color: #ffffff; 
  letter-spacing: -.4px;
  font-size: 16px; 
}

a.contact-info:hover {
  color: gold;
}

a.company-name {
  color: gold;
  background-color: #000000;
  margin: auto auto 0 auto;
  height: auto;
  width: 100%;
  font-size: 20px;
  text-align: center;
  padding: 0;
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 1px;
}

a.company-name:hover {
  color: #f4e66d;
}
  
.white-color {
  color: #ffffff; 
  text-decoration: none:
  }
 
 .gold-color {
  color: #c89832; 
  text-decoration: none:
  } 
  
a.light-gray {
  color: #f1f1f1;
  }
  
.motto-container {
  background-color: #000000;
  margin: auto auto 0 auto;
  height: auto;
  width: 100%;
  padding: 5px 0 5px 0;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 100;
  line-height: 15px;
}

.motto-container-2 {
  background-color: #000000;
  margin: auto auto 0 auto;
  height: auto;
  width: 100%;
  padding: 5px 0 5px 0;
  text-align: center;
  color: #ffffff;
  font-size: 30px;
  font-weight: 100;
  line-height: 45px;
}

p.small {
  font-family: HelveticaNeu, "Helvetica Neu", Helvetica, Arial, sans-serif; /* 1 */
  font-size: 16px;
  line-height: 19px;
  color: #464545;
}

p.small-bold {
  font-family: HelveticaNeu, "Helvetica Neu", Helvetica, Arial, sans-serif; /* 1 */
  font-size: 18px;
  line-height: 24px;
  margin-top: 30px;
  margin-bottom: 0px;
  font-weight: bold;
  padding: 0;
  color: #333333;
}

p.very-small {
  font-family: HelveticaNeu, "Helvetica Neu", Helvetica, Arial, sans-serif; /* 1 */
  font-size: 16px;
  line-height: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0;
  color: #333333;
}


/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.button-container {
  margin: 10px 0 10px 0;
  width: 100%;
  margin: 0 auto;
  display: block;
}

.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: auto;
  padding: 0 30px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: none;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 5px;
  border: 0;
  cursor: pointer;
  box-sizing: border-box; }
  background-color: #3286dd;
  color: #ffffff;
  width: auto;
  margin:0 auto;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #333;
  border-color: #888;
  outline: 0; }
.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #FFF;
  background-color: #3286dd;
  border-color: #3286dd; }
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
  color: #FFF;
  background-color: #56a5f8;
  border-color: #56a5f8; }

.roundrect-link {
    width: auto;
    border-radius: 99px;
    background-color: #ffffff;
    text-align: center;
    cursor: pointer;
    padding: 5px 0;
    margin: 10px 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space:nowrap;
    border: 1px solid #b59f70; 
}

.roundrect-link-medium {
  width: auto;
  border-radius: 99px;
  background-color: #f9f9f9; 
  text-align: center;
  cursor: pointer;
  margin: 10px 0 10px 0;
  font-size: 20px; 
  font-weight: 600;
  text-overflow: ellipsis;
  white-space:nowrap;
  border: 1px solid #c89832;
  padding: 8px 10px 8px 10px; 
  margin: 0 5px 25px 5px;
  overflow: hidden;
}


/* 
.fancy-button {
  border-radius:99px;
  border: 1px solid #c89832; 
  background-color: #f9f9f9;
  padding: 8px 0 8px 0;
  text-align:center;
  cursor: pointer;
  margin: auto;
  font-size:16px;
  font-weight: 600;
  width: 360px;
}

 */
 
 
.fancy-button {
    display: table;
    width: 379px;
    border-radius: 8px;
    border: 1px solid #c89832;
    background-color: #fcfcfc;
    padding: 6px 5px;
    text-align: center;
    cursor: pointer;
    margin: 40px auto 40px auto;
    font-size: 18px;
    font-weight: 600;
}

 
.phone-text-email-link {
  width: auto;
  border-radius: 8px; 
  border: 1px solid #c89832; 
  background-color: #fcfcfc; 
  text-align:center; 
  cursor: pointer;
  padding: 6px 0;
  margin: 10px 0 10px 0; 
  font-size: 18px; 
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  
  @media only screen and (max-width: 599px) {
  font-size: 15px;
  }
}


  
.flex-button {
  border-radius: 99px; 
  border: 1px solid #c89832; 
  background-color: #f9f9f9; 
  padding: 8px 10px 8px 10px; 
  text-align: center; 
  cursor: pointer; 
  margin: 0 5px 25px 5px;
  font-size: 20px; 
  font-weight: 600;
  overflow: hidden;
  max-height:50px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.special-button {
  border-radius: 8px;
  border: 1px solid #c89832;
  background-color: #f9f9f9;
  padding: 0;
  margin: 0 auto 20px auto;
  text-align:center;
  cursor: pointer;
  font-size:16px;
  font-weight: 600;
  width: 90%;
  height: 35px;
  line-height: 36px;
  overflow: hidden;
}


.button-container {
  margin: 0 auto;
  width:100%;
}

.fancy-button:after {
  content: "";
  clear: both;
  display: table;
  margin: 0 auto;
  text-align: center;
}

.flex-button-single {
  border-radius: 99px;
  border: 1px solid #c89832;
  background-color: #f9f9f9;
  padding: 8px 10px 8px 10px;
  text-align: center;
  cursor: pointer;
  margin: 0 auto 25px auto;
  font-size: 20px;
  font-weight: 600;
  overflow: hidden;
  max-height: 50px;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 576px;
}

/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 5px;
  box-shadow: none;
  box-sizing: border-box; }
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; }
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }

/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */


ul {
    list-style-type: disc;
    text-align: left;
    margin: 0 0 0 25px;
}

ul.bullet li {
  list-style-type:none; 
  text-align: left;
  background: url(../images/bullet.png) 0px 9px  no-repeat;
  text-align: left;
  font-size: 20px;
  line-height: 28px;
  background-size: 8px 8px;
  margin: 5px 5px 0 25px;
  padding: 0 0 5px 20px;
}

ul.bullet1 {
  list-style-type: square;
  list-style-position: outside;
  margin: 5px 20px 15px 20px;
  padding: 5px;
  text-align: left;
  display:table; 
  width:auto;
  font-size: 22px;
}

ul.square {
  list-style-type: square;
  list-style-position: outside;
}
  
ol {
  list-style: decimal;
  margin: 0 0 0 40px;
}

ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; 
}
  
li {
  margin-bottom: 1rem; 
  font-size: 2.3rem;
  margin: 0 0 0 30px;
  padding: 0 0 12px 0;
  text-align: left;
  line-height: 1.35;
}

ul.small li {
  margin-bottom: 1rem; 
  font-size: 1.9rem;
  margin: 0 0 0 10px;
  padding: 0 0 8px 0;
  text-align: left;
  line-height: 1.2;
}

ul.bullet-1 li {
  display:table;
  background: url(../images/bullet.png) 0px 9px  no-repeat;
  text-align: left;
  font-size: 16px;
  line-height: 24px;
  background-size: 8px 8px;
  margin: 5px 5px 0 25px;
  padding: 0 0 5px 20px;
  font-family: "Roboto", HelveticaNeu, "Helvetica Neu", Helvetica, Arial, sans-serif;
  font-weight: normal;
}


ul.bullet-2 li {
  display:table;
  background: url(../images/right-arrow.png) 0px 5px  no-repeat;
  text-align: left;
  font-size: 20px;
  line-height: 27px;
  background-size: 18px 18px;
  margin: 5px 5px 0 0;
  padding: 0 0 5px 24px;
}

ul.bullet-main li {
  display:table;
  background: url(../images/right-arrow.png) 0px 3px  no-repeat;
  text-align: left;
  font-size: 22px;
  line-height: 27px;
  background-size: 22px 22px;
  margin: 5px 5px 0 25px;
  padding: 0 0 5px 30px;
  font-weight: 600;
}

/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */

table {
  padding: 15px 0 20px 0;
}

th,td {
  padding: 5px 15px;
  text-align: left;
  border-top: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
}

th:first-child,
td:first-child {
  padding-left: 0;
  min-width: 50px;
}

th:last-child,
td:last-child {
  padding-right: 0; 
}

table.contact-left {
 width: 380px; 
 margin: 0;
}

td.contact-label {
 width: 20px; 
 font-size: 18px;
 padding: 0;
 font-weight: bold;
 border-top: none;
 border-bottom: none;
}

p.contact-address {
 font-size: 18px;
 line-height: 0%;
}

td.contact-details {
 font-size: 18px;
 padding: 0;
 border-top: none;
 border-bottom: none;
}

table.contact-large {
 width: 350px;
 margin: 0 auto;
 text-align:center;
}

td.contact-label-large {
 width: 160px; 
 font-size: 18px;
 padding: 12px 0;
 font-weight: bold;
 vertical-align: top;
 border-top: none;
 border-bottom: none;
}

td.contact-details-large {
 width: 50px;
 font-size: 18px;
 padding: 0 0 8px 0;
 vertical-align: top;
 border-top: none;
 border-bottom: none;
 font-weight: normal;
}

.icon-holder {
 width: 30px;
 margin: 0 auto;
 text-align: right;
 border: none;
 vertical-align: top;
 padding: 3px 10px 0 0;
}

/* Code –––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 5px; }
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; }


/* Tables –––––––––––––––––––––––––––––––––––––––––––––––––– */

th {
 font-size: 1.5em;
 background-color: rgb(249, 249, 249);
}

td {
 font-size: 1.2em;
}

th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }
th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }


/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem; }


/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box; }
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.u-pull-right {
  float: right; }
.u-pull-left {
  float: left; }

.three-quarter-width {
  max-width: 70%;
  box-sizing: border-box; }

/* Horizontal Line 
–––––––––––––––––––––––––––––––––––––––––––––––––– */

hr {
  margin-top: 5rem;
  margin-bottom: 5rem;
  border-width: 0;
  border-top: 1px solid #dedede;
}


hr.thick {
  margin-top: 5rem;
  margin-bottom: 5rem;
  border-width: 0;
  border-top: 4px solid #E1E1E1;
}
  
.horizontal-line-mini {
  margin: 10px auto;
  border-width: 0;
  border-top: .7px solid #ffffff;
  width: auto;
  max-width: 326px;
}

/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both; }










/*==============================================================================
  Custom
==============================================================================*/

/* Shared
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button {
  border-radius: 5px;
}

/* Sections
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.section {
  padding: 3rem 0;
  text-align: center;
}

.section-heading,
.section-description {
  margin-bottom: 1.2rem;
}

.nav-section {
  padding: 0;
  text-align: left;
}

/* Hero
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.phones {
  position: relative;
}
.phone {
  position: relative;
  max-width: 80%;
  margin: 3rem auto -12rem;
}
.phone + .phone {
  display: none;
}

/* Values
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.values {
  /*background-image: url('../images/values-bg.jpg');*/
  background-color: #f2f2f2;
  background-size: cover;
  color: #fff;
  padding-bottom: 5rem;
}
.value-multiplier {
  margin-bottom: .5rem;
  color: #11DFC7;
}
.value-heading {
  margin-bottom: .3rem;
}
.value-description {
  opacity: .8;
  font-weight: 300;
}

/* Help –––––––––––––––––––––––––––––––––––––––––––––––––– */
.get-help {
  /*border-bottom: 1px solid #ddd;*/
  background-color: #f2f2f2;
}


/* Categories –––––––––––––––––––––––––––––––––––––––––––––––––– */
.categories {
  background-color: #ffffff;
  background-size: cover;
  color: #565656;
}
.categories .section-description { 
  margin-bottom: 4rem;
}

/* Bigger than 550 */
@media (min-width: 550px) {
  .section {
  padding: 3rem 0;
  }
  .hero {
    padding-bottom: 12rem;
    height: 165px;
  }
  .phone {
    position: absolute;
    top: -7rem;
    right: 3rem;
    max-height: 362px;
    z-index: 3;
  }
  .phone + .phone {
    top: -6rem;
    display: block;
    max-width: 73.8%;
    right: 0;
    z-index: 2;
    max-height: 338px;
  }
  .hero-heading {
    font-size: 2.4rem;
  }
}

/* Bigger than 750 */
@media (min-width: 750px) {
  .hero {
    height: 190px;
  }
  .hero-heading {
    font-size: 2.6rem;
  }
  .section {
    padding: 3rem 0 3rem;
  }
  .hero {
    padding: 16rem 0 14rem;
  }
  .section-description {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
  .phone {
    top: -14rem;
    right: 5rem;
    max-height: 510px;
  }
  .phone + .phone {
    top: -12rem;
    max-height: 472px;
  }
  .categories {
    padding: 3rem 0 3rem;
  }
}

/* Bigger than 1000 */
@media (min-width: 1000px) {
  .section {
  padding: 3rem 0;
  }
  .hero {
    padding: 2rem 0 20rem 0;
  }
  .hero-heading {
    font-size: 3.0rem;
  }
  .phone {
    top: -16rem;
    max-height: 615px;
  }
  .phone + .phone {
    top: -14rem;
    max-height: 570px;
  }
}



.image-centered {
  text-align: center; 
  display: block;
  margin: auto;
  width: 100%;
}

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

.centered {
  text-align: center;
}

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


/* Menu Bar –––––––––––––––––––––––––––––––––––––––––––––––––– */

.nav {
  list-style:none;
  margin: 30px 0 10px 0;
  padding: 0;
  text-align:center;
}

.nav li {
  display:inline;
  font-family: 'Cinzel', serif;
  margin: 0;
  
}

.nav a {
  display:inline-block;
  padding:0 8px;
  text-decoration:none;
  font-size: 24px;
  font-weight:500;
  font-family: 'Cinzel', serif;
  letter-spacing: -.6px;
  color: #433535;

  @media (max-width: 599px) { font-size: 3rem;}
}

.nav a:hover {
  text-decoration:none;
  color: #a37005;
}



.nav-active {
  display:inline-block;
  padding:2px 4px;
  font-size:18px;
  font-weight:400;
  letter-spacing: -.4px;
  text-decoration:none;
  font-size:18px;
  color:#b59f70;
  background-color: #fff;
  list-style:none;
  margin: 30px 0 10px 0;
  padding: 0;
  text-align:center;
}

.nav-active li {
  display:inline;
  font-family: 'Roboto Condensed', sans-serif;
}

.nav-active a {
  display:inline-block;
  padding:0 4px;
  text-decoration:none;
  font-size:18px;
  font-weight:400;
  font-family: 'Roboto Condensed', sans-serif;
  color:#b59f70;
}

.nav-active a:hover {
  text-decoration:none;
  color:#dea52c;
}



.nav-footer {
  background-color: #e4e4e4;
  height: auto;
  width: 100%;
  list-style:none;
  margin:0;
  margin-top:0;
  padding:0;
  text-align:center;
  display:inline;
  font-family: 'Roboto Condensed', sans-serif;
}

.nav-footer li {
  display:inline;
  text-align:center;
}

.nav-footer a {
  display:inline-block;
  padding: 0 2px;
  text-decoration:none;
  font-size:18px;
  font-weight:400;
}

.nav-footer a:hover {
  text-decoration:none;
}

/*  –––––––––––––––––––––––––––––––––––––––––––––––––– */

.caption-label {
  margin: 15px auto 0 auto; 
  text-align: center; 
  font-size: 20px;
}

.logo-container {
    height: auto;
    width: 300px;
    color: #ffffff;
    background-color: ffffff;
    padding: 10px 0 0 0;
    margin: auto;
}

.small-logo-container {
  height: auto;
  width: 100%;
  color: #ffffff;
  background-color: ffffff;
  text-align: center;
  padding: 5px 0 0 0;
  margin: 0 0 -6px 0;
}

.logo-2-container {
    height: auto;
    width: 350px;
    color: #ffffff;
    background-color: ffffff;
    padding: 10px 0 0 0;
    margin: auto;
}

/* Announcement –––––––––––––––––––––––––––––––––––––––––––––––––– */

.announcement {
  height: auto;
  width: 100%;
  font-size: 12px;
  color: #ffffff;
  background-color: #000000;
  text-align: center;
  padding: 0px 0;
  font-weight: 400;
  a:link: #ffffff;
}


.footer-announcement {
  height: auto;
  width: 100%;
  font-size: 10px;
  color: #c89832;
  background-color: #000000;
  text-align: center;
  padding: 0px 0;
  font-weight: 100;
  a:link: #ffffff;
}

.pre-footer {
  height: auto;
  margin: 40px 0 0 0;
  width: 100%;
  font-size: 16px;
  color: #c89832;
  text-align: center;
  padding: 0px 0;
  font-weight: 100;
  a:link: #ffffff;
}


a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

.roundrect {
  border-radius: 5px;
}

.roundrect-padding {
  border-radius: 5px;
 border: none;
  background-color: #fcfcfc;
  border: 1px solid #e1dfdf;
    /*box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);*/

  padding: 15px;
/* box-shadow: 0 16px 18px 0 rgba(0, 0, 0, .12), 0 5px 14px 0 rgba(0, 0, 0, .11);*/
}

.contact-container {    
  border-radius: 5px;
  background-color: rgb(254, 251, 244);
  border: rgb(238, 229, 203) 1px solid;
  padding: 15px;
}

.top {
  height: auto;
  margin: 0;
  width: 100%;
  font-size: 16px;
  color: #c89832;
  text-align: center;
  padding: 0;
  font-weight: 100;
}

.top-right {
  height: auto;
  margin: 0;
  width: 100%;
  font-size: 20px;
  color: #c89832;
  text-align: right;
  padding: 0;
  font-weight: 100;
}


a:link {
    text-decoration: none;
    letter-spacing: -.02rem;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
} 

/* Text Formatting –––––––––––––––––––––––––––––––––––––––––––––––––– */

.page-title {
  font-size: 3em;
  color: #ffffff;
  text-align: center;
  text-shadow: 1px 1px #313131;
  vertical-align: middle;
  margin: 0 auto;
  padding: 0 0 20px 0;
}

.page-subtitle {
  font-size: 1.75em;
  color: #ffffff;
  text-align: center;
  text-shadow: 1px 1px #313131;
  vertical-align: middle;
  margin: 0 auto;
}

.page-heading {
  font-size: 4em;
  color: #000000;
  text-align: center;
  padding: 0 0 30px 0;
  margin: -140px 0 0 0;
}

/* 
.product-image,.product-image:link,.product-image:visited,.product-image:hover,.product-image:focus,.product-image:active {
  margin: 0 0 0 0;
  border: 1px solid #dddddd;
  border-radius: 5px;
  color: inherit;
}

a.image-border {
	text-decoration: none;
	border: 0 none;
}
 */
 
 
.product-image {
  margin: 0 0 0 0;
  border: 1px solid #dddddd;
  border-radius: 5px;
}

/* 
.product-image:hover {
  box-shadow: 0 0 15px gold;
}

a img.product-image, a:link img.product-image, a:visited img.product-image {
  border: 1px solid #dddddd;
}
*/

.border-faint {
  margin: 0;
  border: 1px solid rgba(240, 240, 240, 1);
  border-radius: 5px;
}

.general-image {
  margin: 0 0 50px 0;
  border: none;
  border-radius: 0;
}

.banner-setup {
   background-repeat: no-repeat; 
   background-size: cover; 
   background-position: center;
}


/* Product Page –––––––––––––––––––––––––––––––––––––––––––––––––– */

.product-container {
  height: auto;
  width: 100%;
  text-align: center;
  padding: 5px 0 0 0;
  margin: -120px auto 0 auto;  
}

.product-name {
  font-size: 14px;
  text-align: center;
  padding: 10px 0 0 0;
  margin: 0 0 0 0;
  font-weight: 400;
  color: #333232;
}

.product-description {
  font-size: 12px;
  text-align: center;
  padding: 0 0 0 0;
  margin: 0 0 0 0;
  font-weight: 400;
  color: #333232;
}

.product-number {
  font-size: 14px;
  text-align: center;
  color: #5d5c5c;
  margin: 0;
}

.product-price  {
  font-size: 16px;
  text-align: center;
  padding: 0 0 0 0;
  margin: 0 0 0 0;
  font-weight: 400;
  color: #D92121 ;
}

p.image-label {
  padding: 10px 0 12px 0;
  margin: 0;
  font-size: 20px;
  color: #565656;
  text-align: center;
}

p.series-name {
  padding: 10px 0 12px 0;
  margin: 0;
  font-size: 16px;
  color: #565656;
  text-align: center;
  letter-spacing: normal;
}

.finish-name {
  padding: 0;
  margin: 0;
  font-size: 18px;
  color: #393939;
  text-align: center;
}

p.model {
  padding: 0 0 3px 0;
  margin: 0;
  font-size: 16px;
  color: #565656;
  letter-spacing: normal;
}

p.model-feature {
  padding: 0 0 3px 0;
  margin: 0 0 10px 0;
  font-size: 16px;
  color: #565656;
  text-align: center;
  letter-spacing: normal;
}

p.metal-finish {
  padding: 0 0 0 0;
  margin: -10px 0 0 0;
  font-size: 15px;
  color: #5f5f5f;
  text-align: center;
  letter-spacing: normal;
}

.model-number {
  padding: 0 0 3px 0;
  margin: 0 0 0 0;
  font-size: 14px;
  color: #7e7d7d;
  text-align: center;
}

.spacer {
  padding: 0 0 40px 0;
}

.margin-down {
  margin-bottom: 40px;
}

.spacer2 {
  padding: 0 0 50px 0;
}


/*  Banner Image and Text –––––––––––––––––––––––––––––––––––––––––––––––––– */

.banner-image {
  background-color: #cccccc;
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin: 0 0 20px 0;
}

.banner-image-tall {
  background-color: #cccccc;
  height: 550px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin: 0 0 20px 0;
}

.banner-text-container {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 372px;
}

.banner-title {
  color: #ffffff;
  text-shadow: 1px 1px rgba(0, 0, 0,0.4);
  padding: 0 0 40px 0;
}

.banner-subtitle {
  color: #ffffff;
  text-shadow: 1px 1px rgba(0, 0, 0,0.4);
 font-family: "Spartan", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
 font-size: 24px;
 padding: 0;
 margin: 0;
 text-align: center;
}


/*  Section Image and Text –––––––––––––––––––––––––––––––––––––––––––––––––– */

img.inline-image{
  max-width: 100%;
  max-height: 100%;
  display: block; /* remove extra space below image */
}

.responsive {
  width: 100%;
  height: auto;
}

.responsive-max-width {
  width: 100%;
  max-width: 960px;
  height: 100%;
  overflow: hidden;
}

.video-max-width {
  width: 100%;
  max-width: 960px;
  height: 540px;
}

.section-image {
  background-color: #ffffff;
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1370px 571px;
  position: relative;
  cursor: pointer;
}

.embedresize {
max-width: 960px;
margin: auto;
}

.embedresize div {
position: relative;
height: 0;
padding-bottom: 56.25%;
}

.embedresize iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

.intro #intro .embedresize iframe,
.exit .quizz .embedresize iframe,
.alreadyplayed #intro .embedresize iframe, 
.identityset #intro .embedresize iframe, 
#notabene .embedresize iframe, 
#message_intro .embedresize iframe, 
.fancybox_body .embedresize iframe, 
#comments .embedresize iframe, 
#description .embedresize iframe, 
.alreadyplayed .embedresize iframe, 
#adserver .embedresize iframe {
max-width: none !important;
}



.section-text-container {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.section-title {
  color: #ffffff;
  text-shadow: 1px 1px rgba(0, 0, 0,0.4);
  padding: 0 0 40px 0;
  font-weight: 300;
}

.section-subtitle {
  color: #ffffff;
  text-shadow: 1px 1px rgba(0, 0, 0,0.4);
  font-weight: 300;
}

/*  Spacers –––––––––––––––––––––––––––––––––––––––––––––––––– */

.spacer-1 {
  height: 15px;
  width: 100%;
}

.spacer-2 {
  height: 30px;
  width: 100%;
}

.spacer-3 {
  height: 50px;
  width: 100%;
}

.space {
  height: 60px;
  width: 100%;
}


/* Footer –––––––––––––––––––––––––––––––––––––––––––––––––– */

.footer {
  background-color: #e4e4e4;
  margin:40px 0 0 0;
  padding: 20px 0 0 20px;
  text-align: left;
  line-height: 0px;
  font-size:14px;
  font-weight:300;
		}
		a.footer {
			color:#3286dd;
			text-decoration:none;
		}
		a.footer:hover{
			text-decoration:#469ef9;
		}
		
.footer-text {
  margin:0;
  padding: 10px 0 0 20px;
  text-align: left;
  line-height: 0px;
  font-size:14px;
  font-weight:300;
		}
		a.footer {
			color:#3286dd;
			text-decoration:none;
		}
		a.footer:hover{
			text-decoration:#469ef9;
		}


.video-container {
  height: auto;
  width: 100%;
  text-align: center;
  padding: 0px 0;
  font-weight: 100;
}

/* Image –––––––––––––––––––––––––––––––––––––––––––––––––– */


img.round {
  border-radius: 5px;
}

img.no-.contact-card-wrapper
  border-radius: 0;
}

img.border {
  border:1px solid #dddddd;
}
  

.clear { clear: both; }



.outer-center {
  text-align:center;
  margin: 0 15px;
  padding: 0 15px;
}
.inner-center {
  display:inline-block;
  text-align:left;
}



/*  –––––––––––––––––––––––––––––––––––––––––––––––––– */


img.small-flag {
  display: block;
  width: 50px;
  height: auto;
  margin: auto;
  padding: 0 0 5px 0;
  border-radius: 0;
}

img.dpha {
  display: block;
  width: 100px;
  height: auto;
  margin: auto;
  padding: 0;
  border-radius: 0;
}

.copyright {
  height: auto;
  margin: 0;
  width: 100%;
  font-size: 10px;
  color: #585757;
  text-align: center;
  padding: 0 10px 5px 10px;
}

.warning {
  font-size: 10px; 
  text-align: center;
  padding: 5px 0 10px 0;
  height: auto;
  width: 100%;
  color: #585757;
}

/* Quote ___________________________________________________________________ */


.quote-container {   
  width: 80%;
  min-width: 372px;
  height: auto;
  margin: 50px auto;
  border-top: 0.8px solid #9da4a0;
  border-bottom: 0.8px solid #9da4a0;
  background: #ffffff;
  padding: 30px 30px 10px 30px;
}

blockquote {   
  width: 90%;
  height: auto;
  max-width: 800px;
  min-width: 372px;
  margin: auto;
  padding: 0 5px 0 5px;
  border-top: 0.8px solid #9da4a0;
  border-bottom: 0.8px solid #9da4a0;
  margin-bottom: 50px;
  background: #ffffff;
  padding: 10px 20px;
}

p.blockquote-text {
  color: #6c6c6c;
  text-align: left;
  text-shadow: 1px 1px white;
  font-style: italic;
  font-size: 22px;
}

p.quote-text {
  color: #6c6c6c;
  text-align: left;
  text-shadow: 1px 1px white;
  font-style: italic;
  font-size: 20px;
}

p.quote-author {
  color: #5c5c5c;
  text-align: center;
  font-size: 17px;
  color: #91130a;
}

.quote-symbol {
  font-size: 60px;
  font-weight: 900;
  line-height: 25%;
  vertical-align: text-bottom;
  font-family: Times, serif;
  font-style: none;
  color: #b59f70;
  padding: 0 10px 0 0;
  font-style: normal;
}

.quote-symbol-end {
  font-size: 60px;
  font-weight: 900;
  line-height: 25%;
  vertical-align: text-bottom;
  font-family: Times, serif;
  font-style: none;
  color: #b59f70;
  padding: 0 0 0 10px;
  font-style: normal;
}

.quote-symbol-2 {
  font-size: 60px;
  font-weight: 900;
  line-height: 25%;
  vertical-align: text-bottom;
  font-family: Times, serif;
  font-style: none;
  color: #abdaff;
  padding:0 5px 0 0;
}

p.blockquote-author {
  color: #5c5c5c;
  text-align: center;
  font-size: 18px;
  color: #91130a;
}

.testimonial {   
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 20px auto;
  border: none;
  margin-bottom: 50px;
  background: #fafafa;
  padding: 15px 45px;
  border-radius: 5px;
}

p.testimonial-text {
  font-size: 18px;
  line-height: 26px;
}


.effect1 {
    -webkit-box-shadow: 0 10px 6px -6px #777;
       -moz-box-shadow: 0 10px 6px -6px #777;
            box-shadow: 0 10px 6px -6px #777;
}

.effect2 {
    box-shadow: 0 1px 2px rgba(0,0,0,0.07), 
                0 2px 4px rgba(0,0,0,0.07), 
                0 4px 8px rgba(0,0,0,0.07), 
                0 8px 16px rgba(0,0,0,0.07),
                0 16px 32px rgba(0,0,0,0.07), 
                0 32px 64px rgba(0,0,0,0.07);
} 

/* Contact Card___________________________________________________________________ */

.contact-card-wrapper {
  width: auto;
  height: 136px;
  padding: 8px 80px 8px 8px;
  margin: 0 auto 20px auto;
 border: 1px solid #e1dfdf;
  border-radius: 5px;
}

.contact-card-wrapper-previous {
  width: 340px;
  height: 136px;
  padding: 8px 3px 8px 8px;
  margin: 0 auto 20px auto;
 border: 1px solid #e1dfdf;
  border-radius: 5px;
}

.contact-card-wrapper-no-photo {
  width: 340px;
  height: 136px;
  padding: 15px 6px 10px 18px;
  margin: 10px auto 20px auto;
  border: 1px solid #e1dfdf;
  border-radius: 5px;
}

.contact-wrapper {
  width: auto;
  height: 136px;
  padding: 15px 6px 10px 18px;
  margin: 10px auto 20px auto;
  border: 1px solid #e1dfdf;
  border-radius: 5px;
}

.contact-card-left {
  float: left;
  width: 90px;
}

.contact-card-right {
  float: right;
  width: auto;
}

.contact-card-photo {
 border: 1px solid #eeeeee;
}

.contact-card-name {
  font-size: 19px;
  text-transform: uppercase;
  color: #91130a;
  padding: 0 0 0 0;
  margin: 0;
}

.contact-card-name-2 {
  font-size: 2.8rem;
    color: #5c0b06;
    padding: 0 0 0 0;
    margin: 0;
}

.contact-card-title {
  font-size: 16px;
  font-weight: 700;
  padding: 0 0 8px 0;
  margin: 0;
  line-height: 18px;
}

.contact-card-title-2 {
  font-size: 2.2rem;
  padding: 0 0 8px 0;
  margin: 0;
  line-height: 24px;
  text-transform: uppercase;
}

.contact-card-phone {
  font-size: 1.8rem;
  padding: 0;
  margin: 0;
}

.contact-card-email {
  font-size: 1.8rem;
  padding: 0;
  margin: 0;
}

/* ___________________________________________________________________ */

.separator {
  color: #a9a9a9;
  font-weight: 200;
  font-size: 18px;
  font-family: HelveticaNeu, "Helvetica Neu", Helvetica, Arial, sans-serif;
}

.no-link {
  display:inline-block;
  padding:2px 4px;
  font-size:18px;
  font-weight:400;
  color: #3c3c3c;
  letter-spacing: -.4px;
  text-decoration:none;
  font-size:18px;
}

.nav-footer-no-link {
  display:inline-block;
  padding: 0 2px;
  font-size:18px;
  font-weight:400;
  color: #565656;
  letter-spacing: -.4px;
  text-decoration:none;
  font-size:18px;
}

.no-caption {
  margin: 20px auto 15px auto;
}

/* The following code for caption was not resizing the text */

.caption {
  margin: 5px auto 30px auto; 
  text-align: center; 
  font-size: 1.6rem;
  
  @media (max-width: 549px) { 
  font-size: 1.6rem; 
  }
}

p.body-small {
  text-align: left; 
  font-size: 16px;
  padding: 0 0 5px 0;
  margin: 0 0 0 0;
}

p.body-very-small {
  text-align: left; 
  font-size: 12px;
  padding: 0 0 5px 0;
  margin: 0;
}


p.body-small-center {
  text-align: center; 
  font-size: 16px;
  padding: 0 0 5px 0;
  margin: 0 0 0 0;
}

p.body-very-small-center {
  text-align: center; 
  font-size: 12px;
  padding: 0 0 5px 0;
  margin: 0;
}

.note {
  text-align: left; 
  font-size: 14px;
  color: #464545;
  margin: 0;
  padding: 0;
}


/* Note –––––––––––––––––––––––––––––––––––––––––––––––––– */

.note-box {
    background: #fffef9;
    background-size: 30px 30px;
    border-radius: 5px;
    border: 1px solid #fbf1c8;
    padding: 10px 10px 10px 10px;
    margin: 5px 0 20px 0;
}
@media only screen and (max-width: 599px) {
.note-box {
    padding: 5px 5px 5px 5px;
  }
}

.note-box-heading {
  color: #a37005;
  text-transform: uppercase;
  font-size: 18px;
  text-align: center;
  padding: 0;
    margin: 0 0 5px 0;
}
@media only screen and (max-width: 599px) {
.note-box-heading {
  font-size: 16px;
  padding: 5px 5px 10px 5px;
  } 
}

.note-box-text {
  margin: 0 0 5px 0;
  font-size: 16px;
  line-height: 1.3;
    text-align: center;
      padding: 0;
    margin: 0;
}
@media only screen and (max-width: 599px) {
.note-box-text {
  font-size: 14px;
  } 
}

/* Image –––––––––––––––––––––––––––––––––––––––––––––––––– */

img.center {
  display: block;
  margin: auto;
}

img.fit {
  width: 100%;
  height: auto;
  max-width: 450px;
  margin: auto;
  padding: 0;
}


img.fit-70 {
  width: 70%;
  height: auto;
  margin: auto;
  padding: 0;
}
@media only screen and (max-width: 599px) {
img.fit-70 {
  width: 100%;
  height: auto;
  margin: auto;
  padding: 0;
  }
}


img.wide {
  width: 100%;
  height: auto;
  margin: 20px auto 20px auto;
}

img.wide-with-caption {
  width: 100%;
  height: auto;
  margin: 20px auto 5px auto;
}
.section-image {
  height: 500px;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 100% auto;
  margin: 0 10px 0 10px;
}



/* Team –––––––––––––––––––––––––––––––––––––––––––––––––– */

img.team-member {
  width: 93%;
  height: auto;
  max-width: 450px;
  margin: auto;
  border-radius: 5px;
}

p.team-member-name {
  font-size: 28px;
margin: 5px 0 0px 0;
color: #5c0b06;
}

p.team-member-title {
    /* font-weight: bold; */
    font-size: 22px;
    line-height: 140%;
    padding-bottom: 0px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.phone-number {
  font-size: 18px;
  margin-top: 0px;
  margin-bottom: 5px;
}

.email-address {
  font-size: 18px;
  margin-top: 0px;
  margin-bottom: 5px;
}

/* ___________________________________________________________________ */


* {
  box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
}

.row:after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 0 .5em 0 .5em;
  width: 100%;
}
@media only screen and (max-width: 599px) {
[class*="col-"] {
  padding: 0;
  }
}

@media only screen and (min-width: 600px) {
  .col-s-1 {width: 8.33%;}
  .col-s-2 {width: 16.66%;}
  .col-s-3 {width: 25%;}
  .col-s-4 {width: 33.33%;}
  .col-s-5 {width: 41.66%;}
  .col-s-6 {width: 50%;}
  .col-s-7 {width: 58.33%;}
  .col-s-8 {width: 66.66%;}
  .col-s-9 {width: 75%;}
  .col-s-10 {width: 83.33%;}
  .col-s-11 {width: 91.66%;}
  .col-s-12 {width: 100%;}
}

@media only screen and (min-width: 768px) {
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
}

/* ___________________________________________________________________ */




.top-2 {
  height: auto;
  width: 100%;
  font-size: 16px;
  color: #c89832;
  text-align: right;
  padding: 0;
  font-weight: 100;
  margin-top: 5rem;
  margin-bottom: 5rem;
  border-width: 0;
  border-bottom: 1px solid #E1E1E1; }
}

.reserve-collection-font {
  font-family: 'Tangerine', cursive;
  font-size: 75px;
  font-weight: 700;
  letter-spacing: normal;
}

.reserve-collection-font-2 {
  font-family: "Nanum Gothic", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 130%;
  font-size: 1.9em;
  letter-spacing: normal;
}

.reserve-collection-font-3 {
  font-family: "Nanum Gothic", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 150%;
  letter-spacing: normal;
}

.top-left-text-wrap {
	float: left;
	margin: 5px 30px 6px 0;
}

/* Colors –––––––––––––––––––––––––––––––––––––––––––––––––– */

.black-1 {
  color: #3c3c3c;
}

.red-1 {
  color: #d50303;
}

.gold-1 {
  color: #b59f70;
}


/* Different Size Containers –––––––––––––––––––––––––––––––––––––––––––––––––– */


.half-width-container {
  margin: 30px auto; 
  width: 50%;
  min-width: 372px;
}

.container-10 {
  margin: 30px auto; 
  width: 10%;
  min-width: 372px;
}

.container-20 {
  margin: 30px auto; 
  width: 20%;
  min-width: 372px;
}

.container-30 {
  margin: 30px auto; 
  width: 30%;
  min-width: 372px;
}

.container-40 {
  margin: 30px auto; 
  width: 40%;
  min-width: 372px;
}

.container-50 {
  margin: 30px auto; 
  width: 50%;
  min-width: 372px;
}

.container-60 {
  margin: 30px auto; 
  width: 60%;
  min-width: 372px;
}

.container-70 {
  margin: 30px auto; 
  width: 70%;
  min-width: 372px;
}

.container-80 {
  margin: 30px auto; 
  width: 80%;
  min-width: 372px;
}

.container-90 {
  margin: 30px auto; 
  width: 90%;
  min-width: 372px;
}

.container-100 {
  margin: 30px auto; 
  width: 100%;
  min-width: 372px;
}


/* Hotel ___________________________________________________________________ */

.hotel-wrapper {
  width: 310px;
  height: 130px;
  padding: 15px 6px 10px 18px;
  margin: 10px auto 20px auto;
  border: 1px solid #e1dfdf;
  border-radius: 5px;
}

.house-project-wrapper {
  width: 310px;
  height: 114px;
  padding: 15px 6px 10px 18px;
  margin: 10px auto 20px auto;
  border: 1px solid #e1dfdf;
  border-radius: 5px;
}

.hotel-name {
  font-size: 22px;
  color: #b59f70;
  padding: 0 0 0 0;
  margin: 0;
  line-height: 28px;
}

.feature {
  font-size: 20px;
  color: #91130a;
  padding: 0 0 3px 0;
  margin: 0;
  line-height: 28px;
}

p.description {
  font-size: 16px;
  line-height: 24px;
  color: #464545;
  padding: 0 0 20px 0;
  margin: 0;
}

/* Table ___________________________________________________________________ */


table.blueTable {
  width: 100%;
  text-align: center;
  margin: 15px 0;
}

table.blueTable {
  border-top: 1px solid #DEDEDE;
  padding: 3px 2px;
}

table.blueTable tbody td {
  font-size: 13px;
}

table.blueTable thead {
  background: #acb3bd;
}

table.blueTable thead th {
  font-size: 15px;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
}

table.blueTable tfoot td {
  font-size: 14px;
}

table.blueTable tfoot .links {
  text-align: right;
}

table.blueTable tfoot .links a {
  display: inline-block;
  background: #1C6EA4;
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: 5px;
}

th.table-head {
  font-size:22px;
  height: 22px;
  font-weight: 600;
  border-top: 1px solid #bcbcbc;
  border-bottom: 1px solid #bcbcbc;
  color: #252525;
  text-align: center;
  background: #f9f9f9;
}

th.table-subhead {
  font-size:18px; 
  height: 18px; 
  font-weight: 600; 
  border-top: none; 
  border-bottom: none;
  text-align: center;
  background: #000000;
  color: #ffffff;
}

th.table-subhead-2 {
  font-size:16px; 
  height: 16px;
  background-color: #f3f3f3;
  font-weight: 600; 
  border-top: none; 
  border-bottom: none;
  text-align: center;
}


h3.by {
  font-size: 18.5px; 
  color: #989898; 
  text-align: center;
}



/* Button ––––––––––––––––––––––––– */

button.standard-button {
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    margin: auto;
    background-color: #3286dd;
    color: #ffffff;
    text-decoration: none;
    padding: 5px 30px;
    margin:10px auto 10px auto;
}

button.standard-button:link {
    text-decoration: none;
    color:#ffffff
}

button.standard-button:visited {
    text-decoration:none
}

button.standard-button:hover {
    text-decoration: none;
    background-color:#5ba6f6
}

button.standard-button:active {
    text-decoration:none
}


/* Text Size per Screen Size ––––––––––––––––––––––––– */

h1, h2, h3, h4, h5, h6 {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 300; }

/* Mobile Phones */

@media (max-width: 549px) {
h1 { font-size: 4rem; line-height: 5rem; padding: 0 0 30px 0; font-family: 'Cinzel', serif;}
h1.headline { font-family: 'Spartan', sans-serif; text-align: left;}
h2 { font-size: 2.9rem; line-height: 1.6; letter-spacing: -.15rem; padding: 15px 0 0 0; color:#433535; font-family: 'Spartan', sans-serif; text-align: left;}
h3 { font-size: 2.6rem; line-height: 1.5;  letter-spacing: -.05rem; padding: 10px 0 0 0; color:#393939; font-family: 'Spartan', sans-serif; text-align: left;}
h4 { font-size: 2.3rem; line-height: 1.35; letter-spacing: -.01rem; font-family: 'Spartan', sans-serif; text-align: left;}
h5 { font-size: 2rem; line-height: 1.25; letter-spacing: -.01rem; font-family: 'Spartan', sans-serif; text-align: left;}
h6 { font-size: 1.2rem; line-height: 1.6;  letter-spacing: 0; }
p { font-size: 2.2rem; }
h2.section-heading { font-size: 3rem; line-height: 1.25; letter-spacing: -.15rem; padding: 10px 0 20px 0; color: #5c0b06; text-align: left;}
h2.sub-heading { font-size: 2.6rem; line-height: 1.25; letter-spacing: -.15rem; padding: 10px 0 20px 0; font-family: 'Spartan', sans-serif; text-align: center;}
h2.topic-link { font-size: 2.3rem; margin: 7px 0 10px 0; padding: 0 0 0 0; font-family: 'Spartan', sans-serif; text-align: center; letter-spacing: -.08rem;}
h1.banner-title { font-size: 3.8rem; line-height: 1.6; }
h3.banner-subtitle { font-size: 1.8rem; line-height: 1.7; letter-spacing: -.01rem; }
h4.bold { font-size: 2.4rem; padding: 0 0 0 0; text-align: left; letter-spacing: 0rem; style:bold; font-family: "Roboto", HelveticaNeu, "Helvetica Neu", Helvetica, Arial, sans-serif;}

h3.by { font-size: 15.4px; }
ul.square li { font-size: 2rem; line-height: 1.5; }
p.main-text { font-size: 2.2rem; }
p.section-link { font-size: 3rem; text-align: center; font-family: 'Cinzel', serif;}

.center-div { width: 100%; margin: 0 auto; }

.table-of-contents { font-size: 1.9rem; font-family: 'Spartan', sans-serif;}
.contents { font-size: 2.1rem; margin: 0 0 18px 40px !important; font-weight: 500; font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;}


ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 1rem;
  font-size: 90%; }

ul li {
  font-size: 2.3rem;
  margin: 0 0 0 0;
  padding: 0 0 12px 0;
  text-align: left;
  line-height: 1.35;
}

.banner-image {
  background-color: #cccccc;
  height: 500px;
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin: 0 0 20px 0;
}

li {
    margin-bottom: 1rem;
    font-size: 2.3rem;
    margin: 0 0 0 0;
    padding: 0 0 12px 0;
    text-align: left;
    line-height: 1.35;
}

}



/* Larger than phablet */

@media (min-width: 550px) { 
  h1 { font-size: 4.5rem; line-height: 6rem; padding: 0 5px 60px 5px; font-family: 'Cinzel', serif;}
  h1.headline { font-family: 'Spartan', sans-serif; text-align: left;}
  h2 { font-size: 3.6rem; letter-spacing: -.15rem; line-height: 1.45; padding: 0 0 0 0; color:#433535; font-family: 'Spartan', sans-serif; text-align: left;}
  h3 { font-size: 2.85rem; line-height: 1.5; letter-spacing: -.11rem; padding: 0 0 5px 0; color:#393939; font-family: "Spartan", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; text-align: left; margin-bottom: 5px;}
  h4 { font-size: 2.5rem; padding: 0 0 0 0; font-family: 'Spartan', sans-serif; text-align: left; letter-spacing: -.13rem;}

  h4.bold { font-size: 2.6rem; padding: 0 0 0 0; text-align: left; letter-spacing: 0rem; style:bold; font-family: "Roboto", HelveticaNeu, "Helvetica Neu", Helvetica, Arial, sans-serif;}

h5 { font-size: 2rem; line-height: 1.25; letter-spacing: -.01rem; font-family: 'Spartan', sans-serif; text-align: left;}
h6 { font-size: 1.2rem; }
p.section-link { font-size: 3rem; text-align: center; font-family: 'Cinzel', serif;}
  h2.topic-link { font-size: 2.3rem; margin: 7px 0 10px 0; padding: 0 0 0 0; font-family: 'Spartan', sans-serif; text-align: center; letter-spacing: -.1rem;}

h2.section-heading { font-size: 3rem; line-height: 1.25; letter-spacing: -.05rem; padding: 10px 0 20px 0; color: #5c0b06; text-align: left;}

.center-div { width: 33.33%; margin: 0 auto; }

.table-of-contents { font-size: 2.4rem !important; font-family: 'Spartan', sans-serif; margin-left: 0;}
.contents { font-size: 2.1rem; margin: 0 0 18px 70px !important; font-weight: 500; font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;}


}


.center-element { width: auto; margin: 0 auto; }


/*  ––––––––––––––––––––––– */


/*
.flex-custom-container {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  background-color: #f7f7f7;
  padding:  0; 
  margin: -20px 0 0 0;
  border-radius: 0;
  align-items: baseline;
  padding: 5px 30px 10px 20px;
  width: auto;
  flex-wrap: nowrap;
}

.flex-custom-container > div {
  width: auto;
  margin: 0;
  padding:  0;
  text-align: center;
  border-radius: 0;
  align-items: baseline;
  vertical-align: middle;
  display: table-cell;
  padding-bottom:  0; 
  padding-top:  0; 
}

.custom-image-container {
  flex-basis: 200px; 
  align-self: center;
  padding:  0;
}

.image-styling {
  border-radius: 0; 
  height: 30px;
  width: 57px;
  margin: 10px 15px 0 0;
}

.custom-text-container {
  text-align: left; 
  padding: 0; 
  margin: 0 15px 0 0;
  vertical-align: middle; 
  display: table-cell;
}

.text-styling {
  padding: 0; 
  margin: 5px 0 0 0;
  font-size: 14px;
}
*/


.flex-container {
  margin: -20px 0 0 0;
  padding: 0 20px 2px 20px;
  background-color: #f7f7f7;
  display: flex;
  flex-direction: row;
}
.flex-item {
    width: 20rem;
    padding: .5rem .5rem .1rem .5rem;
    font-size: 2rem;
    line-height: 1.5;
    text-align: center;  
    margin: 0.375rem; 
}
.flex-image {
  border-radius: 0; 
   flex-basis: 5rem;
}
.image-styling {
  border-radius: 0; 
  width: 57px;
  margin: 5px 15px 5px 0;
}
.flex-text {
   flex-basis: 100%;
   text-align: left;
   font-size: 14px;
   color: #333232;
}

img.finish {
  padding: 20px;
}

.border {
  /*border: 1px solid rgba(221, 221, 221, 0.8); */
  border: 1px solid #dddddd;
}

.border-light {
  border: 1px solid rgba(221, 221, 221, 0.4); 
}

.round {
  border-radius: 5px;
}


/* Text with Line  _______________________ */

h2.hr-center-text {
   width: 100%; 
   text-align: center; 
   border-bottom: 1px solid #dddddd;
   line-height: 0;
   margin: 60px 0;
  font-size: 22px;
} 

h2.hr-center-text span { 
    background:#fff; 
    padding:0 20px;
}

/*  ________________________________________ */




/* Text with Line 2 _______________________ */

h2.hr-center-text-2 {
   width: 100%; 
   text-align: center; 
   border-bottom: 1px solid #dddddd;
   line-height: 0;
   margin: 60px 0;
  font-size: 22px;
} 

h2.hr-center-text-2 span { 
  background: #ffffff;
  padding: 0 20px;
  border-radius: 99px;
  border: 1px solid #dddddd;
  padding: 5px 40px;
}

/*  ________________________________________ */



/* Section Divider _______________________ */

.section-divider {
  width: 100%;
  height: 46px;
  border-top: 1px solid #e3e8ed;
  border-bottom: 1px solid #e3e8ed;
  position: relative;
  margin: 60px 0;
  text-align: center;
  padding: 0;
} 

.section-divider-name { 
  padding: 0 20px;
  border-radius: 99px;
  padding: 5px 40px;
  text-transform: uppercase;
  text-align: center;
  color: #b59f70;
  font-size: 1.6em;
}

/*  ________________________________________ */





.stylized-button {
    display: inline-block;
    border-radius: 99px;
    border: 1px solid #c89832;
    background-color: #f9f9f9;
    text-align: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 100%;
    color: #0478f5;
    width: auto;
  padding: 14px 40px;
  margin: 40px auto 40px auto; 
}

@media only screen and (max-width: 599px) {
.stylized-button {
  width: 100%;
}
} 

.stylized-button-small {
    display: inline-block;
    border-radius: 99px;
    border: 1px solid #c89832;
    background-color: #f9f9f9;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 100%;
    color: #0478f5;
    width: auto;
    padding: 8px 25px;
    margin:0 auto
}

.red {
  color: #D92121;
}


.CutYZ {
-webkit-user-select: none;
font-size: 14px;
}


.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
    margin: 20px 0;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.box-shadow {
  box-shadow: 2px 2px 4px 0px rgba(204,204,204,0.5);
}

.image-shadow {
  box-shadow: 2px 2px 6px -3px rgba(207, 207, 207, 0.5);
}






.phone-text-email {
  color: #c89832;
  font-weight: 800;
}


hr.blank {
  clear: both;
  display: block;
  margin: 0 auto;
  border-style: inset;
  border-width: 1px;
  border-color: transparent;
}

.outer-center {
    text-align: center;
    margin: 0 15px;
    padding:0 15px
}

@media only screen and (max-width: 599px) {
    .outer-center {
        margin: 0;
        padding:0
    }
}

.inner-center {
    display: inline-block;
    text-align: left;
    max-width:900px
}

ul.feature li {
    font-size: 20px !important;
    color: #333;
    text-align: left;
    line-height: 20px;
    margin: 0 0 0 20px !important;
    padding: 0 0 10px !important;
    list-style:square !important
}

.picture-link {
  border: 1px rgb(246, 246, 246) solid;
  background: rgb(246, 246, 246);
}

p.picture-link-text {
    text-align: center;
    margin-bottom: 5px;
}

.margin-spacer-small {
  margin: 0 0 20px 0;
}

.margin-spacer {
  margin: 0 0 40px 0;
}

.margin-spacer-large {
  margin: 0 0 60px 0;
}


.folder-link {
  border: none;
  background: none;
}

p.folder-link-text {
    text-align: center;
    margin-bottom: 0px;
}

.folder-link-spacer {
  margin: 0 0 60px 0;
}


.document-link {
  border: none;
  background: none;
}

p.document-link-text {
    text-align: center;
    margin-bottom: 0px;
}

.document-link-spacer {
  margin: 0 0 60px 0;
}



.folder {
  border: none;
  background-image: url("../images/folder-bridges.png");
    width: 100%;
    height: 350px;
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 5% 0 0 0;

 @media only screen and (max-width: 599px) {
  padding: 20% 0 0 0;
  }
   @media only screen and (max-width: 799px) {
  padding: 0 0 0 0;
  }
}

.folder-gray {
  border: none;
  background-image: url("../images/folder-icon-gray.png");
    width: 100%;
    height: 350px;
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 5% 0 0 0;

 @media only screen and (max-width: 599px) {
  padding: 20% 0 0 0;
  }
  @media only screen and (max-width: 799px) {
  padding: 0 0 0 0;
  }
}


p.folder-text {
    text-align: center;
    margin-bottom: 0px;
    color: #ffffff;
    font-size: 2.5em;
    padding: 40% 10px 0 10px;
    line-height: 1.2;
/* scale for small screens (less than 576px wide) */
@media (max-width: 575.98px) {
  padding: 45% 10px 0 10px;
}
/* scale for medium screens (between 576px and 767.98px wide) */
@media (min-width: 576px) and (max-width: 767.98px) {
  padding: 50% 10px 0 10px;
}
/* scale for large screens (between 768px and 991.98px wide) */
@media (min-width: 768px) and (max-width: 991.98px) {
  padding: 37% 10px 0 10px;
}
/* scale for extra large screens (between 992px and 1199.98px wide) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  padding: 47% 10px 0 10px;
}
/* scale for extra extra large screens (1200px and wider) */
@media (min-width: 1200px) {
  padding: 37% 10px 0 10px;
}
}





.folder-spacer {
  margin: 0 0 40px 0;
}


.board-member-link {
   /* border: 1px rgb(246, 246, 246) solid; */
  /* background: rgb(246, 246, 246); */
  width: 409px;
  height: 590px;
}

p.board-member-link-text {
    text-align: center;
    margin-bottom: 5px;
}

.shadow {
  box-shadow:
  0 2.8px 2.2px rgba(0, 0, 0, 0.034),
  0 6.7px 5.3px rgba(0, 0, 0, 0.048),
  0 12.5px 10px rgba(0, 0, 0, 0.06),
  0 22.3px 17.9px rgba(0, 0, 0, 0.072)
;

  min-height: 200px;
  margin: 0px auto 60px auto;
  background: white;
  border-radius: 5px;
}

.shadow-small {
  box-shadow:
  0 2.8px 2.2px rgba(0, 0, 0, 0.034),
  0 6.7px 5.3px rgba(0, 0, 0, 0.048);

  margin: 0px auto 20px auto;
}


.document {
  border: none;
  background-image: url("../images/document-icon-bridges.png");
    width: 100%;
    height: 535px;
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 10% 0 0 0;
    margin: 0;
}

.document-image {
  border: none;
  background-image: url("../images/document-icon-bridges.png");
    width: 335px;
    height: 550px;
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 10% 0 0 0;
    margin: 0 auto;
}

p.document-image-text {
    text-align: center;
    margin-bottom: 0px;
    color: #0a74db;
    text-align: center;
    font-size: 2.2em;
    padding: 40% 15px 0 15px;
    line-height: 1.2;
    vertical-align: middle;
}


p.document-text {
    text-align: center;
    margin-bottom: 0px;
    color: #0a74db;
    text-align: center;
    font-size: 2.2em;
    padding: 60% 15px 0 15px;
    line-height: 1.2;
    vertical-align: middle;
}

.document-spacer {
  margin: 0 0 60px 0;
}


.document-container {
  background-image: url("../images/document-icon-bridges.png");
    background-repeat: no-repeat;
  background-size: cover;
        display: table-cell;
  height: 427px;
  width: 411px;
        border: none;
        vertical-align: middle;
            text-align: center;
    font-size: 2.25em;
        padding: 0 70px;
    line-height: 1.2;
}


/* Login _______________________ */

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

input[type="text"], input[type="password"] {
  padding: 10px;
  margin: 10px 0;
  width: 100%;
  max-width: 300px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

input[type="submit"] {
    padding: 2px 35px;
    margin: 20px 0;
    background-color: #2997ff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}



/* Login 2 _______________________ */

@import "bourbon";


.wrapper {	
	margin-top: 80px;
  margin-bottom: 80px;
}

.form-signin {
  max-width: 380px;
  padding: 15px 35px 45px;
  margin: 0 auto;
  background-color: #fff;
  border: none;  

  .form-signin-heading,
	.checkbox {
	  margin-bottom: 30px;
	}

	.checkbox {
	  font-weight: normal;
	}

	.form-control {
	  position: relative;
	  font-size: 16px;
	  height: auto;
	  padding: 10px;
		@include box-sizing(border-box);

		&:focus {
		  z-index: 2;
		}
	}

	input[type="text"] {
	  margin-bottom: -1px;
	  border-radius: 3px;
	}

	input[type="password"] {
	  margin-bottom: 20px;
	  border-radius: 3px;
	}
}


/* Footer Content _______________________ */

.footer-container {
  background-color: #e4e4e4;
  margin: 50px auto 0 auto;
  height: auto;
  width: 100%;
  font-size: 12px;
  text-align: center;
  padding: 10px 0 10px 0;
  font-weight: 100;
}


.footer-content-container {
  width: auto; 
  margin: 0 auto;

@media (min-width: 800px) {
  width: 400px;
  }
}

.footer-content-holder {
  margin: 0 auto; 
  width: 500px;

@media only screen and (max-width: 599px) {
  width: 400px;
  }
}


.footer-address {
width: 280px; 
height: auto; 
margin: 15px auto 15px auto; 
font-size: 1.3em; 
text-align: left; 
line-height: 1.55;
}

.footer-contact-information {
width: 280px; 
height: auto; 
margin: 15px auto 15px auto; 
font-size: 1.3em; 
text-align: left; 
line-height: 1.6;
}

.management-style {
 font-size: 1.5em; 
 text-align: centered; 
 line-height: 1.1; 
 margin: 5px 0 5px 0;
 font-family: "Spartan", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*  ____________________________________ */


.right-arrow {
height: 25px; 
width: 25px; 
margin: 0 5px 0 0;
vertical-align: -12%;
}


.signature {
font-family: 'Corinthia', cursive;
font-size: 3.8em;
color: rgb(1, 1, 102);
}

ul.bullet-right-arrow li {
  font-size: 26px;
  list-style-type: none;
  padding: 0 0 17px 0;
  margin: 0 0 0 0;
  background: url(../images/right-arrow.png) 0px 3px;
  background-repeat: no-repeat;
  padding-left: 35px;
  background-size: 27px 27px;
  line-height: 1.2;

  @media only screen and (max-width: 599px) {
      font-size: 16px } 
}


.table-simple {
    width:100%;
    font-size:14px;
    border-collapse:collapse;
    }
    
.table-simple th {
    vertical-align:middle;
    text-align:left;
    padding: 3px 5px 3px 5px;
    }
    
.table-simple td {
    vertical-align:middle;
    text-align:left;
    padding: 3px 5px 3px 5px;
    }
    

th td.width-30 {
  width: 30%;
}

th td.width-35 {
  width: 35%;
}

th td.width-40 {
  width: 40%;
}

th td.width-45 {
  width: 45%;
}

th td.width-50 {
  width: 50%;
}

th td.width-55 {
  width: 55%;
}

th td.width-60 {
  width: 60%;
}


img.wide {
  height: auto;
  width: 100%;
  max-width: 720px;
  margin: auto;
  display: block; 
}

.vertical-padding {
padding: 35px 0;
}

.vertical-margin-small {
margin: 10px 0;
}

.vertical-margin-medium {
margin: 20px 0;
}

.vertical-margin-large {
margin: 30px 0;
}

.officer-name {
 font-size: 1.5em; font-weight: 600; margin: 5px 0 5px 0; padding: 5px 0 5px 0; line-height: 1.1;
}

.officer-bio {
 font-size: 1.1em;
}


.div-centered {width: 100%; margin: 0 auto;}




.horizontal-rule-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    position:relative;
}

.horizontal-rule {
    flex-grow: 1;
    border: none;
    height: 1px;
    background-color:#d9d9d9;
}

.scroll-to-top {
    background: #fff;
    border-radius: 100%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    color: #d5d5d5;
    font-weight: 800;
    font-size: 16pt;
    line-height: 1;
    padding: 6px 0 0;
    border:1px solid #dedede;
}

.scroll-to-top:hover {
    background: #5d9fe4;
    color: #fff;
    border:none;
}



.main-button {
    display: inline-block;
    border-radius: 8px;
    border: 1px solid #c89832;
    background-color: #fffef9;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 18px;
    color: #2379d1;
    width: 33.33%;
    padding: 11px 25px;
    margin: 15px 3px;
    text-align: center;
    text-decoration:none;
}

@media only screen and (max-width: 599px) {
    .main-button {
        width: 100%;
        margin:15px auto;
    }
}

.main-button:hover {
    color: #3a97fb;
    background-color: #fefae7;
    outline: 3px solid #f9d411;
    border: 3px solid #fff;
    line-height: 14px;
}

/* Hide Div on Small Screen ––––––––––––––––––––––––––––– */


.show {
    display:block;
}

@media only screen and (max-width: 768px) {
    .show {
        display:none;
    }
}


.hide {
    display:none;
}

@media only screen and (max-width: 768px) {
    .hide {
        display:block;
    }
}

/* –––––––––––––––––––––––––––––––––––––––––––––––––––––––– */



video {
  max-width: 100%;
  height: auto;
}