html, body, div, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 10px;
  font-family: "Montserrat", sans-serif;
  vertical-align: baseline;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  background-color: #fdf8f5;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

p {
  color: #808080;
  line-height: 1.4em;
  font-size: 1.7em;
  font-weight: 500;
}

a {
  all: unset;
  cursor: pointer;
}
a :focus {
  outline: none;
  box-shadow: none;
}

h2 {
  font-size: 2.8em;
  font-weight: 800;
  color: #3F3F3F;
}

.blur {
  filter: blur(2px);
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate {
  opacity: 0;
  animation: fade-in 1s ease-in-out forwards;
}

.negrita {
  font-weight: 600;
  color: #808080;
}

.btn {
  opacity: 90%;
  display: inline-block;
  border-radius: 40px;
  transition: all 0.15s ease;
  padding: 12px 23px;
  font-size: 0.85em;
  text-align: center;
  background-color: #1d3a5d;
}
.btn:hover {
  cursor: pointer;
  transform: scale(101.5%);
}
.btn:active {
  transform: scale(97%);
}
.btn p {
  color: white;
  font-weight: 600;
}

.subtitulado {
  text-decoration: underline;
}

.col3 {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 1fr 1fr 1fr;
}

.btn_cuadrado {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.btn_cuadrado .cuerpo {
  text-align: center;
  width: 200px;
  border-radius: 5px 0 0 5px;
}
.btn_cuadrado .cuerpo p {
  font-size: 1.5em;
  font-weight: 700;
  color: white;
  padding: 3px;
}
.btn_cuadrado .flecha_contenedor {
  height: 25px;
  width: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 5px 5px 0;
  background-color: rgb(239, 237, 237);
}
.btn_cuadrado .flecha_contenedor .flecha {
  border: solid black;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.lineaGris {
  width: 100%;
  height: 10px;
  background-color: rgb(223, 223, 223);
  box-shadow: 0 5px 20px lightgrey;
  box-shadow: 0 -5px 20px lightgrey;
}

.banner img {
  width: 100%;
}

.whatsapp img {
  z-index: 1000;
  position: fixed;
  bottom: 50px;
  right: 5vw;
  width: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: opacity(55%);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.whatsapp img:hover {
  transform: scale(110%);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  height: 70px;
  width: 100%;
  background-color: rgba(74, 118, 172, 0);
  align-content: center;
  transition: all 0.5s ease;
}
header .logo {
  grid-column: 2/3;
  justify-self: center;
  cursor: pointer;
}
header .logo img {
  max-height: 35px;
}
header .nav {
  grid-column: 3/4;
  justify-self: end;
  margin-right: 7vw;
}
header .nav ul {
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease;
  display: flex;
  flex-direction: column;
  position: absolute;
  align-items: end;
  width: 100%;
  top: 100%;
  right: 0%;
  background-color: rgba(255, 255, 255, 0.9);
  padding-top: 35px;
  padding-bottom: 35px;
  box-shadow: 0 1px 5px lightgrey;
}
header .nav ul li {
  margin-bottom: 1.5rem;
  margin-right: 15px;
  color: #808080;
  font-size: 1.6em;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  text-align: end;
  padding: 10px;
}
header .nav .nav-toggle { /*Eliminamos el checkbox*/
  display: none;
}
header .nav .nav-toggle:checked ~ ul {
  opacity: 1;
  visibility: visible;
}
header .nav .nav-toggle:checked ~ ul li {
  opacity: 1;
}
header .nav .nav-toggle-label { /*Ubicamos el label*/
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 20px;
  margin: -20px;
}
header .nav .nav-toggle-label span, header .nav .nav-toggle-label span::after, header .nav .nav-toggle-label span::before {
  display: block;
  background: beige;
  height: 1.8px;
  width: 2.5em;
  border-radius: 2px;
  position: relative;
}
header .nav .nav-toggle-label span::before {
  content: "";
  position: absolute;
  bottom: 7px;
}
header .nav .nav-toggle-label span::after {
  content: "";
  position: absolute;
  top: 7px;
}

.scrolled {
  background-color: #4c7ba9;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
  opacity: 93%;
}

.menuCruz span, .menuCruz header .nav .nav-toggle-label span::before, header .nav .nav-toggle-label .menuCruz span::before, .menuCruz header .nav .nav-toggle-label span::after, header .nav .nav-toggle-label .menuCruz span::after {
  transition: all 0.1s;
  transform: rotate(40deg);
}
.menuCruz span::before, .menuCruz header .nav .nav-toggle-label span::before, header .nav .nav-toggle-label .menuCruz span::before {
  transform: translate(90px);
}
.menuCruz span::after, .menuCruz header .nav .nav-toggle-label span::after, header .nav .nav-toggle-label .menuCruz span::after {
  transform: translateY(-7px) rotate(100deg);
}

.footer_banner img {
  margin-bottom: -2px;
  height: 130px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 40%;
     object-position: 50% 40%;
  box-shadow: 0px 6px 50px rgba(0, 0, 0, 0.25);
  filter: brightness(89%);
}

footer {
  background-color: #b8b8b8;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 30px;
  gap: 30px;
}
footer i {
  color: #FFC27A;
}
footer p {
  font-size: 1.2em;
}
footer a {
  color: #fdf8f5;
}
footer .footer_redes {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
footer .footer_redes p {
  font-size: 1.6em;
  color: #fdf8f5;
  font-weight: 800;
}
footer .footer_redes i {
  margin-right: 5px;
}
footer .footer_contacto {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer .footer_contacto .footer_contacto_item {
  display: flex;
  align-items: center;
  margin: 5px 0;
  gap: 10px;
}
footer .footer_contacto .footer_contacto_item img {
  width: 28px;
  height: 28px;
}
footer .footer_contacto .footer_contacto_item p {
  color: #fdf8f5;
  font-size: 1.4em;
}

.hero {
  position: relative;
  height: 400px;
  box-shadow: 0px 6px 50px rgba(0, 0, 0, 0.25);
  margin-top: 70px;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 70%;
     object-position: 50% 70%;
}

.hero1 img {
  -o-object-position: 50% 55%;
     object-position: 50% 55%;
}

.hero2 img {
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

.hero3 img {
  -o-object-position: 50% 55%;
     object-position: 50% 55%;
}

.hero4 img {
  -o-object-position: 50% 22%;
     object-position: 50% 22%;
}

.hero6 img {
  -o-object-position: 50% 45%;
     object-position: 50% 45%;
}

.hero7 img {
  -o-object-position: 50% 36%;
     object-position: 50% 36%;
}

.heroInicio {
  position: relative;
  height: 500px;
  box-shadow: 0px 6px 50px rgba(0, 0, 0, 0.25);
  text-align: center;
  background-image: url("../img/nubes.webp");
  background-size: cover;
  background-attachment: fixed;
  background-position: 70% 0;
  background-repeat: no-repeat;
  overflow: hidden;
}
.heroInicio .heroText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
}
.heroInicio .heroText h1 {
  font-size: 3.1em;
  font-weight: 600;
  text-shadow: 1px 1px 10px rgb(56, 56, 56);
  color: #fdf8f5;
  line-height: 45px;
  padding-bottom: 30px;
}
.heroInicio .heroText p {
  font-size: 1.5em;
  color: #3F3F3F;
  width: 70%;
  margin: auto;
}
.heroInicio .heroText .btn {
  margin-top: 30px;
}
.heroInicio .heroText .btn p {
  color: #fdf8f5;
  font-size: 1.2em;
}

.textBlockInicio {
  margin: 70px auto;
  text-align: center;
}
.textBlockInicio .btn {
  margin: 50px 0 20px 0;
  font-size: 0.8em;
}

.textBlock {
  padding: 60px 20px 30px 20px;
  text-align: center;
  top: 99%;
  left: 50%;
}
.textBlock .btn {
  margin-top: 5em;
  text-align: center;
}
.textBlock .btn a p {
  font-size: 1.5em;
}
.textBlock p {
  padding: 5px 0 5px 0;
}
.textBlock p .color_resaltado {
  color: #FFC27A;
  font-size: 1.7rem;
}
.textBlock h1 {
  font-size: 2.3em;
  margin: 0 0 15px 0;
  color: #1d3a5d;
}
.textBlock h2 {
  padding-bottom: 50px;
  text-align: center;
}
.textBlock .subtitulo {
  font-weight: 500;
  font-size: 1.9em;
  text-align: center;
}
.textBlock ul {
  padding: 0 30px;
}
.textBlock ul li {
  font-size: 1.5em;
  list-style: circle;
  text-align: left;
}

.swiper {
  width: 100%;
  margin: 5em 0;
}
.swiper .swiper-slide {
  text-align: center;
}
.swiper .swiper-slide img {
  width: 95%;
  border-radius: 3px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 5px 5px 10px lightgrey;
  max-height: 250px;
}
.swiper .swiper-slide .swiper-text {
  padding: 2em 2em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.swiper .swiper-slide .swiper-text h2 {
  padding: 0 0 25px 0;
  font-size: 2.3em;
  font-weight: 400;
  color: #3F3F3F;
}
.swiper .swiper-slide .swiper-text .btn {
  margin: 10px 0;
  background-color: #FFC27A;
}
.swiper .swiper-slide .swiper-text .btn p {
  color: #3F3F3F;
}
.swiper .swiper-slide .swiper-text .fechaInicio {
  font-size: 1.8em;
  padding: 5px 0;
  font-weight: 600;
  text-decoration: underline;
}
.swiper .swiper-pagination-bullets {
  margin-bottom: -10px;
}
.swiper .swiper-pagination-bullet-active {
  background-color: #FFC27A;
}
.swiper .swiper-button-prev {
  color: #1d3a5d;
  opacity: 0;
}
.swiper .swiper-button-next {
  color: #1d3a5d;
  opacity: 0;
}

.ramas {
  background-color: #e0e0e0;
  padding-bottom: 70px;
  perspective: 200px;
  width: 100%;
}
.ramas .banner_ramas {
  width: 100%;
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 55%;
     object-position: 50% 55%;
  box-shadow: 0px 6px 50px rgba(0, 0, 0, 0.25);
  box-shadow: 0px -6px 50px rgba(0, 0, 0, 0.25);
}
.ramas h2 {
  text-align: center;
  padding: 2em 0.5em;
  font-size: 3em;
  color: #1d3a5d;
  line-height: 30px;
  font-weight: 700;
}
.ramas p {
  text-align: center;
  margin: auto;
  width: 70%;
}
.ramas .ramas_texto {
  max-width: 85%;
}
.ramas .botones_ramas {
  padding-top: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 35px;
  margin-bottom: 50px;
}
.ramas .botones_ramas .btn_cuadrado :hover {
  transition: all 0.2s ease-in-out;
  transform: translateX(-8px);
}
.ramas .botones_ramas .flecha {
  border: solid black;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.ramas .botones_ramas .btn_cuadrado_1 .cuerpo {
  background-color: #346094;
}
.ramas .botones_ramas .btn_cuadrado_2 .cuerpo {
  background-color: #FFC27A;
}
.ramas .botones_ramas .btn_cuadrado_3 .cuerpo {
  background-color: rgb(148, 132, 125);
}
.ramas .btn {
  display: block;
  margin: 0 auto;
  width: 300px;
  text-align: center;
  font-size: 0.8em;
}

.cards {
  padding: 7em 2em 10em 2em;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
  justify-content: center;
}
.cards :hover {
  transform: scale(102%);
  transition: all 0.2s ease-in-out;
}
.cards a {
  display: flex;
  justify-content: center;
  cursor: pointer;
}
.cards .card {
  background-color: #fdf8f5;
  box-shadow: 0px 0px 10px 1px lightgrey;
  height: 180px;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  max-width: 280px;
}
.cards .card .card_img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 50%;
  filter: brightness(90%);
}
.cards .card .card_img_1 {
  -o-object-position: 50% 65%;
     object-position: 50% 65%;
}
.cards .card .card_img_2 {
  -o-object-position: 50% 18%;
     object-position: 50% 18%;
}
.cards .card .card_img_3 {
  -o-object-position: 50% 30%;
     object-position: 50% 30%;
}
.cards .card .card_img_4 {
  -o-object-position: 50% 20%;
     object-position: 50% 20%;
}
.cards .card .card_img_5 {
  -o-object-position: 50% 70%;
     object-position: 50% 70%;
}
.cards .card .card_img_6 {
  -o-object-position: 50% 45%;
     object-position: 50% 45%;
}
.cards .card .card_text {
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 20px 20px 20px;
}
.cards .card .card_text p {
  color: #3F3F3F;
  line-height: 1.2em;
  font-weight: 600;
  font-size: 1.2em;
  text-align: center;
  text-shadow: 2px 2px 20px lightgrey;
}

.testimonios {
  width: 100%;
  text-align: center;
}
.testimonios h2 {
  padding: 2em 0;
}
.testimonios img {
  padding: 2em 0;
  width: 90%;
  -o-object-fit: cover;
     object-fit: cover;
}

.listaEmpresas {
  font-size: 1.2em;
  font-weight: 600;
}

.cards_form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}
.cards_form .card_lg {
  cursor: pointer;
  width: 60vw;
  max-width: 300px;
}
.cards_form .card_lg img {
  width: 100%;
  height: 20vh;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.cards_form .card_lg .btn_cuadrado {
  margin-top: -26px;
  cursor: pointer;
}
.cards_form .card_lg .btn_cuadrado .flecha_contenedor {
  width: 10%;
}
.cards_form .card_lg .btn_cuadrado .cuerpo {
  width: 90%;
}
.cards_form .card_lg .btn_cuadrado_1 .cuerpo {
  background-color: #346094;
}
.cards_form .card_lg .btn_cuadrado_2 .cuerpo {
  background-color: #FFC27A;
}
.cards_form .card_lg .btn_cuadrado_3 .cuerpo {
  background-color: rgb(148, 132, 125);
}

.card_curso {
  gap: 10px;
}
.card_curso .card_lg {
  width: 60vw;
}
.card_curso .card_lg .card_text {
  padding: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100px;
  background-color: #FFC27A;
  border-radius: 30px;
  font-size: 1em;
}
.card_curso .card_lg .card_text p {
  margin-top: -10%;
  color: #808080;
  font-weight: 500;
  line-height: 16px;
}
.card_curso .card_lg .card_text_dark {
  background-color: #1d3a5d;
}
.card_curso .card_lg .card_text_dark p {
  color: #c68640;
}
.card_curso .card_lg .carga_horaria {
  margin-top: 10px;
  font-size: 0.8em;
}
.card_curso .card_lg .carga_horaria p {
  font-weight: 700;
}
.card_curso .card_lg .btn_cuadrado_1 .cuerpo {
  background-color: #1d3a5d;
}
.card_curso .card_lg .btn_cuadrado_2 .cuerpo {
  background-color: #346094;
}
.card_curso .card_lg .btn_cuadrado_3 .cuerpo {
  background-color: #c68640;
}
.card_curso .cursoDetalles {
  transition: all 0.5s;
  overflow: hidden;
  max-height: 0;
  padding: 15px 50px;
  text-align: justify;
}
.card_curso .cursoDetalles h3 {
  color: #346094;
  line-height: 1.4em;
  font-size: 1.7em;
  font-weight: 700;
  margin: 15px 0;
}
.card_curso .cursoDetalles li {
  color: #808080;
  line-height: 1.4em;
  font-size: 1.7em;
  font-weight: 500;
  list-style-type: disc;
}
.card_curso .cursoDetalles hr {
  margin: 20px 0;
}

.listaCursos {
  width: 100vw;
}
.listaCursos h2 {
  padding: 1em 0.5em;
  font-size: 2em;
  color: #1d3a5d;
  line-height: 30px;
  font-weight: 700;
}
.listaCursos ul {
  padding: 10px 20px;
  list-style-type: disc;
  list-style-position: inside;
}
.listaCursos ul li {
  font-size: 1.9em;
  margin-bottom: 20px;
  color: #1d3a5d;
  font-weight: 600;
}

.btn_contenedor {
  display: flex;
  justify-content: center;
}
.btn_contenedor .btn {
  margin: 35px 0 75px 0;
}
.btn_contenedor .btn p {
  font-size: 1.5em;
}

.textTestimonios p {
  padding-bottom: 20px;
}

.banner_casaGestalt {
  position: absolute;
  bottom: 1;
  background-color: #346094;
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: end;
}
.banner_casaGestalt img {
  max-width: 200px;
  margin-right: 50px;
}

.contacto_contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px;
}
.contacto_contenedor .contenedor_info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contacto_contenedor .contenedor_info .footer_contacto_item {
  display: flex;
  gap: 20px;
}
.contacto_contenedor .contenedor_info .footer_contacto_item i {
  color: #FFC27A;
}
.contacto_contenedor .contenedor_info .footer_contacto_item p {
  font-size: 1.5em;
}
.contacto_contenedor .contenedor_redes {
  margin-top: 30px;
}
.contacto_contenedor .contenedor_redes i {
  margin-right: 15px;
  color: #FFC27A;
}

.mapaContenedor {
  max-width: 900px;
  text-align: center;
  margin: auto;
  padding: 0 0 20px 0;
}
.mapaContenedor .mapa {
  box-shadow: 3px 3px 10px lightgrey;
  width: 90%;
  height: 300px;
}

@media screen and (min-width: 900px) {
  header {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  header .logo {
    grid-column: 1/2;
  }
  header .nav .nav-toggle-label {
    display: none;
  }
  header .nav ul {
    box-shadow: none;
    opacity: 100;
    grid-column: 2/5;
    display: flex;
    align-items: center;
    height: 100%;
    visibility: visible;
    flex-direction: row;
    top: 0;
    padding: 0;
    background-color: transparent;
  }
  header .nav ul :hover {
    text-shadow: 0.5px 0.5px 3px lightgrey;
    text-shadow: -0.5px -0.5px 3px lightgrey;
  }
  header .nav ul li {
    margin: 0;
    font-size: 1.2em;
    line-height: 15px;
    letter-spacing: 1.1px;
    text-align: center;
    color: #fdf8f5;
    font-weight: 400;
    margin-left: 0;
    max-width: 150px;
  }
  .heroInicio {
    height: 600px;
  }
  .heroInicio .heroText {
    position: absolute;
    top: 45%;
  }
  .heroInicio .heroText h1 {
    font-size: 4.3em;
    letter-spacing: 1px;
    line-height: 65px;
    text-align: left;
  }
  .heroInicio .heroText p {
    text-align: left;
    line-height: 35px;
    margin: 0;
    font-size: 2em;
  }
  .heroInicio .heroText .btn {
    position: absolute;
    left: 0px;
    padding: 20px;
    background-color: #1d3a5d;
  }
  .heroInicio .heroText .btn p {
    text-align: center;
    margin: auto;
    font-size: 1.6em;
    line-height: 20px;
    width: auto;
  }
  .textBlockInicio {
    margin: 100px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7vw;
    max-width: 1200px;
  }
  .textBlockInicio h1 {
    font-size: 3em;
    text-align: center;
    margin: 40px 0;
  }
  .textBlockInicio p {
    font-size: 2em;
    margin: 0;
    text-align: left;
  }
  .textBlockInicio .btn {
    text-align: center;
    margin: 0;
  }
  .textBlockInicio .btn p {
    margin: 5px;
    font-size: 1.7em;
  }
  .swiper {
    max-height: 90vh;
    max-width: 1200px;
  }
  .swiper .swiper-slide {
    display: flex;
    align-items: center;
  }
  .swiper .swiper-slide .swiper-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-right: 50px;
    max-width: 30%;
  }
  .swiper .swiper-slide .swiper-text p {
    font-size: 1.4em;
  }
  .swiper .swiper-slide .swiper-text .btn {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  .swiper .swiper-slide img {
    max-width: 60%;
    max-height: 450px;
    margin-left: 70px;
    border-radius: 5px;
    margin-bottom: 30px;
  }
  .swiper .swiper-button-prev {
    color: #346094;
    opacity: 70%;
  }
  .swiper .swiper-button-next {
    color: #346094;
    opacity: 70%;
  }
  .ramas {
    margin: auto;
  }
  .ramas .banner_ramas {
    max-height: 400px;
    filter: grayscale(10%);
  }
  .ramas h2 {
    font-size: 3.4em;
    padding: 2em 1em;
  }
  .ramas .ramas_texto {
    max-width: 650px;
    text-align: justify;
  }
  .ramas .botones_ramas {
    flex-direction: row;
    justify-content: space-evenly;
    width: 60%;
    margin: 30px auto;
  }
  .ramas .btn {
    margin-top: 60px;
  }
  .cards {
    max-width: 1200px;
    margin: auto;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 35px;
  }
  .cards .card_text {
    font-size: 1.2em;
  }
  footer {
    flex-direction: row;
  }
  footer .footer_redes {
    justify-content: start;
    gap: 30px;
  }
  .footer_banner img {
    height: 250px;
    -o-object-position: 50% 41%;
       object-position: 50% 41%;
  }
  .whatsapp img {
    width: 70px;
  }
  .textBlock {
    text-align: justify;
    max-width: 900px;
    margin: auto;
  }
  .textBlock .btn {
    text-align: center;
  }
  .textBlock h1 {
    font-size: 3em;
    text-align: center;
    margin: 40px 0 60px 0;
  }
  .textBlock p {
    max-width: 80%;
    margin: 15px auto;
  }
  .col3 {
    margin: 0 -8vw;
    gap: 50px;
  }
  .col3 p {
    text-align: center;
    font-size: 1.5em;
    line-height: 30px;
    letter-spacing: 0.9px;
  }
  .cards_form_main {
    margin-top: 60px;
    margin-bottom: 100px;
    flex-direction: row;
    justify-content: space-evenly;
    max-width: 90%;
  }
  .cursoDetalles {
    max-width: 900px;
  }
  .listaCursos {
    max-width: 725px;
    margin: auto;
  }
  .contacto_contenedor {
    flex-direction: row;
    justify-content: center;
    gap: 200px;
    max-width: 900px;
    margin: auto;
  }
  .contacto_contenedor .contenedor_redes {
    margin-top: 0;
    gap: 10px;
  }
  .mapaContenedor {
    max-width: 900px;
    text-align: center;
    margin: auto;
    padding: 30px 0;
  }
  .mapaContenedor .mapa {
    width: 100%;
    height: 300px;
  }
  .banner_casaGestalt {
    bottom: 1;
  }
}/*# sourceMappingURL=main.css.map */