* {
  margin: 0;
  padding: 0;
}

html { height: 100%; }

body {
  background-color: #fff;
  box-sizing: border-box;
  font: 300 18px "Roboto", sans-serif;
  font-optical-sizing: auto;
  min-height: 100%;
  padding-bottom: 450px;
  position: relative;
}

h1 {
  font: 400 60px "Libre Caslon Text", serif;
  margin-bottom: 1em;
}

h2 {
  font: 400 60px "Libre Caslon Text", serif;
  font-weight: 300;
  margin-bottom: 1em;
}

h2::after {
  border-bottom: 8px solid #866b59;
  content: '';
  display: block;
  padding-bottom: 0.8em;
  width: 264px;
}

h2.center { text-align: center; }

h2.center::after { margin: 0 calc(50% - 132px); }

h3 {
  font: 400 36px "Libre Caslon Text", serif;
  margin-bottom: 0.8em;
}

h4 {
  font-size: 32px;
  font-weight: 400;
  margin: 1em 0 0.5em;
}

h5 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 0.6em;
}

p {
  line-height: 1.6em;
  margin: 1em 0;
}

p:first-of-type { margin-top: 0; }

p:last-of-type { margin-bottom: 0; }

p.larger {
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
}

img { vertical-align: middle; }

a { transition: 300ms; }

a.button {
  border: 1px solid #211f1f;
  border-radius: 32px;
	color: #211f1f !important;
	display: inline-block;
  font-size: 18px;
  font-weight: 400;
	padding: 15px 30px;
	text-decoration: none;
}

a.button.light {
  border-color: #fff;
  color: #fff !important;
}

a.button.dark {
  background-color: #211f1f;
  border: none;
  color: #fff !important;
}

a.button:hover { background-color: #866b59; }

.button-wrapper { margin-top: 2em; }

.hide { opacity: 0; }

.pull-left {
  float: left;
  margin: 0 2em 2em 0;
}

.pull-right {
  float: right;
  margin: 0 0 2em 2em;
}

hr {
  background-color: #e1e1e1;
  border: none;
  clear: both;
  height: 1px;
  margin: 2em 0;
}

/* ==========================================================================
   Header
   ========================================================================== */

header {
  position: sticky;
    top: 0;
    right: 0;
    left: 0;
  z-index: 100;
}

nav {
  display: grid;
  gap: 20px;
  grid-template-columns: max-content 1fr;
  padding: 80px;
  place-items: center end;
  position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

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

#menu-main-menu {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
  gap: 20px 60px;
  list-style: none;
}

#menu-main-menu a {
  font-size: 18px;
  font-weight: 400;
}

#menu-main-menu li:not(.button) a::after {
  border-bottom: 3px solid #866b59;
  content: '';
  display: block;
  margin-bottom: -7px;
  padding-bottom: 7px;
  transform: scaleX(0);
  transition: transform 300ms ease-in-out;
}

#menu-main-menu li:not(.button) a:hover::after { transform: scaleX(0.9); }

#menu-main-menu li.button a {
  background-color: #211f1f;
  border-radius: 32px;
  color: #fff !important;
	display: inline-block;
  font-size: 18px;
  font-weight: 400;
	padding: 15px 30px;
	text-decoration: none;
}

#menu-main-menu li.button a:hover { background-color: #866b59; }

/* ==========================================================================
   Mobile Menu
   ========================================================================== */

#mainMenu {
  background-color: #1f1f1f;
  height: 100vh;
  overflow-x: hidden;
  position: fixed;
    top: 0;
    right: 0;
  transition: 1s;
  width: 0;
  z-index: 998;
}

#mainMenu.show { width: 100%; }

#mainMenu ul { list-style: none; }

#mainMenu .mobile-menu { margin: 0 30px; }

#mainMenu .mobile-menu:first-child { margin-top: 30px; }

.mobile-menu li ul {
  display: none;
  margin-bottom: 15px;
}

.mobile-menu a {
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: 400;
  margin: 20px 0;
  text-decoration: none;
  white-space: nowrap;
}

/* ==========================================================================
    Mobile Menu Toggle
   ========================================================================== */
  
#openMenu {
  background-color: #1f1f1f;
  display: none;
  padding: 20px 15px;
  position: fixed;
    top: 0;
    right: 0;
  transition: .5s;
  width: 41px;
  z-index: 999;
}

#openMenu.open {
  background-color: #1f1f1f;
  color: #fff;
}

#menuTitle {
  position: relative;
  text-align: center;
  transition: .5s;
}
  
/* ==========================================================================
    Mobile Menu Icon Transition Effect
   ========================================================================== */
  
#btn {
  cursor: pointer;
  display: block;
  height: 30px;
  position: relative;
  transition: .5s;
  z-index: 200;
}

#btn .icon,
#btn .icon::before,
#btn .icon::after {
  background: #fff;
  content: '';
  display: block;
  height: 2px;
  position: absolute;
  transition: top ease .5s .5s, transform ease .5s;
  width: 41px;
}

#btn .icon {
  top: 14px;
  left: 2px;
}

#btn .icon::before { top: -8px; }

#btn .icon::after { top: 8px; }

#btn.active .icon { background: transparent; }

#btn.active .icon::before { transform: rotate(45deg); }

#btn.active .icon::after { transform: rotate(-45deg); }

#btn.active .icon::before,
#btn.active .icon::after {
  background-color: #fff;
  top: 0;
  transition: top ease .5s, transform ease .5s .5s;
}

/* ==========================================================================
   Banner
   ========================================================================== */

.banner {
  position: relative;
  z-index: 0;
}

.banner img { max-width: 100%; }

.banner h1 {
  font: 400 80px "Libre Caslon Text", serif !important;
  margin-bottom: 30px !important;
}

.banner .banner-overlay p {
  font: 300 30px "Roboto", sans-serif !important;
  margin-bottom: 30px !important;
}

.banner .button {
  font-size: 20px !important;
  padding: 15px 30px !important;
}

div.banner-overlay {
  max-width: 1200px;
  text-align: center !important;
}

/* ==========================================================================
   Content
   ========================================================================== */

.frontpage-wrapper { background-color: #211f1f; }

.frontpage {
  align-items: center;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 800px 800px 1fr;
  padding: 120px 0;
}

.frontpage .text {
  grid-column: 2;
  padding-right: 80px;
}

.frontpage .image { grid-column: 3 / span 2; }

.frontpage .image img { width: 100%; }

.content {
  margin: 120px auto;
  max-width: 1600px;
  overflow: hidden;
  padding: 0 20px;
}

.content img { max-width: 100%; }

.content a { color: #866b59; }

.left-image {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 10fr 9fr;
  margin-bottom: 80px;
}

.right-image {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 9fr 10fr;
  margin-bottom: 80px;
}

/* ==========================================================================
   Category
   ========================================================================== */

.post {
  border-top: 1px solid #e1e1e1;
  padding: 40px 0;
}

.post:first-of-type {
  border-top: none;
  padding-top: 0;
}

.post-info {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
  list-style: none;
  font-style: italic;
  margin-bottom: 1em;
}

.post-info li {
  list-style: none;
  margin: 0 !important;
}

.post-info span {
  font-weight: 600;
  margin-right: 5px;
}

.more-link {
  border: 1px solid #211f1f;
  border-radius: 32px;
	color: #211f1f !important;
	display: inline-block;
  font-size: 18px;
  font-weight: 400;
	padding: 10px 20px;
	text-decoration: none;
}

.more-link:hover { background-color: #866b59; }

.blog-posts h2 a {
  color: #000;
  text-decoration: none;
}

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

.fm_empty_margin { margin-top: 0 !important; }

.fm-form-container.fm-theme1 .fm-form,
input[type="text"],
textarea {
  font-family: 'Roboto', sans-serif !important;
  font-weight: 300;
}

.fm-form-container.fm-theme1 .fm-form .button-submit { font: 400 16px 'Roboto', sans-serif !important; }

.iti { display: block !important; }

.fm-form .wd-flex { display: block !important; }

.fm-form .fm-header-bg, .fm-form .wdform-field:not([type="type_hidden"]) { padding: 10px 0 !important; }

.wdform_section,
.wdform-element-section { margin: 0 !important; }

.wdform_footer { display: none; }

.section4 .fm-form-container.fm-theme1 .fm-form .button-submit {
  border: 1px solid #fff !important;
  transition: 300ms;
}

.section4 .fm-form-container.fm-theme1 .fm-form .button-submit:hover { background-color: #866b59 !important; }

.fm-form-container .fm-scrollbox .fm-form { background-color: #866b59 !important; }

.fm-form-container.fm-theme1 .fm-form .fm-header-title { font: 400 30px "Libre Caslon Text", serif !important; }

/* ==========================================================================
   Section 1
   ========================================================================== */

.section1 {
  margin: 120px auto;
  max-width: 1600px;
  padding: 0 20px;
  text-align: center;
}

.section1 .grid {
  display: grid;
  gap: 80px;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
}

.section1 .icon { margin-bottom: 2.5em; }

/* ==========================================================================
   Section 2
   ========================================================================== */

.section2-wrapper { background-color: #f3f3f3; }

.section2 {
  margin: 120px auto;
  padding: 120px 20px;
}

.section2 h2 { margin-bottom: 0; }

.section2 .intro {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: max-content 1fr;
  margin: 0 auto 80px;
  max-width: 1600px;
}

.section2 .grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

.section2 .grid-item { position: relative; }

.section2 .image {
  position: relative;
  z-index: 0;
}

.section2 img { width: 100%; }

.section2 .text {
  align-items: center;
  background-color: rgba(0,0,0,0.3);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  padding: 20px;
  position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  text-align: center;
  transition: 300ms;
  z-index: 100;
}

.section2 .text:hover { opacity: 1; }

.section2 .button-wrapper {
  margin-top: 80px;
  text-align: center;
}

/* ==========================================================================
   Section 3
   ========================================================================== */

.section3 {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: repeat(2, 1fr);
  margin: 120px auto;
  max-width: 1600px;
  padding: 0 20px;
}

/* ==========================================================================
   Section 4
   ========================================================================== */

.section4-wrapper { background-color: #211f1f; }

.section4 {
  align-items: center;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 800px 800px 1fr;
  padding: 120px 0;
}

.section4 .text { padding-left: 80px; }

.section4 .image { grid-column: 1 / span 2; }

.section4 .image img { width: 100%; }

/* ==========================================================================
   Section 5
   ========================================================================== */

.section5 { height: 400px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer-wrapper {
  background-color: #544337;
  color: #fff;
  position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
}

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

.footer-wrapper a:hover { color: #cdb7a9; }

.footer {
  display: grid;
  gap: 30px 120px;
  grid-template-columns: max-content 1fr max-content;
  margin: 0 auto;
  max-width: 1600px;
  padding: 60px 20px;
}

.footer .menu {
  columns: 2;
  line-height: 1.5em;
  list-style: none;
}

.footer .social {
  display: flex;
  flex-flow: row nowrap;
  gap: 10px;
  margin: 30px 0;
}

.footer .social .fa-brands {
  background-color: #fff;
  border-radius: 16px;
  box-sizing: border-box;
  color: #6e5747;
  padding: 7px;
  text-align: center;
  transition: 300ms;
  width: 32px;
}

.footer .social .fa-brands:hover { background-color: #cdb7a9; }

.footer .logos {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
}

.copyright {
  border-top: 1px solid #6e5747;
  padding: 20px;
  text-align: center;
}

/* ==========================================================================
   Mobile
   ========================================================================== */

@media only screen  
and (max-width : 1899px) {

nav { padding: 60px !important; }

#menu-main-menu { gap: 20px 40px; }

}

@media only screen  
and (max-width : 1619px) {

body { padding-bottom: 0; }

h2 { font-size: 48px; }

.pull-right,
.pull-left { max-width: 50%; }

.pull-right img,
.pull-left img { width: 100%; }

nav {
  grid-template-columns: auto;
  padding: 40px !important;
  place-items: center;
}

#menu-main-menu { justify-content: center; }

.banner-overlay { display: none; }

.frontpage {
  grid-template-columns: repeat(2, 1fr);
  padding: 80px 0 80px 20px;
}

.frontpage .text,
.frontpage .image { grid-column: auto; }

[class*="wrapper"] [class*="section"] { margin: 80px auto; }

.section2,
.section4 { padding: 80px 20px; }

.section4 {
  grid-template-columns: repeat(2, 1fr);
  padding: 80px 20px 80px 0;
}

.section4 .text,
.section4 .image { grid-column: auto; }

.section5 { margin: 0 !important; }

.footer-wrapper { position: relative; }

.footer { grid-template-columns: auto; }

.footer .menu { columns: 1; }

}

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

.frontpage,
.section4 {
  grid-template-columns: auto;
  gap: 40px 0;
  padding: 80px 20px;
}

.frontpage .text,
.section4 .text { padding: 0; }

.section2 .intro { grid-template-columns: auto; }

.section3 { grid-template-columns: auto; }

}

@media only screen  
and (max-width : 767px) {

h2 { font-size: 40px; }

.pull-right,
.pull-left {
  float: none;
  margin: 1em 0;
  max-width: none;
}

header { position: relative; }

nav {
  background: transparent !important;
  position: absolute !important;
}

header .logo { margin-right: 71px; }

.logo img { max-width: 100%; }

nav { justify-items: start; }

.main-menu { display: none; }

#openMenu { display: block; }

[class*="wrapper"] [class*="section"] { margin: 60px auto; }

.frontpage,
.section2,
.section4 { padding: 60px 20px; }

.section1 .grid,
.section2 .grid { grid-template-columns: auto; }

}

@media only screen  
and (max-width : 479px) {

nav { padding: 30px !important; }

}