/* RESET */

*,
::after,
::before {
  box-sizing: border-box;
}

ol[class],
ul[class] {
  padding: 0;
}

blockquote,
body,
dd,
dl,
figcaption,
figure,
h1,
h2,
h3,
h4,
li,
ol[class],
p,
ul[class] {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: 'Lora', sans-serif;
  font-weight: 100;
  -webkit-font-smoothing: antialiased;
  position: relative;
  background-color: #fff;
}

ol[class],
ul[class] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
}

html {
  scroll-behavior: smooth;
}

/* COLORS */

	:root {
	--black: #000;
	--white: #fff;
	--lightGray: #f0f0f0;
	--yellow: #fedf00;
  --dark: #2a2f35;
  --fsreg:"fira-sans", sans-serif;

	}


/* FONTS */


  p {
      color: var(--colorDark);
      font-family: lora, sans-serif;
      font-weight: 400;
      font-size: 16px;
      margin-bottom: 20px;
      line-height: 160%;
  }

  h1 {
    font-family: 'fira-sans', sans-serif;
    letter-spacing: .02em;
    font-size: 42px;
    color: rgb(255,255,255,1);
    text-transform: uppercase;
    font-weight: 700;
    text-align: left;
    line-height: 110%;
    margin-bottom: 20px;
  }

  h2 {
    font-family: 'fira-sans', sans-serif;
    letter-spacing: .02em;
    font-size: 35px;
    color: var(--colorDarkFont);
    text-transform: uppercase;
    font-weight: 700;
    text-align: left;
    line-height: 120%;
    margin-bottom: 10px;
  }
  
  h3 {
    font-family: 'open-sans', sans-serif;
    letter-spacing: .02em;
    font-size: 20px;
    color: var(--colorWhite);
    text-transform: uppercase;
    font-weight: 600;
    text-align: left;
    line-height: 110%;
    margin-bottom: 10px;
  }

/* LINKS */

a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
  font-family: inherit;
}

.post p a:not(.learn-more) {
  color: #ceb503;
  border-bottom: 2px dotted #ceb503;
}

.post a:hover {
 cursor: pointer;
}

/* COMPONENTS */

.content-wrapper {
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 6%;
}

.split {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
}


.post {
  max-width: 1000px;
  margin: 0 auto;
}

.post p {
  text-align: left;
  color: var(--dark);
  font-size: 18px;
  line-height: 1.8em;
  font-family: 'open-sans';
}

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

.post h2 {
  text-align: left;
  margin: .6em 0 .8em;
}

.post li:before {
  font-family: 'FontAwesome';
  content: '\f0da';
  margin: 4px 8px 0 0;
  color: var(--colorDark);
  font-size: 16px;
}

.post ul {
  list-style: none;
  padding-left: 20px;
}

.post li {
  text-align: left;
    color: var(--dark);
    font-size: 18px;
    line-height: 1.8em;
    font-family: 'open-sans';
}

.post li p {
  margin-bottom: 10px;
}


/* BUTTONS */

  .learn-more {
    display: inline-block;
    color: var(--black);
    height: auto;
    width: auto;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-family: 'fira-sans', sans-serif;
    font-weight: 600;
    line-height: 100%;
    border-radius: 0px;
    letter-spacing: .02em;
    font-size: 16px;
    background-color: var(--yellow);
    transition: all .4s;
    padding: 12px 24px;
  }

  a.learn-more:hover {
  transform: scale(1.03);
  cursor: pointer;
  }

  input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

/* OVERLAYS */

  .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgb(0,0,0,.3);
  }

/* FORMATTING */

  .alignleft {
      float: left;
      margin: 0 20px 20px 0;
      height: auto;
  }

  .alignright {
      float: right;
      margin: 0 0px 20px 20px;
      height: auto;
  }

  .aligncenter {
      display: block;
      margin: 0 auto 20px;
      height: auto;
  }

  .split {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }

   /* Header */

   header {
    width: 100%;
    position: fixed;
    display: block;
    height: auto;
    background-color: var(--black);
    left: 0;
    top: 0;
    z-index: 15;
    transition: all .5s;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1600px;
    margin: 0 auto;
}

.header-content-container {
    padding: 0px 5%;
}

header .social-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-one-row-with-banner .header-content {
  padding: 0px 3% 0px 3%;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  max-width: 1600px;
  margin: 0px auto;
}

/* Banner Row */

.nav-one-row-with-banner .nav-row.top-nav-row {
  background-color: var(--colorPrimary);
  padding: 2px 3%;
  height: 36px;
}

/* Logo */

a.logo-link {
    padding: 0px 0px;
    height: 100%;
    flex: 0 0 auto;
    align-items: center;
    display: flex;
}

.logo {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    transition: width .3s;
}

header img.logo {
    height: 100px;
}



/* Nav */

.nav-rows {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.nav-row {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

/* Top Nav Row */

.nav-row.top-nav-row > * {
    margin-left: 5%;
    color: var(--white);
    font-family: 'fira-sans';
    font-size: 14px;
}

.nav-one-row-with-banner a.nav-phone-link {
    font-size: 20px;
    letter-spacing: 0.06em;
    font-weight: 700;
    font-family: 'mont', sans-serif;
    color: var(--colorWhite);
}

.nav-one-row-with-banner .social-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 12px;
  padding: 0px 1em;
  margin-left: 30px;
}

.nav-one-row-with-banner a.nav-social {
  display: flex;
  align-items: center;
}

.nav-one-row-with-banner a.nav-social i {
  font-size: 28px;
  color: var(--colorWhite);
}

header .social-row {
  column-gap: 8px;
}

header .social-row p {
  margin-bottom: 0px;
}

/* Bottom Nav Row */

nav {
    height: 100%;
    flex-grow: 1;
    position: relative;
    margin-right: 5%;
}

.nav-row.top-nav-row {
    border-bottom: .1px solid var(--yellow);
}

header a.learn-more.gold-btn {
    height: 100%;
    display: flex;
    font-family: 'fira-sans', san-serif;
}

/* Nav Menu */

.menu-main-menu-container {
    display: flex;
    justify-content: flex-end;
    height: 100%;
}

#menu-main-menu {
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 890px;
    padding-right: 0;
    flex: 1;
}

#menu-main-menu > li {
    display: flex;
    align-items: center;
    height: 100%;
    cursor: pointer;
    position: relative;
    margin-left: 5%;
}

.menu-main-menu-container li a {
    transition: margin .3s;
    display: flex;
    align-items: center;
    color: var(--white);
    text-transform: uppercase;
    font-family: 'fira-sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    height: 100%;
    transition: .3s all;
    justify-content: flex-end;
}

.menu-main-menu-container #menu-main-menu > li.disable:hover > a, .menu-main-menu-container #menu-main-menu > li.disable > a:hover {
    color: #fff;
    pointer-events: none;
    cursor: initial;
}


/* Sub Menu */

#menu-main-menu li:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
  display: block;
  /* border-top: 4px solid var(--colorBlue); */
  position: absolute;
  right: 0;
  top: 48px;
  width: auto;
  min-width: 160px;
  filter: drop-shadow(1px 2px 0px #999);
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--black);
  }

  #menu-main-menu li:hover ul.sub-menu a {
      padding-bottom: 0px;
  }

  #menu-main-menu > li:not(.nav-cta):hover > a {
      text-decoration: none;
	    color: var(--yellow);
  }

  #menu-main-menu li.menu-item-has-children>a:after, #menu-main-menu-1 li.menu-item-has-children>a:after {
      font-family: 'Font Awesome 5 Free';
      content: '\f107';
      margin: 0 0 0 5px;
      font-weight:600;
  }

  .sub-menu {
      display: none;
      position: absolute;
      z-index: 20;
      margin: 0;
      height: auto;
      top: 23px;
      width: auto;
      min-width: 160px;
      background-color: var(--colorWhite);
  }

  .sub-menu li {
      margin: 0;
      display: block;
      text-align: right;
      background: var(--colorLight);
      padding: 8px 12px;
  }

  .sub-menu li:hover {
      color: var(--yellow);
  }

  .sub-menu li:hover a {
      color: var(--colorGrayFont);
  }

  .sub-menu a {
      font-size: 16px;
      font-weight: 500;
      color: var(--colorGrayFont);
      text-transform: none;
      height: 100%;
      display: block;
      width: 100%;
  }

  .sub-menu a:hover {
      color: var(--colorOrange) !important;
  }
  

/* Nav Contact Button */

.learn-more.nav-contact-btn {
    background-color: var(--colorPrimary);
    color: var(--colorWhite);
}

/* Fixed Space */

.fixed-header-space {
    height: 100px;
    width: 100%;
    background-color: var(--colorDark);
}


/* HOME PAGE */
/* Home - Hero */

section#hero {
  display: block;
  /* max-height: none; */
  /* height: auto; */
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  height: 100%;
  margin: 0 auto;
  width: 100%;
  column-gap: 16px;
}

section#hero img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    margin: 0;
}

.hero-banner {
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: auto;
    background-color: rgb(0,0,0,.7);
}

.hero-copy-container h1 {
    color: var(--white);
}

.hero-copy-container h1 {
    color: var(--white);
    margin-bottom: 10px;
}

.hero-copy-container p {
    color: var(--white);
    text-align: left;
    margin-bottom: 4px;
    font-size: 18px;
    font-family: 'fira-sans';
    font-style: italic;
}

.hero-banner .content-wrapper {
  padding: 10px 5%;
}

.hero-button-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 10px;
    flex: 0 0 280px;
    padding: 10px 14px;
}

.hero-button-container .learn-more {
    flex: 0 0 44px;
    width: 100%;
    display: flex;
}

.hero-copy-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

/* Home Intro */

.full-split {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.split-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.full-split .split-image {
    flex: 0 0 50%;
}

.full-split .split-copy {
    flex: 0 0 50%;
    padding: 30px 5% 30px 30px;
}

.split-copy-container {
    max-width: 600px;
}

.intro-service-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    column-gap: 28px;
}

section#home-intro {
    margin-top: -6px;
}

#home-intro p.preheading {
    text-transform: capitalize;
    font-style: italic;
    color: #5c5c5c;
    margin-bottom: 0px;
}

#home-intro h2 {
    max-width: 500px;
}

.intro-service-copy-container p {
    font-size: 14px;
    margin-bottom: 10px;
    font-family: 'fira-sans';
}

.intro-service-copy-container .learn-more {
    padding: 8px 12px;
}

.intro-services-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    row-gap: 28px;
}

/* Team Members */

section#team-members {
    background-color: var(--dark);
}

.team-members-content p {
    color: var(--white);
    max-width: 867px;
    margin: 0 auto 30px;
}

p.preheading {
    text-transform: capitalize;
    font-style: italic;
    margin-bottom: 0px;
}

.team-members-content h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 16px;
}

#team-members p.preheading {
    color: var(--white);
    margin-bottom: 2px;
}

/* Banner CTA */

section#banner-cta {
    background-color: var(--lightGray);
}

section#banner-cta h2 {
    text-align: center;
}

/* Home Communities Map */

.home-communities-feed-container {
    display: flex;
    flex-flow: wrap;
    align-items: stretch;
    justify-content: flex-start;
    row-gap: 10px;
    column-gap: 12px;
}

.community-card {
    flex: 0 0 calc(33% - 10px);
    max-width: 280px;
    display: flex;
    flex-direction: column;
}

.community-card-image-container {
    height: 160px;
    padding: 30px;
}

.community-card-image-container img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.community-card .learn-more {
    width: 100%;
    text-align: center;
    font-size: 14px;
    flex-grow: 1;
    display: flex;
}

#home-communities-map .split-copy-container {
    max-width: 800px;
}

#home-communities-map .full-split .split-copy {
    display: flex;
    justify-content: flex-end;
}

section#home-communities-map .split-image {
    flex: 0 0 33%;
}

section#home-communities-map .split-copy {
    flex: 0 0 67%;
}

section#home-communities-map .full-split .split-copy {
    flex: 0 0 100%;
    justify-content: center;
    padding: 50px;
}

section#home-communities-map .full-split .split-copy p.preheading {
    text-align: center;
}

section#home-communities-map .full-split .split-copy h2 {
    text-align: center;
}

.home-communities-feed-container {
    justify-content: center;
}

/* INTERNAL PAGES */
/* Internal Pages - Internal Hero */

section.internal-header {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  margin-top: 0px;
  background-color: var(--colorGold);
  position: relative;
}

section.internal-header h1, section.internal-header p.hero-title {
  color: var(--colorWhite);
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 0px;
  position: relative;
  z-index: 10;
  text-align: center;
  font-family: 'mont';
  width: 100%;
}

/* Internal Hero */

section#internal-hero {
    height: 440px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.title-banner {
    width: 100%;
    /* background: #000; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(0, 0, 0, .75);
    column-gap: 5px;
}

.title-banner-inner-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0px;
    flex: 0 0 calc(80% - 20px);
    /* background-color: rgb(0, 0, 0, .7); */
}

.title-banner-inner-container h1 {
    margin-bottom: 0px;
    width: auto;
    display: inline-block;
    /* background: #fff; */
    padding: 0px 0px;
    /* color: var(--black); */
}

.margin-space {
    flex-grow: 1;
    min-width: calc(.1 * 100vw);
}

.margin-space.banner-line {
    height: 1px;
    background-color: var(--yellow);
}

/* GALLERY PAGE */

.image-gallery-row {
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  justify-content: center;
  flex-flow: wrap;
  max-width: 1000px;
  margin: 40px auto 0;
  row-gap: 14px;
  column-gap: 14px;
  }

.single-gallery .image-gallery-row {
    padding-bottom: 40px;
}

  .image-gallery-container {
  height: 188px;
  overflow: hidden;
  }

  .image-gallery-container img {
  min-height: 100%;
  width: 188px;
  object-fit: cover;
  transition: .5s all;
  }

  .image-gallery-container img:hover {
  transform: scale(1.03);
  }

  a.image-gallery-container {
  border-bottom: none;
  border-radius: 0px;
  flex: 0 0 188px;
  }

  a.image-gallery-container:hover {
    border-bottom: none;
  }

  footer {
    background-color: var(--dark);
    padding: 50px 5%;
}

div#built-by p {
    color: #fff;
    margin: 43px;
    font-size: 11px;
}
div#built-by a {
    color: var(--yellow);
}

.columns-container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.logo-column {
    flex: 1;
}

.footer-contact {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer h3 {
    color: var(--white);
}

footer .contact-form-container {
    max-width: 480px;
}

footer a.logo-link {
    display: block;
    height: auto;
    margin-bottom: 20px;
    max-width: 210px;
}

.logo-column p {
    color: var(--white);
    margin-bottom: 0px;
}

footer h4 {
    color: var(--white);
}

.footer-address-container {
    margin-bottom: 20px;
}

.footer-phone-container {
    margin-bottom: 20px;
}

/* Single Community */

.single-community-container {
    display: flex;
    column-gap: 50px;
    align-items: flex-start;
    max-width: 1080px;
    margin: 0 auto;
}

.single-community-description h1 {
    color: var(--black);
    font-family: 'fira-sans';
    text-transform: capitalize;
    font-size: 36px;
}

.single-community-info-column {
    flex: 0 0 360px;
    padding: 0px;
    /* background-color: var(--lightGray); */
    /* padding: 12px; */
}

.single-community-info {
    padding: 0px 40px;
}

.single-community-description {
    text-align: left;
}

.single-logo-container img {
    max-width: 220px;
}

.intro-info {
    /* background-color: var(--lightGray); */
    padding: 12px;
    /* border-radius: 2px; */
    border: 1px solid var(--black);
}

.address-info {
    margin-top: 20px;
    /* border: 1px solid var(--black); */
    padding: 12px;
    border-radius: 2px;
    background-color: var(--lightGray);
    filter: drop-shadow(2px 2px 1px #ccc);
}

.address-info p {
    margin-bottom: 7px;
}

.intro-info .learn-more {
    margin-bottom: 10px;
}


p.no-logo {
    max-width: 119px;
    background-color: var(--lightGray);
    padding: 10px;
    margin: 0 auto 20px;
    border-radius: 4px;
    font-weight: 800;
    color: #aaa;
}

.community-teaser {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    margin-bottom: 30px;
    /* background: var(--lightGray); */
    padding: 0px 0px;
    border-radius: 4px;
    /* border: 1px solid #000; */
    /* filter: drop-shadow(2px 2px 1px #ccc); */
    flex-direction: column;
    flex: 0 0 calc(33.3% - 20px);
    max-width: 300px;
    row-gap: 20px;
}

.community-teaser .community-card-image-container {
    flex: 0 0 180px;
    /* padding: 20px; */
    height: 100px;
    overflow: hidden;
    background-color: var(--white);
    border: 1px solid var(--black);
}

.community-info-column {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 0px;
    justify-content: space-between;
}

.community-teaser .community-card-image-container img {
    object-position: top;
    /* filter: drop-shadow(1px 1px 0px #ccc); */
}

.community-info-column h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.community-info-column p {
    margin-bottom: 20px;
}

p {}

.post .community-info-column p:last-of-type {
    margin-bottom: 20px;
}

.gallery-teasers-container {
    display: flex;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: stretch;
    column-gap: 40px;
    row-gap: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
}

a {}

.gallery-teaser {
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(33.3% - 27px);
    align-items: center;
    justify-content: flex-start;
    background-color: var(--black);
    overflow: hidden;
}

.gallery-teaser img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-teaser > a {
    height: 200px;
    width: 100%;
    /* flex: 0 0 100px; */
    display: block;
}

.page-template-portfolio .post {
    max-width: 1200px;
}

.gallery-teaser h2 {
    text-transform: uppercase;
    font-size: 20px;
    text-align: center;
    font-family: 'fira-sans';
    font-weight: 300;
    color: var(--white);
    flex-grow: 1;
}

.gallery-title-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding: 4px;
}

.communities-row {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-flow: wrap;
    row-gap: 30px;
    column-gap: 50px;
}

.community-info-column h3, .community-info-column p {
    text-align: center;
}

.community-info-column .learn-more {
    /* background-color: var(--white); */
}

.community-info-column p {
    text-align: center;
    max-width: 249px;
    margin-bottom: 10px;
	    font-size: 13px;
    font-family: 'fira-sans';
}

.single-community-description h2 {
    color: var(--black);
    font-family: 'fira-sans';
    text-transform: capitalize;
    font-size: 28px;
}

.single-community-description p, .single-community-description li {
    font-family: 'open-sans';
    font-size: 16px;
}

.single-community-description ul {
    list-style: none;
    padding-left: 30px;
    margin-bottom: 30px;
}

.single-community-description ul li i {
    color: var(--yellow);
    margin-right: 8px;
    font-size: .9em;
    line-height: 150%;
}

.single-community-description li {
    margin-bottom: 10px;
}

.single-logo-container {
    margin-bottom: 10px;
}

.single-community .gallery-teaser img {
    height: 140px;
    min-width: 100%;
    object-fit: cover;
}

.single-community .gallery-teaser {
    flex: 0 0 calc(33.3% - 13px);
    background-color: transparent;
}

.single-community .gallery-teasers-container {
    column-gap: 18px;
    /* background-color: var(--lightGray); */
    padding: 10px 0px;
    margin-bottom: 10px;
}

.single-community .gallery-teaser > a {
    height: 140px;
}

.single-community .gallery-title-container h2 {
    font-size: 17px;
    margin-top: 6px;
}

/* Articles */

/* Blog teaser */

.blog-row {
  display: flex;
  flex-flow: wrap;
  justify-content: flex-start;
  row-gap: 50px;
  column-gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

section#blog-list .content-wrapper {
	padding: 90px 6% 60px;
}

.blog-card {
  flex: 0 0 31%;
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
  filter: drop-shadow(2px 4px 6px #ccc);
}

.blog-teaser-image {
  height: 220px;
  overflow: hidden;
  margin-bottom: 18px;
}

.blog-teaser-image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.blog-card h3.post-title a,
.blog-details h3.post-title {
  font-size: 21px;
  font-family: 'fira-sans';
  margin-bottom: 10px;
  text-transform: none;
}


.blog-author-teaser p.blog-card-date {
  margin-bottom: 8px;
}

a.blog-link {color: var(--dark);font-family: "fira-sans";font-size: 18px;}

.blog-details {
    text-align: left;
    padding: 16px;
}

a.blog-link span {
    margin-right: 6px;
    padding-top: 0px;
    color: var(--yellow);
}

.pagination {
  width: 100%;
}

nav.navigation.pagination {
  background-color: #fff;
  padding-top: 30px;
  height: auto;
  box-shadow: none;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  background-color: transparent;
  justify-content: center;
  height: 47px;
}

a.page-numbers {
  color: var(--colorDark);
  background-color: var(--colorLightGray);
  padding: 6px 12px;
  border-radius: 4px;
  margin-right: 8px;
  font-size: 15px;
  font-family: "Mont", sans-serif;
}
a.page-numbers:last-of-type {
  margin-right: 0px;
}

span.current {
  
  font-family: "Mont", sans-serif;
  font-size: 14px;
  line-height: 32px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background-image: var(--colorYellow);
  padding: 8px;
  border-radius: 4px;
  color: var(--colorDark);
  margin-right: 8px;
}

span.page-numbers.dots {
  margin-right: 8px;
}



/* Single */

.single .blog-time-teaser {
  margin-bottom: 12px;
  /* margin-right: 8px; */
  color: var(--colorDark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 16px;
  padding-top: 1px;
  font-family: "Mont", sans-serif;
}

.single .blog-author-teaser {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
}

.single .blog-author-teaser p {
  margin-bottom: 10px;
  font-size: 16px;
}

.blog-separator {
  border-top: 1px dashed #aaa;
  margin-bottom: 20px;
}


.single .post li {
  font-size: 18px;
  font-family: "Mont", sans-serif;
  margin-bottom: 10px;
  line-height: 32px;
}

.single-post h1 {
  color: #000;
}

.single .post h2 {
  margin-bottom: 20px;
}

.single .post p {
  font-size: 18px;
  line-height: 32px;
}

.blog-image-container {
  margin-bottom: 40px;
  height: 360px;
  overflow: hidden;
}

.blog-image-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.single .content {
  flex-direction: column;
}

.single .more-posts .blog-author-teaser {
  flex-direction: column;
}

.single .more-posts .content-wrapper {
  padding-top: 10px;
}

section.more-posts h2 {
    text-align: center;
    margin-bottom: 40px;
}

.page-template-blog article,
.single article {
  max-width: 800px;
  margin: 0 auto;
  padding-right: 0px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.single .content {
  flex-direction: column;
}

.single article h1 {
    font-family: 'fira-sans';
    text-transform: capitalize;
}

input[type="submit"] {
     display: inline-block;
    color: var(--black);
    height: auto;
    width: auto;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-family: 'fira-sans', sans-serif;
    font-weight: 600;
    line-height: 100%;
    border-radius: 0px;
    letter-spacing: .02em;
    font-size: 16px;
    background-color: var(--yellow);
    transition: all .4s;
    padding: 12px 24px;
}

section#internal-hero {
    height: 320px;
}

h2 {
    font-size: 28px;
}

button.filter-btn {
    background-color: var(--yellow);
    border: none;
    padding: 6px 10px;
    font-family: 'fira-sans';
}

.gallery-filters {
    display: flex;
    justify-content: center;
    column-gap: 14px;
}

.contact-address-container {
    margin: 40px auto;
}

.contact-address-container p {
    margin-bottom: 0px;
}

.awards-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    column-gap: 40px;
    margin-top: 50px;
	margin-bottom: 50px;
}

.award-container {
    flex: 0 0 calc(50% - 40px);
    background-color: var(--lightGray);
    padding: 20px 30px;
}

.award-heading-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 2px;
}

.line {
    height: 2px;
    flex-grow: 1;
    background-color: #212121;
}

div#gform_confirmation_message_1 {
    color: #fff;
}


/* RESPONSIVE */

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


	}

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


	}

	@media screen and (min-width: 1001px) {

    .mobile-only {
    display: none !important;
    }

	}

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

		/* Header Mobile */
	.desktop {
			display: none !important;
		}
     

    header.mobile-only img {
        height: 54px;
    }

      header.mobile-only {
        display: flex;
        padding: 0px 23px 0px 20px;
        justify-content: space-between;
        align-items: center;
        height: 70px;
        position: fixed;
        z-index: 1000;
        background: var(--black);
      
        width: 100%;
    }

    header.mobile-only a.logo-link {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        padding: 3px 0;
    }

    .fixed-header-space {
        height: 70px;
        display: block;
        width: 100%;
    }

    /* Hamburger Icon */

    .mobile-navbar ul {
        list-style: none;
    }

    .mobile-navbar {
        display: flex;
        align-items: center;
        margin-top: 0px;
    }

    .mobile-navbar ul {
        margin-bottom: 0px;
    }

    #menu-icon {
        width: 40px;
        height: 30px;
        position: relative;
        margin: 7px auto 6px;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.5s ease-in-out;
        -moz-transition: 0.5s ease-in-out;
        -o-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
        cursor: pointer;
        z-index: 999;
    }

    #menu-icon span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: var(--white);
        border-radius: 6px;
        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;
    }

    #menu-icon.open span {
        background: var(--white);
    }

    #menu-icon span:nth-child(1) {
        display: none;
    }

    #menu-icon span:nth-child(2),
    #nav-icon span:nth-child(3) {
        top: 13px;
    }

    #menu-icon span:nth-child(4) {
        top: 26px;
    }

    #menu-icon.open span:nth-child(1) {
        display: none;
    }

    #menu-icon.open span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 12px;
    }

    #menu-icon.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 11px;
    }

    #menu-icon.open span:nth-child(4) {
        top: 12px;
        width: 0%;
        left: 50%;
        opacity: 0;
    }

    /* Mobile Nav Menu */



    .sidenav.open {
        height: calc(100vh - 120px);
        padding-bottom: 154px;
        padding-top: 20px;
    }

    .sidenav a {
        padding: 3px;
        text-decoration: none;
        font-size: 21px;
        color: var(--white);
        display: block;
        transition: 0.3s;
        font-family: "Mont Bold", sans-serif;
        text-align: center;
    }

    #sidenav .faq-accordion-title-container.mobile-menu-accordion h3 {
        font-size: 24px;
        color: var(--white);
        margin-bottom: 0px;
        margin-right: 10px;
    }

    #sidenav h3 {
        font-size: 24px;
        color: var(--white);
    }

      #sidenav .faq-accordion-title-container.mobile-menu-accordion {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0px 10px;
        margin-bottom: 10px;
    }

    #sidenav .panel {
        padding: 10px 0px;
    }

    .sidenav {
        height: 0px;
        width: 100%;
        position: fixed;
        z-index: 990;
        top: 70px;
        left: 0;
        background: var(--black);
     
        overflow-x: hidden;
        transition: 0.5s all;
        -webkit-overflow-scrolling: touch;
        padding-right: 20px;
        padding-left: 20px;
      }

      .mobile-navbar ul {
        list-style: none;
        margin-top: 0px;
        padding: 0px;
      }

      ul#menu-mobile-menu {
          display: block;
      }

      .additional-link {
    margin-bottom: 20px;
}

  #mobile-nav li {
        text-align: left;
        border-bottom: none;
        display: block;
        margin-bottom: 20px;
      }

      #mobile-nav li:last-of-type {
        border: none;
      }

      #mobile-nav a, #mobile-nav ul.sub-menu a {
          padding: 2px;
          text-decoration: none;
          font-size: 19px;
          color: var(--white);
          display: block;
          transition: 0.3s;
          font-family: 'fira-sans';
          font-weight: 700;
          text-transform: capitalize;
          letter-spacing: .02em;
          text-align: center;
      }

      #mobile-nav ul.sub-menu a {
            font-weight: 500;
      }

      #mobile-nav ul.sub-menu {
        position: relative;
        margin-bottom: 30px;
        margin-top: 10px;
        background-color: #212121;
        padding: 20px 0px;
      }

      a.mobile-submenu-link {
        color: var(--white);
        font-size: 20px;
        margin-left: 20px;
      }

      .sidenav.open {
        height: calc(100vh - 80px);
        padding-bottom: 100px;
        padding-top: 50px;
      }

      #mobile-nav ul {
        list-style: none;
        padding-left: 0px;
      }

      .menu-main-menu-container {
    justify-content: center;
    height: auto;
}

ul#menu-main-menu-1 {
    width: 100%;
}

#mobile-nav li a {
    text-align: center;
}

#mobile-nav li a .sub-menu a {
    text-align: center;
}

#mobile-nav .sub-menu li:last-of-type {
    margin-bottom: 0px;
}
      


      .fixedPosition {
        position: fixed;
      }

      section#hero {
    display: flex;
    flex-direction: column;
}

section#hero img {
    height: auto;
    display: block;
}

.hero-banner {
    position: relative;
    background-color: var(--black);
}

.hero-content {
    flex-direction: column;
    row-gap: 20px;
}

.hero-button-container {
    flex: none;
}

.hero-banner .content-wrapper {
    padding: 20px;
}

.full-split {
    flex-direction: column;
}

.full-split .split-image {
    flex: none;
    height: 300px;
}

.intro-service-copy-container .learn-more {
    width: 100%;
    height: 50px;
    display: flex;
}

.community-card {
    flex: 0 0 calc(50% - 10px);
}

footer .columns-container {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.logo-column {
    flex: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.footer-address-container > * {
    text-align: center;
    margin-bottom: 7px;
}

.footer-phone-container > * {
    text-align: center;
    margin-bottom: 7px;
}

.logo-column p {
    margin-bottom: 5px;
}

.contact-form-container h3 {
    text-align: center;
    margin-bottom: 20px;
}

input[type="submit"] {
     
}
		
		div#gform_confirmation_message_1 {
    color: #fff;
}
		


.single-community-container {
    flex-direction: column-reverse;
    row-gap: 30px;
}

.single-community-info-column {
    flex: none;
    width: 100%;
}
		
		
.blog-card {
    flex: none;
    width: 100%;
}
		
		.awards-row {
    flex-direction: column;
    row-gap: 30px;
}

  }

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

  }

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

  }

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

  }
