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

html {
  scroll-behavior: smooth; }

html, body {
  width: 100%;
  height: 100%; }

body, #__next {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 20px;
  font-family: sans-serif, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue;
  color: #111813; }

h1 {
  font-size: 50px;
  text-transform: uppercase; }

h2 {
  font-size: 28px; }
  h2 span {
    margin: 0; }

p, li {
  color: #6B7280;
  font-size: 20px;
  line-height: 32px; }

p, ul {
  margin-top: 20px; }

ul {
  margin-left: 20px; }

.hidden {
  display: none; }

header {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 30px 0; }
  header .navbar {
    display: flex; }
    header .navbar .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 20px;
      font-weight: bold;
      text-transform: uppercase;
      text-decoration: none;
      color: #111813; }
      header .navbar .logo:hover {
        text-decoration: none; }

.content-wrapper {
  width: 964px;
  padding: 0; }

.hero .hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.hero-content-left {
  max-width: 470px;
  display: flex;
  flex-direction: column;
  gap: 25px; }
  .hero-content-left .title .header-small {
    display: block;
    font-weight: bold;
    margin-bottom: 7px; }
  .hero-content-left .title .blue {
    color: #2563EB; }
  .hero-content-left .description {
    display: flex;
    flex-direction: column;
    gap: 10px; }
    .hero-content-left .description p {
      margin-top: 0; }

.hero-content-right {
  width: 400px;
  display: flex;
  flex-direction: column; }

section.info-list {
  margin-top: 100px;
  padding-bottom: 100px; }

article:not(:first-of-type) {
  margin-top: 60px; }

.info-item-details {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  padding-bottom: 30px; }
  .info-item-details .info-item-details-text {
    display: flex;
    flex-direction: column;
    gap: 10px; }
  .info-item-details .info-item-details-cta {
    display: flex;
    justify-content: flex-end; }
    .info-item-details .info-item-details-cta .info-item-details-cta-content {
      display: flex;
      flex-direction: column;
      gap: 16px;
      min-width: fit-content; }
      .info-item-details .info-item-details-cta .info-item-details-cta-content span {
        color: #5D6175;
        font-size: 16px;
        font-weight: bold; }
  .info-item-details .info-item-boxes {
    padding-top: 30px;
    border-top: 1px solid #E5E5E5;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    grid-column: 1/span 2; }
  .info-item-details .secret-item-boxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    order: 2; }

.box {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 300px;
  border: 1px solid #6B7280;
  background-color: #FFFFFF;
  border-radius: 10px;
  position: relative; }
  .box .box-container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 20px 20px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold; }
    .box .box-container span {
      font-weight: normal; }
    .box .box-container span.checkbox-big {
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 40px;
      min-height: 40px;
      border: 1px solid #E5E5E5;
      border-radius: 8px; }
    .box .box-container p {
      font-size: 16px;
      color: #111813;
      font-weight: normal;
      text-transform: none;
      line-height: 22px; }
  .box:after {
    content: "";
    position: absolute;
    border-radius: 10px;
    width: calc(100%);
    height: calc(100%);
    background-color: #6B7280;
    z-index: -1;
    top: 4px;
    left: 4px; }

.requirements-box {
  max-width: 250px; }
  .requirements-box .requirements-box-container,
  .requirements-box .secrets-box-container {
    gap: 20px;
    height: fit-content; }
    .requirements-box .requirements-box-container p,
    .requirements-box .secrets-box-container p {
      margin-top: 0; }

.secrets-box {
  width: 100%; }
  .secrets-box .secrets-box-container {
    display: flex;
    flex-direction: column;
    gap: 10px; }
    .secrets-box .secrets-box-container .box-header {
      display: flex;
      flex-direction: row;
      gap: 20px;
      align-items: center; }
      .secrets-box .secrets-box-container .box-header span.checkbox-big {
        max-width: 40px;
        max-height: 40px; }
      .secrets-box .secrets-box-container .box-header p {
        font-size: 16px;
        color: #111813;
        font-weight: bold;
        text-transform: none;
        line-height: 22px;
        margin-top: 0; }
    .secrets-box .secrets-box-container .box-description p {
      font-size: 16px;
      text-transform: none;
      color: #6B7280;
      font-weight: normal;
      line-height: 24px;
      margin-top: 0; }

.form-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px;
  border: 1px solid #2563EB;
  border-radius: 20px;
  width: 100%;
  background-color: #EFF6FF; }
  .form-container:after {
    border-radius: 20px; }
  .form-container .form-title {
    display: flex;
    flex-direction: column;
    gap: 10px; }
    .form-container .form-title span {
      font-size: 12px;
      text-transform: uppercase;
      color: #5D6175;
      display: flex;
      gap: 7px; }
    .form-container .form-title h2.form-title-header {
      font-size: 20px;
      line-height: 26px; }
    .form-container .form-title span:before {
      content: " ";
      width: 4px;
      height: 14px;
      background-color: #FF7A00;
      border-radius: 2px; }
  .form-container form {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 20px; }
    .form-container form input[type="submit"] {
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none; }
    .form-container form .form-group {
      position: relative; }
      .form-container form .form-group input:not([type="submit"]) {
        width: 100%;
        border: 1px solid #E5E5E5;
        outline: none;
        height: 50px;
        padding: 0 40px 0 20px;
        border-radius: 5px;
        font-size: 16px; }
        .form-container form .form-group input:not([type="submit"]):focus {
          border: 1px solid #2563EB; }
      .form-container form .form-group input.error {
        background-color: #FFD6D6;
        border: 1px solid #FFD6D6; }
        .form-container form .form-group input.error:focus {
          border: 1px solid #FFD6D6; }
      .form-container form .form-group label {
        position: absolute;
        color: #2563EB;
        top: 4px;
        right: 15px;
        z-index: 2;
        height: 100%;
        display: flex;
        align-items: center;
        line-height: 16px; }

.button {
  appearance: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 15px 20px;
  width: fit-content;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out; }
  .button span {
    font-size: 16px;
    line-height: 16px; }

.call-to-action {
  background-color: #EFF6FF;
  color: #2563EB; }
  .call-to-action:hover {
    background-color: #DBEAFE; }

.submit-button {
  padding: 0;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  color: #FFFFFF;
  background-color: #10B981;
  letter-spacing: 0.6px; }
  .submit-button:hover {
    background-color: #109E81; }
  .submit-button[disabled] {
    cursor: no-drop;
    background-color: #A0A0A0; }

.reset-button {
  background-color: #DBEAFE; }

.box-green-dark {
  border: 1px solid #109E81; }
  .box-green-dark:after {
    background-color: #109E81; }
  .box-green-dark span {
    color: #109E81; }

.box-green-medium {
  border: 1px solid #10B981; }
  .box-green-medium:after {
    background-color: #10B981; }
  .box-green-medium span {
    color: #10B981; }

.box-green-light {
  border: 1px solid #34D399; }
  .box-green-light:after {
    background-color: #34D399; }
  .box-green-light span {
    color: #34D399; }

.box-red-dark {
  border: 1px solid #F87171; }
  .box-red-dark:after {
    background-color: #F87171; }
  .box-red-dark span {
    color: #F87171; }

.box-red-medium {
  border: 1px solid #FCA5A5; }
  .box-red-medium:after {
    background-color: #FCA5A5; }
  .box-red-medium span {
    color: #FCA5A5; }

.box-red-light {
  border: 1px solid #F9A8D4; }
  .box-red-light:after {
    background-color: #F9A8D4; }
  .box-red-light span {
    color: #F9A8D4; }

.box-blue-dark {
  border: 1px solid #2563EB; }
  .box-blue-dark:after {
    background-color: #2563EB; }
  .box-blue-dark span {
    color: #2563EB; }

.box-blue-medium {
  border: 1px solid #3B82F6; }
  .box-blue-medium:after {
    background-color: #3B82F6; }
  .box-blue-medium span {
    color: #3B82F6; }

.box-blue-light {
  border: 1px solid #60A5FA; }
  .box-blue-light:after {
    background-color: #60A5FA; }
  .box-blue-light span {
    color: #60A5FA; }

.box-purple-dark {
  border: 1px solid #4F46E5; }
  .box-purple-dark:after {
    background-color: #4F46E5; }
  .box-purple-dark span {
    color: #4F46E5; }

.box-purple-medium {
  border: 1px solid #8B5CF6; }
  .box-purple-medium:after {
    background-color: #8B5CF6; }
  .box-purple-medium span {
    color: #8B5CF6; }

.box-purple-light {
  border: 1px solid #818CF8; }
  .box-purple-light:after {
    background-color: #818CF8; }
  .box-purple-light span {
    color: #818CF8; }

.box-grey-dark {
  border: 1px solid #111813; }
  .box-grey-dark:after {
    background-color: #111813; }
  .box-grey-dark span {
    color: #111813; }

.box-grey-medium {
  border: 1px solid #4B5563; }
  .box-grey-medium:after {
    background-color: #4B5563; }
  .box-grey-medium span {
    color: #4B5563; }

.box-grey-light {
  border: 1px solid #6B7280; }
  .box-grey-light:after {
    background-color: #6B7280; }
  .box-grey-light span {
    color: #6B7280; }

.box-yellow-medium {
  border: 1px solid #FBBF24; }
  .box-yellow-medium:after {
    background-color: #FBBF24; }
  .box-yellow-medium span {
    color: #FBBF24; }

@media (min-width: 0) and (max-width: 1023px) {
  body, #__next {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 0; }

  header {
    padding: 15px 0;
    background-color: #EFF6FF; }
    header .navbar {
      justify-content: center; }

  .content-wrapper {
    min-width: 288px;
    width: 100%;
    padding: 0 16px; }

  .hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px; }

  .hero-content-left {
    max-width: 500px;
    align-items: center;
    text-align: center; }

  .hero-content-right {
    width: 100%; }

  .form-container {
    width: calc(100% - 8px); }

  section.info-list {
    margin-top: 40px; }

  article:not(:first-of-type) {
    margin-top: 80px; }

  .info-item-details {
    display: flex;
    flex-direction: column; }
    .info-item-details .info-item-details-text {
      order: 1; }
    .info-item-details .info-item-details-cta {
      justify-content: center;
      border-top: 1px solid #E5E5E5;
      padding-top: 30px;
      order: 3; }
      .info-item-details .info-item-details-cta .info-item-details-cta-content {
        align-items: center; }
    .info-item-details .info-item-boxes {
      border-top: none;
      padding-top: 0;
      order: 2; } }
@media (min-width: 0px) and (max-width: 719px) {
  h1 {
    font-size: 40px; }

  h2 {
    font-size: 28px; }

  ul {
    margin-left: 0;
    list-style-type: none; }

  ul > li {
    padding: 20px 0;
    border-top: 1px solid #E5E5E5; }

  li:last-of-type {
    padding-bottom: 0; }

  .content-wrapper {
    padding: 0; }

  .hero-content-left {
    padding: 0 16px; }

  .call-to-action span {
    display: none; }

  section.info-list {
    margin-top: 20px;
    padding-bottom: 40px; }

  .info-list {
    padding: 0 16px; }

  article:not(:first-of-type) {
    margin-top: 40px; }

  .info-item-details-text {
    text-align: center; }

  .box {
    width: calc(100% - 8px); }

  .requirements-box {
    width: calc(100% - 8px);
    max-width: initial; }
    .requirements-box .requirements-box-container {
      align-items: center; }

  .form-container {
    border: none;
    border-radius: 0;
    width: 100%;
    padding: 40px 20px; }
    .form-container:after {
      content: none; } }
@media (min-width: 720px) and (max-width: 1023px) {
  .content-wrapper {
    padding: 0 30px; } }
@media (min-width: 1200px) {
  .content-wrapper {
    width: 1140px; }

  .hero-content-right {
    width: 500px; } }
@media (min-width: 1320px) {
  .content-wrapper {
    width: 1260px; }

  .hero-content-right {
    width: 600px; } }

/*# sourceMappingURL=styles.css.map */
