@charset "UTF-8";
/****************************************************
****** HTML, SITEWIDE  ******************************
****************************************************/
html {
  overflow-x: hidden;
}

body {
  font-family: "p22-underground", sans-serif;
  overflow-x: hidden;
  background-color: #112A22;
  cursor: none;
}
body.admin-bar .sticky {
  margin-top: 30px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
*:hover {
  cursor: none;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
img.no-full {
  max-width: 100%;
  width: unset;
  height: unset;
}

/****************************************************
****** CONTAINERS/WRAPPERS  ******************************
****************************************************/
#main-content {
  position: relative;
  z-index: 1;
}

.wrapper {
  max-width: 1400px;
  margin: 0 auto;
}
.wrapper .wrapper-inner {
  padding-left: 30px;
  padding-right: 30px;
}

/***  HERO WRAPPER ***/
.hero-wrapper {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
.hero-wrapper .wrapper-inner {
  padding-left: 0;
  padding-right: 0;
}

/***  WRAPPER WIDE ***/
.wrapper.wide {
  max-width: 1700px;
}
.wrapper.wide .wrapper-inner {
  padding-left: 2rem;
  padding-right: 2rem;
}

/***  WRAPPER FULL ***/
.wrapper.full {
  max-width: unset;
}
.wrapper.full .wrapper-inner {
  padding-left: 0;
  padding-right: 0;
}

.wrapper-header {
  max-width: 1400px;
  margin: 0 auto;
}
.wrapper-header .wrapper-inner {
  padding-left: 30px;
  padding-right: 30px;
}

.narrow-content {
  max-width: 800px;
  margin: 0 auto;
}

.gap-s {
  padding-top: 1rem;
}

.gap-b-s {
  padding-bottom: 1rem;
}

.gap {
  padding-top: 7rem;
}

.gap-b {
  padding-bottom: 7rem;
}

.gap-l {
  padding-top: 10rem;
}

.gap-b-l {
  padding-bottom: 10rem;
}

.white-text h1, .white-text h2, .white-text h3, .white-text h4, .white-text h5, .white-text h6, .white-text p, .white-text a, .white-text strong, .white-text span {
  color: #FCFCE9;
}

.white-bg h1, .white-bg h2, .white-bg h3, .white-bg h4, .white-bg h5, .white-bg h6, .white-bg p, .white-bg a, .white-bg strong, .white-bg span {
  color: #112A22;
}

.dark-bg {
  background-color: #112A22;
}
.dark-bg h1, .dark-bg h2, .dark-bg h3, .dark-bg h4, .dark-bg h5, .dark-bg h6, .dark-bg p, .dark-bg strong, .dark-bg span, .dark-bg li {
  color: #FCFCE9;
}
.dark-bg hr {
  border-color: rgba(54, 165, 141, 0.2);
  margin-bottom: 30px;
  border-width: 0.5px;
}

.text-center {
  text-align: center;
}

.mailing-list {
  background-image: url(https://avalee.co.uk/wp-content/uploads/2025/09/concert-bg-scaled.webp);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.mailing-list:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
}
.mailing-list .wrapper {
  position: relative;
  z-index: 2;
}
.mailing-list .nf-form-content nf-fields-wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  align-items: flex-end;
  max-width: 800px;
  margin: 10rem auto 0rem;
}
.mailing-list .nf-form-content nf-fields-wrap nf-field:first-child, .mailing-list .nf-form-content nf-fields-wrap nf-field:nth-child(2) {
  width: 37%;
}
.mailing-list .nf-form-content nf-fields-wrap nf-field:nth-child(3) {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  order: 4;
}
.mailing-list .nf-form-content nf-fields-wrap nf-field:last-child {
  width: 20%;
  order: 3;
}
.mailing-list .nf-field-container {
  margin-bottom: 0;
  width: 100%;
}
.mailing-list .checkbox-wrap {
  width: 100%;
  display: inline-flex;
  align-items: center;
}
.mailing-list .nf-field-label {
  width: 100% !important;
}
.mailing-list .nf-field {
  width: 100%;
}
.mailing-list .submit-wrap .nf-field-element {
  display: flex;
}
.mailing-list .field-wrap input[type=submit] {
  width: 100%;
}
.mailing-list .firstname-wrap label, .mailing-list .email-wrap label {
  display: none;
}
.mailing-list .nf-field-element input[type=email], .mailing-list .nf-field-element input[type=text] {
  padding: 15px 30px;
  border-radius: 50px;
}

/****************************************************
****** COLUMNS  ******************************
****************************************************/
/***  ONE COLUMN  ***/
.one-col {
  max-width: 1200px;
  margin: 0 auto;
}
.one-col.narrow {
  max-width: 900px;
}

/***  TWO COLUMN GRID  ***/
.two-col-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 3rem;
}
.two-col-grid.left-third {
  -ms-grid-columns: 1fr 2fr;
  grid-template-columns: 1fr 2fr;
  grid-gap: 5rem;
}
.two-col-grid.right-third {
  -ms-grid-columns: 2fr 1fr;
  grid-template-columns: 2fr 1fr;
  grid-gap: 5rem;
}
.two-col-grid :first-child {
  -ms-grid-column: 1;
}
.two-col-grid :last-child {
  -ms-grid-column: 2;
}

/***  TWO COLUMN FLEX  ***/
.two-col-flex {
  display: flex;
  grid-gap: 2%;
  flex-wrap: wrap;
}
.two-col-flex .col {
  width: 49%;
}

/***  THREE COLUMN GRID  ***/
.three-col-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 3rem;
}
.three-col-grid :first-child {
  -ms-grid-column: 1;
}
.three-col-grid :nth-child(2) {
  -ms-grid-column: 2;
}
.three-col-grid :last-child {
  -ms-grid-column: 3;
}

/***  THREE COLUMN FLEX  ***/
.three-col-flex {
  display: flex;
  grid-gap: 2%;
  flex-wrap: wrap;
}
.three-col-flex .col {
  width: 32%;
}

/***  FOUR COLUMN GRID  ***/
.four-col-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 2rem;
}
.four-col-grid :first-child {
  -ms-grid-column: 1;
}
.four-col-grid :nth-child(2) {
  -ms-grid-column: 2;
}
.four-col-grid :nth-child(3) {
  -ms-grid-column: 3;
}
.four-col-grid :last-child {
  -ms-grid-column: 4;
}

/***  FIVE COLUMN GRID  ***/
.five-col-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 2rem;
}
.five-col-grid :first-child {
  -ms-grid-column: 1;
}
.five-col-grid :nth-child(2) {
  -ms-grid-column: 2;
}
.five-col-grid :nth-child(3) {
  -ms-grid-column: 3;
}
.five-col-grid :nth-child(4) {
  -ms-grid-column: 4;
}
.five-col-grid :last-child {
  -ms-grid-column: 5;
}

/***  FOUR COLUMN FLEX  ***/
.four-col-flex {
  display: flex;
  grid-gap: 2%;
  flex-wrap: wrap;
}
.four-col-flex .col {
  width: 23%;
}

.col.center {
  display: flex;
  justify-content: center;
}

.align-c {
  align-items: center;
}

.align-b {
  align-items: flex-end;
}

/****************************************************
****** FONTS STYLES, & TYPOGRAPHY ***********
****************************************************/
h1 {
  color: #112A22;
  font-weight: 800;
  font-size: 56px;
  line-height: 64px;
  margin-bottom: 1.5rem;
  font-family: moonblossom, sans-serif;
}

h2 {
  color: #112A22;
  font-weight: 700;
  font-size: 36px;
  line-height: 42px;
  margin-bottom: 1.5rem;
  font-family: moonblossom, sans-serif;
}

h3 {
  color: #112A22;
  font-weight: 600;
  font-size: 26px;
  line-height: 32px;
  margin-bottom: 1.5rem;
  font-family: moonblossom, sans-serif;
}

h4 {
  color: #112A22;
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 1.5rem;
  font-family: moonblossom, sans-serif;
}

h5 {
  color: #112A22;
  font-weight: 300;
  font-size: 16px;
  line-height: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  font-family: moonblossom, sans-serif;
}

h6 {
  color: #112A22;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 1.5rem;
  font-family: moonblossom, sans-serif;
}

p {
  color: #16181D;
  font-weight: 300;
  font-size: 18px;
  line-height: 30px;
  margin: 0 auto 20px;
  letter-spacing: -0.5px;
}

p.large {
  color: #16181D;
  font-weight: 300;
  font-size: 20px;
  line-height: 32px;
  margin: 0 auto 20px;
}

strong {
  font-weight: 700;
  color: #112A22;
}

a {
  text-decoration: none;
  color: #00D991;
}

blockquote p {
  font-size: 22px;
  font-style: italic;
  line-height: 36px;
  margin-bottom: 20px !important;
}
blockquote p:last-child {
  margin-bottom: 0;
}

.blue-hue {
  color: #1C4034 !important;
}

div#main-content ul,
div#main-content ol {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}
div#main-content ul li,
div#main-content ol li {
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
  padding: 3px 0;
}
div#main-content ul li::marker,
div#main-content ol li::marker {
  color: #1C4034;
}
div#main-content ul li strong,
div#main-content ol li strong {
  font-weight: 500;
  color: #1C4034;
}

ul.nothing {
  margin: 0 !important;
  list-style-type: none !important;
  padding: 0 !important;
}

ul.lined {
  border: 5px solid rgba(255, 255, 255, 0.0705882353);
  border-bottom: 5px solid rgba(38, 50, 79, 0.0705882353);
  padding: 2rem 3rem !important;
  margin-top: 5px !important;
  transition: all ease-in-out 0.4s;
}
ul.lined h4 {
  margin-bottom: 10px;
}
ul.lined p:last-child {
  margin-bottom: 0;
}
ul.lined:hover {
  border: 5px solid rgba(38, 50, 79, 0.0705882353);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.0901960784);
  border-radius: 0 50px !important;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 46px;
    line-height: 54px;
    margin-bottom: 1.5rem;
  }
  h2 {
    font-size: 38px;
    line-height: 46px;
    margin-bottom: 1.5rem;
  }
  h3 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 1.5rem;
  }
  h4 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 1.5rem;
  }
  h5 {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 1.5rem;
  }
  h6 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 1.5rem;
  }
  p {
    font-size: 16px;
    line-height: 28px;
    margin: 0 auto 20px;
  }
  div#main-content ul,
  div#main-content ol {
    padding-left: 20px;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
  }
  div#main-content ul li,
  div#main-content ol li {
    font-size: 16px;
    line-height: 28px;
    padding: 3px 0;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 1.5rem;
  }
  h2 {
    font-size: 34px;
    line-height: 42px;
    margin-bottom: 1.5rem;
  }
}
/****************************************************
****** BUTTONS *************************************
****************************************************/
.btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  padding: 15px 35px;
  background-color: #FCFCE9;
  border-color: #FCFCE9;
  border-radius: 50px;
  color: #16181D;
  font-family: moonblossom, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.btn:before {
  content: "";
  position: absolute;
  border: #FCFCE9 solid 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: top, right, bottom, left;
  transition-property: top, right, bottom, left;
  border-radius: 50px;
}
.btn:hover:before, .btn:focus:before, .btn:active:before {
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}

.btn.alt {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  padding: 15px 35px;
  background-color: #00D991;
  border-color: #00D991;
  border-radius: 50px;
  color: #16181D;
  font-family: moonblossom, sans-serif;
  font-size: 16px;
}
.btn.alt:before {
  content: "";
  position: absolute;
  border: #00D991 solid 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: top, right, bottom, left;
  transition-property: top, right, bottom, left;
  border-radius: 50px;
}
.btn.alt:hover:before, .btn.alt:focus:before, .btn.alt:active:before {
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
}

/****************************************************
****** HEADER  ******************************
****************************************************/
.home header .navigation {
  position: absolute;
}

header {
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.1215686275);
  position: relative;
  z-index: 101;
  width: 100%;
}
header .navigation {
  width: 100%;
}
header .navigation .wrapper-header .wrapper-inner .n-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 0;
}
header .navigation .wrapper-header .wrapper-inner .n-bar .n-logo {
  padding: 0 4rem;
}
header .navigation .wrapper-header .wrapper-inner .n-bar .n-logo svg {
  width: 200px;
  height: auto;
}
header .navigation .wrapper-header .wrapper-inner .n-bar .n-content-left .n-nav .main-navigation-left {
  display: flex;
  gap: 20px;
}
header .navigation .wrapper-header .wrapper-inner .n-bar .n-content-left .n-nav .main-navigation-left li a {
  font-family: moonblossom, sans-serif;
  color: #FCFCE9;
  font-size: 20px;
  line-height: 28px;
}
header .navigation .wrapper-header .wrapper-inner .n-bar .n-content-left .n-nav .main-navigation-left li a:hover {
  color: #00D991;
}
header .navigation .wrapper-header .wrapper-inner .n-bar .n-content-right .n-nav .main-navigation-right {
  display: flex;
  gap: 20px;
}
header .navigation .wrapper-header .wrapper-inner .n-bar .n-content-right .n-nav .main-navigation-right li a {
  font-family: moonblossom, sans-serif;
  color: #FCFCE9;
  font-size: 20px;
  line-height: 28px;
}
header .navigation .wrapper-header .wrapper-inner .n-bar .n-content-right .n-nav .main-navigation-right li a:hover {
  color: #00D991;
}

/* Submenu Dropdown */
.main-navigation li {
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.1607843137);
  padding-right: 20px;
  margin-right: 20px;
}
.main-navigation li:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.main-navigation li a {
  color: #FCFCE9;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
.main-navigation li a:hover {
  color: #1C4034;
}
.main-navigation li > ul {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  min-width: 350px;
  border-radius: 0;
}
.main-navigation li > ul li {
  position: relative;
  padding: 0 0 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 1rem;
}
.main-navigation li > ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.main-navigation li > ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #112A22;
}
.main-navigation li > ul li a:after {
  content: "";
  width: 18px; /* Adjust size */
  height: 12px;
  display: inline-block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 93.162 61.291'%3E%3Cpath d='M226.734 39.422l25.774 25.556.215.2a4.939 4.939 0 0 1 1.439 3.316l0 .448A4.857 4.857 0 0 1 252.9 71.91l-.3.31L226.734 97.869a4.917 4.917 0 0 1-6.918 0 4.867 4.867 0 0 1 0-6.918L237.673 73.24l-71.771 0a4.881 4.881 0 1 1 0-9.763l71.2 0L219.816 46.34a4.867 4.867 0 0 1 0-6.918 4.917 4.917 0 0 1 6.918 0Z' transform='translate(-161 -38)' fill='%23122C42'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}
.main-navigation li > ul li a:hover {
  color: #1C4034;
}
.main-navigation li > ul li a:hover:after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 93.162 61.291'%3E%3Cpath d='M226.734 39.422l25.774 25.556.215.2a4.939 4.939 0 0 1 1.439 3.316l0 .448A4.857 4.857 0 0 1 252.9 71.91l-.3.31L226.734 97.869a4.917 4.917 0 0 1-6.918 0 4.867 4.867 0 0 1 0-6.918L237.673 73.24l-71.771 0a4.881 4.881 0 1 1 0-9.763l71.2 0L219.816 46.34a4.867 4.867 0 0 1 0-6.918 4.917 4.917 0 0 1 6.918 0Z' transform='translate(-161 -38)' fill='%231FB6D4'/%3E%3C/svg%3E") no-repeat center;
}
.main-navigation li:hover > ul {
  opacity: 1;
  display: block;
}

.menu-item-has-children > a:after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10L12 15L17 10' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  margin-left: 0;
  vertical-align: middle;
}
.menu-item-has-children > a:hover:after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10L12 15L17 10' stroke='%231FB6D4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center;
}

.mobile-menu {
  text-align: center;
  margin-top: 4rem;
}

.mobile-menu li a {
  display: block;
  margin: 10px 0;
  font-size: 20px;
  font-weight: 700;
}

/* Mobile Flyout Styles */
.nbar-tog {
  border-radius: 8px;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  margin: 0;
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.nbar-tog #nav-button {
  display: block;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 5px;
  background: #FCFCE9;
  position: absolute;
  left: 0;
  transition: transform 0.3s ease-out;
}
.hamburger-line:nth-child(1) {
  top: 0;
}
.hamburger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger-line:nth-child(3) {
  bottom: 0;
}

.open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.closed#nav-button:hover .hamburger-line:nth-child(1) {
  transform: rotate(15deg) translate(0px, 0px);
}
.closed#nav-button:hover .hamburger-line:nth-child(3) {
  transform: rotate(-15deg) translate(0px, 0px);
}

/* Sticky Area Styling */
.flyout {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 100;
  top: -100%; /* Start hidden above the top */
  background-color: #112A22;
  overflow-x: hidden;
  padding-top: 10rem;
  transition: top 0.2s; /* Animate the top property */
}

.mobile-menu .submenu-open > a:after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10L12 15L17 10' stroke='%23FFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center;
  transform: rotate(180deg);
}

.mobile-menu .menu-item-has-children > a:hover:after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10L12 15L17 10' stroke='%23FFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center;
}

.flyout .flyout-contact {
  margin-top: 2rem;
  padding-bottom: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1607843137);
}
.flyout .flyout-contact .flyout-contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 10px;
}
.flyout .flyout-contact .flyout-contact-item span {
  display: inline-block;
  min-width: 150px;
}
.flyout .flyout-contact .flyout-contact-item a {
  background-color: #FCFCE9;
  padding: 8px 20px;
  border-radius: 8px;
  color: #112A22;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  width: 100%;
  text-align: center;
  justify-content: center;
}
.flyout .flyout-contact .flyout-contact-item a svg path {
  fill: #112A22;
}
.flyout .flyout-contact .flyout-contact-item a:hover {
  background-color: #1C4034;
  color: #FCFCE9;
}
.flyout .flyout-contact .flyout-contact-item a:hover svg path {
  fill: #FCFCE9;
}

/* Sticky Menu Styling */
header.nav-header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 101;
  background: #112a22;
}
header.nav-header.sticky .email {
  display: none !important;
}
header.nav-header.sticky .navigation {
  background: #112a22;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.1215686275);
}
header.nav-header.sticky .navigation .wrapper-header .wrapper-inner .n-bar {
  padding: 15px 0;
}
header.nav-header.sticky .navigation .wrapper-header .wrapper-inner .n-bar .n-logo svg {
  width: auto;
  height: 60px;
}
header.nav-header.sticky .navigation .wrapper-header .wrapper-inner .n-bar .n-content {
  flex-direction: row-reverse;
  align-items: center;
}

/****************************************************
****** MULTI COLUMNS  ******************************
****************************************************/
.text-image .two-col-grid .col:first-child {
  order: 2;
}
.text-image .two-col-grid .col:last-child {
  order: 1;
}

.two-col-grid.image-grid .col,
.three-col-grid.image-grid .col,
.four-col-grid.image-grid .col,
.five-col-grid.image-grid .col {
  background: #fcfce9;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.two-col-grid.image-grid .col h3,
.three-col-grid.image-grid .col h3,
.four-col-grid.image-grid .col h3,
.five-col-grid.image-grid .col h3 {
  font-family: "p22-underground", sans-serif;
}
.two-col-grid.image-grid .col p,
.three-col-grid.image-grid .col p,
.four-col-grid.image-grid .col p,
.five-col-grid.image-grid .col p {
  font-family: "p22-underground", sans-serif;
}
.two-col-grid.image-grid .col:hover,
.three-col-grid.image-grid .col:hover,
.four-col-grid.image-grid .col:hover,
.five-col-grid.image-grid .col:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.4s ease;
}
.two-col-grid.image-grid .col:hover .column-image,
.three-col-grid.image-grid .col:hover .column-image,
.four-col-grid.image-grid .col:hover .column-image,
.five-col-grid.image-grid .col:hover .column-image {
  transform: scale(1.1);
}
.two-col-grid.image-grid .col:hover .column-heading a,
.three-col-grid.image-grid .col:hover .column-heading a,
.four-col-grid.image-grid .col:hover .column-heading a,
.five-col-grid.image-grid .col:hover .column-heading a {
  color: #1C4034;
}
.two-col-grid.image-grid .col:hover .link-icon-overlay,
.three-col-grid.image-grid .col:hover .link-icon-overlay,
.four-col-grid.image-grid .col:hover .link-icon-overlay,
.five-col-grid.image-grid .col:hover .link-icon-overlay {
  background-color: #1C4034 !important;
}
.two-col-grid.image-grid .col .column-link,
.three-col-grid.image-grid .col .column-link,
.four-col-grid.image-grid .col .column-link,
.five-col-grid.image-grid .col .column-link {
  position: relative;
}
.two-col-grid.image-grid .col .column-link picture,
.three-col-grid.image-grid .col .column-link picture,
.four-col-grid.image-grid .col .column-link picture,
.five-col-grid.image-grid .col .column-link picture {
  display: flex;
  margin-bottom: 10px;
  overflow: hidden;
}
.two-col-grid.image-grid .col .column-link picture .column-image,
.three-col-grid.image-grid .col .column-link picture .column-image,
.four-col-grid.image-grid .col .column-link picture .column-image,
.five-col-grid.image-grid .col .column-link picture .column-image {
  transition: transform 0.4s ease;
}
.two-col-grid.image-grid .col .column-link .link-icon-overlay,
.three-col-grid.image-grid .col .column-link .link-icon-overlay,
.four-col-grid.image-grid .col .column-link .link-icon-overlay,
.five-col-grid.image-grid .col .column-link .link-icon-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: #014167;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.two-col-grid.image-grid .col .column-link .link-icon-overlay svg,
.three-col-grid.image-grid .col .column-link .link-icon-overlay svg,
.four-col-grid.image-grid .col .column-link .link-icon-overlay svg,
.five-col-grid.image-grid .col .column-link .link-icon-overlay svg {
  width: 20px;
  height: auto;
  fill: white;
}
.two-col-grid.image-grid .col .column-content,
.three-col-grid.image-grid .col .column-content,
.four-col-grid.image-grid .col .column-content,
.five-col-grid.image-grid .col .column-content {
  padding: 1rem 2rem 2rem;
}
.two-col-grid.image-grid .col .column-content p:last-child,
.two-col-grid.image-grid .col .column-content ul:last-child,
.three-col-grid.image-grid .col .column-content p:last-child,
.three-col-grid.image-grid .col .column-content ul:last-child,
.four-col-grid.image-grid .col .column-content p:last-child,
.four-col-grid.image-grid .col .column-content ul:last-child,
.five-col-grid.image-grid .col .column-content p:last-child,
.five-col-grid.image-grid .col .column-content ul:last-child {
  margin-bottom: 0 !important;
}
.two-col-grid.image-grid .col picture,
.three-col-grid.image-grid .col picture,
.four-col-grid.image-grid .col picture,
.five-col-grid.image-grid .col picture {
  overflow: hidden;
}
.two-col-grid.image-grid .col picture .column-image,
.three-col-grid.image-grid .col picture .column-image,
.four-col-grid.image-grid .col picture .column-image,
.five-col-grid.image-grid .col picture .column-image {
  transition: transform 0.4s ease;
}
.two-col-grid.icon-grid .link-icon-overlay,
.three-col-grid.icon-grid .link-icon-overlay,
.four-col-grid.icon-grid .link-icon-overlay,
.five-col-grid.icon-grid .link-icon-overlay {
  display: none;
}
.two-col-grid.icon-grid .col.text-left,
.three-col-grid.icon-grid .col.text-left,
.four-col-grid.icon-grid .col.text-left,
.five-col-grid.icon-grid .col.text-left {
  text-align: left;
}
.two-col-grid.icon-grid .col.text-center,
.three-col-grid.icon-grid .col.text-center,
.four-col-grid.icon-grid .col.text-center,
.five-col-grid.icon-grid .col.text-center {
  text-align: center;
}
.two-col-grid.icon-grid .col .column-image,
.three-col-grid.icon-grid .col .column-image,
.four-col-grid.icon-grid .col .column-image,
.five-col-grid.icon-grid .col .column-image {
  margin-bottom: 20px;
  width: auto;
  height: 46px;
  transition: transform 0.4s ease;
}
.two-col-grid.icon-grid .col:hover .column-content h3 a,
.three-col-grid.icon-grid .col:hover .column-content h3 a,
.four-col-grid.icon-grid .col:hover .column-content h3 a,
.five-col-grid.icon-grid .col:hover .column-content h3 a {
  color: #1C4034;
}
.two-col-grid.icon-grid .col .column-content,
.three-col-grid.icon-grid .col .column-content,
.four-col-grid.icon-grid .col .column-content,
.five-col-grid.icon-grid .col .column-content {
  padding: 0;
}
.two-col-grid.icon-grid .col .column-content h3,
.three-col-grid.icon-grid .col .column-content h3,
.four-col-grid.icon-grid .col .column-content h3,
.five-col-grid.icon-grid .col .column-content h3 {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 28px;
}
.two-col-grid.icon-grid .col .column-content p,
.three-col-grid.icon-grid .col .column-content p,
.four-col-grid.icon-grid .col .column-content p,
.five-col-grid.icon-grid .col .column-content p {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 26px;
}
.two-col-grid.image-grid.image-h-small .col .column-image,
.three-col-grid.image-grid.image-h-small .col .column-image,
.four-col-grid.image-grid.image-h-small .col .column-image,
.five-col-grid.image-grid.image-h-small .col .column-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.two-col-grid.image-grid.image-h-med .col .column-image,
.three-col-grid.image-grid.image-h-med .col .column-image,
.four-col-grid.image-grid.image-h-med .col .column-image,
.five-col-grid.image-grid.image-h-med .col .column-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.two-col-grid.image-grid.image-h-large .col .column-image,
.three-col-grid.image-grid.image-h-large .col .column-image,
.four-col-grid.image-grid.image-h-large .col .column-image,
.five-col-grid.image-grid.image-h-large .col .column-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.grey-bg {
  background-color: #F7F7F7;
}

.column-icon-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.column-icon-wrapper .icon {
  text-align: center;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
  padding: 2rem;
}
.column-icon-wrapper .icon img {
  margin-bottom: 10px;
  width: 90px;
  height: auto;
}
.column-icon-wrapper .icon p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 28px;
}

.ava-text-bg {
  background-image: url(https://avalee.co.uk/wp-content/themes/avalee/svg/ava-lee-logo-3.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

/****************************************************
****** CONTACT CTA ROW  ******************************
****************************************************/
.contact-cta .cta-tel {
  display: block;
  font-size: 26px;
  line-height: 26px;
  margin-bottom: 2rem;
  color: #1C4034;
}
.contact-cta .cta-tel:hover {
  color: #00D991;
}

.event-list {
  display: flex;
  flex-direction: column;
}
.event-list .event {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.event-list .event .event-long {
  width: 100%;
  margin-top: 1rem;
}
.event-list .event .event-long p {
  font-family: "p22-underground", sans-serif;
}
.event-list .event .event-name {
  font-size: 26px;
  color: white;
  font-family: moonblossom, sans-serif;
}
.event-list .event .event-date {
  color: white;
  font-size: 26px;
  line-height: 32px;
  text-align: center;
  font-weight: 400;
  font-family: moonblossom, sans-serif;
  margin-right: 5rem;
}
.event-list .event .event-date .event-day {
  display: block;
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
}
.event-list .event .timings {
  font-family: moonblossom, sans-serif;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 16px;
}
.event-list .event .event-btn {
  margin-left: auto;
}

.nf-form-fields-required {
  display: none;
}

.nf-field-label {
  color: white;
  font-size: 12px;
  margin-bottom: 5px !important;
}

.nf-field-element input, .nf-field-element select, .nf-field-element textarea {
  border: none;
  padding: 10px;
  border-radius: 8px;
  color: #112a22;
  font-family: "p22-underground", sans-serif;
}

.nf-error-wrap * {
  color: white;
}

.nf-error-msg.nf-error-field-errors {
  color: white;
}

.field-wrap input[type=submit] {
  background-color: #00d991;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-family: "p22-underground", sans-serif;
}

.field-wrap input[type=submit]:hover {
  background-color: #fcfce9;
}

/****************************************************
****** Listen logos  ******************************
****************************************************/
.listen-logos {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.listen-logos img {
  width: auto;
  height: auto;
  max-height: 40px;
}

/****************************************************
****** CARDS  ******************************
****************************************************/
.cards .card {
  position: relative;
  border-radius: 8px;
  display: flex;
  overflow: hidden;
}
.cards .card a {
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  width: 100%;
}
.cards .card a .card-image {
  border-radius: 8px;
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.4s ease;
  overflow: hidden;
  display: flex;
}
.cards .card a .card-content {
  position: absolute;
  left: 17px;
  bottom: 20px;
  background-color: #112A22;
  padding: 1.5rem;
  border-radius: 8px;
}
.cards .card a .card-content h3 {
  color: #FCFCE9;
  margin: 0;
  z-index: 1;
  position: relative;
}
.cards .card a .card-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #1C4034;
  z-index: 1;
  transition: width 0.4s ease;
  border-radius: 8px;
}
.cards .card a:hover {
  color: #FCFCE9;
}
.cards .card a:hover span {
  position: relative;
  z-index: 2;
  color: inherit;
}
.cards .card a:hover .card-content::before {
  width: 100%;
}
.cards .card a:hover .card-image {
  transform: scale(1.05);
  overflow: hidden;
}
.cards .card a:hover .card-content h3 {
  color: #FCFCE9;
}

/****************************************************
****** HERO AREAS ******************************
****************************************************/
.hero-area-two-column .hero-wrapper .wrapper-inner {
  padding: 0;
}
.hero-area-two-column .hero-wrapper .wrapper-inner .two-col-flex {
  align-items: center;
}
.hero-area-two-column .hero-wrapper .wrapper-inner .two-col-flex .hero-two-col-content {
  max-width: 650px;
  margin-left: auto;
  padding: 6rem 0 6rem 30px;
}
.hero-area-two-column .hero-wrapper .wrapper-inner .two-col-flex .hero-two-col-image {
  align-self: stretch;
  position: relative;
}
.hero-area-two-column .hero-wrapper .wrapper-inner .two-col-flex .hero-two-col-image picture img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  max-height: 800px;
  max-width: 1200px;
  display: flex;
  object-position: center;
}
.hero-area-two-column .hero-wrapper .wrapper-inner .two-col-flex .hero-two-col-image .google-badge-overlay {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
}
.hero-area-two-column .hero-wrapper .wrapper-inner .two-col-flex .hero-two-col-image .google-badge-overlay .wpsr-reviews-badge-html.wpsr-default {
  margin-bottom: 0;
}

.hero-area-full {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 95vh;
  min-height: 800px;
  /* &:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(17, 42, 34, 0.5), rgba(17, 42, 34, 0.5));
  } */
}
.hero-area-full .hero-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(0deg, rgba(17, 42, 34, 0.5), rgba(17, 42, 34, 0.5));
}
.hero-area-full .wrapper {
  position: relative;
  z-index: 2;
}
.hero-area-full .wrapper .wrapper-inner .hero-float-box {
  position: relative;
}
.hero-area-full .wrapper .wrapper-inner .hero-float-box .hero-float-box-inner {
  max-width: 600px;
  padding: 25rem 0 10rem;
}
.hero-area-full .wrapper .wrapper-inner .hero-float-box .hero-float-box-inner h1, .hero-area-full .wrapper .wrapper-inner .hero-float-box .hero-float-box-inner h2, .hero-area-full .wrapper .wrapper-inner .hero-float-box .hero-float-box-inner h3, .hero-area-full .wrapper .wrapper-inner .hero-float-box .hero-float-box-inner h4, .hero-area-full .wrapper .wrapper-inner .hero-float-box .hero-float-box-inner h5, .hero-area-full .wrapper .wrapper-inner .hero-float-box .hero-float-box-inner h6, .hero-area-full .wrapper .wrapper-inner .hero-float-box .hero-float-box-inner p {
  color: #FCFCE9;
}

.hero-area-full {
  position: relative; /* anchor the overlay */
  overflow: hidden;
}

/* Spotlight overlay — large circle controlled by CSS vars */
.hero-area-full .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 42, 34, 0.6);
  pointer-events: none;
  z-index: 1;
  --posX: -999px;
  --posY: -999px;
  --spot-r: 200px; /* spotlight size */
  --soft-edge: 80px;
  -webkit-mask: radial-gradient(circle var(--spot-r) at var(--posX) var(--posY), rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) calc(var(--spot-r) - var(--soft-edge)), rgb(0, 0, 0) calc(var(--spot-r) - var(--soft-edge) + 1px));
  mask: radial-gradient(circle var(--spot-r) at var(--posX) var(--posY), rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) calc(var(--spot-r) - var(--soft-edge)), rgb(0, 0, 0) calc(var(--spot-r) - var(--soft-edge) + 1px));
}

/* make sure your content sits above the overlay */
.hero-area-full .wrapper {
  position: relative;
  z-index: 2;
}

.hero-area-full {
  cursor: none; /* hide default cursor */
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 217, 145, 0.7137254902);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, opacity 0.15s ease;
  z-index: 9999;
}

/* Hidden until we trigger the animation */
.pre-animate {
  opacity: 0;
  will-change: transform, opacity;
}

/* When Animate.css classes are added, show it */
.animate__animated {
  opacity: 1;
}

/****************************************************
****** ACCORDION ******************************
****************************************************/
.accordion-wrapper .accordion-item {
  margin-top: 1rem;
  border-top: 1px solid rgba(1, 66, 103, 0.1058823529);
  padding-top: 1rem;
}
.accordion-wrapper .accordion-item:last-child {
  border-bottom: 1px solid rgba(1, 66, 103, 0.1058823529);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.accordion-wrapper .accordion-item .accordion-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 5px 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  transition: background 0.3s ease;
  position: relative;
  font-family: "p22-underground", sans-serif;
  color: #112A22;
}
.accordion-wrapper .accordion-item .accordion-toggle .accordion-icon {
  transition: transform 0.3s ease;
}
.accordion-wrapper .accordion-item .accordion-toggle .accordion-icon::before {
  content: "+";
  font-size: 2rem;
  line-height: 28px;
}
.accordion-wrapper .accordion-item .accordion-toggle.open .accordion-icon {
  transform: rotate(45deg);
}
.accordion-wrapper .accordion-item .accordion-toggle:hover {
  color: #1C4034;
}
.accordion-wrapper .accordion-item .accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  padding: 0;
}
.accordion-wrapper .accordion-item .accordion-content p {
  font-size: 16px;
  line-height: 28px;
}
.accordion-wrapper .accordion-item .accordion-content.open {
  padding-top: 0.5rem;
}

/****************************************************
****** TABS ******************************
****************************************************/
.tabs .tab-buttons {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: center;
  justify-content: center;
}
.tabs .tab-buttons .tab-button {
  background: none;
  border: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: #112A22;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  font-family: "p22-underground", sans-serif;
}
.tabs .tab-buttons .tab-button.active {
  color: #1C4034;
}
.tabs .tab-buttons .tab-button.active::after {
  content: "";
  display: block;
  height: 3px;
  background: #1C4034;
  width: 100%;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.tabs .tab-buttons .tab-button:hover {
  color: #1C4034;
}
.tabs .tab-contents .tab-content {
  display: none;
}
.tabs .tab-contents .tab-content.active {
  display: block;
}
.tabs .tab-contents .tab-content .two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.tabs .tab-contents .tab-content .two-col-grid .col p {
  margin-bottom: 1rem;
}
.tabs .tab-contents .tab-content .two-col-grid .col img {
  max-width: 100%;
  border-radius: 8px;
  background: #f2f2f2;
  aspect-ratio: 16/11;
  object-fit: cover;
}

/****************************************************
****** FLICKITY ******************************
****************************************************/
/****************************************************
****** BLOG  ******************************
****************************************************/
.blog-post-grid {
  margin-bottom: 3rem;
}

ul.pager {
  list-style-type: none !important;
  margin: 0 0 10px 0 !important;
  padding: 0 !important;
}
ul.pager li a {
  background: #f0f0f0;
  padding: 5px 15px;
}

/****************************************************
****** FOOTER  ******************************
****************************************************/
footer {
  background-color: #112A22;
  position: relative;
}
footer ul.menu li {
  padding: 5px 0 !important;
}
footer ul.menu li a {
  color: #FCFCE9;
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  text-transform: uppercase;
  padding: 2px 0;
  display: inline-block;
}
footer ul.menu li a:hover {
  color: #1C4034;
  font-weight: 300;
}

.bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  background-color: #1C4034;
}
.bottom-bar p, .bottom-bar li, .bottom-bar span, .bottom-bar a {
  font-size: 12px;
  line-height: 22px;
  color: #FCFCE9;
  font-weight: 600;
}
.bottom-bar .bottom-bar-menu {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer-contact {
  padding: 3rem 0;
}
.footer-contact .footer-contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-contact .footer-contact-item .btn.alt {
  font-family: "p22-underground", sans-serif;
}
.footer-contact .footer-contact-item .contact-item-email {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: #FCFCE9;
}
.footer-contact .footer-contact-item .contact-item-email svg {
  width: 80px;
  height: auto;
}
.footer-contact .footer-contact-item .contact-item-email a {
  color: #00D991;
  text-decoration: underline;
  font-weight: 600;
}
.footer-contact .footer-contact-item .contact-item-email a:hover {
  color: #FCFCE9;
}

.social-icons {
  padding: 5rem 0;
  text-align: center;
  background-color: #FCFCE9;
}
.social-icons h3 {
  margin-bottom: 3rem;
}
.social-icons .social-icons-wrap {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.social-icons .social-icons-wrap a svg {
  height: 50px;
  width: auto;
}
.social-icons .social-icons-wrap a:hover {
  cursor: pointer;
}
.social-icons .social-icons-wrap a:hover svg path {
  fill: #00D991;
}
.social-icons .social-icons-wrap a:hover svg #path1 {
  fill: #00D991 !important;
}

/****************************************************
****** MEDIA QUERIES ******************************
****************************************************/
/** IE11/10 **/
/*** MIN WIDTH 1200PX ***/
/*** MAX WIDTH 1199PX ***/
/*** MAX WIDTH 1199PX ***/
@media screen and (max-width: 991px) {
  header.sticky .navigation .wrapper-header .wrapper-inner .n-bar .n-logo {
    margin: 0;
  }
  header.nav-header.sticky .navigation .wrapper-header .wrapper-inner .n-bar {
    padding: 10px 0;
  }
  header .navigation .wrapper-header .wrapper-inner .n-bar .n-logo svg {
    width: 150px;
    height: auto;
  }
  .hero-float-box-inner {
    text-align: center;
    max-width: 100% !important;
  }
  .event-list .event .event-date {
    font-size: 18px;
    margin-right: 1rem;
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1294117647);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1294117647);
    margin-top: 15px;
    padding-top: 10px;
  }
  .event-list .event .event-name {
    font-size: 20px;
  }
  iframe {
    width: 100%;
  }
  .event-list .event .event-date .event-day {
    font-size: 26px;
    line-height: 30px;
  }
  .event-list .event {
    margin-bottom: 15px;
    border-bottom: none;
    padding-bottom: 0;
  }
  .footer-contact .footer-contact-item {
    justify-content: center;
  }
  .footer-contact .footer-contact-item .contact-item-email {
    font-size: 20px;
    line-height: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .bottom-bar .col {
    text-align: center;
  }
  .bottom-bar .col ul {
    justify-content: center;
  }
  .hero-area-full .wrapper .wrapper-inner .hero-float-box .hero-float-box-inner {
    padding: 15rem 0 5rem;
  }
  .hero-area-full {
    height: unset;
    min-height: unset;
    background-position: 60%;
  }
  header .navigation .wrapper-header .wrapper-inner .n-bar {
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
  }
  .n-content-left, .n-content-right {
    display: none;
  }
  header .navigation .wrapper-header .wrapper-inner .n-bar .n-logo {
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }
  .hero-area-two-column .hero-wrapper .wrapper-inner .two-col-flex .hero-two-col-content {
    width: 100%;
    max-width: unset;
    order: 2;
    padding: 3rem 30px 3rem 30px;
  }
  .hero-area-two-column .hero-wrapper .wrapper-inner .two-col-flex .hero-two-col-image {
    width: 100%;
  }
  .hero-area-two-column .hero-wrapper .wrapper-inner .two-col-flex .hero-two-col-image picture img {
    max-height: 400px;
  }
  .hide-tablet,
  header .n-bar .n-contact .email,
  header .n-bar .n-contact .telephone {
    display: none !important;
  }
  footer .footer-row-grid {
    text-align: center;
    grid-template-columns: 1fr;
  }
  footer .footer-row-grid .col {
    border: none;
    padding: 0;
  }
  footer .contact-details div a {
    justify-content: center;
  }
  .wrapper .wrapper-inner, .hero-wrapper .wrapper-inner {
    padding-left: 30px;
    padding-right: 30px;
  }
  .nbar-tog {
    display: block;
  }
  .n-nav {
    display: none !important;
  }
  .four-col-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 3rem;
  }
  .three-col-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .two-col-grid,
  .tabs .tab-contents .tab-content .two-col-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 1.5rem;
  }
  .mailing-list .nf-form-content nf-fields-wrap nf-field:first-child, .mailing-list .nf-form-content nf-fields-wrap nf-field:nth-child(2) {
    width: 100%;
  }
  .mailing-list .nf-form-content nf-fields-wrap nf-field:last-child {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .three-col-grid,
  .four-col-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 3rem;
  }
}
/*** MAX WIDTH 460PX ***/

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