/* Fonts
-------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;700;900&display=swap');

/* Default
-------------------------------------------------- */

body {
  font-family: 'Titillium Web', sans-serif;
  font-size: 16px;
  color: #fff;
  background-color: #365c95;
}

@media (min-width: 750px) {
  body {
    background-image: url(../img/bg-desktop.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
  }
}

/* Forms
-------------------------------------------------- */

.form-field {
  width: 100%;
  height: 48px;
  padding: 0 20px;
  color: #000;
  background-color: #fff;
  border-radius: 24px;
  font-size: 16px;
}

.form-textarea {
  padding: 10px;
  height: 170px;
}

/* Button
-------------------------------------------------- */

.button {
  height: 48px;
  padding: 0 40px;
  border-radius: 24px;
  background-color: #f9a826;
  color: #26385a;
  font-family: 'Titillium Web', sans-serif;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 700;
}

.button-full {
  width: 100%;
}

/* Image
-------------------------------------------------- */

.image-responsive {
  max-width: 100%;
  height: auto;
  display: block;
}

.image-center {
  margin: 0 auto;
}

/* Alert
-------------------------------------------------- */

.alert {
  font-family: 'Open Sans', sans-serif;
  display: none;
  cursor: pointer;
}

.alert-error {
  background-color: #a51313;
  color: #fff;
  padding: 10px 15px;
  text-align: center;
}

.alert-success {
  background-color: #008403;
  color: #fff;
  padding: 10px 15px;
  text-align: center;
}

/* Extras
-------------------------------------------------- */

.form-box {
  background-color: #0c5c98;
  border-radius: 12px;
  color: #fff;
}

.form-box-title {
  color: #f9a826;
  font-weight: 900;
  font-size: 36px;
  text-transform: uppercase;
  line-height: 42px;
}

.box {
  background-color: #00641e;
  border-radius: 12px;
  color: #FFF;
  font-weight: bold;
  line-height: 20px;
  overflow: hidden;
}

.box-title {
  color: #f9a826;
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
}

.box-icon {
  background-color: #0c5c98;
}

.topo {
  margin-top: -30px;
  margin-bottom: -100px;
}

@media (min-width: 1200px) {
  .topo {
    margin-top: -70px;
    margin-bottom: -160px;
  }
}