@import url(./fonts/HelveticaNeueLTPro/stylesheet.css);

body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue LT Pro', 'sans-serif';
  background-color: #0d2d43;
}

*,
::after,
::before {
  box-sizing: border-box;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
}

.video-background {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: 0;
}

.header {
  position: relative;
  z-index: 1;
  height: 80px;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 0;
}

.header-wrapper .logo {
  height: 40px;
}

.header-wrapper .logo-nu {
  height: 64px;
}

.main {
  position: relative;
  z-index: 1;
}
.main .main-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 70vh;
}

.main .main-wrapper h1 {
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #FFF;
  margin: 0;
  padding: 0;
  padding-bottom: 42px;
}

.main .main-wrapper a {
  padding: 12px 16px;
  border-radius: 68px;
  text-decoration: none;
  background: linear-gradient(90deg, #00E3C7 0%, #0047FF 100%);
  border: 3px solid #01DCCA;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main .main-wrapper a span {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  padding-top: 5px;
}

.footer {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.12);
}

.footer-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.footer-wrapper a {
  font-size: 12px;
  color: #FFF;
  text-decoration: none;
}

.footer-wrapper .left span {
  font-size: 12px;
  color: #FFF;
  margin: auto;
}

.footer-wrapper .right {
  display: flex;
  gap: 16px;
}

@media only screen and (max-width: 1024px) {
  .container {
    padding: 16px;
  }
  .logo {
    height: 30px !important;
  }
  .main h1 {
    font-size: 27px !important;
    margin-bottom: 20px !important;
  }
  .footer-wrapper {
    flex-direction: column-reverse;
    height: unset;
    gap: 16px;
  }
  .right {
    text-align: center;
  }
  .right a {
    font-size: 11px;
  }
  .img {
    width: 40%;
  }
}
