/**
 * styles.scss
 * ---
 * Main `sass` file. Import here `sass` files
 */
/**
 * modules/mixins
 * ---
 */
/**
 * partials/reset
 * ---
 * Reset file
 * NOTE: also `normalize.css` is used
 */
*,
*:after,
*:before {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: "arial";
  font-size: 16px;
  line-height: 1.2em;
  color: #1A1A1A;
  background-color: #fff;
}

html, body {
  height: 100%;
}

h1, h2, h3, h4 {
  font-family: "arial";
}

img {
  max-width: 100%;
  vertical-align: middle;
}

a {
  color: #1A1A1A;
  text-decoration: none;
}
a:focus, a:hover {
  text-decoration: underline;
}
input[type=text],
input[type=search] {
  font-size: inherit;
  line-height: inherit;
}

html, body {
  padding: 0;
  margin: 0;
  color: #1A1A1A;
  font-family: "Inter";
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}

body.no-scroll {
  overflow: hidden;
}

sup {
  font-size: 0.6em;
  top: -0.6em;
  color: inherit;
}

.button {
  display: inline-block;
  padding: 11px 15px;
  text-align: center;
  background-color: #E06327;
  color: #fff;
  transition: all 0.2s;
}
.button:hover {
  background-color: #AC2F24;
  text-decoration: none;
}
.divider {
  width: 100px;
  border-bottom: solid 2px;
  border-color: #E06327;
  margin-top: 20px;
}

h1 {
  color: #1A1A1A;
  font-family: "Inter";
  font-size: 44px;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.66px;
  text-transform: uppercase;
}

h2 {
  color: #1A1A1A;
  font-family: "Inter";
  font-size: 44px;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.66px;
  text-transform: uppercase;
}

h3 {
  color: #1A1A1A;
  font-family: "Inter";
  font-size: 30px;
  font-weight: 600;
  line-height: normal;
}

h4 {
  color: #E06327;
  font-family: "Inter";
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.48px;
  line-height: normal;
}

h5 {
  color: #1A1A1A;
  font-family: "Inter";
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}

h6 {
  color: #1A1A1A;
  font-family: "Inter";
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
}

p {
  color: #1A1A1A;
  font-family: "Inter";
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}

ul, ol {
  font-size: 16px;
  font-weight: 400;
  line-height: 114.85%;
  margin-top: 0;
  margin-bottom: 0;
}
ul li, ol li {
  line-height: 1.5em;
}

@media screen and (max-width: 720px) {
  html, body {
    font-size: 14px;
  }
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 38px;
  }
  h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 650px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 400px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 28px;
  }
}
section.main .inner .body .shortcode-btn {
  display: block;
  margin-top: 50px;
}

section {
  position: relative;
}

.inner {
  position: relative;
  width: 100%;
  max-width: 1420px;
  padding: 70px 60px;
  margin: 0 auto 50px auto;
}
@media screen and (max-width: 900px) {
  .inner {
    padding: 30px;
  }
}
header {
  width: 100% !important;
  position: absolute;
}
header .inner {
  display: flex;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
  transition: all 0.2s;
  position: absolute;
  right: 0;
  max-width: 415px;
}
header .inner .logo {
  width: 90%;
  max-width: 290px;
  padding: 28px;
  top: 0;
  left: 60px;
  transition: all 0.2s;
  z-index: 2;
}
header .inner .logo img {
  width: 100%;
  transition: all 0.2s;
}
header .inner::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  background: #fff;
  z-index: 1;
  --p: 50px; /* control the shape (can be percentage) */
  clip-path: polygon(0 0, 100% 0, 100% 100%, var(--p) 100%);
  transition: all 0.2s;
}
header .main-nav-container {
  position: absolute;
  top: 0;
  left: -100vw;
  z-index: -1;
  width: 100%;
  min-height: 100vh;
  background-color: rgba(255, 255, 255, 0.98);
  padding: 24px;
}
header .main-nav-container.open {
  left: 0vw;
  transition: all 0.2s;
}
header .main-nav-container .main-nav {
  list-style: none;
  padding: 10px 0 0;
  margin: 0;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  gap: 20px;
  z-index: 10;
  transition: all 0.2s;
  align-items: center;
}
header .main-nav-container .main-nav li {
  color: #4E150E;
  font-size: 32px;
  font-weight: 700;
  transition: all 0.2s;
  position: relative;
}
header .main-nav-container .main-nav li a {
  display: block;
  padding: 5px 0;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
header .main-nav-container .main-nav li a.no-link {
  cursor: default;
}
header .main-nav-container .main-nav li a.active {
  color: #E06327;
}
header .main-nav-container .main-nav li .sub {
  position: absolute;
  background-color: #1A1A1A;
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: none;
  box-shadow: 0px 10px 19px 0px rgba(0, 0, 0, 0.1);
}
header .main-nav-container .main-nav li .sub li a {
  color: #fff;
  padding: 10px 20px;
}
header .main-nav-container .main-nav li .sub li:hover {
  background-color: white;
}
header .main-nav-container .main-nav li .sub li:hover a {
  color: #1A1A1A;
}
header .main-nav-container .main-nav li:hover > a {
  color: #E06327;
}
header .main-nav-container .main-nav li:hover > .sub {
  display: block;
}
header .main-nav-container .main-nav li.mobile {
  display: none;
}
header #nav-icon4 {
  display: block;
  width: 32px;
  height: 15px;
  z-index: 3;
  margin-right: 25px;
  margin-top: 27px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}
header #nav-icon4 span {
  display: block;
  position: absolute;
  height: 3px;
  border-radius: 3px;
  width: 100%;
  background: #290606;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
header #nav-icon4 span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
header #nav-icon4 span:nth-child(2) {
  top: 8px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
header #nav-icon4 span:nth-child(3) {
  top: 16px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
header #nav-icon4.open span:nth-child(1) {
  background: #290606;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -2px;
  left: 4px;
}
header #nav-icon4.open span:nth-child(2) {
  background: #290606;
  width: 0%;
  opacity: 0;
}
header #nav-icon4.open span:nth-child(3) {
  background: #290606;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 20px;
  left: 4px;
}
header.uk-sticky-below {
  top: 0px !important;
  position: fixed !important;
}
header.uk-sticky-below .inner {
  max-width: 300px;
  /*.main-nav-container{
  	.main-nav{
  		padding: 0;

  		li a{
  			padding: 20px 10px;
  		}
  	}
  }*/
}
header.uk-sticky-below .inner .logo {
  max-width: 200px;
  padding: 20px;
}
header.uk-sticky-below .inner::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  background: #fff;
  z-index: 1;
  --p: 40px; /* control the shape (can be percentage) */
  clip-path: polygon(0 0, 100% 0, 100% 100%, var(--p) 100%);
}
header.uk-sticky-below .inner #nav-icon4 {
  margin-top: 20px;
}
@media screen and (max-width: 720px) {
  header .inner, header.uk-sticky-below .inner {
    max-width: 100%;
    justify-content: space-between;
  }
  header .inner .logo, header.uk-sticky-below .inner .logo {
    max-width: 150px;
    padding: 20px;
  }
  header .inner::after, header.uk-sticky-below .inner::after {
    --p: initial;
    clip-path: none;
  }
  header .inner #nav-icon4, header.uk-sticky-below .inner #nav-icon4 {
    margin-top: 20px;
  }
}

footer {
  background: #360B06;
  box-shadow: 0px 0px 17.8px 0px rgba(0, 0, 0, 0.2) inset;
}
footer .inner {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
footer .inner .logo {
  max-width: 309px;
}
footer .inner .content {
  display: flex;
  flex-direction: column;
}
footer .inner .content .social {
  display: flex;
  justify-content: end;
  gap: 12px;
  padding: 0;
  list-style: none;
}
footer .inner .content .social li {
  max-width: 30px;
}
footer .inner .content p {
  color: #fff;
}
@media screen and (max-width: 750px) {
  footer .inner {
    flex-direction: column;
    align-items: center;
  }
  footer .inner .logo {
    max-width: 50%;
  }
  footer .inner .content {
    gap: 10px;
    flex-direction: row-reverse;
  }
  footer .inner .content .social {
    justify-content: center;
    gap: 12px;
    padding: 0;
    list-style: none;
  }
  footer .inner .content .social li {
    max-width: 30px;
  }
  footer .inner .content p {
    color: #fff;
  }
}

/**
 * partials/print
 * ---
 * Print version
 * (from https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css)
 */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important; /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group; /* h5bp.com/t */
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
section.fc-page-header {
  position: relative;
  overflow: hidden;
  height: 35vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
section.fc-page-header::before {
  position: absolute;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  opacity: 0.64;
  background: linear-gradient(180deg, rgba(78, 21, 14, 0) 0%, #4E150E 81.61%);
}
section.fc-page-header .inner {
  height: 100%;
  margin-bottom: 0;
  position: relative;
}
section.fc-page-header .inner .title-wrapper {
  position: absolute;
  bottom: 50px;
}
section.fc-page-header .inner .title-wrapper h1 {
  color: #fff;
  margin: 0;
  padding: 0;
}
section.fc-page-header .inner .title-wrapper .divider {
  width: 100px;
  border-bottom: solid 2px;
  border-color: #E06327;
  margin-top: 20px;
}
@media screen and (max-width: 720px) {
  section.fc-page-header {
    height: 25vh;
  }
  section.fc-page-header .inner {
    margin-bottom: 0;
    position: relative;
  }
  section.fc-page-header .inner .title-wrapper {
    bottom: 30px;
  }
}

section.fc-page-header-large-background {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
section.fc-page-header-large-background .inner {
  padding-top: 10%;
  padding-bottom: 60vh;
  z-index: 1;
}
section.fc-page-header-large-background .inner .content {
  position: absolute;
  bottom: 0;
}
section.fc-page-header-large-background .inner .content h1 {
  color: #EAEBEB;
  font-family: "Inter";
  font-size: 70px;
  font-weight: 800;
  line-height: 105.877%;
}
section.fc-page-header-large-background::after {
  position: absolute;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  opacity: 0.64;
  background: linear-gradient(180deg, rgba(78, 21, 14, 0) 45.57%, #4E150E 81.61%);
}
@media screen and (max-width: 720px) {
  section.fc-page-header-large-background .inner {
    padding-top: 10%;
    padding-bottom: 30vh;
  }
  section.fc-page-header-large-background .inner .content h1 {
    font-size: 40px;
  }
  section.fc-page-header-large-background::after {
    position: absolute;
    bottom: 0;
    content: "";
    height: 100%;
    width: 100%;
    opacity: 0.64;
    background: linear-gradient(180deg, rgba(78, 21, 14, 0) 10%, #4E150E 81.61%);
  }
}
@media screen and (max-width: 400px) {
  section.fc-page-header-large-background .inner {
    padding-top: 10%;
    padding-bottom: 24vh;
  }
  section.fc-page-header-large-background .inner .content h1 {
    font-size: 30px;
  }
}

section.fc-form .inner .gform_heading {
  display: none;
}
section.fc-form .inner .body {
  max-width: 550px;
}
section.fc-form .inner .form-wrapper {
  margin-top: 24px;
}
section.fc-form .inner .form-wrapper input, section.fc-form .inner .form-wrapper textarea, section.fc-form .inner .form-wrapper select {
  border: none;
  box-shadow: 3px 4px 9px rgba(0, 0, 0, 0.2);
  font-size: 18px;
  line-height: 1em;
  padding: 22px 20px;
  border-radius: 5px;
}
section.fc-form .inner .form-wrapper input::placeholder, section.fc-form .inner .form-wrapper textarea::placeholder, section.fc-form .inner .form-wrapper select::placeholder {
  color: #B5B5B5;
}
section.fc-form .inner .form-wrapper input[type=file] {
  padding: 0;
  width: auto !important;
}
section.fc-form .inner .form-wrapper .gform-theme--foundation .gform_fields {
  column-gap: 48px !important;
}
section.fc-form .inner .form-wrapper .gform-field-label {
  font-size: 16px;
}
section.fc-form .inner .form-wrapper select {
  padding: 12px;
}
section.fc-form .inner .form-wrapper select[multiple] {
  padding: 10px;
}
section.fc-form .inner .form-wrapper select:focus {
  color: initial;
}
section.fc-form .inner .form-wrapper select option {
  padding: 2px;
}
section.fc-form .inner .form-wrapper input[type=checkbox], section.fc-form .inner .form-wrapper input[type=radio] {
  padding: 0;
  border: solid 1px #ddd;
}
section.fc-form .inner .form-wrapper .flex .ginput_container_checkbox .gfield_checkbox, section.fc-form .inner .form-wrapper .flex .ginput_container_radio .gfield_radio {
  flex-direction: row;
  gap: 24px;
}
section.fc-form .inner .form-wrapper .flex .ginput_container_checkbox .gfield_checkbox .gchoice, section.fc-form .inner .form-wrapper .flex .ginput_container_radio .gfield_radio .gchoice {
  display: flex;
}
section.fc-form .inner .form-wrapper .gform_confirmation_message {
  font-size: 24px;
  padding: 40px 0;
  color: #1A1A1A;
}
section.fc-form .inner .form-wrapper .gform_button, section.fc-form .inner .form-wrapper .gform_next_button, section.fc-form .inner .form-wrapper .gform_previous_button {
  font-size: 18px !important;
  font-family: "Rubik" !important;
  font-weight: 500 !important;
  padding: 18px 25px !important;
  background-color: #1A1A1A !important;
  color: #1A1A1A;
  border-radius: 5px !important;
  padding: 15px 40px;
  text-transform: uppercase !important;
  transition: all 0.2s;
  box-shadow: 3px 4px 9px rgba(0, 0, 0, 0.2) !important;
}
section.fc-form .inner .form-wrapper .gform_button:hover, section.fc-form .inner .form-wrapper .gform_next_button:hover, section.fc-form .inner .form-wrapper .gform_previous_button:hover {
  color: #1A1A1A !important;
}
section.fc-form .inner .form-wrapper .gform_previous_button {
  background-color: #bbb !important;
  border-color: #ccc !important;
  color: #fff !important;
  margin-right: 10px !important;
}
section.fc-form .inner .form-wrapper .gform_previous_button:hover {
  color: #1A1A1A !important;
}
section.fc-three-col-row .background {
  position: absolute;
  bottom: 0;
  height: calc(100% - 60px);
  width: 100%;
  background-color: #4E150E;
}
section.fc-three-col-row .background::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 65%;
  background-color: #440802;
  --p: 45%;
  clip-path: polygon(var(--p) 0, 100% 0, 100% 100%, 0 100%);
}
section.fc-three-col-row .inner {
  padding-top: 0;
}
section.fc-three-col-row .inner .columns {
  display: flex;
  gap: 6%;
}
section.fc-three-col-row .inner .columns .column {
  width: 33%;
}
section.fc-three-col-row .inner .columns .column h3 {
  color: #4E150E;
  margin: 20px 0 15px;
}
section.fc-three-col-row .inner .columns .column .body {
  color: #4E150E;
  margin-bottom: 40px;
}
section.fc-three-col-row .inner.has-background .columns .column h3 {
  color: #fff;
}
section.fc-three-col-row .inner.has-background .columns .column .body {
  color: #fff;
}
@media screen and (max-width: 720px) {
  section.fc-three-col-row .inner {
    padding-top: 0;
  }
  section.fc-three-col-row .inner .columns {
    flex-wrap: wrap;
    gap: 40px;
  }
  section.fc-three-col-row .inner .columns .column {
    width: calc(50% - 20px);
  }
  section.fc-three-col-row .inner .columns .column .body {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  section.fc-three-col-row .background {
    position: absolute;
    bottom: 0;
    height: calc(100% - 60px);
    width: 100%;
    background-color: #4E150E;
  }
  section.fc-three-col-row .background::after {
    display: none;
  }
  section.fc-three-col-row .inner {
    padding-top: 0;
  }
  section.fc-three-col-row .inner .columns {
    flex-direction: column;
    gap: 40px;
  }
  section.fc-three-col-row .inner .columns .column {
    width: 100%;
  }
  section.fc-three-col-row .inner .columns .column img {
    width: 100%;
  }
  section.fc-three-col-row .inner .columns .column .body {
    margin-bottom: 20px;
  }
}

section.fc-three-col-grid {
  background-color: #4E150E;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
section.fc-three-col-grid .inner h2 {
  margin: 0;
  color: #fff;
}
section.fc-three-col-grid .inner h4 {
  margin: 0;
}
section.fc-three-col-grid .inner .columns {
  display: flex;
  flex-wrap: wrap;
  column-gap: 6%;
  row-gap: 40px;
  margin-top: 40px;
}
section.fc-three-col-grid .inner .columns .item {
  width: 29%;
  border-top: solid 2px #E06327;
  padding: 15px 0;
}
section.fc-three-col-grid .inner .columns .item h3 {
  color: #fff;
  margin: 20px 0 15px;
}
section.fc-three-col-grid .inner .columns .item .body {
  color: #fff;
  margin-bottom: 40px;
}
section.fc-three-col-grid .inner .columns .item .body * {
  color: #fff;
}
@media screen and (max-width: 720px) {
  section.fc-three-col-grid .inner .columns {
    flex-wrap: wrap;
    gap: 40px;
  }
  section.fc-three-col-grid .inner .columns .item {
    width: calc(50% - 20px);
  }
  section.fc-three-col-grid .inner .columns .item .body {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  section.fc-three-col-grid .inner .columns {
    flex-direction: column;
    gap: 40px;
  }
  section.fc-three-col-grid .inner .columns .item {
    width: 100%;
  }
  section.fc-three-col-grid .inner .columns .item img {
    width: 100%;
  }
  section.fc-three-col-grid .inner .columns .item .body {
    margin-bottom: 20px;
  }
}

section.fc-center-paragraph .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
section.fc-center-paragraph .inner .divider {
  width: 100px;
  border-bottom: solid 2px;
  border-color: #E06327;
}
section.fc-center-paragraph .inner p {
  color: #4E150E;
  margin: 0;
  padding: 0;
  max-width: 480px;
  text-align: center;
}
section.fc-center-paragraph .inner h1 {
  color: #4E150E;
  margin: 0;
  padding: 0;
  text-align: center;
}
section.fc-full-image .inner {
  max-width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}
section.fc-full-image .inner img {
  width: 100%;
}

section.fc-media-text-50-50.background {
  background-color: #4E150E;
}
section.fc-media-text-50-50.background .inner {
  max-width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  justify-content: flex-end;
}
section.fc-media-text-50-50.background .inner.reverse {
  flex-direction: row-reverse;
  background: none;
  padding-right: 70px;
  padding-left: 0;
}
section.fc-media-text-50-50.background .inner .image img {
  width: 100%;
}
section.fc-media-text-50-50.background .inner .content {
  padding-top: 70px;
  padding-bottom: 70px;
  color: #fff;
}
section.fc-media-text-50-50.background .inner .content * {
  color: #fff;
}
section.fc-media-text-50-50.background .inner .content h4 {
  color: #E06327;
}
section.fc-media-text-50-50 .inner {
  display: flex;
  gap: 50px;
  align-items: center;
}
section.fc-media-text-50-50 .inner.reverse {
  flex-direction: row-reverse;
  background: none;
}
section.fc-media-text-50-50 .inner .image {
  width: 50%;
  position: relative;
}
section.fc-media-text-50-50 .inner .content {
  width: 50%;
  max-width: 590px;
  padding-right: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
section.fc-media-text-50-50 .inner .content h4 {
  color: #E06327;
  margin: 0;
  padding: 0;
}
section.fc-media-text-50-50 .inner .content h2 {
  color: #4E150E;
  margin: 0;
  padding: 0;
}
section.fc-media-text-50-50 .inner .content .divider {
  width: 100px;
  border-bottom: solid 2px;
  border-color: #E06327;
  margin-top: 20px;
}
section.fc-media-text-50-50 .inner .content ol, section.fc-media-text-50-50 .inner .content ul {
  padding-left: 20px;
}
section.fc-media-text-50-50 .inner .content ol li, section.fc-media-text-50-50 .inner .content ul li {
  padding: 0 0 3px 0;
}
@media screen and (max-width: 900px) {
  section.fc-media-text-50-50 .inner {
    align-items: start;
  }
}
@media screen and (max-width: 800px) {
  section.fc-media-text-50-50.background .inner {
    padding: 0 30px 30px 30px;
  }
  section.fc-media-text-50-50.background .inner.reverse {
    padding: 0 30px 30px 30px;
  }
  section.fc-media-text-50-50.background .inner .content {
    padding-top: 40px;
    padding-bottom: 0px;
  }
  section.fc-media-text-50-50 .inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    background: none;
  }
  section.fc-media-text-50-50 .inner.reverse {
    flex-direction: column;
    align-items: flex-start;
  }
  section.fc-media-text-50-50 .inner .image {
    width: 100%;
  }
  section.fc-media-text-50-50 .inner .image img {
    width: 100%;
  }
  section.fc-media-text-50-50 .inner .content {
    width: 100%;
    max-width: 100%;
  }
}

section.fc-map {
  background: url(img/map-bg.png) center left no-repeat;
  background-size: contain;
}
section.fc-map .inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 0;
  max-width: 100%;
  margin-bottom: 0;
}
section.fc-map .inner .map {
  width: 60%;
  position: relative;
}
section.fc-map .inner .map img {
  width: 100%;
}
section.fc-map .inner .content-outer {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  width: 40%;
}
section.fc-map .inner .content-outer .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
section.fc-map .inner .content-outer .content h4 {
  color: #E06327;
  margin: 0;
  padding: 0;
}
section.fc-map .inner .content-outer .content h2 {
  color: #4E150E;
  margin: 0;
  padding: 0;
}
section.fc-map .inner .content-outer .content ol, section.fc-map .inner .content-outer .content ul {
  padding-left: 20px;
}
section.fc-map .inner .content-outer .content ol li, section.fc-map .inner .content-outer .content ul li {
  padding: 0 0 3px 0;
}
@media screen and (max-width: 1350px) {
  section.fc-map {
    background-size: contain;
    background-position-x: -10vw;
  }
}
@media screen and (max-width: 1000px) {
  section.fc-map {
    background-position-x: -30vw;
  }
  section.fc-map .inner {
    gap: 40px;
  }
  section.fc-map .inner .map {
    width: 50%;
  }
  section.fc-map .inner .content-outer {
    width: 50%;
  }
}
@media screen and (max-width: 720px) {
  section.fc-map {
    background: initial;
  }
  section.fc-map .inner {
    padding-left: 30px;
    gap: 0;
  }
  section.fc-map .inner .map {
    display: none;
  }
  section.fc-map .inner .content-outer {
    width: 100%;
  }
}

section.fc-graph .inner {
  background-color: #EAEBEB;
  display: flex;
  gap: 50px;
  align-items: start;
}
section.fc-graph .inner .image {
  width: 50%;
  position: relative;
}
section.fc-graph .inner .content {
  width: 30%;
  max-width: 590px;
  padding-right: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
section.fc-graph .inner .content h4 {
  color: #E06327;
  margin: 0;
  padding: 0;
}
section.fc-graph .inner .content h2 {
  color: #4E150E;
  margin: 0;
  padding: 0;
}
section.fc-graph .inner .content .divider {
  width: 100px;
  border-bottom: solid 2px;
  border-color: #E06327;
  margin-top: 20px;
}
section.fc-graph .inner .content ol, section.fc-graph .inner .content ul {
  padding-left: 20px;
}
section.fc-graph .inner .content ol li, section.fc-graph .inner .content ul li {
  padding: 0 0 3px 0;
}
section.fc-graph .inner .graph-container {
  width: 70%;
}
section.fc-graph .inner .graph-container .graph-heading .title {
  color: #4E150E;
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 10px 0;
}
section.fc-graph .inner .graph-container .graph-heading .subtitle {
  color: #4E150E;
  font-size: 15px;
  font-weight: 400;
  margin: 0 0 10px 0;
}
section.fc-graph .inner .graph-container .graph-title {
  color: #B7B7B7;
  font-size: 15px;
  font-weight: 400;
  line-height: 130%;
  text-align: center;
}
section.fc-graph .inner .graph-container .graph {
  display: flex;
  gap: 1px;
  align-items: flex-end;
}
section.fc-graph .inner .graph-container .graph .bar-container {
  text-align: center;
  min-width: 50px !important;
}
section.fc-graph .inner .graph-container .graph .bar-container .percent, section.fc-graph .inner .graph-container .graph .bar-container .value {
  font-size: 15px;
  color: #4E150E;
  padding: 12px 0;
}
section.fc-graph .inner .graph-container .graph .bar-container .bar {
  width: 100%;
  height: 100%;
}
section.fc-graph .inner .graph-container .legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}
section.fc-graph .inner .graph-container .legend .legend-item {
  width: 23%;
  display: flex;
  gap: 5px;
}
section.fc-graph .inner .graph-container .legend .legend-item .color {
  width: 20px;
  min-width: 20px;
  height: 20px;
}
section.fc-graph .inner .graph-container .legend .legend-item .label {
  color: #4E150E;
  font-size: 14px;
  word-break: break-all;
}
@media screen and (max-width: 900px) {
  section.fc-graph .inner {
    flex-direction: column;
  }
  section.fc-graph .inner .content, section.fc-graph .inner .graph-container {
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  section.fc-graph .inner .graph-container .graph {
    overflow-y: auto;
  }
  section.fc-graph .inner .graph-container .graph .bar-container .percent, section.fc-graph .inner .graph-container .graph .bar-container .value {
    font-size: 14px;
  }
  section.fc-graph .inner .graph-container .legend .legend-item {
    width: 48%;
  }
}
@media screen and (max-width: 500px) {
  section.fc-graph .inner .graph-container .graph {
    overflow-y: auto;
  }
  section.fc-graph .inner .graph-container .graph .bar-container .percent, section.fc-graph .inner .graph-container .graph .bar-container .value {
    font-size: 14px;
  }
  section.fc-graph .inner .graph-container .legend {
    flex-direction: column;
  }
  section.fc-graph .inner .graph-container .legend .legend-item {
    width: 100%;
  }
}

section.fc-quote .inner {
  background-color: #EAEBEB;
}
section.fc-quote .inner h2, section.fc-quote .inner h5 {
  color: #4E150E;
  text-align: center;
  text-transform: initial;
}
section.fc-quote .inner h5 {
  margin: 0;
}
section.fc-contact-info .inner {
  margin-bottom: 0;
}
section.fc-contact-info .inner .boxes {
  display: flex;
  gap: 40px;
}
section.fc-contact-info .inner .boxes .box {
  background-color: #4E150E;
  width: 33%;
  height: 0;
  padding-bottom: 31%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: calc(100% - 40px) calc(100% - 40px);
}
section.fc-contact-info .inner .boxes .box a {
  color: #fff;
}
section.fc-contact-info .inner .boxes .box .content {
  padding: 40px;
}
section.fc-contact-info .inner .boxes .box .content .divider {
  margin: 15px 0;
}
section.fc-contact-info .inner .boxes .box .content .label, section.fc-contact-info .inner .boxes .box .content h3 {
  color: #fff;
  margin: 0;
}
section.fc-contact-info .inner .boxes .box .spacer {
  height: 40px;
}
section.fc-contact-info .inner .boxes .box.phone {
  background-image: url("img/icons/icon-phone.svg");
}
section.fc-contact-info .inner .boxes .box.email {
  background-image: url("img/icons/icon-email.svg");
}
section.fc-contact-info .inner .boxes .box.email a {
  color: #fff;
  font-size: 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-weight: 600;
  text-decoration: none;
}
section.fc-contact-info .inner .boxes .box.email a:hover {
  text-decoration: underline;
}
section.fc-contact-info .inner .boxes .box.map {
  position: relative;
  background-color: #fff;
}
section.fc-contact-info .inner .boxes .box.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 101%;
  border: none;
}
@media screen and (max-width: 1200px) {
  section.fc-contact-info .inner .boxes .box .content h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 1000px) {
  section.fc-contact-info .inner .boxes .box {
    background-image: none !important;
  }
}
@media screen and (max-width: 950px) {
  section.fc-contact-info .inner .boxes {
    flex-direction: column;
    gap: 20px;
  }
  section.fc-contact-info .inner .boxes .box {
    width: 100%;
    height: initial;
    padding-bottom: initial;
  }
  section.fc-contact-info .inner .boxes .box.map {
    padding-bottom: 60%;
  }
}

section.fc-team .inner {
  padding-bottom: 0;
}
section.fc-team .inner h2 {
  margin: 0;
  color: #4E150E;
}
section.fc-team .inner h4 {
  margin: 0;
}
section.fc-team .inner .team {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  margin-top: 40px;
}
section.fc-team .inner .team .member {
  display: flex;
  gap: 40px;
}
section.fc-team .inner .team .member .photo {
  width: 30%;
}
section.fc-team .inner .team .member .info {
  width: 80%;
  border-top: solid 2px #E06327;
  padding: 30px 0 0 0;
}
section.fc-team .inner .team .member .info h3 {
  margin: 0;
  color: #4E150E;
}
section.fc-team .inner .team .member .info .contact-info {
  padding: 20px 0 10px;
}
@media screen and (max-width: 700px) {
  section.fc-team .inner .team .member {
    border-bottom: solid 2px #E06327;
    flex-direction: column;
    gap: 0;
  }
  section.fc-team .inner .team .member .photo {
    width: 100%;
  }
  section.fc-team .inner .team .member .info {
    width: 100%;
    border-top: none;
    padding: 20px 0 0 0;
  }
  section.fc-team .inner .team .member .info h3 {
    margin: 0;
    color: #4E150E;
  }
  section.fc-team .inner .team .member .info .contact-info {
    padding: 10px 0 10px;
  }
}

section.fc-partners .inner {
  padding-top: 0;
}
section.fc-partners .inner h2 {
  margin: 0;
  color: #4E150E;
}
section.fc-partners .inner h4 {
  margin: 0;
}
section.fc-partners .inner .columns {
  display: flex;
  flex-wrap: wrap;
  column-gap: 6%;
  row-gap: 40px;
  margin-top: 20px;
}
section.fc-partners .inner .columns .item {
  width: 29%;
  padding: 15px 0 50px;
  border-bottom: solid 2px #E06327;
}
section.fc-partners .inner .columns .item h3 {
  color: #4E150E;
  margin: 20px 0 15px;
}
section.fc-partners .inner .button-container {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 720px) {
  section.fc-partners .inner .columns {
    flex-wrap: wrap;
    gap: 40px;
  }
  section.fc-partners .inner .columns .item {
    width: calc(50% - 20px);
  }
  section.fc-partners .inner .columns .item .body {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  section.fc-partners .inner .columns {
    flex-direction: column;
    gap: 40px;
  }
  section.fc-partners .inner .columns .item {
    width: 100%;
  }
  section.fc-partners .inner .columns .item img {
    width: 100%;
  }
  section.fc-partners .inner .columns .item .body {
    margin-bottom: 20px;
  }
}

section.fc-faq .inner {
  background-color: #EAEBEB;
}
section.fc-faq .inner h2 {
  margin: 0;
  color: #4E150E;
}
section.fc-faq .inner h4 {
  margin: 0;
}
section.fc-faq .inner > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
section.fc-faq .inner > ul li {
  margin-top: 24px;
  color: #4E150E;
  transition: all 0.2s;
}
section.fc-faq .inner > ul li .question {
  transition: all 0.2s;
  cursor: pointer;
}
section.fc-faq .inner > ul li .question img {
  rotate: -90deg;
  width: 17px;
  height: 17px;
  opacity: 0.5;
  margin-left: 5px;
  transition: all 0.2s;
}
section.fc-faq .inner > ul li .answer {
  display: none;
  background-color: #fff;
  padding: 20px;
  margin-top: 10px;
  font-weight: normal;
}
section.fc-faq .inner > ul li:hover .question img {
  opacity: 1;
}
section.fc-faq .inner > ul li.active {
  font-weight: 700;
}
section.fc-faq .inner > ul li.active .question img {
  rotate: 0deg;
  opacity: 1;
}
section.fc-text-logos {
  background-color: #EAEBEB;
}
section.fc-text-logos .inner {
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  gap: 5%;
}
section.fc-text-logos .inner .body {
  color: #B7B7B7;
  width: 60%;
}
section.fc-text-logos .inner .logos {
  display: flex;
  justify-content: flex-end;
  width: 40%;
  gap: 10%;
}
section.fc-text-logos .inner .logos .logo img {
  width: 100%;
}
@media screen and (max-width: 700px) {
  section.fc-text-logos .inner {
    gap: 20px;
    flex-direction: column;
  }
  section.fc-text-logos .inner .body {
    width: 100%;
  }
  section.fc-text-logos .inner .logos {
    width: 100%;
    justify-content: center;
  }
}

section.fc-site-plan .inner {
  position: relative;
}
section.fc-site-plan .inner .map-menu {
  position: absolute;
  top: 100px;
  left: 90px;
  background-color: #fff;
  padding-bottom: 10px;
}
section.fc-site-plan .inner .map-menu .nav {
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  margin: 0;
  padding: 0;
  background-color: #D9D9D9;
}
section.fc-site-plan .inner .map-menu .nav li {
  width: 100%;
  cursor: pointer;
  background-color: #D9D9D9;
  padding: 6px 12px;
  transition: all 0.2s;
  color: rgba(88, 89, 89, 0.4);
  white-space: nowrap;
  text-align: center;
}
section.fc-site-plan .inner .map-menu .nav li.active {
  background-color: #fff;
  color: #E06327;
}
section.fc-site-plan .inner .map-menu .nav li:not(.active):hover {
  color: #1A1A1A;
}
section.fc-site-plan .inner .map-menu #master-plan-menu {
  display: block;
}
section.fc-site-plan .inner .map-menu #utilities-menu {
  display: none;
}
section.fc-site-plan .inner .map-menu .phase-nav {
  list-style: none;
  margin: 15px 0 0 0;
  padding: 0;
  min-width: 255px;
}
section.fc-site-plan .inner .map-menu .phase-nav li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
  cursor: pointer;
  padding: 5px 12px;
  font-size: 15px;
}
section.fc-site-plan .inner .map-menu .phase-nav li.menu-divider {
  border-top: solid 1px #E06327;
  margin: 8px 12px;
  padding: 0;
}
section.fc-site-plan .inner .map-menu .phase-nav li.area:first-child {
  border-top: none;
}
section.fc-site-plan .inner .map-menu .phase-nav li.active {
  background-color: #efefef;
}
section.fc-site-plan .inner .map-menu .phase-nav li.active .color {
  width: 35%;
}
section.fc-site-plan .inner .map-menu .phase-nav li:not(.active):hover {
  background-color: #efefef;
}
section.fc-site-plan .inner .map-menu .phase-nav li .color {
  width: 25%;
  height: 15px;
  transition: all 0.2s;
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 0% 100%);
}
section.fc-site-plan .inner .map-menu .phase-nav li.no-click {
  cursor: default;
}
section.fc-site-plan .inner .map-menu .phase-nav li.no-click.active, section.fc-site-plan .inner .map-menu .phase-nav li.no-click:hover {
  background-color: #fff;
}
section.fc-site-plan .inner .map-menu .area-nav {
  margin: 0;
  border-top: solid 1px #E06327;
}
@media screen and (max-width: 920px) {
  section.fc-site-plan .inner {
    display: flex;
    flex-direction: column-reverse;
  }
  section.fc-site-plan .inner .map-menu {
    border: solid 1px #D9D9D9;
    position: relative;
    top: 0;
    left: 0;
    background-color: #fff;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}