body {
  background-color: #fdbd0d;
  margin: 0px;
  margin-top: 0px;
  padding: 0px;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: hidden;
  position: relative;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

body.loaded {
  opacity: 1;
}

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

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  background-color: #fdbd0d; /* fallback background */
}

h1 {
  color: #000;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 37px;
  line-height: 105%;
}

h2 {
  color: #000;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 105%;
  margin-bottom: 0px;
}

.main-div {
  margin-right: 30px;
  margin-left: 30px;
  margin-top: 20px;
  padding: 0px;
}

.header-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.left-header {
  text-align: left;
}

.right-header {
  text-align: right;
}

.body-text {
  margin: 0px;
  margin-top: 40px;
  padding-bottom: 0px;
}

.footer-video-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  overflow: hidden;
}

.footer-video {
  width: 100%;
  height: auto;
  display: block;
}

a {
  color: #000;
}

@media (max-width: 600px) {
  h1 {
    color: #000;
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 102%;
  }

  h2 {
    color: #000;
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    line-height: 110%;
    margin-bottom: 0px;
  }

  .main-div {
    margin-right: 20px;
    margin-left: 20px;
    margin-top: 16px;
    padding: 0px;
  }

  .body-text-div {
    margin: 0px;
    margin-top: 40px;
    padding-bottom: 0px;
  }
}

@media (max-width: 396px) {
  h1 {
    color: #000;
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 26px;
    line-height: 102%;
  }

  h2 {
    color: #000;
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 100%;
    margin-bottom: 0px;
  }

  .header-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .left-header {
    text-align: left;
  }

  .right-header {
    text-align: left;
  }

  .body-text-div {
    margin: 0px;
    margin-top: 30px;
    padding-bottom: 0px;
  }
}
