/* Styles for F+F */
/* Dependencies */
/* ------------------------ Sass Variables ------------------------ */
* {
  font-family: "Open Sans", sans-serif;
}

/* ------------------------ Headings ------------------------ */
.h1, h1 {
  font-size: 95px;
  font-weight: 700;
  line-height: 1.1;
  margin: 30px 0;
  font-family: "Noto Serif", serif;
}

.h2, h2 {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 10px 0;
  font-family: "Noto Serif", serif;
}

.h3, h3 {
  font-size: 24px;
  font-weight: 400;
  margin: 10px 0 30px 0;
  line-height: 1.2;
  font-family: "Noto Serif", serif;
}

.h4, h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  margin: 10px 0;
  font-family: "Noto Serif", serif;
}

/* ------------------------ Copy ------------------------ */
p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

li, ol {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

a {
  color: #78963f;
}
a:hover {
  color: #78963f;
  text-decoration: underline;
}

/* ------------------------ Responsive Player Embeds ------------------------ */
.video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* 16:9 */
  margin: 0 auto;
}
.video iframe, .video video {
  position: absolute;
  width: 100%;
  height: 100%;
}

.gmap {
  position: relative;
  padding-bottom: 45%;
  height: 0;
  overflow: hidden;
}
.gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.btn {
  border-radius: 0;
  background: #808385;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-align: center;
  border: 0;
  padding: 8px 40px;
  text-align: center;
  transition: all 0.5s;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 1px;
}
.btn:focus {
  outline: none;
  box-shadow: none;
}
.btn:hover, .btn.active {
  background: #4e9292;
  color: #ffffff;
  text-decoration: none;
}

input, textarea {
  outline: none;
}

.contact-form {
  padding-top: 25px;
}
.contact-form .form-control {
  border: solid 1px #bcbec0;
  background: rgba(188, 190, 192, 0.28);
  border-radius: 0;
  color: #000000;
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 25px;
}
.contact-form .form-control:focus {
  box-shadow: none;
}
.contact-form .form-control::-webkit-input-placeholder {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
.contact-form .form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
.contact-form .form-control::placeholder {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
.contact-form textarea.form-control {
  border: solid 1px #bcbec0;
  background: rgba(188, 190, 192, 0.28);
  border-radius: 0;
  color: #78963f;
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
.contact-form label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #000000;
  text-transform: uppercase;
}
.contact-form .btn-wrap {
  margin-top: 10px;
  text-align: right;
  position: relative;
}
.contact-form .btn-wrap .btn {
  background: #78963f;
}
.contact-form .btn-wrap .btn:hover {
  background: #4e9292;
}
.contact-form .btn-wrap .wpcf7-spinner {
  position: absolute !important;
  left: 50%;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.hide-start {
  opacity: 0;
}

.animate-fade {
  animation-name: fadein;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.125s;
}

@keyframes fadeleft {
  0% {
    opacity: 0;
    transform: translate(-2rem, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.hide-start-left {
  opacity: 0;
}

.animate-fade-left {
  animation-name: fadeleft;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.125s;
}
.animate-fade-left.delay-fade-1 {
  animation-delay: 0.25s;
}
.animate-fade-left.delay-fade-2 {
  animation-delay: 0.375s;
}
.animate-fade-left.delay-fade-3 {
  animation-delay: 0.5s;
}
.animate-fade-left.delay-fade-4 {
  animation-delay: 0.625s;
}

@keyframes faderight {
  0% {
    opacity: 0;
    transform: translate(2rem, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.hide-start-right {
  opacity: 0;
}

.animate-fade-right {
  animation-name: faderight;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.125s;
}
.animate-fade-right.delay-fade-1 {
  animation-delay: 0.25s;
}
.animate-fade-right.delay-fade-2 {
  animation-delay: 0.375s;
}
.animate-fade-right.delay-fade-3 {
  animation-delay: 0.5s;
}
.animate-fade-right.delay-fade-4 {
  animation-delay: 0.625s;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* Sections */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.65);
  padding: 0 30px;
  height: 100px;
  display: flex;
  align-items: center;
  z-index: 100;
}
header .nav-members {
  padding-right: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .nav-members .members-text {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  display: inline-block;
}
header .nav-members .btn {
  margin-left: 25px;
  display: inline-block;
  background: #78963f;
}
header .nav-members .btn:hover {
  background: #4e9292;
}

#popup-menu {
  background: #78963f;
  background-image: url(../img/nav_menu.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: -100%;
  transition: all 0.5s ease;
  opacity: 0;
  z-index: 110;
}
#popup-menu.open {
  right: 0;
  opacity: 1;
}
#popup-menu .mobile-tee {
  display: none;
}
#popup-menu .inside {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
#popup-menu .navbar-nav {
  margin-bottom: 0;
}
#popup-menu .navbar-nav .menu-item > .nav-link {
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
  display: inline-block;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  font-family: "Noto Serif", serif;
}
#popup-menu .navbar-nav .menu-item > .nav-link:focus {
  outline: none;
}
#popup-menu .navbar-nav .menu-item > .nav-link:hover {
  text-decoration: none;
  color: #4e9292;
}
#popup-menu .navbar-nav .menu-item:last-child > .nav-link {
  margin-right: 0;
}
#popup-menu .navbar-nav .current-menu-item .nav-link {
  color: #78963f;
}
#popup-menu .nav-logo {
  display: flex;
  align-items: center;
}

.navbtn {
  width: 40px;
  height: 25px;
  position: fixed;
  top: 37px;
  right: 30px;
  margin-top: -13px;
  margin: 0;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 111;
}
.navbtn span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.navbtn span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.navbtn span:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.navbtn span:nth-child(3) {
  top: 20px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

.navbtn.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -3px;
  left: 0px;
}

.navbtn.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.navbtn.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 26px;
  left: 0px;
}

footer {
  background: #272727;
  color: #bcbec0;
  font-size: 14px;
  font-weight: 300;
  padding: 60px 0;
  border-bottom: 1px solid #bcbec0;
}
footer a {
  color: #bcbec0;
  text-decoration: none;
}
footer a:hover {
  text-decoration: none;
}
footer p {
  font-size: 14px;
  font-weight: 300;
}
footer h4 {
  font-family: "Open Sans", sans-serif;
  margin: 0 0 15px 0;
  font-weight: 700;
  color: #bcbec0;
}
footer .foot-details {
  display: flex;
  flex-wrap: wrap;
}
footer .foot-details .foot-icon {
  flex: 0 0 auto;
  width: 33%;
  padding-right: 30px;
}
footer .foot-details .foot-contact {
  flex: 0 0 auto;
  width: 67%;
}
footer .foot-details .foot-contact a {
  text-decoration: underline;
}
footer .foot-details .foot-contact a:hover {
  text-decoration: underline;
}
footer .foot-details .foot-contact .social-icons a {
  font-size: 20px;
  display: inline-block;
  margin-right: 15px;
}
footer .navbar-nav {
  columns: 3;
  display: block;
}
footer .navbar-nav .nav-link {
  color: #bcbec0;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 14px;
  display: block;
  padding: 0 20px 0 0;
  margin-bottom: 10px;
}

.bottom-bar {
  padding: 15px 0;
  background: #272727;
  color: #bcbec0;
  font-size: 12px;
  font-weight: 300;
}
.bottom-bar .forged-by {
  text-align: right;
}
.bottom-bar a {
  color: #ffffff;
}

/* Pages */
.image-cta-cols {
  padding: 0 0 80px 0;
}
.image-cta-cols .cta-box {
  background-size: cover;
  background-repeat: no-repeat;
  height: 35vh;
  width: 100%;
  display: flex;
}
.image-cta-cols .cta-box a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: flex-end;
  text-decoration: none;
  border-bottom: 0px solid #4e9292;
  transition: all 0.5s;
}
.image-cta-cols .cta-box a .cta-bar {
  color: #ffffff;
  width: 100%;
  padding: 15px 25px 65px 25px;
  font-size: 22px;
  font-weight: 700;
  transition: all 0.5s;
}
.image-cta-cols .cta-box a:hover {
  border-width: 8px;
  background: rgba(0, 0, 0, 0.3);
}
.image-cta-cols .cta-box a:hover .cta-bar {
  padding-bottom: 35px;
}

.page-hero {
  height: 90vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
  position: relative;
}
.page-hero .inner {
  width: 100%;
  position: relative;
}
.page-hero .inner h3 {
  color: #ffffff;
  font-size: 21px;
  line-height: 1.2;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  margin: 0;
}
.page-hero .inner h1 {
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}
.page-hero .inner .link-btn {
  margin-top: 30px;
}
.page-hero .inner .link-btn .btn {
  background: #78963f;
}
.page-hero .inner .link-btn .btn:hover {
  background: #4e9292;
}
.page-hero .img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: right;
  padding: 8px 15px;
  color: #ffffff;
  font-size: 14px;
}
.page-hero .video-wrap {
  position: absolute;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}
.page-hero .video-wrap video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
}
.page-hero .video-wrap video::-webkit-media-controls {
  display: none;
}

.page-intro {
  padding: 80px 0;
  text-align: center;
  background: #ffffff;
}
.page-intro h2 {
  margin-bottom: 40px;
}
.page-intro h4 {
  font-size: 20px;
  color: #78963f;
  font-weight: 300;
  font-family: "Open Sans", sans-serif;
}

.image-sep {
  width: 100%;
  height: 55vh;
  position: relative;
}
.image-sep .inside {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  background-attachment: fixed;
  background-position: center;
}

.content-cols {
  padding: 80px 0 0 0;
}
.content-cols .content-item {
  padding-bottom: 80px;
}
.content-cols .con-col {
  display: flex;
  align-items: center;
}
.content-cols .con-col .inner {
  padding-left: 60px;
}
.content-cols .con-col .inner h2 {
  font-size: 32px;
  color: #78963f;
  margin: 0 0 25px 0;
  text-transform: uppercase;
}
.content-cols .con-col .inner .link-btn {
  padding-top: 30px;
}
.content-cols .con-col .inner .link-btn .btn:first-child {
  margin-right: 20px;
}

.image-cta {
  padding: 100px 0;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.image-cta h3 {
  font-size: 42px;
  color: #ffffff;
  text-transform: uppercase;
}
.image-cta p {
  color: #ffffff;
}
.image-cta .link-btn {
  margin-top: 30px;
}
.image-cta .link-btn .btn {
  background: #78963f;
}
.image-cta .link-btn .btn:hover {
  background: #4e9292;
}
.image-cta .subscribe-form {
  padding-top: 40px;
}
.image-cta .subscribe-form .wpcf7-form {
  display: flex;
}
.image-cta .subscribe-form .wpcf7-form .form-group {
  flex: 0 0 auto;
  width: 80%;
  padding-right: 20px;
}
.image-cta .subscribe-form .wpcf7-form .form-group .form-control {
  border: 0;
  border-radius: 0;
  border-bottom: 2px solid #ffffff;
  background: transparent;
  padding: 5px 0;
}
.image-cta .subscribe-form .wpcf7-form .form-group .form-control:focus {
  box-shadow: none;
}
.image-cta .subscribe-form .wpcf7-form .form-group .form-control::-webkit-input-placeholder {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
.image-cta .subscribe-form .wpcf7-form .form-group .form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
.image-cta .subscribe-form .wpcf7-form .form-group .form-control::placeholder {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
.image-cta .subscribe-form .wpcf7-form .btn-wrap {
  flex: 0 0 auto;
  width: 20%;
}
.image-cta .subscribe-form .wpcf7-form .btn-wrap .btn {
  width: 100%;
  text-align: center;
}

.holes-section {
  padding: 80px 0;
  background: #eaebec;
}
.holes-section .holes-intro {
  text-align: center;
}
.holes-section .course-info {
  display: flex;
  flex-wrap: wrap;
  padding-top: 30px;
}
.holes-section .course-info .info-item {
  flex: 0 0 auto;
  width: 33.3333334%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.holes-section .course-info .info-item .icon {
  flex: 0 0 auto;
  width: 60px;
  margin-right: 10px;
}
.holes-section .link-btn {
  margin-top: 50px;
  margin-bottom: 50px;
}
.holes-section .link-btn .btn {
  background: #78963f;
}
.holes-section .link-btn .btn:hover {
  background: #4e9292;
}
.holes-section .hole-detail-tile {
  margin: 15px 0;
  height: 60vh;
  min-height: 410px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.holes-section .hole-detail-tile:hover .hole-detail-hover {
  opacity: 1;
}
.holes-section .hole-detail-lightbox {
  margin-bottom: 15px;
  cursor: pointer;
}
.holes-section .hole-detail-lightbox img {
  display: inline-block;
  margin-left: 15px;
}
.holes-section .hole-detail-hover {
  background: #ffffff;
  padding: 10px 35px;
  height: 100%;
  width: 100%;
  display: flex;
  opacity: 0;
  transition: opacity 0.3s;
}
.holes-section .hole-detail-hover h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 27px;
  color: #78963f;
  margin: 15px 0;
}
.holes-section .hole-detail-hover .hd-detail-items {
  display: flex;
  flex-wrap: wrap;
}
.holes-section .hole-detail-hover .hd-detail-items .item {
  flex: 0 0 auto;
  width: 33.3333334%;
  margin-bottom: 8px;
}
.holes-section .hole-detail-hover .hd-detail-items .item .par-icon {
  display: inline-block;
  height: 12px;
  width: 12px;
  border-radius: 6px;
  border: 1px solid #979797;
  margin-right: 8px;
}
.holes-section .hole-detail-hover .hd-detail-items .item .par-icon.blue {
  background: #00b6ff;
  border-color: #00b6ff;
}
.holes-section .hole-detail-hover .hd-detail-items .item .par-icon.red {
  background: #d30e0e;
  border-color: #d30e0e;
}
.holes-section .hole-detail-hover .hd-detail-items .item .par-icon.black {
  background: #000000;
  border-color: #000000;
}
.holes-section .hole-detail-hover .hd-detail-items .item .par-icon.yellow {
  background: #ffbb00;
  border-color: #ffbb00;
}
.holes-section .hole-detail-hover .hd-detail-items .item strong {
  text-transform: uppercase;
  margin-right: 8px;
}

.full-gallery {
  padding-top: 5px;
}
.full-gallery .grid .grid-sizer, .full-gallery .grid .grid-item {
  width: 20%;
  border: 2px solid #ffffff;
}
.full-gallery .grid .grid-sizer a, .full-gallery .grid .grid-item a {
  display: block;
  line-height: 0;
  font-size: 0;
  width: 100%;
  height: 100%;
}
.full-gallery .grid .grid-sizer a img, .full-gallery .grid .grid-item a img {
  width: 100%;
  height: auto;
  display: inline-block;
}

.holes-lightbox {
  position: fixed;
  top: 0;
  right: -100%;
  display: flex;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 1005;
  align-items: center;
  transition: right 0.5s;
}
.holes-lightbox .container {
  max-width: 980px;
}
.holes-lightbox.active {
  right: 0;
}
.holes-lightbox .close-btn {
  position: absolute;
  top: 35px;
  right: 35px;
  cursor: pointer;
}
.holes-lightbox .hole-info {
  display: none;
}
.holes-lightbox .hole-info.active {
  display: block;
}
.holes-lightbox .hole-info .info-content {
  display: flex;
  align-items: center;
}
.holes-lightbox .hole-info .info-content h3 {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  color: #78963f;
  margin: 15px 0;
}
.holes-lightbox .hole-info .info-content .hd-detail-items {
  display: flex;
  flex-wrap: wrap;
}
.holes-lightbox .hole-info .info-content .hd-detail-items .item {
  flex: 0 0 auto;
  width: 33.3333334%;
  margin-bottom: 8px;
}
.holes-lightbox .hole-info .info-content .hd-detail-items .item .par-icon {
  display: inline-block;
  height: 12px;
  width: 12px;
  border-radius: 6px;
  border: 1px solid #979797;
  margin-right: 8px;
}
.holes-lightbox .hole-info .info-content .hd-detail-items .item .par-icon.blue {
  background: #00b6ff;
  border-color: #00b6ff;
}
.holes-lightbox .hole-info .info-content .hd-detail-items .item .par-icon.red {
  background: #d30e0e;
  border-color: #d30e0e;
}
.holes-lightbox .hole-info .info-content .hd-detail-items .item .par-icon.black {
  background: #000000;
  border-color: #000000;
}
.holes-lightbox .hole-info .info-content .hd-detail-items .item .par-icon.yellow {
  background: #ffbb00;
  border-color: #ffbb00;
}
.holes-lightbox .hole-info .info-content .hd-detail-items .item strong {
  text-transform: uppercase;
  margin-right: 8px;
}
.holes-lightbox .hole-info .info-content .hd-details h3 {
  margin-top: 50px;
}
.holes-lightbox .hole-info .info-content .inner .hd-content {
  padding-right: 60px;
}

.logo-section {
  padding: 80px 0;
  background: #4e9292;
  text-align: center;
}
.logo-section h2 {
  color: #ffffff;
  font-size: 32px;
  text-transform: uppercase;
}
.logo-section .logo-wrap {
  display: flex;
  flex-wrap: wrap;
  padding-top: 40px;
  justify-content: center;
  align-items: center;
}
.logo-section .logo-wrap a {
  display: inline-block;
  margin: 15px 35px;
}

.content-form {
  padding: 80px 0;
}
.content-form h2 {
  color: #78963f;
}

.green-fees {
  background: #eaebec;
  padding: 80px 0;
}
.green-fees .table-wrap {
  background: #ffffff;
  padding: 20px 12px;
  margin: 50px 0;
}
.green-fees .table-wrap table {
  font-size: 14px;
  line-height: 1.2;
}
.green-fees .table-wrap table tr {
  border: 0;
}
.green-fees .table-wrap table tr td {
  border: 0;
}
.green-fees .table-wrap table tr.bordered {
  border-bottom: 2px solid #979797;
}
.green-fees .table-wrap table thead tr {
  border: 0;
}
.green-fees .table-wrap table thead th {
  border: 0;
  font-weight: 300;
  color: #78963f;
  font-size: 14px;
}
.green-fees .table-wrap table .label {
  font-weight: bold;
}
.green-fees .table-wrap table > :not(:first-child) {
  border: 0;
}
.green-fees .link-btn .btn {
  background: #78963f;
  margin: 0 25px;
}
.green-fees .link-btn .btn img {
  display: inline-block;
  padding-left: 15px;
}
.green-fees .link-btn .btn:hover {
  background: #4e9292;
}

.public-rates {
  padding: 80px 0;
}
.public-rates h2 {
  text-transform: uppercase;
  margin-bottom: 30px;
}
.public-rates .link-btn .btn {
  background: #78963f;
  margin: 25px 0 0 0;
}
.public-rates .link-btn .btn img {
  display: inline-block;
  padding-left: 15px;
}
.public-rates .link-btn .btn:hover {
  background: #4e9292;
}
.public-rates .fees-section {
  margin: 40px auto;
  border-bottom: 2px solid #D8D8D8;
  max-width: 410px;
  width: 100%;
}
.public-rates .fees-section:last-child {
  border-bottom: 0;
}
.public-rates .fees-section h3 {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 700;
  font-family: "Open Sans", sans-serif;
}
.public-rates .fees-section ul {
  list-style: none;
  margin: 0;
  padding: 0 0 25px 0;
}
.public-rates .fees-section ul li {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 4px 0;
}
.public-rates .fees-section ul li div {
  flex: 0 0 auto;
  width: 50%;
}
.public-rates .fees-section ul li div.price {
  text-align: right;
}

.story-intro {
  padding: 80px 0;
}
.story-intro .intro-top {
  text-align: center;
}
.story-intro .intro-top h4 {
  font-family: "Open Sans", sans-serif;
  color: #78963f;
  margin: 0 0 8px 0;
}
.story-intro .intro-top h2 {
  margin: 0 0 30px 0;
}
.story-intro .intro-img {
  width: 100%;
  height: auto;
  margin: 40px 0;
}

.team-members {
  padding: 80px 0 100px 0;
}
.team-members h2 {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 80px;
}
.team-members .team-member {
  background: #eaebec;
  margin-bottom: 30px;
  padding: 30px;
  position: relative;
}
.team-members .team-member .member-details {
  display: flex;
  border-bottom: 2px solid #979797;
  padding-bottom: 25px;
}
.team-members .team-member .member-details .img {
  flex: 0 0 auto;
  width: 30%;
}
.team-members .team-member .member-details .title {
  flex: 0 0 auto;
  width: 70%;
  display: flex;
  align-items: center;
  padding: 0 40px;
}
.team-members .team-member .member-details .title h3 {
  color: #78963f;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
}
.team-members .team-member .member-details .title h4 {
  font-style: italic;
  font-size: 16px;
  margin: 0;
}
.team-members .team-member .team-content {
  padding: 25px 0;
  border-bottom: 2px solid #979797;
}
.team-members .team-member .team-email {
  padding: 25px 0 40px 0;
}
.team-members .team-member .team-email a {
  display: inline-block;
  margin-left: 15px;
  text-decoration: none;
}
.team-members .team-member .team-email a:hover {
  text-decoration: underline;
}
.team-members .team-member .member-bottom {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
}

.blog-posts {
  padding: 50px 0 0 0;
}
.blog-posts .b-post {
  margin-bottom: 50px;
  border-bottom: 2px solid #979797;
  padding-bottom: 50px;
}
.blog-posts .b-post:last-child {
  border-bottom: 0;
}
.blog-posts .b-post .bp-content {
  display: flex;
  align-items: center;
}
.blog-posts .b-post .bp-content .inner {
  padding-left: 60px;
}
.blog-posts .b-post h2, .blog-posts .b-post h2 a {
  color: #78963f;
  font-family: "Noto Serif", serif;
  font-size: 32px;
  line-height: 1.3;
  text-decoration: none;
}
.blog-posts .b-post .btn {
  margin-top: 25px;
}
.blog-posts .b-post .post-info {
  font-weight: 300;
  color: #808385;
  font-size: 14px;
  text-transform: uppercase;
}

.pagination-sec {
  padding: 0 0 80px 0;
  text-align: center;
}
.pagination-sec .pagination {
  display: block;
}
.pagination-sec a {
  text-decoration: none;
  display: inline-block;
  margin: 0 5px;
}
.pagination-sec span {
  display: inline-block;
  margin: 0 5px;
}

.single-content {
  padding: 220px 0 80px 0;
}
.single-content .single-info {
  padding-bottom: 80px;
  text-align: center;
}
.single-content .single-info h3 {
  font-weight: 300;
  color: #808385;
  font-size: 14px;
  margin: 0;
  font-family: "Open Sans", sans-serif;
}
.single-content .single-info h2 {
  color: #78963f;
  margin: 20px 0;
}
.single-content .single-info .author {
  font-weight: 300;
  color: #808385;
  font-size: 14px;
}
.single-content .blog-hero-image img {
  width: 100%;
  height: auto;
}
.single-content .blog-content {
  padding-top: 40px;
}
.single-content .share-this {
  padding-top: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
}
.single-content .share-this .inner {
  display: inline-block;
}
.single-content .share-this .inner h4 {
  font-weight: 300;
  color: #808385;
  font-size: 14px;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  display: inline-block;
  margin: 0 0 15px 0;
  font-family: "Open Sans", sans-serif;
}
.single-content .share-this .inner .social-icons a {
  font-size: 20px;
  display: inline-block;
  margin: 0 10px;
}
.single-content .share-this .inner .social-icons a:hover {
  color: #4e9292;
}
.single-content .pagination {
  position: relative;
  height: 25px;
  padding-top: 40px;
}
.single-content .pagination .next-link {
  position: absolute;
  right: 0;
}
.single-content .pagination .next-link a {
  text-decoration: none;
  font-weight: 300;
  color: #808385;
  text-transform: uppercase;
  font-size: 14px;
}
.single-content .pagination .prev-link a {
  text-decoration: none;
  font-weight: 300;
  color: #808385;
  text-transform: uppercase;
  font-size: 14px;
}

.featured-header h2 {
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 50px;
}

.feat-blog-post {
  background: #D8D8D8;
  padding: 60px 0;
  margin-bottom: 60px;
}
.feat-blog-post .b-post {
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-main {
  padding: 80px 0;
}
.contact-main h2 {
  color: #78963f;
  font-size: 32px;
}
.contact-main .book-cta {
  background: #4e9292;
  color: #ffffff;
  padding: 30px;
  font-size: 32px;
  font-weight: 300;
}
.contact-main .book-cta h3 {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 32px;
}
.contact-main .book-cta .hours {
  border-top: 1px solid #ffffff;
  padding: 20px 0 0 0;
  margin-top: 20px;
}
.contact-main .driving-time {
  position: relative;
  padding-left: 25px;
  margin: 0 0 8px 0;
}
.contact-main .driving-time:before {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -6px;
  content: "";
  height: 12px;
  width: 12px;
  border-radius: 6px;
  border: 1px solid #979797;
}
.contact-main .driving-time.blue:before {
  background: #00b6ff;
  border-color: #00b6ff;
}
.contact-main .driving-time.red:before {
  background: #d30e0e;
  border-color: #d30e0e;
}
.contact-main .driving-time.black:before {
  background: #000000;
  border-color: #000000;
}
.contact-main .driving-time.yellow:before {
  background: #ffbb00;
  border-color: #ffbb00;
}

.contact-map {
  padding-top: 60px;
}

.directions-btns {
  padding-top: 20px;
}
.directions-btns .btn {
  background: #78963f;
  margin: 0 15px;
}
.directions-btns .btn:hover {
  background: #4e9292;
}

/* --------------------------------------------------------------------------
Media Queries.
-------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  #popup-menu .navbar-nav .menu-item > .nav-link {
    font-size: 26px;
  }

  .page-hero {
    height: 55vh;
    min-height: 550px;
  }
  .page-hero .inner h1 {
    font-size: 55px;
  }
  .page-hero .inner h3 {
    font-size: 14px;
  }

  .content-cols .con-col .inner {
    padding-left: 0;
  }

  .image-cta h3 {
    font-size: 32px;
  }

  footer .foot-nav {
    margin: 40px 0;
  }
  footer .foot-tee {
    text-align: center;
  }

  .full-gallery .grid .grid-sizer, .full-gallery .grid .grid-item {
    width: 33.33333%;
  }
}
@media (max-width: 480px) {
  h2 {
    font-size: 32px;
  }

  h4, .page-intro h4 {
    font-size: 17px;
  }

  header {
    padding: 0;
  }
  header .nav-members {
    display: none;
  }

  footer .navbar-nav {
    columns: 1;
    text-align: center;
  }

  .bottom-bar .copy-message {
    text-align: center;
    margin-bottom: 20px;
  }
  .bottom-bar .forged-by {
    text-align: center;
  }

  .page-hero .inner h1 {
    font-size: 40px;
  }

  #popup-menu .navbar-nav .menu-item > .nav-link {
    font-size: 15px;
  }
  #popup-menu .nav-logo {
    display: none;
  }
  #popup-menu .mobile-tee {
    display: block;
    color: #ffffff;
    text-align: center;
    padding-top: 25px;
  }
  #popup-menu .mobile-tee .members-text {
    font-family: "Noto Serif", serif;
  }
  #popup-menu .mobile-tee .btn {
    margin-top: 15px;
    width: 100%;
    text-align: center;
  }

  .image-cta-cols .cta-box, .content-cols .img-col {
    margin-bottom: 30px;
  }

  .content-cols .con-col .inner .link-btn .btn {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .hole-info .col-lg-5 {
    display: none;
  }

  .holes-lightbox .hole-info .info-content .inner .hd-content {
    padding: 0;
    font-size: 14px;
  }

  .full-gallery .grid .grid-sizer, .full-gallery .grid .grid-item {
    width: 50%;
  }

  .green-fees .link-btn .btn {
    text-align: center;
    width: 100%;
    margin: 15px 0;
    padding: 15px;
  }

  .content-form h2 {
    margin-top: 30px;
  }

  .blog-posts .b-post .bp-content .inner {
    padding: 25px 0 0 0;
  }

  .image-cta .subscribe-form .wpcf7-form {
    flex-wrap: wrap;
  }
  .image-cta .subscribe-form .wpcf7-form .form-group {
    width: 100%;
    padding: 0;
  }
  .image-cta .subscribe-form .wpcf7-form .btn-wrap {
    width: 100%;
    padding-top: 20px;
  }

  .directions-btns {
    text-align: center;
  }
  .directions-btns .btn {
    width: 100%;
    text-align: center;
    margin: 15px 0;
  }
}

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