@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@200;300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
  width: 100%;
}

body {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #000;
}

.video-container {
  position: relative;
  width: 100% !important;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  margin-top: 10px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
}

header {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 28px 0 0 0;
}

@media only screen and (max-width: 1080px) {
  header {
    padding: 17px 18px 0 18px;
  }
}

header div {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1000px;
}

header div h1 {
  color: #f78f08;
  font-size: 33px;
  font-weight: 800;
}

@media only screen and (max-width: 1080px) {
  header div h1 {
    font-size: 23px;
    font-weight: 800;
  }
}

main {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1000px;
  margin-bottom: 100px;
}

main h2 {
  color: #fff;
  font-size: 23px;
  border-left: 4px solid #f78f08;
  padding-left: 15px;
  font-weight: 400;
}

main h2:not(:first-child) {
  margin-top: 50px;
}

main h2:nth-child(1) {
  margin-top: 20px;
}

@media only screen and (max-width: 1080px) {
  main {
    align-items: center;
    margin-bottom: 50px;
  }

  main h2 {
    font-size: 17px;
    width: 90%;
  }

  main h2:nth-child(1) {
    margin-top: 8px;
  }

  main h2:not(:first-child) {
    margin-top: 28px;
  }
}

main h3 {
  color: #fff;
  font-size: 23px;
  margin-top: 50px;
  border-left: 4px solid #f78f08;
  padding-left: 15px;
  font-weight: 200;
}

@media only screen and (max-width: 1080px) {
  main h3 {
    font-size: 17px;
    margin-top: 28px;
  }
}

main p {
  color: #fff;
  font-size: 19px;
  margin-top: 15px;
}

@media only screen and (max-width: 1080px) {
  main p {
    font-size: 15px;
    width: 90%;
  }
}

main label {
  color: #fff;
  font-size: 17px;
  font-weight: 300;
  margin-top: 25px;
}

@media only screen and (max-width: 1080px) {
  main label {
    font-size: 13px;
  }
}

main img {
  width: 330px;
  height: 100%;
  margin: 15px 0;
}

@media only screen and (max-width: 1080px) {
  main img {
    width: 80%;
    height: 100%;
  }
}

main ul {
  margin: 20px 0 10px 30px;
}

@media only screen and (max-width: 1080px) {
  main ul {
    margin: 17px 0 8px 20px;
  }
}

main ul li {
  margin-top: 5px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

@media only screen and (max-width: 1080px) {
  main ul li {
    margin-top: 10px;
    font-size: 14px;
  }
}

main .btn {
  display: flex;
  text-align: center;
  width: 100%;
  background-color: #50ab52;
  padding: 18px 32px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: 0.4s;
}

@media only screen and (max-width: 1080px) {
  main .btn {
    margin-top: 25px;
    font-size: 16px;
    width: 90%;
  }
}

main .btn:hover {
  scale: 1.02;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px;
  background-color: #2b2b2b;
  text-align: center;
}

footer .content-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 750px;
}

footer .content-footer text {
  font-size: 14px;
  color: #f1f1f1;
}

@media only screen and (max-width: 1080px) {
  footer .content-footer text {
    font-size: 12px;
  }
}

footer .content-footer div {
  display: block;
  margin-top: 7px;
}

footer .content-footer div .link {
  font-size: 14px;
  color: #b0aeae;
  margin-top: 10px;
  text-decoration: none;
  transition: 0.2s;
}

@media only screen and (max-width: 1080px) {
  footer .content-footer div .link {
    font-size: 12px;
  }
}

footer .content-footer a:hover {
  text-decoration: underline;
  color: #f1f1f1;
}