/* ========== BASE ========== */
/* variables */
:root {
  --white: #fff;
  --accent: #ed212c;
  --light-green: #A4BF81;
  --green: #88bf40;
  --dark-green: #00682e;
  --light-gold: #d2b767;
  --gold: #d08e26;
  --dark-gold: #ad7226;
  --text: #111;
  --bg: #fff;
}

body.pub {
  --accent: #d08e26;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.site-header {
  background-color: var(--white);
  max-height: 130px;
  top: 0;
  width: 100%;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 10px;
  position: relative;
}

.nav-left {
  justify-self: start;
}

.nav-right {
  justify-self: end;
}

.logo {
  justify-self: center;
}

.logo img{
  height: 100%;
  max-height: 123px;
}

.hoppers-logo img{
  margin: 1em;
  max-height: 96px;
}

.menu{
  display: inline-block;
  list-style-type: none;
}

.menu > li{
  display: inline-block;
}

.menu li a{
  text-decoration: none;
  font-size: 1.2em;
  font-weight: 800;
  color: var(--text);
}

.menu-hop li:first-child a::before{
  content: '';
  display: inline-block;
  width: 38px;
  height: 38px;
  background: url('/wp-content/uploads/2026/04/apple.webp') no-repeat center/contain;
  margin-right: 0.5em;
  vertical-align: middle;
}

.nav-left, .nav-right{
  flex-grow: 1;
}

.nav-left{
  text-align: right;
}

.nav-left li{
 margin-left: 2em;
}

.nav-right li{
  margin-right: 2em;
}

.nav-right{
  text-align: left;
}

.nav-left-pub, .nav-right-pub{
  width: 40%;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 67%;
  height: 100%;
  background: #fff;
  z-index: 999;
  transition: right 0.3s ease;
  padding: 1em 2.5em;
}

.mobile-menu img{
  max-width: 100%;
  margin-bottom: 1.5em;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-list li {
  margin-bottom: 1em;
}

.mobile-menu .menu > li{
  display: block;
}
.mobile-menu-list a {
  font-size: 1.15em;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;           
  background: rgba(0,0,0,0.4);
  z-index: 998;       
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-apv-logo{
  display: block;
  margin: 0 auto;
  max-height: 90px;
}

.mobile-menu__inner{
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.mobile-menu__inner .menu-hop li:first-child a::before{
  display: block;
  margin: 0 auto;
}

.menu-toggle {
  display: none;
}

/*responsive*/
@media (max-width: 768px) {
  .header-inner {
    justify-content: space-between;
  }
  .nav-left,
  .nav-right {
    display: none;
    flex-grow: 0;
  }
  .logo {
    order: 1;
  }
  .hoppers-logo img{
    margin:0;
  }
  .logo img, .hoppers-logo img{
    max-height: 45px;
    margin-top:0.5em;
  }
  .menu-toggle {
    border: none;
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: #000;
    display: block;
  }
}

/* ========== COMPONENTS ========== */

.btn {
  display: inline-block;
  padding: 0.75rem;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.05em;
  font-weight: 400;
  width: 212px;
}

.btn-primary {
  background: var(--white);
  color: var(--accent);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-secondary {
  background: var(--accent);
  color: var(--white);
}

.btn.book-now{
  letter-spacing: normal;
  font-weight: 500;
  padding: 0.5rem;
  position: absolute;
  width: auto;
  top: 50%;
  transform: translate(0, -50%)
}

.mobile-menu__inner .btn.book-now{
  display: inline-block;
  padding: 0.5em 2em;
  position: relative;
  align-self: center;
  margin-top: 1em;
  text-align: center;
}

/* ========== SECTIONS ========== */

/* SHARED */

.events-section, .gallery-features{
  display: flex;
  align-items: flex-start;
  gap: 2em;
  padding: 2em;
  max-width: 1200px;
  margin: 0 auto;
}

.events-section__subtitle, .gallery-features__subtitle, .memberships__subtitle{
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 8px;
}

.events-section__title, .gallery-features__title{
  font-size: 2.15em;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 16px;
  line-height: 1.1;
}

@media (max-width: 768px){
  .events-section__title, .gallery-features__title{
    font-size: 2em;
  }
}

/* HERO */

.hero {
  align-items: center;
  position: relative;
  display: flex;
  height: 40vh;
  justify-content: center;
  min-height:480px;
  overflow: hidden;
}

.hero-video,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-fallback {
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
}

.hero h1{
  font-size: 3em;
  line-height: normal;
}

.hero p{
  font-size: 2.5em;
}

.hero-buttons{
  display: flex;
  margin-top: 2.5em;
  gap: 1em;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 768px){
  .hero{
    margin-bottom: 1em;
  }
}

/* ABOUT */

.about-section {
  display: flex;
  align-items: flex-start;
  gap: 2em;
  padding: 3em 2em;
  max-width: 1200px;
  margin: 0 auto;
}

.about-section__image-wrap {
  position: relative;
  flex: 0 0 45%;
  max-width: 45%;
}

.about-section__image-wrap::before {
  content: '';
  position: absolute;
  top: -13px;
  left: -13px;
  width: 95%;
  height: 97%;
  background: linear-gradient(to right, var(--green), var(--dark-green));
  z-index: 0;
}

.about-section__image-wrap:has(.about-section__image-frame)::before {
  content: none;
}

.about-section__image-frame {
  position: relative;
}

.about-section__image-frame::before {
  content: '';
  position: absolute;
  top: -13px;
  left: -13px;
  width: 95%;
  height: 97%;
  background: linear-gradient(to right, var(--green), var(--dark-green));
  z-index: 0;
}

/* Gold variant (Hoppers Pub) */
.about-section--gold .about-section__image-wrap::before,
.about-section--gold .about-section__image-frame::before {
  background: linear-gradient(to right, var(--gold), var(--dark-gold));
}

.about-section--gold .about-section__subtitle {
  color: var(--gold);
}

.about-section__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-section__content {
  flex: 1;
}

.about-section__subtitle {
  font-size: 1.5em;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 8px;
}

.about-section__title {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 20px;
  line-height: 1.1;
}

.about-section__text p {
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 1em;
}

.about-section__info {
  position: relative;
  z-index: 1;
  margin-top: 1.75em;
  padding-top: 1.5em;
  border-top: 2px solid var(--light-green);
}

.about-section--gold .about-section__info {
  border-top-color: var(--light-gold);
}

.about-section__info-title {
  font-size: 1.1em;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 1em;
}

.about-section--gold .about-section__info-title {
  color: var(--gold);
}

.about-section__info-address,
.about-section__info-contact {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1em;
}

.about-section__info a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.about-section__info a:hover {
  color: var(--green);
  text-decoration: underline;
}

.about-section--gold .about-section__info a:hover {
  color: var(--gold);
}

.about-section__info-directions {
  display: inline-block;
  margin-bottom: 1.25em;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green) !important;
}

.about-section--gold .about-section__info-directions {
  color: var(--gold) !important;
}

.about-section__hours {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-section__hours li {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  padding: 0.4em 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.about-section__hours li:last-child {
  border-bottom: none;
}

.about-section__hours li span:first-child {
  font-weight: 600;
  color: var(--text);
}

.about-section__hours li span:last-child {
  color: var(--dark-green);
  white-space: nowrap;
}

.about-section--gold .about-section__hours li span:last-child {
  color: var(--dark-gold);
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    padding: 1em 2em;
    gap: 1em;
  }
  .about-section__image-wrap {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .about-section__title{
    font-size: 2em;
  }
  .about-section__subtitle{
    font-size: 1.25em;
  }
  .about-section__text p:last-child {
    margin-bottom: 0;
  }
  .about-section--inverted .about-section__image-wrap{
    order: 1;
  }
  .about-section--inverted .about-section__content{
    order: 2;
  }
}

/* EVENTS */

.events-section__left {
  flex: 0 0 60%;
  max-width: 60%;
  display: flex;
  flex-direction: column;
}

.events-section__description {
  font-size: 1.05em;
  color: var(--text);
  line-height: 1.6;
  width: 90%;
}

.events-section__btn {
  box-shadow: 0 25px 8px -17px rgba(0, 0, 0, 0.2);
  display: inline-block;
  text-align: center;
  padding: 1.5em 6em;
  border: 1.5px solid var(--green);
  border-radius: 8px;
  color: var(--green);
  font-size: 1em;
  font-weight: 500;
  margin-top: 3.5em;
  align-self: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.events-section__btn:hover {
  background: var(--green);
  color: #fff;
}

.events-section__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Gold variant (Hoppers Pub) */
.events-section--gold .events-section__subtitle, .events-section--gold .events-section__btn{
  color: var(--gold);
}

.events-section--gold .events-section__btn{
  border: 1.5px solid var(--gold);
}

.events-section--gold .events-section__btn:hover {
  background: var(--gold);
  color: #fff;
}

.event-card {
  display: flex;
  align-items: center;
  text-decoration: none;
  background: linear-gradient(to right, #a7a7a7, #fff);
  overflow: hidden;
  box-shadow: 0 25px 8px -17px rgba(0, 0, 0, 0.2);
  margin-bottom: 1em;
}

.event-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: #fff;
  padding: 1.6em 1.25em;
  min-width: 70px;
  text-align: center;
}

.event-card__day {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.event-card__month {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
}

.event-card__info {
  flex: 1;
  padding: 0.5em 1em;
}

.event-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 4px;
}

.event-card__subtitle {
  font-size: 0.9rem;
  color: var(--text);
  margin: 0;
}

.event-card__arrow {
  font-size: 3rem;
  color: var(--text);
  padding: 0 16px;
  line-height: 1;
}

.event-card:hover .event-card__arrow{
  color: var(--green);
}

/* Gold variant (Hoppers Pub) */
.events-section--gold .event-card__date{
  background: var(--gold);
}

.events-section--gold .event-card:hover .event-card__arrow {
  color: var(--gold);
}

@media (max-width: 768px) {
  .events-section {
    flex-direction: column;
    padding: 1em 2em;
    align-items: center;
  }
  .events-section__left {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .events-section__description{
    width: 100%;
  }
  .events-section__btn{
    margin-top: 1em;
    padding: 1em 4em;
    font-size: 1.25em;
  }
  .event-card__title, .event-card__subtitle{
    line-height: 1.2em;
  }
  .event-card__title{
    margin-bottom: 0.5em;
  }
}

/* CTA BLOCKS */

.cta-split {
  width: 100%;
  overflow: hidden;
}

.cta-split__panels {
  display: flex;
}

.cta-split__panel {
  position: relative;
  flex: 1;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-split__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.cta-split__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 32px;
}

.cta-split__title {
  font-size: 1.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 0.5em;
  text-shadow: 0 2px 6px rgba(0,0,0,0.8);
}

.cta-split__btn {
  display: inline-block;
  padding: 1em 3em;
  border: 2px solid var(--white);
  border-radius: 0.6em;
  background: var(--green);
  color: #fff;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}

.cta-split__btn:hover {
  background: var(--white);
  color: var(--green);
}

.cta-split__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  background: linear-gradient(to right, var(--green), var(--dark-green));
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  text-decoration: none;
  transition: filter 0.2s;
}

/* Gold variant (Hoppers Pub) */

.cta-section--gold .cta-split__btn{
  background: var(--gold);
}

.cta-section--gold .cta-split__btn:hover{
  background: #fff;
  color: var(--gold);
}

.cta-section--gold .cta-split__banner{
  background: linear-gradient(to right, var(--light-gold), var(--dark-gold));
}

.cta-split__banner:hover {
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  .cta-split{
    padding: 1em 0;
  }
  .cta-split__panels {
     flex-direction: column;
  }
  .cta-split__panel {
     min-height: 240px;
  }
}

/* GALLERY */

.gallery-features__left {
  flex: 0 0 45%;
  max-width: 45%;
}

.gallery-features__description {
  font-size: 1.05em;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 28px;
}

.gallery-features__checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-features__check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05em;
  color: var(--text);
  line-height: 1.6;
}

.gallery-features__check-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--green);
  margin-top: 1px;
}

.gallery-features__right {
  flex: 1;
}

.gallery-features__slider-wrap {
  position: relative;
  overflow: hidden;
}

.gallery img {
  width: 100%;
  display: block;
  border-radius: 9px;
}

#main-slider .splide__slide img{
  border: 2px solid var(--green);
    max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

#main-slider {
  margin-bottom: 15px;
}

#thumb-slider .splide__slide {
  opacity: 0.5;
  cursor: pointer;
}

#thumb-slider .splide__slide.is-active {
  opacity: 1;
  border: 2px solid var(--green);
  border-radius: 12px;
}

.splide__arrow{
  background: var(--green) !important;
}

.splide__arrow svg{
  fill: #fff !important;
}

/* Gold variant (Hoppers Pub) */
.gallery-section--gold .gallery-features__subtitle, .gallery-section--gold .gallery-features__check-icon{
  color: var(--gold);
}

.gallery-section--gold #main-slider .splide__slide img, .gallery-section--gold #thumb-slider .splide__slide.is-active{
  border: 2px solid var(--gold);
}

.gallery-section--gold .splide__arrow{
  background: var(--gold) !important;
}

@media (max-width: 768px) {
  .gallery-features {
    flex-direction: column;
    padding: 1em 2em;
  }
  .gallery-features__left {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .gallery-features__checklist{
    gap: 0;
  }
}

/* MEMBERSHIPS */

.memberships {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 64px 24px;
}

.memberships__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 40, 10, 0.72);
}

.memberships__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.memberships__header {
  text-align: center;
  margin-bottom: 40px;
}

.memberships__title {
  font-size: 2.15em;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
}

.memberships__description {
  font-size: 1.05em;
  color: var(--white);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

.memberships__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.mem-card {
  background: var(--white);
  border: 1px solid var(--green);
  display: flex;
  flex-direction: column;
}

.mem-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.mem-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mem-card__description {
  flex: 1;
  font-size: 1em;
  color: var(--text);
  line-height: 1.4;
  text-align: center;
  padding: 1em;
  margin: 0;
}

.mem-card__price {
  display: block;
  background: var(--green);
  border-radius: 9px;
  color: #fff;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 400;
  padding: 10px 14px;
  text-decoration: none;
  margin: 0 16px 16px;
  transition: background 0.2s;
}

.mem-card__price:hover {
  opacity: 0.9;
}

.memberships__footer {
  text-align: center;
}

.memberships__btn {
  display: inline-block;
  padding: 18px 56px;
  background: var(--green);
  border: 2px solid #fff;
  border-radius: 9px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.1em;
}

.memberships__btn:hover {
  background: rgba(136,191,64,0.5);
  border-color: var(--green);
}

/* Gold variant (Hoppers Pub) */

.memberships-section--gold .memberships__overlay{
  background: rgba(40, 20, 5, 0.75);
}

.memberships-section--gold .memberships__subtitle{
  color: var(--gold);
}

.memberships-section--gold .mem-card{
  border: 1px solid var(--gold);
}

.memberships-section--gold .mem-card__price{
  background: var(--gold);
}

@media (max-width: 768px) {
  .memberships{
    margin-top: 1em;
    padding: 1em;
  }
  .memberships__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
  }
  .memberships__footer{
    margin-top: 1em;
  }
}

/* FOOTER */

.site-footer {
  background: #454545;
  padding: 0;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1em 2em;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 20%;
}

.site-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
}

.site-footer__contact-item svg {
  width: 2em;
  height: 2em;
  flex-shrink: 0;
  color: #fff;
}

.site-footer__contact-item:hover {
  color: #ccc;
  text-decoration: underline;
}

.site-footer__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.site-footer__logo {
  max-height: 120px;
  width: auto;
}

.site-footer__divider {
  width: 100%;
  height: 4px;
  background: var(--accent);
}

.site-footer__nav ul {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  transition: color 0.2s;
}

.site-footer__nav ul li a:hover {
  color: #ccc;
}

.site-footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  align-self: stretch;
  gap: 12px;
  width: 20%;
}

.site-footer__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__btn {
  display: block;
  background: var(--accent);
  color: #fff;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s;
}

.site-footer__btn:hover {
  opacity: 0.9;
}

.site-footer__social {
  display: flex;
  margin-top: auto;
  gap: 12px;
}

.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #fff;
  transition: background 0.2s;
}

.site-footer__social a svg {
  width: 2em;
  height: 2em;
}

.site-footer__bar {
  min-height: 14px;
  height: 14px;
  width: 100%;
  display: block;
  background: linear-gradient(to right, var(--green), var(--dark-green));
}

/* Gold variant (Hoppers Pub) */
.site-footer--gold .site-footer__bar{
  background: linear-gradient(to right, var(--light-gold), var(--dark-gold));
}

@media (max-width: 768px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1em;
  }
  .site-footer__contact-item {
    justify-content: center;
  }
  .site-footer__center{
    order: 1;
  }
  .site-footer__right {
    align-items: center;
    order: 2;
    width: 100%;
  }
  .site-footer__contact{
    order: 3;
    width: 100%;
  }
  .site-footer__logo {
    max-height: 80px;
  }
  .site-footer__nav ul{
    gap: 0.7em;
  }
}

/* CONTACT */

.gform-theme {
  --gf-color-primary: var(--green) !important;
  --gf-ctrl-outline-color-focus: var(--green) !important;
  --gf-color-primary-darker: var(--dark-green) !important;
}

.gform_confirmation_message{
  font-size: 1.75em;
}