body {
  font-family: "Circular Std", sans-serif;
  color: #fff;
  margin: 0;
  overflow-x: hidden;
}

/* NavBar */

header {
  background: #492f72;
  padding: 20px 25px 20px 50px;
  font-size: larger;
}

.container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.logo {
  margin-left: -5vw;
}

.options-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-right: 2vw;
}

.dropdown {
  float: right;
  overflow: hidden;
  width: 174px;
  margin-left: 3vw;
  margin-right: -2vw;
}

.dropdown .dropbtn {
  font-size: 20px;
  border: none;
  outline: none;
  text-align: center;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 0 0 10px 10px;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  margin-left: 0;
}

.dropdown-content a:hover {
  background-color: #dddddd;
}

.dropdown:hover .dropdown-content {
  display: block;
  border-radius: 0 0 10px 10px;
}

a {
  color: #fff;
  text-decoration: none;
  margin-left: 5vw;
}

/* Misión y Visión */

.container-flex {
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.section1,
.section2 {
  width: 40%;
  height: 100vh;
  padding-top: 10px;
  padding-right: 5%;
  padding-bottom: 10px;
  padding-left: 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
}

.section1 {
  background-color: #3a7f84;
  color: #fff;
}

.section2 {
  background-color: #fff;
  color: #3a7f84;
}

.mision,
.vision {
  text-align: center;
}

.mision .titulo,
.vision .titulo {
  font-family: "Circular Std", sans-serif;
  font-size: 2.5vw;
}

.mision p,
.vision p {
  font-size: 1.5vw;
  text-align: center;
  line-height: 100%;
  vertical-align: top;
}

.mision span,
.vision span {
  font-weight: bold;
}

.mision i,
.vision i {
  font-size: 5vw;
}

/* Footer */

footer {
  background-color: #492f72;
  height: 14vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: larger;
  text-align: center;
}

footer img {
  padding-top: 1vw;
  margin-bottom: 1vw;
  width: 12vw;
}
