body{
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
li{
  list-style: none;
}
/* TIPOGRAFIA TEXTOS */
p{
  font-family: 'Varela Round', sans-serif;
}
a{
    color: black;
    text-decoration: none;
}
.negrita{
    font-weight: bolder;
}
.subrallado{
    text-decoration: underline;
}
.wrapper{
    max-width: 1000px;
    margin: 0 auto;
}

/* MENU------------------------------- */
header{
    max-height: 40px;
    display: flex;
    background:#001a30;
    /* background: #006bbf; */
    /* background: rgb(54,192,254);
    background: radial-gradient(circle, rgba(54,192,254,1) 0%, rgba(1,167,244,1) 50%, rgba(1,97,142,1) 100%); */
    justify-content: space-around;
    align-items: center;
    padding: 6px;
    padding-top: 7px;
    position: fixed;
    z-index: 10;
    width: 100%;
}
.header-content{
    display: flex;
    align-items: center;
}
.logo{
    margin-right: 20px;
}
.logo img{
    width: 40px;
}
.menu{
  width: 800px;
  display: flex;
  justify-content: space-around;
}

.menu .menu-item{
  padding-left: 3px;
  padding-right: 3px;
  transition-duration: 100ms;
}
.menu .menu-item:hover{
  padding-left: 3px;
  padding-right: 3px;
  text-shadow: 0 0 5px #ffffff42, 0 0 10px #ffffff73, 0 0 20px #ffffffad, 0 0 40px #00ffff8c, 0 0 80px #00ffffb3, 0 0 90px #0ff0, 0 0 100px #0ff0, 0 0 150px #0ff0;
}
.menu .idioma{
    border-radius: 10px;
    position: relative;
}
.menu .idioma img{
    width: 20px;
    border-radius: 20px;
}
.menu .idioma a{
    display: flex;
    justify-content: space-between;
}
.menu .menu-item a{
    color: #f3ecec;
    font-family: 'Gemunu Libre', sans-serif;
    font-size: 18px;
}
.menu .menu-item i{
    margin-left: 5px;
}
.menu-desplegable{
  display: none;
  position: absolute;
  height: 50px;
  padding-top: 10px;
  left: 0;
  transition-duration: 700ms;
}
.idioma:hover .menu-desplegable{
  transform: fade-in;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background-color: #001a30;
} 

.menu-desplegable-item:hover{
  box-shadow: 0 0 5px #ffffff42, 0 0 10px #ffffff73, 0 0 20px #ffffffad, 0 0 40px #00ffff8c, 0 0 80px #00ffffb3, 0 0 90px #0ff0, 0 0 100px #0ff0, 0 0 150px #0ff0;
  border-radius: 50%;
}
.menu-movil-desplegable{
  display: none;
  position: absolute;
  height: 50px;
  padding-top: 10px;
  left: 0;
  transition-duration: 700ms;
}
.idioma-movil{
  margin-left: 19px !important;
}
.idioma-movil:hover .menu-movil-desplegable{
  transform: fade-in;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background-color: #001a30;
  margin-left: 30px;
} 
/* MENU DISPOSITIVOS MOVILES */
@media screen and (max-device-width: 768px) {
  header{
    display: block;
  }
  .header-content{
    display: none;
  } 
  .phone{
    display: block !important;
    height: 40px !important;
  }
  .menu{
    justify-content: unset;
  }
}
.phone {
  height: 400px;
  position: relative;
  display: none;
}
.phone .logo{
  margin-left: 10px;
}
.phone .menu {
  background-color: #303235;
  color: #f2f2f2;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: sans-serif;
  font-size: 28px;
  height: 100%;
  position: absolute;
  transition: background-color 400ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease, visibility 0.4s;
  width: 100%;
  visibility: hidden;
  opacity: 0;
}
.active{
  height: 600px !important;
}
.active .menu {
  background-color: #001a30;
  visibility: visible;
  opacity: 1;
}
.options {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 60px;
  transform: scale(0.8);
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.option {
  cursor: pointer;
  margin: 8px 0;
}
.option a{
  text-decoration: none;
  color: #f2f2f2;
}
.selected a {
  color: #303235 !important;
}
.active .options {
  transform: scale(1);
}
.x {
  pointer-events: none;
  position: absolute;
  width: 220px;
  top: -9px;
  right: 20px;
}
.top-bars {
  stroke: #f2f2f2;
  transition: stroke 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.active .top-bars {
  stroke: #f2f2f2;
}
.bar {
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.bar1 {
  transform-origin: 190px 20.5px;
}
.bar2 {
  transform-origin: 190px 28.5px;
}
.bar3 {
  transform-origin: 190px 36.5px;
  opacity: 1;
  transition: opacity 0.5s;
  
}
.active .bar1 {
  transform: translateY(8.6px) rotate(45deg);
}
.active .bar2 {
  transform: rotate(-45deg);
}
.active .bar3 {
  opacity: 0;
}
.menu-click-area {
  cursor: pointer;
  height: 40px;
  opacity: 0.3;
  position: absolute;
  right: 30px;
  top: 0;
  width: 40px;
}

@media screen and (max-device-width: 465px) {
  .x {
    pointer-events: none;
    position: absolute;
    width: 220px;
    top: -9px;
    right: 25px;
  }
  .menu-click-area {
    cursor: pointer;
    height: 40px;
    opacity: 0.3;
    position: absolute;
    right: 32px;
    top: 0;
    width: 40px;
  }
}

/*SLIDER FOOTER PATROS*/
.slider {
    height: 100px;
    margin-top: 20px;
    overflow: hidden;
    margin-bottom: 20px;
  }
  .slider-item img{
    /* max-width: 100px; */
    max-height: 100px;
    margin: 0 20px;
  }

  /* FOOTER */

.footer{
  background-color: #1d1d1f;
  color: white;
  text-align: center;
  padding: 20px;
}
.footer a{
  color: white;
  margin: 5px;
}
.footer a i{ 
  font-size: 25px;
}
.redes_footer{
  margin-bottom: 20px;
}
.contacto_footer{
  margin-bottom: 20px;
}

/* ANIMACIONES DE LOS LINKS A REDES*/
.instagram:hover{
  border-radius: 20%;
  transform: scale(1.3);
  background: radial-gradient(circle at 33% 100%, #fed373 4%, #f15245 30%, #d92e7f 62%, #9b36b7 85%, #515ecf);
}
.facebook:hover{
  transform: scale(1.3);
  background-color: #4267B2;
  padding-left: 5px;
  border-radius: 5%;
}
.linkedin:hover{
  transform: scale(1.3);
  background-color: #0077b5;
  padding-left: 5px;
  padding-right: 2px;
  border-radius: 5%;
}
.youtube:hover{
  transform: scale(1.3);
  color: #c4302b;
  background-color: white;
  border-radius: 30%;
}
.twitter:hover{
  transform: scale(1.3);
  color: #00acee;
}
main{
  overflow-x:hidden ;
}