/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}



/* -------------------------------- 

Hero Slider - by CodyHouse.co

-------------------------------- */


/* Slider */
.cd-hero {
  position: relative;
}

.cd-hero__slider {
  position: relative;
  height: calc(var(--vh, 1vh) * 100 - 150px);
  width: 100%;
  overflow: hidden;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
}

.cd-hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0px);
          transform: translateZ(0px);
  will-change: transform;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cd-hero__slide.cd-hero__slide--selected {
  /* this is the visible slide */
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.cd-hero__slide.cd-hero__slide--move-left {
  /* slide hidden on the left */
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}

.cd-hero__slide.cd-hero__slide--is-moving,
.cd-hero__slide.cd-hero__slide--selected {
  /* the cd-hero__slide--is-moving class is assigned to the slide which is moving outside the viewport */
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}









/* Slide style */
.cd-hero__slide {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cd-hero__slide:first-of-type {
  background-color: #303f57;
  background-image: url(../img/bg.jpg);
  background-position: bottom center;
  background-size: cover;    
}

.cd-hero__slide:nth-of-type(2) {
  background-color: #303f57;
  background-image: url(../img/bg2.jpg);
  background-position: center center;
  background-size: cover;
}

.cd-hero__slide:nth-of-type(3) {
  background-color: #303f57;
  background-image: url(../img/bg3.jpg);
  background-position: center center;
  background-size: cover;
}

.cd-hero__slide:nth-of-type(4) {
  background-color: #303f57;
  background-image: url(../img/bg4.jpg);
  background-position: center center;
  background-size: cover;
}

.cd-hero__slide:nth-of-type(5) {
  background-color: #303f57;
  background-image: url(../img/bg5.jpg);
  background-position: center center;
  background-size: cover;
}

.cd-hero__content.cd-hero__content--full-width {
  position: relative;
  width: calc(100% - 10px);
  height: calc(var(--vh, 1vh) * 100 - 150px);
  z-index: 1;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
  margin: 0 0 0 5px;
  background-color: transparent;
  text-align: center;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
    overflow-y: scroll;
    overflow-x: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
    scroll-behavior: smooth;
}

.cd-hero__content h2, .cd-hero__content p, .cd-hero__btn, .cd-hero__content--img img {
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
}

.cd-hero__content.cd-hero__content--img {
  /* hide image on mobile device */
  display: none;
}

.cd-hero__content--img img {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

.cd-hero__content.cd-hero__content--bg-video {
  /* hide video on mobile device */
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.cd-hero__content--bg-video video {
  /* you won't see this element in the html, but it will be injected using javascript */
  display: block;
  min-height: 100%;
  min-width: 100%;
  max-width: none;
  height: auto;
  width: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}







/* Slider navigation */
.cd-hero__nav {
  position: fixed;
  width: calc(100% - 40px);
  bottom: 0;
  z-index: 2;
  text-align: center;
  background-color: transparent;
}

.cd-hero__nav nav, .cd-hero__nav ul, .cd-hero__nav li, .cd-hero__nav a {
  height: 65px;
    border: 0;
    outline: 0;
}

.cd-hero__nav nav {
  display: inline-block;
  position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 10px auto;
}

.cd-hero__marker {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20%;
  margin: 0 0%;
  height: 100%;
  color: #c8ab99;
  background-color: #c8ab99;
  -webkit-box-shadow: inset 0 5px 0 currentColor;
          box-shadow: inset 0 5px 0 currentColor;
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
    border-radius: 20px;
}

.cd-hero__marker.cd-hero__marker--item-2 {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}

.cd-hero__marker.cd-hero__marker--item-3 {
  -webkit-transform: translateX(200%);
      -ms-transform: translateX(200%);
          transform: translateX(200%);
}

.cd-hero__marker.cd-hero__marker--item-4 {
  -webkit-transform: translateX(300%);
      -ms-transform: translateX(300%);
          transform: translateX(300%);
}

.cd-hero__marker.cd-hero__marker--item-5 {
  -webkit-transform: translateX(400%);
      -ms-transform: translateX(400%);
          transform: translateX(400%);
}

.cd-hero__nav ul::after {
  clear: both;
  content: "";
  display: table;
}

.cd-hero__nav li {
  display: inline-block;
  width: 20%;
  float: left;
  margin: 0 0%;
}

.cd-hero__nav .cd-selected a {
  color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.cd-hero__nav .cd-selected a:hover {
  background-color: transparent;
}

.cd-hero__nav a {
  display: block;
  position: relative;
  padding-top: 45px;
  font-size: 10px;
    letter-spacing: 2px;
  font-weight: 600;
  color: #303f57;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
    text-decoration: none;
    border-radius:12px;
}

.cd-hero__nav a::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  top: 12px;
  left: 50%;
  right: auto;
    opacity: 0.8;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.cd-hero__nav a:hover {
  background-color: transparent;
}

.cd-hero__nav li:first-of-type a::before {
  background: url(../img/heart-light.svg) no-repeat 0 0;
  filter: invert(0%);
    opacity: 0.6;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.cd-hero__nav li.cd-selected:first-of-type a::before {
  filter: invert(100%);
    opacity: 0.9;
}

.cd-hero__nav li:nth-of-type(2) a::before {
  background: url(../img/paper-plane-light.svg) no-repeat 0 0;
  filter: invert(0%);
    opacity: 0.6;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.cd-hero__nav li.cd-selected:nth-of-type(2) a::before {
  filter: invert(100%);
    opacity: 0.9;
}

.cd-hero__nav li:nth-of-type(3) a::before {
  background: url(../img/info-circle-light.svg) no-repeat 0 0;
  filter: invert(0%);
    opacity: 0.6;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.cd-hero__nav li.cd-selected:nth-of-type(3) a::before {
  filter: invert(100%);
    opacity: 0.9;
}

.cd-hero__nav li:nth-of-type(4) a::before {
  background: url(../img/camera-retro-light.svg) no-repeat 0 0;
  filter: invert(0%);
    opacity: 0.6;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.cd-hero__nav li.cd-selected:nth-of-type(4) a::before {
  filter: invert(100%);
    opacity: 0.9;
}

.cd-hero__nav li:nth-of-type(5) a::before {
  background: url(../img/photo-video-light.svg) no-repeat 0 0;
  filter: invert(0%);
    opacity: 0.6;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.cd-hero__nav li.cd-selected:nth-of-type(5) a::before {
  filter: invert(100%);
    opacity: 0.9;
}





/* Main Content */
.cd-main-content {
  width: 90%;
  max-width: 768px;
  margin: 0 auto;
  padding: 2em 0;
}

.cd-main-content p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #999999;
  margin: 2em 0;
}





/* Javascript disabled */
.no-js .cd-hero__slide {
  display: none;
}

.no-js .cd-hero__slide.cd-hero__slide--selected {
  display: block;
}

.no-js .cd-hero__nav {
  display: none;
}








.innercontent {
    width: 98%;
    max-width: 800px;
    padding: 0 0 0 5px;
    margin: auto;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;  
}



.innerframe {
    height: calc(var(--vh, 1vh) * 100 - 150px);
    width: 100%;
    position: relative;
}





.logo {
    width: 80%;
    max-width: 400px;
    margin: 6vh auto 0 auto;
}



.innercontent p {
    width: 90%;
    font-size:14px;
    letter-spacing: 0.5px;
    line-height: 22px;
    color: #f1f1f1;
    font-weight: 300;
    margin: 0 auto 20px auto;
}


.innercontent h1 {
    width: 80%;
    font-size:30px;
    letter-spacing: 4px;
    line-height: 40px;
    color: #fff;
    font-weight: 600;
    margin: 20px auto 20px auto;
}


.linkbutton {
    padding: 20px 30px;
    background-color: #303f57;
    color: #c8ab99;
    display: block;
    width: 260px;
    text-decoration: none;
    font-weight: 600;
    font-size:14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    margin: auto;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.linkbutton:hover {
    background-color: #c8ab99;
    color: #ffffff;
}





.imagegallery {
    margin: 0px auto;
}

.sqimg {
    width: 31.5%;
    height: auto;
    display: inline-block;
    margin: 6px 0.5%;

}

.sqimg img {
    width: 100%;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}




.story {
    padding: 8vh 0 0 0;
}


.storylink {
    position: absolute;
    bottom: 0;
    left: 50%;
    margin: 0 0 100px -130px;
}


.shareguide {
    width: 98%;
    max-width: 400px;
    display: block;
    margin: 20px auto 50px auto;
    opacity: 0.8;
}


.gphotos {
    height: 45px;
    width: auto;
    margin: 30px 0 0 0;
}








.form {
    text-align: left;
}


.form input {
    width: 100%;
}

.wFormContainer .wForm {
    background-color: transparent;
    color: #fff;
    border: none;
}

.wFormContainer .htmlSection {
    margin-top: 0.0em;
    padding: 0;
    border: 0;
}

.wFormContainer .wForm form {
    padding: 0;
}

.inputWrapper {
    width: 100%;
}

.wFormContainer .wForm form input,.wFormContainer .wForm form select {
    width:100%!important;
    margin: auto;
}


.wFormContainer .wForm .inputWrapper input[type="text"] {
    background-color: rgba(0,0,0,0.7);
    border: none;
    color: #fff!important;
    font-size:14px;
    letter-spacing: 0.5px;
}


.wFormContainer .wForm .inputWrapper select:not([multiple]) {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 2em;
    background-repeat: no-repeat;
    background-color: rgba(0,0,0,0.7);
    border: none;
    color: #fff;
    font-size:14px;
    letter-spacing: 0.5px;
}

.wFormContainer .wForm .inputWrapper select option {
    background-color: #000;
    border-radius: 10px;
    border: none;
    outline: 0;
}

.wFormContainer fieldset {
    border-color: #000;
    border-width: 0px;
    border-radius: 10px;
    margin-top: 1.5em;
    margin-left: 0;
    margin-right: 0;
    padding: 0 1em 1em 1em;
    margin-bottom: 1em;
    background-color: rgba(0,0,0,0.3);
}

.wForm h3:not(.wFormTitle) {
    font-weight: 700;
    font-size: 20px;
}

.wFormContainer fieldset h3 {
    font-weight: 700;
    color: #c8ab99;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 15px 0 0 0;
}

.wForm .inline div.oneField {
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

.wFormContainer .actions .primaryAction {
    background-color: #303f57;
    color: #fff;
    margin-top: 0;
    padding: 10px 1em;
    height: 2.6em;
    border-radius: 0;
    border: 0;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.15s ease;
    letter-spacing: 2px;
    font-size: 20px;
    outline: 0;
}

.wFormContainer .wFormHeader {
    height: 0px;
    padding: 0 0 0 0;
}


.wFormContainer .label.preField {
    width: 90%;
    font-size:14px;
    letter-spacing: 0.5px;
    line-height: 22px;
    color: #f1f1f1;
    font-weight: 300;
    margin: 0 auto 5px auto;
}



.actions .form input {
    margin: auto;
}

.submitbtn {
    border: none;
    height: 60px;
    cursor: pointer;
    width: 260px;
    max-width: 260px;
    margin: auto;
}



.wFormContainer hr {
    border-top: 3px solid #c8ab99;
    margin: 10px 0 30px 0;
    border-radius: 2px;
}









.main-carousel {
    margin: 0 0 80px 0;
}

.flickity-viewport {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.carousel-cell {
  width: 100%; /* full width */
  height: 35vh;
  background-color: rgba(0,0,0,0.5);
  /* center images in cells with flexbox */
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel.is-fullscreen .carousel-cell {
  height: 100%;
}

.carousel-cell img {
  display: block;
    max-height: 32vh;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}










video{
   object-fit: inherit;
}

video.video {
  width: 100%;
  height: auto;
  margin: 0px auto 0px auto;
    text-decoration: none;
    border: 0;
    outline: 0;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-color: #000;
}

.wrapper{
    display:table;
    width:auto;
    position:relative;
    width:100%;
    margin: 0 0 20px 0;
    padding: 0;
}
.playpause {
    background-image:url(../img/play.png);
    background-repeat:no-repeat;
    width:30%;
    height:30%;
    position:absolute;
    left:0%;
    right:0%;
    top:0%;
    bottom:0%;
    margin:auto;
    background-size:contain;
    background-position: center;
    cursor: pointer;
}









.button-wrap {
    margin: 0px 0 0 0;
}

.info a.button {
  display:block;
  width:100%;
  height: calc(var(--vh, 1vh) * 13 - 25px);
    margin: 1vh auto;
  background-image: url(../img/bg5.jpg);
  background-position: center center;
  background-size: cover;
  color:#fff;
  line-height: calc(var(--vh, 1vh) * 13 - 25px);
  text-align:center;
  text-decoration: none;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;    
    color: #c8ab99;
    text-decoration: none;
    font-weight: 600;
    font-size:18px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.info a.button:hover{
  -webkit-filter: grayscale(0.8) brightness(1.5);
  filter: grayscale(0.8) brightness(1.5);
  color: #fff;
}

.info a.active {
    width:100%;
    height: calc(var(--vh, 1vh) * 98 - 150px);
    position: relative;
    margin: 0px auto;
    cursor: normal!important;
    font-size:26px;
}

.info .content {
    top: 0;
    left: 0;
    position: absolute;
    width: 98%;
    margin: 10vh 1% 0 1%;
  -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    
}

.info div[class*="content-"] { 
  opacity: 0;
    display: none;
  -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;  
}

.info .content p {
    font-size:14px;
    letter-spacing: 0.5px;
    line-height: 22px;
    color: #f1f1f1;
    font-weight: 300;
    margin: 0 auto 20px auto;
}

.info .content p b {
    font-size:18px;
    letter-spacing: 0.5px;
    line-height: 22px;
    color: #c8ab99;
    font-weight: 500;
}

.info .content h3 {
    font-size: 22px;
    line-height: 26px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 0 auto 20px auto;
}




.info div[class*="content-"].active { 
  opacity: 1;
    display: block;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    width: 98%;
    max-width: 800px;
    background-color: rgba(0,0,0,0.3);
    padding: 30px;
    height: auto;
    margin: auto;
    overflow-y: scroll;
    height: calc(var(--vh, 1vh) * 75 - 150px);
}

.info a.hidebutton {
    height: 0;
    width: 0%;
    opacity: 0;
    font-size:0;
    margin: 0;
}


.closecontent {
    width: auto;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    text-align: center;
    background-color:#c8ab99;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    position: relative;
    margin: 20px auto 0px auto;
    cursor: pointer;
    color: #fff;
    padding: 0 30px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;

}
.closecontent img {
  filter: invert(100%);
    width: 16px;
    margin: -5px 10px 0 0;
}

.makefull {
    width: 100%;
    max-width: 100%;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;  
}

.makefull h1 {
    display: none;
}


.makefull a.button:hover{
  -webkit-filter: none;
  filter: none;
  color: #c8ab99;
}




.goback {
    padding: 20px 30px;
    background-color: #c8ab99;
    color: #fff;
    border: 0;
    display: block;
    width: 260px;
    text-decoration: none;
    font-weight: 600;
    font-size:14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    margin: 18px auto 0 auto;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    text-align: center;
}


.goback:hover {
    background-color: #303f57;
    color: #ffffff;
}



.wFormContainer {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif!important;
}


.content-2 ul li {
    list-style: none;
    font-size:14px;
    line-height: 20px;
}
