@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* outline: 1px solid red; */
}

.fix-h100 {
  min-height: 100px;
}

.apps {
  align-content: center;
  justify-content: center;
}

.logo {
  color: #363b8f;
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 100.4%; /* 193.934px */
  letter-spacing: 3.863px;
  text-transform: uppercase;
}

a.apps {
  text-decoration: none;
}

* {
  font-family: "Montserrat", sans-serif;
}

h2 {
  font-weight: 600 !important;
}

.logo_apple {
  height: 60px;
}

.hero {
  padding: 0px 50px;
}

/* if its mobile make fonts smaller */
@media (max-width: 768px) {
  .logo {
    font-size: 30px;
  }
  .logo_apple {
    height: 50px;
  }
  * {
    font-size: 14px;
  }
  img.ui {
    padding-top: 30px;
  }
}

footer {
  height: 80px;
}

.arrow-down {
  opacity: 0.5;
  /* bouncing arrow down */
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(30px);
  }
  60% {
    transform: translateY(15px);
  }
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.spinner {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(farthest-side, #6c73fa 94%, #0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%, #6c73fa);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
  animation: l13 1s infinite linear;
  /* place in the center */
  position: absolute;
  top: 50%;
  left: 50%;
}
@keyframes l13 {
  100% {
    transform: rotate(1turn);
  }
}


video {
  width: 100%;
  height: auto;
  /*  */
}