@font-face {
  font-family: Enviro;
  src: url(../../Fonts/enviro-let.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  margin-left: 80px;
  margin-top: 80px;
  transition: margin-left 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

main {
  padding: 20px;
}

header {
  width: 100%;
  height: 80px;
  background: #3A3A3A;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 200;
}

.icon__menu {
  width: 50px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(10px);
}
.icon__menu i {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  position: absolute;
}

.menu__side {
  width: 80px;
  height: 100%;
  background: #3A3A3A;
  position: fixed;
  top: 0;
  left: 0;
  color: white;
  font-size: 18px;
  z-index: 300;
  overflow: hidden;
  overflow-y: scroll;
  border-right: 20px solid #3A3A3A;
  transition: all 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.menu__side::-webkit-scrollbar {
  display: none;
}

/*Ocultar scroll para chrome, safari y opera */
/*Ocultar scroll para IE, Edge y Firefox */
.name__page {
  padding: 20px 30px;
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.name__page h4 {
  font-family: "Enviro";
  font-size: 20px;
  font-weight: 100;
}
.name__page i {
  width: 20px;
  margin-right: 20px;
}

.options__menu {
  padding: 20px 30px;
  position: absolute;
  top: 80px;
}
.options__menu a {
  color: #ffffffb2;
  cursor: default;
  display: block;
  position: relative;
  transition: color 300ms;
}
.options__menu a:hover {
  color: white;
}
.options__menu .option {
  padding: 20px 0px;
  display: flex;
  align-items: center;
  position: relative;
}
.options__menu .option i {
  width: 20px;
  margin-right: 20px;
  cursor: pointer;
}
.options__menu .option h4 {
  font-weight: 100;
  cursor: pointer;
  font-family: "Enviro";
  font-size: 20px;
}

a.selected {
  color: #fff;
}

.selected:before {
  content: "";
  width: 3px;
  height: 80%;
  background: white;
  position: absolute;
  top: 10%;
  left: -30px;
}

/*Clases para usar en JavaScript */
.body_move {
  margin-left: 250px;
}

.menu__side_move {
  width: 250px;
}

@media screen and (max-width: 760px) {
  .body_move {
    margin-left: 0px;
  }

  .menu__side_move {
    width: 80px;
    left: -80px;
  }
}
.home_section {
  width: 100%;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #646464;
  padding: 20px;
}
.home_section h1 {
  font-family: "Enviro";
  font-size: 55px;
  font-weight: 100;
  color: #ff5628;
}
.home_section h2 {
  font-family: "Raleway";
  font-size: 45px;
  font-weight: 100;
  color: #132186;
}

.mision {
  width: 100%;
  height: 80%;
  min-height: 80vh;
  background-image: url(../img/Escritorio.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mision .content_mision {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mision .content_mision .item_mision {
  width: 80%;
  height: 350px;
  background-color: #ffffffcc;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mision .content_mision .item_mision h3 {
  font-family: "Enviro";
  font-size: 35px;
  font-weight: 100;
  color: #ff5628;
}
.mision .content_mision .item_mision p {
  font-family: "Raleway";
  font-size: 20px;
  font-weight: 100;
  color: #132186;
  padding: 10px;
  text-align: center;
}

.vision {
  width: 100%;
  height: 80vh;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #646464;
}
.vision .item_vision {
  width: 80%;
  height: 350px;
  background-color: #ffffffcc;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.vision .item_vision h3 {
  font-family: "Enviro";
  font-size: 35px;
  font-weight: 100;
  color: #ff5628;
}
.vision .item_vision p {
  font-family: "Raleway";
  font-size: 20px;
  font-weight: 100;
  color: #132186;
  padding: 10px;
  text-align: center;
}

.objetivos {
  width: 100%;
  height: 80%;
  min-height: 80vh;
  background-image: url(../img/Mesas-Juntas.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.objetivos .content_objetivos {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.objetivos .content_objetivos .item_objetivos {
  width: 80%;
  height: 350px;
  background-color: #ffffffcc;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.objetivos .content_objetivos .item_objetivos h3 {
  font-family: "Enviro";
  font-size: 35px;
  font-weight: 100;
  color: #ff5628;
}
.objetivos .content_objetivos .item_objetivos ul {
  font-family: "Raleway";
  font-size: 20px;
  font-weight: 100;
  color: #132186;
  padding: 30px;
  text-align: center;
}

@media screen and (max-width: 589px) {
  .objetivos .content_objetivos .item_objetivos {
    width: 90%;
    height: 400px;
  }
  .objetivos .content_objetivos .item_objetivos h3 {
    font-size: 35px;
  }
  .objetivos .content_objetivos .item_objetivos ul {
    font-size: 15px;
  }
}

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