@charset "UTF-8";
/*
    Theme Name: Newlands
*/
/*=================================================================================
RESET CSS
=================================================================================*/
* {
  padding: 0px;
  margin: 0px;
}

/*=================================================================================
BODY 
=================================================================================*/
body {
  font-family: "Century Gothic", "brandon-grotesque", Helvetica, Arial, Sans-Serif;
  font-size: 16px;
  background: #222;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1 {
  font-size: 48px;
  margin: 15px 0;
}

h2 {
  font-size: 42px;
  margin: 15px 0;
}

h3 {
  font-size: 36px;
  margin: 15px 0;
  font-weight: normal;
}

h4 {
  font-size: 24px;
  margin: 15px 0;
}

p {
  margin: 15px 0;
}

a {
  color: #7CAC0C;
}

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

/*=================================================================================
WP Block Editor
=================================================================================*/
.has-newlands-white-color {
  color: #fff;
}

.has-newlands-black-color {
  color: #000000;
}

.has-newlands-green-color {
  color: #7CAC0C;
}

.has-newlands-purple-color {
  color: #5D2A57;
}

.has-newlands-lightgrey-color {
  color: #f1f1f1;
}

.has-newlands-white-background-color {
  background: #fff;
}

.has-newlands-black-background-color {
  background: #000;
}

.has-newlands-green-background-color {
  background: #7CAC0C;
}

.has-newlands-purple-backgrnound-color {
  background: #5D2A57;
}

.has-newlands-lightgrey-background-color {
  background: #f1f1f1;
}

.wp-block-media-text__content {
  padding: 30px !important;
}

.wp-block-button__link {
  border-radius: 8px;
}

.alignfull {
  margin-left: calc( -100vw / 2 + 100% / 2 );
  margin-right: calc( -100vw / 2 + 100% / 2 );
  max-width: 100vw;
  min-width: 100vw;
  box-sizing: border-box;
}

.alignfull img {
  width: 100vw;
}

.alignfull iframe {
  width: 100vw;
  height: calc(100vw/16*9);
}

.alignfull iframe.map {
  width: 100%;
  height: calc(100vw/16*5);
}

.wp-block-group.has-background {
  padding: 30px;
}

.nf-form-content {
  padding: 0 !important;
  max-width: none !important;
}

.wp-block-gallery ul {
  padding: 0 !important;
}

/*=================================================================================
LAYOUT
=================================================================================*/
.container {
  margin: 0 auto;
  width: 1200px;
}

@media screen and (max-width: 1240px) {
  .container {
    width: auto;
    margin: 0 20px;
  }
}
.page-container {
  background: #fff;
}

.row {
  display: flex;
}
.row [class*=col] {
  flex: 1;
  padding: 0 15px;
}
.row [class*=col]:first-child {
  padding-left: 0;
}
.row [class*=col]:last-child {
  padding-right: 0;
}

@media screen and (max-width: 900px) {
  .row {
    display: block;
  }

  [class*=col] {
    max-width: none !important;
    padding: 10px 0 !important;
  }
}
/*=================================================================================
SITE HEADER
=================================================================================*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.2s all ease-in-out;
  z-index: 9999;
}
.site-header .header-layout {
  display: flex;
  align-items: center;
}
.site-header .header-layout .logo-area {
  background: #fff;
  padding: 15px;
  position: absolute;
  margin-top: 62px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  z-index: 9999;
}
.site-header .header-layout .logo-area a img {
  max-width: 140px;
  max-height: 140px;
}
.site-header.sticky {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.site-header.sticky .header-layout .logo-area {
  margin-top: 22px;
}
.site-header.sticky .header-layout .logo-area a img {
  max-width: 100px;
  max-height: 100px;
}
.site-header.sticky .site-navbar {
  color: #555;
}

@media screen and (max-width: 768px) {
  .site-header .header-layout .logo-area {
    margin-top: 0;
    top: 0px;
  }
  .site-header .header-layout .logo-area a img {
    max-width: 72px;
    max-height: 72px;
  }
}
.customize-support .site-header {
  top: 32px;
}

/*=================================================================================
SITE NAVBAR
=================================================================================*/
.site-navbar {
  text-align: right;
  flex: 1;
  font-size: 0;
  color: #fff;
}
.site-navbar ul {
  display: inline-block;
  text-align: left;
}
.site-navbar ul li {
  display: inline-block;
}
.site-navbar ul li.menu-item-has-children {
  position: relative;
}
.site-navbar ul li.menu-item-has-children > a:after {
  content: "";
  font-family: "FontAwesome", "Font Awesome", "Font Awesome 5 Free";
  font-weight: 900;
  padding-left: 15px;
}
.site-navbar ul li.menu-item-has-children .menu-item-has-children a:after {
  display: none;
}
.site-navbar ul li a {
  text-decoration: none;
  padding: 30px 15px;
  color: inherit;
  display: block;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  transition: 0.2s all ease-in-out;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.site-navbar ul li ul {
  position: absolute;
  right: 0;
  background: #fff;
  color: #555;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  min-width: 250px;
  display: none;
  padding: 8px;
  transition: 0.2s all ease-in-out;
  z-index: 9999;
}
.site-navbar ul li ul li {
  display: block;
}
.site-navbar ul li ul li a {
  padding: 10px 15px;
  text-transform: none !important;
  font-size: 18px;
}
.site-navbar ul li ul li a[href]:hover,
.site-navbar ul li ul li a[href]:focus {
  background: #7CAC0C;
  color: #fff;
}
.site-navbar ul li.megamenu {
  position: relative;
}
.site-navbar ul li.megamenu ul.sub-menu {
  /* position: absolute;
  width: auto;
  left: 40px;
  right: 40px;
  padding: 8px;
  display: flex;
  display: none; */
}
.site-navbar ul li.megamenu ul.sub-menu li {
  flex: 1;
}
.site-navbar ul li.megamenu ul.sub-menu li ul {
  position: static;
  box-shadow: none;
  display: block;
  padding: 0;
}
.site-navbar ul li.megamenu > ul > li > a {
  font-weight: bold;
  text-transform: uppercase !important;
}
.site-navbar ul li.megamenu:hover > ul.sub-menu, .site-navbar ul li.megamenu:focus > ul.sub-menu {
  display: flex !important;
}
.site-navbar ul > li:hover > a[href],
.site-navbar ul > li:focus > a[href] {
  color: #7CAC0C;
}
.site-navbar ul > li:hover > ul,
.site-navbar ul > li:focus > ul {
  display: block;
}
.site-navbar ul > li.current-menu-item > a[href] {
  font-weight: bold;
  color: #7CAC0C;
}

@media screen and (max-width: 768px) {
  .site-navbar .nav-expand {
    font-size: 28px;
    display: block;
    padding: 25px 0;
    flex: 1;
    text-align: right;
  }
  .site-navbar .nav-expand i.fa.fa-times {
    display: none;
  }
  .site-navbar .nav-links {
    display: none;
    background: #5D2A57;
  }
  .site-navbar .nav-links ul {
    text-align: right;
  }
  .site-navbar .nav-links ul li {
    display: block;
  }
  .site-navbar .nav-links ul li a {
    display: block;
    padding: 15px;
    text-decoration: none;
  }
  .site-navbar .nav-links ul li ul {
    position: static;
    border-radius: 0;
    box-shadow: none !important;
    background: transparent !important;
  }
  .site-navbar .nav-links ul li ul li a {
    color: #fff;
  }

  .site-navbar.open i.fa.fa-bars {
    display: none;
  }
  .site-navbar.open i.fa.fa-times {
    display: block;
  }
  .site-navbar.open .nav-links {
    display: block;
  }
}
/*=================================================================================
INTRO AREA
=================================================================================*/
.intro-area {
  background: #fff;
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.intro-area .video-bg {
  z-index: 1000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  width: 100vw;
  height: 56.25vw;
  /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 177.77vh;
  /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.intro-area .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 9998;
}
.intro-area .overlay .intro-area-content {
  flex: 1;
  color: #fff;
  padding: 40px 0;
}
.intro-area .overlay .intro-area-content .content-wrap {
  max-width: 50%;
}
.intro-area .overlay .intro-area-content .content-wrap h1 {
  font-size: 72px;
  line-height: 72px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  font-weight: bold;
}
.intro-area .overlay .intro-area-content .content-wrap p {
  font-size: 24px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .intro-area {
    min-height: 100vh;
    /*.video-bg{

        // border-radius: 0 0 80px 0;
        width: 200vw;
        height: 150vh;
        transform: translate(-50vw, -50vw);
    }*/
  }
  .intro-area .overlay {
    border-radius: 0 0 80px 0;
  }
  .intro-area .overlay .intro-area-content .content-wrap h1 {
    font-size: 48px;
    line-height: 48px;
  }
}
/*=================================================================================
PAGE CONTENT
=================================================================================*/
.page-content {
  padding: 60px 0;
  color: #424242;
  /*background-image: url("assets/newlands-transparent-overlay.png");
  background-size: 50vw;
  background-position: center top;
  background-repeat: no-repeat;*/
}
.page-content ul,
.page-content ol {
  margin: 15px 0;
  padding-left: 40px;
}

.page-content.home {
  padding: 0;
}

/*=================================================================================
BIG PAGE TITLES
=================================================================================*/
.big-page-title {
  color: #fff;
  background: #5D2A57;
  position: relative;
  min-height: 350px;
  height: 25vh;
  overflow: hidden;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
.big-page-title h1 {
  font-size: 48px;
  line-height: 48px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}
.big-page-title .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 9998;
  padding-top: 50px;
}
.big-page-title.with-video {
  height: 40vh;
  min-height: 500px;
}
.big-page-title.with-video .video-bg {
  z-index: 1000;
  position: absolute;
  top: 0;
  left: 0;
  width: 200vw;
  height: 200vh;
  transform: translate(-50vw, -25vw);
  border-radius: 0 0 300px 0;
}

@media screen and (max-width: 768px) {
  .big-page-title h1 {
    font-size: 48px;
    line-height: 48px;
  }
}
/*=================================================================================
ACTIVITY PAGE CONTENT 
=================================================================================*/
/*.activity-page-title{

    padding: 140px 0 30px 0;
    background-position: center center;
    background-size: cover;
    color: #fff; 

    h1{

        font-size: 72px;
        line-height: 72px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.50);
        text-transform: uppercase; 
    }
}
@media screen and (max-width: 768px){

    .activity-page-title{

        h1{

            font-size: 48px;
            line-height: 48px;
        }
    }
}*/
/*=================================================================================
Flipbox Blocks
=================================================================================*/
.wp-block-kcs-flipbox {
  position: relative;
  /*position: relative; 
  min-height: 220px;
  display: flex; 
  align-items: stretch; 

  .flipbox-content-area{

      flex: 1; 
      background: transparentize($brandGreen, 0.2);
      color: #fff;
      padding: 15px;
      transform: rotateX(90deg);
      transform-origin: bottom center;
      transition: 0.2s all ease-in-out;

      h3{

          font-size: 18px;
      }
  }

  &:hover,
  &:focus{

      .flipbox-content-area{

          transform: rotateX(0deg);
      }
  }*/
}
.wp-block-kcs-flipbox .flipbox-image {
  width: 100%;
  height: auto;
}
.wp-block-kcs-flipbox .flipbox-content-area {
  background: rgba(124, 172, 12, 0.8);
  color: #fff;
  padding: 30px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transform: rotateY(-90deg);
  transform-origin: center bottom;
  transition: 0.2s all ease-in-out;
  overflow: hidden;
  font-size: 14px;
}
.wp-block-kcs-flipbox .flipbox-content-area h3 {
  font-size: 18px;
}
.wp-block-kcs-flipbox:hover .flipbox-content-area, .wp-block-kcs-flipbox:focus .flipbox-content-area {
  opacity: 1;
  transform: rotateY(0deg);
}

/*=================================================================================
Accordion Blocks
=================================================================================*/
.wp-block-kcs-accordion .accordion-title {
  background: #7CAC0C url("assets/chevron-down.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  color: #fff;
  padding: 15px;
  font-size: 18px;
  text-transform: uppercase;
  margin: 0;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.wp-block-kcs-accordion .accordion-title:hover,
.wp-block-kcs-accordion .accordion-title:focus {
  background-color: #6b940a;
}
.wp-block-kcs-accordion .accordion-content {
  background: #f1f1f1;
  padding: 15px;
  display: none;
}

.wp-block-kcs-accordion.open .accordion-content {
  display: block;
}

/*=================================================================================
POST GRIDS
=================================================================================*/
/*.kcs-post-grid{

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    // grid-template-columns: 70% 30% 50% 50% 30% 70%;
    grid-row-gap: 60px;
    grid-column-gap: 30px;

    .post-grid-item{

        a{

            img{

                transition: 0.2s all ease-in-out;
            }
        }

        a:hover,
        a:focus{

            img{

                opacity: 0.6;
            }
        }

        h3{

            line-height: 36px;

            a{

                text-decoration: none;
                color: inherit; 
            }
        }
        .post-grid-read-more{

            display: block;
            text-decoration: none;

            &:hover,
            &:focus{

                color: $brandPurple;
            }
        }
    }
}
@media screen and (max-width: 900px){

    .kcs-post-grid{

        grid-template-columns: 1fr 1fr;

        .post-grid-item{

            h3{

                font-size: 28px;
                line-height: 32px;
            }
        }
    }
}*/
.kcs-post-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
  margin: 30px 0;
}
.kcs-post-grid .post-grid-item .post-grid-content {
  padding: 15px 0;
}
.kcs-post-grid .post-grid-item .post-grid-content .post-grid-title {
  margin-top: 0;
}
.kcs-post-grid.side-image .post-grid-item, .kcs-post-grid.is-style-sideImage .post-grid-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 15px;
}
.kcs-post-grid.side-image .post-grid-item .post-grid-content, .kcs-post-grid.is-style-sideImage .post-grid-item .post-grid-content {
  padding: 0;
}

@media screen and (max-width: 768px) {
  .kcs-post-grid {
    display: block;
  }
}
/*=================================================================================
SITE FOOTER
=================================================================================*/
.site-footer {
  background: #444444;
  color: #fff;
  border-bottom: 3px solid #7CAC0C;
  padding: 40px 0;
}
.site-footer a {
  color: #7CAC0C;
}
.site-footer .widget {
  font-size: 14px;
}
.site-footer .widget .widget-title {
  font-size: 16px;
  text-transform: uppercase;
}
.site-footer .widget ul li {
  display: block;
}
.site-footer .widget ul li a {
  text-decoration: none;
  color: inherit;
}
.site-footer .widget ul li a:hover, .site-footer .widget ul li a:focus {
  color: #7CAC0C;
}

/*=================================================================================
Forms
=================================================================================*/
input[type=submit],
input[type=button],
button,
.button {
  display: inline-block;
  background: #7CAC0C !important;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-family: "Century Gothic", "brandon-grotesque", Helvetica, Arial, Sans-Serif;
  border: 0px;
  padding: 15px;
  text-transform: uppercase;
  font-weight: bold;
}
input[type=submit]:hover, input[type=submit]:focus,
input[type=button]:hover,
input[type=button]:focus,
button:hover,
button:focus,
.button:hover,
.button:focus {
  background: #6b940a !important;
  color: #fff !important;
}

/*=================================================================================
WordPress Default CSS
=================================================================================*/
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

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

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

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

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