form > div {
  position: relative; }

form.hide {
  display: none; }

form.gridStyle {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  form.gridStyle.hide {
    display: none; }
  form.gridStyle > div {
    position: relative;
    width: 100%;
    margin: 0 0 13px 0; }
    form.gridStyle > div.col-2 {
      width: 48.5%; }
      @media (max-width: 480px) {
        form.gridStyle > div.col-2 {
          width: 100%; } }

input {
  display: block;
  width: 100%;
  background-color: rgba(26, 173, 239, 0.1);
  border-radius: 0;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-width: 3px 3px 3px 3px;
  border-color: transparent;
  border-style: solid;
  padding: 18px 16px 10px 16px;
  color: black;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  text-transform: initial; }
  input:focus {
    box-shadow: 0px 0px 9px rgba(26, 173, 239, 0.6);
    outline: none;
    border-color: #1AADEF; }

label {
  color: #1AADEF;
  font-family: "Raleway", sans-serif;
  font-size: 0.85em;
  font-weight: 900;
  position: absolute;
  top: 18px;
  left: 16px;
  bottom: 10px;
  margin: auto;
  display: flex;
  pointer-events: none;
  align-items: center;
  transition: all 0.2s ease; }
  label.active {
    font-size: 0.6em;
    top: -15px; }
  label span {
    font-weight: 600; }

textarea {
  width: 100%;
  height: 150px;
  background-color: rgba(26, 173, 239, 0.1);
  border-color: transparent;
  border-width: 3px;
  border-style: solid;
  padding: 18px 16px;
  color: black;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  text-transform: initial; }
  textarea:focus {
    box-shadow: 0px 0px 9px rgba(26, 173, 239, 0.6);
    outline: none;
    border-color: #1AADEF; }

.textarea label {
  align-items: flex-start;
  top: 18px;
  bottom: unset; }
  .textarea label.active {
    top: 7px; }

button {
  cursor: pointer;
  background-color: #1AADEF;
  font-family: "Raleway", sans-serif;
  color: #fff;
  font-weight: 900;
  border: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 7px 14px;
  border-width: 3px;
  border-color: transparent;
  border-style: solid; }
  button:focus {
    box-shadow: 0px 0px 9px rgba(26, 173, 239, 0.6);
    border-color: black;
    outline: 0; }

#thanks {
  display: none; }
  #thanks.active {
    display: block; }

* {
  box-sizing: border-box; }

html, body {
  font-size: 16px;
  font-family: "Raleway", sans-serif;
  padding: 0;
  margin: 0;
  overflow-x: hidden; }

.section-content {
  max-width: 1250px;
  width: 100%;
  margin-left: auto;
  margin-right: auto; }

.section-padding {
  padding-left: 6%;
  padding-right: 6%; }

.bg.bg-blue {
  background-color: #1AADEF; }
  .bg.bg-blue h1, .bg.bg-blue p {
    color: #fff; }

b {
  font-weight: 800; }

h1, h2, h3 {
  color: #1AADEF;
  font-weight: 900;
  line-height: 0.95; }

h1 {
  font-size: 3.7em;
  max-width: 400px;
  margin: 0 0 40px 0; }
  h1.with-subtitle {
    margin: 0; }
  @media (max-width: 1070px) {
    h1 {
      font-size: 3.2em; } }
  @media (max-width: 480px) {
    h1 {
      font-size: 2.7em; } }

p {
  font-weight: 400;
  font-size: 0.92em;
  line-height: 1.42;
  margin: 0 0 20px 0; }
  p.subtitle {
    margin: 20px 0 0 0;
    font-size: 2em;
    font-weight: 600;
    max-width: 350px;
    width: 100%;
    line-height: 1; }
    @media (max-width: 768px) {
      p.subtitle {
        max-width: unset;
        margin: 20px 0; } }
    @media (max-width: 480px) {
      p.subtitle {
        font-size: 1.5em;
        max-width: 300px; } }

ul.no-style {
  list-style-type: none;
  margin: 0;
  padding: 0; }

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; }
  header nav {
    display: flex;
    align-items: center;
    padding: 50px 0; }
    header nav > div:nth-child(1) {
      flex: 1; }
      header nav > div:nth-child(1) img {
        display: block;
        width: 230px; }
        @media (max-width: 768px) {
          header nav > div:nth-child(1) img {
            margin: 0 auto; } }
      @media (max-width: 970px) {
        header nav > div:nth-child(1) {
          flex: unset; } }
      @media (max-width: 768px) {
        header nav > div:nth-child(1) {
          padding: 30px 6% 20px 6%; } }
    header nav > div:nth-child(2) ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
      display: flex; }
      header nav > div:nth-child(2) ul li:not(:first-child) {
        margin-left: 20px; }
        @media (max-width: 768px) {
          header nav > div:nth-child(2) ul li:not(:first-child) {
            margin-left: 0;
            margin-top: 6px; } }
      header nav > div:nth-child(2) ul li a {
        color: #1AADEF;
        font-weight: 800;
        text-decoration: none; }
        @media (max-width: 768px) {
          header nav > div:nth-child(2) ul li a {
            color: #fff; } }
      @media (max-width: 768px) {
        header nav > div:nth-child(2) ul {
          display: block;
          text-align: center;
          padding: 10px 6%; } }
    @media (max-width: 970px) {
      header nav > div:nth-child(2) {
        margin: 10px 0 0 0; } }
    @media (max-width: 768px) {
      header nav > div:nth-child(2) {
        background-color: #1AADEF;
        margin: 0; } }
    @media (max-width: 970px) {
      header nav {
        display: block; } }
    @media (max-width: 768px) {
      header nav {
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-bottom: 0;
        padding-top: 0; } }
  @media (max-width: 768px) {
    header {
      position: relative; } }

.introSection {
  height: 100vh;
  background-image: url("/dist/images/sky-bg-transparent-2.jpg");
  background-size: cover;
  background-position: center 70%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center; }
  .introSection .flex {
    display: flex;
    align-items: flex-end; }
    @media (max-width: 870px) {
      .introSection .flex > div:nth-child(1) {
        width: 50%; } }
    @media (max-width: 768px) {
      .introSection .flex > div:nth-child(1) {
        width: 100%; } }
    .introSection .flex > div:nth-child(2) {
      padding-left: calc(70px + 30px); }
      .introSection .flex > div:nth-child(2) p {
        margin-left: auto; }
        .introSection .flex > div:nth-child(2) p:last-child {
          margin-bottom: 0; }
        @media (max-width: 768px) {
          .introSection .flex > div:nth-child(2) p {
            max-width: unset; } }
      @media (max-width: 870px) {
        .introSection .flex > div:nth-child(2) {
          width: 50%;
          padding-left: 6%; } }
      @media (max-width: 768px) {
        .introSection .flex > div:nth-child(2) {
          width: 100%;
          padding-left: 0; } }
    @media (max-width: 870px) {
      .introSection .flex {
        padding-top: 200px; } }
    @media (max-width: 768px) {
      .introSection .flex {
        display: block;
        padding-top: 40px; } }
  @media (max-width: 870px) {
    .introSection {
      justify-content: unset; } }
  @media (max-width: 768px) {
    .introSection {
      height: auto; } }

.default-flex > div:nth-child(1) {
  width: 40%; }
  @media (max-width: 768px) {
    .default-flex > div:nth-child(1) {
      width: 100%; } }

.default-flex > div:nth-child(2) {
  width: 60%; }
  .default-flex > div:nth-child(2) p {
    max-width: 355px;
    width: 100%; }
    @media (max-width: 570px) {
      .default-flex > div:nth-child(2) p {
        max-width: unset; } }
  @media (max-width: 768px) {
    .default-flex > div:nth-child(2) {
      width: 100%; } }

.factSection .flex {
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px; }
  @media (max-width: 768px) {
    .factSection .flex.section-padding {
      padding-left: 0;
      padding-right: 0; } }
  @media (max-width: 768px) {
    .factSection .flex h1 {
      padding: 0 6%; } }
  .factSection .flex .imageDecoration {
    position: relative;
    margin: 0 0 0 40px; }
    .factSection .flex .imageDecoration .image {
      width: 280px;
      height: 280px;
      background-image: url("/dist/images/square-tree.jpg");
      background-position: center center;
      background-size: cover;
      position: relative;
      z-index: 2; }
    .factSection .flex .imageDecoration .dotsbg {
      width: 280px;
      height: 280px;
      position: absolute;
      top: 20px;
      left: 20px; }
      @media (max-width: 1100px) {
        .factSection .flex .imageDecoration .dotsbg {
          top: 15px;
          left: 15px; } }
      @media (max-width: 990px) {
        .factSection .flex .imageDecoration .dotsbg {
          top: 25px;
          left: 25px; } }
      @media (max-width: 480px) {
        .factSection .flex .imageDecoration .dotsbg {
          top: 20px;
          left: 20px; } }
    @media (max-width: 1100px) {
      .factSection .flex .imageDecoration .image, .factSection .flex .imageDecoration .dotsbg {
        width: 210px;
        height: 210px; } }
    @media (max-width: 990px) {
      .factSection .flex .imageDecoration .image, .factSection .flex .imageDecoration .dotsbg {
        width: 350px;
        height: 350px; } }
    @media (max-width: 480px) {
      .factSection .flex .imageDecoration .image, .factSection .flex .imageDecoration .dotsbg {
        width: 250px;
        height: 250px; } }
    @media (max-width: 990px) {
      .factSection .flex .imageDecoration {
        width: 350px;
        height: 350px;
        margin: 0 auto; } }
    @media (max-width: 480px) {
      .factSection .flex .imageDecoration {
        width: 250px;
        height: 250px; } }
  .factSection .flex ul {
    display: flex;
    flex-direction: column; }
    .factSection .flex ul li {
      display: inline-flex;
      margin-left: auto; }
      .factSection .flex ul li p {
        margin: 0; }
      .factSection .flex ul li.highlight {
        position: relative;
        padding-top: 20px;
        padding-bottom: 20px; }
        .factSection .flex ul li.highlight:after {
          content: '';
          display: block;
          position: absolute;
          background-color: #1AADEF;
          width: calc(100% + 300px);
          height: 100%;
          top: 0;
          left: 0;
          z-index: 1; }
        .factSection .flex ul li.highlight:before {
          content: '';
          display: block;
          position: absolute;
          height: 12px;
          width: calc(100% + 300px);
          background-image: url("/dist/images/dot-chain-whitespace-01.svg");
          background-size: 12px 100%;
          z-index: 5;
          bottom: -6px;
          left: 6px; }
        .factSection .flex ul li.highlight > div {
          position: relative;
          z-index: 3; }
          .factSection .flex ul li.highlight > div:nth-child(1) {
            padding: 0 30px 0 30px; }
            .factSection .flex ul li.highlight > div:nth-child(1) p {
              max-width: 150px;
              width: 100%; }
              @media (max-width: 768px) {
                .factSection .flex ul li.highlight > div:nth-child(1) p {
                  margin: 0 0 20px 0; } }
              @media (max-width: 570px) {
                .factSection .flex ul li.highlight > div:nth-child(1) p {
                  max-width: unset; } }
            @media (max-width: 570px) {
              .factSection .flex ul li.highlight > div:nth-child(1) {
                padding: 0; } }
          .factSection .flex ul li.highlight > div:nth-child(2) {
            margin: 0 0 0 auto; }
          .factSection .flex ul li.highlight > div p {
            color: #fff; }
            @media (max-width: 570px) {
              .factSection .flex ul li.highlight > div p {
                max-width: unset; } }
        @media (max-width: 768px) {
          .factSection .flex ul li.highlight {
            padding-left: 0; } }
        @media (max-width: 570px) {
          .factSection .flex ul li.highlight {
            display: block;
            width: 100%;
            padding-left: 6%; } }
      .factSection .flex ul li:not(:last-child) {
        margin-bottom: 50px; }
      .factSection .flex ul li img {
        flex: 0 0 70px;
        display: block;
        width: 70px;
        margin-right: 30px; }
      @media (max-width: 990px) {
        .factSection .flex ul li {
          margin: 0 auto; } }
      @media (max-width: 768px) {
        .factSection .flex ul li {
          padding: 0 6%; } }
  @media (max-width: 990px) {
    .factSection .flex.default-flex > div:nth-child(1) {
      width: 100%;
      margin: 0 0 60px 0; } }
  @media (max-width: 990px) {
    .factSection .flex.default-flex > div:nth-child(2) {
      width: 100%; } }
  @media (max-width: 990px) {
    .factSection .flex {
      display: block; } }
  @media (max-width: 480px) {
    .factSection .flex {
      padding-bottom: 30px; } }

.calloutSection {
  position: relative; }
  @media (max-width: 768px) {
    .calloutSection .section-padding {
      padding-right: 8%; } }
  .calloutSection:after, .calloutSection:before {
    content: '';
    position: absolute;
    display: block;
    background-image: url("/dist/images/dot-chain-whitespace-reverse-01.svg");
    background-size: 12px 12px; }
  .calloutSection:after {
    width: 24px;
    height: 100%;
    background-color: #1AADEF;
    z-index: 10;
    right: 0;
    top: 0;
    background-position: 100% 100%; }
  .calloutSection:before {
    width: 100%;
    height: 24px;
    z-index: 5;
    bottom: 0;
    right: 0px;
    background-position: 100% 100%; }
  .calloutSection > div {
    padding-top: 60px;
    padding-bottom: calc(60px + 18px);
    text-align: center; }
    .calloutSection > div h1, .calloutSection > div p {
      max-width: 700px;
      margin-left: auto;
      margin-right: auto; }
    .calloutSection > div p {
      margin-bottom: 0; }

.howWeHelp .flex {
  display: flex;
  padding-left: 6%;
  padding-bottom: 60px; }
  .howWeHelp .flex h1 {
    margin-top: 60px;
    max-width: 300px;
    width: 100%; }
  .howWeHelp .flex > div:nth-child(1) {
    width: 30%;
    margin-right: 10%; }
    @media (max-width: 870px) {
      .howWeHelp .flex > div:nth-child(1) {
        width: 40%; } }
    @media (max-width: 768px) {
      .howWeHelp .flex > div:nth-child(1) {
        width: 100%;
        padding-left: 6%;
        padding-right: 6%; } }
  .howWeHelp .flex > div:nth-child(2) {
    width: 60%; }
    .howWeHelp .flex > div:nth-child(2) img {
      display: block;
      max-width: 600px;
      width: 100%;
      margin: 20px 0 0 auto; }
      @media (max-width: 768px) {
        .howWeHelp .flex > div:nth-child(2) img {
          width: 100%;
          max-width: unset; } }
    @media (max-width: 870px) {
      .howWeHelp .flex > div:nth-child(2) {
        width: 50%; } }
    @media (max-width: 768px) {
      .howWeHelp .flex > div:nth-child(2) {
        width: 100%; } }
  @media (max-width: 768px) {
    .howWeHelp .flex {
      display: block;
      padding-left: 0; } }
  @media (max-width: 480px) {
    .howWeHelp .flex {
      padding-bottom: 0; } }

.contactSection {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px; }
  .contactSection h1 {
    max-width: 600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto; }
  .contactSection form {
    max-width: 500px;
    width: 100%;
    margin: 0 auto; }

footer {
  text-align: center; }
  footer img {
    display: block;
    width: 40px;
    margin: 0 auto 25px auto; }
  footer p {
    font-size: 0.65em; }
