* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

*, a {
  -webkit-tap-highlight-color: transparent !important;
}

body, html {
  font-family: "Public Sans", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
}
@media screen and (max-width: 980px) {
  body, html {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  body, html {
    font-size: 16px;
  }
}

a {
  cursor: pointer;
}

/***** FORM *****/
form input, form textarea {
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
form input:focus, form textarea:focus, form button:focus, form select:focus {
  outline: none;
}
form input:-webkit-autofill,
form input:-webkit-autofill:hover,
form input:-webkit-autofill:focus,
form textarea:-webkit-autofill,
form textarea:-webkit-autofill:hover,
form textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  transition: background-color 5000s ease-in-out 0s;
}

.content {
  margin: 0 auto;
  max-width: 1220px;
  width: calc(100% - 2rem);
}

.cols {
  display: flex;
  flex-direction: row;
}

.cols > div {
  width: 50%;
}

footer {
  background: #101923;
  color: #fff;
  padding: 85px 0 20px 0;
}
footer img {
  max-height: 50px;
  max-width: 246px;
}
footer h4 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1.6px;
  margin-bottom: 10px;
  margin-top: 30px;
}
footer a, footer span {
  color: #E87724;
  text-decoration: none;
  font-size: 16px;
}
footer a:hover {
  text-decoration: underline;
}
footer h5 {
  margin-top: 50px;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 0.7em;
}
footer p {
  font-size: 12px;
  font-weight: 300;
}

@media screen and (max-width: 979px) {
  .cols {
    flex-direction: column;
    gap: 30px;
  }
  .cols > div {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  body, html {
    -webkit-text-size-adjust: 100%;
  }
  footer h5 {
    font-size: 16px;
  }
}

/*# sourceMappingURL=global.css.map */
