@charset "utf-8";

body {
  font-family: 'Century Gothic';
  color: #fff;
  min-height: 800px;
}

a {
  text-decoration: none!important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Allura', cursive;
}

address {
  padding: 60px 30px 0px 30px;
}

#SceneMain {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
  z-index: 1;
  overflow: hidden;
}
/*
#SceneMain:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(../img/pattern.png);
  z-index: 1;
}
*/
#SceneMain .layer {
  width: 100%;
  height: 100%;
}

#SceneMain .layer .background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

#ContentMain {
  position: relative;
  z-index: 2;
}

.position-absolute {
  position: absolute;
}

.max-width {
  width: 100%;
}

#ContentMain .logo-sm {
  max-width: calc(100% - 200px);
  max-height: 120px;
  display: inline-block;
}

/*
#ContentMain .menu:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(../img/pattern.png);
}
*/
#ContentMain .left {
  min-height: 100vh;
  position: relative;
  left: 0;
  background-color: rgba(0,0,0,.8);
  width: 300px;
  max-width: 100vw;
  transform: translateX(-110%);
  transition: all .2s ease;
  z-index: 2;
}

#ContentMain .left.in {
  /*
  transform: translateX(0);
  */
}

#ContentMain .left .spacer {
  height: 100px;
}

#ContentMain .btn-toggle-left .in {
  display: inline-block;
}

.left-in #ContentMain .btn-toggle-left .in {
  display: none;
}

#ContentMain .btn-toggle-left .out {
  display: none;
}

.left-in #ContentMain .btn-toggle-left .out {
  display: inline-block;
}

#ContentMain .btn-toggle-left {
  position: fixed;
  top: 20px;
  left: 20px;
  height: 60px;
  width: 60px;
  background-color: #000;
  z-index: 3;
  text-align: center;
  color: #fff;
  border-radius: 100%;
}

#ContentMain .btn-toggle-left {
  line-height: 60px;
  font-size: 2.5rem;
}

#ContentMain .left .logo {
  width: 100%;
  position: relative;
  padding: 25px;
}

#ContentMain .left .menu {
  font-family: 'Allura', cursive;
  font-size: 3rem;
}

#ContentMain .left .menu .item {
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,.5);
}

#ContentMain .left .menu .item:last-child {
  border-bottom: 0;
}

#ContentMain .left .menu .item a {
  padding: 15px 30px;
  color: #fff;
  display: block;
  transition: all .5s ease;
  text-align: right;
}

#ContentMain .left .menu .item a:hover {
  color: #f3c869;
  background-color: rgba(0,0,0,.25);
}

#ContentMain .left .menu .item a:active,
#ContentMain .left .menu .item a.active {
  color: #f3c869;
  background-color: rgba(0,0,0,.75);
}

#ContentMain .right {
  min-height: 100vh;
  position: absolute;
  overflow: hidden;
  left: 15px;
  right: 15px;
}

#ContentMain .right .pages {
  /*
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  */
  position: relative;
}

#ContentMain .left address .logo {
  width: 200px;
  padding: 0;
}

#ContentMain .left address a {
  color: #fff;
  text-decoration: underline!important;
}

#ContentMain .right .pages .page {
  color: #333;
  top: 0;
  transform: translate3d(0, 20px, 0);
  visibility: hidden;
  opacity: 0;
  transition: all .5s ease;
  position: absolute;
  backface-visibility: hidden;
  padding: 50px 30px;
  background-color: rgba(255,255,255,.9);
  min-height: calc(100% - 140px);
  margin: 150px 0 15px;
  width: 100%;
}

#ContentMain .right .pages .page.in {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  opacity: 1;
  transition: all 1s ease;
  transition-delay: .5s;
  position: relative;
  float: left;
}

#ContentMain .right .pages .page .title {
  color: #fff;
  background: #000;
  padding: 15px 30px;
  font-size: 2rem;
  top: -30px;
  position: absolute;
  right: 30px;
  margin-left: 30px;
}

[data-animate-in] {
  visibility: hidden;
}

[data-animate-in].animated {
  visibility: visible;
}

.sticky {
  position: fixed!important;
}

.slick-arrow {
  top: calc(100% - 20px);
  z-index: 1;
}
.slick-prev {
  left: initial;
  right: 35px;
}
.slick-next {
  right: 10px;
}
.slick-arrow:before {
  text-shadow: 0 0 10px #000;
}
.slick-dots {
  bottom: 0;
  padding: 0 70px 0 10px;
  text-align: left;
}
.slick-dots li {
  margin: 0;
}
.slick-dots li  button:before {
  color: #fff!important;
  text-shadow: 0 0 10px #000;
}
.embed-responsive-1by1 {
  padding-bottom: 100%;
}
.embed-responsive-4by3 {
  padding-bottom: 75%;
}

.terms {
  border: 1px solid #000;
  padding: 1rem;
}

.terms p {
  font-size: 1.5em;
}







@media screen and (min-width: 992px) {
  #ContentMain .left {
    width: 25%;
    transform: translate3d(0,0,0);
  }
  #ContentMain .right {
    width: 75%;
    right: 0;
    left: initial;
  }
  #ContentMain .right .pages .page {
    margin: 100px 0 40px 40px!important;
    width: calc(100% - 40px);
    margin: 100px 0 40px;
  }
}
