/* 	-------------------------------------------------
 	Media Wraps
  ------------------------------------------------- */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  font-size: 10px;
  overflow-x: hidden;
}

body {
  position: relative;
  background: #458be4;
  font-family: "Josefin Sans", sans-serif;
  overflow-x: hidden;
  width: 100%;
  --base-height: 250vw;
  --base-scale: 1;
}

iframe {
  max-width: 100%;
}

img {
  max-width: 100%;
}

.container {
  position: relative;
  width: 1200px;
  max-width: 100%;
  margin: auto;
}

.parallax-wrap.anchor-bottom {
  position: absolute;
  width: 100%;
  bottom: 0;
}

.no-parallax .parallax-wrap {
  -webkit-transform: none !important;
          transform: none !important;
}

.hidden {
  display: none;
}

.main {
  overflow: hidden;
}

.header {
  height: 120vh;
  margin-bottom: 15vh;
}

.header .container {
  height: 100vh;
}

.background {
  position: absolute;
  overflow: hidden;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  min-width: 100vw;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.background .sky {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1920px;
  height: 960px;
  max-width: 100%;
  background: url("../assets/sky.png") top center no-repeat;
  background-size: contain;
  opacity: 0;
}

.background .landscape-clouds {
  opacity: 0;
}

.background .clouds {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2993px;
  height: 1250px;
  max-height: 120vh;
  -webkit-transition: 0.25s ease-out;
  transition: 0.25s ease-out;
}

.background .clouds .image {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../assets/clouds4.png") top center no-repeat;
  background-size: auto 100%;
}

.landscape-wrap {
  -webkit-transform: translateY(15%);
          transform: translateY(15%);
  font-size: 1rem;
}

.landscape {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  width: 192em;
  height: 96em;
  opacity: 0;
}

.landscape * {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: none center no-repeat;
  background-size: auto 100%;
}

.landscape .landscape-clouds {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.landscape .landscape-clouds .image {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-40%) translateY(-40%);
          transform: translateX(-40%) translateY(-40%);
  width: 192em;
  height: 95em;
  background: url("../assets/clouds3.png") top center no-repeat;
  background-size: contain;
}

.landscape .landscape-infront {
  background-image: url("../assets/landscape_infront_v2.png");
  background-position: center bottom;
}

.landscape .landscape-ship {
  background-image: url("../assets/landscape_ship_trim.png");
  width: 53.1em;
  height: 39.9em;
  left: 100.8em;
  top: 7em;
}

.trees {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  width: 192em;
  height: 96em;
  bottom: 0;
}

.trees * {
  position: absolute;
  background: url("../assets/tree.png") bottom right no-repeat;
  background-size: contain;
  width: 56.8em;
  height: 108em;
  bottom: 0;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
}

.trees .tree-left {
  left: -66.5em;
  -webkit-transform: rotateZ(32deg);
          transform: rotateZ(32deg);
  bottom: 18em;
}

.trees .tree-right {
  right: -4em;
  bottom: 16.8em;
}

.foreground {
  position: relative;
}

.header {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}

.header .ship {
  position: absolute;
  width: 650px;
  height: 400px;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-12%) translateY(-105%);
          transform: translateX(-12%) translateY(-105%);
  max-width: 30vw;
  max-height: 18vw;
  opacity: 0;
}

.header .ship .image {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../assets/ship.png") center no-repeat;
  background-size: contain;
}

.header .logo {
  position: absolute;
  width: 1000px;
  height: 470px;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-15%);
          transform: translateX(-50%) translateY(-15%);
  max-width: 50vw;
  max-height: 24vw;
  background: url("../assets/logo.png") center no-repeat;
  background-size: contain;
  opacity: 0;
}

.anchor {
  position: absolute;
  width: 30rem;
  height: 10rem;
  right: 1rem;
  bottom: 1rem;
  max-height: 15vh;
}

.anchor .ship {
  position: absolute;
  width: 350px;
  height: 268px;
  max-height: 175%;
  left: calc(50% + 10vh);
  bottom: 0;
  -webkit-transform: translateX(50%) translateY(-10%);
          transform: translateX(50%) translateY(-10%);
  background: url("../assets/ship.png") center no-repeat;
  background-size: contain;
  -webkit-filter: drop-shadow(2px 6px 4px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(2px 6px 4px rgba(0, 0, 0, 0.5));
  opacity: 0;
}

.anchor .logo {
  position: absolute;
  width: 342px;
  height: 155px;
  max-height: 100%;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url("../assets/logo.png") center no-repeat;
  background-size: contain;
  -webkit-filter: drop-shadow(2px 6px 4px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(2px 6px 4px rgba(0, 0, 0, 0.5));
  opacity: 0;
}

.bottom {
  position: relative;
  z-index: 10;
  height: 7rem;
  background: #26221f;
}

.bottom .sticky {
  position: fixed;
  bottom: 0;
  width: 100%;
}

.bottom .sticky .sticky-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #26221f;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}

.bottom .container {
  text-align: center;
}

.bottom .social-links {
  position: relative;
  list-style: none;
  display: inline-block;
  padding: 0 0.5rem;
  opacity: 0;
}

.bottom .social-links li {
  display: inline-block;
}

.bottom .social-links li a {
  position: relative;
  display: block;
  background: url("../assets/social_media_buttons.png") left top no-repeat;
  background-size: auto 200%;
  width: 5rem;
  height: 5rem;
  border-radius: 5rem;
  margin: 1rem 0.5rem;
  -webkit-filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
}

.bottom .social-links li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(0%) translateY(-80%);
          transform: translateX(0%) translateY(-80%);
  background: url("../assets/callout_buttons.png") left top no-repeat;
  background-size: auto 200%;
  width: 200%;
  height: 150%;
  opacity: 0;
  pointer-events: none;
}

.bottom .social-links li.social-discord a {
  background-position-x: 50%;
}

.bottom .social-links li.social-discord a:before {
  background-position-x: 25%;
}

.bottom .social-links li.social-facebook a {
  background-position-x: 100%;
}

.bottom .social-links li.social-facebook a:before {
  background-position-x: 75%;
}

.bottom .social-links li.social-twitter a {
  background-position-x: 75%;
}

.bottom .social-links li.social-twitter a:before {
  background-position-x: 0%;
}

.bottom .social-links li.social-steam a {
  background-position-x: 25%;
}

.bottom .social-links li.social-steam a:before {
  background-position-x: 100%;
}

.bottom .social-links li.social-blog a {
  background-position-x: 0%;
}

.bottom .social-links li.social-blog a:before {
  background-position-x: 125%;
}

.no-touch .bottom .social-links li a:hover {
  background-position-y: 100%;
}

.no-touch .bottom .social-links li a:hover:before {
  opacity: 1;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-transform: translateX(10%) translateY(-100%);
          transform: translateX(10%) translateY(-100%);
}

.content {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0 2rem;
}

.content-block {
  color: #fbc355;
  text-shadow: 0px 0px 3px #000;
  margin: 2rem 0;
  font-size: 3rem;
  padding: 4rem;
  line-height: 2em;
  text-align: center;
}

.content-block h1,
.content-block h2,
.content-block h3,
.content-block h4,
.content-block h5 {
  font-weight: bold;
}

.content-block h1 {
  font-size: 4.5rem;
}

.content-block h2 {
  font-size: 4rem;
}

.video-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5rem;
  margin: 0 2rem 5rem;
  background: url("../assets/module_media.png") center no-repeat;
  background-size: contain;
}

.video-block .video-wrap {
  position: relative;
  height: 0;
  padding-bottom: 52%;
}

.video-block .video-wrap .gallery {
  height: 0;
  padding-bottom: 52%;
  overflow: hidden;
  border-radius: 4rem;
  position: relative;
}

.video-block .slides a {
  position: relative;
  display: block;
  padding-bottom: 56.25%;
  height: 0;
  -webkit-transition: 0.25s ease-out;
  transition: 0.25s ease-out;
}

.video-block .slides a:before {
  content: url("../assets/youtube_play_button.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 15%;
  z-index: 1;
}

.video-block a img {
  display: block;
  background: rgba(0, 0, 0, 0.27);
}

.video-block .pages li .placeholder {
  height: 0;
  padding-bottom: calc(50.8% - 1rem);
  margin: 0.5rem;
  background: rgba(0, 0, 0, 0.27);
  -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.video-block .controls {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  pointer-events: none;
}

.video-block .controls a {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: initial;
}

.video-block .controls a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  width: 5rem;
  height: 5rem;
  font-size: 5rem;
  -webkit-clip-path: polygon(0.85em 0.5em, 0.35em 1em, 0.22em 0.84em, 0.58em 0.5em, 0.22em 0.14em, 0.35em 0em);
          clip-path: polygon(0.85em 0.5em, 0.35em 1em, 0.22em 0.84em, 0.58em 0.5em, 0.22em 0.14em, 0.35em 0em);
  background: #fbc355;
  -webkit-transition: 0.25s ease-out;
  transition: 0.25s ease-out;
}

.video-block .controls a.prev {
  -webkit-transform: translateX(-170%) translateY(-50%);
          transform: translateX(-170%) translateY(-50%);
}

.video-block .controls a.prev:before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.video-block .controls a.next {
  -webkit-transform: translateX(170%) translateY(-50%);
          transform: translateX(170%) translateY(-50%);
  right: 0;
}

.video-block .controls a:hover:before {
  background: #f39231;
}

.video-block .control-nav {
  position: relative;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5.5rem 0 0;
}

.video-block .control-nav a {
  width: 2rem;
  height: 2rem;
  margin: 0 0.5rem;
  display: block;
  border-radius: 2rem;
  background: #fbc355;
  -webkit-transition: 0.25s ease-out;
  transition: 0.25s ease-out;
  opacity: 0.5;
}

.video-block .control-nav li.active a,
.video-block .control-nav a:hover {
  background: #fbc355;
  opacity: 1;
}


.gallery-block {
  margin: 0 2rem 5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5rem;
  background: url("../assets/module_media.png") center no-repeat;
  background-size: contain;
}

.gallery-block .gallery-wrap {
  position: relative;
  height: 0;
  padding-bottom: 52%;
}

.gallery-block .gallery {
  overflow: hidden;
  border-radius: 4rem;
}

.gallery-block .slides {
  position: relative;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  list-style: none;
  opacity: 0;
  -webkit-animation: fadeIn 0.2s 0.5s ease-out both;
          animation: fadeIn 0.2s 0.5s ease-out both;
}

.gallery-block .pages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}

.gallery-block .pages li {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.25s 0.1s ease-out;
  transition: 0.25s 0.1s ease-out;
}

.gallery-block .pages li img {
  background: rgba(0, 0, 0, 0.27);
}

.gallery-block .pages li .placeholder {
  height: 0;
  padding-bottom: calc(50.8% - 1rem);
  margin: 0.5rem;
  background: rgba(0, 0, 0, 0.27);
  -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.gallery-block .pages li a {
  display: block;
  padding: 0.5rem;
  -webkit-transition: 0.25s ease-out;
  transition: 0.25s ease-out;
  padding-bottom: 51.75%;
  height: 0;
  width: 100%;
}

.gallery-block .pages li + li {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.gallery-block .pages li + li + li {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.gallery-block .pages li + li + li + li {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.gallery-block .slides li.active .pages li {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.gallery-block img {
  display: block;
}

.gallery-block .controls {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  pointer-events: none;
}

.gallery-block .controls a {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: initial;
}

.gallery-block .controls a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  width: 5rem;
  height: 5rem;
  font-size: 5rem;
  -webkit-clip-path: polygon(0.85em 0.5em, 0.35em 1em, 0.22em 0.84em, 0.58em 0.5em, 0.22em 0.14em, 0.35em 0em);
          clip-path: polygon(0.85em 0.5em, 0.35em 1em, 0.22em 0.84em, 0.58em 0.5em, 0.22em 0.14em, 0.35em 0em);
  background: #fbc355;
  -webkit-transition: 0.25s ease-out;
  transition: 0.25s ease-out;
}

.gallery-block .controls a.prev {
  -webkit-transform: translateX(-170%) translateY(-50%);
          transform: translateX(-170%) translateY(-50%);
}

.gallery-block .controls a.prev:before {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.gallery-block .controls a.next {
  -webkit-transform: translateX(170%) translateY(-50%);
          transform: translateX(170%) translateY(-50%);
  right: 0;
}

.gallery-block .controls a:hover:before {
  background: #f39231;
}

.gallery-block .control-nav {
  position: relative;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5rem 0 0;
}

.gallery-block .control-nav a {
  width: 2rem;
  height: 2rem;
  margin: 0 0.5rem;
  display: block;
  border-radius: 2rem;
  background: #fbc355;
  -webkit-transition: 0.25s ease-out;
  transition: 0.25s ease-out;
  opacity: 0.5;
}

.gallery-block .control-nav li.active a,
.gallery-block .control-nav a:hover {
  background: #fbc355;
  opacity: 1;
}

.fixed .bottom .sticky .sticky-background {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.fixed .bottom .sticky .ship {
  -webkit-transform: translateX(-50%) translateY(-10%);
          transform: translateX(-50%) translateY(-10%);
}

.fixed.end .bottom .sticky {
  position: relative;
}

.footer {
  position: relative;
  background: #26221f;
  color: #fff;
  font-size: 2rem;
  padding: 2rem 4rem 4rem;
}

.footer .footer-wrap {
  max-width: 585px;
  margin: auto;
}

.footer .footer-info {
  text-align: center;
  font-weight: 500;
  margin-bottom: 2rem;
}

.footer .footer-info a {
  color: #f39231;
  text-decoration: none;
}

.footer .footer-info a:hover {
  text-decoration: underline;
}

.footer .footer-info.left {
  line-height: 1.1;
  text-align: left;
}

.footer .footer-info.left ul {
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 40px;
}

.footer .footer-info.left ul ul {
  margin-block-start: .25em;
  margin-block-end: .25em;
  margin-inline-start: 40px;
}


.footer .footer-info.right {
  line-height: 1.1;
  text-align: right;
}

.footer .footer-info.left.footer-header {
  font-size: 4rem;
  font-weight: 600;
}

.footer .footer-info.left.footer-header-2 {
  font-size: 3rem;
  font-weight: 500;
}

.footer .footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  margin-bottom: 4rem;
}

.footer .footer-links li {
  display: inline;
}

.footer .footer-links li a {
  color: #f39231;
  text-decoration: none;
  font-weight: 500;
}

.footer .footer-links li a:hover {
  text-decoration: underline;
}

.footer .footer-links li + li:before {
  content: "| ";
  font-weight: 500;
}

.footer .footer-info img
{
  max-width: 33%;
}

.footer .footer-info.left img {
  float: left;
}

.footer .footer-info.right img {
  float: right;
}

.footer .footer-laurels {
  clear: both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 640px;
  margin: auto;
  padding-top: 4rem;
}

.footer .footer-laurels li {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33333%;
          flex: 0 0 33.33333%;
  margin-bottom: 4rem;
}

.footer .footer-laurels .store-links li {
  margin: auto;
}

.footer .footer-laurels li img {
  margin: auto;
  max-width: calc(100% - 2rem);
}

.footer .footer-storelinks {
  clear: both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 640px;
  margin: auto;
  padding: 2rem;
}

.footer .footer-storelinks li {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33333%;
          flex: 0 0 33.33333%;
  margin: auto;
}

.footer .footer-storelinks .store-links li {
  margin: auto;
}

.footer .footer-storelinks li img {
  margin: auto;
  max-width: calc(100% - 2rem);
}

.footer .footer-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  margin: 0 -1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer .footer-logos li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33333%;
          flex: 0 0 33.33333%;
  margin-bottom: 4rem;
}

.footer .footer-logos li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 1rem;
  text-align: center;
}

.footer .footer-logos li img {
  max-height: 8rem;
  margin: auto;
  display: block;
}

.footer .footer-subscribe {
  margin-bottom: 4rem;
  text-align: center;
  font-weight: 500;
  line-height: 1.3;
  padding: 0 5rem;
}

.footer .footer-subscribe .subscribe-header {
  margin-bottom: 2rem;
}

.footer .footer-subscribe .subscribe-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer .footer-subscribe .subscribe-info {
  font-size: 1.5rem;
  margin-top: 1rem;
}

.footer .footer-subscribe .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0rem 0.4rem 1rem;
  max-width: 100%;
}

.footer .footer-subscribe .form-group * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.footer .footer-subscribe label {
  display: block;
  margin: 1.4rem 0;
}

.footer .footer-subscribe input,
.footer .footer-subscribe select,
.footer .footer-subscribe button {
  border: none;
  padding: 0.8rem 1.2rem;
  font-size: inherit;
  font-weight: 500;
  border-radius: 0.5rem;
}

.footer .footer-subscribe select {
  height: 3.8rem;
}

.footer .footer-subscribe button {
  -webkit-box-flex: initial !important;
      -ms-flex: initial !important;
          flex: initial !important;
  outline: none;
  -webkit-transition: 0.25s ease-out;
  transition: 0.25s ease-out;
  background: #d2710f;
  color: #180e0a;
  white-space: nowrap;
  cursor: pointer;
}

.footer .footer-subscribe button:focus, .footer .footer-subscribe button:hover {
  background: #f39231;
}

/* mailchimp version start */


.footer .validate {
  margin-bottom: 4rem;
  text-align: center;
  font-weight: 500;
  line-height: 1.3;
  padding: 0 5rem;
}

.footer .validate .subscribe-header {
  margin-bottom: 2rem;
}

.footer .validate .subscribe-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer .validate .subscribe-info {
  font-size: 1.5rem;
  margin-top: 1rem;
}

.footer .validate .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0rem 0.4rem 1rem;
  max-width: 100%;
}

.footer .validate .form-group * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.footer .validate label {
  display: block;
  margin: 1.4rem 0;
}

.footer .validate input,
.footer .validate select,
.footer .validate .button {
  border: none;
  padding: 0.8rem 1.2rem;
  font-size: inherit;
  font-weight: 500;
  border-radius: 0.5rem;
}

.footer .validate select {
  height: 3.8rem;
}

.footer .validate .button {
  -webkit-box-flex: initial !important;
      -ms-flex: initial !important;
          flex: initial !important;
  outline: none;
  -webkit-transition: 0.25s ease-out;
  transition: 0.25s ease-out;
  background: #d2710f;
  color: #180e0a;
  white-space: nowrap;
  cursor: pointer;
}

.footer .validate .button:focus, .footer .validate .button:hover {
  background: #f39231;
}
/* mailchimp version end */

.footer .footer-copyright {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
}

.footer .footer-credit {
  padding-top: 1rem;
  text-align: center;
  font-size: 1.5rem;
}

.footer .footer-credit a {
  color: #f39231;
  text-decoration: none;
}

.footer .footer-credit a:hover {
  text-decoration: underline;
}

@media all and (min-width: 1300px) {
  body {
    --base-height: 220vw;
  }
}

@media all and (max-width: 991px) {
  .header {
    margin-bottom: 0;
  }
  .landscape {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media all and (max-height: 991px) and (orientation: landscape) {
  .header {
    margin-bottom: 0;
  }
  .landscape {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media all and (min-width: 768px) and (max-width: 991px) {
  body {
    --base-height: 300vw;
  }
  .header .ship {
    max-width: 40vw;
    max-height: 30vh;
  }
  .header .logo {
    max-width: 65vw;
    max-height: 45vh;
  }
}

@media all and (min-height: 768px) and (max-height: 991px) and (orientation: landscape) {
  body {
    --base-height: 300vw;
  }
  .header .ship {
    max-width: 40vw;
    max-height: 30vh;
  }
  .header .logo {
    max-width: 65vw;
    max-height: 45vh;
  }
}

@media all and (min-width: 768px) and (max-width: 991px) and (orientation: portrait) {
  body {
    --base-height: 380vw;
  }
}

@media all and (max-width: 767px) {
  body {
    --base-height: 330vw;
  }
  .landscape-wrap {
    font-size: calc(2rem * var(--base-scale));
  }
  .header .ship {
    max-width: 55vw;
    max-height: 25vh;
  }
  .header .logo {
    max-width: 75vw;
    max-height: 30vh;
  }
  .content-block {
    font-size: 2rem;
    padding: 0rem;
  }
  .content-block h1 {
    font-size: 3rem;
    line-height: 3rem;
  }
  .video-block {
    padding: 3rem 2rem;
  }
  .video-block .video-wrap {
    border-radius: 0rem;
  }
  .video-block .controls a.prev {
    -webkit-transform: translateX(-140%) translateY(-50%);
            transform: translateX(-140%) translateY(-50%);
  }
  .video-block .controls a.next {
    -webkit-transform: translateX(140%) translateY(-50%);
            transform: translateX(140%) translateY(-50%);
  }
  .video-block .control-nav {
    padding-top: 4rem;
  }
  .gallery-block {
    padding: 3rem 2rem;
  }
  .gallery-block .gallery {
    border-radius: 0rem;
  }
  .gallery-block .controls a.prev {
    -webkit-transform: translateX(-140%) translateY(-50%);
            transform: translateX(-140%) translateY(-50%);
  }
  .gallery-block .controls a.next {
    -webkit-transform: translateX(140%) translateY(-50%);
            transform: translateX(140%) translateY(-50%);
  }
  .gallery-block .control-nav {
    padding-top: 3.5rem;
  }
  .footer .footer-subscribe {
    padding: 0;
  }
  .footer .footer-subscribe br {
    display: none;
  }
  .footer .validate {
    padding: 0;
  }
  .footer .validate br {
    display: none;
  }
}

@media all and (max-width: 479px) {
  body {
    --base-height: 580vw;
    --base-scale: 0.2 !important;
  }
  .header .ship {
    max-width: 50vw;
    max-height: 28vw;
  }
  .header .logo {
    max-width: 86vw;
    max-height: 40vw;
  }
  .video-block {
    margin: 0 -5rem;
  }
  .video-block .control-nav {
    padding-top: 2rem;
  }
  .gallery-block {
    margin: 0 -5rem 4rem;
  }
  .gallery-block .control-nav {
    padding-top: 2rem;
  }
  .gallery-block .pages li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .bottom {
    text-align: center;
  }
  .bottom .anchor {
    display: none;
  }
  .footer {
    padding: 2rem 2rem 4rem;
    line-height: 2.4rem;
  }
  .footer .footer-subscribe .subscribe-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer .footer-subscribe button {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 !important;
            flex: 1 !important;
  }
  .footer .validate .subscribe-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer .validate .button {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 !important;
            flex: 1 !important;
  }
  .footer .footer-info br {
    display: none;
  }
  .footer .footer-copyright {
    text-align: center;
  }
  .footer .footer-laurels {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer .footer-laurels li {
    text-align: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0 4rem;
  }
  .footer .footer-storelinks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer .footer-storelinks li {
    text-align: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0 4rem;
  }
  .footer .footer-logos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.ie .gallery-block .controls a:after,
.edge .gallery-block .controls a:after {
  content: "";
  display: block;
  background: url("../assets/baseline-keyboard_arrow_right-24px.svg") center no-repeat;
  background-size: auto 200%;
  width: 5rem;
  height: 5rem;
  font-size: 5rem;
}

.ie .gallery-block .controls a:before,
.edge .gallery-block .controls a:before {
  display: none;
}

.ie .gallery-block .controls a.prev:after,
.edge .gallery-block .controls a.prev:after {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
/*# sourceMappingURL=styles.css.map */