@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 {
  position: relative;
  background-image: url("../img/Fondo.jpg");
  background-position: center;
  background-size: cover;
  transition: all 0.5s ease;
  z-index: 2;
}
.home_section .content_main {
  width: 100%;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.home_section .content_main h1 {
  font-family: "Enviro";
  color: #132186;
  font-size: 100px;
  font-weight: 100;
  letter-spacing: 5px;
  text-shadow: 1px 1px 2px #ff5628;
}
.home_section .content_main h2 {
  font-family: "Enviro";
  color: #ff5628;
  font-weight: 100;
  font-size: 35px;
  letter-spacing: 2px;
  text-shadow: 2px 2px 2px #000;
}
.home_section .content_main a {
  display: inline-block;
  position: relative;
  color: #fff;
  text-decoration: none;
  font-family: "Raleway", sans-serif;
  font-size: 25px;
}
.home_section .content_main a::after {
  content: "";
  display: block;
  margin: auto;
  height: 2px;
  width: 0;
  transition: all 300ms;
}
.home_section .content_main a:hover::after {
  width: 100%;
  background: #ff5628;
}
.home_section .content_main .down {
  position: absolute;
  bottom: 20px;
}
.home_section .content_main .down i {
  color: #fff;
  font-size: 25px;
  animation: Bajar 0.4s infinite alternate;
  transition: 0.4s;
}

@keyframes Bajar {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(10px);
  }
}
.beneficios {
  width: 100%;
  min-height: 100vh;
  background-color: #969696;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.beneficios h2 {
  font-family: "Enviro";
  font-size: 45px;
  color: #132186;
  font-weight: 100;
  text-shadow: 1px 1px 2px #ff5628;
}
.beneficios .content_beneficios {
  margin: 25px 0 0 0;
  width: 90%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.beneficios .content_beneficios .item_beneficios {
  width: 30%;
  height: 300px;
  background-color: #5c5c5c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  transition: 300ms all;
}
.beneficios .content_beneficios .item_beneficios i {
  font-size: 30px;
  color: #132186;
  padding: 15px 0px;
}
.beneficios .content_beneficios .item_beneficios h3 {
  font-size: 25px;
  color: #fff;
  font-weight: 100;
  font-family: "Enviro";
}
.beneficios .content_beneficios .item_beneficios p {
  font-size: 15px;
  color: #fff;
  font-weight: lighter;
  font-family: "Raleway";
  padding: 5px 35px;
}
.beneficios .content_beneficios .item_beneficios:hover {
  background-color: #808080;
}

.proyectos {
  position: relative;
  background-image: url("../img/Fondo(2).jpg");
  background-position: center;
  background-size: cover;
  transition: all 0.5s ease;
  z-index: 2;
}
.proyectos .content_proyectos {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.proyectos .content_proyectos h2 {
  color: #132186;
  font-family: "Enviro";
  font-weight: 100;
  font-size: 45px;
  text-shadow: 1px 1px 2px #ff5628;
}
.proyectos .content_proyectos .item_proyectos {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.proyectos .content_proyectos .item_proyectos h3 {
  font-family: "Raleway";
  font-size: 30px;
  color: #fff;
  font-weight: 400;
  text-shadow: 1px 1px 2px #ff5628;
}

.productos {
  width: 100%;
  min-height: 100vh;
  background-color: #646464;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.productos h2 {
  color: #132186;
  font-family: "Enviro";
  font-weight: 100;
  font-size: 45px;
  text-shadow: 1px 1px 2px #ff5628;
}
.productos .content_productos {
  width: 90%;
  height: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.productos .content_productos .item_productos {
  width: 30%;
  position: relative;
  z-index: 2;
  border-radius: 15px;
  margin: 10px;
  overflow: hidden;
  transition: 0.7s all;
}
.productos .content_productos .item_productos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: 0.7s all;
}
.productos .content_productos .item_productos .hover {
  width: 0%;
  height: 100%;
  background-color: #20202091;
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.7s all ease;
}
.productos .content_productos .item_productos .hover h3 {
  font-family: "Enviro";
  font-weight: 100;
  font-size: 30px;
  color: #ff5628;
}
.productos .content_productos .item_productos .hover a {
  display: inline-block;
  position: relative;
  color: #fff;
  text-decoration: none;
  font-family: "Raleway", sans-serif;
  font-size: 20px;
}
.productos .content_productos .item_productos .hover a::after {
  content: "";
  display: block;
  margin: auto;
  height: 2px;
  width: 0;
  transition: all 300ms;
}
.productos .content_productos .item_productos .hover a:hover::after {
  width: 100%;
  background: #ff5628;
}
.productos .content_productos .item_productos:hover .hover {
  width: 100%;
}
.productos .content_productos .item_productos:hover img {
  transform: scale(1.1);
}

@media screen and (max-width: 1023px) {
  .home_section .content_main h1 {
    font-size: 55px;
  }
  .home_section .content_main h2 {
    font-size: 35px;
  }
  .home_section .content_main a {
    font-size: 30px;
  }

  .beneficios .content_beneficios {
    height: auto;
  }
  .beneficios .content_beneficios .item_beneficios {
    width: 45%;
    margin-bottom: 15px;
  }

  .proyectos .content_proyectos .item_proyectos {
    width: 90%;
  }
  .proyectos .content_proyectos .item_proyectos h3 {
    font-size: 20px;
  }
  .proyectos .content_proyectos .item_proyectos video {
    width: 80%;
  }

  .productos .content_productos .item_productos {
    width: 45%;
  }
}
@media screen and (max-width: 700px) {
  .beneficios .content_beneficios .item_beneficios {
    width: 85%;
  }

  .productos .content_productos .item_productos .hover h3 {
    font-size: 25px;
  }
  .productos .content_productos .item_productos .hover a {
    font-size: 15px;
  }
}
@media screen and (max-width: 599px) {
  .home_section .content_main h1 {
    font-size: 45px;
  }
  .home_section .content_main h2 {
    font-size: 30px;
  }
  .home_section .content_main a {
    font-size: 25px;
  }

  .proyectos .content_proyectos .item_proyectos {
    width: 90%;
  }
  .proyectos .content_proyectos .item_proyectos h3 {
    font-size: 20px;
  }
  .proyectos .content_proyectos .item_proyectos video {
    width: 85%;
  }
}
@media screen and (max-width: 479px) {
  .home_section .content_main h1 {
    font-size: 38px;
  }
  .home_section .content_main h2 {
    font-size: 25px;
  }
  .home_section .content_main a {
    font-size: 20px;
  }

  .beneficios .content_beneficios {
    height: auto;
  }
  .beneficios .content_beneficios .item_beneficios {
    width: 90%;
    margin-bottom: 15px;
  }

  .proyectos .content_proyectos .item_proyectos {
    width: 90%;
  }
  .proyectos .content_proyectos .item_proyectos h3 {
    font-size: 20px;
  }
  .proyectos .content_proyectos .item_proyectos video {
    width: 90%;
  }

  .productos .content_productos .item_productos {
    width: 90%;
  }
}

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