/* nunito-sans-200 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 200;
  src: url('fonts/nunito-sans-v15-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* nunito-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/nunito-sans-v15-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* nunito-sans-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/nunito-sans-v15-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* nunito-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/nunito-sans-v15-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* nunito-sans-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 800;
  src: url('fonts/nunito-sans-v15-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


body        {
    background: #f7f7f7;;
    margin: 0;
    padding: 0;
    font-family: Nunito Sans,sans-serif;
    color: #6a6a6a;;
    font-size: 16px;
    padding: 40px;
}

*, ::after, ::before {
  box-sizing: inherit;
}

h5 {
  font-family: Nunito Sans,sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 28px;
  line-height: 30px;
  color: #0088d7;
  display: block;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  -webkit-hyphens: auto;
  hyphens: auto;
}

h5 strong {
    font-size: 20px;
    line-height: 40px;
    font-weight: 400;
}


.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: 0px;
  margin-left: 0px;
}

.col-12 {
  position: relative;
  width: 100%;
  min-height: 1px;
}


input, input[type="email"], input[type="text"],  select, textarea {
  font-family: Nunito Sans,sans-serif;
  font-size: 16px;
  padding: 15px;
  width: calc(100% - 50px);
  color: #6a6a6a;
  background: #fff;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: border-color .3s;
  outline: none;
  margin-bottom: 10px;
}

input[type="submit"] {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 23px;
  padding: 0 30px;
  border-radius: 8px;
  background-color: #0088d7;
  color: #fff;
  text-decoration: none !important;
  height: 44px;
  cursor: pointer;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

input[type="checkbox"]:not(:checked) {
  background: transparent;
  position: relative;
  margin: 0;
  padding: 0;
}

input[type="checkbox"] {
  width: auto;
  float: left;
  margin-right: .75em;
  background: transparent;
  border: none;
}

@media (min-width: 768px) {
  input[type="submit"] {
    padding: 0 30px;
    width: auto;
    margin-top: 0;
  }
}


@media (min-width: 768px) {
  .col-12 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

