/*
Theme Name: XT Grid Theme
Author: Xtensive Web Design
Author URI: https://www.xtensive.co.uk
Description: A base theme built with CSS Grid
Version: 1.0
*/
/* Breakpoints */
/* Colors */
.site-header {
  background: #FFF;
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  position: fixed;
  z-index: 100;
  width: 100%;
  top: 0; }
  .site-header .logo {
    grid-column: 1/8; }
    @media (min-width: 800px) {
      .site-header .logo {
        grid-column: 1/4; } }
    .site-header .logo a {
      display: block; }
    .site-header .logo img {
      max-width: 5rem;
      height: auto;
      display: block; }
  .site-header .mobile-nav {
    grid-column: 11/13;
    justify-self: end;
    align-self: center; }
    @media (min-width: 800px) {
      .site-header .mobile-nav {
        display: none;
        visibility: hidden; } }
    .site-header .mobile-nav .iconify {
      width: 1.875rem;
      height: 1.875rem; }
    .site-header .mobile-nav button {
      background: none;
      border: none;
      cursor: pointer; }
      .site-header .mobile-nav button:focus, .site-header .mobile-nav button:hover, .site-header .mobile-nav button:active {
        color: #000; }

.home-header {
  top: -100%;
  transition: .6s; }

#main-menu {
  width: 100%;
  display: flex;
  grid-column: 1/13;
  position: relative;
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  padding: 0 1rem;
  margin: 0;
  transition: .3s ease-in-out;
  background: #EEE;
  align-items: center; }
  @media (min-width: 800px) {
    #main-menu {
      opacity: 1;
      visibility: visible;
      height: auto;
      grid-column: 4/13;
      justify-content: flex-end;
      background: none; } }
  #main-menu.active {
    height: 18.75rem;
    opacity: 1;
    visibility: visible;
    transition: .3s ease-in-out; }

.menu {
  list-style-type: none;
  padding-left: 0; }
  .menu li {
    padding: 0.5rem 0; }
    @media (min-width: 800px) {
      .menu li {
        display: inline;
        padding: 0.5rem 1rem; } }
  .menu a {
    color: #14213D;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    transition: .3s; }
    @media (min-width: 800px) {
      .menu a {
        font-size: 1rem; } }
    .menu a:hover {
      color: #FCA311; }

footer {
  background: #14213D;
  padding: 2rem;
  border-top: 2px solid #FCA311; }
  footer .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
    @media (min-width: 800px) {
      footer .container {
        flex-direction: row;
        justify-content: space-between; } }
    footer .container .logo img {
      width: 100px; }
    footer .container .content {
      text-align: center; }
      @media (min-width: 800px) {
        footer .container .content {
          text-align: right; } }
      footer .container .content .iconify {
        width: 30px;
        height: 30px;
        color: #FFF;
        margin: 0 0.5rem;
        margin-top: 1rem; }
        footer .container .content .iconify:hover {
          color: #FCA311; }
      footer .container .content a, footer .container .content p {
        color: #FFF;
        text-decoration: none;
        font-size: 1.2rem; }

.flexslider {
  max-height: 600px;
  overflow: hidden;
  margin: 0;
  border: 0 !important; }

.slide-img {
  width: 100%;
  height: 600px;
  background-size: cover !important;
  background-position: center center !important;
  position: relative; }
  .slide-img .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center; }

.blog-header {
  width: 100%;
  background: #333;
  padding: 2rem;
  text-align: center; }
  .blog-header h2 {
    color: #FFF; }

.blog-main {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1.25rem;
  padding: 2rem;
  max-width: 75rem;
  margin: 0 auto; }
  @media (min-width: 576px) {
    .blog-main {
      grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 992px) {
    .blog-main {
      grid-template-columns: repeat(3, 1fr); } }

.blog-post {
  display: flex;
  flex-direction: column;
  text-decoration: none; }
  @media (min-width: 576px) {
    .blog-post {
      width: 48%;
      margin: 0 1%; }
      @supports (display: grid) {
        .blog-post {
          width: 100%;
          margin: 0; } } }
  .blog-post .image {
    width: 100%;
    height: 300px;
    background-size: cover !important;
    background-position: center center !important; }
  .blog-post .meta {
    color: #000;
    text-transform: uppercase;
    font-size: 0.9rem; }
  .blog-post .title {
    color: #000;
    font-size: 1.2rem; }
  .blog-post p {
    color: #000; }

.post-single {
  width: 100%;
  max-width: 75rem;
  padding: 2rem;
  margin: 0 auto; }
  .post-single .attachment-post-thumbnail {
    width: 100%;
    height: auto; }

.share-buttons {
  font-size: 0.7rem;
  line-height: 0.7rem;
  letter-spacing: 0.063rem;
  text-transform: uppercase;
  margin: 0 0 3.75rem;
  z-index: 2;
  position: relative;
  text-align: center;
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: flex-start; }
  .share-buttons li {
    height: auto;
    flex: 0 1 auto;
    width: calc(33.3333333% - 1px);
    margin-right: 0.063rem; }
    .share-buttons li:last-child {
      width: 33.3333333%;
      margin-right: 0; }
      .share-buttons li:last-child a {
        border-radius: 0 0.188rem 0.188rem 0; }
    .share-buttons li:first-child a {
      border-radius: 0.188rem 0 0 0.188rem; }
  .share-buttons svg {
    fill: #fff;
    margin-right: 0.313rem;
    width: 1rem;
    height: 1rem; }
  .share-buttons a {
    display: block;
    padding: 0.75rem 0.75rem 0.563rem;
    text-align: center;
    color: White; }

.share-twitter {
  background: #1da1f2; }

.share-facebook {
  background: #3b5998; }

.share-pinterest {
  background: #b5071a; }

.error {
  width: 100%;
  height: 100vh;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; }
  .error .content {
    max-width: 61.25rem;
    width: 100%;
    padding: 2rem;
    text-align: center; }
    .error .content h1 {
      font-size: 14rem;
      font-weight: 900;
      margin: 0;
      padding: 0;
      color: #000; }
    .error .content h3 {
      font-size: 5rem;
      font-weight: 900;
      color: #000;
      margin: 0;
      padding: 0; }
    .error .content h4 {
      font-size: 2rem;
      color: #000;
      margin-top: 0.625rem; }
    .error .content a {
      background: #FFF;
      border: 3px solid #000;
      color: #000;
      margin-top: 0.625rem;
      padding: 0.5rem 2rem;
      display: inline-block; }
      .error .content a:hover {
        background: #000;
        text-decoration: none;
        color: #FFF; }

html {
  box-sizing: border-box;
  font-size: 16px;
  font-family: brandon-grotesque, sans-serif; }

* {
  box-sizing: inherit; }

body {
  font-size: 16px;
  padding: 0;
  margin: 0; }

.entry-content .alignwide {
  margin-left: -80px;
  margin-right: -80px; }

.entry-content .alignfull {
  margin-left: calc( -100vw / 2 + 100% / 2 );
  margin-right: calc( -100vw / 2 + 100% / 2 );
  max-width: 100vw; }

.alignfull img {
  width: 100vw; }

.home-hero {
  width: 100%;
  height: 100vh;
  position: relative; }
  .home-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    -webkit-animation: fadein 2s;
    /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s;
    /* Firefox < 16 */
    -ms-animation: fadein 2s;
    /* Internet Explorer */
    -o-animation: fadein 2s;
    /* Opera < 12.1 */
    animation: fadein 2s; }
  .home-hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    -webkit-animation: fadein 2s;
    /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s;
    /* Firefox < 16 */
    -ms-animation: fadein 2s;
    /* Internet Explorer */
    -o-animation: fadein 2s;
    /* Opera < 12.1 */
    animation: fadein 2s; }
    .home-hero .overlay .container {
      width: 100%;
      height: 100%;
      max-width: 600px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 2rem; }
      @media (min-width: 992px) {
        .home-hero .overlay .container {
          margin: 0; } }
      .home-hero .overlay .container img {
        width: 100%;
        max-width: 400px;
        height: auto;
        object-fit: contain;
        opacity: 0;
        -webkit-animation: fadein 2s;
        /* Safari, Chrome and Opera > 12.1 */
        -moz-animation: fadein 2s;
        /* Firefox < 16 */
        -ms-animation: fadein 2s;
        /* Internet Explorer */
        -o-animation: fadein 2s;
        /* Opera < 12.1 */
        animation: fadein 2s;
        animation-delay: 1s;
        -webkit-animation-fill-mode: forwards; }
      .home-hero .overlay .container .iconify {
        width: 30px;
        height: 30px;
        color: #FFF;
        margin: 0 0.5rem;
        margin-top: 1rem;
        opacity: 0;
        -webkit-animation: fadein 2s;
        /* Safari, Chrome and Opera > 12.1 */
        -moz-animation: fadein 2s;
        /* Firefox < 16 */
        -ms-animation: fadein 2s;
        /* Internet Explorer */
        -o-animation: fadein 2s;
        /* Opera < 12.1 */
        animation: fadein 2s;
        animation-delay: 2s;
        -webkit-animation-fill-mode: forwards; }
        .home-hero .overlay .container .iconify:hover {
          color: #FCA311; }

@keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
/* Firefox < 16 */
@-moz-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
/* Internet Explorer */
@-ms-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
/* Opera < 12.1 */
@-o-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.home-text {
  background: url("/wp-content/uploads/2021/07/m-graphic.png");
  background-repeat: no-repeat;
  background-position: 98% 100%;
  background-size: 180px; }
  @media (min-width: 800px) {
    .home-text {
      background-size: 250px; } }
  .home-text .wp-block-media-text {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem; }
  .home-text .wp-block-media-text .wp-block-media-text__content {
    padding: 2rem 0 0 0; }
    @media (min-width: 576px) {
      .home-text .wp-block-media-text .wp-block-media-text__content {
        padding: 0 2rem 0 0; } }
  .home-text h3 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    color: #14213D; }
  .home-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #FCA311;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5rem; }
  .home-text p {
    font-size: 1.2rem; }
  .home-text a {
    font-size: 1rem;
    border: 3px solid #14213D;
    color: #14213D;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    display: inline-block;
    font-weight: 700;
    text-decoration: none;
    margin-top: 1rem;
    transition: .3s; }
    .home-text a:hover {
      background: #14213D;
      color: #FFF; }

.home-schedule {
  background: #14213D;
  padding: 4rem 2rem;
  background: #14213D url("/wp-content/uploads/2021/07/r-graphic.png");
  background-repeat: no-repeat;
  background-position: -70px center;
  text-align: center;
  background-size: 250px; }
  .home-schedule h4 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    color: #FFF; }
  .home-schedule h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #FCA311;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5rem; }
  .home-schedule .schedule {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2rem;
    padding-top: 2rem; }
    @media (min-width: 800px) {
      .home-schedule .schedule {
        grid-template-columns: repeat(3, 1fr); } }
    .home-schedule .schedule .event {
      background: rgba(0, 0, 0, 0.2);
      padding: 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%; }
      .home-schedule .schedule .event h3 {
        font-size: 1.2rem;
        font-weight: 700;
        letter-spacing: 0.5rem;
        text-transform: uppercase;
        padding: 0;
        margin: 0;
        color: #FFF; }
      .home-schedule .schedule .event p {
        color: #FFF;
        letter-spacing: 0.2rem;
        text-transform: uppercase;
        font-weight: 400;
        margin-bottom: 0; }

.home-sponsors {
  width: 100%;
  background-size: cover !important;
  background-position: center center !important;
  text-align: center; }
  .home-sponsors .overlay {
    background: rgba(0, 0, 0, 0.4);
    padding: 6rem 2rem; }
  .home-sponsors h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #FFF;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5rem; }
  .home-sponsors .logos {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 4rem;
    padding-top: 2rem; }
    @media (min-width: 800px) {
      .home-sponsors .logos {
        grid-template-columns: repeat(4, 1fr); } }
    .home-sponsors .logos img {
      width: 45%;
      margin: 10px 1%; }
      @supports (display: grid) {
        .home-sponsors .logos img {
          width: 100%;
          margin: 0; } }

.home-news {
  width: 100%;
  background: url("/wp-content/uploads/2021/07/topography.png"); }
  .home-news .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem; }
  .home-news h4 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    color: #FCA311;
    text-align: center; }
  .home-news h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #14213D;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
    text-align: center; }
  .home-news .display-posts-listing {
    display: flex;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2rem;
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-top: 2rem; }
    @media (min-width: 800px) {
      .home-news .display-posts-listing {
        grid-template-columns: repeat(3, 1fr); } }
    .home-news .display-posts-listing .listing-item {
      display: flex;
      flex-direction: column;
      width: 100%; }
      .home-news .display-posts-listing .listing-item .image {
        height: 200px; }
        .home-news .display-posts-listing .listing-item .image img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
      .home-news .display-posts-listing .listing-item .title {
        font-size: 1.2rem;
        font-weight: 700;
        color: #FCA311;
        padding: 0;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 0.5rem;
        text-decoration: none;
        margin-top: 1rem; }
      .home-news .display-posts-listing .listing-item .date {
        font-size: 0.9rem;
        color: #14213D; }
      .home-news .display-posts-listing .listing-item .excerpt {
        font-size: 1.2rem;
        margin-top: 1rem;
        color: #14213D; }

.js-scroll {
  opacity: 0;
  transition: opacity 500ms; }

.js-scroll.scrolled {
  opacity: 1; }

.scrolled.fade-in {
  animation: fade-in 1s ease-in-out both; }

.page-header {
  width: 100%;
  height: 400px;
  position: relative;
  -webkit-animation: fadein 2s;
  /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 2s;
  /* Firefox < 16 */
  -ms-animation: fadein 2s;
  /* Internet Explorer */
  -o-animation: fadein 2s;
  /* Opera < 12.1 */
  animation: fadein 2s; }
  .page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    -webkit-animation: fadein 2s;
    /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s;
    /* Firefox < 16 */
    -ms-animation: fadein 2s;
    /* Internet Explorer */
    -o-animation: fadein 2s;
    /* Opera < 12.1 */
    animation: fadein 2s; }
    .page-header .overlay h1 {
      font-size: 3rem;
      padding: 0;
      margin: 0;
      color: #FFF;
      font-weight: 400;
      letter-spacing: 0.5rem;
      text-transform: uppercase;
      opacity: 0;
      -webkit-animation: fadein 2s;
      /* Safari, Chrome and Opera > 12.1 */
      -moz-animation: fadein 2s;
      /* Firefox < 16 */
      -ms-animation: fadein 2s;
      /* Internet Explorer */
      -o-animation: fadein 2s;
      /* Opera < 12.1 */
      animation: fadein 2s;
      animation-delay: 1s;
      -webkit-animation-fill-mode: forwards; }
  .page-header img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.page-pad {
  padding-top: 80px; }

.page-content {
  background: url("/wp-content/uploads/2021/07/topography.png"); }
  .page-content .container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
    opacity: 0;
    -webkit-animation: fadein 2s;
    /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s;
    /* Firefox < 16 */
    -ms-animation: fadein 2s;
    /* Internet Explorer */
    -o-animation: fadein 2s;
    /* Opera < 12.1 */
    animation: fadein 2s;
    animation-delay: 1s;
    -webkit-animation-fill-mode: forwards; }
    .page-content .container .gform_wrapper.gravity-theme .gfield_label {
      font-size: 1rem;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.2rem; }
    .page-content .container .gform_wrapper .gfield_required {
      display: none; }
    .page-content .container input {
      background: #eee;
      border: 0;
      height: 60px !important;
      -webkit-appearance: none; }
    .page-content .container textarea {
      background: #eee;
      border: 0;
      -webkit-appearance: none; }
    .page-content .container input[type='checkbox'] {
      -webkit-appearance: none;
      width: 25px;
      height: 25px !important;
      background: #eee;
      border: 1px solid #ccc;
      margin-right: 10px; }
    .page-content .container .ginput_container.ginput_container_consent {
      display: flex;
      align-items: center;
      font-size: 1rem;
      text-transform: uppercase; }
      .page-content .container .ginput_container.ginput_container_consent a {
        color: #14213D;
        text-decoration: none;
        margin: 0 0.2rem; }
    .page-content .container #gform_submit_button_1 {
      background: #FCA311;
      -webkit-appearance: none;
      height: auto !important;
      font-size: 1.5rem;
      text-transform: uppercase;
      letter-spacing: 0.5rem;
      padding: 0.8rem 1rem;
      cursor: pointer;
      transition: .3s;
      text-align: center; }
      .page-content .container #gform_submit_button_1:hover {
        background: #14213D;
        color: #FFF; }

.schedule-page {
  background: url("/wp-content/uploads/2021/07/topography.png"); }
  .schedule-page .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    opacity: 0;
    -webkit-animation: fadein 2s;
    /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s;
    /* Firefox < 16 */
    -ms-animation: fadein 2s;
    /* Internet Explorer */
    -o-animation: fadein 2s;
    /* Opera < 12.1 */
    animation: fadein 2s;
    animation-delay: 1s;
    -webkit-animation-fill-mode: forwards; }
    .schedule-page .container .schedule {
      display: flex;
      flex-wrap: wrap;
      display: grid;
      grid-template-columns: 1fr;
      grid-gap: 2rem; }
      @media (min-width: 800px) {
        .schedule-page .container .schedule {
          grid-template-columns: repeat(3, 1fr); } }
    .schedule-page .container .event {
      background: rgba(255, 255, 255, 0.6);
      border: 2px solid #FCA311;
      padding: 2rem;
      text-align: center;
      opacity: 0;
      -webkit-animation: fadein 2s;
      /* Safari, Chrome and Opera > 12.1 */
      -moz-animation: fadein 2s;
      /* Firefox < 16 */
      -ms-animation: fadein 2s;
      /* Internet Explorer */
      -o-animation: fadein 2s;
      /* Opera < 12.1 */
      animation: fadein 2s;
      animation-delay: 1s;
      -webkit-animation-fill-mode: forwards;
      width: 48%; }
      @supports (display: grid) {
        .schedule-page .container .event {
          width: 100%; } }
      .schedule-page .container .event h3 {
        font-size: 1.2rem;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 0.2rem;
        padding: 0;
        margin: 0; }
      .schedule-page .container .event p {
        text-transform: uppercase;
        margin-bottom: 0; }

.std-page {
  background: url("/wp-content/uploads/2021/07/topography.png"); }
  .std-page .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    opacity: 0;
    -webkit-animation: fadein 2s;
    /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s;
    /* Firefox < 16 */
    -ms-animation: fadein 2s;
    /* Internet Explorer */
    -o-animation: fadein 2s;
    /* Opera < 12.1 */
    animation: fadein 2s;
    animation-delay: 1s;
    -webkit-animation-fill-mode: forwards; }

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