:root {
  --link: #52a2eb;
  --black: black;
  --inter: Inter, sans-serif;
  --white: white;
  --gray900: #131418;
  --gray600: #393a41;
  --primary: #2e6699;
  --gray800: #202127;
  --green: #008d26;
  --red: #df3245;
  --gray400: #78787b;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

a {
  color: var(--link);
  text-decoration: underline;
}

.body {
  background-color: var(--black);
  font-family: var(--inter);
  color: var(--white);
  font-size: 16px;
  line-height: 24px;
}

.link {
  text-decoration: none;
}

.bg-wrapper {
  background-image: url('../images/bg-36548729.png');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: 1600px;
  background-attachment: scroll;
  flex-flow: column;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  display: flex;
  position: relative;
}

.main-top {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  justify-content: flex-start;
  align-items: center;
  width: 600px;
  margin-top: 96px;
}

.form-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  background-color: var(--gray900);
  border-radius: 24px;
  width: 100%;
  margin-bottom: 200px;
  padding: 64px 120px 80px;
}

.heading-1 {
  text-align: center;
  align-self: stretch;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}

.form-block {
  align-self: stretch;
}

.form {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.text-field-1, .text-field-2 {
  border: 1px solid var(--gray600);
  background-color: #0000;
  color: #ffffff; 
  border-radius: 8px;
  height: 56px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 16px;
}

.where-link {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
}

.link-2 {
  font-size: 12px;
  line-height: 20px;
}

.submit-button {
  background-color: var(--primary);
  border-radius: 8px;
  height: 56px;
  margin-top: 24px;
  font-weight: 600;
}

.submit-button:hover {
  background-color: var(--link);
}

.message-green {
  background-color: var(--gray800);
  color: var(--green);
  text-align: center;
  border-radius: 8px;
  width: 100%;
  padding: 16px 24px;
}

.message-red {
  background-color: var(--gray800);
  color: var(--red);
  text-align: center;
  border-radius: 8px;
  width: 100%;
  padding: 16px 24px;
}

.message-link {
  background-color: var(--gray800);
  text-align: center;
  border-radius: 8px;
  width: 100%;
  padding: 16px 24px;
}

.bottom-wrapper-1 {
  background-color: var(--gray900);
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 16px;
}

.heading-2 {
  text-align: left;
  align-self: stretch;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}

.bottom-wrapper-2 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  width: 100%;
  max-width: 1016px;
}

.bottom-wrapper-3 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  width: 100%;
}

.bottom-4 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}

.text-block {
  color: var(--gray400);
  margin-top: 128px;
  font-size: 12px;
  line-height: 16px;
}

.bg-wrapper-svg {
  background-image: url('../images/bg.svg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: 1600px;
  background-attachment: fixed;
  flex-flow: column;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  display: flex;
  position: relative;
}

@media screen and (max-width: 991px) {
  .bottom-wrapper-1 {
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 40px;
    padding-right: 40px;
  }

  .bottom-wrapper-3 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .image, .image-2 {
    max-width: 496px;
  }
}

@media screen and (max-width: 767px) {
  .bg-wrapper {
    background-size: 1000px;
  }

  .main-top {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .form-wrapper {
    margin-bottom: 100px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .bg-wrapper-svg {
    background-size: 1000px;
  }

  .image, .image-2 {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .bg-wrapper {
    background-size: 640px;
  }

  .main-top {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-top: 60px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .form-wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    border-radius: 16px;
    padding: 40px 28px 60px;
  }

  .heading-1 {
    font-size: 28px;
    line-height: 36px;
  }

  .bottom-wrapper-1 {
    justify-content: flex-start;
    align-items: center;
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-2 {
    text-align: center;
    font-size: 22px;
    line-height: 28px;
  }

  .bottom-wrapper-2 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .bg-wrapper-svg {
    background-size: 640px;
  }

  .text-block-2, .text-block-3 {
    text-align: center;
    align-self: stretch;
  }
}


