@font-face {
  font-family: Enviro;
  src: url(../../Fonts/enviro-let.ttf);
}
*, ::before, ::after {
  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;
  }
}
.form_content {
  background-color: #646464;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

form {
  background: #fff;
  width: 30%;
  padding: 10px 0;
  border-radius: 10px;
  box-shadow: 0 0 6px 0 rgba(255, 255, 255, 0.8);
}

.form {
  width: 100%;
  margin: auto;
}
.form h2 {
  font-family: "Enviro";
  text-align: center;
  color: #ff5628;
  font-size: 35px;
  font-weight: 100;
}

form .grupo {
  position: relative;
  margin: 45px;
}

input, textarea {
  background: none;
  color: #c6c6c6;
  font-size: 18px;
  padding: 10px 10px 10px 5px;
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #b1b1b1;
  resize: none;
}

input:focus, textarea:focus {
  outline: none;
  color: #5e5d5d;
}

input:focus ~ label, input:valid ~ label {
  position: absolute;
  top: -14px;
  font-size: 12px;
  color: #ff5628;
}

textarea:focus ~ label, textarea:valid ~ label {
  position: absolute;
  top: -14px;
  font-size: 12px;
  color: #ff5628;
}

label {
  font-family: "Raleway";
  color: #132186;
  font-size: 16px;
  position: absolute;
  left: 5px;
  top: 10px;
  transition: 0.5s ease all;
  pointer-events: none;
}

input:focus ~ .barra::before, textarea:focus ~ .barra::before {
  width: 100%;
}

.barra {
  position: relative;
  display: block;
  width: 100%;
}
.barra::before {
  content: "";
  height: 2px;
  width: 0%;
  bottom: 0;
  position: absolute;
  background: #ff5628;
  transition: 0.3s ease all;
  left: 0%;
}

button {
  background: #fc4a1a;
  background: -webkit-linear-gradient(to right, #f7b733, #fc4a1a);
  background: linear-gradient(to right, #f7b733, #fc4a1a);
  display: block;
  width: 100px;
  height: 40px;
  border: none;
  color: #fff;
  border-radius: 4px;
  font-size: 16px;
  margin: 10px auto;
  cursor: pointer;
  font-family: "Raleway";
}

@media screen and (max-width: 1100px) {
  form {
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  form {
    width: 60%;
  }
}
@media screen and (max-width: 450px) {
  form {
    width: 80%;
  }
}
@media screen and (max-width: 300px) {
  form {
    width: 90%;
  }
}
.asesores {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #929292;
}
.asesores h2 {
  font-family: "Enviro";
  font-size: 55px;
  font-weight: 100;
  color: #132186;
}
.asesores .content_asesores {
  width: 90%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin-top: 50px;
}
.asesores .content_asesores .item_asesores {
  width: 30%;
  height: 150px;
  background-color: #525252;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
}
.asesores .content_asesores .item_asesores:hover {
  background-color: #636363;
}
.asesores .content_asesores .item_asesores h3 {
  color: #ff5628;
  font-family: "Enviro";
  font-weight: 100;
  font-size: 25px;
}
.asesores .content_asesores .item_asesores .links {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.asesores .content_asesores .item_asesores .links a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
}
.asesores .content_asesores .item_asesores .links a::after {
  content: "";
  display: block;
  margin: auto;
  height: 2px;
  width: 0;
  transition: all 300ms;
}
.asesores .content_asesores .item_asesores .links a:hover::after {
  width: 100%;
  background: #ff5628;
}

@media screen and (max-width: 599px) {
  .asesores h2 {
    text-align: center;
    font-size: 25px;
  }
  .asesores .content_asesores .item_asesores {
    width: 90%;
    margin-bottom: 15px;
  }
}

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