* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  font-family: sans-serif;
}

img{
  -webkit-user-select: none;
  -moz-user-select: -moz-none;
  -o-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

body {
  background: #ece9e6;
}

html {
  overflow-x: hidden;
  font-size: 16px;
  scroll-behavior: smooth;
}

a {
  color: #232526;
  text-decoration: none;
  cursor: pointer;
}

i {
  margin: 0 0.5vw;
}

@media only screen and (max-width: 900px) {
  .popup-container {
    width: 80vw !important;
    padding: 5vh 1vw !important;
  }
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 0;
  background-color: #232526;
  width: 100vw;
  color: #fdfffc;
  height: 12vh;
  z-index: 100;
  padding: 0;
}

.navbar-logo {
  height: 9vh;
}

.navbar-content {
  width: 90vw;
  margin: 0 5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5rem;
  height: inherit;
}

.nav-items {
  height: 10vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 60vw;
}

.nav-item {
  padding: 0 1vw;
  line-height: 10vh;
  color: #fdfffc;
  text-decoration: none;
}

a.nav-item:hover{
  color: rgba(255,255,255,0.7);
}

.submenu a:hover{
  color: #000;
}

a.signUpBtn:hover{
  color: #fff;
}

.signUpBtn {
  border: 2px solid #ff5733;
  background-color: #ff5733;
  border-radius: 1rem;
  font-size: 1.25rem;
  padding: 1% 2%;
}

.dropdown {
  position: relative;
}

.submenu {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  line-height: 6vh;
  font-size: 1.25rem;
  background: #fdfffc;
  color: #232526;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform-origin: top;
      -ms-transform-origin: top;
          transform-origin: top;
  border-radius: 0 0 5px 5px;
}

.submenu a {
  padding: 0 1vw;
}
.submenu a:hover {
  background-color: #ece9e6;
}

.dropdown:hover .submenu {
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
}

.nav-btn-open {
  display: none;
}

.nav-mobile {
  display: none;
}

.loginSignupMobile {
  position: absolute;
  width: 100vw;
  bottom: 10vh;
  display: flex;
  flex-direction: column;
}

@media only screen and (max-width: 1200px) {
  a {
    color: unset;
    font-weight: normal;
  }

  .nav-items {
    display: none;
  }

  .nav-item {
    color: #fff;
    font-weight: bold;
  }
  
  .nav-btn-open {
    display: block;
    background-color: transparent;
    border: none;
  }

  .nav-mobile {
    margin-right: -100vw;
    width: 100vw;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 101;
    height: 100vh;
    padding: 10vh 5vw;
    font-size: 1.5rem;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(50px);
            backdrop-filter: blur(50px);
  }

  .submenu-mobile {
    padding-left: 5vw;
    height: 0;
    overflow: hidden;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }

  .submenu-mobile li {
    line-height: 5vh;
  }

  .nav-btn-close {
    background-color: transparent;
    border: none;
    position: absolute;
    top: 5vh;
    right: 5vw;
  }

  .loginBtn {
    width: 90vw;
    text-align: center;
  }

  .signUpBtn {
    width: 90vw;
    text-align: center;
    padding: 2%;
  }
}

/* HERO */

.hero-container {
  background: #232526;
  margin-top: 10vh;
  height: 90vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 5vw;
}

.hero-text {
  width: 40vw;
}

.hero-head {
  font-size: 3rem;
  color: #fdfffc;
  padding-bottom: 5vh;
}

.hero-desc {
  font-size: 1.75rem;
  color: #fdfffc;
  opacity: 0.7;
  padding-bottom: 5vh;
}

.hero-cta {
  color: #232526;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: transparent;
  width: 33%;
}

.hero-cta-mobile {
  display: none;
}

.right-arr {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  aspect-ratio: 1;
  display: -ms-grid;
  display: grid;
  place-items: center;
  background-color: #ff5733;
  border-radius: 4vh;
  height: 8vh;
  width: 8vh;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  -webkit-transition-delay: 0.2s;
       -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.hero-cta-content {
  background-color: #ff5733;
  border-radius: 0 4vh 4vh 0;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  height: 8vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 5%;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

.hero-cta:hover .hero-cta-content {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition-delay: 0.2s;
       -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.hero-cta:hover .right-arr {
  border-radius: 4vh 0 0 4vh;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

.scroll {
  position: absolute;
  left: 50vw;
  bottom: 5vh;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: bounce 0.5s infinite alternate ease-out;
          animation: bounce 0.5s infinite alternate ease-out;
}

@-webkit-keyframes bounce {
  from {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }

  to {
    -webkit-transform: translate(-50%, 2vh);
            transform: translate(-50%, 2vh);
  }
}

@keyframes bounce {
  from {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }

  to {
    -webkit-transform: translate(-50%, 2vh);
            transform: translate(-50%, 2vh);
  }
}

@media only screen and (max-width: 900px) {
  .hero-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    height: unset;
    padding: 5vh 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 10vh;
  }

  .scroll {
    display: none;
  }

  .hero-text {
    width: 80vw;
    margin-top: 5vh;
    text-align: center;
    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;
  }

  .hero-head {
    font-size: 2rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-cta {
    display: none;
  }

  .hero-cta-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 4vh;
    border: none;
    background-color: #ff5733;
    color: #232526;
    font-size: 1.25rem;
    padding: 5%;
  }
}

/* USE Anywhere */

.whyGSheet {
  background: #ece9e6;
  color: #232526;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20vh 5vw;
  width: 100vw;
}

.whyGSheet-img {
  position: relative;
  width: 40vw;
  height: 60vh;
}

.whyGSheet-logo {
  width: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.whyGSheet-logo-top {
  top: 20%;
}
.whyGSheet-logo-left {
  left: 20%;
}
.whyGSheet-logo-right {
  left: 80%;
}
.whyGSheet-logo-bottom {
  top: 80%;
}

.whyGSheet-text {
  width: 40vw;
  text-align: left;
}

.whyGSheet-head {
  font-size: 4rem;
  padding-bottom: 5vh;
}

.whyGSheet-desc {
  font-size: 1.5rem;
  line-height: 3rem;
  opacity: 0.7;
}

@media only screen and (max-width: 900px) {
  .whyGSheet {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 10vh 5vw;
  }

  .whyGSheet-text {
    width: 90vw;
  }

  .whyGSheet-head {
    font-size: 2rem;
    text-align: center;
  }

  .whyGSheet-desc {
    font-size: 1rem;
    line-height: 2rem;
  }

  .whyGSheet-img {
    width: 50vw;
    height: 30vh;
    margin: 5vh;
  }
  .whyGSheet-logo-top {
    top: 10%;
  }
  .whyGSheet-logo-left {
    left: 10%;
  }
  .whyGSheet-logo-right {
    left: 90%;
  }
  .whyGSheet-logo-bottom {
    top: 90%;
  }
}

/* PRODUCTS */

.reverse-row-flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.reverse-row-flex .product-item-txt {
  padding: 0 0 0 10vw;
}

.products {
  width: 100vw;
  padding: 20vh 10vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -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-color: #414345;
}

.products-head {
  font-size: 4rem;
  color: #fff;
}

.products-sub {
  font-size: 1.25rem;
  opacity: 0.7;
  padding-top: 5vh;
  color: #fff;
}

.product-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10vh;
  margin: 15vh 0;
  -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);
  border-radius: 5rem;
  background-color: rgba(35, 37, 38, 0.5);
  width: 80vw;
}

.product-item img{
  width: 27vw;
}

.product-item-txt {
  width: 40vw;
  padding-right: 10vw;
}

.product-item-head {
  font-size: 3rem;
  line-height: unset;
  color: #fff;
}

.product-item-desc {
  font-size: 1.5rem;
  line-height: 3rem;
  opacity: 0.7;
  color: #fff;
}

@media only screen and (max-width: 900px) {
  .products {
    padding: 10vh 5vw;
  }

  .products-head {
    font-size: 2rem;
  }

  .products-sub {
    text-align: center;
  }

  .product-item {
    padding: 5vh;
    border-radius: 2rem;
    margin: 0;
    margin-top: 10vh;
  }

  .product-item img {
    display: none;
  }

  .product-item-txt {
    width: unset;
    padding: 0 !important;
  }

  .product-item-head {
    font-size: 2rem;
  }

  .product-item-desc {
    font-size: 1rem;
    line-height: 2rem;
  }
}

/* VIDEO */

.video {
  padding: 20vh 10vw;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.video-head {
  font-size: 4rem;
}

.video-desc {
  text-align: center;
  opacity: 0.7;
  font-size: 1.25rem;
  padding: 5vh 0 10vh 0;
}

.video-container {
  width: 60vw;
}

.video-cta {
  position: relative;
  width: inherit;
}

.video-button {
  background-color: #ff5733;
  -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding: 5vh 5vw;
  font-size: 2.5rem;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.video-cta iframe {
  width: inherit;
  aspect-ratio: 2.025;
  display: none;
}

.video-cta:nth-child(1) {
  z-index: 7;
}
.video-cta:nth-child(2) {
  z-index: 6;
}

.video-cta:nth-child(3) {
  z-index: 5;
}

.right-arrow {
  width: 3vw;
  -webkit-transition-duration: 1s;
       -o-transition-duration: 1s;
          transition-duration: 1s;
}

@media only screen and (max-width: 900px) {
  .video {
    padding: 10vh 5vw;
  }

  .video-head {
    font-size: 2rem;
    text-align: center;
  }

  .video-desc {
    font-size: 1rem;
  }

  .video-container {
    width: 80vw;
  }

  .video-button {
    padding: 3vh 5vw;
    font-size: 1.5rem;
  }
}

/* FOOTER */
.footer {
  background: url("../assets/images/footer-bg.png"), #232526;
  background-repeat: no-repeat;
  background-size: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  padding: 5vw 5vw 0 5vw;
}

.footer-illustration {
  position: absolute;
  right: 0;
  top: -10vh;
  height: 60vh;
}

.footer-txt {
  width: 30vw;
  color: #ece9e6;
}

.footer-head {
  font-size: 3rem;
  color: #ece9e6;
  padding-left: 2vw;
}

.footer-desc {
  color: #ece9e6;
  font-size: 1rem;
  line-height: 2rem;
}

.social-logos a {
  color: #ece9e6;
  margin: 5vh 5vh 0 0;
  font-size: 1.5rem;
}

@media only screen and (max-width: 900px) {
  .footer-illustration {
    display: none;
  }

  .footer-txt {
    width: 80vw;
  }

  .footer-txt p img {
    width: 20%;
  }

  .footer-head {
    font-size: 2rem;
  }
}