.gradient {
  background: linear-gradient(white, #e5e5e5); }

.gradient-trans {
  background: linear-gradient(rgba(241, 241, 241, 0.2), #e4e4e4); }

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

nav {
  position: fixed;
  width: 100%;
  text-align: center;
  top: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  /*
 * Just a quick hamburger
 */
  /* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
  /*
 * But let's hide the middle one.
 */
  /*
 * Ohyeah and the last one should go the other direction
 */
  /*
 * Make this absolute positioned
 * at the top left of the screen
 */
  /*
 * And let's slide it in from the left
 */ }
  nav a {
    text-decoration: none;
    color: #232323;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
  nav a:hover {
    color: tomato; }
  nav #menuToggle {
    display: block;
    position: absolute;
    top: 80px;
    left: 80px;
    text-align: left;
    z-index: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    nav #menuToggle p {
      margin-bottom: 5px;
      margin-left: -3px;
      color: #003b62;
      font-family: 'Archivo', sans-serif;
      letter-spacing: 2px; }
  nav #menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -5px;
    left: -3px;
    cursor: pointer;
    opacity: 0;
    /* hide this */
    z-index: 2;
    /* and place it over the hamburger */
    -webkit-touch-callout: none; }
  nav #menuToggle span {
    display: block;
    width: 40px;
    height: 5px;
    margin-bottom: 6px;
    position: relative;
    background: #003b62;
    border-radius: 5px;
    z-index: 1;
    -webkit-transform-origin: 5px 0px;
    transform-origin: 5px 0px;
    -webkit-transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1); }
  nav #menuToggle span:first-child {
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%; }
  nav #menuToggle span:nth-last-child(2) {
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%; }
  nav #menuToggle input:checked ~ span {
    opacity: 1;
    -webkit-transform: rotate(45deg) translate(-2px, -1px);
    transform: rotate(45deg) translate(-2px, -1px);
    background: #232323; }
  nav #menuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    -webkit-transform: rotate(0deg) scale(0.2, 0.2);
    transform: rotate(0deg) scale(0.2, 0.2); }
  nav #menuToggle input:checked ~ span:nth-last-child(2) {
    -webkit-transform: rotate(-45deg) translate(0, -1px);
    transform: rotate(-45deg) translate(0, -1px); }
  nav #menu {
    position: absolute;
    width: 100vw;
    height: 100vh;
    margin: -80px 0 0 -70px;
    padding: 70px;
    padding-top: 175px;
    top: 0;
    left: 0;
    background: #ededed;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1); }
  nav #menu li {
    padding: 10px 0;
    font-size: 30px;
    font-family: 'Archivo', sans-serif; }
  nav #menuToggle input:checked ~ ul {
    -webkit-transform: none;
    transform: none; }
  nav .logo {
    width: 102%;
    height: 0;
    margin: 0 -10px;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: #83b2bb;
    border-radius: 50% / 100%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    /*
        &::before{
            content:'';
            position: absolute;
            left:0;
            margin:0 -10px;
            top:0;
            width:102%;
            height: 0;
            border:none;
            background-color:white;
            border-radius: 50% / 100%;
            border-top-left-radius: 0;
            border-top-right-radius: 0;
            transition:all 0.5s ease-in-out;  
            }

       
        
        &.active{
            width:100%;
            &::before{
                height: 80px;
            }
        }
        */ }
    nav .logo::before {
      content: '';
      position: absolute;
      top: -10px;
      left: 0;
      width: 98%;
      margin-left: -10px;
      background: #ffffff;
      height: 105%;
      border-radius: 50% / 100%;
      border-top-left-radius: 0;
      border-top-right-radius: 0;
      z-index: 2; }
    nav .logo.active {
      height: 80px; }
      nav .logo.active .logoImg {
        opacity: 1;
        visibility: visible; }
      nav .logo.active .logoImg1 {
        opacity: 0;
        left: -10%; }
      nav .logo.active #menuToggle {
        opacity: 0;
        left: -20%; }
    nav .logo .logoImg {
      position: relative;
      width: 150px;
      z-index: 10;
      opacity: 0;
      margin-top: 10px;
      visibility: hidden;
      -webkit-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out; }
    nav .logo .logoImg1 {
      width: 150px;
      position: absolute;
      z-index: 10;
      left: 0;
      top: 0;
      opacity: 1;
      margin: 15px 30px;
      -webkit-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
      cursor: pointer; }

footer {
  position: fixed;
  width: 100%;
  text-align: center;
  bottom: 0;
  left: 0;
  z-index: 999; }
  footer .menu {
    width: 102%;
    height: 0;
    margin: 0 -10px;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: #83b2bb;
    border-radius: 50% / 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    -webkit-box-shadow: inset 3px 4px 10px #474747;
    box-shadow: inset 3px 4px 10px #474747;
    /*
        &::before{
            content:'';
            bottom:0;
            left:calc(50% - 140px);
            position: absolute;
            width:0;
            height:0;
            border-left:140px solid transparent;
            border-right: 140px solid transparent;
            border-bottom:140px solid white;
            transition:all 0.3s ease-in-out;  
        }
*/ }
    footer .menu::after {
      content: '';
      position: absolute;
      bottom: -10px;
      right: 0;
      width: 98%;
      margin-right: -10px;
      background: #ffffff;
      height: 105%;
      border-radius: 50% / 100%;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
      z-index: 2; }
    footer .menu h1 {
      width: 150px;
      position: absolute;
      left: calc(50% - 75px);
      bottom: 0; }
    footer .menu.active {
      height: 80px; }

.scroll-downs {
  position: absolute;
  bottom: 20%;
  left: calc(50% - 17px);
  margin: auto;
  width: 34px;
  height: 55px; }
  .scroll-downs p {
    color: white;
    font-size: 15px;
    width: 150px;
    margin-left: -40px;
    position: absolute;
    padding: 5px 0;
    font-family: sans-serif;
    letter-spacing: 1px; }

.mousey {
  width: 3px;
  padding: 10px 15px;
  height: 35px;
  border: 3px solid #fff;
  border-radius: 25px;
  opacity: 0.75;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

.scroller {
  width: 5px;
  height: 10px;
  border-radius: 25%;
  background-color: #fff;
  -webkit-animation-name: scroll;
  animation-name: scroll;
  -webkit-animation-duration: 2.2s;
  animation-duration: 2.2s;
  -webkit-animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
  animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

@-webkit-keyframes scroll {
  0% {
    opacity: 0; }
  10% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    opacity: 0; } }

@keyframes scroll {
  0% {
    opacity: 0; }
  10% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  100% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px);
    opacity: 0; } }

@-webkit-keyframes wave {
  0% {
    margin-left: 0; }
  50% {
    margin-left: -20px; }
  100% {
    margin-left: 0; } }

@keyframes wave {
  0% {
    margin-left: 0; }
  50% {
    margin-left: -20px; }
  100% {
    margin-left: 0; } }

@-webkit-keyframes arrow-bottom {
  0% {
    opacity: 0;
    padding-top: -2%; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0;
    width: 80px;
    padding-top: 1%; } }

@keyframes arrow-bottom {
  0% {
    opacity: 0;
    padding-top: -2%; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0;
    width: 80px;
    padding-top: 1%; } }

@-webkit-keyframes pulp {
  20% {
    -webkit-box-shadow: 0px 0px 0px 15px rgba(1, 93, 155, 0.7);
    box-shadow: 0px 0px 0px 15px rgba(1, 93, 155, 0.7); }
  50% {
    -webkit-box-shadow: 0px 0px 0px 15px rgba(1, 93, 155, 0.7), 0px 0px 0px 25px rgba(1, 123, 205, 0.5);
    box-shadow: 0px 0px 0px 15px rgba(1, 93, 155, 0.7), 0px 0px 0px 25px rgba(1, 123, 205, 0.5); }
  100% {
    -webkit-box-shadow: 0px 0px 0px 15px rgba(1, 93, 155, 0.7), 0px 0px 0px 25px rgba(1, 123, 205, 0.5), 0px 0px 0px 35px rgba(1, 123, 205, 0.3);
    box-shadow: 0px 0px 0px 15px rgba(1, 93, 155, 0.7), 0px 0px 0px 25px rgba(1, 123, 205, 0.5), 0px 0px 0px 35px rgba(1, 123, 205, 0.3); } }

@keyframes pulp {
  20% {
    -webkit-box-shadow: 0px 0px 0px 15px rgba(1, 93, 155, 0.7);
    box-shadow: 0px 0px 0px 15px rgba(1, 93, 155, 0.7); }
  50% {
    -webkit-box-shadow: 0px 0px 0px 15px rgba(1, 93, 155, 0.7), 0px 0px 0px 25px rgba(1, 123, 205, 0.5);
    box-shadow: 0px 0px 0px 15px rgba(1, 93, 155, 0.7), 0px 0px 0px 25px rgba(1, 123, 205, 0.5); }
  100% {
    -webkit-box-shadow: 0px 0px 0px 15px rgba(1, 93, 155, 0.7), 0px 0px 0px 25px rgba(1, 123, 205, 0.5), 0px 0px 0px 35px rgba(1, 123, 205, 0.3);
    box-shadow: 0px 0px 0px 15px rgba(1, 93, 155, 0.7), 0px 0px 0px 25px rgba(1, 123, 205, 0.5), 0px 0px 0px 35px rgba(1, 123, 205, 0.3); } }

@-webkit-keyframes close1 {
  0% {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg); }
  100% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg); } }

@-webkit-keyframes close2 {
  0% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg); }
  100% {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg); } }

@-webkit-keyframes anim-1 {
  0%, 8.3% {
    bottom: 25%;
    opacity: 0; }
  8.3%, 25% {
    bottom: 50%;
    opacity: 1; }
  33.33%, 100% {
    bottom: 80%;
    opacity: 0; } }

@-webkit-keyframes anim-2 {
  0%, 33.33% {
    bottom: 25%;
    opacity: 0; }
  41.63%, 58.29% {
    bottom: 50%;
    opacity: 1; }
  66.66%, 100% {
    bottom: 80%;
    opacity: 0; } }

@-webkit-keyframes anim-3 {
  0%, 66.66% {
    bottom: 25%;
    opacity: 0; }
  74.96%, 91.62% {
    bottom: 50%;
    opacity: 1; }
  100% {
    bottom: 80%;
    opacity: 0; } }

.fblogo {
  position: absolute;
  bottom: 50px;
  right: 50px;
  z-index: 999;
  width: 100px;
  text-decoration: none;
  text-align: center; }
  .fblogo img {
    width: 50px; }
  .fblogo .tip {
    width: 100%;
    margin-top: 5px;
    background-color: #fff;
    border-radius: 5px; }
    .fblogo .tip p {
      font-size: 12px;
      padding: 3px 0;
      color: #141414; }

.animate-home {
  width: 100%;
  height: 100%;
  position: relative; }
  .animate-home.active .wave1 {
    margin-left: -35px;
    padding: 0;
    height: 105%; }
  .animate-home.active .wave2 {
    margin-left: -35px;
    padding: 0;
    margin-top: -20px;
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
    height: 105%; }
  .animate-home.active .footprint {
    opacity: 0; }
  .animate-home.active .quote {
    opacity: 0; }
  .animate-home .banner {
    position: absolute;
    left: 0;
    top: 0;
    height: 101%;
    width: 100%; }
  .animate-home .sand {
    position: absolute;
    left: 0;
    top: 0;
    height: 101%;
    width: 100%; }
  .animate-home .footprint {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 1;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }
  .animate-home .wetsand {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
  .animate-home .wave1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    -webkit-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    height: 100%; }
  .animate-home .wave2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    height: 100%; }
  .animate-home .quote {
    width: 100%;
    height: 100vh;
    z-index: 1;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    position: relative; }
    .animate-home .quote h1 {
      display: block;
      position: absolute;
      font-size: 6.667em;
      line-height: 100px;
      font-weight: 300;
      color: #ececec;
      z-index: 2;
      opacity: 0;
      width: 50%;
      height: 100%;
      top: 25%;
      left: 10%;
      -webkit-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
      font-family: 'Parisienne', cursive;
      text-shadow: 3px 3px 5px #111;
      -webkit-transform: translate3d(0, 0, 0); }
      .animate-home .quote h1 span {
        -webkit-transform: translate3d(0, 0, 0); }
    .animate-home .quote .active {
      opacity: 1; }

.rates {
  background-color: #dfdfdf;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  overflow: hidden; }
  .rates.modal {
    background-color: rgba(36, 36, 36, 0.5); }
  .rates .container-box {
    display: block;
    width: 100%;
    text-align: center;
    height: 100%;
    opacity: 1;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    /* width */
    /* Track */
    /* Handle */
    /* Handle on hover */ }
    .rates .container-box.active {
      width: 90%;
      margin: 0 auto;
      overflow: auto;
      background-color: #dfdfdf; }
    .rates .container-box::-webkit-scrollbar {
      width: 12px;
      background-color: #F5F5F5; }
    .rates .container-box::-webkit-scrollbar-track {
      -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
      box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
      border-radius: 10px;
      background-color: #F5F5F5; }
    .rates .container-box::-webkit-scrollbar-thumb {
      border-radius: 10px;
      -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
      box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
      background-color: #696666; }
    .rates .container-box::-webkit-scrollbar-thumb:hover {
      background: #555; }
    .rates .container-box h1 {
      width: 100%;
      text-align: center;
      font-size: 3.750em;
      color: #3a3a3a;
      padding-top: 3%;
      font-weight: bold;
      letter-spacing: 3px;
      -webkit-transition: all .5s ease-in-out;
      transition: all .5s ease-in-out;
      display: block; }
    .rates .container-box .subheader {
      width: 50%;
      text-align: center;
      font-size: 15px;
      color: #3a3a3a;
      margin: 0 auto;
      -webkit-transition: all .5s ease-in-out;
      transition: all .5s ease-in-out;
      display: block; }
    .rates .container-box .box-content {
      display: flex;
      width: 100%;
      height: 600px;
      overflow: hidden;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center; }
      .rates .container-box .box-content.active {
        height: auto; }
    .rates .container-box .box {
      -webkit-box-sizing: content-box;
      box-sizing: content-box;
      width: 400px;
      height: 500px;
      padding: 10px;
      background: #dbdbdb;
      border: 5px solid #c2b280;
      border-radius: 3%;
      margin: 35px 15px;
      vertical-align: top;
      -webkit-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      position: relative;
      display: flex;
      flex-flow: column; }
      .rates .container-box .box:hover {
        background-color: white; }
        .rates .container-box .box:hover .info {
          height: 100%;
          opacity: 1; }
      .rates .container-box .box .imagebox {
        width: 100%;
        height: 230px;
        position: relative; }
        .rates .container-box .box .imagebox img {
          object-fit: cover;
          width: 100%;
          height: 100%; }
      .rates .container-box .box .imagetitle {
        bottom: 0;
        left: 0;
        width: 100%;
        position: absolute;
        background-color: rgba(37, 37, 37, 0.8);
        text-align: center;
        padding: 5px 0; }
        .rates .container-box .box .imagetitle h5 {
          color: #fcfcfc; }
      .rates .container-box .box .imagecontent {
        width: 100%;
        height: 100%;
        position: relative; }
      .rates .container-box .box h5 {
        font-size: 2.500em;
        font-family: 'Cinzel', serif;
        font-weight: bold;
        color: #1a1a1a;
        letter-spacing: 1.5px; }
      .rates .container-box .box p {
        text-align: left; }
      .rates .container-box .box .price {
        font-size: 1.3em;
        padding: 2.5px 0; }
      .rates .container-box .box .list {
        text-align: left;
        padding: 2px 0 5px 30px; }
        .rates .container-box .box .list li {
          list-style: circle; }
      .rates .container-box .box .text-indent {
        text-indent: 10px; }
      .rates .container-box .box .bold {
        font-weight: bold; }
      .rates .container-box .box .text {
        font-size: 1.083em;
        letter-spacing: 0.5px;
        line-height: 15px; }
      .rates .container-box .box .info {
        position: absolute;
        width: 100%;
        bottom: 0;
        left: 0;
        height: 0;
        background-color: #4b4b4b;
        transition: all ease-in-out .5s;
        opacity: 0; }
        .rates .container-box .box .info p {
          margin: 20px;
          color: white; }
    .rates .container-box .close {
      position: absolute;
      top: 30px;
      right: 100px;
      width: 50px;
      height: 50px;
      z-index: 5;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: all .5s ease-out;
      transition: all .5s ease-out;
      cursor: pointer; }
      .rates .container-box .close.active {
        opacity: 1;
        visibility: visible; }
      .rates .container-box .close::before, .rates .container-box .close::after {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -2.5px;
        margin-left: -25px;
        display: block;
        height: 5px;
        width: 50px;
        background-color: #474747;
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out; }
      .rates .container-box .close:after {
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
        -webkit-animation: close1 1.5s infinite;
        animation: close1 1.5s infinite; }
      .rates .container-box .close::before {
        -webkit-animation: close2 ease 1.5s infinite;
        animation: close2 ease 1.5s infinite; }
      .rates .container-box .close:hover::after, .rates .container-box .close:hover::before {
        -webkit-animation: none;
        animation: none; }
    .rates .container-box .seemore {
      cursor: pointer;
      height: 80px;
      width: 150px;
      margin: 0 auto;
      position: absolute;
      bottom: 0;
      left: calc(50% - 100px);
      background-color: rgba(20, 20, 20, 0.6);
      padding: 25px;
      border-radius: 25% 25% 0 0;
      transition: all 0.5s ease-in-out; }
      .rates .container-box .seemore p {
        letter-spacing: 2px;
        color: white; }
      .rates .container-box .seemore img {
        width: 60px;
        -webkit-animation: arrow-bottom 2s infinite;
        animation: arrow-bottom 2s infinite; }
      .rates .container-box .seemore:hover {
        background-color: #141414; }
      .rates .container-box .seemore.active {
        opacity: 0;
        bottom: -100px; }

.about {
  background-image: url("/i/about.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative; }
  .about .about-content {
    width: 50%;
    background-color: #252525;
    height: 100%;
    position: relative; }
    .about .about-content .content {
      padding: 5%;
      color: white; }
      .about .about-content .content h1 {
        font-size: 3.750em;
        text-align: center;
        margin: 5% 0; }
      .about .about-content .content h5 {
        font-family: 'Archivo', sans-serif;
        letter-spacing: 3px;
        padding: 20px 0;
        font-size: 1.250em; }
      .about .about-content .content p {
        letter-spacing: 1.5px;
        line-height: 25px;
        font-size: 1.083em; }
  .about .location {
    width: 50%; }
    .about .location .location-button {
      position: absolute;
      bottom: 25%;
      right: calc(25% - 70px);
      z-index: 10;
      color: white;
      background-color: #003b62;
      border-radius: 100%;
      cursor: pointer;
      -webkit-animation: pulp 2s infinite;
      animation: pulp 2s infinite;
      -webkit-transition: all .5s ease-in-out;
      transition: all .5s ease-in-out; }
      .about .location .location-button h3 {
        margin: 0 auto;
        width: 150px;
        height: 150px;
        text-align: center;
        line-height: 150px;
        font-size: 1.667em;
        letter-spacing: 2px;
        -webkit-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out; }
      .about .location .location-button:hover {
        background-color: rgba(0, 59, 98, 0.8); }
        .about .location .location-button:hover h3 {
          font-size: 1.250em; }
      .about .location .location-button.active {
        bottom: auto;
        top: 10%; }
    .about .location .location-tab {
      width: 50%;
      position: absolute;
      bottom: -100%;
      right: 0;
      -webkit-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
      opacity: 0;
      visibility: hidden;
      display: none; }
      .about .location .location-tab.active {
        bottom: 0;
        opacity: 1;
        visibility: visible;
        display: block; }
      .about .location .location-tab .mapouter {
        position: relative;
        text-align: right;
        height: 500px;
        width: 100%; }
      .about .location .location-tab .gmap_canvas {
        overflow: hidden;
        background: none !important;
        height: 500px;
        width: 100%; }
      .about .location .location-tab #gmap_canvas {
        width: 100%;
        height: 100%; }

.gallery {
  text-align: center; }
  .gallery .swiper-container h1 {
    width: 100%;
    text-align: center;
    font-size: 3.750em;
    color: #3a3a3a;
    margin: auto;
    font-weight: bold;
    letter-spacing: 3px;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    vertical-align: middle;
    padding: 3% 0 1% 0; }
  .gallery .swiper-container.overflow {
    height: 100vh;
    width: 100%; }
    .gallery .swiper-container.overflow .swiper-wrapper {
      width: 100%;
      height: auto; }
    .gallery .swiper-container.overflow .swiper-pagination-bullets {
      bottom: 3%; }
    .gallery .swiper-container.overflow .swiper-pagination-bullet {
      width: 15px;
      height: 15px;
      background-color: #444444; }
  .gallery .swiper-container .main-slide {
    outline: 5px solid #2291e6;
    background-color: #252525;
    opacity: 0.5; }
    .gallery .swiper-container .main-slide h3 {
      position: absolute;
      left: 0;
      top: 0;
      z-index: 5;
      margin: 5px 0 0 5px;
      font-size: 2.083em;
      font-family: 'Cinzel', sans-serif;
      font-weight: bold;
      background-color: rgba(0, 54, 95, 0.7);
      padding: 15px 30px;
      color: white;
      letter-spacing: 3px; }
    .gallery .swiper-container .main-slide.swiper-slide-active {
      opacity: 1;
      box-shadow: 0px 0px 15px #252525; }
    .gallery .swiper-container .main-slide .swiper-button-next {
      right: 10px; }
    .gallery .swiper-container .main-slide .swiper-button-prev {
      left: 10px; }
  .gallery .gallery-top {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #252525a1; }
    .gallery .gallery-top img {
      width: 100%; }
  .gallery .gallery-thumbs {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 0;
    margin-top: -50px;
    background-color: rgba(0, 0, 0, 0.7); }
    .gallery .gallery-thumbs img {
      width: 100%; }
  .gallery .gallery-thumbs .swiper-slide {
    height: 20%;
    opacity: 0.6; }
  .gallery .gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border: 1px solid white; }
  .gallery .swiper-button-disabled {
    opacity: 0; }
  .gallery .swiper-button-next {
    right: 50px; }
  .gallery .swiper-button-prev {
    left: 50px; }

@media (min-width: 768px) and (max-width: 1024px) {
  .home .scroll-downs {
    display: none; }
  .home img {
    width: auto;
    object-fit: cover; }
  .home .animate-home .quote {
    width: 60%; }
  .home .arrow {
    display: block;
    transform: rotate(270deg); }
  .rates .container-box h1 {
    font-size: 2.917em; }
  .rates .container-box.active {
    width: 100%;
    padding: 0; }
  .rates .container-box .box {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .gallery .swiper-container.overflow {
    width: 100%;
    height: auto;
    padding-bottom: 1em; }
  .gallery .swiper-container .main-wrapper {
    margin-top: 2em; }
  .gallery .swiper-container h1 {
    font-size: 2.917em;
    padding-top: 50px; }
  .gallery .gallery-top {
    width: 70%; }
  .gallery .gallery-thumbs {
    margin-top: 0; }
  .about {
    display: block;
    background: none; }
    .about .about-content {
      width: 100%;
      display: block;
      height: 100%; }
    .about .about-content .content h1 {
      margin: 0;
      margin-top: 4%; }
    .about .about-content .content h5 {
      padding: 10px 0; }
    .about .location {
      width: 100%; }
      .about .location .location-button {
        bottom: 10%;
        left: calc(50% - 70px);
        right: auto; }
      .about .location .location-tab {
        width: 100%;
        display: block; }
  .modal-container .modal {
    width: 80% !important;
    z-index: 10; }
  .modal-container .modal-content {
    top: 50px; } }

@media (max-width: 767px) {
  .modal-container .modalShow {
    top: 100px; }
  .modal-container .modal {
    width: 99% !important;
    z-index: 10; }
  .modal-container .modal-content {
    top: 150px; }
  nav .logo::before {
    display: none; }
  nav .logo::after {
    display: none; }
  nav .logo {
    margin: 0; }
    nav .logo .logoImg1 {
      width: 100px;
      margin: 15px 15px; }
  nav .active {
    height: 0 !important; }
    nav .active .logoImg {
      display: none; }
  nav #menuToggle {
    top: 60px;
    left: 40px; }
    nav #menuToggle span {
      width: 35px;
      height: 3px;
      margin-bottom: 6.5px; }
  .onepage-pagination {
    display: none; }
  footer .menu {
    display: none; }
  .animate-home img {
    width: 100%;
    object-fit: cover; }
  .animate-home .quote {
    width: 100%;
    text-align: left;
    height: auto;
    padding-top: 20%; }
    .animate-home .quote h1 {
      font-size: 4.5em;
      line-height: 65px;
      width: 90%;
      left: 5%;
      margin-top: 25%; }
  .animate-home .scroll-downs {
    display: none; }
  .animate-home .arrow {
    display: block;
    transform: rotate(360deg);
    left: calc(50% - 10px);
    bottom: 5%; }
    .animate-home .arrow span {
      width: 30px;
      height: 30px; }
  .rates {
    height: auto !important; }
    .rates .circle {
      opacity: 1; }
    .rates .container-box {
      position: relative;
      padding: 0; }
      .rates .container-box h1 {
        margin-top: 12%;
        font-size: 2.5em; }
      .rates .container-box .seemore {
        display: none; }
      .rates .container-box .box-content {
        display: flex;
        height: 100%;
        justify-content: space-between;
        overflow-x: auto;
        width: auto;
        flex-flow: row; }
      .rates .container-box .box {
        min-width: 300px;
        height: 520px;
        min-height: auto;
        padding: 10px; }
        .rates .container-box .box h5 {
          font-size: 25px; }
        .rates .container-box .box .price {
          font-size: 15px; }
        .rates .container-box .box ul li {
          font-size: 13px !important; }
        .rates .container-box .box .info {
          display: none; }
        .rates .container-box .box .text {
          font-size: 12px;
          line-height: 20px; }
      .rates .container-box .close.active {
        opacity: 0;
        display: none; }
  .gallery .swiper-container {
    width: 100%; }
    .gallery .swiper-container h1 {
      padding-top: 15%;
      font-size: 2.5em; }
    .gallery .swiper-container .main-slide h3 {
      font-size: 15px;
      padding: 10px 15px; }
  .gallery .gallery-top img {
    width: 100%; }
  .gallery .swiper-button-prev,
  .gallery .swiper-button-next {
    display: none; }
  .gallery .swiper-container .main-slide .swiper-button-next {
    display: block; }
  .gallery .swiper-container .main-slide .swiper-button-prev {
    display: block; }
  .gallery .gallery-thumbs {
    margin-top: 0; }
  .gallery .overflow {
    height: 100%;
    padding: 0; }
    .gallery .overflow .main-wrapper {
      top: 10%; }
  .gallery .circle {
    opacity: 1; }
  .about {
    display: block;
    position: relative;
    background: none; }
    .about .about-content {
      width: 100%;
      display: block;
      height: auto; }
      .about .about-content .content h1 {
        padding-top: 15%; }
      .about .about-content .content h5 {
        font-size: 1.1em;
        letter-spacing: 1px; }
      .about .about-content .content p {
        font-size: 12px; }
    .about .location {
      width: 100%; }
      .about .location .location-button {
        display: none; }
      .about .location .location-tab {
        width: 100%;
        opacity: 1;
        position: relative;
        visibility: visible;
        display: block; } }

.arrow {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: none; }

.arrow span {
  display: block;
  width: 50px;
  height: 50px;
  border-bottom: 5px solid #fcfcfc;
  border-right: 5px solid white;
  transform: rotate(225deg);
  margin: -10px;
  animation: animate 2s infinite; }

.arrow span:nth-child(2) {
  animation-delay: -0.2s; }

.arrow span:nth-child(3) {
  animation-delay: -0.4s; }

@keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(225deg) translate(20px, 20px); }
  50% {
    opacity: 1; }
  100% {
    opacity: 0;
    transform: rotate(225deg) translate(20px, 20px); } }

.circle {
  position: absolute;
  margin-left: -100px;
  margin-top: -15px;
  left: 50%;
  top: 50%;
  width: 200px;
  height: 50px;
  z-index: 20;
  opacity: 0;
  transition: all 0.5s ease; }
  .circle .inner {
    border: 5px solid #aae;
    border-radius: 50%;
    margin-top: 5px;
    height: 50px;
    width: 50px;
    animation: circles 1.25s ease-out infinite, swipe 1.25s ease-out infinite; }

@keyframes swipe {
  0% {
    transform: translateX(200px); }
  20% {
    transform: translateX(160px); }
  100% {
    transform: translateX(0px); } }

@keyframes circles {
  0% {
    opacity: 0; }
  33% {
    opacity: 1; }
  90% { }
  100% {
    opacity: 0; } }

html {
  font-size: 100%;
  background-color: #f0f0f0; }

header,
section,
article,
footer,
aside {
  display: block; }

body {
  background-color: #f6f6f6;
  font-size: 0.750em; }

h1 {
  font-family: 'Cinzel', serif; }

p {
  font-family: 'Archivo', sans-serif; }

.container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative; }

section {
  height: 100%;
  min-width: 100%; }

#rates-container,
#gallery-container,
#about-container {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translate3d(0, 0, 0);
  opacity: 1; }
  #rates-container.scale,
  #gallery-container.scale,
  #about-container.scale {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    opacity: 0.9; }

.modal-container {
  position: absolute;
  top: -100%;
  left: 0;
  bottom: 0;
  width: 100%;
  display: block;
  background-color: rgba(39, 39, 39, 0.9);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 50; }
  .modal-container.modalShow {
    top: 0;
    opacity: 1;
    visibility: visible; }
  .modal-container .closeModal {
    position: absolute;
    right: 35px;
    top: 35px;
    width: 35px;
    height: 35px; }
  .modal-container .closeModal:before, .modal-container .closeModal:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 33px;
    width: 2px;
    background-color: white; }
  .modal-container .closeModal:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); }
  .modal-container .closeModal:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  .modal-container .modal {
    width: 50%;
    margin: 2% auto;
    position: relative; }
  .modal-container .modal-top {
    height: 80%;
    width: 100%; }
  .modal-container .modal-thumbs {
    height: 20%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 5px; }
    .modal-container .modal-thumbs .swiper-slide {
      width: 25%;
      height: 100%;
      opacity: 0.4; }
    .modal-container .modal-thumbs .swiper-slide-thumb-active {
      opacity: 1; }
  .modal-container .modal-content {
    width: 100%;
    background-color: rgba(19, 19, 19, 0.623);
    border: 3px solid rgba(0, 93, 129, 0.932);
    position: absolute;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    visibility: hidden;
    opacity: 0; }
    .modal-container .modal-content.show {
      opacity: 1;
      visibility: visible; }
    .modal-container .modal-content h3 {
      position: absolute;
      left: 0;
      top: 0;
      z-index: 5;
      margin: 5px 0 0 5px;
      font-size: 2.083em;
      font-family: 'Cinzel', sans-serif;
      font-weight: bold;
      background-color: rgba(0, 54, 95, 0.7);
      padding: 15px 30px;
      color: white;
      letter-spacing: 3px; }
    .modal-container .modal-content .swiper-container {
      width: 100%; }
      .modal-container .modal-content .swiper-container .swiper-slide {
        width: 100%; }
        .modal-container .modal-content .swiper-container .swiper-slide img {
          width: 100%; }

