@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5 {
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
a,
li,
button,
h1{
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: black;
  text-decoration: none;
}
body{
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  background-color: white;
}
.general{
  flex-grow: 1;
}
/* Menú Desplegable */
.menu {
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  min-height: 8vh;
  border-bottom: 3px solid rgb(46, 49, 146);
  z-index: 1000;
  position: fixed;
  background-color: white;
  font-size:1rem;
}

.menu .logo {
  cursor: pointer;
  margin-right: auto;
  padding: 0.7rem;
  margin-left: 0.7rem;
}

.menu .enlaces {
  list-style: none;
  justify-content: space-around;
  display: flex;
  width: 30vw;
}
.menu .enlaces li {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px 1rem;
  margin-right:1vw;
}
.menu .enlaces li a {
  transition: all 0.3s ease 0s;
  position: relative;
  vertical-align: middle;
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
}
.menu .enlaces li a:hover {
  transition: all 0.3s ease 0s;
  color: rgb(46, 49, 146);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
}
.cambiaColor{
  background-color:black;
}
.cambiaColor a{
  color:white;
}
.cambiaColor .enlaces li a:hover{
  color:gray;
}
.cambiaColor .btnContacto{
  background-color:black;
  color:white;
  border-color: white;
}
.cambiaColor .nav-active{
  background-color:black;
}
.btnContacto {
  margin-left: 1.1vw;
  margin-right: 1.1vw;
  padding: 0.5rem 1.5rem;
  border: 2px solid rgb(46, 49, 146);
  border-radius: 1.3rem;
  background-color: white;
  color: black;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -webkit-border-radius: 1.3rem;
  -moz-border-radius: 1.3rem;
  -ms-border-radius: 1.3rem;
  -o-border-radius: 1.3rem;
}
.btnContacto:hover {
  background-color: rgb(46, 49, 146);
  color: white;
}
.menu .burger {
  display: none;
  cursor: pointer;
}
.menu .burger div {
  width: 25px;
  height: 2px;
  background-color: rgb(46, 49, 146);
  margin: 5px 25px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
    -webkit-transform: rotate(-45deg) translate(-5px, 6px);
    -moz-transform: rotate(-45deg) translate(-5px, 6px);
    -ms-transform: rotate(-45deg) translate(-5px, 6px);
    -o-transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
  opacity: 0;
}
.toggle .line3 {
    transform: rotate(+45deg) translate(-4px, -5px);
    -webkit-transform: rotate(+45deg) translate(-4px, -5px);
    -moz-transform: rotate(+45deg) translate(-4px, -5px);
    -ms-transform: rotate(+45deg) translate(-4px, -5px);
    -o-transform: rotate(+45deg) translate(-4px, -5px);
}
/*Encabezado*/
.mid{
    background-image:url("imagenes/header.png");
    background-repeat:round;
    background-size:no-repeat;
    width: 100%;
    min-height:300px;
    padding-top:70px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.titulo{
    font-family: "Roboto", sans-serif;
    font-size: 50px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
}
/*Fotos*/
.direc{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height:auto;
}
.empleados{
    padding: 0px 10%;
}
.empleados h2{
    font-weight:500;
}
.tituloStaff{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top:5vh;
}
.direc .fotos{
    justify-content:space-between;
    display:flex;
    margin:auto;
    padding: 1vh;
    min-height:305px;
}
.direc .fotos img{
    display:block;
    margin:25px;
    min-width: 200px;
    min-height: 200px;
    border-radius:200px;
    -webkit-border-radius:200px;
    -moz-border-radius:200px;
    -ms-border-radius:200px;
    -o-border-radius:200px;
    cursor:pointer;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
}
.direc .fotos img:hover{
    filter: brightness(30%);
    -webkit-filter: brightness(30%);
}
/*Responsive Fotos*/
@media screen and (max-width:900px){
  .fotos{
    flex-direction: column;
  }
}
/*Pop Up*/
.nombrestaff{
  font-weight:bold;
  font-size:26px;
  text-align:center;
}
.datossoci{
  text-align: center;
}
.datossoci img{
  justify-content: center;
  width: 350px;
  padding:20px;
  border-radius:30px;
  -webkit-border-radius:30px;
  -moz-border-radius:30px;
  -ms-border-radius:30px;
  -o-border-radius:30px;
}
.profesion{
  color:rgb(46,49,146);
  font-size:15px;
  margin-top:-10px;
  text-align: center;
}
.subtitulo{
  text-transform: uppercase;
  font-weight:600;
  color:rgb(46, 49, 146);
}
.lugar{
  color: gray;
}
.anio{
  color:rgb(46, 49, 146);
}
.contenedorpopup{
  width: 100%;
  height: 100%;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  transition: all ease 0.6s;
  -webkit-transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -ms-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  padding:40px;
}
.lista{
  text-align:left;
}
.lista li{
  margin-top:2vh;
}
.guion{
  color:rgb(46, 49, 146);
  font-weight: bold;
}
.textopopup, .textopopupb{
  width: 100%;
  height:100%;
  padding: 50px;
  display:flex;
  overflow-y:auto;
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  -ms-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
}
.textopopup section, .textopopupb section{
  flex-basis: 100%;
  padding: 15px;
  line-height: 25px;
}
.textopopup section .texto, .textopopupb section .texto{
  max-width:700px;
  text-align:justify;
}
.subtitulo{
  text-align: center;
}
/*Responsive Popup*/
@media screen and (max-width:900px){
}
/* Footer */
.footer {
    bottom: 0;
    position: static;
    margin-top:auto;
    width: 100%;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    background-color: black;
    color:white;
  }
.secFooter {
    padding: 1rem 0 0;
    border-top: 3px solid rgb(46, 49, 146);
  }
.footLogo {
    order: 0;
    margin-top: 0;
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    color: rgb(46, 49, 146);
    padding: 1vh;
  }
.footLogo p {
    color: white;
    font-size: 18px;
    padding-top: 2vh;
    font-weight: 500;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
.footVarios ul {
    position: relative;
    text-align: center;
    list-style: none;
  }
.footVarios ul li a {
    position: relative;
    display: inline-block;
    color: white;
    text-decoration: underline;
    font-weight: bold;
  }
.footVarios {
    padding: 1vh;
  }


  @media screen and (max-width: 1024px) {
    .enlaces {
      width: 60%;
    }
  }
  @media screen and (max-width: 768px) {
    body {
      overflow-x: hidden;
    }
    .enlaces {
      position: absolute;
      right: 0px;
      height: 92vh;
      top: 8vh;
      background-color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 100vw;
      transform: translateX(100%);
      transition: transform 0.5s ease-in;
      -webkit-transition: transform 0.5s ease-in;
      -moz-transition: transform 0.5s ease-in;
      -ms-transition: transform 0.5s ease-in;
      -o-transition: transform 0.5s ease-in;
      -webkit-transform: translateX(100%);
      -moz-transform: translateX(100%);
      -ms-transform: translateX(100%);
      -o-transform: translateX(100%);
      margin-right:0px;
  }
    .enlaces li {
      opacity: 0;
    }
    .menu .burger {
      display: block;
    }
    p {
      font-family: "Roboto", sans-serif;
      font-size: 1.2rem;
      color: white;
      text-decoration: none;
      font-weight: 200;
    }
    .centro {
      margin-left: 15vw;
      margin-right: 15vw;
      margin-top: 15vh;
    }
    .mid{
      min-height:35vh;
    }
    .mid h1{
      text-align: center;
    }
    .datossoci img{
      align-items: center;
      align-self: center;
      margin-left:auto;
    }
    .footLogo img{
      width: 50%;
      height: 50%;
    }
    .footLogo p{
      font-size: 0.9rem;
    }
    .footVarios ul{
      font-size:0.7rem;
    }
    .menu .logo{
      transform: scale(85%);
      -webkit-transform: scale(85%);
      -moz-transform: scale(85%);
      -ms-transform: scale(85%);
      -o-transform: scale(85%);
      margin-left:-3vw;
    }
    .btnContacto{
      border: 0;
      background-color:transparent;
    }
    .btnContacto:hover{
      background-color:transparent;
      color:rgb(46, 49, 146)
    }
    .cambiaColor .btnContacto{
      border : 0;
      background-color:transparent;
    }
    .cambiaColor .btnContacto:hover{
      background-color:transparent;
      color:gray;
    }
    .enlaces li {
      opacity: 0;
    }
    .menu .burger {
      display: block;
    }
    .textopopup, .textopopupb{
      display:flex;
      flex-direction: column;
      color:black;
    }
    .texto, .exp, .span{
      color:black;
      font-weight: 400;
      font-size:1rem;
    }
  }
  .nav-active {
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
  }
  @keyframes enlacesFade {
    from {
      opacity: 0;
      transform: translateX(50px);
      -webkit-transform: translateX(50px);
      -moz-transform: translateX(50px);
      -ms-transform: translateX(50px);
      -o-transform: translateX(50px);
  }
    to {
      opacity: 1;
      transform: translateX(0px);
      -webkit-transform: translateX(0px);
      -moz-transform: translateX(0px);
      -ms-transform: translateX(0px);
      -o-transform: translateX(0px);
  }
  }