@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@1,900&family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Nunito+Sans:wght@200;300;400;600;700;800;900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --azulfuerte: #1e5b97;
  --azulmedio: #4b88c6;
  --azulbajo: #2db2e5;
  --gris: #f1f1f1;
}
body {
  font-size: 16px;
  font-family: Montserrat;
  line-height: 24px;
  color: #333;
}
.ancho {
  max-width: 1200px;
  margin: auto;
}
.negritas {
  font-weight: 600;
}
.azul {
  color: var(--azulfuerte);
}
header {
  background-color: var(--azulfuerte);
  color: white;
  padding: 5px;
  font-size: 14px;
}
header a {
  text-decoration: none;
  color: white;
}
header a:hover {
  color: var(--azulbajo);
}
.idiomas {
  min-width: 100px;
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
}
.menu_dos {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.btn_azulbajo {
  background-color: var(--azulbajo);
  padding: 5px 20px;
  border-radius: 60px;
  color: white;
  text-decoration: none;
  display: inline-block;
  transition: all 0.5s;
}
.btn_azulbajo:hover {
  background-color: #333;
}
.btn_azul {
  background-color: #1e5b97 !important;
  padding: 10px 30px !important;
  color: white;
  text-decoration: none;
  display: inline-block;
  transition: all 0.5s;
  border-radius: 40px !important;
}
.btn_azul:hover {
  background-color: var(--azulbajo) !important;
}
.alinear {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 5px 10px;
}
#iconomenu {
  background: var(--azulbajo);
  color: white;
  padding: 15px;
  width: 30px;
  height: 30px;
  display: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
  border-radius: 5px;
  cursor: pointer;
}
.logo {
  max-width: 150px;
}
nav {
  flex-grow: 1;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  padding: 5px;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 10px;
  flex-grow: 1;
}
.opcionesmenu {
  text-decoration: none;
  color: #333;
}
.opcionesmenu:hover {
  color: var(--azulbajo);
}
.opcionesmenu2 {
  text-decoration: none;
  color: #333;
}
.sub {
  padding-left: 10px;
}
#esconder {
  display: none;
  margin: 0;
  position: sticky;
  top: 0;
}
.desplegable {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: var(--gris);
  padding: 15px;
  border-radius: 0px 0px 15px 15px;
}
.desplegable li {
  display: block;
  width: 100%;
}
.submenu:hover .desplegable {
  display: flex;
  position: absolute;
  z-index: 10;
}

/* SLIDE */
.rslides_container {
  width: 100%;
  height: 85.5vh;
  overflow: hidden;
  position: relative;
  color: white;
}
.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}
.rslides li {
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.rslides li:first-child {
  position: relative;
  display: block;
  float: left;
}
.rslides img {
  display: block;
  object-fit: cover;
  float: left;
  width: 100%;
  height: 100%;
}
.rslides .aux {
  filter: brightness(0.5);
}
.centered-btns_nav {
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 0;
  text-indent: -9999px;
  height: 60px;
  width: 60px;
  background: url("../imagenes/previus.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20%;
  margin-top: -45px;
  border: 0.5px var(--color_gris) solid;
  left: 3%;
  transition: all 0.5s;
}
.centered-btns_nav:active {
  opacity: 1;
}
.centered-btns_nav.next {
  left: auto;
  /* background-position: right top; */
  right: 3%;
  transform: rotate(180deg);
}
.centered-btns_nav:hover {
  outline: none;
  background-color: var(--azulbajo);
}
.centered-btns_tabs {
  list-style: none;
  display: flex;
  flex-direction: row;
  padding: 0px 0px;
  gap: 10px;
  justify-content: center;
  position: absolute;
  z-index: 2;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.centered-btns_tabs a {
  display: inline-block;
  background: #ccc;
  width: 50px;
  height: 5px;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.5s;
}
.centered-btns_here a {
  background-color: var(--azulbajo);
  width: 80px;
}
.rslides .caption {
  position: absolute;
  z-index: 4;
  left: 10%;
  top: 50%;
  transform: translate(0%, -50%);
}
.rslides .caption h1 {
  font-size: 60px;
  line-height: 60px;
  margin-bottom: 0;
  max-width: 600px;
  padding: 10px;
}
.rslides .caption p {
  margin-top: 25px;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
  max-width: 600px;
  padding: 10px;
}
.rslides .caption a {
  width: fit-content;
  padding: 20px 40px;
  border-radius: 3px;
}
.servicios {
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
  padding: 15px;
}
.tituloservicios {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.tituloservicios img {
  max-width: 60px;
}
.tituloservicios h2 {
  color: var(--azulfuerte);
  line-height: 27px;
  font-size: 20px;
}
.servicios article {
  max-width: 320px;
  border-radius: 20px;
  background-color: var(--gris);
  padding: 15px;
}
.servicios article p {
  text-align: center;
  padding-bottom: 10px;
}
.slogan {
  padding: 10px;
}
.adquieremembresia {
  background-color: var(--azulmedio);
  color: white;
  padding: 10px;
}
.adquieremembresia2 {
  background-color: var(--gris);
  padding: 10px;
}
.contenedormembresia {
  display: flex;
  justify-content: center;
  gap: 50px;
  align-items: center;
  padding: 20px;
}
.adquieremembresia figure {
  max-width: 400px;
}
.adquieremembresia figure img {
  width: 100%;
}
.infomembresia {
  max-width: 600px;
  text-align: right;
  padding: 10px;
}
.infomembresia h2 {
  font-size: 40px;
  line-height: 45px;
}
.infomembresia p {
  max-width: 400px;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 20px;
}
.noticaseventos {
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 20px;
  padding: 10px;
}
.infonoticias {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.noticaseventos article {
  max-width: 33%;
  transition: all 0.5s;
}
.banners:hover {
  filter: brightness(0.85);
}
.banners {
  border-radius: 20px;
  max-width: 350px;
  min-width: 220px;
  background-color: #f1f1f1;
  position: relative;
}
.banners a {
  text-decoration: none;
}
.todosbanner {
  flex-grow: 1;
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 20px;
}
.banners img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px 20px 0px 0px;
}
.banners h5 {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 10;
  color: white;
  background-color: transparent;
  text-shadow: 0px 0px 10px #333;
}
.banners h3 {
  color: #696969;
  padding: 15px;
}
.titulo_noticias {
  font-size: 35px;
  line-height: 40px;
}
.linea {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  margin: 0;
}
.lineaazul1 {
  background-color: #2db2e5;
  padding: 7px;
  width: 40%;
}
.lineaazul2 {
  width: 60%;
  padding: 7px;
  background-color: #4b88c6;
}
footer {
  background-color: var(--azulfuerte);
  color: white;
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  flex-wrap: wrap;
}
footer article {
  max-width: 350px;
  padding: 20px;
  line-height: 30px;
}
footer a {
  color: white;
}
#subir {
  font-size: 35px;
  color: var(--azulbajo);
  position: fixed;
  z-index: 101;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
}
.azulbuscar {
  background-color: var(--azulmedio) !important;
}
.mapa {
  padding: 0;
  height: 510px;
}
.mapa iframe {
  width: 100%;
  height: 510px;
}
.current a{
  color: var(--azulbajo);
}