/* Reset */
@import url("https://fonts.googleapis.com/css2?family=Helvetica+Neue:wght@400;700&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

@font-face {
  font-family: "Gotham";
  src: url("../../Gotham/Gotham-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  src: url("../../Gotham/Gotham-Book.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  src: url("../../Gotham/Gotham-Light.otf") format("opentype");
  font-weight: lighter;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  src: url("../../Gotham/Gotham-Medium.otf") format("opentype");
  font-weight: medium;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  src: url("../../Gotham/Gotham-Ultra.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.6;
  font-family: "Roboto", sans-serif;
  color: #333;
  background-color: #fff;
}

/* General styles for mobile menu */
.nav-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 250px;
  height: 100%;
  background-color: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  padding: 20px;
}
.nav-menu.open {
  transform: translateX(0);
}

/* Optional background overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hamburger and Close Icons */
.menu-button,
.close-menu {
  cursor: pointer;
  z-index: 1001;
}

/* General styles for mobile menu */
.nav-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 250px;
  height: 100%;
  background-color: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  padding: 20px;
}
.nav-menu.open {
  transform: translateX(0);
}

/* Optional background overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hamburger and Close Icons */
header {
  border-top: 3px solid #ab8e66;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}
header .header-container {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: linear-gradient(0deg, rgba(54, 101, 50, 0) 0%, rgba(48, 72, 53, 0.7) 100%);
  backdrop-filter: blur(2px);
}
header .header-container .menu-button {
  padding: 20px 50px 20px 50px;
  background-color: transparent;
  border: none;
}
@media (max-width: 768px) {
  header .header-container .menu-button {
    padding: 20px;
  }
}
header .header-container .logo {
  top: 20px;
  width: 130px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  margin-inline: auto;
  width: fit-content;
}
header .header-container .logotop {
  display: none;
}
header .header-container .menu-button,
header .header-container .close-menu {
  cursor: pointer;
  z-index: 1001;
}

.nav-menu {
  width: 100%;
  max-width: 385px;
  height: 100vh;
  padding: 39px 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 100px;
  flex-shrink: 0;
}
.nav-menu .close-menu {
  width: 36.75px;
  height: 36.75px;
  background-color: #ffffff;
  border: none;
  cursor: pointer;
}
.nav-menu .menu-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  align-self: stretch;
  width: 100%;
}
.nav-menu .menu-ul li {
  width: 100%;
  border-bottom: 1px solid #366532;
}
.nav-menu .menu-ul li:last-child {
  border-bottom: none;
}
.nav-menu .menu-ul li a {
  font-family: "Gotham", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 28px;
  color: #304835;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
  text-decoration: none;
  width: 100%;
  min-width: 300px;
  display: block;
  padding: 22px 0;
}
.nav-menu .menu-ul li a:hover {
  color: #366532;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 80vh; /* Adjust this based on the desired height */
  background-image: url("./../../images/Gateway-top3.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Optional overlay to darken the background image */
}
@media (max-width: 768px) {
  .hero-section {
    height: 60vh;
  }
}
.hero-section .hero-content {
  text-align: center;
  color: #fff; /* Adjust to match the design */
  z-index: 1;
}
.hero-section .hero-logo {
  max-width: 200px;
  margin-bottom: 20px;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Adjust opacity for effect */
  z-index: 0;
}

.hero-arnel-section {
  position: relative;
  width: 100%;
  max-height: 80vh;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-repeat: no-repeat;
  flex-wrap: nowrap;
  /* Optional overlay to darken the background image */
}
@media (max-width: 768px) {
  .hero-arnel-section {
    padding: 40px 0 0;
  }
}
.hero-arnel-section #slideshow {
  object-fit: cover;
  width: 100%;
  height: auto;
}
.hero-arnel-section #slideshow img {
  width: 100%;
  height: auto;
}
.hero-arnel-section .hero-arnel-content {
  text-align: center;
  color: #fff;
  z-index: 1;
  position: absolute;
}
.hero-arnel-section .hero-logo {
  max-width: 200px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .hero-arnel-section .hero-logo {
    max-width: 130px;
    margin-bottom: 0;
    margin-top: 70px;
  }
}
.hero-arnel-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero-pages {
  position: relative;
  width: 100%;
  height: 80vh; /* Adjust this based on the desired height */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Optional overlay to darken the background image */
}
@media (max-width: 768px) {
  .hero-pages {
    height: 60vh;
  }
}
.hero-pages .hero-pages-content {
  text-align: center;
  color: #fff; /* Adjust to match the design */
  z-index: 1;
}
.hero-pages .hero-pages-logo {
  max-width: 200px;
  margin-bottom: 20px;
}
.hero-pages::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Adjust the opacity as needed */
  z-index: 0;
}

.venue-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  background: #f2f0ed;
  color: var(--304835, #304835);
  padding: 100px 123px;
  gap: 10px;
}
@media (max-width: 768px) {
  .venue-description {
    padding: 100px 20px;
  }
}
.venue-description h1 {
  color: #366532;
  text-align: center;
  leading-trim: both;
  width: 100%;
  text-edge: cap;
  font-family: "Gotham", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 28px; /* 87.5% */
}
.venue-description .venue-sep {
  stroke-width: 1px;
  stroke: var(--366532, #366532);
  width: 100%;
  max-width: 432px;
  height: 0px;
  margin: 36px auto;
}
.venue-description .venue-cont {
  color: var(--366532, #366532);
  text-align: center;
  font-family: "Helvetica Neue";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px; /* 175% */
  width: 100%;
  max-width: 1194px;
}
.venue-description .ext-link {
  color: #366532;
  text-decoration: none;
  font-weight: 600;
}
.venue-description .ext-link:hover {
  text-decoration: underline;
}

.welcome-widget {
  background-color: #f2f0ed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 50px 20px;
  width: 100%;
  position: relative;
  gap: 10px;
}
@media (max-width: 768px) {
  .welcome-widget {
    padding: 100px 20px;
  }
}
.welcome-widget .welcome-title {
  width: 100%;
  text-align: center;
  font-size: 32px;
  font-family: "Gotham", sans-serif;
  font-weight: 400;
  color: #304835;
  line-height: 28px;
}
.welcome-widget .bar-section {
  width: 100%;
  max-width: 432px;
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.welcome-widget .bar-section img {
  width: 100%;
  height: auto;
}
.welcome-widget .welcome {
  width: 100%;
  color: #366532;
  text-align: center;
  font-family: "Helvetica Neue";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px; /* 175% */
}
.welcome-widget .welcome p {
  margin: 0 auto 28px;
  max-width: 1064px;
}

.contact-section {
  background-color: #f2f0ed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 100px 123px;
  width: 100%;
  gap: 10px;
}
@media (max-width: 768px) {
  .contact-section {
    padding: 100px 20px;
  }
}
.contact-section .img-form-container {
  background: #fff;
  max-width: 1064px;
  min-height: 708px;
  width: 100%;
  border: 1px solid #366532;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.contact-section .img-form-container .box-image {
  width: 35%;
  height: 100%;
  min-height: 708px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .contact-section .img-form-container .box-image {
    order: 2;
    width: 100%;
  }
}
.contact-section .img-form-container .box-image-arnel {
  background-image: url("./../../images/contact-Arnel.png");
  width: 35%;
  height: 100%;
  min-height: 708px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .contact-section .img-form-container .box-image-arnel {
    order: 2;
    width: 100%;
  }
}
.contact-section .img-form-container .box-form {
  width: 65%;
  padding: 10px 42px 10px 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .contact-section .img-form-container .box-form {
    order: 1;
    padding: 10px 20px;
    width: 100%;
  }
}
.contact-section .img-form-container .box-form h2 {
  color: var(--304835, #304835);
  leading-trim: both;
  text-edge: cap;
  font-family: "Playfair Display";
  font-size: 42px;
  font-weight: 500;
  line-height: 52px; /* 123.81% */
}
.contact-section .img-form-container .box-form p {
  color: var(--767676, #767676);
  leading-trim: both;
  text-edge: cap;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 21px; /* 150% */
}
.contact-section .img-form-container .box-form .contact-form {
  margin-top: 20px;
}
.contact-section .img-form-container .box-form .contact-form .full-w {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.contact-section .img-form-container .box-form .contact-form .full-w .box {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.contact-section .img-form-container .box-form .contact-form .full-w .box sup {
  color: #ff9500;
  margin-left: 3px;
}
.contact-section .img-form-container .box-form .contact-form .full-w .box input {
  padding: 5px 7px;
  border-radius: 8px;
  width: 100%;
  font-family: "Open Sans";
  font-size: var(--sds-typography-body-size-medium);
  font-style: normal;
  font-weight: var(--sds-typography-body-font-weight-regular);
  border: 1px solid #d9d9d9;
  margin-top: 20px;
  margin-bottom: 10px;
}
.contact-section .img-form-container .box-form .contact-form .full-w .box select {
  padding: 5px 7px;
  border-radius: 8px;
  width: 100%;
  font-family: "Open Sans";
  font-size: var(--sds-typography-body-size-medium);
  font-style: normal;
  font-weight: var(--sds-typography-body-font-weight-regular);
  border: 1px solid #d9d9d9;
  margin-top: 20px;
  margin-bottom: 10px;
  cursor: pointer;
}
.contact-section .img-form-container .box-form .contact-form .full-w p {
  width: 100%;
}
.contact-section .img-form-container .box-form .contact-form .full-w p span {
  display: block;
}
.contact-section .img-form-container .box-form .contact-form .full-w p input,
.contact-section .img-form-container .box-form .contact-form .full-w p textarea {
  padding: 5px 7px;
  border-radius: 8px;
  width: 100%;
  font-family: "Open Sans";
  font-size: var(--sds-typography-body-size-medium);
  font-style: normal;
  font-weight: var(--sds-typography-body-font-weight-regular);
  border: 1px solid #d9d9d9;
  margin-top: 20px;
  margin-bottom: 20px;
}
.contact-section .img-form-container .box-form .contact-form .check-container .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-section .img-form-container .box-form .contact-form .check-container .wpcf7-list-item input[type=checkbox] {
  width: 20px;
  height: 20px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  margin-right: 10px;
  cursor: pointer;
}
.contact-section .img-form-container .box-form .contact-form .wpcf7-submit {
  color: #fff;
  padding: 10px 20px;
  width: 100%;
  font-family: "Open Sans";
  font-size: var(--sds-typography-body-size-medium);
  font-style: normal;
  font-weight: var(--sds-typography-body-font-weight-regular);
  border: var(--sds-size-stroke-border) solid var(--304835, #304835);
  margin-top: 10px;
  background: var(--304835, #304835);
  cursor: pointer;
  transition: all 0.3s;
}
.contact-section .img-form-container .box-form .contact-form .wpcf7-submit:hover {
  background-color: var(--366532, #366532);
}

.venue-style {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #f7f7f7;
  position: relative;
}
.venue-style .post-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.venue-style .post-container .container-tab-navigation {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.venue-style .post-container .container-tab-navigation .tab-navigation {
  padding: 70px 0;
  width: 100%;
  max-width: 1064px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.venue-style .post-container .container-tab-navigation .tab-navigation button {
  color: var(--366532, #366532);
  text-align: center;
  leading-trim: both;
  cursor: pointer;
  text-edge: cap;
  font-family: "Helvetica Neue";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
  text-transform: uppercase;
  background: none;
  border: none;
  padding: 24px 55px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .venue-style .post-container .container-tab-navigation .tab-navigation button {
    padding: 24px 20px;
  }
}
@media (max-width: 480px) {
  .venue-style .post-container .container-tab-navigation .tab-navigation button {
    padding: 24px 10px;
  }
}
.venue-style .post-container .container-tab-navigation .tab-navigation button.active {
  color: var(--304835, #304835);
  font-weight: 700;
}
.venue-style .post-container .container-tab-navigation .tab-navigation button:hover {
  color: var(--304835, #304835);
  border: 1px solid var(--304835, #304835);
}
.venue-style .post-container .su-tabs-nav {
  display: none;
}
.venue-style .post-container .su-tabs-panes .su-tabs-pane {
  background-color: #f7f7f7;
  padding: 0;
}
.venue-style .post-container .su-tabs-panes .su-tabs-pane.active {
  display: block;
}
.venue-style .post-container .su-row {
  background-color: #fff;
  padding-left: 20px;
}
.venue-style .post-container .su-tabs {
  padding: 0;
  width: 100%;
  max-width: 1064px;
}
.venue-style .post-container .su-tabs h2 {
  color: var(--304835, #304835);
  font-family: "Gotham", sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 42px; /* 100% */
}
@media (max-width: 768px) {
  .venue-style .post-container .su-tabs h2 {
    font-size: 32px;
    line-height: 32px;
    text-align: center;
  }
}
.venue-style .post-container .su-tabs .features-subtitle {
  color: var(--304835, #304835);
  font-family: "Gotham", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px; /* 100% */
}
@media (max-width: 768px) {
  .venue-style .post-container .su-tabs .features-subtitle {
    text-align: center;
  }
}
.venue-style .post-container .su-tabs .special-hr {
  width: 100%;
  max-width: 160px;
  height: 0px;
  margin: 15px auto 15px 15px;
  stroke-width: 1px;
  stroke: var(--366532, #366532);
}
@media (max-width: 768px) {
  .venue-style .post-container .su-tabs .special-hr {
    margin: 15px auto;
  }
}
.venue-style .post-container .su-tabs .feature-list {
  list-style-type: disc;
  padding-left: 18px;
}
@media (max-width: 768px) {
  .venue-style .post-container .su-tabs .feature-list {
    margin: 0 auto 30px;
    max-width: 350px;
    width: 100%;
  }
}
.venue-style .post-container .su-tabs .feature-list li {
  color: #444;
  font-family: "Helvetica Neue";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px; /* 142.857% */
}
.venue-style .post-container .MNT-TableTitle {
  width: 100%;
  margin: 0 auto 0 auto;
  color: #fff;
  background-color: #304835;
  padding: 5px;
  border-bottom: 2px solid #acacac;
  text-align: center;
}
.venue-style .post-container table {
  width: 100%;
}
.venue-style .post-container table thead {
  background: #d5dfd4;
}
.venue-style .post-container table thead th {
  color: var(--304835, #304835);
  leading-trim: both;
  text-edge: cap;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 175% */
  text-transform: uppercase;
}
.venue-style .post-container table tr {
  border-bottom: 1px solid lightgray;
}
.venue-style .post-container table tr td {
  text-align: center;
}
.venue-style .post-container table tr td a {
  display: flex;
  padding: 10px var(--Space-300, 12px);
  justify-content: center;
  align-items: center;
  border: 1px solid #366532;
}
.venue-style .post-container .slideshow {
  width: 100%;
  max-height: 516px;
  overflow: hidden;
}
.venue-style .post-container .slideshow img {
  width: 100%;
  height: auto;
}
.venue-style .contact-info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 135px 0 118px;
  position: relative;
}
@media (max-width: 768px) {
  .venue-style .contact-info {
    padding: 100px 20px;
    margin-bottom: 30px;
  }
}
.venue-style .contact-info .contact-info-background {
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 408px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .venue-style .contact-info .contact-info-background {
    height: 100%;
  }
}
.venue-style .contact-info .contact-info-background .venue-info {
  position: absolute;
  background: var(--FFFFFF, #fff);
  border: 1px solid var(--366532, #366532);
  width: 100%;
  max-width: 1060px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .venue-style .contact-info .contact-info-background .venue-info {
    position: relative;
    flex-direction: column;
    padding: 20px;
  }
}
.venue-style .contact-info .contact-info-background .venue-info .map-box {
  width: 100%;
  max-width: 529px;
  height: auto;
  overflow: hidden;
  position: relative;
}
.venue-style .contact-info .contact-info-background .venue-info .map-box .map {
  width: 100%;
  height: 100%;
}
.venue-style .contact-info .contact-info-background .venue-info .venue-info-box h2 {
  color: var(--304835, #304835);
  font-family: "Gotham", sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 42px; /* 100% */
  max-width: 400px;
  margin-bottom: 10px;
}
.venue-style .contact-info .contact-info-background .venue-info .venue-info-box .address {
  color: #767676;
  padding-right: 20px;
  font-family: "Helvetica Neue";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 128.571% */
  text-transform: uppercase;
  margin-bottom: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.venue-style .contact-info .contact-info-background .venue-info .venue-info-box .address img {
  margin-right: 10px;
}
.venue-style .contact-info .contact-info-background .venue-info .venue-info-box .contact-title {
  color: var(--304835, #304835);
  leading-trim: both;
  text-edge: cap;
  font-family: "Helvetica Neue";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 175% */
  text-transform: uppercase;
  margin-bottom: 10px;
}
.venue-style .contact-info .contact-info-background .venue-info .venue-info-box .contact-name {
  color: var(--767676, #767676);
  font-family: "Helvetica Neue";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.467px; /* 203.333% */
  text-transform: uppercase;
  margin-bottom: 5px;
}
.venue-style .contact-info .contact-info-background .venue-info .venue-info-box .phone {
  color: var(--304835, #304835);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Helvetica Neue";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 28.467px; /* 203.333% */
  text-transform: uppercase;
  margin-bottom: 5px;
}
.venue-style .contact-info .contact-info-background .venue-info .venue-info-box .email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--304835, #304835);
  leading-trim: both;
  text-edge: cap;
  font-family: "Helvetica Neue";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 28.467px; /* 203.333% */
  text-transform: uppercase;
  margin-bottom: 35px;
}
.venue-style .contact-info .contact-info-background .venue-info .venue-info-box .btn-contact {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  width: 259px;
  padding: 18px 5px;
  justify-content: center;
  align-items: center;
  gap: 10.168px;
  border: 1px solid var(--304835, #304835);
  background: var(--304835, #304835);
}
.venue-style .our-offices {
  display: flex;
  max-width: 1440px;
  width: 100%;
  padding: 74px 189px 74px 188px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}
@media (max-width: 1410px) {
  .venue-style .our-offices {
    padding: 74px 150px;
  }
}
@media (max-width: 1330px) {
  .venue-style .our-offices {
    padding: 74px 90px;
  }
}
@media (max-width: 1208px) {
  .venue-style .our-offices {
    padding: 74px 20px;
  }
}
@media (max-width: 768px) {
  .venue-style .our-offices {
    flex-direction: column;
    padding: 74px 20px;
  }
}
.venue-style .our-offices h2 {
  align-self: stretch;
  color: var(--304835, #304835);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: "Gotham", sans-serif;
  font-size: 42px;
  width: 100%;
  font-weight: 400;
  line-height: 28px; /* 66.667% */
}
.venue-style .our-offices .cat-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  margin: 57px auto;
  width: 100%;
}
@media (max-width: 1024px) {
  .venue-style .our-offices .cat-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }
}
.venue-style .our-offices .cat-container .post-cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 330px;
  width: 100%;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
}
@media (max-width: 1070px) {
  .venue-style .our-offices .cat-container .post-cat {
    max-width: 30%;
  }
}
@media (max-width: 768px) {
  .venue-style .our-offices .cat-container .post-cat {
    margin-bottom: 30px;
    max-width: 330px;
  }
}
.venue-style .our-offices .cat-container .post-cat .img-cat {
  width: 100%;
  max-width: 320px;
  height: 346px;
  flex-shrink: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.venue-style .our-offices .cat-container .post-cat .img-cat img {
  height: 100% !important;
  width: auto !important;
}
.venue-style .our-offices .cat-container .post-cat:hover {
  background: #fff;
}
.venue-style .our-offices .cat-container .post-cat .content-cat {
  width: 100%;
}
.venue-style .our-offices .cat-container .post-cat .content-cat .blog-title {
  color: #304835;
  leading-trim: both;
  text-align: left;
  text-edge: cap;
  font-family: "Gotham", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px; /* 116.667% */
  width: 100%;
  min-height: 56px;
  max-width: 266px;
}
.venue-style .our-offices .cat-container .post-cat .content-cat .blog-title a {
  color: #304835;
  text-decoration: none;
}
@media (max-width: 768px) {
  .venue-style .our-offices .cat-container .post-cat .content-cat .blog-title {
    min-height: 20px;
  }
}
.venue-style .our-offices .cat-container .post-cat .content-cat .location-p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #9dba9b;
  font-family: "Helvetica Neue";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
  text-transform: uppercase;
}
.venue-style .our-offices .cat-container .post-cat .content-cat .location-p img {
  width: 17.5px;
  height: 21px;
  margin-right: 10px;
}

.our-offices {
  display: flex;
  max-width: 1063px;
  width: 100%;
  margin: 0 auto;
  padding: 188px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .our-offices {
    flex-direction: column;
    padding: 74px 20px;
  }
}
.our-offices h2 {
  align-self: stretch;
  color: var(--304835, #304835);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: "Gotham", sans-serif;
  font-size: 42px;
  width: 100%;
  font-weight: 400;
  line-height: 28px; /* 66.667% */
}
.our-offices .cat-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  gap: 20px;
  margin: 57px auto;
  width: 100%;
}
@media (max-width: 768px) {
  .our-offices .cat-container {
    flex-direction: column;
    gap: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.our-offices .cat-container .post-cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 320px;
  width: 100%;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
}
.our-offices .cat-container .post-cat .img-cat {
  width: 100%;
  max-width: 320px;
  height: 346px;
  flex-shrink: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.our-offices .cat-container .post-cat .img-cat img {
  height: 100% !important;
  width: auto !important;
}
.our-offices .cat-container .post-cat:hover {
  background: #fff;
}
.our-offices .cat-container .post-cat .content-cat {
  width: 100%;
}
.our-offices .cat-container .post-cat .content-cat .blog-title {
  color: #304835;
  leading-trim: both;
  text-align: left;
  text-edge: cap;
  font-family: "Gotham", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px; /* 116.667% */
  width: 100%;
  min-height: 56px;
  max-width: 266px;
}
.our-offices .cat-container .post-cat .content-cat .blog-title a {
  color: #304835;
  text-decoration: none;
}
@media (max-width: 768px) {
  .our-offices .cat-container .post-cat .content-cat .blog-title {
    min-height: 20px;
  }
}
.our-offices .cat-container .post-cat .content-cat .location-p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #9dba9b;
  font-family: "Helvetica Neue";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
  text-transform: uppercase;
}
.our-offices .cat-container .post-cat .content-cat .location-p img {
  width: 17.5px;
  height: 21px;
  margin-right: 10px;
}
.our-offices .cat-container .post-cat-four {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 340px;
  width: 100%;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
}
.our-offices .cat-container .post-cat-four .img-cat {
  width: 100%;
  max-width: 340px;
  height: 346px;
  flex-shrink: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.our-offices .cat-container .post-cat-four .img-cat img {
  height: 100% !important;
  width: auto !important;
}
.our-offices .cat-container .post-cat-four:hover {
  background: #fff;
}
.our-offices .cat-container .post-cat-four .content-cat {
  width: 100%;
}
.our-offices .cat-container .post-cat-four .content-cat .blog-title {
  color: #304835;
  leading-trim: both;
  text-align: left;
  text-edge: cap;
  font-family: "Gotham", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px; /* 116.667% */
  width: 100%;
  min-height: 56px;
  max-width: 266px;
}
.our-offices .cat-container .post-cat-four .content-cat .blog-title a {
  color: #304835;
  text-decoration: none;
}
@media (max-width: 768px) {
  .our-offices .cat-container .post-cat-four .content-cat .blog-title {
    min-height: 20px;
  }
}
.our-offices .cat-container .post-cat-four .content-cat .location-p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #9dba9b;
  font-family: "Helvetica Neue";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
  text-transform: uppercase;
}
.our-offices .cat-container .post-cat-four .content-cat .location-p img {
  width: 17.5px;
  height: 21px;
  margin-right: 10px;
}

.about-arnel {
  background: linear-gradient(0deg, rgba(48, 72, 53, 0.8) 0%, rgba(48, 72, 53, 0.8) 100%), url("./../../images/Metro_Pointe_063.jpg") lightgray 50%/cover no-repeat;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  padding: 205px 188px 206px 188px;
  position: relative;
  z-index: 1;
  background-position: center;
  background-size: cover;
}
@media (max-width: 768px) {
  .about-arnel {
    padding: 100px 20px;
  }
}
.about-arnel .about-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  max-width: 1064px;
  background: #f7f7f7;
  padding: 64px 51px;
}
.about-arnel .about-box .title-container-about h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--304835, #304835);
  text-align: center;
  font-family: "Gotham", sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 28px; /* 53.846% */
}
.about-arnel .about-box .title-container-about h2 .logo-title {
  margin-left: 10px;
}
.about-arnel .about-box .title-container-about .bar-section {
  width: 100%;
  max-width: 432px;
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.about-arnel .about-box .title-container-about .bar-section img {
  width: 100%;
  height: auto;
}
.about-arnel .about-box .about-container {
  color: var(--304835, #304835);
  leading-trim: both;
  text-edge: cap;
  font-family: "Helvetica Neue";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  text-align: center;
  width: 100%;
  max-width: 962px;
}
.about-arnel .about-box .about-container strong {
  font-weight: 700;
}

.title-container {
  text-align: center;
  font-weight: 700;
  color: #304835;
  padding-top: 150px;
  align-self: stretch;
  color: var(--304835, #304835);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: "Gotham", sans-serif;
  font-size: 42px;
  width: 100%;
  font-weight: 400;
  line-height: 28px;
}

.index-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 130px;
}
.index-page .container-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.our-venues {
  display: flex;
  max-width: 1063px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .our-venues {
    flex-direction: column;
    padding: 74px 20px;
  }
}
.our-venues h2 {
  align-self: stretch;
  color: var(--304835, #304835);
  text-align: center;
  font-family: "Gotham", sans-serif;
  font-size: 42px;
  width: 100%;
  font-weight: 400;
  line-height: 28px; /* 66.667% */
}
.our-venues .venue-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  gap: 20px;
  margin: 10px auto;
  width: 100%;
}
@media (max-width: 768px) {
  .our-venues .venue-container {
    flex-direction: column;
    gap: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.our-venues .venue-container .venue-tabs {
  width: 100%;
  max-width: 1064px;
}
.our-venues .venue-container .venue-tabs .venue-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 1064px;
  list-style: none;
  margin-bottom: 36px;
}
.our-venues .venue-container .venue-tabs .venue-list .tab {
  cursor: pointer;
  padding: 10px 20px;
  color: #304835;
  font-family: "Helvetica Neue";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
  text-transform: uppercase;
  min-width: 136px;
  border: none;
  background-color: #fff;
  border: 1px solid #fff;
}
.our-venues .venue-container .venue-tabs .venue-list .tab:hover {
  border: 1px solid #304835;
}
.our-venues .venue-container .venue-tabs .venue-list .tab.active {
  color: #304835;
  border: 1px solid #304835;
}
.our-venues .venue-container .venue-list-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1064px;
}
.our-venues .venue-container .venue-list-container a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  margin-bottom: 52px;
  border: solid 1px #366532;
  max-width: 32%;
  margin-bottom: 52px;
  min-width: 320px;
}
.our-venues .venue-container .venue-list-container a .venue-list-item {
  width: 100%;
  min-width: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.our-venues .venue-container .venue-list-container a .venue-list-item img {
  width: 100%;
  height: 321px;
}
.our-venues .venue-container .venue-list-container a .venue-list-item p {
  color: #9dba9b;
  font-family: "Helvetica Neue";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px 28px;
  text-decoration: none;
  width: 100%;
}
.our-venues .venue-container .venue-list-container a .venue-list-item p .location-dot {
  width: 17.5px;
  height: 21px;
  flex-shrink: 0;
  margin-right: 10px;
}
.our-venues .venue-container .venue-list-container a .venue-list-item h3 {
  text-align: left;
  font-family: "Gotham", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px; /* 116.667% */
  padding: 10px 28px 0;
  color: #304835;
  text-decoration: none;
  width: 100%;
}

footer {
  background-color: #304835;
  color: #fff;
  width: 100%;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
footer .footer-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}
@media (max-width: 768px) {
  footer .footer-container {
    flex-direction: column;
    padding: 50px 20px;
  }
}
footer .footer-container .box-footer {
  width: 50%;
  max-width: 356px;
}
@media (max-width: 768px) {
  footer .footer-container .box-footer {
    width: 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  footer .footer-container .box-footer img {
    margin-bottom: 20px;
  }
}
footer .footer-container .box-footer p {
  color: var(--FFFFFF, #fff);
  font-family: "Helvetica Neue";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 280% */
}
@media (max-width: 768px) {
  footer .footer-container .box-footer p {
    font-size: var(--sds-typography-body-size-medium);
  }
}
footer .footer-container .box-footer ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  footer .footer-container .box-footer ul {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
}
footer .footer-container .box-footer ul li {
  margin: 16px 0;
}
@media (max-width: 768px) {
  footer .footer-container .box-footer ul li {
    margin: 0;
  }
}
footer .footer-container .box-footer ul li a {
  color: var(--FFFFFF, #fff);
  text-align: center;
  font-family: "Helvetica Neue";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 233.333% */
  text-decoration: none;
}
@media (max-width: 768px) {
  footer .footer-container .box-footer ul li a {
    font-size: var(--sds-typography-body-size-medium);
  }
}
footer .footer-container .box-footer ul li a:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=main.css.map */
