@media (max-width: 1020px) {
  #character {
    max-width: 60%;
    max-height: 40%;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: -1;
  }
}

@media (max-width: 1299px) {
  #background-video {
    width: 80%;
    position: fixed;
    left: -10%;
    bottom: -3%;
    z-index: -2;
  }

  .robot {
    max-width: 60%;
    max-height: 40%;
    position: fixed;
    z-index: -1;
    bottom: 0;
  }

  body {
    margin: 0;
    margin-top: -20px;
    padding: 0;
    color: #eee;
    font-family: 'Orbitron', sans-serif;
    background-color: #15141d;
  }

  .Footer {
    height: 50px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    bottom: 0;
    background-color: #00021b;
  }

  .Footer__link {
    margin: 0 10px;
    text-transform: uppercase;
    font-size: 10px;
  }

  .Frame {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    box-sizing: border-box;
    top: 5%;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 92%;
    max-height: 55%;
    width: 100%;
    height: calc(100% - 70px);
    padding: 5% 3%;
    z-index: 200;
  }

  .Frame > div {
    max-width: 100%;
  }

  .Buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 0 15px;
  }

  .Buttons__item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: 50%;
    margin: 0 10px;
    width: 320px;
    height: 70px;
    cursor: pointer;
    opacity: 1;
    background-image: url('../assets/btn.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .Buttons__item__img {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: fill;
    position: absolute;
  }

  .Buttons__item__text {
    font-size: 15px;
    position: relative;
    text-transform: uppercase;
  }

  .Buttons__item:hover {
    opacity: 1;
  }

  .Steps {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    width: 100%;
  }

  .Steps__text {
    margin: 0 25px;
    font-size: 18px;
    font-weight: 700;
    min-width: 100px;
    text-align: center;
  }

  .Steps__arrow {
    padding: 0px;
    cursor: pointer;
    height: 40px;
    opacity: 1;
    filter: grayscale(100%);
  }

  .Steps__arrow img {
    height: 100%;
  }

  .Text {
    position: relative;
    text-align: center;
    padding: 10px 20px;
    overflow: overlay;
    width: 100%;
    box-sizing: border-box;
  }

  .Text::-webkit-scrollbar-button {
    background-repeat: no-repeat;
    width: 5px;
    height: 0;
  }

  .Text::-webkit-scrollbar-track {
    background-color: rgba(236, 237, 238, 0.3);
  }

  .Text::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: rgba(109, 192, 200, 0.5);
  }

  .Text::-webkit-scrollbar-thumb:hover {
    background-color: rgba(86, 153, 159, 0.5);
  }

  .Text::-webkit-resizer {
    background-repeat: no-repeat;
    width: 4px;
    height: 0;
  }

  .Text::-webkit-scrollbar {
    width: 4px;
  }

  .Text__item {
    font-size: 16px;
    margin: 35px 0;
    width: 100%;
  }

  .browser {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    width: 100%;
  }

  .browser__img {
    width: 35px;
    height: 35px;
    margin-right: 20px;
  }

  .Loading {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    width: 100%;
    width: 90%;
    margin: 0 5%;
  }

  .Loading__item {
    height: 60px;
  }

  .Loading__item--left {
    background: #f3edd1;
  }

  .Loading__item--right {
    background: grey;
  }

  #content {
    background-image: url('../assets/box2.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }

  a {
    color: #f3edd1;
    text-decoration: none;
  }

  .meter {
    box-sizing: content-box;
    height: 60px;
    /* Can be anything */
    position: relative;
    margin: 60px 0 20px 0;
    /* Just for demo spacing */
  }

  .meter > span {
    display: block;
    height: 100%;
    border-radius: 8px;
    background-color: rgb(150, 150, 150);
    background-image: linear-gradient(
      center bottom,
      rgb(110, 110, 110) 37%,
      rgb(252, 252, 252) 69%
    );
    box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3),
      inset 0 -2px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
  }

  .meter > span:after,
  .animate > span {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.2) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.2) 75%,
      transparent 75%,
      transparent
    );
    z-index: 1;
    background-size: 50px 50px;
    animation: move 2s linear infinite;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    overflow: hidden;
  }

  .animate > span:after {
    display: none;
  }

  @keyframes move {
    0% {
      background-position: 0 0;
    }

    100% {
      background-position: 50px 50px;
    }
  }

  #promo-div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-height: 80px;
    font-size: 14px;
  }

  #promo-div > H2 {
    font-family: 'Impact', 'Franklin Gothic Medium';
    font-weight: 300;
    background: -webkit-linear-gradient(#eee, #c098db);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
  }

  #promo-div > H2 > #v {
    font-size: 23px;
  }

  .prom-img {
    max-width: 90%;
    max-height: 180px;
  }
}
