:root {
  --main-bg-color: #3d7e9a;
  --main-txt-color: #555;
  --main-btn-color: #b14141;
  --main-link-color: #3e3e3e;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  transition: all 0.3s ease;
}
table, tr, td { font-size: 16px; font-family: 'Roboto', sans-serif; }

html {
  /*font: normal 1.25em sans-serif;*/
  color: var(--main-txt-color);
}

h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; }

h1 {
  font-size: 4.1em;
}

h2 {
  font-size: 1.8em;
}

h3 {
  font-size: 1.3em;
}

h4 {
  font-size: 1.3em;
  font-weight: 600;
}

h5 {
  font-size: 1.05em;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h6 {
  font-size: 1.05em;
}

nav,
ul {
  list-style: none;
}

a , input[type=submit].btn{
  text-decoration: none;
  /*opacity: 0.75;*/
  color: #fff;
}

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

a:hover {
  opacity: 1;
  color: #e6f99d;
}

a.btn {
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: center;
  background-color: var(--main-btn-color);
  opacity: 1;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 0;
}

section:not(.hero):nth-child(even) {
  background-color: #f5f5f5;
}

.logo {
  /*background: rgba(0,0,0,.33);*/
  /*padding: 8px 22px;*/
  /*border-radius: 4px;*/
}
.logo:hover {
  /*transform: rotate(45deg) translateY(-5px) translateX(10px) scale(0);*/
  transform: translateX(11px);
}
.hero h1.logo { font-size: inherit; margin-bottom: 0; }
.logo img { width: 140px; height: auto; }

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}


.col-3 {
  display: grid;
  grid-gap: 60px;
  /*grid-template-columns: repeat(3, 1fr);*/
  grid-template-columns: 1fr 1fr 1fr;
}

hr {
  width: 111px;
  height: 3px;
  background-color: var(--main-bg-color);
  border: 0;
  margin-bottom: 80px;
  margin-top: 40px;
  margin-right: auto;
  margin-left: auto;
}

section h3.title {
  text-transform: capitalize;
  font: bold 32px "Poppins", sans-serif;
  margin-bottom: 30px;
  text-align: center;
}

section p {
  line-height: 1.5;
  /*margin-bottom: 30px;*/
  font-size: 1.25em;
}

@media (max-width: 800px) {
  section {
    padding: 50px 20px;
  }

  section p {
    font-size: 16px;
  }

  section h3.title {
    font-size: 25px;
  }

  hr {
    margin-bottom: 10px;
  }
}

/* Header Styles */

header {
  position: absolute;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 0;
  width: 80%;
  animation: 1s fadein 0.5s forwards;
  opacity: 0;
  color: #fff;
}

@keyframes fadein {
  100% {
    opacity: 1;
  }
}

header h2 {
  font-size: 2rem;
}

header nav {
  display: flex;
}

header nav li {
  font-size: 0.88rem;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  margin: 0 15px;
  letter-spacing: 0.11em;
}

nav li:nth-child(2) {
  /*margin: 0 15px;*/
}

@media (max-width: 800px) {
  header {
    padding: 20px 50px;
    flex-direction: column;
  }
  header h2 {
    margin-bottom: 15px;
  }
}


.hdr { }
.hdr a { font-size: 14.08px !important; color: var(--main-link-color); }
.hdr a:hover { text-decoration: none; color: var(--main-bg-color)}
.hdr .header-fixed a { color: #fff; }
.hdr h1.logo span { display: none; }

/* Hero Styles */

.hero {
  position: relative;
  justify-content: center;
  text-align: center;
  height: 100vh;
  color: #fff;
}

.hero .background-image {
  position: absolute;
  background-image: url("/content/images/glamping-daytime-sky-view.jpg");
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-color: #80a3db;
}

.hero h1 {
  font: bold 83px "Poppins", sans-serif;
  margin-bottom: 11px;
  text-shadow: 1px 2px 3px rgb(74, 74, 74); 
}

.hero h3 {
  font: normal 28px "Poppins", sans-serif;
  margin-bottom: 40px;
  text-shadow: 1px 2px 3px rgb(74, 74, 74); 
}

.hero a.btn {
  padding: 20px 46px;
}

.hero-content-area {
  opacity: 0;
  margin-top: 100px;
  animation: 1s slidefade 1s forwards;
}

@keyframes slidefade {
  100% {
    opacity: 1;
    margin: 0;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 600px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero h3 {
    font-size: 24px;
  }
  .hero a.btn {
    padding: 15px 40px;
  }
}

@media (max-width: 600px) {
  .hero {height: 70vh;}
  .hero h1 {
    font-size: 30px;
  }
  .hero h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .hero a.btn {
    padding: 10px 20px;
    font-size: 15px;
  }
  .hero h2 {
    font-size: 18px;
  }
  .hero nav li {
    font-size: 15px;
  }


  .hero .background-image {
    background-position: center;
  }
  .hero h2.logo {
    /*background: #5a0101;*/
    background: rgba(90, 1, 1, 0.60);
    padding: 0px 11px;
  }
  h2.logo a {
    font-size: 33px;
    /*text-shadow: 0px 2px 2px #333;*/
    /*letter-spacing: -0.04em;*/
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
  }
  /*.hero h2 { text-shadow: 0 1px 3px #333;}*/

}

/* about */

.about .title, 
.about p, 
.about .grid {
  /*max-width: 80%;*/
}

.about p {
  /*width: 1800px;*/
}

.about .grid img {
  /*padding: 20px;*/
  /*background-clip: content-box;*/
  /*background-size: cover;*/
  /*background-position: center;*/
  transition: 0.33s all ease;
  /*filter: grayscale(50%)*/
}

.about .grid img:hover {
  transform: scale(1.02);
  transition: 0.5s all ease;
  filter: none;
}

.about .grid img.small {
  width: 27%;
  height: 30vh;
  flex-basis: 30%;
}

.about .grid img.large {
  width: 67%;
  height: 30vh;
  flex-basis: 70%;
}

.img-sections {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  margin-top: 60px; 
}
.img-sections img {
  width: 100%;
  height: auto;
  display: block;
  float: left;
  flex: 0 0 auto;
}

.img-row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.img-column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.img-column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .img-column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .img-column {
    flex: 100%;
    max-width: 100%;
  }
}

@media (max-width: 1800px) {
  .about .grid img.small,
  .about .grid img.large {
    flex-basis: 50%;
    width: 45%;
    height: 30vh;
  }
}

@media (max-width: 900px) {
  .about .grid img.small,
  .about .grid img.large {
    flex-basis: 100%;
    width: 300px;
    height: 250px;
  }
}


.wrapper {
  max-width: 833px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.wrapper-lg {
  max-width: 1140px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.column {
  margin: 10px;
  padding: 20px;
  /*display: flex;*/
  /*flex: 1 1 0px; *//* flex: 1 */
}


.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}
.double-column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 2;
}
@media screen and (min-width: 800px) {
  .column {
    flex: 1
  }

  .double-column {
    flex: 2
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}

.flex-grid {
  display: flex;
}
.flex-grid .col {
  flex: 1;
}
.flex-grid-thirds {
  display: flex;
  justify-content: space-between;
}
.flex-grid-thirds .col {
  width: 32%;
}

@media (max-width: 400px) {
  .flex-grid,
  .flex-grid-thirds {
    display: block;
    .col {
      width: 100%;
      margin: 0 0 10px 0;
    }
  }
}

.flex-grid { 
  margin: 0 0 20px 0;
}

.list-items { list-style-type: square; margin-left: 30px; margin-top: 10px; margin-bottom: 16px; line-height: 1.5; font-size: 18px; }



h3 { font-weight: 600; }
.faq {
  margin-bottom: 28px;
}


/* Packages Section */

.packages .title,
.packages li
.packages .grid {
  max-width: 80%;
}
.packages .grid { margin-top: 60px; }

.packages .grid li {
  /*padding: 40px;*/
  padding: 0 11px;
  /*flex-basis: 25%;*/
  flex-basis: 20%;
  text-align: center;
}

.package-list { /*list-style-type: square;*/ }

.package-list li { margin: 0; padding: 0 !important; line-height: 1.83; }

ul.package-list {
  margin-top: 20px;
    /*width: 450px;*/
    /*position: relative;*/
}
.packages ul.grid h4 { margin: 30px 0; }

    
ul.package-list li {
    /*float: left;*/
    /*margin-bottom: -1px;*/
    /*padding-right: 1%;*/
    text-align: left !important;
    /*border-bottom: 1px solid #ededed;*/
    padding: 6px 12px !important;
}
ul.package-list li:nth-child(even) {
    /*margin-left: -1px;*/
}

ul.package-list li:nth-child(2n+1){
  background-color:#ededed;
}

.packages .grid li i {
  color: #8c9eff;
}

.packages .grid li h4 {
  font-size: 30px;
  margin: 25px 0;
}

@media (max-width: 1800px) {
  .packages .grid li {
    flex-basis: 50%;
    padding: 20px;
  }
}

@media (max-width: 900px) {
  .packages .grid li {
    flex-basis: 100%;
    padding: 20px;
    max-width: 100%;
  }
  .packages .grid li h4 {
    font-size: 22px;
  }
}

/* Testimonials Section */

.testimonials {
  font-weight: 300;
  line-height: 1.5;
}

.testimonials article {
  /*display: flex;*/
  /*justify-content: center;*/
  max-width: 80%;
}
.testimonials article div {
  width: 100%;
}

.testimonials .title,
.testimonials .author,
.testimonials .quote {
  /*max-width: 80%;*/
  /*width: 1200px;*/
}

@media (max-width: 800px) {
  .testimonials .quote {
    font-size: 18px;
    margin: 15px 0;
  }
  .testimonials .author {
    font-size: 14px;
  }
}

/* Contact Section */

.contact p {
  /*width: 80%;*/
  /*max-width: 1200px;*/
}
.col p { margin-bottom: 18px; }

.contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 280px;
  /* max-width: 80%; */
  /* display: block; */
  margin-left: auto;
  margin-right: auto;
}

.contact form .btn {
  padding: 18px 42px;
  /*width: 30%;*/
}

.contact form input {
  padding: 15px;
  margin: 15px 0 20px 0;
  width: 100%;
  font-size: 18px;
  color: var(--main-txt-color);
  box-sizing: border-box;
  border: 0;
  border-radius: 4px;
  background: #ededed;
}
.contact form textarea {
  padding: 15px;
  margin: 15px 0 20px 0;
  width: 100%;
  font-size: 18px;
  color: var(--main-txt-color);
  box-sizing: border-box;
  border: 0;
  border-radius: 4px;
  background: #ededed;
}

.contact form .btn {
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
    background-color: var(--main-btn-color);
    opacity: 1;
    width: auto;
}
.contact form .btn:hover { color: #e6f99d; cursor: pointer; }

@media (max-width: 1100px) {
  .contact form .btn {
    padding: 9px;
    width: 150px;
    font-size: 12px
  }

  .contact form input {
    padding: 9px;
    width: 100%;
  }
}
.notify {
    margin-top: 10px;
    margin-bottom: 10px;
}

.notify.error {
    background-color: #f4d0d0;
    border-color: #aa2222;
    color: #aa2222; }

.notify.warning {
    background-color: #f9f1bb;
    border-color: #a05b08;
    color: #a05b08; }

.notify.info {
    background-color: #c2e3f2;
    border-color: #046099;
    color: #046099; }


.wrapper-wide {
  max-width: 1411px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 60px;
}
.col-4 {
  display: grid;
  /*border:1px solid #000;*/
  grid-gap: 50px;
  /*grid-template-columns: repeat(auto-fit, minmax(200px,1fr));*/
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.col-4 h4 { margin: 20px 0; }

.col-4 p { font-size: 15px; }


.packages ul.grid li:nth-of-type(1) {
  order: 4;
}

.packages ul.grid li:nth-of-type(2) {
  order: 3;
}

.packages ul.grid li:nth-of-type(3) {
  order: 2;
}

.packages ul.grid li:nth-of-type(4) {
  order: 1;
}




.top {
  bottom: 0;
  display: none;
  font-weight: bold;
  margin: 20px;
  position: fixed;
  right: 0;
  text-decoration: none;
  z-index: 1;
  background: rgba(237, 237, 237, 0.83);
  color: #333;
  padding: 9px;
  border-radius: 5px;
}

.top:hover { color: #aaa; }

.map { padding: 0; }
.map iframe {
  width: 100%;
  border: 0;
}

/* Footer Section */

footer {
  background-color: #607d8b;
  color: #fff;
  padding: 40px 0;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 80%;
  padding: 20px 0;
}

footer ul {
  display: flex;
  justify-content: flex-end;
  flex-basis: 540px;
}

footer ul li {
  margin-right: 16px;
}

footer p {
  /*flex-basis: 540px;*/
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  opacity: 0.6;
}
footer p.copyrights { text-align: right; }

footer p:nth-child(1) {
  text-align: left;
}

@media (max-width: 1100px) {
  .footer-container {
    flex-direction: column;
  }
  footer p {
    text-align: center;
    flex-basis: 0;
    margin-bottom: 20px;
    font-size: 12px;
  }
  footer ul {
    flex-basis: auto;
    margin: 0 8px;
  }
}


@media (max-width: 768px) {


  .packages .title,
  .packages li,
  .services .grid {
    max-width: 100%;
  }

  .about .title, 
  .about p, 
  .about .grid {
    max-width: 100%;
  }
}

/* Page Loader */
.js .loading::before {
  content: '';
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #7f40f1;
}

.js .loading::after {
  content: '';
  position: fixed;
  z-index: 10000;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin: -25px 0 0 -25px;
  pointer-events: none;
  background: #fff;
  animation: loaderAnim 0.8s ease-out infinite alternate forwards;
}

@keyframes loaderAnim {
  to {
    transform: translate3d(0,-100px,0);
  }
}

nav.sitenav li {  
  /*background: rgba(41, 41, 41, 0.33);*/
  padding: 6px 11px;
  border-radius: 5px;
  /*margin: 0 4px;*/
}

.hero h1.logo img { display: block; -webkit-filter: drop-shadow(0px 0px 24px #ffffff) drop-shadow(0px 0px 44px #ffffff) drop-shadow(0px 0px 15px rgba(255, 255, 255, 0.31)) drop-shadow(0px 0px 42px #ffffff); filter: drop-shadow(0px 0px 24px #ffffff) drop-shadow(0px 0px 44px #ffffff) drop-shadow(0px 0px 15px rgba(255, 255, 255, 0.31)) drop-shadow(0px 0px 42px #ffffff); }
.hero h1.logo span { display: none; }

.header-fixed h1.logo img { display: none; }
.header-fixed h1.logo span { text-shadow: none; display: block; font-size: 24px; letter-spacing: 2px; }


.mobile-menu {
  width:25px;
  height:30px;
  cursor: pointer;
  float:right;
}

.patty {
  width:25px;
  background:#fff; 
  height:3px;
  -webkit-border-radius:3px;
  -moz-border-radius:3px;
  border-radius:3px;
  float:right;
  margin-right:15px;
  margin-top:15px;
  -webkit-transition: all 0.125s ease-in-out;
  -moz-transition: all 0.125s ease-in-out;
  transition: all 0.125s ease-in-out;
}

.patty:before {
  content:"";
  width:25px;
  background:#fff; 
  height:3px;
  -webkit-border-radius:3px;
  -moz-border-radius:3px;
  border-radius:3px;
  float:right;
  margin-top:7px;
  display:block;
  -webkit-transition: all 0.125s ease-in-out;
  -moz-transition: all 0.125s ease-in-out;
  transition: all 0.125s ease-in-out;
}

.patty:after {
  content:"";
  width:25px;
  background:#fff; 
  height:3px;
  float:right;
  -webkit-border-radius:3px;
  -moz-border-radius:3px;
  border-radius:3px;
  margin-top:4px;
  display:block;
  -webkit-transition: all 0.125s ease-in-out;
  -moz-transition: all 0.125s ease-in-out;
  transition: all 0.125s ease-in-out;
}

.patty.active {
   transform:rotate(45deg);
  -ms-transform:rotate(45deg); /* IE 9 */
  -webkit-transform:rotate(45deg); /* Opera, Chrome, and Safari */
  margin-top:20px;
}

.patty.active:before {
  transform:rotate(-90deg);
  -ms-transform:rotate(-90deg); /* IE 9 */
  -webkit-transform:rotate(-90deg); /* Opera, Chrome, and Safari */
  margin-top:0px;
}

.patty.active:after {
    transform:rotate(-90deg);
  -ms-transform:rotate(-90deg); /* IE 9 */
  -webkit-transform:rotate(-90deg); /* Opera, Chrome, and Safari */
  margin-top:-4px;
}

.block-revealer__element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  pointer-events: none;
  opacity: 0;
}


.dual {
  width: 90vw;
  /*margin: 8em auto 25vh;*/
  margin: 0 auto;
  position: relative;
}

.dual__inner {
  position: absolute;
  width: 100%;
  height: 100%; 
}

.dual__half {
  position: absolute;
  height: 100%;
  width: 51%;
  right: 0;
  background: url(/content/images/glamping-night-sky.jpg) no-repeat 50% 0%;
  background-size: cover;
}

.dual__content {
  position: relative;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
  padding: 2.5em 4.5em;
  font-size: 1.75em;
  line-height: 1.4;
  background: #2e2d2c;
  color: #8a7c78;
}

.js .dual__content {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(60px,0,0);
  transition: opacity 0.55s 0.4s, transform 0.55s 0.4s;
}

.dual__content.dual__content--show {
  opacity: 1;
  pointer-events: visible;
  transform: translate3d(0,0,0);
}


/* Content */
.content {
  position: relative;
  min-height: 300px;
  overflow-x: hidden;
}

.content--full {
  height: 100vh;
  min-height: 600px;
}

.flexy {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}

.flexy--center {
    justify-content: center;
}

.flexy--row {
  flex-direction: row;
}

.content__heading {
  flex: none;
  width: 100%;
  padding: 0 5vw;
}

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

.content__title {
  font-size: 8vw;
  line-height: 1.2;
  padding: 0 5vw;
}

.content__title--half {
  width: 50vw;
  z-index: 2;
}

.content__title--enclosed {
  padding: 0;
  margin: 0;
}

.content__title--center {
  margin: auto;
}

.content__title--right {
  text-align: right;
  padding: 0 0 0 2em;
}

.content__title--left {
  margin-left: -18vw;
}

.content__title--medium  {
  font-size: 6vw;
}

.content__title--small  {
  font-size: 2vw;
}

.content__title__inner {
  flex: none;
  display: inline-block;
  white-space: nowrap;
  position: relative;
}

.content__title__inner--offset-1 {
  top: -0.25em;
  left: 13.6vw;
}

.content__title__inner--offset-2 {
  top: -0.25em;
  left: 1.75vw;
}

.content__title__inner--offset-3 {
  left: -10vw;
  top: -0.25em;
}

.content__image-wrap {
  flex: none;
  width: 25vw;
}

.content__image-wrap--half {
  width: 50vw;
}

.content__image {
  width: 100%;
  display: block;
}

.triggers {
  border: 2px solid;
  padding: 3em;
  margin: 0 5vw;
  width: 40vw;
}

.book-cta {
  background: #000;
  padding: 30px;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.book-cta .btn {
  padding: 10px 20px;
  margin-left: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.book-cta h6 {
  color: #ddd;
  font-weight: 300;
}


@media (min-width: 420px) and (max-width: 768px) {
  .hero #myNav { margin-top: 20px; }
  .hero .header-fixed #myNav, .hdr .header-fixed #myNav { height: inherit  !important; margin: 0; padding: 0; justify-self: end; }
  .hero .header-fixed #myNav nav li, .hdr .header-fixed #myNav nav li { /*padding-top: 0;*/ margin-top: 0; padding-right: 0;  padding-left: 0; }
  .hero .header-fixed .toggle-btn, .hdr .header-fixed .toggle-btn { display: none;}
  .hero .header-fixed #myNav nav li:last-child, .hdr .header-fixed #myNav nav li:last-child { margin-right: 0; }
  .hero .header-fixed .toggle-btn, .hdr .header-fixed .toggle-btn, .hdr .toggle-btn { display: none; }
  .hero .header-fixed .logo, .hdr .header-fixed .logo { justify-self: start; }
  .hero .header-fixed, .hdr .header-fixed {
      display: grid;
      grid-gap: 10px;
      grid-template-columns: 1fr 1fr;
      /*grid-template-columns: minmax(200px, 1fr) 200px;*/
      /*grid-template-columns: repeat(5, [col] 100px ) ;*/
      /*grid-template-rows: repeat(3, [row] auto  );*/
  }
  .hdr { min-height: 160px; }
  section.hdr { padding: 0; }
  .hdr header { padding: 20px 20px 0 20px; opacity: 1; width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .hdr header #myNav a { color: var(--main-link-color); }
  .hdr .header-fixed { padding: 10px; }
  .hdr .header-fixed #myNav a, .hdr .header-fixed a { color: #fff; }
  .hdr header #myNav { align-self: start; justify-self: center; margin-top: 20px; }
  .footer-container {
    flex-direction: inherit; 
    max-width: 90%;
    padding: 10px 0;
  }
  .footer-container .copyrights { flex-basis: inherit; margin-bottom: 0; }

  .dual { max-height: 80vh;}
  .dual__content { padding: 0.5em; min-height: 100px; max-height: 80vh; }
  .dual__content h5 { font-size: 0.75em; font-weight: 500; }
  /*.dual__content.dual__content--show { max-height: 80vh;}*/
  .map { max-height: 300px; }
  hr { margin-bottom: 30px; margin-top: 30px; }
}


@media (max-width: 600px) {
  section.booking, section.content { padding: 0; }
  section.content { min-height: 200px; }
  section.content .dual { width: 100vw; }
  section.booking .wrapper { padding-left: 0; padding-right: 0; }
  section.booking .book-cta { text-align: center; border-radius: 0px; flex-direction: column; }
  section.booking .book-cta .btn { margin-left: 0; margin-top: 20px; width: 80%; }
  .map { max-height: 300px; }
  .contact form { width: auto; max-width: 100%; }
}


.header-fixed {
  -webkit-transition: all .33s ease-in-out;
     -moz-transition: all .33s ease-in-out;
      -ms-transition: all .33s ease-in-out;
       -o-transition: all .33s ease-in-out;
          transition: all .33s ease-in-out;
  background: rgba(0, 0, 0, 0.83);
  position: fixed;
  width: 100%;
  padding: 3px 33px;
}
.header-fixed .logo, .header-fixed nav li, .header-fixed .hero h2.logo, .header-fixed .hdr h2.logo { background: none !important; }

@media (max-width: 600px) {
.header-fixed { padding: 0; height: 50px; }
.header-fixed .hero h2.logo, .header-fixed .hdr h2.logo { background: none !important; }
.header-fixed h1.logo span { margin-top: 10px; text-shadow: none; }

  .column { max-width: 100%; margin: 0; padding: 0; }
  hr { margin-bottom: 30px; margin-top: 20px; }


  .list-items, .package-list li, .testimonials .quote { font-size: 15px; }

  .col-3 {
    grid-gap: 0px;
    grid-template-columns: 1fr;
  }
  .testimonials article { min-width: 90%; }
  .col-4 {grid-template-columns: repeat(1, 1fr);}




  .dual__content {
    min-height: 200px;
    font-size: 0.85em;
    padding: 1em;
  }

.dual__content h5 { font-weight: 500; font-size: 1.1em; letter-spacing: -0.01em; }

  

  .content--full {
    min-height: 0;
  }
  .content__title {
    font-size: 2em;
  }
  .content__title--medium  {
    font-size: 1.75em;
  }
  .content__title--small {
    font-size: 1.15em;
  }
  .content__title--half {
    width: 100%;
  }
  .content__title--right {
    padding: 0 5vw;
  }
  .content__title--left {
    margin-left: 0;
  }
  .flexy--row {
      flex-direction: column;
  }
  .form__title,
  .form__section {
    font-size: 0.85em;
  }
  .triggers {
    width: 100%;
    border: 0;
    padding: 0;
    font-size: 0.85em;
  }
  .modal {
    font-size: 0.85em;
  }
  .menu .menu__link {
    font-size: 2em;
  }
  .box {
    padding: 5vw;
    font-size: 0.85em;
  }
  .box--border {
    border: none;
  }
  .dual__content {
    min-height: 200px;
    font-size: 0.85em;
    padding: 1em;
  }
  .dual {
    margin-top: 0;
  }


}

@media (max-width: 600px) {

  nav.sitenav li { background: none; }

  .overlay {
    height: 0%;
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
    overflow-y: hidden;
    transition: 0.5s;
  }

  .overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
    display: block;
  }

  .overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #818181;
    display: block;
    transition: 0.3s;
  }

  .overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
  }

  .overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
  }

  .overlay {overflow-y: auto;}
  .overlay a {font-size: 30px}
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }

  .hdr { min-height: 160px; }
.hdr a { color: inherit; }

  footer, footer p.align-left, footer p.copyrights { text-align: center; }


  .toggle-btn {
    display: block;
    z-index: 10;
    cursor: pointer;

    position: fixed;
    left: 50%;
    bottom: 0px;
    transform: translate(-50%, -50%);
    margin: 0 auto;

    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    padding: 22px;

    width: 80px;
    height: 80px;
  }
  .toggle-btn .bar {
    width: 30px;
    height: 2px;
    margin: 7px auto;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3);
  }
  .toggle-btn .bar:nth-child(2) {
    width: 20px;
  }

  #toggle:checked ~ nav {
    opacity: 1;
    visibility: visible;
  }
  #toggle:checked ~ nav ul {
    top: 70px;
  }
  #toggle:checked ~ nav ul li {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
  #toggle:checked ~ nav ul li:nth-child(1) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.1s;
  }
  #toggle:checked ~ nav ul li:nth-child(2) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.2s;
  }
  #toggle:checked ~ nav ul li:nth-child(3) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.3s;
  }
  #toggle:checked ~ nav ul li:nth-child(4) {
    transition: all 0.3s cubic-bezier(0.6, 0, 0.8, 1.5) 0.4s;
  }
  #toggle:checked + label.toggle-btn {
    background-color: #000;
  }
  #toggle + label.toggle-btn {
    background-color: rgba(0,0,0,0.33);
  }
  #toggle:checked + label.toggle-btn .bar {
    background-color: #fff;
  }
  #toggle:checked + label.toggle-btn .bar:nth-child(2) {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
    opacity: 0;
  }
  #toggle:checked + label.toggle-btn .bar:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(45deg);
            transform: translateY(10px) rotate(45deg);
  }
  #toggle:checked + label.toggle-btn .bar:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
}