* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  background-color: #000;
  scroll-behavior: smooth;
  font-family: "Source Sans Pro", sans-serif;
}

#videoawrap {
  height: 100vh !important;
  width: 100vw !important;
  position: fixed;
  margin-top: 0;
  margin-left: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -2;
  background: rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#videoawrap .close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  color: #fff;
  z-index: 300;
}

#videoawrap #videoAndr {
  height: 80vh !important;
  pointer-events: all;
  opacity: 1;
  z-index: -2;
}

#videoawrap.show {
  pointer-events: all;
  opacity: 1;
  z-index: 2;
}

#videoawrap.show #videoAndr {
  z-index: 2;
}

.tutorial-wrapper {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.5 ease-out;
  transition: all 0.5 ease-out;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tutorial-wrapper .page-one {
  position: absolute;
  left: 50vw;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  height: 600px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  pointer-events: none;
  opacity: 0;
  color: #fff;
  z-index: -1;
}

.tutorial-wrapper .page-one #videoIOs {
  position: absolute;
  height: 0;
  visibility: hidden;
  pointer-events: none;
}

.tutorial-wrapper .page-one h2 {
  color: #fff;
}

.tutorial-wrapper .page-one p {
  width: 200px;
  text-align: center;
  color: #fff;
}

.tutorial-wrapper .page-one .step {
  color: #fff;
}

.tutorial-wrapper .intro {
  position: absolute;
  left: 50vw;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  height: 300px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tutorial-wrapper .intro h2 {
  color: #fff;
}

.tutorial-wrapper .intro p {
  width: 200px;
  text-align: center;
  color: #fff;
}

.tutorial-wrapper .intro .step {
  color: #fff;
}

.tutorial-wrapper .intro.slide {
  -webkit-transform: translate(-120vw, 0);
          transform: translate(-120vw, 0);
}

.tutorial-wrapper .page-one video.show {
  opacity: 1;
  pointer-events: all;
}

.tutorial-wrapper .page-one.show {
  opacity: 1;
  pointer-events: all;
}

.tutorial-wrapper .tut-button {
  background-color: #fff;
  color: #000;
  padding: 16px 30px;
  border-radius: 50px;
}

.tutorial-wrapper .tut-button:hover {
  background-color: #d6d6d6;
}

.tutorial-wrapper .tut-button-second {
  margin-top: 8px;
  text-align: center;
  border: 1px solid;
  color: #fff;
  padding: 16px 30px;
  border-radius: 50px;
}

.tutorial-wrapper .tut-button-second:hover {
  background-color: #d6d6d6;
  color: #000;
}

.tutorial-wrapper.show {
  pointer-events: all;
  opacity: 1;
  z-index: 0;
}

.menubar {
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100vw;
  background: -webkit-gradient(linear, left top, left bottom, from(#000), to(transparent));
  background: linear-gradient(#000, transparent);
  padding: 1rem;
}

.menubar .logo img {
  width: 20vw;
}

.grid {
  min-height: 100vh;
  padding: 0 1vw 2vw 1vw;
  width: 100vw !important;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

.grid-item {
  width: calc(49vw - 2.5px);
  border-radius: 12px;
  overflow: hidden;
}

.grid-item img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}

.modal {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-transition: 0.25s ease-out;
  transition: 0.25s ease-out;
}

.modal.open {
  opacity: 1;
  pointer-events: all;
}

.full-img {
  position: absolute;
  width: 85%;
  top: 50%;
  left: 50%;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translate(-50%, -50%) scale(0.75);
          transform: translate(-50%, -50%) scale(0.75);
}

.full-img.open {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.noscroll {
  -webkit-overflow: hidden;
  overflow: hidden;
}

.floating-action {
  width: 50px;
  height: 50px;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  bottom: calc(env(safe-area-inset-bottom) + 0.5rem);
  right: calc(env(safe-area-inset-right) + 0.5rem);
  -webkit-transition: 0.25s ease-out;
  transition: 0.25s ease-out;
}

.floating-action:active {
  -webkit-transform: scale(1);
          transform: scale(1);
  background: rgba(0, 0, 0, 0.7);
}

.hide {
  opacity: 0;
  pointer-events: none;
}

.next {
  height: 50px;
  width: 50px;
  position: fixed;
  border-radius: 25px;
  bottom: calc(env(safe-area-inset-bottom) + 2rem);
  right: calc(env(safe-area-inset-right) + 2rem);
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.prev {
  height: 50px;
  width: 50px;
  border-radius: 25px;
  position: fixed;
  bottom: calc(env(safe-area-inset-bottom) + 2rem);
  left: calc(env(safe-area-inset-left) + 2rem);
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.prev:active,
.next:active {
  background: rgba(255, 255, 255, 0.5);
}

.didascalia {
  position: absolute;
  bottom: calc(calc(env(safe-area-inset-bottom) + 2rem) + 15px);
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  color: #fff;
  font-size: 18px;
}

.loader-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

#lstatus {
  color: #fff;
}

.footer {
  text-align: center;
  color: #fff;
  width: 100%;
}

#share {
  position: absolute;
  z-index: 1;
  left: 50vw;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  background: #fff;
  border-radius: 4px;
  padding: 0.7rem 1.4rem;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

#share span {
  color: #000;
}

#share:active {
  background: #c5c5c5;
}
/*# sourceMappingURL=style.css.map */