header {
  background-color: #1E1E1E;
  padding: 10px;
  box-sizing: border-box;
}

header img {
  display: inline-block;
  vertical-align: middle;
}
header h1 {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  margin: 0px 0px 0px 15px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: normal;
}

a button {
  color: #000;
}

header ul {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 28px;
  display: inline-block;
  list-style: none;
  margin: 0px;
  padding: 0px;
}

header ul li {
  height: 28px;
  line-height: 28px;
  display: inline-block;
  padding: 0px 10px;
}

header ul li a {
  text-decoration: none;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: normal;
  font-weight: 300;
  font-size: 15px;
}

.container {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.welcome-banner {
  padding: 50px 0px;
  position: relative;
  background-color: #0087CB;
}

.welcome-banner h1 {
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  font-weight: 400;
  margin-bottom: 5px;
}

.welcome-banner h2 {
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  margin-top: 0px;
  font-weight: 300;
  font-size: 20px;
}

.img-back {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url('/images/back.jpg');
  background-size: 100% auto;
  background-position: center;
  opacity: 0.5;
}

.sub-header {
  margin-top: 30px;
  border-bottom: 1px solid #D5D5D5;
}

.sub-header h1 {
  font-family: 'Open Sans', sans-serif;
  color: #1E1E1E;
  font-size: 26px;
  font-weight: 300;
}

.content {
  font-size: 0px;
  font-family: 'Open Sans', sans-serif;
}

.content h2 {
  font-family: 'Open Sans', sans-serif;
  color: #1E1E1E;
  font-weight: 300;
  font-size: 18px;
}

.content p {
  font-size: 14px;
}

.content .body {
  font-size: 14px;
  width: 80%;
  display: inline-block;
  vertical-align: top;
}

.content .options {
  padding-top: 20px;
  font-size: 14px;
  width: 20%;
  display: inline-block;
  vertical-align: top;
}

.content .options label {
  display: block;
  font-family: 'Open Sans', sans-serif;
  color: #1E1E1E;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 5px;
}

.content .options button {
  max-width: 100%;
  width: 150px;
  background-color: #F2F2F2;
  border: 1px solid #DBD9D9;
  padding: 4px 0px;
  text-align: center;
  box-sizing: border-box;
  margin-bottom: 10px;
  border-radius: 4px;
}


footer {
  margin-top: 40px;
  padding: 40px 0px;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  background-color: #F2F2F2;
}

.view {
  min-height: 80vh;
}


form label {
  display: block;
  font-family: 'Open Sans', sans-serif;
  color: #1E1E1E;
  font-weight: 700;
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 5px;
}

form {
  max-width: 500px;
}

form select {
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  background-color: #F4F4F4;
  display: block;
  margin-top: 10px;
  min-width: 200px;
}

form input,
form textarea {
  box-sizing: border-box;
  width: 100%;
  background-color: #F4F4F4;
  border: 1px solid #DBDBDB;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  box-shadow: inset 0px 2px 2px rgba(0,0,0,0.05);
}

form button {
  background-color: #080808;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  text-align: center;
  border: none;
  padding: 5px 10px;
  margin-top: 15px;
  border-radius: 4px;
  min-width: 150px;
}

.error {
  color: #e74c3c;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  padding: 0px;
  margin: 5px 0px;
}

@media screen and (max-width: 700px) {
  header h1 {
    display: none;
  }

  .img-back {
    background-size: auto auto;
  }

  .container {
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
  }

  .content .options {
    display: none;
  }

  .content .body {
    width: 100%;
  }

  .content .body p {
    text-align: justify;
  }
}

.body.politica p {
  text-align: justify;
}

.body.politica h2 {
  font-size: 21px;
}