* {
  box-sizing: border-box;
  font-family: adelle;
  font-style: normal;
  margin: 0;
  border: 0;
}

body {
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

html {
  scroll-behavior: smooth;
  width: 100%;
}

body {
  background: #eee;
}

.barrita {
  position: relative;
  width: 100%;
  height: 10px;
  color: #000;
  background: #000;
  border-radius: 3px;
  z-index: 1;
}

.progreso {
  width: var(--w);
  height: 100%;
  background: #f07809;
  border-radius: 10px;
  animation: Aumentar 10s infinite linear;
}

.progreso2 {
  width: var(--w);
  height: 100%;
  background: #f07809;
  border-radius: 10px;
  animation: Aumentar 10s infinite linear reverse;
}

.whatsapp_button {
  position: sticky;
  left: 1rem;
  bottom: 1rem;
  display: flex;
  background-color: #1ed12d;
  border-radius: 50%;
  height: 70px;
  width: 70px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 3rem;  
  transition: background-color 0.2s ease-in-out;
}

.whatsapp_button a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp_button img {
  color: #eee;
} 

.whatsapp_button:hover {
  background-color: #30e13f;
}

@keyframes Aumentar {
  0% {
    width: 0%;
  }
  100% {
    width: var(--w);
  }
}

.logo_portada {
  margin-top: 60px;
  margin-left: 55px;
  background: #fff;
  border-radius: 20px;
  padding: 10px;
}

.logo_portada-empresa {
  margin-top: 10px;
  margin-left: 35px;
  background: #eee;
  border-radius: 20px;
  padding: 10px;
}

button {
  border: 0;
  padding: 0;
  font-family: inherit;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.button_naranja {
  color: #f07809;
}

.navbar {
  position: relative;
  z-index: 1;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
  height: 64px;
  color: #f9f9f9;
  font-family: "Poppins";
  box-sizing: border-box;
}

@media only screen and (min-width: 800px) {
  .navbar {
    justify-content: space-between;
    padding: 0 0 0 30px;
    margin-top: 20px;
  }
}

.navbar-overlay {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

body.open .navbar-overlay {
  visibility: visible;
  opacity: 1;
}

@media only screen and (min-width: 1100px) {
  .navbar-overlay {
    display: none;
  }
}

.navbar-burger {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  padding: 0;
}

.navbar-burger1 {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  padding: 0;
}

@media only screen and (min-width: 1100px) {
  .navbar-burger {
    display: none;
  }
  .navbar-burger1 {
    display: none;
  }
}

.navbar-title {
  margin: 0;
  font-size: 16px;
  padding-top: 10px;
}

.navbar-menu {
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  translate: -100% 0;
  width: 200px;
  height: 100%;
  padding: 20px;
  display: flex;
  gap: 8px;
  flex-direction: column;
  align-items: flex-start;
  visibility: hidden;
  transition: translate 0.3s;
}

body.open .navbar-menu {
  translate: 0 0;
  visibility: visible;
}

@media only screen and (min-width: 1100px) {
  .navbar-menu {
    position: static;
    translate: 0 0;
    width: 1200px;
    flex-direction: row;
    visibility: visible;
    justify-content: flex-end;
  }
}

@media only screen and (max-width: 1100px) {
  .navbar-menu > button {
    color: #f07809;
    background-color: #fff;
    text-decoration: none;
  }
}

.navbar-menu > button {
  color: rgba(255, 255, 255, 0.5);
  padding: 0 0px;
  width: 150px;
  height: 120%;
  border-radius: 30px;
  position: relative;
}

.navbar-menu > button.active {
  color: #000;
  font-weight: bolder;
  text-transform: uppercase;
  transition: 0.3s ease all;
  text-decoration: underline;
}

.navbar-menu > button.active:hover {
  background: #fff;
  color: #f07809;
}

.container_grid_total {
  width: 100vw;
  height: 480px;
}

/*Panel Inicio */

section {
  position: absolute;
  width: 100%;
  height: 800px;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
  background-image: url(fotodeportada.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  animation: banner 10s infinite linear;
}

@media only screen and (min-width: 2000px) {
  .container_grid_total {
    width: 100vw;
    height: 1000px;
  }
  section {
    width: 100vw;
    height: 1300px;
  }
}
@media only screen and (max-width: 1200px) {
  section {
    width: 100vw;
    height: 80vh;
  }
}
@media only screen and (max-width: 800px) {
  .container_grid_total {
    width: 100vw;
    height: auto;
  }
  section {
    margin-top: 50px;
    width: 100%;
    height: 200px;
  }
}

.col {
  justify-content: right;
  align-items: center;
  display: flex;
  flex-basis: 50%;
  padding-top: 400px;
  z-index: 100;
  margin-right: 40px;
}

.card {
  position: relative;
  width: 150px;
  height: 300px;
  overflow: hidden;
  display: inline-block;
  box-shadow: 8px 12px 9px 5px rgba(0, 0, 0, 0.7);
  border-radius: 15px;
  box-sizing: border-box;
  cursor: pointer;
  margin: 20px;
  justify-content: center;
  transition: transform 0.5s;
}

.card img {
  position: absolute;
  width: 150px;
  height: 300px;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
}

.col .card .content {
  position: absolute;
  bottom: -130px;
  width: 100%;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  flex-direction: column;
  backdrop-filter: blur(10px);
  box-shadow: 0 -10px 10px rgb(0, 0, 0, 0.1);
  border: 1px solid rgb(255, 255, 255, 0.2);
  transition: bottom 0.5s;
}

.col .card:hover .content {
  bottom: 0px;
}

.col .card .content .contentBx h5 {
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bolder;
  font-size: 20px;
  text-align: center;
  margin: 20px 0 15px;
  line-height: 1.1em;
  transition: 0.5s;
  opacity: 0;
  transform: translateY(-20px);
}

.col .card:hover .content .contentBx h5 {
  opacity: 1;
  transform: translateY(0px);
}

.col .card .content .contentBx h5 p {
  font-size: 15px;
  font-weight: 50;
  text-transform: initial;
  color: #000;
  font-weight: 400;
}

.sci {
  position: fixed;
  top: 30%;
  right: 30px;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.sci img {
  height: 50px;
}

.sci li {
  list-style: none;
}

.sci li a {
  display: inline-block;
  margin: 5px 0;
}

.social {
  position: fixed;
  top: 41%;
  right: 1%;
  z-index: 100;
}

.sc-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sc-item:not(:last-child) {
  margin-bottom: 20px;
}

.sc-link {
  color: #414141;
  text-decoration: none;
  font-size: 25px;
}

.sc-link img {
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.sc-link .name {
  position: absolute;
  background: #fff;
  height: 100%;
  padding-top: 2px;
  padding-right: 65px;
  padding-left: 70px;
  line-height: 30px;
  transform: translateX(135%);
  transition: all 0.3s;
  z-index: -1;
  border-radius: 5px;
}

.sc-item:hover img {
  transform: scale(1.2);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
}

.sc-item:hover .name {
  transform: translateX(-118%);
}

@keyframes banner {
  0% {
    background-image: url("Imagenes/WEB_INNSER/01.INICIO/web-innser--portada_principal.webp");
  }
  25% {
    background-image: url("Imagenes/WEB_INNSER/01.INICIO/web-innser--portada_principal.webp");
  }
  26% {
    background-image: url("Imagenes/WEB_INNSER/01.INICIO/web-innser--portada_principal.webp");
  }
  50% {
    background-image: url("Imagenes/WEB_INNSER/01.INICIO/web-innser--portada_principal.webp");
  }
  51% {
    background-image: url("Imagenes/WEB_INNSER/01.INICIO/portada.webp");
  }
  75% {
    background-image: url("Imagenes/WEB_INNSER/01.INICIO/portada.webp");
  }
  76% {
    background-image: url("Imagenes/WEB_INNSER/01.INICIO/portada.webp");
  }
  100% {
    background-image: url("Imagenes/WEB_INNSER/01.INICIO/portada.webp");
  }
}

.cursos-contenedor-general {
  position: relative;
  top: 350px;
  background-color: #fef4eb;
  width: 100%;
  height: 2700px;
}

@media screen and (max-width: 800px) {
  .cursos-contenedor-general {
    width: 100%;
    height: 1000px;
  }
}

.tittle-cursos {
  position: absolute;
  background-color: #f07809;
  width: 40%;
  border-radius: 30px;
  padding: 20px;
  color: #fff;
  top: 5%;
  left: 35%;
}

.tittle-cursos p {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}

.cursos-tarjetas {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cursos-tarjetas-img1 {
  width: 1310px;
  height: 660px;
  background-image: url(Imagenes/WEB_INNSER/01.INICIO/web-tarjetas1.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.cursos-tarjetas-img2 {
  width: 1310px;
  height: 660px;
  background-image: url(Imagenes/WEB_INNSER/01.INICIO/web-tarjetas2.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media only screen and (max-width: 800px) {
  .cursos-tarjetas-img1 {
    width: 400px;
    height: 200px;
  }

  .cursos-tarjetas-img2 {
    width: 400px;
    height: 200px;
  }

  .titulo-cursos-tarjeta1 h1 {
    color: #fff;
    position: absolute;
    width: 40%;
    font-size: 20px;
  }

  .titulo-cursos-tarjeta2 h1 {
    color: #fff;
    position: absolute;
    width: 40%;
    font-size: 20px;
  }

  .titulo-cursos-tarjeta3 h1 {
    color: #fff;
    position: absolute;
    width: 40%;
    font-size: 20px;
  }
}

.titulo-cursos-tarjeta1 {
  color: #fff;
  position: absolute;
  width: 100px;
  font-size: 42px;
  top: 15%;
  left: 52%;
}
.titulo-cursos-tarjeta2 {
  position: absolute;
  color: #fff;
  width: 100px;
  font-size: 42px;
  top: 21%;
  left: 52%;
}
.titulo-cursos-tarjeta3 {
  position: absolute;
  color: #fff;
  width: 100px;
  font-size: 42px;
  left: 52%;
  top: 21%;
}

.go-top-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 2rem;
  height: 2rem;
  z-index: -1;
}

.go-top-button {
  width: 15px;
  height: 15px;
  background: #f07809;
  opacity: 0.6;
  border-radius: 50%;
  cursor: pointer;
  top: 10%;
  left: 10%;
  transform: translate(-40%, -110%);
  transition: 0.2s;
  z-index: -1;
}

.go-top-button i {
  position: absolute;
  font-size: 1.7rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: #fff;
  transition: 0.2s;
}

.show {
  z-index: 10;
}

.show .go-top-button {
  animation: popup 0.3s ease-in-out;
  width: 6.6rem;
  height: 6.6rem;
  z-index: 11;
}

.show i {
  transform: translate(-50%, -50%) scale(1);
}

@keyframes popup {
  0% {
    width: 0rem;
    height: 0rem;
  }
  50% {
    width: 8rem;
    height: 8rem;
  }
  100% {
    width: 6.6rem;
    height: 6.6rem;
  }
}

.btn-abrir-popup {
  position: fixed;
  top: 24%;
  right: 1%;
  z-index: 1;
  padding: 0 20px;
  line-height: 40px;
  border: none;
  color: #fff;
  background-color: rgb(240, 120, 9, 0.6);
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease all;
}

.btn-abrir-popup:hover {
  background-color: rgb(240, 120, 9);
}

.btn-abrir-popup1 {
  position: fixed;
  top: 45%;
  right: 1%;
  z-index: 1;
  padding: 0 20px;
  line-height: 40px;
  border: none;
  color: #fff;
  background-color: rgb(240, 120, 9, 0.6);
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease all;
}

.btn-abrir-popup2 {
  position: fixed;
  top: 55%;
  right: 1%;
  z-index: 1;
  padding: 0 20px;
  line-height: 40px;
  border: none;
  color: #fff;
  background-color: rgb(240, 120, 9, 0.6);
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease all;
}

.btn-abrir-popup3 {
  position: fixed;
  top: 55%;
  right: 1%;
  z-index: 1;
  padding: 0 20px;
  line-height: 40px;
  border: none;
  color: #fff;
  background-color: rgb(240, 120, 9, 0.6);
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease all;
}

.btn-abrir-popup1:hover {
  background-color: rgb(240, 120, 9);
}

.btn-abrir-popup2:hover {
  background-color: rgb(240, 120, 9);
}

.btn-abrir-popup3:hover {
  background-color: rgb(240, 120, 9);
}

.overlay {
  background: rgb(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  z-index: 1;
}

.overlay.active {
  visibility: visible;
}

.popup {
  background-color: #f8f8f8;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  padding: 20px;
  opacity: 0;
  transition: 0.3s ease all;
  transform: scale(0.7);
}

.popup.active {
  opacity: 1;
  transform: scale(1);
}

@media screen and (max-width: 800px) {
  .popup.active {
    opacity: 1;
    transform: scale(0.7);
  }
}

.popup.active h3 {
  animation: entradaTitulo 0.8s ease 0.5s forwards;
}

.popup.active h4 {
  animation: entradaSubTitulo 0.8s ease 0.5s forwards;
}

@keyframes entradaTitulo {
  from {
    transform: translateY(-25px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes entradaSubTitulo {
  from {
    transform: translateY(25px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.popup .btn-cerrar-popup {
  font-size: 16px;
  line-height: 16px;
  display: block;
  text-align: right;
  color: #f07809;
  transition: 0.3s ease all;
}

.popup .btn-cerrar-popup:hover {
  color: #000;
}

.popup h3 {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
  opacity: 0;
}

.popup h4 {
  text-align: center;
  font-weight: 600;
  margin-bottom: 30px;
  opacity: 0;
}

.formulario {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.formulario__label {
  display: block;
  font-weight: 700;
  padding: 10px;
  cursor: pointer;
}

.formulario__grupo-input {
  position: relative;
}

.formulario__input {
  width: 100%;
  background: #fff;
  border: 3px solid #f07809;
  border-radius: 3px;
  height: 45px;
  line-height: 45px;
  padding: 0 40px 0 10px;
  transition: 0.3s ease all;
}

.formulario__input:focus {
  border: 3px solid #f07809;
  outline: none;
  box-shadow: 3px 0px 30px rgba(163, 163, 163, 0.4);
}

.formulario__input-error {
  font-size: 12px;
  margin-bottom: 0;
  display: none;
}

.formulario__input-error-activo {
  display: block;
}

.formulario__validacion-estado {
  position: absolute;
  right: 10px;
  bottom: 15px;
  z-index: 100;
  font-size: 16px;
  opacity: 0;
}

.formulario__checkbox {
  margin-right: 10px;
}

.formulario__grupo-terminos,
.formulario__mensaje,
.formulario__grupo-btn-enviar {
  grid-column: span 2;
}

.formulario__mensaje {
  height: 45px;
  line-height: 45px;
  background: #f66060;
  padding: 0 15px;
  border-radius: 3px;
  display: none;
}

.formulario__mensaje-activo {
  display: block;
}

.formulario__mensaje p {
  margin: 0;
}

.formulario__grupo-btn-enviar {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.formulario__btn {
  height: 45px;
  line-height: 45px;
  width: 30%;
  background: rgb(240, 120, 9);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.1s ease all;
}

.formulario__btn:hover {
  box-shadow: 3px 0px 30px rgba(240, 120, 9, 0.3);
}

.formulario__mensaje-exito {
  font-size: 14px;
  color: #119200;
  display: none;
}

.formulario__mensaje-exito-activo {
  display: block;
}

/* ----- -----  Estilos para Validacion ----- ----- */
.formulario__grupo-correcto .formulario__validacion-estado {
  color: #1ed12d;
  opacity: 1;
}

.formulario__grupo-incorrecto .formulario__label {
  color: #bb2929;
}

.formulario__grupo-incorrecto .formulario__validacion-estado {
  color: #bb2929;
  opacity: 1;
}

.formulario__grupo-incorrecto .formulario__input {
  border: 3px solid #bb2929;
}

/* ----- -----  Mediaqueries ----- ----- */
@media screen and (max-width: 800px) {
  .formulario {
    grid-template-columns: 1fr;
  }

  .formulario__grupo-terminos,
  .formulario__mensaje,
  .formulario__grupo-btn-enviar {
    grid-column: 1;
  }

  .formulario__btn {
    width: 100%;
  }
}

/*Comentado */
.panel {
  display: block;
  box-sizing: content-box;
  background-size: cover;
  border-radius: 5px;
  margin-top: 20px;
  background-repeat: no-repeat;
  background-position: center;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
  }
}

.informacion {
  background: rgb(240, 120, 9, 0.8);
  margin-left: 120px;
  margin-right: 700px;
  margin-top: 29vh;
  position: absolute;
  border-radius: 30px;
  width: 55vw;
  height: 50vh;
}

.informacion h1 {
  color: #fff;
  font-weight: bold;
  font-size: 2.5vw;
  padding: 40px;
  padding-top: 5vh;
  text-align: left;
}

.informacion p {
  color: #fff;
  font-size: 1.5625vw;
  padding: 40px;
  text-align: left;
}

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 800px) {
  .informacion {
    background: rgb(240, 120, 9, 0.8);
    margin-left: 120px;
    margin-right: 700px;
    margin-top: 29vh;
    position: absolute;
    border-radius: 30px;
    width: 55vw;
    height: 40vh;
  }

  .informacion h1 {
    text-align: left;
    font-size: 5.5vw;
    padding: 10px;
  }

  .informacion p {
    font-size: 3.5vw;
    padding: 20px;
  }
}

.boton1 {
  color: #fff;
  font-weight: bolder;
  text-transform: uppercase;
  transition: 0.3s ease all;
  background-color: #f07809;
  width: 200px;
  height: 75px;
  font-size: 20px;
  border-radius: 30px;
  position: absolute;
  margin-top: 550px;
  margin-left: 220px;
}

.boton2 {
  color: #f07809;
  font-weight: bolder;
  text-transform: uppercase;
  transition: 0.3s ease all;
  background-color: #fff;
  width: 200px;
  height: 75px;
  font-size: 20px;
  border-radius: 30px;
  position: absolute;
  margin-top: 550px;
  margin-left: 520px;
}

.metodo_probado {
  background-color: #f07809;
  height: 760px;
  border-radius: 30px;
}
.como_funciona {
  background-color: #f07809;
  height: 640px;
  border-radius: 30px;
}

.metodo_probado_contenedor h1 {
  color: #fff;
  font: bold;
  font-size: 50px;
  padding-left: 50px;
  text-align: center;
}

.metodo_probado_contenedor h2 {
  text-align: center;
  color: #fff;
  font-size: 25px;
  padding-left: 50px;
}

.carrito1 {
  background: #f07809;
  width: 400px;
  margin-left: 50px;
  position: absolute;
  margin-top: 20px;
  color: #fff;
  border-radius: 30px;
}

.carrito1:hover {
  background: rgba(250, 0, 0, 0.5);
}

.carrito1 img:hover {
  width: 110px;
}

.carrito2 {
  background: #f07809;
  width: 400px;
  position: absolute;
  margin-left: 550px;
  margin-top: 20px;
  color: #fff;
  border-radius: 30px;
}

.carrito2:hover {
  background: rgba(250, 0, 0, 0.5);
}

.carrito2 img:hover {
  width: 90px;
}

.carrito3 {
  background: #f07809;
  width: 400px;
  position: absolute;
  margin-left: 1050px;
  margin-top: 20px;
  color: #fff;
  border-radius: 30px;
}

.carrito3:hover {
  background: rgba(250, 0, 0, 0.5);
}

.carrito3 img:hover {
  width: 110px;
}

.carrito4 {
  background: #f07809;
  width: 400px;
  margin-left: 50px;
  position: absolute;
  margin-left: 550px;
  margin-top: 290px;
  color: #fff;
  border-radius: 30px;
}

.carrito4:hover {
  background: rgba(250, 0, 0, 0.5);
}

.carrito4 img:hover {
  width: 110px;
}

.carrito5 {
  background: #f07809;
  width: 200px;
  margin-left: 250px;
  position: absolute;
  margin-top: 90px;
  color: #fff;
  border-radius: 30px;
}

.carrito5:hover {
  background: rgba(250, 0, 0, 0.5);
}

.carrito5 img:hover {
  width: 110px;
}

.carrito6 {
  background: #f07809;
  width: 200px;
  margin-left: 470px;
  position: absolute;
  margin-top: 140px;
}

.carrito7 {
  background: #f07809;
  width: 200px;
  margin-left: 540px;
  position: absolute;
  margin-top: 70px;
  border-radius: 30px;
  color: #fff;
}

.carrito7:hover {
  background: rgba(250, 0, 0, 0.5);
}

.carrito7 img:hover {
  width: 110px;
}

.carrito8 {
  background: #f07809;
  width: 200px;
  margin-left: 770px;
  position: absolute;
  margin-top: 140px;
}

.carrito9 {
  background: #f07809;
  width: 200px;
  margin-left: 840px;
  position: absolute;
  margin-top: 70px;
  color: #fff;
  border-radius: 30px;
}

.carrito9:hover {
  background: rgba(250, 0, 0, 0.5);
}

.carrito9 img:hover {
  width: 110px;
}

.carrito10 {
  background: #f07809;
  width: 200px;
  margin-left: 1070px;
  position: absolute;
  margin-top: 140px;
}

.carrito11 {
  background: #f07809;
  width: 200px;
  margin-left: 1150px;
  position: absolute;
  margin-top: 80px;
  color: #fff;
  border-radius: 30px;
}

.carrito11:hover {
  background: rgba(250, 0, 0, 0.5);
}

.carrito11 img:hover {
  width: 110px;
}

.carrito12 {
  color: #f07809;
  font-weight: bolder;
  text-transform: uppercase;
  transition: 0.3s ease all;
  background-color: #fff;
  width: 200px;
  height: 75px;
  font-size: 25px;
  border-radius: 30px;
  position: absolute;
  margin-top: 370px;
  margin-left: 720px;
}

.como_funciona_contenedor h1 {
  color: #fff;
  font: bold;
  font-size: 50px;
  padding-left: 50px;
  text-align: center;
}

.como_funciona_contenedor h2 {
  text-align: center;
  color: #fff;
  font-size: 25px;
  padding-left: 50px;
}

.carrito1 img {
  width: 100px;
}
.carrito2 img {
  width: 80px;
}
.carrito3 img {
  width: 100px;
}
.carrito4 img {
  width: 100px;
}

.carrito5 img {
  width: 100px;
}
.carrito6 img {
  width: 50px;
}
.carrito7 img {
  width: 100px;
}
.carrito8 img {
  width: 50px;
}
.carrito9 img {
  width: 100px;
}
.carrito10 img {
  width: 50px;
}
.carrito11 img {
  width: 100px;
}

.carrito13 img {
  width: 50px;
}

.carrito14 img {
  width: 50px;
}

.carrito15 img {
  width: 50px;
}

.carrito16 img {
  width: 50px;
}

.carrito18 img {
  width: 160px;
}

.carrito19 img {
  width: 160px;
}

.carrito20 img {
  width: 160px;
}

.carrito21 img {
  width: 160px;
}

.item {
  text-align: center;
}

.item span {
  font-size: 25px;
  font: bold;
}

.precios_accesibles_para_todos h1 {
  font: bold;
  font-size: 50px;
  padding-left: 50px;
  text-align: center;
}

.precios_accesibles_para_todos h2 {
  text-align: center;
  font-size: 25px;
  padding-left: 50px;
}

.fondo {
  background: #dfe2df9f;
  border-radius: 30px;
}

.contenedor1 {
  width: 90%;
  max-width: 900px;
  margin: auto;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.tabla {
  width: 33%;
  height: 800px;
  margin: auto;
  border: 5px solid #f07809;
  border-radius: 4px;
  box-shadow: 0px 0px 8px 0px #f07809;
  padding: 60px;
  text-align: center;
  flex-grow: 1;
  color: #f07809;
}

.tabla:hover {
  background: #f07809;
  color: #f1f1f2;
  transition: 0.2all;
  transform: scale(1.1);
  cursor: pointer;
}

.excepcion {
  margin-bottom: 40px;
}

.tabla > h2 {
  margin-bottom: 35px;
}

.tabla img {
  width: 64px;
  margin-bottom: 35px;
}

.tabla > h3 {
  margin-bottom: 55px;
}

.boton {
  display: inline-block;
  width: 150px;
  padding: 12px;
  background: #fff;
  text-decoration: none;
  color: #f07809;
  border-radius: 100px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  margin: auto;
  margin-bottom: 20px;
}

.barra {
  background: #f07809;
  height: 550px;
  border-radius: 30px;
}

.carrito13 {
  background: #f07809;
  width: 200px;
  margin-left: 250px;
  position: absolute;
  margin-top: 70px;
  color: #fff;
  border-radius: 30px;
}

.carrito14 {
  background: #f07809;
  width: 200px;
  margin-left: 550px;
  position: absolute;
  margin-top: 70px;
  color: #fff;
  border-radius: 30px;
}

.carrito15 {
  background: #f07809;
  width: 200px;
  margin-left: 850px;
  position: absolute;
  margin-top: 70px;
  color: #fff;
  border-radius: 30px;
}

.carrito16 {
  background: #f07809;
  width: 200px;
  margin-left: 1150px;
  position: absolute;
  margin-top: 70px;
  color: #fff;
  border-radius: 30px;
}

/* */

.carrito17 {
  background: #f07809;
  width: 200px;
  margin-left: 250px;
  position: absolute;
  margin-top: 80px;
  color: #fff;
  border-radius: 30px;
}

.carrito18 {
  background: #f07809;
  width: 200px;
  margin-left: 450px;
  position: absolute;
  margin-top: 30px;
  color: #fff;
  border-radius: 30px;
}

.carrito19 {
  background: #f07809;
  width: 200px;
  margin-left: 650px;
  position: absolute;
  margin-top: 30px;
  color: #fff;
  border-radius: 30px;
}

.carrito20 {
  background: #f07809;
  width: 200px;
  margin-left: 850px;
  position: absolute;
  margin-top: 30px;
  color: #fff;
  border-radius: 30px;
}

.carrito21 {
  background: #f07809;
  width: 200px;
  margin-left: 1050px;
  position: absolute;
  margin-top: 30px;
  color: #fff;
  border-radius: 30px;
}

.carrito22 {
  color: #fff;
  font-weight: bolder;
  text-transform: uppercase;
  transition: 0.3s ease all;
  background-color: #f07809;
  width: 200px;
  height: 75px;
  font-size: 20px;
  text-align: center;
  margin-top: 50px;
  margin-left: 700px;
}

.carrito23 {
  color: #fff;
  font-weight: bolder;
  text-transform: uppercase;
  transition: 0.3s ease all;
  background-color: #f07809;
  width: 200px;
  height: 75px;
  font-size: 20px;
  text-align: left;
  margin-top: 40px;
  margin-left: 150px;
  position: absolute;
}

.carrito24 {
  color: #fff;
  font-weight: bolder;
  text-transform: uppercase;
  transition: 0.3s ease all;
  background-color: #f07809;
  width: 500px;
  height: 75px;
  font-size: 20px;
  text-align: left;
  margin-top: 0px;
  margin-left: 550px;
  position: absolute;
}

.carrito25 {
  color: #fff;
  font-weight: bolder;
  text-transform: uppercase;
  transition: 0.3s ease all;
  background-color: #f07809;
  width: 200px;
  height: 75px;
  font-size: 20px;
  text-align: left;
  margin-top: 0px;
  margin-left: 1050px;
  position: absolute;
}

.post-footer {
  background: #f07809;
  height: 300px;
}

.footer_img img {
  width: 200px;
}

.footer_redes img {
  width: 30px;
}

.contenedor {
  width: 90%;
  margin: auto;
}

/* ---- ----- ----- Contenedor Titulo y Controles ----- ----- ----- */
.contenedor-titulo-controles {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 40px;
  margin-bottom: 40px;
}

.contenedor-titulo-controles h3 {
  color: #fff;
  font-size: 35px;
  background-color: #f07809;
  border-radius: 30px;
  padding: 20px;
}

.contenedor-titulo-controles .indicadores button {
  background: #fff;
  height: 3px;
  width: 10px;
  cursor: pointer;
  border: none;
  margin-right: 2px;
}

.contenedor-titulo-controles .indicadores button:hover,
.contenedor-titulo-controles .indicadores button.activo {
  background: #f07809;
}

li {
  list-style: none;
  text-align: center;
  font-size: 20px;
  border-radius: 30px;
}

.card-cursos {
  width: 1200px;
  height: 600px;
  display: flex;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 10px #f07809;
  border-radius: 10px;
}

.card-cursos:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 20px #f07809;
}

.card-cursos .img-card-cursos1 {
  background: url(curso1_marinera.webp);
  width: 25%;
  height: 100%;
  background-size: cover;
}

.card-cursos .img-card-cursos2 {
  background: url(curso2_empresario.webp);
  width: 25%;
  height: 100%;
  background-size: cover;
}

.card-cursos .content-cursos {
  width: 75%;
  height: 100%;
  display: grid;
  grid-template-rows: 120px 400px 150px;
  padding: 10px 15px;
}

.card-cursos .content-cursos .title-cursos h3 {
  color: #f07809;
  font-size: 60px;
  text-align: center;
}

.card-cursos .content-cursos .title-cursos span {
  color: #f07809;
  font-size: 24px;
  text-align: center;
}

.card-cursos .content-cursos .text-cursos p {
  color: #f07809;
  font-size: 20px;
  font-weight: bolder;
  text-align: left;
}

.card-cursos .content-cursos .btn-container-cursos button {
  background: #f07809;
  padding: 5px 10px;
  color: #fff;
  border-radius: 5px;
  outline: none;
  border: none;
  font-size: 20px;
}

.card-cursos .content-cursos .btn-container-cursos button:hover {
  background: #fff;
  color: #f07809;
}

.contenedor-empresas {
  background: #fff;
}

.img-card-empresas {
  background-color: #f07809;
  border-radius: 100px;
  height: 150px;
  width: 150px;
  margin: auto;
}

.img-card-empresas img:hover {
  transform: rotate(360deg);
  transition-duration: 2s;
}

@media screen and (max-width: 800px) {
  .img-card-empresas {
    height: 90px;
    width: 90px;
  }
  .img-card-empresas img {
    height: 60px;
    width: 60px;
  }
}

.barrita-empresas-aprendizaje {
  width: 100%;
  height: 10px;
  color: #fff;
  background: #fff;
  border-radius: 3px;
  z-index: 1;
  align-items: center;
  justify-content: center;
}

.titulo-card-empresas {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  padding-top: 50px;
  padding-left: 5vw;
}

.titulo-card-empresas h1 {
  color: #000;
  font-size: 44px;
  font-weight: bold;
}

.titulo-empresas-aprendizaje {
  margin: auto;
  font-size: 21px;
}

.titulo-empresas-aprendizaje h2 {
  font-weight: bold;
}

.contenedor-card-empresas {
  display: grid;
  grid-template-columns: 30% 30% 30%;
  align-items: center;
  justify-content: center;
}

.card-empresas {
  margin: 30px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.title-empresas h3 {
  color: #ffff;
  background-color: #f07809;
  font-weight: 600;
  margin-top: 60px;
  margin-bottom: 50px;
  font-size: 28px;
  border: solid 2px #f07809;
  border-radius: 20px;
  text-align: center;
}

.text-empresas {
  color: #000;
  font-size: 20px;
  margin-bottom: 80px;
  text-align: justify;
}

@media screen and (max-width: 1200px) {
  .contenedor-card-empresas {
    grid-template-columns: 40% 40%;
  }
}

@media screen and (max-width: 800px) {
  .contenedor-card-empresas {
    grid-template-columns: 80%;
  }
}

.contenedor-empresas-instituciones {
  background-color: #fef4eb;
}

.contenedor-empresas-instituciones-imagenes {
  width: 80%;
  margin: auto;
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 20%;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}

.imagenes-instituciones {
  padding: 20px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.imagenes-instituciones img {
  align-items: center;
  justify-content: center;
}

.imagenes-instituciones img:hover {
  transform: scale(1.3);
  filter: contrast(20%) sepia(1) hue-rotate(10deg) saturate(1000%);
}

.empresas-instituciones-mensaje {
  width: 60%;
  margin: auto;
  margin-top: 80px;
  background-color: #f07809;
  border-radius: 30px;
  padding: 20px 80px;
  text-align: justify;
}

.empresas-instituciones-mensaje h1 {
  color: #fff;
  font-size: 20px;
}

.nuestro-impacto-empresas-contenedor {
  background-color: #fef4eb;
}

.nuestro-impacto-empresas-contenedor-titulo {
  display: flex;
  align-items: end;
}

.nuestro-impacto-empresa-titulo {
  margin-left: 10%;
}

.nuestro-impacto-empresa-titulo h1 {
  color: #fff;
  background-color: #f07809;
  padding: 20px;
  border-radius: 0px 30px 30px 0px;
  margin: 40px;
  margin-left: 0px;
  width: 100%;
}

.nuestro-impacto-empresa-descripcion {
  background-color: #f07809;
  width: 50%;
  text-align: center;
  border-radius: 30px;
  color: #fff;
  font-size: 22px;
  margin-left: 30%;
  padding: 20px;
}

.impacto-empresas-contenedor-card {
  display: grid;
  grid-template-columns: 20% 20% 20% 20%;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px;
}

.impacto-card-empresas {
  margin-top: 70px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.impacto-img-card-empresas img {
  margin-bottom: 30px;
  border-radius: 20px;
  width: 9.375vw;
}

.impacto-img-card-empresas img:hover {
  transition-duration: 0.5s;
  transform: scale(1.3);
}

.impacto-content-empresas {
  margin-top: 20px;
  padding: 10px;
}

.impacto-title-empresas {
  background-color: #f07809;
  color: #fff;
  border-radius: 30px;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: bold;
  width: 50%;
  margin: auto;
  font-family: sans-serif;
}

.impacto-text-empresas {
  padding: 10px;
}

.impacto-text-empresas p {
  font-size: 24px;
}

.nuestro-impacto-empresas-contenedor2 {
  background-color: #eee;
}

.nuestro-impacto-empresas-contenedor3 {
  background-color: #f07809;
}

@media screen and (max-width: 1200px) {
  .contenedor-empresas-instituciones-imagenes {
    grid-template-columns: 25% 25% 25% 25%;
  }
  .impacto-empresas-contenedor-card {
    grid-template-columns: 40% 40%;
  }

  .impacto-img-card-empresas img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
  }
}

@media screen and (max-width: 800px) {
  .contenedor-empresas-instituciones-imagenes {
    grid-template-columns: 33% 33% 33%;
  }

  .impacto-empresas-contenedor-card {
    grid-template-columns: 80%;
  }

  .impacto-img-card-empresas img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
  }

  .impacto-title-empresas {
    font-size: 20px;
    width: 90%;
  }

  .impacto-text-empresas p {
    font-size: 4vw;
    text-align: center;
  }
}

@media screen and (max-width: 800px) {
  .empresas-instituciones-mensaje {
    padding: 30px;
    text-align: left;
  }
  .titulo-empresas-aprendizaje h2 {
    font-size: 18px;
    font-weight: bolder;
  }

  .title-empresas {
    width: 100%;
  }

  .title-empresas h3 {
    font-size: 15px;
  }

  .text-empresas {
    font-size: 15px;
  }
}

.fortaleza-total {
  background-color: #fff;
}

.fortlezas-empresas {
  background-color: #fff;
  margin: auto;
  position: relative;
  width: 80%;
  height: 900px;
  display: flex;
  overflow: hidden;
  border-radius: 10px;
}

.pelotita-empresas {
  position: absolute;
  background-color: #f07809;
  box-shadow: 0px 0px 25px 5px #f07809;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  left: 60%;
  top: 17%;
  animation: pelotita 3s alternate infinite;
}

@keyframes pelotita {
  0% {
    translate: 10px 10px;
  }
  25% {
    translate: -90px 150px;
  }
  50% {
    translate: 10px 300px;
  }
  75% {
    translate: -90px 450px;
  }
  100% {
    translate: 10px 600px;
  }
}

.fortlezas-empresas .fortalezas-empresas-content {
  width: 50%;
  height: 100%;
  position: relative;
}

.empresa-imagen1 {
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 13%;
  right: 0;
  margin-right: 20px;
}

.empresa-imagen1:hover {
  transition-duration: 0.5s;
  transform: scale(1.3);
}

.empresa-imagen2 {
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 30%;
  left: 15%;
}

.empresa-imagen2:hover {
  transition-duration: 0.5s;
  transform: scale(1.3);
}

.empresa-imagen3 {
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 47%;
  right: 0%;
  margin-right: 20px;
}

.empresa-imagen3:hover {
  transition-duration: 0.5s;
  transform: scale(1.3);
}

.empresa-imagen4 {
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 64%;
  left: 15%;
}

.empresa-imagen4:hover {
  transition-duration: 0.5s;
  transform: scale(1.3);
}

.empresa-imagen5 {
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 81%;
  right: 2%;
  margin-right: 20px;
}

.empresa-imagen5:hover {
  transition-duration: 0.5s;
  transform: scale(1.3);
}

.fortalezas-empresas-texto {
  width: 160px;
  text-align: center;
}

.fortalezas-empresas-title {
  background-color: #f07809;
  width: 70%;
  margin-top: 30px;
  border-radius: 0px 30px 30px 0px;
  padding: 15px;
}

.fortalezas-empresas-title h1 {
  color: #fff;
  text-align: center;
}

.fortlezas-empresas .fortalezas-empresas-img {
  border-radius: 30px;
  background: url(Imagenes/WEB_INNSER/03.EMPRESAS/young-person-during-intership_redimensionado.webp);
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 800px) {
  .fortlezas-empresas .fortalezas-empresas-content {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(
        to bottom,
        rgb(240, 120, 9, 0.2) 0%,
        rgb(240, 120, 9, 0.5) 50%,
        rgb(240, 120, 9, 0.8) 100%
      ),
      url(Imagenes/WEB_INNSER/03.EMPRESAS/young-person-during-intership_redimensionado.webp);
    background-size: cover;
  }

  .fortlezas-empresas .fortalezas-empresas-img {
    display: none;
  }

  .fortalezas-empresas-title {
    width: 90%;
  }

  .fortalezas-empresas-title h1 {
    font-size: 24px;
  }
  .empresa-imagen1 {
    width: 30px;
    height: 30px;
  }

  .empresa-imagen2 {
    width: 30px;
  }

  .empresa-imagen3 {
    width: 30px;
  }

  .empresa-imagen4 {
    width: 30px;
  }

  .empresa-imagen5 {
    width: 30px;
  }

  .empresa-imagen1 {
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    top: 13%;
    right: 45%;
    margin-right: 20px;
  }

  .empresa-imagen1:hover {
    transition-duration: 0.5s;
    transform: scale(1.3);
  }

  .empresa-imagen2 {
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    top: 30%;
    left: 5%;
  }

  .empresa-imagen2:hover {
    transition-duration: 0.5s;
    transform: scale(1.3);
  }

  .empresa-imagen3 {
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    top: 47%;
    right: 45%;
    margin-right: 20px;
  }

  .empresa-imagen3:hover {
    transition-duration: 0.5s;
    transform: scale(1.3);
  }

  .empresa-imagen4 {
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    top: 64%;
    left: 5%;
  }

  .empresa-imagen4:hover {
    transition-duration: 0.5s;
    transform: scale(1.3);
  }

  .empresa-imagen5 {
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    top: 81%;
    right: 45%;
    margin-right: 20px;
  }

  .empresa-imagen5:hover {
    transition-duration: 0.5s;
    transform: scale(1.3);
  }
}

.metodologia-empresas-total {
  background: #fff;
}

.metodologia-empresas {
  background-color: #fff;
  margin: auto;
  position: relative;
  width: 80%;
  overflow: hidden;
  border-radius: 10px;
}

.metodologia-empresas-title {
  width: 100%;
}

.metodologia-empresas-title h1 {
  background-color: #f07809;
  width: 40%;
  margin-top: 60px;
  border-radius: 0px 30px 30px 0px;
  padding: 15px;
  color: #fff;
  text-align: center;
}

.metodologia-empresa-imagen {
  width: 100%;
  height: 1400px;
}

.metodologia-empresa-imagen img {
  top: 35%;
  left: 15%;
  position: absolute;
  width: 60vw;
}

.metodologia-empresas-title1 {
  top: 30%;
  position: absolute;
  z-index: 1;
  color: #fff;
  width: 100%;
  text-align: center;
}

.metodologia-empresas-title1 p {
  font-size: 1.25vw;
  font-weight: bold;
}

.metodologia-empresa-imagen1 {
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  left: 25%;
  margin-right: 20px;
  z-index: 1;
  animation: escala 2s infinite linear;
}

.metodologia-empresa-imagen1:hover {
  transform: scale(1.3);
  transition: 0.1s;
}

@keyframes escala {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}

.metodologia-empresa-imagen2 {
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 80%;
  left: 25%;
  margin-right: 20px;
  z-index: 1;
  animation: escala 2s infinite linear;
}

.metodologia-empresa-imagen2:hover {
  transform: scale(1.3);
  transition: 0.1s;
}

.metodologia-empresa-imagen3 {
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  left: 25%;
  margin-right: 20px;
  margin-top: -20px;
  z-index: 1;
  animation: escala 2s infinite linear;
}

.metodologia-empresa-imagen4 {
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 65.5%;
  left: 25%;
  margin-right: 20px;
  z-index: 1;
  animation: escala 2s infinite linear;
}

.metodologia-empresas-title2 {
  padding-left: 5px;
  top: 30%;
  position: absolute;
  z-index: 1;
  width: 80%;
  text-align: center;
  color: #fff;
}

.metodologia-empresas-title2 p {
  font-size: 1vw;
  font-weight: bold;
}

.metodologia-empresas-title3 {
  top: 30%;
  position: absolute;
  z-index: 1;
  width: 75%;
  text-align: center;
  color: #fff;
  padding-left: 33px;
}

.metodologia-empresas-title3 p {
  font-size: 1.1vw;
  font-weight: bold;
}

.metodologia-empresas-title4 {
  top: 30%;
  position: absolute;
  z-index: 1;
  width: 100%;
  color: #fff;
  text-align: center;
}

.metodologia-empresas-title4 p {
  font-size: 1.25vw;
  font-weight: bold;
}

.metodologia-empresa-imagen img:hoveriño {
  transition-duration: 0.5s;
  transform: scale(1.2);
}

.metodologia-empresas-numero1 {
  left: 35%;
  position: absolute;
  z-index: 1;
  color: #000;
  font-size: 64px;
}

.metodologia-empresas-numero2 {
  top: 80%;
  left: 35%;
  position: absolute;
  z-index: 1;
  color: #000;
  font-size: 64px;
}

.metodologia-empresas-numero3 {
  left: 35%;
  position: absolute;
  z-index: 1;
  color: #000;
  font-size: 64px;
}

.metodologia-empresas-numero4 {
  top: 80%;
  left: 35%;
  position: absolute;
  z-index: 1;
  color: #000;
  font-size: 64px;
}

.metodologia-empresas-content {
  display: grid;
  grid-template-columns: 20% 20% 20% 20%;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  margin-bottom: 100px;
}

.metodologia-empresa-card1 {
  position: relative;
}

.metodologia-empresa-card2 {
  position: relative;
}

.metodologia-empresa-card3 {
  position: relative;
}

.metodologia-empresa-card4 {
  position: relative;
}

.metodologia-empresa-imagenfondo1 img {
  width: 90%;
}

.metodologia-empresa-imagenfondo2 img {
  width: 90%;
}
.metodologia-empresa-imagenfondo3 img {
  width: 90%;
}
.metodologia-empresa-imagenfondo4 img {
  width: 90%;
}

@media screen and (max-width: 800px) {
  .metodologia-empresas-content {
    grid-template-columns: 80%;
  }
  .metodologia-empresa-card1 {
    position: relative;
    margin-top: 50px;
    margin-bottom: 100px;
  }
  .metodologia-empresa-card2 {
    position: relative;
    margin-top: 50px;
    margin-bottom: 100px;
  }
  .metodologia-empresa-card3 {
    position: relative;
    margin-top: 50px;
    margin-bottom: 100px;
  }
  .metodologia-empresa-card4 {
    position: relative;
    margin-top: 50px;
    margin-bottom: 100px;
  }
  .metodologia-empresa-card5 {
    position: relative;
    margin-top: 50px;
    margin-bottom: 100px;
  }
}

.nuestros-servicios-empresa-total {
  background-color: #fef4eb;
}

.nuestros-servicios-empresa {
  background-color: #fef4eb;
  margin: auto;
  position: relative;
  width: 80%;
  height: 800px;
  display: flex;
  overflow: hidden;
  border-radius: 10px;
}

.nuestros-servicios-empresa-title {
  background-color: #f07809;
  width: 40%;
  margin-top: 60px;
  border-radius: 0px 30px 30px 0px;
  padding: 15px;
  padding-left: 60px;
  color: #fff;
  text-align: center;
}

.nuestros-servicios-empresa-imagen-content {
  margin-top: 80px;
  margin-left: 75px;
}

.nuestros-servicios-empresa-texto1 {
  position: absolute;
  width: 220px;
  height: 250px;
  text-align: center;
  top: 62%;
  left: 8%;
  padding: 10px;
  border: solid 1px #f07809;
  border-radius: 20px;
}

.nuestros-servicios-empresa-texto2 {
  position: absolute;
  width: 220px;
  height: 250px;
  text-align: center;
  top: 62%;
  left: 30%;
  padding: 10px;
  border: solid 1px #f07809;
  border-radius: 20px;
}

.nuestros-servicios-empresa-texto2 p {
  height: auto;
}

.nuestros-servicios-empresa-texto3 {
  position: absolute;
  width: 220px;
  height: 250px;
  text-align: center;
  top: 62%;
  left: 52%;
  padding: 10px;
  border: solid 1px #f07809;
  border-radius: 20px;
}

.nuestros-servicios-empresa-texto4 {
  position: absolute;
  width: 220px;
  height: 250px;
  text-align: center;
  top: 62%;
  left: 74%;
  padding: 10px;
  border: solid 1px #f07809;
  border-radius: 20px;
}

.hr {
  color: #000 4px solid;
}

.contenedor-newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background-color: #ec812b;
  color: #eee;
  font-size: 20px;
}

.newsletter_seccion1 {
  margin: auto;
  padding: 10px;
  font-size: 36px;
}

.newsletter_seccion2 {
  margin: auto;
}

.newsletter_seccion2 p {
  padding: 10px;
}

.newsletter_seccion3 {
  margin: auto;
  margin-top: 50px;
  margin-bottom: 30px;
}

.newsletter_correo {
  display: inline;
  width: 40%;
  background: #fff;
  border: 3px solid #f07809;
  border-radius: 3px;
  height: 45px;
  line-height: 45px;
  padding: 0 40px 0 10px;
  transition: 0.3s ease all;
}
.newsletter_correo:focus {
  border: 3px solid #f07809;
  outline: none;
  box-shadow: 3px 0px 30px rgba(163, 163, 163, 0.4);
}

.newsletter_seccion3 button {
  margin-left: 20px;
  padding: 0px 20px;
  line-height: 40px;
  border: #fff 3px solid;
  color: #fff;
  background-color: rgb(240, 120, 9, 0.6);
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease all;
}

.newsletter_seccion3 button:hover {
  border: #f07809 3px solid;
  color: #f07809;
  background-color: #fff;
}

.newsletter_checkbox {
  display: block;
  margin-top: 5px;
  margin-bottom: 20px;
}

.responsabilidad-social-video {
  display: block;
  margin: 0 auto;
  width: 800px;
  height: 500px;
}

@media screen and (max-width: 1200px) {
  .responsabilidad-social-video {
    width: 500px;
    height: 350px;
  }
  .metodologia-empresas-title h1 {
    width: 70%;
  }
}

@media screen and (max-width: 800px) {
  .responsabilidad-social-video {
    width: 350px;
    height: 200px;
  }
  .contenedor-newsletter {
    grid-template-columns: 1fr;
  }
  .metodologia-empresas-title1 p {
    font-size: 4vw;
    font-weight: bold;
  }
  .metodologia-empresas-title2 p {
    font-size: 3.5vw;
    font-weight: bold;
    text-align: center;
  }
  .metodologia-empresas-title2 {
    padding-left: 5px;
    top: 30%;
    left: 5%;
    position: absolute;
    z-index: 1;
    width: 70%;
    text-align: center;
    color: #fff;
  }
  .metodologia-empresas-title3 p {
    font-size: 4vw;
    font-weight: bold;
  }
  .metodologia-empresas-title4 p {
    font-size: 4vw;
    font-weight: bold;
  }
}

.responsabilidad-social-empresa-total {
  background-color: #fff;
  margin-top: 5;
  width: 100%;
  height: 4500px;
}

.responsabilidad-social-empresa {
  background-color: #fff;
  margin: auto;
  position: relative;
  width: 80%;
  height: 1200px;
  border-radius: 10px;
}

.responsabilidad-social-empresa-content {
  position: relative;
  margin-top: 40px;
  top: 40px;
}

.imagen_ave_fenix img {
  top: -11%;
  left: 90%;
  position: absolute;
  width: 250px;
}

.contenedor_ave_fenix {
  background-color: #fff;
  border-radius: 10px;
}

.contenedor-responsabilidad-social-titulo {
  padding: 2.8vh;
}

.responsabilidad-social-empresas-title {
  position: absolute;
  width: 40%;
  background-color: #f07809;
  text-align: center;
  color: #fff;
  margin-top: 50px;
  border-radius: 0px 30px 30px 0px;
  padding: 15px;
  font-size: 20px;
}

.responsabilidad_social_objetivos_contenedor_total {
  margin-top: 50px;
  margin-bottom: 50px;
  width: 100%;
}

.responsabilidad_social_objetivos_contenedor_contenido {
  width: 100%;
  display: grid;
  grid-template-columns: 65% 35%;
}

.responsabilidad_social_objetivos_contenedor_contenido1 {
  display: grid;
  grid-template-rows: 21% 25% 54%;
  background: linear-gradient(
    to bottom,
    rgb(240, 120, 9, 0.4) 0%,
    rgb(240, 120, 9, 0.6) 50%,
    rgb(240, 120, 9, 1) 100%
  );
  border-radius: 20px;
  box-sizing: border-box;
}

.responsabilidad_social_objetivos_finalidad_titulo {
  font-size: 24px;
  padding-top: 30px;
  padding-left: 40px;
}

.responsabilidad_social_objetivos_finalidad_texto {
  padding-top: 30px;
  width: 70%;
  font-size: 20px;
  padding-left: 40px;
}

.responsabilidad_social_objetivos_objetivos_titulo {
  font-size: 24px;
  padding-top: 30px;
  padding-left: 40px;
}

.responsabilidad_social_objetivos_objetivos_texto {
  padding-top: 30px;
  font-size: 20px;
  width: 70%;
}

.responsabilidad_social_objetivos_contenedor_contenido2 {
  border-radius: 10px;
}

.responsabilidad_social_objetivos_ods_titulo {
  font-size: 24px;
  padding-top: 20px;
  margin-top: 90px;
  padding-left: 40px;
  width: 70%;
}

.responsabilidad_social_objetivos_ods_imagenesods {
  padding-top: 10px;
  text-align: center;
}

.responsabilidad_social_objetivos_ods_imagenesods img {
  width: 150px;
  margin: 20px;
  border-radius: 30px;
}

.responsabilidad_social_objetivos_ods_imagenesods img:hover {
  transform: scale(1.3);
  transition: 0.1s;
}

.responsabilidad_social_objetivos_objetivos_texto li {
  text-align: left;
  list-style: disc;
}

.responsabilidad_social_objetivos_aside img {
  text-align: center;
}

@media only screen and (max-width: 1200px) {
}

@media only screen and (max-width: 800px) {
  .responsabilidad-social-empresa {
    width: 100%;
  }
  .responsabilidad_social_objetivos_contenedor_contenido {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
  .responsabilidad_social_objetivos_contenedor_contenido1 {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 20% 25% 55%;
    background: linear-gradient(
        to bottom,
        rgb(240, 120, 9, 0.4) 0%,
        rgb(240, 120, 9, 0.6) 50%,
        rgb(240, 120, 9, 1) 100%
      ),
      url("Imagenes/WEB_INNSER/06.RESPONSABILIDAD_SOCIAL/Objetivos/Recurso18.webp");
    border-radius: 20px;
    width: 100%;
  }

  .contenedor-responsabilidad-social-titulo {
    padding: 1.5vh;
  }
  .responsabilidad_social_objetivos_contenedor_contenido2 {
    display: none;
  }
  .responsabilidad_social_objetivos_finalidad_texto {
    padding-top: 30px;
    width: 80%;
    font-size: 20px;
    padding-left: 40px;
  }
}

.responsabilidad_social_queremos_lograr_contenedor_total {
  background: linear-gradient(
      to bottom,
      rgb(240, 120, 9, 0.2) 0%,
      rgb(240, 120, 9, 0.5) 50%,
      rgb(240, 120, 9, 0.8) 100%
    ),
    url(Imagenes/WEB_INNSER/06.RESPONSABILIDAD_SOCIAL/queremos_Lograr/Recurso19.webp);
  background-size: cover;
  background-position: center center;
  border-radius: 20px;
  margin-bottom: 80px;
}

.responsabilidad_social_queremos_lograr_tarjeta {
  display: grid;
  grid-template-columns: 50% 50%;
}

.responsabillidad_social_queremos_lograr_contenido {
  width: 100%;
  display: grid;
  grid-template-columns: 50% 50%;
  justify-content: center;
  align-items: center;
}

.responsabillidad_social_queremos_lograr_contenido1 {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
  margin-bottom: 50px;
  border-right: 10px solid #ec812b;
}

.responsabillidad_social_queremos_lograr_titulo_contenedor {
  font-size: 24px;
  padding-top: 30px;
  padding-left: 40px;
}

.responsabillidad_social_queremos_lograr_titulo_contenedor1 {
  font-size: 24px;
  padding-top: 80px;
  padding-left: 80px;
}

.responsabilidad_social_queremos_lograr_tarjeta_imagen {
  text-align: center;
}

.responsabilidad_social_queremos_lograr_tarjeta_imagen img {
  width: 150px;
}

.responsabilidad_social_queremos_lograr_tarjeta_imagen img:hover {
  transform: scale(1.3);
  transition: 0.1s;
}

.responsabilidad_social_queremos_lograr_tarjeta_texto {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}

.responsabilidad_social_barra_titulo {
  border-bottom: 15px solid #ec812b;
  width: 40%;
  margin-bottom: 20px;
}

.responsabilidad_social_barra_titulo1 {
  border-bottom: 15px solid #ec812b;
  width: 80%;
  margin-bottom: 20px;
}

.responsabillidad_social_queremos_lograr_contenido2 {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 1200px) {
}

@media only screen and (max-width: 800px) {
  .responsabillidad_social_queremos_lograr_contenido {
    width: 100%;
    display: grid;
    grid-template-columns: 100%;
    justify-content: center;
    align-items: center;
  }
}

.responsabilidad_social_equipo_contenedor_total {
  background: linear-gradient(
      to bottom,
      rgb(240, 120, 9, 0.2) 0%,
      rgb(240, 120, 9, 0.5) 50%,
      rgb(240, 120, 9, 0.8) 100%
    ),
    url(Imagenes/WEB_INNSER/06.RESPONSABILIDAD_SOCIAL/queremos_Lograr/Recurso19.webp);
  background-size: cover;
  background-position: center center;
  height: 850px;
  background-color: #fff;
}

.responsabilidad_social_equipo_contenedor {
  height: 2000px;
  background-color: #fff;
}

.responsabilidad_social_equipo_contenido {
  display: grid;
  grid-template-columns: 60% 40%;
}

.responsabilidad_social_equipo_contenedor1 {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  justify-content: center;
  align-items: center;
  gap: 100px;
}

.responsabilidad_social_equipo_contenedor2 {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
  gap: 100px;
}

.responsabilidad_social_equipo_imagen {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  padding: 3px;
  background: #f07809;
  margin: auto;
}

.responsabilidad_social_equipo_imagen img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
}

.responsabilidad_social_equipo_descripcion {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
}
.responsabilidad_social_equipo_descripcion2 {
  text-align: center;
  font-size: 20px;
}

.responsabilidad_social_equipo_contenedor2_apartado1 {
  background-color: #ec812b;
  padding: 20px;
  width: 90%;
  border-radius: 50px;
}

.responsabilidad_social_equipo_contenedor2_apartado1 p {
  font-size: 20px;
}

.responsabilidad_social_equipo_contenedor2_apartado3 p {
  font-size: 20px;
}

.responsabilidad_social_equipo_contenedor2_apartado3 {
  background-color: #ec812b;
  padding: 20px;
  width: 90%;
  border-radius: 50px;
}

.responsabilidad_social_equipo_contenedor2_apartado2 {
  margin: auto;
}

.responsabilidad_social_equipo_contenedor2_apartado2 img {
  width: 200px;
}

@media only screen and (max-width: 1200px) {
}

@media only screen and (max-width: 800px) {
  .responsabilidad_social_equipo_contenedor_total {
    margin-top: 200px;
    height: 2200px;
  }
  .responsabilidad_social_equipo_contenido {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 1fr;
  }
  .responsabilidad_social_equipo_contenedor1 {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    justify-content: center;
    align-items: center;
    gap: 100px;
  }

  .responsabilidad_social_equipo_contenedor2 {
    margin: 30px;
    margin-top: 50px;
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    justify-content: center;
    align-items: center;
    gap: 50px;
  }
}

.responsabilidad-social-empresa-contenedor-card {
  margin: auto;
  display: grid;
  grid-template-columns: 45% 45%;
  position: relative;
  margin: auto;
}

.responsabilidad-social-titulo {
  position: relative;
  background: #f07809;
  border-radius: 20px;
  width: 80%;
  text-align: center;
  margin: auto;
  padding: 10px;
  color: #fff;
  font-size: 20px;
  padding: 10px;
  margin-top: 40px;
}

.card-responsabilidad-social {
  width: 400px;
  height: 200px;
  display: grid;
  grid-template-columns: 50% 50%;
  padding: 20px;
  text-align: center;
  margin: auto;
}

.contenido-card-responsabilidad-social {
  width: 100%;
  height: 100%;
  padding: 15px 15px;
  justify-self: center;
  align-self: center;
  place-self: center;
  align-items: center;
  justify-content: center;
  place-content: center;
  height: auto;
  padding-left: 23px;
}

.contenido-card-responsabilidad-social p {
  font-size: 15px;
  text-align: left;
  font-weight: bold;
  padding: 10px;
}

.imagen-card-responsabilidad-social1 {
  background: url(Imagenes/WEB_INNSER/03.EMPRESAS/Responsabilidad_social/1.webp);
  width: 200px;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border: 5px solid #ec812b;
  border-radius: 30px;
}

.imagen-card-responsabilidad-social2 {
  background: url(Imagenes/WEB_INNSER/03.EMPRESAS/Responsabilidad_social/2.webp);
  width: 200px;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  border: 5px solid #ec812b;
  border-radius: 30px;
}

.imagen-card-responsabilidad-social3 {
  background: url(Imagenes/WEB_INNSER/03.EMPRESAS/Responsabilidad_social/3.webp);
  width: 200px;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  border: 5px solid #ec812b;
  border-radius: 30px;
}

.imagen-card-responsabilidad-social4 {
  background: url(Imagenes/WEB_INNSER/03.EMPRESAS/Responsabilidad_social/4.webp);
  width: 200px;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  border: 5px solid #ec812b;
  border-radius: 30px;
}

.imagen-card-responsabilidad-social5 {
  background: url(Imagenes/WEB_INNSER/03.EMPRESAS/Responsabilidad_social/5.webp);
  width: 200px;
  height: 160px;
  background-size: cover;
  background-repeat: no-repeat;
  border: 5px solid #ec812b;
  border-radius: 30px;
}

.imagen-card-responsabilidad-social6 {
  background: url(Imagenes/WEB_INNSER/03.EMPRESAS/Responsabilidad_social/6.webp);
  width: 200px;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  border: 5px solid #ec812b;
  border-radius: 30px;
}

.imagen-card-responsabilidad-social7 {
  background: url(Imagenes/WEB_INNSER/03.EMPRESAS/Responsabilidad_social/7.webp);
  width: 200px;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  border: 5px solid #ec812b;
  border-radius: 30px;
}

.imagen-card-responsabilidad-social8 {
  background: url(Imagenes/WEB_INNSER/03.EMPRESAS/Responsabilidad_social/8.webp);
  width: 200px;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  border: 5px solid #ec812b;
  border-radius: 30px;
}
@media screen and (min-width: 2200px) {
  .responsabilidad-social-empresa-total {
    height: 5000px;
  }
}

@media screen and (max-width: 1300px) {
  .imagen_ave_fenix img {
    top: -11%;
    left: 85%;
    position: absolute;
    width: 250px;
  }
  .responsabilidad-social-empresa-total {
    height: 4500px;
  }
}
@media screen and (max-width: 800px) {
  .responsabilidad-social-empresas-title {
    width: 80%;
    font-size: 16px;
  }
  .responsabilidad-social-empresa-total {
    height: 6600px;
  }

  .responsabilidad-social-empresa {
    height: 2200px;
  }
  .imagen_ave_fenix img {
    top: 7%;
    left: 5%;
    position: absolute;
    width: 300px;
  }
  .responsabilidad-social-empresa-contenedor-card {
    margin-top: 100px;
    grid-template-columns: 1fr;
  }

  .imagen-card-responsabilidad-social1 {
    width: 150px;
  }
  .imagen-card-responsabilidad-social2 {
    width: 150px;
  }
  .imagen-card-responsabilidad-social3 {
    width: 150px;
  }
  .imagen-card-responsabilidad-social4 {
    width: 150px;
  }
  .imagen-card-responsabilidad-social5 {
    width: 150px;
  }
  .imagen-card-responsabilidad-social6 {
    width: 150px;
  }
  .imagen-card-responsabilidad-social7 {
    width: 150px;
  }
  .imagen-card-responsabilidad-social8 {
    width: 150px;
  }
}

.footer-pagina {
  width: 100%;
  height: 200px;
  background-color: #fef4eb;
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
}

.footer-pagina2 {
  position: relative;
  width: 100%;
  background-color: #fef4eb;
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
}

@media screen and (max-width: 800px) {
  .footer-pagina2 {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 25% 25% 25% 25%;
  }
}

.footer1 {
  display: grid;
  grid-template-rows: 40% 60%;
  gap: 10px;
  width: 100%;
  position: relative;
}

.footer1-1 {
  padding: 20px;
  padding-top: 20px;
  height: 100px;
  text-align: center;
}

.footer1-1 img {
  text-align: center;
}

.footer1-2 {
  text-align: center;
  font-size: 20px;
  margin: 0px auto;
}

.footer2 {
  font-weight: bolder;
  display: grid;
  grid-template-rows: 50% 50%;
  width: 100%;
}

.footer2-1 {
  font-size: 10px;
  padding: 20px;
  padding-top: 55px;
  text-align: center;
}

.footer2-2 {
  padding: 20px;
  text-align: center;
}

.footer3 {
  display: grid;
  grid-template-rows: 20% 40% 20% 20%;
  width: 100%;
}

.footer3-1 {
  font-size: 10px;
  padding: 10px;
  padding-top: 55px;
  text-align: center;
}

.footer3-2 {
  padding-top: 60px;
  display: grid;
  justify-content: center;
}

.footer3-2 a {
  width: 100px;
  font-weight: 700;
  border-radius: 10px;
  background-color: #f07809;
  text-decoration: none;
  color: #fff;
  text-align: center;
  margin: 1px;
  padding: 1px;
}

.footer4 {
  display: grid;
  grid-template-rows: 25% 25% 25% 25%;
  width: 100%;
}

.footer4-1 {
  font-size: 10px;
  padding: 20px;
  text-align: center;
}

.footer4-2 {
  padding: 5px;
  text-align: center;
}

.footer4-2 img {
  width: 30px;
}

.footer4-3 {
  padding-top: 10px;
}

.footer4-3 h3 {
  text-align: center;
  padding-top: 20px;
}

@media screen and (max-width: 800px) {
  .footer4-3 h3 {
    padding-top: 0px;
  }
}

.footer4-3 p {
  text-align: center;
  padding-left: 5px;
  padding-right: 5px;
  font-weight: bold;
}

.footer_contenido {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 2px solid #f07809;
}

.footer_contenido a {
  color: #f07809;
  display: inline;
  text-align: center;
  margin: auto;
  font-weight: bold;
}

.footer_contenido a:hover {
  transform: scale(1.1);
}

.footer_contenido img {
  display: inline;
  text-align: center;
  margin: auto;
}

.container-card-nosotros {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 1000px;
  display: grid;
  margin-top: 100px;
  grid-template-columns: 1fr 1fr;
  place-items: center;
}

.card-nosotros1 {
  position: relative;
  width: 500px;
  height: 300px;
  display: flex;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 10px #f07809;
  border-radius: 10px;
}

.card-nosotros1:hover {
  box-shadow: 0px 5px 20px #f07809;
}

.card-nosotros1 .img-card-nosotros {
  background: url(Imagenes/WEB_INNSER/04.NOSOTROS/Recurso_25.webp);
  width: 50%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.card-nosotros1 .content-nosotros {
  width: 50%;
  height: 100%;
  display: grid;
  grid-template-rows: 50px 150px;
  padding: 10px 15px;
}

.card-nosotros1 .content-nosotros .title-nosotros h3 {
  color: #f07809;
  font-size: 30px;
}

.card-nosotros1 .content-nosotros .text-nosotros p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
}

.card-nosotros2 {
  position: relative;
  width: 500px;
  height: 300px;
  display: flex;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 10px #f07809;
  border-radius: 10px;
}

.card-nosotros2:hover {
  box-shadow: 0px 5px 20px #f07809;
}

.card-nosotros2 .img-card-nosotros {
  background: url(Imagenes/WEB_INNSER/04.NOSOTROS/Recurso_26.webp);
  width: 50%;
  height: 100%;
  background-size: cover;
}

.card-nosotros2 .content-nosotros {
  width: 50%;
  height: 100%;
  display: grid;
  grid-template-rows: 50px 150px;
  padding: 10px 15px;
}

.card-nosotros2 .content-nosotros .title-nosotros h3 {
  color: #f07809;
  font-size: 30px;
}

.card-nosotros2 .content-nosotros .text-nosotros p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
}

.card-nosotros3 {
  position: relative;
  width: 500px;
  height: 300px;
  display: flex;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 10px #f07809;
  border-radius: 10px;
}

.card-nosotros3:hover {
  box-shadow: 0px 5px 20px #f07809;
}

.card-nosotros3 .img-card-nosotros {
  background: url(Imagenes/WEB_INNSER/04.NOSOTROS/Recurso_27.webp);
  width: 50%;
  height: 100%;
  background-size: cover;
}

.card-nosotros3 .content-nosotros {
  width: 50%;
  height: 100%;
  display: grid;
  grid-template-rows: 50px 150px;
  padding: 10px 15px;
}

.card-nosotros3 .content-nosotros .title-nosotros h3 {
  color: #f07809;
  font-size: 30px;
}

.card-nosotros3 .content-nosotros .text-nosotros p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 22px;
}

.card-nosotros4 {
  position: relative;
  width: 500px;
  height: 300px;
  display: flex;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 10px #f07809;
  border-radius: 10px;
}

.card-nosotros4:hover {
  box-shadow: 0px 5px 20px #f07809;
}

.card-nosotros4 .img-card-nosotros {
  background: url(Imagenes/WEB_INNSER/04.NOSOTROS/Recurso_25.webp);
  width: 50%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.card-nosotros4 .content-nosotros {
  width: 50%;
  height: 100%;
  display: grid;
  grid-template-rows: 50px 150px;
  padding: 10px 15px;
}

.card-nosotros4 .content-nosotros .title-nosotros h3 {
  color: #f07809;
  font-size: 30px;
}

.card-nosotros4 .content-nosotros .text-nosotros p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 20px;
}

@media screen and (max-width: 800px) {
  .container-card-nosotros {
    display: grid;
    grid-template-columns: 1fr;
    height: 1500px;
  }

  .card-nosotros1 {
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    position: relative;
    width: 300px;
    height: 180px;
    display: flex;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 10px #f07809;
    border-radius: 10px;
  }

  .card-nosotros1 .content-nosotros {
    width: 50%;
    height: 100%;
    display: grid;
    grid-template-rows: 30px 120px;
    padding: 5px 15px;
  }

  .card-nosotros1 .content-nosotros .title-nosotros h3 {
    color: #f07809;
    font-size: 15px;
  }

  .card-nosotros1 .content-nosotros .text-nosotros p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 11px;
  }

  .card-nosotros2 {
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    position: relative;
    width: 300px;
    height: 180px;
    display: flex;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 10px #f07809;
    border-radius: 10px;
  }

  .card-nosotros2 .content-nosotros .title-nosotros h3 {
    color: #f07809;
    font-size: 15px;
  }

  .card-nosotros2 .content-nosotros .text-nosotros p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 11px;
  }

  .card-nosotros3 {
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    position: relative;
    width: 300px;
    height: 180px;
    display: flex;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 10px #f07809;
    border-radius: 10px;
  }

  .card-nosotros3 .content-nosotros .title-nosotros h3 {
    color: #f07809;
    font-size: 15px;
  }

  .card-nosotros3 .content-nosotros .text-nosotros p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 11px;
  }

  .card-nosotros4 {
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    position: relative;
    width: 300px;
    height: 180px;
    display: flex;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 10px #f07809;
    border-radius: 10px;
  }

  .card-nosotros4 .content-nosotros .title-nosotros h3 {
    color: #f07809;
    font-size: 15px;
  }

  .card-nosotros4 .content-nosotros .text-nosotros p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 11px;
  }
}

.container-principios-nosotros {
  overflow: hidden;
  background: #f07809;
  display: grid;
  grid-template-columns: 20% 20% 20% 20%;
  align-items: center;
  justify-content: center;
  padding: 20px;
  padding-top: 50px;
  padding-bottom: 50px;
}

@media screen and (max-width: 1300px) {
  .container-principios-nosotros {
    grid-template-columns: 45% 45%;
  }
}

@media screen and (max-width: 800px) {
  .container-principios-nosotros {
    grid-template-columns: 1fr;
  }
}

.principios-nosotros {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  color: #fff;
}

.principios-nosotros img:hover {
  transform: rotate(360deg);
  transition-duration: 2s;
}

.swiper-button-next {
  position: absolute;
  top: 1700px;
}

.swiper-button-prev {
  top: 1700px;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, 1950px);
  left: 0;
  width: 100%;
}

.swiper {
  width: 950px;
}

.contenedor-total-socios {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
}

.section-socios .card-socios .image-socios {
  height: 140px;
  width: 140px;
  border-radius: 50%;
  padding: 3px;
  background: #f07809;
}

.section-socios .card-socios .image-socios img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
}

.section-socios .card-socios .image-socios2 {
  height: 140px;
  width: 140px;
  border-radius: 50%;
  padding: 3px;
  background: #f07809;
}

.section-socios .card-socios .image-socios2 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
}

.card-socios {
  position: relative;
  background: #fff;
  border-radius: 20px;
  margin: 20px 0;
  width: 280px;
}

.card-socios::before {
  content: "";
  position: absolute;
  height: 45%;
  width: 100%;
  background-color: #f07809;
  border-radius: 20px 20px 0 0;
}

.card-socios .card-content-socios {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  position: relative;
  z-index: 100;
}

.card-content-socios .media-icons-socios {
  position: absolute;
  top: 10px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-socios .media-icons-socios i {
  margin-top: 10px;
  color: #fff;
  opacity: 0.6;
  transition: all 0.3s ease;
  cursor: pointer;
}

.card-socios .media-icons-socios i:hover {
  opacity: 1;
}

.card-socios .name-profession-socios {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
  color: #333;
}

.name-profession-socios .name-socios {
  font-size: 20px;
  font-weight: 600;
}

.name-profession-socios .profession-socios {
  font-size: 15px;
  font-weight: 500;
}

.card-socios .rating-socios {
  display: flex;
  align-items: center;
  margin-top: 18px;
}

.card-socios .rating-socios i {
  font-size: 18px;
  margin: 0 2px;
  color: #f07809;
}

.card-socios .button-socios {
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.card-socios .button-socios button {
  background-color: #f07809;
  outline: none;
  border: none;
  color: #fff;
  padding: 8px 22px;
  border-radius: 20px;
  font-size: 14px;
}

.card-socios .button-socios button > a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
}

@media screen and (min-width: 2500px) {
  .swiper-button-next {
    position: absolute;
    top: 2250px;
  }

  .swiper-button-prev {
    top: 2250px;
  }

  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, 2450px);
    left: 0;
    width: 100%;
  }

  .swiper {
    width: 1400px;
  }
}
@media screen and (max-width: 1300px) {
  .swiper-button-next {
    position: absolute;
    top: 1900px;
  }

  .swiper-button-prev {
    top: 1900px;
  }

  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, 2100px);
    left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .swiper-button-next {
    position: absolute;
    top: 2700px;
  }

  .swiper-button-prev {
    top: 2700px;
  }

  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, 2950px);
    left: 0;
    width: 100%;
  }
}

.ave_fenix_resultados_contenedor {
  width: 100%;
  height: 1000px;
  background-color: #fff;
  margin-top: 50px;
}

.titulo_ave_fenix {
  width: 60%;
  margin: auto;
  margin-top: 180px;
  margin-left: 18.75vw;
  border: 2px solid #ec812b;
  border-radius: 10px;
  padding: 10px;
  padding-left: 5px;
  padding-right: 5px;
  background-color: #ec812b;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  position: absolute;
  color: #fff;
}

.resultados_contenedor {
  font-size: 20px;
  position: absolute;
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  grid-template-rows: 1fr 1fr 1fr;
  margin: 80px;
  margin-top: 320px;
  grid-template-areas:
    "aside main main"
    "aside content1 content2"
    "aside content3 content4";
}

.resultados_titulo {
  grid-area: aside;
}

.resultados_texto {
  grid-area: main;
  margin-top: 40px;
}

.resultados_indicadores1 {
  grid-area: content1;
  display: grid;
  grid-template-columns: 30% 60%;
  text-align: center;
}

.resultados_indicadores2 {
  grid-area: content2;
  display: grid;
  grid-template-columns: 30% 60%;
  text-align: center;
}

.resultados_indicadores3 {
  grid-area: content3;
  display: grid;
  grid-template-columns: 30% 60%;
  text-align: center;
}

.resultados_indicadores4 {
  grid-area: content4;
  display: grid;
  grid-template-columns: 30% 60%;
  text-align: center;
}

.resultados_texto_indicadores {
  margin-top: 20px;
}

.ave_fenix_indicadores_contenedor_general {
  width: 100%;
  height: 1000px;
  background-color: #fef4eb;
  font-size: 25px;
}

.ave_fenix_indicadores_contenedor {
  margin: 80px;
  margin-top: 120px;
  position: absolute;
  display: grid;
  grid-template-columns: 1fr 2fr 4fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-areas:
    "aside1 contenido1 animacion1"
    "aside1 contenido2 animacion2"
    "aside1 contenido3 animacion3"
    "aside1 contenido4 animacion4"
    "aside1 contenido5 animacion5"
    "aside1 contenido6 animacion6";
}

.titulo_ave_fenix_indicadores {
  grid-area: aside1;
}

.indicadores_datos1 {
  grid-area: contenido1;
  margin-top: 20px;
}

.indicadores_datos2 {
  grid-area: contenido2;
  margin-top: 20px;
}

.indicadores_datos3 {
  grid-area: contenido3;
  margin-top: 20px;
}

.indicadores_datos4 {
  grid-area: contenido4;
  margin-top: 20px;
}

.indicadores_datos5 {
  grid-area: contenido5;
  margin-top: 20px;
}

.indicadores_datos6 {
  grid-area: contenido6;
  margin-top: 20px;
}

.indicadores_animacion1 {
  grid-area: animacion1;
}

.imagenes_indicadores_datos1 {
  position: relative;
  overflow: hidden;
  width: 300px;
  height: 100px;
}

.imagenes_indicadores_datos1 img {
  position: absolute;
  left: 100px;
  animation: trasladar1 4s infinite;
}

@keyframes trasladar1 {
  0% {
    transform: translateX(0); /* Inicio de la animación */
  }
  50% {
    transform: translateX(100%); /* Punto medio de la animación */
  }
  80% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0); /* Fin de la animación */
  }
}

.imagenes_indicadores_datos2 {
  position: relative;
  overflow: hidden;
  height: 100px;
}

.imagenes_indicadores_datos2 img {
  position: absolute;
  left: 100px;
  animation: trasladar2 4s infinite;
}

@keyframes trasladar2 {
  0% {
    transform: translateX(0); /* Inicio de la animación */
  }
  50% {
    transform: translateX(170%); /* Punto medio de la animación */
  }
  80% {
    transform: translateX(170%);
  }
  100% {
    transform: translateX(0); /* Fin de la animación */
  }
}

.imagenes_indicadores_datos3 {
  position: relative;
  overflow: hidden;
  height: 100px;
}

.imagenes_indicadores_datos3 img {
  position: absolute;
  left: 100px;
  animation: trasladar3 4s infinite;
}

@keyframes trasladar3 {
  0% {
    transform: translateX(0); /* Inicio de la animación */
  }
  50% {
    transform: translateX(350%); /* Punto medio de la animación */
  }
  80% {
    transform: translateX(350%);
  }
  100% {
    transform: translateX(0); /* Fin de la animación */
  }
}

.imagenes_indicadores_datos4 {
  position: relative;
  overflow: hidden;
  height: 100px;
}

.imagenes_indicadores_datos4 img {
  position: absolute;
  left: 100px;
  animation: trasladar4 4s infinite;
}

@keyframes trasladar4 {
  0% {
    transform: translateX(0); /* Inicio de la animación */
  }
  50% {
    transform: translateX(380%); /* Punto medio de la animación */
  }
  80% {
    transform: translateX(380%);
  }
  100% {
    transform: translateX(0); /* Fin de la animación */
  }
}

.imagenes_indicadores_datos5 {
  position: relative;
  overflow: hidden;
  height: 100px;
}

.imagenes_indicadores_datos5 img {
  position: absolute;
  left: 100px;
  animation: trasladar5 4s;
  animation-iteration-count: infinite;
}

@keyframes trasladar5 {
  0% {
    transform: translateX(0); /* Inicio de la animación */
  }
  50% {
    transform: translateX(450%); /* Punto medio de la animación */
  }
  80% {
    transform: translateX(450%);
  }
  100% {
    transform: translateX(0); /* Fin de la animación */
  }
}

.imagenes_indicadores_datos6 {
  position: relative;
  overflow: hidden;
  height: 100px;
}

.imagenes_indicadores_datos6 img {
  position: absolute;
  left: 100px;
  animation: trasladar6 4s infinite;
  overflow: visible;
}

@keyframes trasladar6 {
  0% {
    transform: translateX(0); /* Inicio de la animación */
  }
  50% {
    transform: translateX(600%); /* Punto medio de la animación */
  }
  80% {
    transform: translateX(600%);
  }
  100% {
    transform: translateX(0); /* Fin de la animación */
  }
}

.indicadores_animacion2 {
  grid-area: animacion2;
}

.indicadores_animacion3 {
  grid-area: animacion3;
}

.indicadores_animacion4 {
  grid-area: animacion4;
}

.indicadores_animacion5 {
  grid-area: animacion5;
}

.indicadores_animacion6 {
  grid-area: animacion6;
}

@media screen and (max-width: 1300px) {
  .resultados_contenedor {
    font-size: 20px;
    position: absolute;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    margin: 80px;
    margin-top: 320px;
    grid-template-areas:
      "aside main"
      "aside content1"
      "aside content2"
      "aside content3"
      "aside content4"
      "aside content5";
  }
  .ave_fenix_resultados_contenedor {
    height: 1300px;
  }
  .resultados_indicadores1 {
    grid-template-columns: 45% 45%;
  }
  .resultados_indicadores2 {
    grid-template-columns: 45% 45%;
  }
  .resultados_indicadores3 {
    grid-template-columns: 45% 45%;
  }
  .resultados_indicadores4 {
    grid-template-columns: 45% 45%;
  }
  .resultados_indicadores5 {
    grid-template-columns: 45% 45%;
  }

  .ave_fenix_indicadores_contenedor_general {
    height: 1000px;
  }
  @keyframes trasladar1 {
    0% {
      transform: translateX(0); /* Inicio de la animación */
    }
    50% {
      transform: translateX(50%); /* Punto medio de la animación */
    }
    80% {
      transform: translateX(50%);
    }
    100% {
      transform: translateX(0); /* Fin de la animación */
    }
  }
  @keyframes trasladar2 {
    0% {
      transform: translateX(0); /* Inicio de la animación */
    }
    50% {
      transform: translateX(70%); /* Punto medio de la animación */
    }
    80% {
      transform: translateX(70%);
    }
    100% {
      transform: translateX(0); /* Fin de la animación */
    }
  }
  @keyframes trasladar3 {
    0% {
      transform: translateX(0); /* Inicio de la animación */
    }
    50% {
      transform: translateX(120%); /* Punto medio de la animación */
    }
    80% {
      transform: translateX(120%);
    }
    100% {
      transform: translateX(0); /* Fin de la animación */
    }
  }
  @keyframes trasladar4 {
    0% {
      transform: translateX(0); /* Inicio de la animación */
    }
    50% {
      transform: translateX(140%); /* Punto medio de la animación */
    }
    80% {
      transform: translateX(140%);
    }
    100% {
      transform: translateX(0); /* Fin de la animación */
    }
  }
  @keyframes trasladar5 {
    0% {
      transform: translateX(0); /* Inicio de la animación */
    }
    50% {
      transform: translateX(200%); /* Punto medio de la animación */
    }
    80% {
      transform: translateX(200%);
    }
    100% {
      transform: translateX(0); /* Fin de la animación */
    }
  }
  @keyframes trasladar6 {
    0% {
      transform: translateX(0); /* Inicio de la animación */
    }
    50% {
      transform: translateX(210%); /* Punto medio de la animación */
    }
    80% {
      transform: translateX(210%);
    }
    100% {
      transform: translateX(0); /* Fin de la animación */
    }
  }
}

@media screen and (max-width: 800px) {
  .imagenes_indicadores_datos1 {
    display: none;
  }
  .imagenes_indicadores_datos2 {
    display: none;
  }
  .imagenes_indicadores_datos3 {
    display: none;
  }
  .imagenes_indicadores_datos4 {
    display: none;
  }
  .imagenes_indicadores_datos5 {
    display: none;
  }
  .imagenes_indicadores_datos6 {
    display: none;
  }

  .ave_fenix_resultados_contenedor {
    height: 2500px;
  }

  .ave_fenix_indicadores_contenedor_general {
    height: 1300px;
  }

  .ave_fenix_indicadores_contenedor {
    margin: 80px;
    margin-top: 120px;
    position: absolute;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-areas:
      "aside1 contenido1"
      "aside1 contenido2"
      "aside1 contenido3"
      "aside1 contenido4"
      "aside1 contenido5"
      "aside1 contenido6"
      "animacion1 animacion1"
      "animacion2 animacion2"
      "animacion3 animacion3"
      "animacion4 animacion4"
      "animacion5 animacion5"
      "animacion6 animacion6";
  }

  @keyframes trasladar1 {
    0% {
      transform: translateX(0); /* Inicio de la animación */
    }
    50% {
      transform: translateX(20%); /* Punto medio de la animación */
    }
    80% {
      transform: translateX(20%);
    }
    100% {
      transform: translateX(0); /* Fin de la animación */
    }
  }
  @keyframes trasladar2 {
    0% {
      transform: translateX(0); /* Inicio de la animación */
    }
    50% {
      transform: translateX(30%); /* Punto medio de la animación */
    }
    80% {
      transform: translateX(30%);
    }
    100% {
      transform: translateX(0); /* Fin de la animación */
    }
  }
  @keyframes trasladar3 {
    0% {
      transform: translateX(0); /* Inicio de la animación */
    }
    50% {
      transform: translateX(70%); /* Punto medio de la animación */
    }
    80% {
      transform: translateX(70%);
    }
    100% {
      transform: translateX(0); /* Fin de la animación */
    }
  }
  @keyframes trasladar4 {
    0% {
      transform: translateX(0); /* Inicio de la animación */
    }
    50% {
      transform: translateX(80%); /* Punto medio de la animación */
    }
    80% {
      transform: translateX(80%);
    }
    100% {
      transform: translateX(0); /* Fin de la animación */
    }
  }
  @keyframes trasladar5 {
    0% {
      transform: translateX(0); /* Inicio de la animación */
    }
    50% {
      transform: translateX(110%); /* Punto medio de la animación */
    }
    80% {
      transform: translateX(110%);
    }
    100% {
      transform: translateX(0); /* Fin de la animación */
    }
  }
  @keyframes trasladar6 {
    0% {
      transform: translateX(0); /* Inicio de la animación */
    }
    50% {
      transform: translateX(120%); /* Punto medio de la animación */
    }
    80% {
      transform: translateX(120%);
    }
    100% {
      transform: translateX(0); /* Fin de la animación */
    }
  }
}

.contenedor_mapa_responsabilidad_social {
  width: 100%;
  height: 900px;
  background-color: #fef4eb;
}

.titulo_mapa_responsabilidad_social {
  position: relative;
  width: 60%;
  margin: auto;
  margin-bottom: 50px;
  border: 2px solid #ec812b;
  border-radius: 10px;
  padding: 10px;
  padding-left: 5px;
  padding-right: 5px;
  background-color: #ec812b;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

.emprendimientos_contenedor {
  background-color: #fef4eb;
  width: 100%;
  height: 1200px;
  justify-content: center;
}

.titulo_emprendimientos {
  position: relative;
  top: 40px;
  font-size: 32px;
  background-color: #f07809;
  width: 50%;
  margin: auto;
  margin-top: 50px;
  text-align: center;
  border-radius: 10px;
  padding: 20px;
  color: #fff;
}

.titulo_metodologia {
  margin: auto;
  margin-bottom: 50px;
  font-size: 32px;
  background-color: #f07809;
  width: 70%;
  text-align: center;
  border-radius: 10px;
  padding: 20px;
  color: #fff;
}

.emprendimientos_contenedor_contenido {
  position: absolute;
  margin: auto;
  margin: 80px;
  margin-left: 9vh;
  margin-top: 250px;
  justify-content: center;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 0.2fr 1fr 0.2fr;
  grid-template-areas:
    "nav nav nav nav nav"
    "seccion1 seccion2 seccion3 seccion4 seccion5"
    "titulo1 titulo2 titulo3 titulo4 titulo5";
}

.encabezado_imagen_emprendimiento {
  grid-area: nav;
  text-align: center;
}

.encabezado_imagen_emprendimiento img {
  width: 1400px;
  text-align: center;
}

.img_emprendimiento1 {
  grid-area: seccion1;
}

.img_emprendimiento1:hover {
  transform: scale(1.5);
}

.img_emprendimiento2 {
  grid-area: seccion2;
}

.img_emprendimiento2:hover {
  transform: scale(1.5);
}

.img_emprendimiento3 {
  grid-area: seccion3;
}

.img_emprendimiento3:hover {
  transform: scale(1.5);
}

.img_emprendimiento4 {
  grid-area: seccion4;
}

.img_emprendimiento4:hover {
  transform: scale(1.5);
}

.img_emprendimiento5 {
  grid-area: seccion5;
}

.img_emprendimiento5:hover {
  transform: scale(1.5);
}

.titulo_emprendimiento1 {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-area: titulo1;
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
  background-color: #ec812b;
  border-radius: 10px;
  width: 80%;
}

.titulo_emprendimiento2 {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-area: titulo2;
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
  background-color: #ec812b;
  border-radius: 10px;
  width: 80%;
}
.titulo_emprendimiento3 {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-area: titulo3;
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
  background-color: #ec812b;
  border-radius: 10px;
  width: 80%;
}
.titulo_emprendimiento4 {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-area: titulo4;
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
  background-color: #ec812b;
  border-radius: 10px;
  width: 80%;
}
.titulo_emprendimiento5 {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-area: titulo5;
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
  background-color: #ec812b;
  border-radius: 10px;
  width: 80%;
}

@media screen and (max-width: 1300px) {
  .encabezado_imagen_emprendimiento {
    text-align: center;
  }
  .encabezado_imagen_emprendimiento img {
    width: 900px;
    text-align: center;
  }
  .img_emprendimiento1 img {
    width: 180px;
  }
  .img_emprendimiento2 img {
    width: 180px;
  }
  .img_emprendimiento3 img {
    width: 180px;
  }
  .img_emprendimiento4 img {
    width: 180px;
  }
  .img_emprendimiento5 img {
    width: 180px;
  }
}
@media screen and (max-width: 800px) {
  .encabezado_imagen_emprendimiento img {
    width: 300px;
    text-align: center;
  }
  .titulo_emprendimientos {
    width: 90%;
  }
  .emprendimientos_contenedor_contenido {
    grid-template-columns: 1fr;
    grid-template-columns: 1fr;
    grid-template-areas:
      "nav"
      "seccion1"
      "titulo1"
      "seccion2"
      "titulo2"
      "seccion3"
      "titulo3"
      "seccion4"
      "titulo4"
      "seccion5"
      "titulo5";
  }
  .img_emprendimiento1 img {
    width: 300px;
  }
  .img_emprendimiento2 img {
    width: 300px;
  }
  .img_emprendimiento3 img {
    width: 300px;
  }
  .img_emprendimiento4 img {
    width: 300px;
  }
  .img_emprendimiento5 img {
    width: 300px;
  }
  .emprendimientos_contenedor {
    background-color: #fef4eb;
    width: 100%;
    height: 4000px;
    justify-content: center;
  }
}

.nuestros_cursos_nuestra_metodologia_contenedor_total {
  background: linear-gradient(
      to bottom,
      rgb(240, 120, 9, 0.2) 0%,
      rgb(240, 120, 9, 0.5) 50%,
      rgb(240, 120, 9, 0.8) 100%
    ),
    url(Imagenes/WEB_INNSER/06.RESPONSABILIDAD_SOCIAL/queremos_Lograr/Recurso19.webp);
  background-size: cover;
  background-position: center center;
  height: 1100px;
  background-color: #fff;
}
.nuestros_cursos_nuestra_metodologia_contenedor {
  margin-top: 350px;
  display: grid;
  grid-template-columns: 40% 60%;
}
.nuestros_cursos_nuestra_metodologia_contenedor1 {
  display: grid;
  grid-template-rows: 50% 50%;
}

.nuestros_cursos_nuestra_metodologia_contenedor2 {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 50% 50%;
}

.nuestros_cursos_nuestra_metodologia_apartado1 {
  width: 100%;
}

.nuestros_cursos_nuestra_metodologia_apartado1_texto {
  text-align: justify;
  width: 100%;
}

.nuestros_cursos_nuestra_metodologia_card {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nuestros_cursos_nuestra_metodologia_card1 {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nuestros_cursos_nuestra_metodologia_card img {
  width: 400px;
}
.nuestros_cursos_nuestra_metodologia_card1 img {
  width: 400px;
}

.nuestros_cursos_nuestra_metodologia_card img:hover {
  transform: scale(1.8);
  transition: 0.1s;
}

.nuestros_cursos_nuestra_metodologia_card1 img:hover {
  transition: 0.1s;
  transform: translateX(-150px) scale(1.8);
}

@media only screen and (max-width: 1200px) {
}

@media only screen and (max-width: 800px) {
  .nuestros_cursos_nuestra_metodologia_contenedor_total {
    height: 2800px;
  }
  .nuestros_cursos_nuestra_metodologia_contenedor {
    margin-top: 350px;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 1fr;
  }

  .nuestros_cursos_nuestra_metodologia_contenedor1 {
    display: grid;
    grid-template-rows: 60% 40%;
  }

  .nuestros_cursos_nuestra_metodologia_contenedor2 {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }

  .responsabillidad_social_queremos_lograr_titulo_contenedor1 {
    margin-bottom: 50px;
    font-size: 24px;
    padding-top: 80px;
    padding-left: 30px;
    width: 80%;
  }
  .nuestros_cursos_nuestra_metodologia_apartado1 {
    width: 100%;
  }

  .nuestros_cursos_nuestra_metodologia_card img {
    width: 350px;
  }
  .nuestros_cursos_nuestra_metodologia_card1 img {
    width: 350px;
  }
  .nuestros_cursos_nuestra_metodologia_card img:hover {
    display: none;
  }
  .nuestros_cursos_nuestra_metodologia_card1 img:hover {
    display: none;
  }
}
