.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  animation-delay: 1s;
}

.animated.delay-2s {
  animation-delay: 2s;
}

.animated.delay-3s {
  animation-delay: 3s;
}

.animated.delay-4s {
  animation-delay: 4s;
}

.animated.delay-5s {
  animation-delay: 5s;
}

.animated.fast {
  animation-duration: 800ms;
}

.animated.faster {
  animation-duration: 500ms;
}

.animated.slow {
  animation-duration: 2s;
}

.animated.slower {
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
a:hover, a:active, a:focus, *:hover, *:active, *:focus {
  outline: none !important;
  text-decoration: none !important;
}

a {
  color: inherit;
  cursor: pointer;
}
a:hover, a:active, a:focus {
  color: inherit;
  cursor: pointer;
  -webkit-transition: 0.1s all ease-in-out;
  -moz-transition: 0.1s all ease-in-out;
  -ms-transition: 0.1s all ease-in-out;
  -o-transition: 0.1s all ease-in-out;
  transition: 0.1s all ease-in-out;
}

html {
  height: 100vh;
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
}

section {
  margin: 60px 0 0px;
}

u {
  position: relative;
  text-decoration: none;
}
u:after {
  content: "";
  width: 100%;
  background-color: #8A463A;
  height: 1px;
  bottom: -2px;
  left: 0;
  position: absolute;
}

p {
  font-size: 17px;
  line-height: 1.7;
}
p a {
  position: relative;
  text-decoration: none;
}
p a:after {
  content: "";
  width: 100%;
  background-color: #8A463A;
  height: 1px;
  bottom: -2px;
  left: 0;
  position: absolute;
}
@media screen and (max-width: 545px) {
  p {
    font-weight: 400;
  }
}

h1 {
  font-size: 30px;
  margin-bottom: 28px;
}

h2 {
  font-size: 25px;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
}

img {
  width: 100%;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

.holder {
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .holder {
    max-width: 1020px;
  }
}
@media screen and (min-width: 1400px) {
  .holder {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1200px) {
  .holder {
    max-width: 940px;
  }
}
@media screen and (max-width: 996px) {
  .holder {
    max-width: 800px;
  }
}

.center, .column-flex, .verticle-center {
  display: flex;
}

.center {
  justify-content: center;
  align-items: center;
}

.column-flex {
  flex-direction: column;
}

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

footer {
  background-color: #F5F5F5;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  padding: 60px 0;
  margin-top: auto;
}
@media screen and (max-width: 545px) {
  footer {
    padding: 50px 0 70px;
    background-color: #000;
  }
}
footer .holder {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.5fr;
  grid-row-gap: 30px;
}
@media screen and (max-width: 996px) {
  footer .holder {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 545px) {
  footer .holder {
    grid-template-columns: repeat(2, 1fr);
  }
}
footer .holder > * {
  color: #535353;
  order: 4;
}
@media screen and (max-width: 545px) {
  footer .holder > * {
    color: #fff;
  }
}
footer .holder a {
  display: block;
  margin-bottom: 9px;
}
footer .holder a:hover {
  color: #8A463A;
}
footer .holder p {
  font-size: 13px;
}
footer .holder .col-1 a img {
  max-width: 100%;
  width: 96px;
}
footer .holder .col-1 p {
  max-width: 194px;
}
@media screen and (max-width: 545px) {
  footer .holder .col-1 {
    grid-column: span 2;
    display: flex;
    order: 3;
  }
}
@media screen and (max-width: 545px) {
  footer .holder .col-2, footer .holder .col-3, footer .holder .col-4 {
    order: 0;
  }
}
footer .holder .col-4 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
footer .holder .col-4 form.subscription {
  display: flex;
  margin-bottom: 20px;
}
footer .holder .col-4 form.subscription input {
  margin-right: 3px;
}
@media screen and (max-width: 545px) {
  footer .holder .col-4 form.subscription input {
    border-color: #fff;
  }
}
footer .holder .col-4 form.subscription button {
  min-width: 135px;
  text-transform: capitalize;
}
@media screen and (max-width: 545px) {
  footer .holder .col-4 form.subscription button {
    color: #fff;
    border-color: #fff;
  }
}
footer .holder .col-4 p {
  text-align: right;
  max-width: 100%;
  width: 300px;
}
@media screen and (max-width: 545px) {
  footer .holder .col-4 p {
    display: none;
  }
}
@media screen and (max-width: 545px) {
  footer .holder .col-4 {
    grid-column: span 2;
    order: 1;
  }
}
footer .holder .col-4 .margin {
  margin-right: 15px;
}
footer .holder .copyright, footer .holder .contact {
  grid-column: span 2;
  padding-top: 35px;
}
@media screen and (max-width: 545px) {
  footer .holder .copyright {
    padding-top: 0;
  }
}
footer .holder .contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
footer .holder .contact a {
  margin-left: 14px;
}
footer .holder .contact a i {
  margin-right: 7px;
}
@media screen and (max-width: 545px) {
  footer .holder .contact {
    display: none;
  }
}
footer .social {
  display: flex;
}

input::-webkit-input-placeholder {
  opacity: 1;
}
input:-moz-placeholder {
  opacity: 1;
}
input::-moz-placeholder {
  opacity: 1;
}
input:-ms-input-placeholder {
  opacity: 1;
}

textarea {
  resize: none;
}

input:not([type=checkbox]):not([type=radio]), textarea {
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border: 1px solid;
  padding: 10px;
  background-color: transparent;
}

.help-block {
  display: block;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  background-color: #fff;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  padding: 9px 40px 14px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  box-shadow: 0px 0px 35px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1200px) {
  nav:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #fff;
    z-index: -1;
  }
}
@media screen and (max-width: 545px) {
  nav {
    padding: 9px 20px 14px;
  }
}
@media screen and (min-width: 1200px) {
  nav.transparent {
    background-color: transparent;
    position: absolute;
    padding: 50px 40px;
    box-shadow: none;
  }
}
@media screen and (min-width: 1200px) {
  nav.transparent .links a {
    color: #fff;
    margin: 0 18px;
    font-size: 17px;
    letter-spacing: 1px;
  }
}
@media screen and (min-width: 1200px) {
  nav.transparent .links a:hover {
    color: rgba(255, 255, 255, 0.7);
  }
}
nav.transparent .links a.logo-placeholder {
  display: block;
  width: 115px;
}
nav.transparent a.logo {
  order: 0;
  width: 115px;
}
@media screen and (min-width: 1200px) {
  nav.transparent a.logo {
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    flex-basis: 115px;
    margin-right: 0;
  }
}
@media screen and (min-width: 1200px) {
  nav.transparent a.logo img {
    filter: brightness(6);
  }
}
@media screen and (min-width: 1200px) {
  nav.transparent a.book-reserve {
    display: none;
  }
}
nav .links {
  display: flex;
}
@media screen and (max-width: 1200px) {
  nav .links {
    display: none;
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    padding: 120px 30px 20px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  nav .links a {
    white-space: nowrap;
    color: #fff;
  }
  nav .links.show {
    display: flex !important;
    flex-direction: column;
  }
}
nav .links a {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  margin: 0 14px;
}
@media screen and (max-width: 1200px) {
  nav .links a {
    font-size: 21px;
    margin: 0 14px 8px;
  }
}
nav .links a:hover, nav .links a.active {
  color: #8A463A;
}
nav .links a.logo-placeholder {
  display: none;
}
@media screen and (max-width: 545px) {
  nav a {
    font-weight: 500;
  }
}
nav a.logo {
  order: -1;
  margin-right: auto;
  flex-basis: 110px;
}
@media screen and (max-width: 545px) {
  nav a.logo {
    flex-basis: 85px;
  }
}
nav a.book-reserve {
  font-family: "Playfair Display", serif;
  margin-left: auto;
  text-transform: none;
  min-width: 143px;
  font-size: 16px;
}
@media screen and (max-width: 1200px) {
  nav a.book-reserve {
    display: flex;
    flex-direction: column;
    border: none;
    font-family: "Source Sans Pro", sans-serif;
    padding: 0;
    min-width: auto;
    margin-right: 20px;
  }
}
@media screen and (max-width: 1200px) {
  nav a.book-reserve i {
    font-size: 26px;
  }
}
@media screen and (min-width: 1200px) {
  nav a.book-reserve i {
    display: none;
  }
}
nav a.menu-trigger, nav a.book-reserve {
  display: flex;
  flex-direction: column;
  align-items: center;
}
nav a.menu-trigger p, nav a.book-reserve p {
  margin-top: auto;
  margin-bottom: 0;
  color: #000;
}
@media screen and (max-width: 1200px) {
  nav a.menu-trigger p, nav a.book-reserve p {
    font-size: 12px;
  }
}
@media screen and (min-width: 1200px) {
  nav a.menu-trigger {
    display: none;
  }
}
nav a.menu-trigger i {
  margin-bottom: 7px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 18px;
  width: 30px;
  justify-content: space-between;
  align-items: flex-end;
}
nav a.menu-trigger i span {
  height: 2px;
  background-color: #000;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
}
nav a.menu-trigger i span:nth-child(1) {
  width: 85%;
  top: 0%;
}
nav a.menu-trigger i span:nth-child(2) {
  width: 75%;
  top: 50%;
}
nav a.menu-trigger i span:nth-child(3) {
  width: 100%;
  top: 100%;
}
nav a.menu-trigger i.x span {
  top: auto;
  width: 100% !important;
}
nav a.menu-trigger i.x span:nth-child(1) {
  transform: translateY(10px) rotate(-135deg);
}
nav a.menu-trigger i.x span:nth-child(2) {
  opacity: 0;
}
nav a.menu-trigger i.x span:nth-child(2), nav a.menu-trigger i.x span:nth-child(3) {
  transform: translateY(10px) rotate(135deg);
}

@media screen and (max-width: 1200px) {
  .navSmall {
    display: flex;
    flex-direction: column;
  }
}

header {
  position: relative;
  background-color: #38200A;
  height: 405px;
}
header .cover-img {
  height: 100%;
}
header .cover-img img {
  padding-top: 70px;
}
@media screen and (max-width: 545px) {
  header .cover-img img {
    padding-top: 74px;
  }
}
header .item img, header .cover-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.75;
}
header .title {
  padding-top: 70px;
}
header .title .og-breadcrumb {
  margin-bottom: 10px;
}
header .title .og-breadcrumb a:not(:last-child):after {
  content: " / ";
}
header .caption, header .title {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  width: 100%;
  text-align: center;
  z-index: 3;
  color: #fff;
}
header .caption h1, header .title h1 {
  font-size: 50px;
  line-height: 0.7;
}
@media screen and (max-width: 545px) {
  header .caption h1, header .title h1 {
    font-size: 32px;
  }
}
header .caption p, header .caption a, header .title p, header .title a {
  font-weight: 500;
  line-height: 0;
}
header.home {
  height: 100vh;
}
header.home .hero {
  height: 100%;
  color: #fff;
  background-color: #4D2600;
}
header.home .hero .item {
  height: 100vh;
}
@media screen and (min-width: 1200px) {
  header.home:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    height: 159px;
    opacity: 0.65;
    background: -moz-linear-gradient(top, #170c04 0%, rgba(23, 12, 4, 0) 100%);
    background: -webkit-linear-gradient(top, #170c04 0%, rgba(23, 12, 4, 0) 100%);
    background: linear-gradient(to bottom, #170c04 0%, rgba(23, 12, 4, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#170c04", endColorstr="#00170c04",GradientType=0 );
    z-index: 2;
  }
}
header.lodge-page {
  height: 642px;
}
@media screen and (max-width: 545px) {
  header.lodge-page {
    height: 100vh;
  }
}
header a.book-btn {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3);
  -webkit-backdrop-filter: blur(3px);
  right: 0;
  z-index: 3;
  word-wrap: break-word;
  color: #fff;
  margin: 0;
  max-width: 20px;
  padding: 15px 23px 15px 17px;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  -webkit-transition: 0.2s all ease-in-out;
  -moz-transition: 0.2s all ease-in-out;
  -ms-transition: 0.2s all ease-in-out;
  -o-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
}
@media screen and (max-width: 545px) {
  header a.book-btn {
    display: none;
  }
}
header a.book-btn:hover {
  padding: 15px 28px 15px 22px;
}
header .down-arrow {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 50px;
  animation: flickerAnimation 2s infinite;
  z-index: 1;
  font-size: 14px;
}
header .down-arrow i {
  color: #fff;
}
@keyframes flickerAnimation {
  0% {
    transform: translate(0, -20px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 20px);
    opacity: 0;
  }
}
header .down-arrow a.scroll-down {
  height: 50px;
  display: block;
}
@media screen and (max-width: 545px) {
  header.no-img {
    height: auto;
    padding-top: 110px;
    background-color: transparent;
  }
  header.no-img .cover-img img {
    display: none;
  }
  header.no-img .title {
    position: static;
    transform: none;
    padding-top: 0;
    color: #000;
  }
}

.close {
  opacity: 1;
  position: relative;
}
.close:before, .close:after {
  position: absolute;
  top: 0;
  content: " ";
  height: 28px;
  width: 2px;
  background-color: white;
}
.close:before {
  transform: rotate(45deg);
}
.close:after {
  transform: rotate(-45deg);
}

.chevron-right:before {
  left: 0;
  transform: rotate(45deg);
}
.chevron-bottom:before {
  top: 0;
  transform: rotate(135deg);
}
.chevron-left:before {
  left: 0.25em;
  transform: rotate(-135deg);
}

button {
  border: none;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}

.blueSolid {
  border: 1px solid #000;
}

.og-btn, .og-btn-transparent {
  min-width: 170px;
  padding: 8px 10px;
  text-align: center;
  text-transform: uppercase;
  font-size: 15px;
  border: 1.5px solid #000;
}

.og-btn {
  color: #fff;
  background: #000;
}
.og-btn:hover {
  color: #000;
  background: transparent;
}

.og-btn-transparent {
  color: #000;
  background: transparent;
}
.og-btn-transparent:hover {
  color: #fff;
  background: #000;
}
.og-btn-transparent.grey-2 {
  color: #535353;
  border-color: #535353;
}
.og-btn-transparent.grey-2:hover {
  background-color: #535353;
  color: #fff;
}

section.intro {
  text-align: center;
  margin-bottom: 50px;
}
section.intro .holder {
  margin: 0 auto;
  max-width: 900px;
  display: block;
}
section.featured {
  overflow: hidden;
  position: relative;
  height: 605px;
  display: flex;
  margin: 0;
}
@media screen and (max-width: 545px) {
  section.featured {
    height: auto;
  }
}
section.featured .owl-carousel {
  position: absolute;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  width: 145%;
}
@media screen and (max-width: 545px) {
  section.featured .owl-carousel {
    display: flex;
    flex-direction: column;
    position: static;
    transform: none;
    padding: 0 20px;
  }
}
section.featured .owl-carousel .owl-item:not(.center) {
  opacity: 0.42;
}
section.featured .owl-carousel .owl-item:not(.center) .caption {
  opacity: 0;
}
section.featured .owl-carousel .owl-item.center {
  display: block;
}
section.featured .owl-carousel .item > a {
  display: block;
  position: relative;
  height: 415px;
}
@media screen and (max-width: 545px) {
  section.featured .owl-carousel .item > a {
    height: 200px;
  }
}
section.featured .owl-carousel .item > a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
section.featured .owl-carousel .owl-nav {
  display: block;
}
section.featured .owl-carousel .owl-nav .owl-prev, section.featured .owl-carousel .owl-nav .owl-next {
  font-size: 32px;
  cursor: pointer;
  z-index: 2;
  padding: 6px !important;
  width: 36%;
  display: flex;
  height: 100%;
  top: -14%;
  position: absolute;
}
section.featured .owl-carousel .owl-nav .owl-prev i, section.featured .owl-carousel .owl-nav .owl-next i {
  top: 44%;
  position: absolute;
}
@media screen and (max-width: 1400px) {
  section.featured .owl-carousel .owl-nav .owl-prev, section.featured .owl-carousel .owl-nav .owl-next {
    width: 36.2%;
  }
}
@media screen and (max-width: 1200px) {
  section.featured .owl-carousel .owl-nav .owl-prev, section.featured .owl-carousel .owl-nav .owl-next {
    width: 36.5%;
  }
}
@media screen and (max-width: 996px) {
  section.featured .owl-carousel .owl-nav .owl-prev, section.featured .owl-carousel .owl-nav .owl-next {
    width: 36.7%;
  }
}
section.featured .owl-carousel .owl-nav .owl-prev:hover, section.featured .owl-carousel .owl-nav .owl-next:hover {
  opacity: 0.4;
}
section.featured .owl-carousel .owl-nav .owl-prev {
  left: -53px;
  justify-content: flex-end;
}
section.featured .owl-carousel .owl-nav .owl-next {
  right: -48px;
  justify-content: flex-start;
}
section.featured .owl-carousel .owl-nav i {
  position: relative;
}
section.featured .owl-carousel .owl-nav i::before {
  border-color: black;
  border-style: solid;
  border-width: 2px 2px 0 0;
  content: "";
  display: inline-block;
  height: 10px;
  position: relative;
  top: 0.15em;
  vertical-align: top;
  width: 10px;
}
section.featured .caption {
  margin: 0 auto;
  max-width: 550px;
  display: block;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: flex-end;
  padding-bottom: 30px;
  padding-top: 30px;
}
@media screen and (max-width: 545px) {
  section.featured .caption {
    padding-bottom: 10px;
  }
}
section.featured .caption p {
  margin-bottom: 30px;
}
@media screen and (max-width: 545px) {
  section.featured .caption .og-btn {
    display: none;
  }
}
section.banner-mid {
  position: relative;
  height: 340px;
  background-color: #383232;
}
@media screen and (max-width: 545px) {
  section.banner-mid {
    margin-top: 10px;
    height: 300px;
  }
}
section.banner-mid img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.19;
}
section.banner-mid p {
  z-index: 1;
  font-size: 23px;
  padding: 0 15px;
  font-family: "Playfair Display", serif;
  color: #fff;
  text-align: center;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  max-width: 100%;
  width: 730px;
}
@media screen and (max-width: 545px) {
  section.banner-mid p {
    font-size: 19px;
  }
}
section.services {
  text-align: center;
  margin-bottom: 75px;
  overflow: hidden;
}
section.services .holder.owl-carousel .owl-item .item {
  text-align: center;
}
section.services .holder.owl-carousel .owl-item .item i {
  color: #8A463A;
  margin-bottom: 20px;
  font-size: 52px;
  margin-bottom: 25px;
  display: block;
}
section.services .holder.owl-carousel .owl-item .item h2 {
  margin-bottom: 25px;
}
section.services .holder.owl-carousel .owl-prev, section.services .holder.owl-carousel .owl-next {
  position: absolute;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  font-size: 43px;
  cursor: pointer;
  z-index: 1;
}
section.services .holder.owl-carousel .owl-prev:hover, section.services .holder.owl-carousel .owl-next:hover {
  opacity: 0.4;
}
@media screen and (max-width: 545px) {
  section.services .holder.owl-carousel .owl-prev, section.services .holder.owl-carousel .owl-next {
    font-size: 29px;
    padding: 20px 20px !important;
  }
}
section.services .holder.owl-carousel .owl-prev {
  left: -30px;
}
@media screen and (max-width: 545px) {
  section.services .holder.owl-carousel .owl-prev {
    left: 3px;
  }
}
section.services .holder.owl-carousel .owl-next {
  right: -30px;
}
@media screen and (max-width: 545px) {
  section.services .holder.owl-carousel .owl-next {
    right: 3px;
  }
}
@media screen and (max-width: 545px) {
  section.services {
    margin: 11px 0 42px;
  }
}

@media screen and (max-width: 545px) {
  .show-more-snippet {
    display: block;
    height: 120px;
    overflow: hidden;
  }
}

.show-more {
  display: none;
}
@media screen and (max-width: 545px) {
  .show-more {
    display: block;
    margin: 0 auto;
  }
}

section.lodge-listing {
  margin: 30px 0 40px;
}
@media screen and (max-width: 545px) {
  section.lodge-listing {
    margin-top: 0;
  }
}
section.lodge-listing .holder .listing-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 20px;
}
section.lodge-listing .holder .listing-panel > p {
  font-family: "Playfair Display", serif;
  margin: 0;
}
section.lodge-listing .holder .listing-panel .filter-dropdown {
  margin-left: auto;
  padding-right: 20px;
  position: relative;
}
section.lodge-listing .holder .listing-panel .filter-dropdown::before {
  border-color: black;
  border-style: solid;
  border-width: 1px 1px 0 0;
  content: "";
  display: inline-block;
  height: 7px;
  position: relative;
  top: 0.15em;
  vertical-align: top;
  width: 7px;
}
section.lodge-listing .holder .listing-panel .filter-dropdown:before {
  right: 0;
  position: absolute;
  top: 32%;
}
section.lodge-listing .holder .filter-menu .content {
  display: grid;
  background-color: #F5F5F5;
  grid-template-columns: 200px 200px 1fr;
  padding: 40px 30px;
  margin: 0px 0 35px;
}
@media screen and (max-width: 767px) {
  section.lodge-listing .holder .filter-menu .content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 545px) {
  section.lodge-listing .holder .filter-menu .content {
    grid-template-columns: 100%;
    padding: 28px 27px 35px;
  }
}
section.lodge-listing .holder .filter-menu .content > * p.heading {
  font-weight: 500;
}
@media screen and (max-width: 545px) {
  section.lodge-listing .holder .filter-menu .content > * p.heading {
    font-weight: 600;
  }
}
section.lodge-listing .holder .filter-menu .content > * ul li label {
  margin-left: 10px;
}
@media screen and (max-width: 545px) {
  section.lodge-listing .holder .filter-menu .content > * ul li label {
    font-weight: 500;
  }
}
@media screen and (max-width: 545px) {
  section.lodge-listing .holder .filter-menu .content .col-2 {
    order: -1;
  }
}
section.lodge-listing .holder .filter-menu .content .col-3 button {
  float: right;
}
@media screen and (max-width: 767px) {
  section.lodge-listing .holder .filter-menu .content .col-3 {
    column-span: 2;
  }
  section.lodge-listing .holder .filter-menu .content .col-3 button {
    width: 100%;
  }
}
@media screen and (max-width: 545px) {
  section.lodge-listing .holder .filter-menu .content .col-3 button {
    color: #fff;
    background: #000;
  }
}
section.lodge-listing .holder > ul {
  display: grid;
  grid-template-columns: 100%;
  grid-gap: 30px 20px;
}
@media screen and (max-width: 1200px) {
  section.lodge-listing .holder > ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1200px) and (max-width: 545px) {
  section.lodge-listing .holder > ul {
    grid-template-columns: 100%;
  }
}
section.lodge-listing .holder > ul li {
  display: grid;
  height: 265px;
  grid-template-columns: 350px 90px 1fr 300px;
  grid-column-gap: 3px;
  position: relative;
}
@media screen and (max-width: 1400px) {
  section.lodge-listing .holder > ul li {
    grid-template-columns: 320px 80px 1fr 250px;
  }
}
@media screen and (max-width: 1200px) {
  section.lodge-listing .holder > ul li {
    grid-template-columns: 100%;
    height: auto;
  }
}
section.lodge-listing .holder > ul li > * {
  background-color: #F5F5F5;
}
section.lodge-listing .holder > ul li .cover-img {
  position: relative;
}
section.lodge-listing .holder > ul li .cover-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1200px) {
  section.lodge-listing .holder > ul li .cover-img {
    height: 250px;
  }
}
section.lodge-listing .holder > ul li .icons {
  background-color: transparent;
}
section.lodge-listing .holder > ul li .icons > * {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  section.lodge-listing .holder > ul li .icons > * {
    background-color: #F5F5F5;
  }
}
section.lodge-listing .holder > ul li .icons > * .qunantity {
  color: #8A463A;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  section.lodge-listing .holder > ul li .icons > * .qunantity {
    font-size: 12px;
    color: #fff;
  }
}
section.lodge-listing .holder > ul li .icons > * p {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
}
@media screen and (max-width: 1200px) {
  section.lodge-listing .holder > ul li .icons > * p {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  section.lodge-listing .holder > ul li .icons {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-row-gap: 3px;
  }
}
@media screen and (max-width: 1200px) {
  section.lodge-listing .holder > ul li .icons {
    position: absolute;
    top: 15px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.58);
    font-family: "Playfair Display", serif;
    display: grid;
    grid-template-columns: repeat(2, auto);
    padding: 10px;
    backdrop-filter: blur(3);
    -webkit-backdrop-filter: blur(3px);
    right: 10px;
    display: flex;
  }
  section.lodge-listing .holder > ul li .icons span, section.lodge-listing .holder > ul li .icons p, section.lodge-listing .holder > ul li .icons i {
    font-size: 16px;
    line-height: 1;
  }
  section.lodge-listing .holder > ul li .icons .row-1 {
    margin-right: 7px;
  }
}
section.lodge-listing .holder > ul li .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
section.lodge-listing .holder > ul li .info a {
  font-family: "Playfair Display", serif;
  font-size: 23px;
  margin-bottom: 12px;
  display: block;
}
section.lodge-listing .holder > ul li .info p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
@media screen and (max-width: 545px) {
  section.lodge-listing .holder > ul li .info p {
    -webkit-line-clamp: 3;
  }
}
section.lodge-listing .holder > ul li .info .amenities {
  display: flex;
}
section.lodge-listing .holder > ul li .info .amenities i {
  width: 31px;
  height: 31px;
  border-radius: 300px;
  margin-left: 5px;
  margin-right: 5px;
  border: 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.lodge-listing .holder > ul li .info .amenities i:before {
  font-size: 14px;
}
@media screen and (max-width: 1200px) {
  section.lodge-listing .holder > ul li .info {
    align-items: center;
    text-align: center;
  }
}
section.lodge-listing .holder > ul li .info, section.lodge-listing .holder > ul li .price {
  padding: 30px 30px 30px;
}
@media screen and (max-width: 1200px) {
  section.lodge-listing .holder > ul li .info, section.lodge-listing .holder > ul li .price {
    padding: 23px 30px 20px;
  }
}
section.lodge-listing .holder > ul li .price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  section.lodge-listing .holder > ul li .price {
    padding-top: 0;
  }
}
section.lodge-listing .holder > ul li .price .text span {
  font-weight: 400;
}
section.lodge-listing .holder > ul li .price .text p {
  font-family: "Playfair Display", serif;
  font-size: 23px;
  line-height: 1;
  margin-bottom: 27px;
}
@media screen and (max-width: 1200px) {
  section.lodge-listing .holder > ul li .price .text {
    position: absolute;
    top: 15px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.58);
    font-family: "Playfair Display", serif;
    display: grid;
    grid-template-columns: repeat(2, auto);
    padding: 10px;
    backdrop-filter: blur(3);
    -webkit-backdrop-filter: blur(3px);
    grid-column-gap: 5px;
    left: 15px;
  }
  section.lodge-listing .holder > ul li .price .text span, section.lodge-listing .holder > ul li .price .text p, section.lodge-listing .holder > ul li .price .text i {
    font-size: 16px;
    line-height: 1;
  }
  section.lodge-listing .holder > ul li .price .text p {
    margin-bottom: 0;
  }
  section.lodge-listing .holder > ul li .price .text span.label-1 {
    display: none;
  }
}
section.lodge-listing .holder > ul li .price a:first-of-type.og-btn {
  margin-bottom: 5px;
}

section {
  margin-bottom: 30px;
}
section.lodge-info {
  overflow: unset;
}
section.lodge-info .holder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 50px;
}
@media screen and (max-width: 1200px) {
  section.lodge-info .holder {
    grid-template-columns: 100%;
  }
}
section.lodge-info .holder .col-1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
section.lodge-info .holder .col-1 ul.amenities {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, auto);
  grid-column-gap: 14px;
}
@media screen and (max-width: 767px) {
  section.lodge-info .holder .col-1 ul.amenities {
    grid-template-columns: repeat(3, auto);
  }
}
section.lodge-info .holder .col-1 ul.amenities li {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.lodge-info .holder .col-1 ul.amenities li i {
  width: 42px;
  height: 42px;
  border-radius: 300px;
  border: 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.lodge-info .holder .col-1 ul.amenities li i:before {
  font-size: 19px;
}
section.lodge-info .holder .col-1 ul.amenities li p {
  text-align: center;
  font-weight: 500;
  white-space: nowrap;
  font-size: 14px;
  margin-top: 5px;
}
section.lodge-info .holder .col-1 ul.amenities li a#view-all {
  color: #8A463A;
}
section.lodge-info .holder .col-1 ul.amenities li a.popped {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 545px) {
  section.lodge-info .holder .col-1 ul.amenities {
    width: 100%;
  }
}
section.lodge-info .holder .col-1 .actions {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-column-gap: 10px;
  margin-top: 20px;
}
@media screen and (max-width: 370px) {
  section.lodge-info .holder .col-1 .actions {
    grid-template-columns: repeat(1, auto);
    width: 100%;
  }
}
section.lodge-info .holder .col-1 .scroll-indicator {
  display: none;
}
@media screen and (max-width: 545px) {
  section.lodge-info .holder .col-1 .scroll-indicator {
    position: absolute;
    top: -40px;
    color: #8A463A;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  section.lodge-info .holder .col-1 .scroll-indicator p {
    margin: 0;
    margin-right: 10px;
  }
}
section.lodge-info .holder .col-2 .photos-height {
  position: relative;
  padding-bottom: 66.6%;
}
section.lodge-info .holder .col-2 .photos-height .photos {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
section.lodge-info .holder .col-2 .photos-height .photos-grid {
  height: 100%;
  display: grid;
  grid-gap: 5px;
  grid-template-columns: repeat(3, 1fr);
}
section.lodge-info .holder .col-2 .photos-height .photos-grid li {
  background-color: #F5F5F5;
  grid-gap: 5px;
  position: relative;
  overflow: hidden;
}
section.lodge-info .holder .col-2 .photos-height .photos-grid li img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.35s all ease-in-out;
  -moz-transition: 0.35s all ease-in-out;
  -ms-transition: 0.35s all ease-in-out;
  -o-transition: 0.35s all ease-in-out;
  transition: 0.35s all ease-in-out;
}
section.lodge-info .holder .col-2 .photos-height .photos-grid li img:hover {
  transform: scale(1.05);
}
@media screen and (max-width: 1200px) {
  section.lodge-info .holder .col-2 .photos-height .photos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  section.lodge-info .holder .col-2 .photos-height .photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1200px) {
  section.lodge-info .holder .col-2 .photos-height .photos {
    width: 100% !important;
    margin-top: 32px;
  }
}
section.lodge-info .holder .col-2 .photos-height.single-img .photos-grid {
  grid-template-columns: repeat(1, 1fr);
}
section.lodge-info .holder .col-2 .photos-height.two-imgs {
  padding-bottom: 104%;
}
section.lodge-info .holder .col-2 .photos-height.two-imgs .photos-grid {
  grid-template-columns: repeat(1, 1fr);
}
section.lodge-info .holder .col-2 .photos-height.multiple-imgs {
  padding-bottom: 92.6%;
}
section.lodge-info .holder .col-2 .photos-height.multiple-imgs .photos {
  width: 55vw;
}
section.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  section.contact-info {
    grid-template-columns: 100%;
  }
}
section.contact-info .col-2 {
  background-color: #F5F5F5;
  padding: 62px 54px;
}
section.contact-info .col-2 .links a {
  display: block;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  section.contact-info .col-2 {
    order: -1;
  }
}
section.reviews {
  text-align: center;
  margin-bottom: 80px;
}
section.reviews .holder {
  position: relative;
  padding: 0 80px;
}
@media screen and (max-width: 545px) {
  section.reviews .holder {
    padding: 0 60px;
  }
}
section.reviews .holder .owl-carousel .item .star-rating i {
  color: #8A463A;
}
section.reviews .holder .owl-carousel .item .comment {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 18px;
  margin: 20px auto 10px;
  max-width: 650px;
}
section.reviews .holder .owl-carousel .item .name {
  color: #8A463A;
  font-weight: 500;
  margin-bottom: 35px;
}
section.reviews .holder button i {
  margin-right: 10px;
}
section.reviews .reviews-nav .owl-next, section.reviews .reviews-nav .owl-prev {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  background-color: transparent;
  z-index: 3;
}
section.reviews .reviews-nav .owl-next i, section.reviews .reviews-nav .owl-prev i {
  position: relative;
}
section.reviews .reviews-nav .owl-next i::before, section.reviews .reviews-nav .owl-prev i::before {
  border-color: black;
  border-style: solid;
  border-width: 1px 1px 0 0;
  content: "";
  display: inline-block;
  height: 30px;
  position: relative;
  top: 0.15em;
  vertical-align: top;
  width: 30px;
}
section.reviews .reviews-nav .owl-next {
  right: 25px;
}
section.reviews .reviews-nav .owl-prev {
  left: 25px;
}
section.more-lodges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 85px;
  margin: 0;
}
section.more-lodges > * {
  border: 1px solid #CECECE;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.more-lodges .lodge-listing {
  margin: 0 -1px;
}
section.more-lodges .prev p, section.more-lodges .next p {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
  flex-basis: 30%;
  margin: 0;
}
section.more-lodges .prev p::before, section.more-lodges .next p::before {
  border-color: black;
  border-style: solid;
  border-width: 2px 2px 0 0;
  content: "";
  display: inline-block;
  height: 8px;
  position: relative;
  top: 0.15em;
  vertical-align: top;
  width: 8px;
}
section.more-lodges .prev p:before, section.more-lodges .next p:before {
  position: absolute;
  top: 37%;
}
section.more-lodges .prev:hover p, section.more-lodges .next:hover p {
  flex-basis: 38%;
}
section.more-lodges .prev p {
  text-align: right;
  padding-left: 21px;
}
section.more-lodges .prev p:before {
  left: 0;
}
section.more-lodges .next p {
  text-align: left;
  padding-right: 21px;
}
section.more-lodges .next p:before {
  right: 0;
  left: auto;
}

.tippy-content ul {
  column-count: 2;
  column-gap: 27px;
  padding-left: 18px;
}
.tippy-content ul li {
  list-style: disc;
}

.ico-gym:before {
  display: block;
  content: " ";
  background-image: url("../images/icons/gym.svg");
  background-size: 28px 28px;
  height: 28px;
  width: 28px;
}

.ico-wheelchair:before {
  display: block;
  content: " ";
  background-image: url("../images/icons/wheelchair.svg");
  background-size: contain;
  height: 22px;
  width: 22px;
  object-fit: contain;
}

section.services-listing {
  padding-top: 20px;
}
@media screen and (max-width: 545px) {
  section.services-listing {
    margin-top: 0;
  }
}
@media screen and (max-width: 1200px) {
  section.services-listing .holder ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 10px;
    align-items: start;
  }
}
@media screen and (max-width: 545px) {
  section.services-listing .holder ul {
    grid-template-columns: 100%;
  }
}
section.services-listing .holder ul li {
  background-color: #F5F5F5;
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 250px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1200px) {
  section.services-listing .holder ul li {
    grid-template-columns: 100%;
  }
}
section.services-listing .holder ul li a {
  position: relative;
}
@media screen and (max-width: 1200px) {
  section.services-listing .holder ul li a.cover-img {
    height: 250px;
  }
}
section.services-listing .holder ul li a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
section.services-listing .holder ul li .info {
  background-color: #F5F5F5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 40px;
}
@media screen and (max-width: 1200px) {
  section.services-listing .holder ul li .info {
    justify-content: flex-start;
  }
}
section.services-listing .holder ul li .info > a {
  font-family: "Playfair Display", serif;
  font-size: 23px;
  margin-bottom: 12px;
  display: block;
}
section.services-listing .holder ul li .info .action {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  max-width: 500px;
}
@media screen and (max-width: 996px) {
  section.services-listing .holder ul li .info .action {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  section.services-listing .holder ul li .info .action a {
    min-width: 100%;
  }
}

.wildlifeChecklist {
  list-style: decimal !important;
}
.wildlifeChecklist li {
  height: auto;
  margin: 0;
  min-height: unset !important;
  margin-bottom: 10px !important;
  list-style: decimal;
  display: list-item !important;
}

.gallery-content .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 4fr;
}
@media screen and (max-width: 996px) {
  .gallery-content .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 545px) {
  .gallery-content .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.gallery-content .grid .item {
  position: relative;
  overflow: hidden;
}
.gallery-content .grid .item:first-child {
  grid-row: span 2;
  grid-column: span 2;
}
@media screen and (max-width: 545px) {
  .gallery-content .grid .item:first-child {
    grid-row: span 1;
    grid-column: span 1;
  }
}
.gallery-content .grid .item:hover img {
  transform: scale(1.2);
}
.gallery-content .grid .item img {
  object-fit: cover;
  height: 100%;
  transition: all 0.4s ease-in-out;
}
.gallery-content .grid .thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.gallery-content .grid .thumbnail .text {
  color: white;
  text-transform: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 300;
  margin-top: 10;
}
.gallery-content .grid .thumbnail .text::after {
  background-color: #8A463A;
  content: "";
  width: 60px;
  height: 3px;
  margin: 10px;
}

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