* { margin: 0; padding: 0; -webkit-tap-highlight-color: rgba(0,0,0,0); box-sizing: border-box;}

::-moz-selection { background: #b3d4fc; text-shadow: none; }
::selection { background: #b3d4fc; text-shadow: none; }

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

@font-face {
   font-family: 'UntitledSansRegular';
   src: url('untitled/UntitledSansWeb-Regular.woff') format('woff');
   font-weight: normal;
   font-style: normal;
}

html{
  height: 100%;
  background: -webkit-linear-gradient(45deg, #ff4962 0%, #ff40f5 100%);
  background-color: #ff40f5;
}

body {
  margin: 0;
  font: 48px/56px "UntitledSansRegular", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #11111a;
  
  -webkit-font-smoothing: antialiased;

  background-color: #fff;
  /*background-color: #11111a;

  
  
  background: -moz-linear-gradient(45deg, #ff4962 0%, #ff40f5 100%);
  
  /*background: linear-gradient(45deg, #ff4962 0%, #ff40f5 100%);*/

  height: 100%;
  overflow-x: hidden;

}

.display-none{
  display: none;
}

.about-arrow{
  display: block;
  position: fixed !important;
  z-index: 1000;
}

.clear-both{
  clear: both;
}

.overflow-hidden{
  overflow: hidden;
}

.small-mobile-only{
    display: none;
}

/* Queen */

.queen-container{
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #000000;
  z-index: 5000;
  opacity: 1;
  transition: opacity 1s;
  margin: auto;
  overflow: hidden;
}

.queen-container.hide{
  display: none;
}

.queen-container:hover{
  cursor: pointer;
}

.queen-inner-container{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  max-width: 1200px;

}

.queen-image{
  width: 400px;
  height: 600px;
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-200px, -330px);
  background: url("../images/queenie.jpg") no-repeat fixed center;
  background-size: contain;
  opacity: 0;

}

.queen-text{
  width: 600px;
  height: auto;
  position: absolute;
  top: 50%;
  right: 33%;
  transform: translate(300px, -50%);
  text-align: center;
  color: #fff;
}

.queen-text-headline{
  font-size: 64px;
  line-height: 72px;
  font-weight: normal;
  opacity: 0;
}

.queen-text-headline.show{
  opacity: 1;
  transform: translateY(0);
}

.queen-text-sub{
  font-weight: normal;
  font-size: 32px;
  line-height: 40px;
  opacity: 0;
}

.queen-text-sub.show{
  opacity: 1;
  transform: translateY(0);
}

/* Loading --------------------------------------------------------- */

.loading-container{
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #11111a;

}

.loading-text-container{
  position: absolute;
  bottom: 40px;
  padding-left: 40px;
  color: #fff;
}

.loading-text-line{
  width: 100%;
  height: 56px;
  opacity: 0;
}

/* INTRO --------------------------------------------------------- */

.intro-container{
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: #fff;
}

.intro-text-container{
  position: absolute;
  bottom: 40px;
  padding-left: 40px;
  color: #11111a;
}

.intro-text-container.not-found{
  color: #fff;
}

.intro-text-mobile{
  position: absolute;
  left: 0px;
  bottom: 0px;
  padding: 24px 32px 16px 16px;
  font-size: 26px;
  line-height: 32px;
  max-width: 375px;
  display: none;
}

.intro-text-mobile.not-found{
 color: #fff;
}

.intro-text-mobile-title{
  font-size: 26px;
}

.intro-text-line{
  width: 100%;
  height: 56px;
  opacity: 1;
}

.intro-text-mobile a, 
.intro-text-line a{
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #11111a;
  border-bottom: 1px solid rgba(17, 17, 26, 0.1);
}

.intro-text-mobile a:after,
.intro-text-line a:after {
  content: "";
  position: absolute;
  width: 30%;
  height: 1px;
  bottom: -1px;
  left: 0;
  background-color: #11111a;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

.intro-text-mobile a:hover:after,
.intro-text-line a:hover:after {
  width: 100%;
  opacity: 0.3;
}

.intro-dash{
  display: inline-block;
  width: 48px;
  height: 2px;
  background-color: #11111a;
  margin-bottom: 12px;
}

#intro-down-arrow{
  width: 64px;
  height: 64px;
  position: absolute;
  bottom: 36px;
  right: 38px;
  background: transparent url("../images/icon-down-arrow-straight-black-40.svg") no-repeat center;
  background-size: 40px 40px;
  opacity: 0;
}

#intro-down-arrow:hover{
  cursor: pointer;
  /*border: 1px solid rgba(17, 17, 26, 0.1);*/
}

/* MENU ---------------------------------------------------------- */

.menu-container{
  position: fixed;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 1;
  background-color: #11111a;
  padding: 0px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 2000;

}

.menu-inner-container{
  position: absolute;
  bottom: -184px;
  left: 0px;
  width: 100%;
  background-color: #11111a;
}

.menu-block{
  padding-left: 40px;
  color: #fff;
}

#scrollbar-hider{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 30px;
  height: 100%;
  background-color: #11111a;
  z-index: 2001;
}

.not-clone,
.is-clone{
  color: #fff;
}

.menu-right-container{
  position: fixed;
  bottom: 40px;
  right: 40px;
  color: #fff;
  text-align: right;
  z-index: 2002;
}

.menu-text-container{
  color: #fff;
  padding-left: 40px;
}

.menu-text-line{
  height: 56px;
  opacity: 1;
}

.menu-text{
  position: relative;
  display: inline-block;
  cursor: default;
}

.menu-new{
  display: inline-block;
  height: 56px;
  line-height: 56px;
  margin-left: 8px;
  border: 1px solid #99999a;
  border-radius: 28px;
  padding-left: 12px;
  padding-right: 12px;
}

.menu-text.menu-input{
  display: none;
}

.menu-text:hover{
  cursor: pointer;
}

.menu-text:after {
  content: "";
  position: absolute;
  width: 30%;
  height: 1px;
  bottom: -1px;
  left: 0;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

.menu-text:hover:after {
  width: 100%;
  opacity: 0.2;
}


#menu-icon-container{
  width: 32px;
  height: 32px;
  position: absolute;
  top: 32px;
  left: 32px;
  opacity: 0;
  z-index: 3000;

}

.menu-icon{
  width: 16px;
  height: 16px;
  margin: 8px;
  background-color: #11111a;
  box-sizing: border-box;
  border-radius: 100%;
}

#menu-icon-container:hover{
  cursor: pointer;
}

#menu-icon-container:hover .menu-icon{
  
}

#menu-icon-container.open .menu-icon{
  
  background-color: #fff;
  
  -webkit-box-shadow: 0px 4px 32px 0px rgba(17,17,26,0.6);
  -moz-box-shadow: 0px 4px 32px 0px rgba(17,17,26,0.6);
  box-shadow: 0px 4px 32px 0px rgba(17,17,26,0.6);

}

/* CONTENT ------------------------------------------------------- */

.content-container{
  position: relative;
  width: 100%;
  background-color: #fff;
  box-sizing: border-box;
  padding: 16px 16px 16px 16px;

}

.content-image{
  position: relative;
  width: 100%;
  min-height: 120px;
  background-color: #F5F8FA;
  margin-bottom: 16px;
}

.content-image img{
  width: 100%;
}

.content-description{
  margin: 80px 0px 96px 8px;
  font-size: 32px;
  line-height: 40px;
  max-width: 900px;
}

/* FOOTER -------------------------------------------------------- */

.footer-container{
  position: relative;
  width: 100vw;
  min-height: 100vh;
  background-color: #fff;
  color: #11111a;
  overflow: hidden;
}

.footer-text-container{
  position: absolute;
  bottom: 40px;
  left: 40px;
}

.footer-text-line{

  height: 56px;
  opacity: 1;
}

.footer-text{
  position: relative;
  display: inline-block;
  cursor: default;
}

.footer-text:hover{

  cursor: pointer;
}

.footer-text:after {
  content: "";
  position: absolute;
  width: 30%;
  height: 1px;
  bottom: -1px;
  left: 0;
  background-color: #11111a;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

.footer-text:hover:after {
  width: 100%;
  opacity: 0.1;
}

#footer-up-arrow{
  width: 64px;
  height: 64px;
  position: absolute;
  background: transparent url("../images/icon-up-arrow-straight-black-40.svg") no-repeat center;
  background-size: 40px 40px;
  bottom: 36px;
  right: 38px;
}

#footer-up-arrow:hover{
  cursor: pointer;
  /*border: 1px solid rgba(17, 17, 26, 0.1);*/
}

.about-row{
  padding-left: 24px;
  margin-bottom: 56px;
}

.about-row.last{
  margin-bottom: 24px;
}

.about-row .label{

  font-size: 32px;
  line-height: 72px;
  margin-left: 2px;

}

.about-row .value{
  max-width: 1024px;
}

.small-print{
  margin-top: 32px;
  font-size: 20px;
  line-height: 24px;
}

.about a{
  position: relative;
  text-decoration: none;
  color: #11111a;
  border-bottom: 1px solid rgba(17, 17, 26, 0.1);
}

.about a:after {
  content: "";
  position: absolute;
  width: 30%;
  height: 1px;
  bottom: -1px;
  left: 0;
  background-color: #11111a;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

.about a:hover:after {
  width: 100%;
  opacity: 0.3;
}

#resize-container{

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: none;
  z-index: 9001;

  background-color: #ff4962;
  
  background: #ff4962; /* Old browsers */
  background: -moz-linear-gradient(45deg, #ff4962 0%, #ff40f5 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, #ff4962 0%,#ff40f5 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #ff4962 0%,#ff40f5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff4962', endColorstr='#ff40f5',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

}

#resize-container.show{
  display: block;
}

#resize-text{
  color: #fff;
  position: absolute;
  bottom: 40px;
  left: 40px;
}

#resize-value{
  color: #fff;
  position: absolute;
  bottom: 40px;
  right: 40px;
  text-align: right;
}

.grid-line-h{
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 0.2;

}

#grid-line-h-0{
  top: 38px;
  left: 0px;
}

#grid-line-h-1{
  top: 50%;
  left: 0px;
}

#grid-line-h-2{
  bottom: 44px;
  left: 0px;
}

.grid-line-v{
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #fff;
  opacity: 0.2;

}

#grid-line-v-0{
  top: 0px;
  left: 16px;
}

#grid-line-v-1{
  top: 0px;
  left: 38px;
}

#grid-line-v-2{
  top: 0px;
  right: 38px;
}

#grid-line-v-3{
  top: 0px;
  right: 16px;
}



@media (max-width: 1239px) {

.queen-text-headline{
  font-size: 40px;
  line-height: 48px;
}

.queen-text-sub{
  font-size: 20px;
  line-height: 32px;
}

#resize-text{
  
  bottom: 32px;
  left: 32px;
  font-size: 40px;
  line-height: 48px;
}

#resize-value{
  bottom: 32px;
  right: 32px;
  font-size: 40px;
  line-height: 48px;
}

#grid-line-h-0{
  top: 30px;
}

#grid-line-h-2{
  bottom: 36px;
}

#grid-line-v-0{
  left: 16px;
}

#grid-line-v-1{
  left: 30px;
}

#grid-line-v-2{
  right: 30px;
}

#grid-line-v-3{
  right: 16px;
}

.about-row{
  font-size: 40px;
  line-height: 48px;
  padding-left: 16px;
  margin-bottom: 48px;
}

.about-row.last{
  margin-bottom: 16px;
}

.about-row .label{
  line-height: 64px;
}

.about-row .value{
  max-width: 840px;
}


.loading-text-line,
.intro-text-line,
.footer-text-line,
.menu-text-line{
  font-size: 40px;
  line-height: 48px;
  height: 48px;
}

.loading-text-container,
.intro-text-container,
.menu-inner-container{
  bottom: 32px;
}

.menu-right-container{
  bottom: 32px;
  right: 32px;
}

.loading-text-container,
.intro-text-container,
.menu-text-container{
  padding-left: 32px;
}

#menu-icon-container{
  top: 24px;
  left: 24px;
}

.footer-text-container{
  bottom: 32px;
  left: 32px;
}

#intro-down-arrow,
#footer-up-arrow{
  width: 40px;
  height: 40px;
  bottom: 35px;
  right: 32px;
  background-size: 32px 32px;
}


.intro-dash{
  width: 40px;
  height: 2px;
  margin-bottom: 11px;
}


/*
@media (max-width: 1023px) {

.intro-text-line,
.footer-text-line,
.menu-text-line{
  font-size: 44px;
  line-height: 48px;
  height: 48px;
}

.intro-text-container,
.menu-inner-container{
  bottom: 32px;
  
}

.intro-text-container,
.menu-text-container{
  padding-left: 36px;
}

.intro-dash{
  width: 36px;
  height: 2px;
  margin-bottom: 10px;
}

#menu-icon-container{
  top: 28px;
  left: 28px;
}

.intro-down-arrow,
.footer-up-arrow{
  width: 44px;
  height: 44px;
  bottom: 36px;
  right: 36px;
}


}

*/

@media (max-width: 959px) {

.queen-text-headline{
  font-size: 32px;
  line-height: 40px;
}

.queen-text-sub{
  font-size: 16px;
  line-height: 20px;
}

#resize-text{
  
  bottom: 24px;
  left: 24px;
  font-size: 32px;
  line-height: 40px;
}

#resize-value{
  bottom: 24px;
  right: 24px;
  font-size: 32px;
  line-height: 40px;
}

#grid-line-h-0{
  top: 22px;
}

#grid-line-h-2{
  bottom: 28px;
}

#grid-line-v-0{
  left: 16px;
}

#grid-line-v-1{
  left: 22px;
}

#grid-line-v-2{
  right: 22px;
}

#grid-line-v-3{
  right: 16px;
}


.about-row{
  font-size: 32px;
  line-height: 40px;
  padding-left: 8px;
  margin-bottom: 40px;
}

.about-row.last{
  margin-bottom: 8px;
}

.about-row .label{

  font-size: 26px;
  line-height: 48px;
  margin-left: 2px;
}

.about-row .value{
  max-width: 680px;
}

.loading-text-line,
.intro-text-line,
.footer-text-line,
.menu-text-line{
  font-size: 32px;
  line-height: 40px;
  height: 40px;
}

.loading-text-container,
.footer-text-container,
.intro-text-container,
.menu-inner-container{
  bottom: 24px;
}

.menu-right-container{
  bottom: 24px;
  right: 24px;
}

.footer-text-container{
  left: 24px;
}

.loading-text-container,
.intro-text-container,
.menu-text-container{
  padding-left: 24px;
}

#menu-icon-container{
  top: 16px;
  left: 16px;
}

#intro-down-arrow,
#footer-up-arrow{
  width: 32px;
  height: 32px;
  bottom: 30px;
  right: 24px;
  background-size: 24px 24px;
}

.intro-dash{
  width: 32px;
  height: 2px;
  margin-bottom: 8px;
}





}

@media (max-width: 767px) {


.queen-image{
  left: 50%;
  top: 50%;
  width: 80%;
  transform: translate(-50%, -60%);
}

.queen-text{
  left: 50%;
  top: unset;
  bottom: 32px;
  transform: translate(-50%, -50%);
}


.no-mobile{
  display: none;
}

#resize-text{
  
  bottom: 16px;
  left: 16px;
  font-size: 26px;
  line-height: 32px;
}

#resize-value{
  bottom: 16px;
  right: 16px;
  font-size: 26px;
  line-height: 32px;
}

#grid-line-h-0{
  top: 14px;
}

#grid-line-h-2{
  bottom: 18px;
}

#grid-line-v-0{
  left: 14px;
}

#grid-line-v-1{
  display: none;
}

#grid-line-v-2{
  display: none;
}

#grid-line-v-3{
  right: 14px;
}


.about-row{
  font-size: 26px;
  line-height: 32px;
  padding-left: 0px;
  margin-bottom: 32px;
}

.about-row.last{
  margin-bottom: 0px;
}

.about-row .label{

  font-size: 26px;
  line-height: 48px;
  margin-left: 0px;
}

.about-row .value{
  max-width: 375px;
  padding-right: 16px;
}

.loading-text-line,
.intro-text-line,
.footer-text-line,
.menu-text-line{
  font-size: 26px;
  line-height: 32px;
  height: 32px;
}

.menu-right-container{
  bottom: 16px;
  right: 16px;
}

.intro-text-container{
  display: none;
}

.intro-text-mobile{
  display: block;
}

.loading-text-container,
.footer-text-container,
.intro-text-container,
.menu-inner-container{
  bottom: 16px;
}

.footer-text-container{
  left: 16px;
}

#menu-icon-container{
  top: 8px;
  left: 8px;
}

.loading-text-container,
.menu-text-container{
  padding-left: 16px;
}

#intro-down-arrow,
#footer-up-arrow{
  display: none;
}

#menu-icon-container.open{
  display: none;
}


}

@media (max-width: 499px) {

  .small-mobile-only{
    display: block;
  }

  .intro-container{
    height: 100%;
  }

  /*
  #menu-block-1,
  #menu-block-2,
  #menu-block-3{
    display: none;
  }


  #menu-block-0{
    position: absolute;
    bottom: 16px;
  }
  */

  .menu-container{
    overflow: hidden;
  }

}









