/* prettier-ignore */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

body,
p,
h1,
h2,
h3,
h4,
h5,
label,
input {
  font-family: "Helvetica Neue", sans-serif;
}

main {
  min-height: calc(100vh - (206px));
}

p,
h1,
h2,
h3,
h4,
label,
input {
  font-size: 20px;
  color: #10384f;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

h1 {
  text-align: center;
  padding: 2rem 0;
  font-size: 40px;
  font-weight: bold;
}

h3 {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
}

h4 {
  font-weight: bold;
  text-align: center;
  font-size: 24px;
}

a {
  text-decoration: none;
  color: black;
}

.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  outline: none;
  background-color: #10384f;
  border: none;
  padding: 1rem;
  margin: 1.5rem auto;
  display: block;
  width: 100%;
  color: white;
  cursor: pointer;
}

@media screen and (min-width: 900px) {
  .btn {
    width: 15%;
  }
}

.btn:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  width: 100%;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 2px solid green;
  height: 106px;
}

header .container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

header .container img {
  width: 60px;
}

main {
  display: block;
}

main > img {
  padding-top: 3rem;
}

main.container {
  position: relative;
}

main h1 + p {
  text-align: center;
}

main .profile {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid darkgrey;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 440px) {
  main .profile {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

main .profile div {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: block;
  height: auto;
}

@media screen and (min-width: 440px) {
  main .profile div {
    -ms-flex-preferred-size: 33%;
        flex-basis: 33%;
    max-width: 240px;
  }
}

main .profile div img {
  display: block;
  height: auto;
}

main .profile p {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 1;
          flex: 1 1 1;
  padding-top: 2rem;
}

@media screen and (min-width: 440px) {
  main .profile p {
    padding-top: 0;
    padding-left: 2rem;
    -webkit-box-flex: 2;
        -ms-flex: 2 1 66%;
            flex: 2 1 66%;
    max-width: 469px;
  }
}

main form .asterix {
  color: red;
}

main form h4 {
  padding-top: 2rem;
}

main form p {
  padding: 2rem 0;
}

main form label {
  font-weight: bold;
  display: inline-block;
  margin-bottom: 0.5rem;
}

main form .form__fields {
  padding-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@supports (display: grid) {
  main form .form__fields {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 1rem 3rem;
  }
  @media screen and (min-width: 700px) {
    main form .form__fields {
      -ms-grid-columns: 1fr 1fr;
          grid-template-columns: 1fr 1fr;
    }
  }
}

main form .form__fields div {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  margin-bottom: 2rem;
}

@media (min-width: 720px) {
  main form .form__fields div {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 48%;
            flex: 0 1 48%;
  }
}

main form .form__fields div:nth-last-of-type(1) {
  margin-bottom: 0;
}

@media (min-width: 720px) {
  main form .form__fields div:nth-last-of-type(2) {
    margin-bottom: 0;
  }
}

@supports (display: grid) {
  main form .form__fields div {
    margin-bottom: 0;
  }
}

main form .form__fields input[type="text"] {
  width: 100%;
  padding: 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (min-width: 720px) {
  main form .form__fields input[type="text"] {
    min-width: 320px;
  }
}

main form .checkbox__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 1rem;
}

main form input[type="checkbox"] {
  margin-right: 0.7rem;
  height: 30px;
  width: 30px;
}

main form input[type="checkbox"] + label {
  font-weight: normal;
}

main .consent__wrapper {
  padding-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

main .consent__wrapper div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
}

main .consent__wrapper input[type="checkbox"] {
  margin: 0;
}

main .consent__wrapper input[type="checkbox"] + span {
  vertical-align: top;
  margin-left: 5px;
}

main .consent__wrapper label {
  font-weight: normal;
  padding-left: 0.5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

main .form__legals {
  padding-top: 2rem;
}

main .form__legals.thank__you {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

main .form__legals .campaign__code {
  -ms-flex-item-align: end;
      align-self: flex-end;
  font-size: 14px;
  padding: 2rem 0;
  text-align: center;
}

main .ics__wrapper {
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1rem;
  text-align: center;
  border-top: 1px solid #10384f;
  border-bottom: 1px solid #10384f;
  height: 100%;
  max-width: 550px;
}

main .ics__wrapper .ics__item {
  position: relative;
}

main .ics__wrapper .ics__item p {
  font-weight: bold;
}

main .ics__wrapper .ics__item .btn {
  width: 50%;
}

main .ics__wrapper + p {
  max-width: 550px;
  margin: 0 auto;
  padding: 1.5rem 0 calc(100px);
  padding: 1.5rem 0 calc(80px + 1.5rem);
}

footer {
  min-height: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top: solid 2px green;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  padding: 1rem 0;
}

footer div {
  padding-bottom: 0.7rem;
}

footer a {
  padding: 0 0.7rem;
  border-right: 1px solid black;
  font-size: 16px;
  line-height: 1.4;
}

footer a:nth-last-child(1) {
  border-right: none;
}

footer p {
  font-size: 12px;
}
/*# sourceMappingURL=style.css.map */