@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
html, body {
  height: 100%;
}

body {
  font: normal 18px/1.5 Poppins, sans-serif;
  color: #343b3e;
}

h1 {
  margin: 0 0 20px;
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

h3 {
  margin: 0 0 40px;
}

p {
  font-weight: 600;
  text-align: center;
}

form {
  text-align: center;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
  width: 100%;
  height: 50px;
  margin-bottom: 10px;
  padding-left: 10px;
  font-size: 15px;
  line-height: 60px;
  border: 2px solid #f1f2f3;
  border-radius: 8px;
  background: #fff;
}

button {
  display: block;
  margin: 20px auto 0;
  padding: 12px 44px;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  background: #0249ac;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  transition: all 150ms ease-in-out;
}

button:hover {
  transform: scale(1.025);
}

section {
  padding: 40px 0;
}

section .video-track {
  margin: 0 auto 30px;
  border: 10px solid #fff;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
}

section#s1 {
  min-height: 100vh;
  background: url(../images/bg.jpg) no-repeat top left/cover;
  background-attachment: fixed;
}

section#s1 .disclaimer {
  font-size: 14px;
}

section#s2 {
  min-height: 100vh;
  text-align: center;
  background: url(../images/bg2.jpg) no-repeat top center/cover;
  background-attachment: fixed;
}

section#s2 .video-track {
  margin-bottom: 30px;
}

section#s2 button {
  margin: 0 auto;
}

section#s2 #cta {
  display: none;
}

section#s2 #cta a {
  text-decoration: none !important;
}

section#s2 h4 {
  display: block;
  width: 100%;
  max-width: 550px;
  margin: 0 auto 20px;
  line-height: 1.4;
}

#loadingGraphic {
  display: none;
  transform: translateY(10px);
}

#loader {
  width: 44px;
  height: 44px;
  margin: 6px auto;
  -webkit-animation: 1s ease-in-out infinite animball_two;
  animation: 1s ease-in-out infinite animball_two;
}

#loader .loaderBall {
  width: 44px;
  height: 44px;
  position: absolute;
}

#loader .loaderBall .ball {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-animation: 1s ease-in-out infinite animball_one;
  animation: 1s ease-in-out infinite animball_one;
}

#loader .loaderBall .ball.ball1 {
  background-color: #0249ac;
  top: 0;
  left: 0;
}

#loader .loaderBall .ball.ball2 {
  background-color: #0249ac;
  top: 0;
  left: 24px;
}

#loader .loaderBall .ball.ball3 {
  background-color: #0249ac;
  top: 24px;
  left: 0;
}

#loader .loaderBall .ball.ball4 {
  background-color: #0249ac;
  top: 24px;
  left: 24px;
}

@-webkit-keyframes animball_one {
  0% {
    position: absolute;
  }
  50% {
    top: 12px;
    left: 12px;
    position: absolute;
    opacity: 0.5;
  }
  100% {
    position: absolute;
  }
}

@keyframes animball_one {
  0% {
    position: absolute;
  }
  50% {
    top: 12px;
    left: 12px;
    position: absolute;
    opacity: 0.5;
  }
  100% {
    position: absolute;
  }
}

@-webkit-keyframes animball_two {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(360deg) scale(1.3);
  }
  100% {
    -webkit-transform: rotate(720deg) scale(1);
  }
}

@keyframes animball_two {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(360deg) scale(1.3);
  }
  100% {
    transform: rotate(720deg) scale(1);
  }
}

@media (max-width: 1399px) {
  section#s2 h1 {
    font-size: 38px;
  }
  section#s2 h3 {
    font-size: 26px;
  }
}

@media (max-width: 1199px) {
  section#s1 {
    background-position: top center;
  }
  section#s2 h1 {
    font-size: 34px;
  }
  section#s2 h3 {
    margin: 0 0 20px;
    font-size: 24px;
  }
}

@media (max-width: 991px) {
  h1 {
    font-size: 34px;
  }
  p {
    font-size: 22px;
  }
  section#s2 h3 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  h1 {
    position: relative;
    z-index: 100;
    font-size: 30px;
  }
  p {
    font-size: 18px;
  }
  section img {
    margin-top: -40px;
    float: right;
    transform: translateX(45px);
  }
  section#s2 h1 {
    font-size: 26px;
  }
}
