html, body {
  font-family: Arial Regular, Arial, Helvetica Neue, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  color: #504a37;
  background: rgba(125, 113, 97, 0.2);
  overflow-x: hidden; }

html {
  font-size: 62.5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 100vh; }

body {
  text-rendering: optimizeLegibility;
  font-size: 1.6em;
  line-height: 1.6;
  font-weight: 400;
  min-height: 100vh;
  padding-bottom: 1em; }

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

.hidden {
  display: none !important; }

h1, h2, h3, h4, h5 {
  color: #ff5423;
  margin: 0;
  padding: 0;
  font-weight: 500;
  line-height: 1.2em; }

h1 {
  font-size: 5rem;
  padding: 2rem 0 1rem 0; }

h2 {
  font-size: 4rem;
  padding: 2rem 0 1rem 0; }

h3 {
  font-size: 2.5rem;
  margin: 0.5em 0;
  color: #504a37; }

a {
  color: inherit;
  text-decoration: none; }

.colOrange {
  color: #ff5423; }

hr {
  border: 0;
  height: 2px;
  width: 95%;
  background: rgba(125, 113, 97, 0.25);
  padding: 0;
  margin: 2em auto; }

a:hover {
  text-decoration: underline; }

header, main, footer, #mobileNav {
  width: 95%;
  max-width: 1200px;
  background: white;
  margin: 0 auto; }

main {
  min-height: 80vh;
  padding: 0 5rem;
  padding-bottom: 4em; }
  @media only screen and (max-width: 55em) {
    main {
      padding: 0 2rem; } }
  main div.full-width {
    margin: 0 -5rem; }
    @media only screen and (max-width: 55em) {
      main div.full-width {
        margin: 0 -2rem; } }

.image-grid {
  width: 100%;
  max-width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .image-grid img {
    max-width: 100%;
    height: auto; }

ul.osquares {
  padding-left: 0; }
  ul.osquares li {
    list-style-type: none;
    position: relative;
    padding-left: 4rem;
    margin-bottom: 2rem; }
    ul.osquares li::before {
      content: '';
      display: block;
      width: 20px;
      height: 20px;
      background-color: #ff5423;
      position: absolute;
      left: 0;
      top: 0; }

ul.osquares.brown li::before {
  background-color: #504a37; }

.hero {
  max-height: 250px; }
  .hero img {
    max-width: 100%;
    height: auto; }

.slider {
  width: 100%; }
  .slider img {
    display: none;
    max-width: 100%;
    height: auto; }
    .slider img:first-of-type {
      display: block; }

.fade-bg {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#d2cdc1));
  background: linear-gradient(to bottom, #fff, #d2cdc1); }

.left-padded {
  padding-left: 5vw; }
  @media only screen and (max-width: 55em) {
    .left-padded {
      padding-left: 0; } }

header {
  padding: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative; 
  align-items: center;
}

  header .logo {
    max-height: 200px;
    width: 35%; 
  }
    @media only screen and (max-width: 55em) {

      header {
        padding: 1em;
      }
      header .logo {
        width: 100%;
        text-align: center; } 
      
      }
    header .logo img {
      max-width:100%;
      height: auto;
    }
  header nav#mainNav {
    width: 65%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    margin-bottom: 1.5em; }
    @media only screen and (max-width: 55em) {
      header nav#mainNav {
        display: none; } }
    header nav#mainNav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding-left: 1.5em;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; 
              justify-content: center;}
      header nav#mainNav ul li {
        margin: 0 0.5em;
        color: #ff5423;
        position: relative; }
        header nav#mainNav ul li::after {
          content: '';
          width: 1px;
          height: 50%;
          background-color: rgba(125, 113, 97, 0.25);
          display: block;
          position: absolute;
          right: -0.5em;
          top: 25%; }
        header nav#mainNav ul li:last-child::after {
          content: none;
          display: none;
          width: 0; }
    header nav#mainNav a {
      padding: 0.8em 1.5em;
      text-decoration: none !important;
      display: block;
      width: 100%;
      height: 100%;
      text-align: center;
      color: inherit;
      font-weight: 500;
      font-size: 1.1em;
      line-height: 0.9em;
      -webkit-transition: all 200ms;
      transition: all 200ms; }
    header nav#mainNav a:hover, header nav#mainNav a.selected {
      background-color: #ff5423;
      color: #fff;
      cursor: pointer; }
  header .line {
    position: absolute;
    bottom: 0;
    left: -25vw;
    width: 200vw;
    background-color: #fff;
    height: 3px;
    z-index: -1;
  }

  #mobileIcon {
    background-size: contain;
    margin-left: auto; 
    display: none;
    margin-left: 1.5em;
    padding: 0.5em;
    padding-bottom: 0.35em;
    border: 2px solid #ff5423;
  }

  @media only screen and (max-width: 55em) {
    #mobileIcon {
      display: block; } 
    }

  #mobileIcon i {
    text-align: center;
    font-size: 30px;
    color: #ff5423;
  }


#mobileNav {
  display: none;
  background-color: #fff;
  padding: 0.5em 0; }
  @media only screen and (max-width: 55em) {
    #mobileNav {
      display: block; } }
  #mobileNav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 0px;
    -webkit-animation-duration: 100ms;
            animation-duration: 100ms;
    -webkit-transition: all 150ms;
    transition: all 150ms;
    background: -webkit-gradient(linear, right top, left top, from(transparent), to(rgba(125, 113, 97, 0.15)));
    background: linear-gradient(to left, transparent, rgba(125, 113, 97, 0.15)); }
    #mobileNav ul.toggle {
      height: 265px; }
      #mobileNav ul.toggle li {
        display: block; }
    #mobileNav ul li {
      width: 100%;
      display: none; }
      #mobileNav ul li a {
        text-align: right;
        display: block;
        width: 70%;
        height: 100%;
        border-bottom: 2px solid #d3cfc3;
        margin: 0 auto;
        padding: 0.8em;
        text-align: center;
        color: #ff5423;
        font-weight: 500; }
      #mobileNav ul li:last-child a {
        border-bottom: unset; }
        #mobileNav ul li a.selected { font-weight: 600;}

footer {
  padding: 5rem 1.5rem 3rem 1.5rem;
  background-image: url("../img/footer_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #504a37;
  position: relative; }
  footer nav {
    margin-bottom: 2em; }
    footer nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      footer nav ul li {
        padding: 0.8em 1.5em;
        margin: 0 0.5em;
        color: #fff;
        position: relative; }
        footer nav ul li::after {
          content: '';
          width: 1px;
          height: 50%;
          background-color: #fff;
          display: block;
          position: absolute;
          right: -0.5em;
          top: 25%; }
        footer nav ul li:last-child::after {
          content: none;
          display: none;
          width: 0; }
        footer nav ul li:hover {
          color: #ff5423;
          cursor: pointer; }
    footer nav a {
      text-decoration: none !important;
      display: block;
      width: 100%;
      height: 100%;
      text-align: center;
      color: inherit;
      font-weight: 500;
      line-height: 0.9em;
      font-size: 1.5rem; }
  footer .icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 3rem; }
    footer .icons .icon {
      margin: 0 2em; }
  footer span.h2 {
    display: block;
    text-align: center;
    color: #fff;
    opacity: 0.6;
    text-transform: uppercase;
    font-size: 1.5em;
    margin-bottom: 3rem; }
  footer span.copy {
    display: block;
    text-align: center;
    color: #fff;
    opacity: 0.9;
    font-size: 1em; }
  footer .line {
    position: absolute;
    top: 0;
    left: -25vw;
    width: 200vw;
    background-color: #fff;
    height: 3px; }

input, textarea {
  width: 100%;
  background-color: #fff;
  color: #999;
  padding: 0.8em;
  border: none; }

input:focus, textarea:focus {
  color: #000; }

.input-group {
  width: 100%;
  position: relative;
  padding-bottom: 2rem; }
  .input-group span {
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    right: 2%;
    top: 15%; }
    .input-group span img {
      width: 100%;
      height: auto; }

button {
  padding: 0;
  margin: 0;
  background: #fff;
  color: #ff5423;
  border: 1px solid #ff5423;
  padding: 0.6em 1.4em;
  cursor: pointer;
  -webkit-transition: all 200ms;
  transition: all 200ms; }
  button:hover {
    background-color: #ff5423;
    color: #fff; }

    #slider-home-control {
      border: none;
    }

  #backtotop {
      position: fixed;
      z-index: 10;
      bottom: 20px;
      right: 20px;
      padding: 10px 10px;
      font-size: 22px;
      background-color: rgba(0,0,0,0.5);
      cursor: pointer;
      color: #eee;
  }