/*
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 */
/* Animations */
@keyframes scroller {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  25% {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%); }
  75% {
    -webkit-transform: translateY(10%);
    transform: translateY(10%); }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0); } }
.site-header {
  width: 100%;
  background: #677381; }
  .site-header .container {
    padding: 1rem;
    align-items: center;
    justify-content: space-between; }
    .site-header .container .logo {
      width: auto; }
      .site-header .container .logo img {
        width: 100%;
        max-width: 150px;
        height: auto; }
        @media (min-width: 800px) {
          .site-header .container .logo img {
            max-width: 175x; } }
    .site-header .container #mobile-button {
      appearance: none;
      cursor: pointer;
      background: none;
      border: 0; }
      @media (min-width: 800px) {
        .site-header .container #mobile-button {
          display: none; } }
      .site-header .container #mobile-button:hover iconify-icon, .site-header .container #mobile-button:focus iconify-icon {
        color: #A3CFCD; }
      .site-header .container #mobile-button iconify-icon {
        color: #FFF;
        transition: .3s; }
    .site-header .container #mobile-menu {
      width: 100%;
      height: 100%;
      position: fixed;
      top: 0;
      left: 0;
      background: #677381;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      margin: 0;
      padding: 1rem;
      opacity: 0;
      visibility: hidden;
      transition: .3s;
      z-index: 100; }
      @media (min-width: 800px) {
        .site-header .container #mobile-menu {
          display: none; } }
      .site-header .container #mobile-menu #close-button {
        position: absolute;
        top: 1rem;
        right: 1rem;
        -webkit-appearance: none;
        appearance: none;
        padding: 0;
        margin: 0;
        background: none;
        border: 0;
        cursor: pointer; }
        .site-header .container #mobile-menu #close-button:hover iconify-icon, .site-header .container #mobile-menu #close-button:focus iconify-icon {
          color: #A3CFCD; }
        .site-header .container #mobile-menu #close-button iconify-icon {
          color: #FFF;
          transition: .3s; }
      .site-header .container #mobile-menu .menu-main-menu-container {
        width: 100%; }
        .site-header .container #mobile-menu .menu-main-menu-container .menu {
          padding: 0;
          margin: 0;
          list-style-type: none; }
          .site-header .container #mobile-menu .menu-main-menu-container .menu li {
            margin-bottom: 0.5rem;
            opacity: 0;
            transform: translateY(1rem);
            transition: .5s; }
            .site-header .container #mobile-menu .menu-main-menu-container .menu li:last-child {
              margin-bottom: 0; }
            .site-header .container #mobile-menu .menu-main-menu-container .menu li a {
              display: block;
              font-family: "the-seasons", sans-serif;
              font-size: 1.7rem;
              color: #FFF;
              text-decoration-color: transparent;
              transition: .3s;
              transition: .3s; }
              .site-header .container #mobile-menu .menu-main-menu-container .menu li a:hover, .site-header .container #mobile-menu .menu-main-menu-container .menu li a:focus {
                color: #A3CFCD; }
      .site-header .container #mobile-menu.active {
        opacity: 1;
        visibility: visible; }
        .site-header .container #mobile-menu.active .menu-main-menu-container .menu li {
          opacity: 1;
          transform: translateY(0);
          transition-delay: .3s; }
          .site-header .container #mobile-menu.active .menu-main-menu-container .menu li:nth-child(2) {
            transition-delay: .4s; }
          .site-header .container #mobile-menu.active .menu-main-menu-container .menu li:nth-child(3) {
            transition-delay: .5s; }
          .site-header .container #mobile-menu.active .menu-main-menu-container .menu li:nth-child(4) {
            transition-delay: .6s; }
          .site-header .container #mobile-menu.active .menu-main-menu-container .menu li:nth-child(5) {
            transition-delay: .7s; }
          .site-header .container #mobile-menu.active .menu-main-menu-container .menu li:nth-child(6) {
            transition-delay: .8s; }
    .site-header .container #main-menu {
      display: none;
      padding: 0;
      margin: 0; }
      @media (min-width: 800px) {
        .site-header .container #main-menu {
          display: flex; } }
      .site-header .container #main-menu .menu {
        display: flex;
        padding: 0;
        margin: 0;
        list-style-type: none; }
        .site-header .container #main-menu .menu li a {
          padding: 0 1rem;
          color: #FFF;
          text-transform: uppercase;
          text-decoration-color: transparent;
          font-size: 0.9rem;
          transition: .3s; }
          .site-header .container #main-menu .menu li a:hover, .site-header .container #main-menu .menu li a:focus {
            color: #A3CFCD; }
        .site-header .container #main-menu .menu .menu-item-25 {
          margin-left: 1rem; }
          .site-header .container #main-menu .menu .menu-item-25 a {
            border: 2px solid #FFF;
            padding: 0.5rem 1.5rem; }
            .site-header .container #main-menu .menu .menu-item-25 a:hover, .site-header .container #main-menu .menu .menu-item-25 a:focus {
              background: #FFF;
              color: #677381; }

.site-footer {
  width: 100%;
  padding: 2rem 2rem 1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #677381; }
  .site-footer img {
    width: 100%;
    max-width: 250px; }
  .site-footer .grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2rem;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    margin-top: 3rem;
    margin-bottom: 3rem; }
    @media (min-width: 800px) {
      .site-footer .grid {
        grid-template-columns: repeat(3, 1fr); } }
    .site-footer .grid .box {
      text-align: center;
      color: #FFF; }
      .site-footer .grid .box .title {
        font-size: 1.2rem;
        text-transform: uppercase;
        font-weight: 300;
        letter-spacing: 0.1rem;
        color: #FFF; }
      .site-footer .grid .box address {
        font-size: 1.1rem;
        font-style: normal;
        font-weight: 300; }
      .site-footer .grid .box p {
        color: #FFF; }
        .site-footer .grid .box p a {
          text-decoration-color: transparent;
          color: #FFF; }
      .site-footer .grid .box iconify-icon {
        background: #FFF;
        padding: 0.3rem;
        border-radius: 100px;
        color: #677381;
        transition: .3s; }
        .site-footer .grid .box iconify-icon:hover, .site-footer .grid .box iconify-icon:focus {
          transform: scale(1.1, 1.1); }
  .site-footer .footer-bottom {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 1rem;
    border-top: 1px solid #FFF;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8); }
    .site-footer .footer-bottom a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration-color: transparent; }

.carousel {
  width: 100%;
  position: relative; }
  .carousel .slides {
    width: 100%;
    position: relative; }
    .carousel .slides .slide {
      width: 100%;
      height: calc(100svh - 100px);
      position: relative; }
      .carousel .slides .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
      .carousel .slides .slide .overlay {
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        background: rgba(0, 0, 0, 0.5);
        width: 100%;
        height: 100%; }
        @media (min-width: 800px) {
          .carousel .slides .slide .overlay {
            justify-content: center; } }
        .carousel .slides .slide .overlay .container {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          justify-content: center;
          padding: 2rem 1rem; }
          .carousel .slides .slide .overlay .container .small-heading {
            color: #FFF;
            text-transform: uppercase;
            position: relative;
            padding: 0 0 0 2rem;
            margin: 0;
            font-size: 0.9rem;
            animation: fadeup 2s ease;
            animation-fill-mode: forwards; }
            .carousel .slides .slide .overlay .container .small-heading:before {
              content: ' ';
              position: absolute;
              top: 50%;
              transform: translateY(-50%);
              left: 0;
              width: 1.4rem;
              height: 1px;
              background: #FFF; }
          .carousel .slides .slide .overlay .container .heading {
            font-family: "the-seasons", sans-serif;
            font-size: 2rem;
            line-height: 2.5rem;
            font-weight: 900;
            color: #FFF;
            padding: 0;
            margin: 0;
            max-width: 600px;
            opacity: 0;
            transform: translateY(1rem);
            animation: fadeup 2s ease;
            animation-fill-mode: forwards;
            animation-delay: .3s; }
            @media (min-width: 800px) {
              .carousel .slides .slide .overlay .container .heading {
                font-size: 3rem;
                line-height: 3.5rem; } }
          .carousel .slides .slide .overlay .container .btn-outline {
            margin-top: 2rem;
            opacity: 0;
            transform: translateY(1rem);
            animation: fadeup 2s ease;
            animation-fill-mode: forwards;
            animation-delay: .5s; }
  .carousel .slick-arrows {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    max-width: 1600px; }
    .carousel .slick-arrows button {
      appearance: none;
      background: #A3CFCD;
      border: 0;
      padding: 0.5rem;
      cursor: pointer;
      transition: .3s;
      color: #000; }
      .carousel .slick-arrows button:hover, .carousel .slick-arrows button:focus {
        background: #82A0AA; }
        .carousel .slick-arrows button:hover iconify-icon, .carousel .slick-arrows button:focus iconify-icon {
          color: #FFF; }

.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; }

.lodge-hero {
  width: 100%;
  height: calc(100svh - 100px);
  position: relative; }
  .lodge-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .lodge-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: flex-end;
    padding: 1rem; }
    @media (min-width: 800px) {
      .lodge-hero .overlay {
        align-items: center; } }
    .lodge-hero .overlay .container {
      width: 100%;
      max-width: 1600px;
      margin: 0 auto;
      padding: 1rem;
      display: flex;
      flex-direction: column;
      position: relative;
      align-items: flex-start; }
      .lodge-hero .overlay .container .sm-heading {
        position: relative;
        font-size: 0.9rem;
        font-weight: 300;
        text-transform: uppercase;
        letter-spacing: 0.1rem;
        display: inline-block;
        padding: 0 30px 0 0;
        margin: 0;
        color: #FFF;
        animation: fadeup 2s ease;
        animation-fill-mode: forwards; }
        .lodge-hero .overlay .container .sm-heading:before {
          content: ' ';
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          width: 25px;
          height: 1px;
          background: #FFF;
          right: 0; }
      .lodge-hero .overlay .container h1 {
        font-size: 2.5rem;
        line-height: 2.5rem;
        color: #FFF;
        padding: 0;
        margin: 0;
        opacity: 0;
        transform: translateY(1rem);
        animation: fadeup 2s ease;
        animation-fill-mode: forwards;
        animation-delay: .3s; }
        @media (min-width: 800px) {
          .lodge-hero .overlay .container h1 {
            font-size: 3.5rem;
            line-height: 3.5rem; } }
      .lodge-hero .overlay .container p {
        color: #FFF;
        max-width: 600px;
        opacity: 0;
        transform: translateY(1rem);
        animation: fadeup 2s ease;
        animation-fill-mode: forwards;
        animation-delay: .5s; }

.scroller {
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 2s ease;
  animation-fill-mode: forwards;
  animation-delay: .7s; }
  .scroller iconify-icon {
    width: 30px;
    height: 30px;
    color: #000;
    border: 2px solid #FFF;
    background: #FFF;
    border-radius: 100%;
    padding: 0.2rem;
    cursor: pointer;
    animation: scroller 1s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center; }

.split-content {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap; }
  .split-content h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    color: #677381;
    padding: 0;
    margin: 0 0 1rem 0; }
  .split-content article, .split-content .content {
    width: 100%;
    padding-bottom: 2rem;
    padding-top: 2rem; }
    @media (min-width: 800px) {
      .split-content article, .split-content .content {
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding-right: 4rem;
        padding-bottom: 0;
        padding-top: 0; } }
  .split-content aside, .split-content .image {
    width: 100%;
    height: auto;
    border: 10px solid #FFF;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.4); }
    @media (min-width: 800px) {
      .split-content aside, .split-content .image {
        width: 50%; } }
    .split-content aside img, .split-content .image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }

.gallery {
  width: 100%;
  padding: 4rem 0;
  background: url("/wp-content/uploads/2024/11/topography-2.png");
  text-align: center; }
  .gallery h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    color: #FFF;
    padding: 0;
    margin: 0; }
  .gallery .gallery-feed {
    margin-top: 4rem; }
    .gallery .gallery-feed .container {
      max-width: none; }
      .gallery .gallery-feed .container a {
        border: 10px solid #FFF;
        margin: 0 1rem;
        width: 100%;
        height: 300px; }
        .gallery .gallery-feed .container a img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
    .gallery .gallery-feed .slick-arrows-two {
      margin-top: 2rem; }
      .gallery .gallery-feed .slick-arrows-two button {
        appearance: none;
        background: #FFF;
        border: 0;
        cursor: pointer;
        border-radius: 200px;
        padding: 0.5rem;
        color: #000; }
        .gallery .gallery-feed .slick-arrows-two button iconify-icon {
          display: flex;
          align-items: center;
          justify-content: center;
          color: #000; }

.amenities {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center; }
  .amenities h2 {
    color: #677381;
    font-size: 2.5rem;
    line-height: 2.5rem;
    padding: 0;
    margin: 0 0 2rem 0; }
  .amenities .container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2rem;
    margin-top: 4rem; }
    @media (min-width: 475px) {
      .amenities .container {
        grid-template-columns: 1fr 1fr; } }
    @media (min-width: 800px) {
      .amenities .container {
        grid-template-columns: repeat(3, 1fr); } }
    @media (min-width: 992px) {
      .amenities .container {
        grid-template-columns: repeat(4, 1fr); } }
    .amenities .container .box {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-family: "the-seasons", sans-serif;
      font-size: 1.4rem;
      color: #677381; }
      .amenities .container .box img {
        width: 100px;
        margin-bottom: 1rem; }

.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-family: "Jost", serif;
  scroll-behavior: smooth; }

* {
  box-sizing: inherit; }

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

h1, h2, h3 {
  font-family: "the-seasons", sans-serif;
  font-weight: 900; }

p {
  font-weight: 300;
  font-size: 1.1rem;
  color: #444; }

.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; }

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

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

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

@keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-moz-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-webkit-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-ms-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-o-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(1rem); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap; }

.btn, #gform_submit_button_1, #gform_submit_button_2, #gform_submit_button_3, #gform_submit_button_4 {
  background: #A3CFCD;
  padding: 1rem 1.5rem;
  color: #444;
  text-transform: uppercase;
  text-decoration-color: transparent;
  transition: .3s;
  border: 0;
  cursor: pointer; }
  .btn:hover, .btn:focus, #gform_submit_button_1:hover, #gform_submit_button_1:focus, #gform_submit_button_2:hover, #gform_submit_button_2:focus, #gform_submit_button_3:hover, #gform_submit_button_3:focus, #gform_submit_button_4:hover, #gform_submit_button_4:focus {
    background: #82A0AA; }

#gform_submit_button_1, #gform_submit_button_2, #gform_submit_button_3, #gform_submit_button_4 {
  font-size: 1rem; }

.btn-outline {
  border: 2px solid #FFF;
  padding: 0.8rem 1.5rem;
  color: #FFF;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-decoration-color: transparent;
  transition: .3s; }
  .btn-outline:hover, .btn-outline:focus {
    background: #FFF;
    color: #677381; }

.home-text {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 2rem;
  text-align: center;
  background: url("/wp-content/uploads/2024/11/faded-logo.png");
  background-repeat: no-repeat;
  background-size: 250px;
  background-position: top center;
  margin-top: 4rem; }
  .home-text .sm-heading {
    position: relative;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    display: inline-block;
    padding: 0;
    margin: 0;
    color: #677381; }
    .home-text .sm-heading:before {
      content: ' ';
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 1px;
      background: #677381;
      left: -60px;
      transition: .3s; }
      @media (min-width: 400px) {
        .home-text .sm-heading:before {
          display: block; } }
    .home-text .sm-heading:after {
      content: ' ';
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 1px;
      background: #677381;
      right: -60px;
      display: none;
      transition: .3s; }
      @media (min-width: 400px) {
        .home-text .sm-heading:after {
          display: block; } }
  .home-text h1 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    color: #677381;
    padding: 0;
    margin: 0; }
    @media (min-width: 800px) {
      .home-text h1 {
        font-size: 3rem; } }
  .home-text .btn {
    margin-top: 1rem;
    display: inline-block; }

.home-lodges {
  width: 100%;
  background: #F7FAFA;
  padding: 4rem 0; }
  .home-lodges .container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center; }
    .home-lodges .container .sm-heading {
      position: relative;
      font-size: 1.2rem;
      text-transform: uppercase;
      letter-spacing: 0.1rem;
      display: inline-block;
      padding: 0;
      margin: 0;
      color: #677381; }
      .home-lodges .container .sm-heading:before {
        content: ' ';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 1px;
        background: #677381;
        left: -60px;
        display: none; }
        @media (min-width: 400px) {
          .home-lodges .container .sm-heading:before {
            display: block; } }
      .home-lodges .container .sm-heading:after {
        content: ' ';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 1px;
        background: #677381;
        right: -60px;
        display: none; }
        @media (min-width: 400px) {
          .home-lodges .container .sm-heading:after {
            display: block; } }
    .home-lodges .container h2 {
      font-size: 2.5rem;
      color: #677381;
      padding: 0;
      margin: 0; }
      @media (min-width: 800px) {
        .home-lodges .container h2 {
          font-size: 3rem; } }
    .home-lodges .container .cat-feed {
      margin-top: 2rem; }

.cat-feed {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem; }
  @media (min-width: 800px) {
    .cat-feed {
      grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 992px) {
    .cat-feed {
      grid-template-columns: repeat(3, 1fr); } }
  .cat-feed .promo-box {
    background: #82A0AA;
    padding: 1rem;
    display: none; }
    @media (min-width: 800px) {
      .cat-feed .promo-box {
        display: flex; } }
    @media (min-width: 992px) {
      .cat-feed .promo-box {
        display: none; } }
    .cat-feed .promo-box .content {
      border: 1px solid #A3CFCD;
      padding: 1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-family: "the-seasons", sans-serif;
      font-size: 2rem;
      color: #FFF; }
      .cat-feed .promo-box .content .btn-outline {
        font-family: "Jost", serif;
        margin-top: 1rem; }
  .cat-feed .cabin {
    border: 1px solid #82A0AA;
    padding: 1rem;
    text-align: left;
    text-decoration-color: transparent; }
    .cat-feed .cabin:hover .btn, .cat-feed .cabin:focus .btn {
      background: #82A0AA; }
    .cat-feed .cabin .image {
      width: 100%;
      height: 250px; }
      @media (min-width: 400px) {
        .cat-feed .cabin .image {
          height: 350px; } }
      .cat-feed .cabin .image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .cat-feed .cabin h3 {
      font-size: 2rem;
      color: #677381;
      padding: 0;
      margin: 0.3rem 0 1rem 0; }
    .cat-feed .cabin .btn {
      display: inline-block;
      margin-top: 1rem;
      transition: .3s; }

.home-local {
  width: 100%;
  padding: 4rem 0;
  background: url("/wp-content/uploads/2024/11/topography-2.png"); }
  .home-local .container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap; }
    @media (min-width: 800px) {
      .home-local .container {
        padding: 0 4rem; } }
    .home-local .container .images {
      width: 100%;
      position: relative;
      margin-top: 4rem; }
      @media (min-width: 800px) {
        .home-local .container .images {
          width: 40%;
          margin-right: 10%;
          padding-top: 4rem;
          margin-top: 0; } }
      .home-local .container .images .image1 {
        width: 100%;
        height: 350px;
        border: 5px solid #FFF;
        position: relative; }
        .home-local .container .images .image1 img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
      .home-local .container .images .image2 {
        width: 200px;
        height: 200px;
        border: 5px solid #FFF;
        position: absolute;
        top: -5rem;
        left: 1rem;
        transform: rotate(-15deg); }
        @media (min-width: 800px) {
          .home-local .container .images .image2 {
            top: 0; } }
        .home-local .container .images .image2 img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
    .home-local .container .content {
      width: 100%;
      position: relative;
      padding-top: 2rem; }
      @media (min-width: 800px) {
        .home-local .container .content {
          width: 50%;
          display: flex;
          flex-direction: column;
          align-items: flex-start;
          justify-content: center; } }
      .home-local .container .content .sm-heading {
        position: relative;
        font-size: 1.2rem;
        text-transform: uppercase;
        letter-spacing: 0.1rem;
        display: inline-block;
        padding: 0 0 0 30px;
        margin: 0;
        color: #FFF; }
        .home-local .container .content .sm-heading:before {
          content: ' ';
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          width: 25px;
          height: 1px;
          background: #FFF;
          left: 0; }
      .home-local .container .content h2 {
        font-size: 2.5rem;
        line-height: 2.5rem;
        color: #FFF;
        padding: 0;
        margin: 0; }
      .home-local .container .content p {
        color: #FFF;
        font-size: 1.2rem;
        line-height: 2rem; }
      .home-local .container .content .btn {
        margin-top: 1rem;
        display: inline-block; }

.home-reviews {
  width: 100%;
  padding: 4rem 0; }
  .home-reviews .container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
    .home-reviews .container .sm-heading {
      position: relative;
      font-size: 1.2rem;
      text-transform: uppercase;
      letter-spacing: 0.1rem;
      display: inline-block;
      padding: 0;
      margin: 0;
      color: #677381; }
      .home-reviews .container .sm-heading:before {
        content: ' ';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 1px;
        background: #677381;
        left: -60px;
        display: none; }
        @media (min-width: 400px) {
          .home-reviews .container .sm-heading:before {
            display: block; } }
      .home-reviews .container .sm-heading:after {
        content: ' ';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 1px;
        background: #677381;
        right: -60px;
        display: none; }
        @media (min-width: 400px) {
          .home-reviews .container .sm-heading:after {
            display: block; } }
    .home-reviews .container h2 {
      font-size: 2.5rem;
      line-height: 2.5rem;
      color: #677381;
      padding: 0;
      margin: 0; }
      @media (min-width: 800px) {
        .home-reviews .container h2 {
          font-size: 3rem; } }
    .home-reviews .container .reviews {
      width: 100%;
      margin-top: 2rem; }
    .home-reviews .container .review {
      padding: 1rem; }
    .home-reviews .container .review-container {
      border: 1px solid #677381;
      color: #000;
      padding: 1rem; }

.slick-dots {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center; }
  .slick-dots li {
    margin: 0 0.2rem; }
    .slick-dots li.slick-active button {
      background: #82A0AA; }
  .slick-dots button {
    font-size: 0;
    appearance: none;
    background: #FFF;
    border: 1px solid #82A0AA;
    border-radius: 100px;
    padding: 0.3rem;
    cursor: pointer; }

.find-us {
  width: 100%;
  border-top: 1px solid #82A0AA;
  padding: 4rem 0; }
  .find-us .container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem; }
    @media (min-width: 800px) {
      .find-us .container {
        margin-top: 0; } }
    .find-us .container .sm-heading {
      position: relative;
      font-size: 1.2rem;
      text-transform: uppercase;
      letter-spacing: 0.1rem;
      display: inline-block;
      padding: 0 0 0 30px;
      margin: 0;
      color: #677381; }
      .find-us .container .sm-heading:before {
        content: ' ';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 25px;
        height: 1px;
        background: #677381;
        left: 0; }
      .find-us .container .sm-heading:after {
        content: ' ';
        position: absolute;
        background: url("/wp-content/uploads/2024/11/faded-logo.png");
        background-size: 150px;
        width: 150px;
        height: 70px;
        top: -50px;
        left: 25px; }
    .find-us .container h2 {
      font-size: 2.5rem;
      line-height: 2.5rem;
      color: #677381;
      padding: 0;
      margin: 0; }
      @media (min-width: 800px) {
        .find-us .container h2 {
          font-size: 3rem; } }
    .find-us .container .content {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      margin-bottom: 4rem; }
      @media (min-width: 800px) {
        .find-us .container .content {
          width: 50%;
          padding-right: 1rem;
          margin-bottom: 0; } }
    .find-us .container .buttons {
      margin-top: 1.5rem;
      display: flex;
      flex-wrap: wrap;
      width: 100%; }
      .find-us .container .buttons .btn {
        width: 100%; }
        @media (min-width: 400px) {
          .find-us .container .buttons .btn {
            width: auto; } }
      .find-us .container .buttons .btn-alt {
        background: #677381;
        color: #FFF;
        margin-top: 0.5rem; }
        @media (min-width: 400px) {
          .find-us .container .buttons .btn-alt {
            margin-left: 0.5rem;
            margin-top: 0; } }
        .find-us .container .buttons .btn-alt:hover, .find-us .container .buttons .btn-alt:focus {
          background: #505a65; }
    .find-us .container #map {
      width: 100%;
      height: 400px; }
      @media (min-width: 800px) {
        .find-us .container #map {
          width: 50%; } }

.page-header {
  width: 100%;
  height: 400px;
  position: relative; }
  .page-header img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .page-header .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.4); }
    .page-header .overlay h1 {
      font-size: 3rem;
      line-height: 3rem;
      padding: 0;
      margin: 0;
      color: #FFF;
      animation: fadeup 2s ease;
      animation-fill-mode: forwards; }
      @media (min-width: 800px) {
        .page-header .overlay h1 {
          font-size: 4rem;
          line-height: 4rem; } }

.std-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem 0 2rem; }
  .std-content h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    padding: 0;
    margin: 0 0 2rem 0;
    color: #677381;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 2s ease;
    animation-fill-mode: forwards;
    animation-delay: .3s; }
  .std-content p {
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 2s ease;
    animation-fill-mode: forwards;
    animation-delay: .7s; }

.std-content-small {
  max-width: 980px;
  animation: fadeup 2s ease;
  animation-fill-mode: forwards; }

.center {
  text-align: center; }

.home-lodges-main {
  background: none;
  padding: 0;
  margin-bottom: 4rem; }
  .home-lodges-main .cat-feed .cabin {
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 2s ease;
    animation-fill-mode: forwards;
    animation-delay: 1s; }
    .home-lodges-main .cat-feed .cabin:nth-child(2) {
      animation-delay: 1.2s; }
    .home-lodges-main .cat-feed .cabin:nth-child(3) {
      animation-delay: 1.4s; }
    .home-lodges-main .cat-feed .cabin:nth-child(4) {
      animation-delay: 1.6s; }

.things-to-do {
  width: 100%;
  background: #F7FAFA;
  margin: 0 auto;
  padding: 4rem 0;
  text-align: center;
  margin-top: 4rem; }
  .things-to-do h2 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    padding: 0;
    margin: 0;
    color: #677381; }
  .things-to-do .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2rem;
    margin-top: 4rem;
    padding: 0 2rem; }
    @media (min-width: 576px) {
      .things-to-do .container {
        grid-template-columns: 1fr 1fr; } }
    @media (min-width: 800px) {
      .things-to-do .container {
        grid-template-columns: repeat(3, 1fr); } }
    .things-to-do .container .box {
      position: relative;
      width: 100%;
      height: 300px;
      overflow: hidden; }
      .things-to-do .container .box:hover img, .things-to-do .container .box:focus img {
        transform: scale(1.1, 1.1); }
      .things-to-do .container .box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .3s; }
      .things-to-do .container .box .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        padding: 1rem;
        background: rgba(0, 0, 0, 0.4); }
        .things-to-do .container .box .overlay h3 {
          color: #FFF;
          padding: 0;
          margin: 0;
          font-size: 1.5rem; }

.split-content-block {
  animation: fadeup 2s ease;
  animation-fill-mode: forwards; }

@media (min-width: 800px) {
  .split-content-alt .content {
    padding-right: 0;
    padding-left: 4rem; }
  .split-content-alt:nth-child(even) {
    flex-direction: row-reverse; }
    .split-content-alt:nth-child(even) .content {
      padding-right: 4rem;
      padding-left: 0; } }

.gfield_label {
  font-weight: 300 !important; }

input[type="text"], input[type="email"], input[type="tel"] {
  height: 45px;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 4px; }

textarea {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 4px; }

.gfield_consent_label a {
  color: #677381; }

.book-block {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem 2rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 2s ease;
  animation-delay: .5s;
  animation-fill-mode: forwards; }
  .book-block .tab {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center; }
    .book-block .tab button {
      appearance: none;
      background: #A3CFCD;
      border: 0;
      font-size: 1rem;
      padding: 1rem 1.5rem;
      text-transform: uppercase;
      margin: 0 1rem;
      font-weight: 300;
      cursor: pointer;
      transition: .3s;
      color: #000;
      width: 100%;
      margin-bottom: 0.5rem; }
      @media (min-width: 576px) {
        .book-block .tab button {
          width: auto; } }
      .book-block .tab button:hover, .book-block .tab button:focus {
        background: #82A0AA; }
    .book-block .tab .tablinks.active {
      background: #82A0AA; }
  .book-block .tabcotnent {
    display: none; }
  .book-block #Bracken, .book-block #Fingask, .book-block #Ashknowe {
    width: 100%;
    flex-wrap: wrap;
    margin-top: 2rem;
    border: 1px solid #82A0AA;
    padding: 2rem; }
    .book-block #Bracken .availability, .book-block #Fingask .availability, .book-block #Ashknowe .availability {
      width: 100%; }
      @media (min-width: 800px) {
        .book-block #Bracken .availability, .book-block #Fingask .availability, .book-block #Ashknowe .availability {
          width: 40%; } }
    .book-block #Bracken .form, .book-block #Fingask .form, .book-block #Ashknowe .form {
      width: 100%;
      padding: 2rem 0 0 0; }
      @media (min-width: 800px) {
        .book-block #Bracken .form, .book-block #Fingask .form, .book-block #Ashknowe .form {
          width: 60%;
          padding: 0 0 0 4rem; } }

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fafafa;
  border: #ccc;
  /* Remove default arrow */
  background-image: url(/wp-content/uploads/2024/11/211687_down_arrow_icon.png);
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: center right;
  /* Add custom arrow */ }

/* animation css
opacity: 0;
      -webkit-animation: fadein 2s;
      -moz-animation: fadein 2s;
      -ms-animation: fadein 2s;
      -o-animation: fadein 2s;
      animation: fadein 2s;
      animation-delay: 1s;
      -webkit-animation-fill-mode: forwards;   */

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