:root {
  --dark-blue: #3f9ce9;
  --light-blue: #bbd8f0;
  --orange: #e7ab51;
  --darkker-blue: #00558c;
  --white: white;
  --black: black;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.navbar {
  background-color: #4e98d3;
  justify-content: space-around;
  align-items: center;
  height: 70px;
  padding-left: 45%;
  display: flex;
}

.intro-text {
  color: var(--dark-blue);
  text-align: center;
  max-width: 725px;
  margin: 40px auto;
  font-family: raleway, sans-serif;
  font-size: 29px;
  font-weight: 600;
  line-height: 39px;
}

.body {
  background-color: var(--light-blue);
  transition: all .325s;
}

.header-bg {
  box-sizing: content-box;
  object-fit: cover;
  background-color: #373334;
  border-bottom: 3px solid #6065c7;
  width: 100%;
  height: 400px;
  position: static;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.custom-form {
  outline-color: var(--dark-blue);
  outline-offset: 0px;
  background-color: #fff;
  border-radius: 0;
  outline-width: 1.5px;
  outline-style: solid;
  justify-content: space-around;
  align-items: stretch;
  width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  display: flex;
}

.custom-form.large {
  height: 500px;
}

.divider {
  background-color: #e6e6e6;
  width: 1px;
}

.image-2 {
  object-fit: contain;
  flex: 0 auto;
  width: 150px;
}

.form-internal-wrap {
  flex-flow: column;
  width: 56%;
  display: flex;
}

.f-i-heading {
  color: var(--orange);
  font-family: raleway, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 25px;
}

.f-i-subheading {
  color: var(--orange);
  margin-top: 7px;
  margin-bottom: 4px;
  font-family: raleway, sans-serif;
  font-style: italic;
  font-weight: 600;
}

.submit-button {
  background-color: var(--dark-blue);
  text-transform: uppercase;
  border-radius: 7px;
  padding: 5px 27px;
  font-family: urw-din, sans-serif;
  font-weight: 600;
}

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

.form {
  margin-top: 10px;
  display: block;
}

.form.hide {
  display: none;
}

.field-label {
  font-family: raleway, sans-serif;
  /* display: none; */
}

.text-field {
  border-radius: 7px;
}

.text-field.large {
  height: 80px;
}

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

.checkbox-label {
  font-family: raleway, sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.footer {
  background-color: var(--darkker-blue);
  justify-content: center;
  align-items: center;
  height: 250px;
  margin-top: 33px;
  display: flex;
}

.logo {
  width: 530px;
  padding: 0;
}

.div-block-7 {
  background-color: var(--orange);
  cursor: pointer;
  border-radius: 5px;
  transition: all .25s;
}

.div-block-7:hover {
  background-color: var(--darkker-blue);
}

.div-block-7.old {
  background-color: var(--dark-blue);
}

.text-block-3 {
  color: #fff;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  padding: 7px;
  font-family: raleway, sans-serif;
  font-weight: 700;
  display: flex;
}

.grid {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid.hide {
  display: none;
}

.text-block-4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: raleway, sans-serif;
  font-weight: 700;
}

.navbar-links {
  color: #fff;
  font-family: raleway, sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: color .25s;
}

.navbar-links:hover {
  color: var(--orange);
}

.feature-container {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.header-logo {
  height: 80%;
  margin-left: 140px;
  position: absolute;
  top: auto;
  bottom: auto;
  left: 0%;
  right: auto;
}

.text-span-2 {
  white-space: pre;
}

@media screen and (max-width: 991px) {
  .navbar {
    padding-left: 11%;
  }

  .header-bg {
    height: 300px;
  }

  .custom-form {
    width: 80%;
  }

  .custom-form.large {
    height: auto;
  }

  .grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .header-logo {
    margin-left: 30px;
  }
}

@media screen and (max-width: 767px) {
  .navbar {
    padding-left: 0%;
  }

  .intro-text {
    font-size: 25px;
    line-height: 31px;
  }

  .header-bg {
    height: 250px;
  }

  .image-2 {
    width: 100px;
  }

  .f-i-heading {
    font-size: 24px;
    line-height: 29px;
  }

  .f-i-subheading {
    font-size: 12px;
    line-height: 16px;
  }

  .field-label {
    font-size: 12px;
    line-height: 18px;
  }

  .logo {
    width: 400px;
  }

  .text-block-3 {
    font-size: 12px;
  }

  .grid {
    grid-template-columns: 1fr 1fr;
  }

  .navbar-links {
    font-size: 12px;
  }

  .text-span-2 {
    white-space: pre-wrap;
  }
}

@media screen and (max-width: 479px) {
  .navbar {
    padding-left: 0%;
  }

  .intro-text {
    width: 80%;
    font-size: 15px;
    line-height: 18px;
  }

  .header-bg {
    border-bottom-color: var(--dark-blue);
    object-fit: contain;
    height: auto;
  }

  .custom-form {
    padding: 10px;
  }

  .divider {
    width: 1px;
  }

  .logo {
    width: 250px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .navbar-links {
    font-size: 12px;
    line-height: 13px;
  }

  .header-logo {
    height: 80%;
    margin-left: 25px;
  }

  .text-span {
    white-space: pre;
  }
}


