@import url("reset.css");

/* ------------------------------ */
/* ----- SET UP BASIC LAYOUT ---- */

/* setup fixed fluid layout */

html {
  overflow: auto;
  overflow: -moz-scrollbars-vertical;
  overflow-x: hidden;
  overflow-y: auto;
}

.bar {
  height: 42px;
  width: 100vw;
  background: #fe4e5b;
}

body {
  font-size: 62.5%;
  font-family: "Helvetica";
  margin: 0 auto;
  height: 100vh;
  position: relative;
  color: #fff;
  background-color: #000;
  height: 100vh;
}

h2 {
  font-size: 3em;
  line-height: 2em;
  padding-bottom: 1em;
  padding-top: 100px;
}

h1 {
  font-weight: 400;
  font-size: 56px;
  line-height: 64px;
  margin-bottom: 32px;
}

p {
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.3;
  margin-bottom: 1.5em;
}

a {
  -webkit-text-decoration: none;
  -moz-text-decoration: none;
  -ms-text-decoration: none;
  -o-text-decoration: none;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
button {
  background: none;
  border: none;
  outline: none;
  float: right;
}

footer {
  font-size: 1.5em;
  letter-spacing: 0.1em;
  margin-top: 3em;
}

a#contact,
a#futuracha,
a#jobs {
  color: #fff;
  display: inline-block;
  color: #ffffff;
  margin-right: 15px;
  font-size: 1.3em;
  margin-top: 0.2em;
}

a#contact:hover,
a#futuracha:hover,
a#jobs:hover {
  color: #7e272d;
}

/* cookies */

#cookies-box {
  max-width: 365px;
  padding: 30px;
  background-color: #424242;
  opacity: 0;
  position: fixed;
  z-index: 1000;
  bottom: -20px;
  right: 20px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  font-family: "Helvetica";
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.1, 0.35, 1.18);
  -moz-transition: all 0.5s cubic-bezier(0.25, 0.1, 0.35, 1.18);
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.35, 1.18);
}
#cookies-box.fast {
  opacity: 0.95;
  visibility: visible;
  bottom: 20px;
  pointer-events: initial;
}
#cookies-box.fast:hover {
  opacity: 1;
}
#cookies-box p {
  font-size: 15px;
  color: #f4f4f4;
  line-height: 19px;
  margin: 0 0 25px 0;
  max-width: 260px;
}
#cookies-box a {
  text-decoration: underline;
  color: #f4f4f4;
}
button.accept {
  width: 100%;
  font-size: 18px;
  color: #f4f4f4;
  border: none;
  text-align: left;
  background-color: #242424;
  padding: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Helvetica";
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  outline: none;
  background-image: url("/cookie.svg");
  background-repeat: no-repeat;
  background-position: 93% 50%;
  /* -webkit-display: flex;
      -webkit-justify-content: space-between;
      -webkit-align-items: center;
      -moz-display: flex;
      -moz-justify-content: space-between;
      -moz-align-items: center;
      display: flex;
      justify-content: space-between;
      align-items: center; */
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
button.accept:hover,
button.accept:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
button.accept .ck {
  opacity: 0.66;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
button.accept img.ck {
  vertical-align: middle;
}
button.accept span {
  display: inline-block;
  vertical-align: middle;
}

button.accept:hover .ck,
button.accept:active .ck {
  opacity: 0.85;
}
button.close-cookie {
  width: 30px;
  height: 30px;
  background-color: transparent;
  padding: 0;
  position: absolute;
  right: -12px;
  top: -12px;
  overflow: visible;
  outline: none;
  border: none;
  cursor: pointer;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.15);
}

@media (max-width: 460px) {
  #cookies-box {
    width: calc(100% - 110px);
    right: 25px;
  }
  button.accept {
    font-size: 16px;
    padding: 15px;
  }
}

@media (max-width: 380px) {
  button.accept {
    background-size: 25px;
  }
}

/* topbar */

/* .topbar{
  z-index: 1000;
  position: fixed; 
  left: 0;
  width: 100%;
  padding: 10px 0;
  line-height: 54px;
  background-color: #fff;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .1);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.topbar .support{ 
  float: right; 
  margin: 0 30px 0 0;
  padding: 10px 20px;
  background-color: #fe4e5b;
  border-radius: 40px;
  color: #fff;
  font-size: 19px;
}
.topbar #go-up{ 
  float: left; 
  margin-left: 30px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .1);
  cursor: pointer;
}
.support img{ padding-top: 2px; }
.topbar p{ 
  float: right; 
  padding-top: 21px;
  vertical-align: middle;
  display: inline-block;
  color: #FE4E5B;
  font-size: 20px;
  margin: 0 20px 0 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
} */

button.ex {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 10;
  cursor: pointer;
}
.wrapper {
  max-width: 960px;
  margin: 0 auto;
  width: 80%;
  height: calc(100vh - 42px);
  position: relative;
}

.fish {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  z-index: 200;
}

#holytrade {
  margin-top: 30px;
  display: inline-block;
}

.author {
  display: block;
  font-size: 0.9em;
}

.social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
}
.social a {
  color: #fff;
  font-size: 1rem;
  transition: color 2s ease;
}

.social a:hover {
  text-decoration: underline;
}

.social li {
  float: left;
  display: inline;
  margin-top: 0;
  margin-right: 15px;
  opacity: 0.6;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.social li:hover {
  opacity: 1;
}
.social li img {
  height: 19px;
}
.trademark {
  position: relative;
  right: 0.2em;
  top: 0.7em;
}

.cite {
  font-size: 2em;
  line-height: 1.3em;
  padding-left: 0em;
}

.packaging,
.preorder,
.ourteam {
  padding: 30px 20px 15px 20px;
  background-color: #000;
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  color: #fff;
  display: inline-block;
  min-width: 230px;
  height: 120px;
  vertical-align: top;
  font-size: 16px;
  max-width: 180px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border: 2px solid #fff;
}

.ourteam:not(:last-child) {
  margin-right: 24px;
}

.preorder,
.ourteam {
  margin-left: 15px;
}

.wrap {
  position: relative;
}

.threesixty {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.threesixty p {
  color: #fff;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  clear: both;
  margin: 0;
}

.threesixty svg {
  fill: #fff;
}

.ourteam:hover svg {
  fill: #000;
}

.ourteam:hover p {
  color: #000;
}

.ourteam:hover {
  background: #fff;
}

img.ts {
  margin: 0;
  float: left;
}
img.x {
  margin: 0;
  float: right;
}

.fast {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}

.privacy-policy:active,
.privacy-policy:focus,
.privacy-policy:visited,
.privacy-policy {
  color: #fe4e5b;
}

/* ------------------------------ */
/* --- SET UP ELEMENT DETAILS --- */

::-moz-selection {
  background: #fdb325;
}

::selection {
  background: #fe4e5b;
}

@media only screen and (max-width: 875px) {
  body {
    height: unset;
  }
  .packaging,
  .preorder,
  .ourteam {
    margin-bottom: 20px;
  }
  .ourteam {
    margin-left: 0;
    display: block;
  }
  .social {
    right: 0;
    left: auto;
  }
  .wrapper {
    height: unset;
    padding-bottom: 15px;
  }
}

@media only screen and (max-width: 590px) {
  .packaging,
  .preorder {
    display: block;
    margin-left: 0;
  }
  .social {
    position: relative;
    bottom: auto;
    padding: 50px 0;
  }
}

@media only screen and (max-width: 460px) {
  body {
    font-size: 50%;
  }
  .wrapper {
    margin: 0 auto 0 25px;
  }

  #holytrade {
    margin-top: 0.5em;
  }
  .holylogo {
    width: 60px;
  }
  .cite,
  p {
    font-size: 16px;
  }
  h2 {
    padding-top: 60px;
  }
}
@media only screen and (max-height: 850px) {
  .social {
    position: relative;
    bottom: auto;
    padding: 50px 0;
  }

  h1 {
    font-size: 32px;
    line-height: 40px;
  }
}

@media only screen and (max-height: 600px) {
  h2 {
    margin-top: 0;
  }
}

@media only screen and (min-height: 1080px) {
  h2 {
    padding-top: 160px;
  }
}
