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

html,
body {
  width: 100%;
  height: 100%;
  font-style: normal;
  color: #FFFFFF;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Questrial", serif;
}

p {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 1.3px;
}

input:focus-visible,
input {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #FFFFFF;
  font-weight: 300;
  letter-spacing: 1.3px;
  outline: 0px !important;
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

#bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2rem;
  z-index: 1;
  margin-bottom: 25px;
}

.logo img {
  width: 10%;
}

.content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  padding: 2rem;
}

.coming-soon-content {
  max-width: 100%;
  text-align: left;
}

.coming-soon-content p:first-child {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  margin-left: .5rem;
}

h1 {
    font-size: 4rem;
    font-weight: 550;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-bottom: 3rem;
    margin-top: 1rem;
}

h3 {
  margin-bottom: 2.5rem;
}

p {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.coming-soon-content p:nth-child(3) {
  margin-bottom: 2.5rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  width: 45%;
}

.newsletter-form label {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: .9rem;
  letter-spacing: 1.3px;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.newsletter-form input[type="email"] {
  padding: 0.5rem;
  margin-bottom: 1.5rem;
  border: none;
  border-radius: 25px;
  width: 100%;
  background-color: #6262624a;
  border: 1px solid #c6c6c6;
}

.checkbox-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.checkbox-container input[type="checkbox"] {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  filter: sepia(100%) brightness(80%) hue-rotate(170deg) saturate(70%) contrast(300%);
}

input[type="checkbox"]:focus-visible,
input[type="checkbox"]:focus {
  filter: sepia(100%) brightness(80%) hue-rotate(170deg) saturate(70%) contrast(300%);
}

.newsletter-form button,
.website a {
  font-family: "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 400 !important;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 25px;
  border: 1px solid #fff;
  background-color: #FFFFFF;
  color: #000000;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: unset;
  transition: all ease-in-out 0.3s;
}

.website a {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding: 1.5rem 2rem;
    color: #FFFFFF;
    background-image: url(/assets/img/f1-background.jpg);
}

.website a:nth-child(2) {
    color: #000000;
    background-image: url(/assets/img/f2-background.jpg);
}

.website a:nth-child(2):hover {
    color: #000000;
}

.newsletter-form button:hover,
.website a:hover {
  background-color: #0a0837;
  color: #FFFFFF;
  border: 1px solid #fff;
}

footer {
  text-align: end;
  margin-top: -3rem;
  font-size: 0.9rem;
}

footer p {
  font-size: .9rem;
}

footer p img {
  width: 22px;
  margin-bottom: 5px;
}

.website {
  display: flex;
  gap: 34px;
  margin-bottom: 40px;
  margin-left: -6px;
}


@media (max-width: 992px) {

  .logo img {
    width: 20%;
  }

  .coming-soon-content {
    max-width: 100%;
  }

  footer {
    text-align: start;
    margin-top: 1rem;
  }
  
  .newsletter-form {
    width: 100%;
}

}

@media (max-width: 768px) {

  .logo img {
    width: 25%;
  }

    h1 {
        font-size: 3rem;
        margin-top: 3rem;
    }

  .newsletter-form {
    width: 100%;
  }

  .newsletter-form button,
  .website a {
    text-align: center;
  }

}

@media (max-width: 575px) {

  header {
    padding: 2rem .5rem .5rem;
  }

  p br {
    display: contents;
  }

  .coming-soon-content p:first-child {
    margin-bottom: 1rem;
  }

  .newsletter-form label {
    font-size: 1rem;
  }

}

@media (max-width: 480px) {

  .logo img {
    width: 30%;
  }

  h1 {
    font-size: 2.5rem;
  }

  .checkbox-container {
    flex-wrap: wrap;
    gap: 20px 0px;
  }
}