@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400&display=swap");
@font-face {
  font-family: bluefish;
  src: url(fuentes/BLUEFISH_BLACK.OTF);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
  max-width: 100%;
}

html,
body {
  width: 100%;
  min-width: 100%;
  overflow-x: hidden;
}

body {
  box-sizing: border-box;
  background: #f9f9f9;
}

.container {
  box-sizing: border-box;
  width: 100%;
  max-width: 100vw;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 100px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 100;
  visibility: hidden;
}

.boton {
  display: block;
  background-color: rgb(239, 59, 14);
  border-radius: 10px;
  max-width: 400px;
  color: white;
  max-width: 300px;
  padding: 0.5em 1em;
  margin: auto;
  margin-bottom: 2em;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(51, 91, 144, 0.866);
  border-radius: 10px;
}

.destacado {
  display: block;
  border-radius: 10px;
  max-width: 800px;
  color: white;
  max-width: 400px;
  padding: 0.5em 1em;
  margin: 2em auto;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(51, 91, 144, 0.866);
  border-radius: 5px;
}

.cerradas {
  border: 1px solid red;
  background-color: crimson;
  color: white;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-overlay .modal-content {
  background-color: #fff;
  color: #333;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  background-image: url("../img/fondo.jpg");
  background-repeat: no-repeat; /* Para evitar que la imagen se repita */
  background-size: cover; /* Para cubrir todo el elemento con la imagen */
  background-position: center;
  background-attachment: fixed;
}
.modal-overlay .modal-content h2 {
  font-family: "bluefish", sans-serif;
  color: rgb(15, 109, 8);
  font-size: 2.5rem;
  text-transform: uppercase;
}
.modal-overlay .modal-content p {
  margin: 0.5rem auto;
  font-weight: 600;
}
.modal-overlay .modal-content h2 {
  margin-top: 0;
}
.modal-overlay .modal-content button {
  margin-top: 1.5rem;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  background-color: #006837;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.modal-overlay .modal-content button:hover {
  background-color: #004d29;
}
.modal-overlay .modal-content img#personaje4 {
  display: block;
  margin: 0 auto 1rem auto;
  max-width: 180px;
  height: auto;
}

.width-100 {
  width: 100px !important;
}

.width-150 {
  width: 150px !important;
}

.width-200 {
  width: 200px !important;
}

.pie {
  position: relative;
  width: 100%;
  background: rgb(0, 16, 22);
  background: radial-gradient(circle, rgb(0, 21, 29) 0%, rgba(1, 11, 15, 0.9) 100%);
  display: grid;
  grid-template-columns: 1fr;
  color: white;
  padding: 1rem;
}
.pie .bloque-sup {
  display: flex;
  flex-wrap: wrap; /* ✅ Permite que los elementos pasen a la siguiente línea */
  justify-content: center;
  align-items: center;
  justify-items: center;
  align-content: center;
  margin: 1rem auto;
  max-width: 100%; /* previene que crezca más que el viewport */
  gap: 1rem; /* opcional: espacio entre elementos al hacer wrap */
}
.pie .bloque-sup p {
  font-weight: 300;
  font-size: 0.85rem;
}
.pie .bloque-inf {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  padding: 1rem;
  text-align: center;
}
.pie .bloque-inf .rrss img {
  width: 28px;
  margin: 0.5rem;
}
.pie a,
.pie a:visited,
.pie a:link,
.pie a:hover {
  text-decoration: none;
  color: white;
  font-size: 0.8em;
  font-weight: 400;
}
.pie ul {
  position: relative;
  display: flex;
  flex-direction: column;
  list-style: none;
}
.pie ul li {
  display: block;
}
.pie h6 {
  letter-spacing: 2px;
  font-weight: 300;
}

.logo-pie {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 2rem;
  flex: 1 1 300px; /* ✅ Se adapta y pasa a la siguiente línea si no cabe */
  box-sizing: border-box; /* asegura que padding no rompa el ancho */
  gap: 1rem;
}

@media only screen and (min-width: 551px) and (max-width: 750px) {
  .pie .bloque-sup {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .pie .bloque-inf {
    grid-template-columns: 1fr 1fr;
    padding: 1rem;
    text-align: center;
  }
}
@media only screen and (max-width: 550px) {
  .pie .bloque-sup {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .pie .bloque-inf {
    grid-template-columns: 1fr;
    padding: 1rem;
    text-align: center;
  }
}
.seccion {
  width: 100%;
  padding: 1em;
}

.frm {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 5px;
  padding: 1em;
}
.frm label {
  width: 100%;
  border-bottom: 1px solid rgba(255, 0, 0, 0.1);
  color: #ac0c0c;
}
.frm input[type=text], .frm input[type=submit], .frm textarea {
  width: 100%;
  height: 3rem;
  outline: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  color: #ac0c0c;
  background: #f4f8ff;
  padding: 0.5rem;
  font-size: 1.2rem;
  font-weight: 400;
  transition: border 0.5s ease-in-out;
}
.frm input[type=text]:hover, .frm textarea:hover, .frm input[type=submit]:hover {
  border: 1px solid firebrick;
}
.frm input::placeholder {
  color: rgb(77, 152, 177);
}
.frm textarea {
  height: 9rem;
}

.alerta {
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr;
}
.alerta .titulo {
  border-bottom: 1px solid rgb(217, 150, 144);
  column-span: all;
}

.verde {
  background-color: rgb(222, 255, 187);
}

.roja {
  background-color: rgb(255, 193, 187);
}

.cabecera {
  width: 100%;
  background-image: url("../img/fondo.jpg");
  background-repeat: no-repeat; /* Para evitar que la imagen se repita */
  background-size: cover; /* Para cubrir todo el elemento con la imagen */
  background-position: center;
  background-attachment: fixed;
  padding: 0;
}
.cabecera img {
  width: 100%;
  margin: auto;
}
.cabecera h1,
.cabecera h2,
.cabecera h3 {
  text-align: center;
  color: #202020;
  font-family: "bluefish", sans-serif;
  letter-spacing: 5px;
  margin: 1em auto;
}
.cabecera a,
.cabecera a:link,
.cabecera a:hover,
.cabecera a:visited {
  display: block;
  text-align: center;
  color: rgb(185, 85, 85);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.textoCabecera {
  width: 100%;
  background: rgb(174, 238, 223);
  background: linear-gradient(35deg, rgb(243, 229, 182) 0%, rgb(231, 240, 56) 100%);
  font-family: "bluefish", sans-serif;
  text-align: center;
  padding: 2em;
  border-bottom: 1px solid rgba(141, 68, 0, 0.5);
}
.textoCabecera h5 {
  margin-bottom: 0.5em;
  letter-spacing: 1px;
}
.textoCabecera h1,
.textoCabecera h2 {
  font-family: "bluefish", sans-serif;
  color: rgb(97, 46, 9);
}
.textoCabecera h2 {
  font-size: 2em;
}
.textoCabecera ul {
  padding-left: 1em;
}
.textoCabecera a,
.textoCabecera a:link,
.textoCabecera a:hover,
.textoCabecera a:visited {
  display: block;
  text-align: left;
  color: white;
  padding: 0.5em 1em;
  margin-bottom: 0.5em;
  text-decoration: none;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid rgba(255, 0, 0, 0.2);
  background-color: rgba(112, 165, 96, 0.322);
  border-radius: 10px;
}

.avai {
  position: relative;
  width: 100%;
}

.logo {
  font-size: 2em;
  width: 80px;
  color: #359381;
  pointer-events: none;
  user-select: none;
}

.navigation a {
  position: relative;
  font-size: 1.1em;
  color: white;
  font-weight: 600;
  width: 100px;
  text-decoration: none;
  margin: 0 10px;
  padding: 6px 15px;
  border-radius: 20px;
  transition: 0.5s;
}
.navigation a:hover,
.navigation a.active {
  background: #359381;
  color: #ff9484;
}
.navigation a span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 30px;
  z-index: -1;
  transform: scale(0);
  opacity: 0;
  transition: 0.5s;
}
.navigation a:hover span,
.navigation a.active span {
  transform: scale(1);
  opacity: 1;
}

.parallax {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background: rgb(238, 174, 202);
  background: linear-gradient(35deg, rgb(243, 229, 182) 0%, rgb(240, 93, 56) 100%);
  background-image: url("../img/fondo.jpg");
  background-repeat: no-repeat; /* Para evitar que la imagen se repita */
  background-size: cover !important; /* Para cubrir todo el elemento con la imagen */
  background-position: top;
  background-attachment: fixed;
  background-attachment: scroll; /* o prueba con 'local' */
  background-size: auto; /* o intenta ajustar el tamaño manualmente */
  overflow: hidden;
  backdrop-filter: blur;
}
.parallax #video {
  border: 5px solid pink;
}

.parallax h2 {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 5%;
  font-size: clamp(2.5rem, 5vw + 0.5rem, 4rem);
  line-height: 0.75em;
  letter-spacing: 0.5px;
  font-family: "bluefish", sans-serif;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.6), 0 0 15px rgba(255, 255, 255, 0.4);
}

.parallax h3 {
  position: absolute;
  text-align: center;
  bottom: 15%;
  font-size: clamp(2.5rem, 5vw + 0.5rem, 4rem);
  line-height: 0.75em;
  padding: 1rem;
  border: 1px solid rgba(255, 0, 0, 0.393);
  border-radius: 5px;
  letter-spacing: 0px;
  font-family: "bluefish", sans-serif;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.6), 0 0 15px rgba(255, 255, 255, 0.4);
}

.parallax img {
  position: absolute;
  width: 100%;
  pointer-events: none;
}

.parallax img#logo {
  position: absolute;
  width: 60%;
  max-width: 250px;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
  border-radius: 20px;
}

.parallax img#personaje1 {
  position: absolute;
  width: 450px;
  top: 10px;
  left: 10px;
}

.parallax video {
  position: absolute;
  width: 90%;
  max-width: 800px;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
  border-radius: 20px;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.6), 0 0 15px rgba(255, 255, 255, 0.4);
}

.parallax img#personaje2 {
  position: absolute;
  width: 45%;
  top: 45%;
  left: 45%;
  transform: translateX(-100%);
}

.parallax img#corazon {
  position: absolute;
  width: 30%;
  top: 55%;
  left: 50%;
}

.parallax img#grass {
  position: absolute;
  bottom: 0;
}

.parallax a:link,
.parallax a:hover,
.parallax a:visited {
  z-index: 99;
  width: auto;
  font-size: 0.75em;
  font-weight: 800;
  color: #020912;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.sec33 {
  position: relative;
  background: #020912;
  padding: 30px 30px;
  text-align: center;
  background-image: linear-gradient(to bottom, rgba(92, 92, 14, 0.5), rgba(102, 102, 221, 0.5));
}
.sec33 h2 {
  font-size: 3em;
  color: #fff;
  margin-top: -20px;
  margin-bottom: 20px;
  font-family: "bluefish", sans-serif;
  letter-spacing: 2px;
}
.sec33 h3,
.sec33 h4,
.sec33 h5 {
  width: 100%;
  border-radius: 10px;
  margin: auto;
  margin-bottom: 1em;
  letter-spacing: 2px;
  padding: 0.5em;
}
.sec33 h3 {
  color: rgb(32, 33, 30);
  background-color: rgb(255, 255, 255);
}
.sec33 h4 {
  color: rgb(255, 255, 255);
}
.sec33 p {
  font-size: 1.2em;
  color: #fff;
  font-weight: 300;
  text-align: left;
  margin-bottom: 1em;
  letter-spacing: 1px;
  line-height: 1.5em;
}
.sec33 span {
  font-style: oblique;
}
.sec33 img {
  width: 100px;
}
.sec33 a,
.sec33 a:link,
.sec33 a:hover,
.sec33 a:visited {
  display: block;
  color: white;
  padding: 0.5em 1em;
  margin-bottom: 2em;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.banner {
  display: block;
  width: 100%;
}
.banner img {
  width: 100%;
}

#perfil {
  width: 100%;
}
#perfil img {
  width: 100%;
  max-width: 800px;
  margin: auto;
}

.clasificaciones {
  max-width: 800px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 5fr 5fr 2fr;
  grid-gap: 1em;
  padding: 1em;
}
.clasificaciones h5 {
  margin-top: 2em;
  grid-column: 1/-1;
  border-bottom: 1px solid white;
}
.clasificaciones p {
  text-align: right;
}

@media (min-width: 501px) and (orientation: portrait) {
  .parallax {
    box-sizing: border-box;
    background-size: contain; /* Para cubrir todo el elemento con la imagen */
    width: 100%;
  }
  .parallax img#logo {
    width: 50%;
  }
  .parallax video {
    width: 85%;
  }
  .parallax img#personaje2 {
    width: 40%;
    top: 50%;
  }
  .parallax img#corazon {
    width: 27%;
    left: 60%;
  }
  .sec {
    position: relative;
    background: #020912;
    padding: 100px 100px;
    text-align: center;
    background-image: linear-gradient(to bottom, rgba(92, 92, 14, 0.5), rgba(102, 102, 221, 0.5));
  }
  .sec h2 {
    font-size: 3em;
    color: #fff;
    margin-top: -50px;
    margin-bottom: 60px;
    font-family: "bluefish", sans-serif;
    letter-spacing: 2px;
  }
  .sec p {
    font-size: 1.1em;
    color: #fff;
    font-weight: 300;
    text-align: justify;
    margin-bottom: 2em;
    letter-spacing: 1px;
    line-height: 1.5em;
  }
  .sec img {
    width: 150px;
  }
  .perfil2 {
    display: flex;
    border: 1px solid white;
    width: 500px;
    margin: auto;
    padding: 0;
  }
  .perfil2 img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 701px) and (max-width: 800px) {
  .parallax img#personaje2 {
    width: 30%;
    top: 50%;
    left: 30%;
  }
  .parallax img#corazon {
    width: 22%;
    left: 65%;
    top: 60%;
  }
}
@media only screen and (min-width: 801px) and (max-width: 1000px) {
  .parallax img#personaje1 {
    width: 450px;
    top: 10px;
    left: 60px;
  }
  .parallax video {
    width: 80%;
  }
  .parallax img#personaje2 {
    width: 24%;
    top: 50%;
    left: 25%;
  }
  .parallax img#corazon {
    width: 16%;
    top: 65%;
    left: 70%;
  }
}
@media only screen and (min-width: 1001px) and (max-width: 1200px) {
  .parallax video {
    width: 70%;
  }
  .parallax img#personaje1 {
    width: 450px;
    top: 10px;
    left: 60px;
  }
  .parallax img#personaje2 {
    width: 24%;
    top: 40%;
    left: 25%;
  }
  .parallax img#corazon {
    width: 14%;
    top: 65%;
    left: 70%;
  }
}
@media only screen and (min-width: 1201px) and (max-width: 1400px) {
  .parallax img#personaje1 {
    width: 450px;
    top: 10px;
    left: 60px;
  }
  .parallax img#personaje2 {
    width: 24%;
    top: 40%;
    left: 25%;
  }
  .parallax img#corazon {
    width: 14%;
    top: 65%;
    left: 70%;
  }
}
@media only screen and (min-width: 1401px) and (max-width: 1600px) {
  .parallax img#personaje1 {
    width: 450px;
    top: 10px;
    left: 60px;
  }
  .parallax img#personaje2 {
    width: 20%;
    top: 30%;
    left: 25%;
  }
  .parallax img#corazon {
    width: 14%;
    top: 55%;
    left: 70%;
  }
}
@media only screen and (min-width: 1601px) and (max-width: 14020px) {
  .parallax img#personaje1 {
    width: 450px;
    top: 10px;
    left: 60px;
  }
  .parallax img#personaje2 {
    width: 20%;
    top: 30%;
    left: 25%;
  }
  .parallax img#corazon {
    width: 14%;
    top: 35%;
    left: 70%;
  }
}
.ultra,
.rangers {
  position: relative;
  width: 100%;
}
.ultra h1,
.rangers h1 {
  font-size: 4em;
  color: #2c0606;
  margin-top: -20px;
  margin-bottom: 20px;
  font-family: "bluefish", sans-serif;
  letter-spacing: 2px;
  text-align: center;
}

.idioma {
  border: 1px solid white !important;
  border-radius: 5px;
  position: absolute;
  left: 20px;
  top: 20px;
  padding: 0.5rem;
}

.marca-marbella {
  position: absolute;
  right: 20px;
  top: 20px;
  padding: 0.5rem;
}

.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(51, 91, 144, 0.8);
  color: white;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 1000;
}

.scroll-top:hover {
  background: rgb(51, 91, 144);
}

.video-container {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 100vw; /* Ancho de toda la ventana */
  height: 100vh; /* Alto de toda la ventana */
  background-color: rgba(9, 35, 49, 0.6);
  justify-content: center;
  align-items: center; /* Asegura que el video esté centrado verticalmente */
  overflow: hidden; /* Oculta cualquier parte del video que exceda el contenedor */
  z-index: 1;
}
.video-container #video-background {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centra el video */
  z-index: 2;
  object-fit: cover;
}
.video-container #video-min {
  position: relative;
  width: 90vw; /* O ajusta según la relación de aspecto deseada */
  height: 90vh; /* O ajusta según la relación de aspecto deseada */
  z-index: 3;
  margin: auto;
}
.video-container #logo-rangers-video,
.video-container h2 {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  max-width: 250px;
  margin: 10px auto;
  z-index: 3;
}
.video-container .texto {
  position: absolute;
  width: 100vw; /* Ancho de toda la ventana */
  height: 100vh; /* Alto de toda la ventana */
  z-index: 3;
  left: 0;
  top: 0;
  margin: auto;
  margin-bottom: 1em;
  padding: 300px 1em;
  background-color: rgba(9, 35, 49, 0.6);
  color: azure;
  line-height: normal;
}
.video-container .texto h3,
.video-container .texto h4,
.video-container .texto h5,
.video-container .texto p {
  text-align: center;
  margin: 0.5em;
  letter-spacing: 2px;
}
.video-container .texto h3 {
  letter-spacing: 2px;
  font-family: "bluefish", sans-serif;
}
.video-container a,
.video-container a:link,
.video-container a:hover,
.video-container a:visited {
  display: block;
  color: white;
  text-align: center;
  max-width: 500px;
  padding: 0.5em;
  margin: 0.5em 0;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(113, 161, 225, 0.866);
  border-radius: 5px;
}

#inscripcion {
  border: 1px solid white;
  width: 50%;
  min-width: 400px;
  margin: auto;
}

.bloques2 {
  width: 100%;
  padding: 20px;
  text-align: center;
}
.bloques2 .tabla {
  display: block;
  border: #359381 2px solid;
}
.bloques2 .tabla .fila {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(220, 20, 60, 0.2);
  align-items: flex-start;
  align-content: flex-start;
}
.bloques2 .tabla .fila:nth-child(even) {
  background-color: rgba(208, 224, 201, 0.2);
}
.bloques2 .tabla .encabezados {
  display: none; /* Ocultar encabezados */
}
.bloques2 .tabla .fila p {
  text-align: left;
  display: flex;
  justify-content: space-between;
  padding: 5px 10px;
  color: rgb(45, 33, 33);
}
.bloques2 .tabla .fila p::before {
  content: attr(data-label);
  font-weight: bold;
  color: #359381;
}

@media only screen and (min-width: 501px) and (max-width: 6800px) {
  .bloques2 .tabla {
    display: table;
    width: 100%;
    max-width: 800px;
    margin: auto;
    border-collapse: collapse;
    border-spacing: 0;
  }
  .bloques2 .tabla .fila {
    display: table-row;
    background-color: rgba(255, 255, 255, 0.2);
  }
  .bloques2 .tabla .fila p {
    display: table-cell;
    padding: 10px;
    text-align: left;
    border: 1px solid white;
  }
  .bloques2 .tabla .encabezados {
    font-weight: bold;
    background: rgba(101, 162, 241, 0.8);
    color: white;
  }
}
@media only screen and (min-width: 701px) and (max-width: 800px) {
  .bloques2 {
    padding-left: 3em;
  }
  .bloques2 .bloques {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 801px) and (max-width: 1000px) {
  .bloques2 {
    padding-left: 4em;
  }
  .bloques2 .bloques {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1001px) and (max-width: 1430px) {
  .bloques2 {
    padding-left: 5em;
  }
  .bloques2 .bloques {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1431px) and (max-width: 4000px) {
  .bloques2 {
    padding-left: 6em;
  }
  .bloques2 .bloques {
    grid-template-columns: repeat(2, 1fr);
  }
}
.der {
  text-align: right;
}

.sec {
  position: relative;
  width: 100%;
  background-color: #092331;
  background-image: linear-gradient(#092331, rgba(9, 35, 49, 0.8784313725)), url("../img/fondo.jpg");
  margin: 0;
  padding: 1em;
  text-align: center;
}
.sec h2 {
  font-size: 3em;
  color: #fff;
  margin-top: -20px;
  margin-bottom: 20px;
  font-family: "bluefish", sans-serif;
  letter-spacing: 2px;
}
.sec h3,
.sec h4,
.sec h5 {
  width: 100%;
  margin: auto;
  margin-bottom: 0.5em;
  letter-spacing: 2px;
  padding: 0.5em;
  color: white;
}
.sec h3 {
  font-family: "bluefish", sans-serif;
  font-size: 2em;
}
.sec h4 {
  font-size: 1.5em;
  font-weight: 200;
}
.sec p {
  font-size: 1.2em;
  color: #fff;
  font-weight: 300;
  text-align: left;
  margin-bottom: 1em;
  letter-spacing: 1px;
  line-height: 1.5em;
}
.sec img {
  width: 100px;
}
.sec a,
.sec a:link,
.sec a:hover,
.sec a:visited {
  display: block;
  color: rgb(255, 255, 255);
  max-width: 300px;
  padding: 0.5em 1em;
  margin: auto;
  margin-bottom: 2em;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
}

@media (min-width: 501px) and (orientation: portrait) {
  .sec {
    padding: 1em 2em;
  }
  .sec img {
    width: 100px;
  }
  .sec h2 {
    font-size: 3em;
  }
}
@media only screen and (min-width: 601px) and (max-width: 800px) {
  .sec {
    padding: 2em 4em;
  }
  .sec img {
    width: 120px;
  }
  .sec h2 {
    font-size: 4em;
  }
}
@media only screen and (min-width: 801px) and (max-width: 1000px) {
  .sec {
    padding: 3em 6em;
  }
  .sec img {
    width: 140px;
  }
  .sec h2 {
    font-size: 4em;
  }
}
@media only screen and (min-width: 1001px) and (max-width: 1400px) {
  .sec {
    padding: 4em 8em;
  }
  .sec img {
    width: 160px;
  }
  .sec h2 {
    font-size: 6em;
  }
}
@media only screen and (min-width: 1401px) and (max-width: 4000px) {
  .sec {
    padding: 5em 10em;
  }
  .sec img {
    width: 200px;
  }
  .sec h2 {
    font-size: 8em;
  }
}
.escuela {
  position: relative;
  width: 100%;
  background-color: #092331;
  background-image: linear-gradient(#092331, rgba(9, 35, 49, 0.8784313725)), url("../img/fondo.jpg");
  margin: 0;
  padding: 1em;
  text-align: center;
}
.escuela h2 {
  font-size: 3em;
  color: #fff;
  margin-top: -20px;
  margin-bottom: 20px;
  font-family: "bluefish", sans-serif;
  letter-spacing: 2px;
}
.escuela h3, .escuela h4, .escuela h5 {
  width: 100%;
  margin: auto;
  margin-bottom: 0.5em;
  letter-spacing: 2px;
  padding: 0.5em;
  color: white;
}
.escuela h3 {
  font-family: "bluefish", sans-serif;
  font-size: 2em;
}
.escuela h4 {
  font-size: 1.5em;
  font-weight: 200;
}
.escuela p {
  font-size: 1.2em;
  color: #fff;
  font-weight: 300;
  text-align: left;
  margin-bottom: 1em;
  letter-spacing: 1px;
  line-height: 1.5em;
}
.escuela img {
  width: 100px;
}
.escuela a, .escuela a:link, .escuela a:hover, .escuela a:visited {
  text-decoration: none;
  letter-spacing: 2px;
  color: rgb(191, 191, 191);
  border-bottom: 1px solid gray;
  padding: 5px 10px;
}

@media (min-width: 501px) and (orientation: portrait) {
  .escuela {
    padding: 1em 2em;
  }
  .escuela img {
    width: 100px;
  }
  .escuela h2 {
    font-size: 3em;
  }
}
@media only screen and (min-width: 601px) and (max-width: 800px) {
  .escuela {
    padding: 2em 4em;
  }
  .escuela img {
    width: 120px;
  }
  .escuela h2 {
    font-size: 4em;
  }
}
@media only screen and (min-width: 801px) and (max-width: 1000px) {
  .escuela {
    padding: 3em 6em;
  }
  .escuela img {
    width: 140px;
  }
  .escuela h2 {
    font-size: 4em;
  }
}
@media only screen and (min-width: 1001px) and (max-width: 1400px) {
  .escuela {
    padding: 4em 8em;
  }
  .escuela img {
    width: 160px;
  }
  .escuela h2 {
    font-size: 6em;
  }
}
@media only screen and (min-width: 1401px) and (max-width: 4000px) {
  .escuela {
    padding: 5em 10em;
  }
  .escuela img {
    width: 200px;
  }
  .escuela h2 {
    font-size: 8em;
  }
}
.carreras {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  position: relative;
  background: #020912;
  padding: 1em;
  text-align: center;
  background-image: linear-gradient(to bottom, rgba(255, 255, 0, 0.5), rgba(0, 0, 255, 0.5)), url("");
  background-blend-mode: multiply;
}
.carreras .perfiles {
  width: 95%;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0.25em;
  height: auto;
  margin: 0 auto;
  padding: 0;
}
.carreras .perfiles h1, .carreras .perfiles h2, .carreras .perfiles h3, .carreras .perfiles h4, .carreras .perfiles h5 {
  color: rgb(255, 97, 97);
  background-color: transparent;
  margin: 0;
}
.carreras .perfiles .perfil {
  width: 100%;
  margin: 0.25em auto;
  padding: 0.25em;
  border: 1px solid rgba(21, 163, 64, 0.15);
}
.carreras .perfiles .perfil img {
  width: 100%;
}
.carreras h2 {
  font-size: 3em;
  color: #fff;
  margin: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 0.5em 1em;
  font-family: "bluefish", sans-serif;
  letter-spacing: 2px;
  border: 1px solid gray;
  border-radius: 15px;
  max-width: 400px;
  background-image: linear-gradient(#092331, rgba(9, 35, 49, 0.8823529412)), url("../img/fondo.jpg");
}
.carreras h5 {
  width: 100%;
  margin: auto;
  margin-bottom: 1em;
  letter-spacing: 2px;
  padding: 0.5em;
  color: white;
}
.carreras h3 {
  color: white;
  font-weight: 400;
}
.carreras h4 {
  color: rgb(255, 255, 255);
}
.carreras p {
  font-size: 1.2em;
  color: #fff;
  font-weight: 300;
  text-align: left;
  margin-bottom: 1em;
  letter-spacing: 1px;
  line-height: 1.5em;
}
.carreras a, .carreras a:link, .carreras a:hover, .carreras a:visited {
  display: block;
  font-size: 0.85em;
  color: white;
  padding: 0.5em 1em;
  margin: 1em 0.5em;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(96, 96, 165, 0.322);
  border-radius: 10px;
}

@media only screen and (min-width: 801px) and (max-width: 1200px) {
  .carreras .perfiles {
    grid-template-columns: 1fr 1fr;
    border: 1px solid white;
    margin: auto;
  }
  .carreras .perfiles .perfil {
    margin: auto;
  }
}
@media only screen and (min-width: 1201px) and (max-width: 1800px) {
  .carreras .perfiles {
    grid-template-columns: 1fr 1fr 1fr;
    border: 1px solid white;
  }
}
@media only screen and (min-width: 1801px) and (max-width: 4000px) {
  .carreras .perfiles {
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid white;
  }
}

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