/* Section del inicio, Cultura */
.inicio {
  height: 100dvh;
  background:
    linear-gradient(0deg, rgba(0, 35, 83, 0.93) 50%, rgba(0, 52, 140, 0.93) 85%),
    url(../img/fondo.png) no-repeat center center fixed;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

/* Contenedor del Eslogan */
.eslogan {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;

  padding-left: 7%;
  margin-top: 15%;
}

/* Primeras letras del eslogan */
.e_az {
  font-family: var(--fuente-amaranth);
  font-size: 110px;
  font-weight: 900;
  -webkit-text-stroke: 5px var(--color-terceiario);
  color: var(--color-terceiario);
  line-height: 0.5;
  margin: 0;
}

/* Letras amarillas del eslogan */
.e_am {
  font-family: var(--fuente-amaranth);
  font-size: 90px;
  line-height: 1;
  font-weight: 900;
  -webkit-text-stroke: 2px var(--color-blanco);
  color: var(--color-blanco);
  margin: 0;
}

/* Contenedor de la agencia */
.agencia {
  display: flex;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding-left: 57%;
  align-items: flex-end;
  z-index: 40;
}

/* Imagen de la Agencia */
.agencia img {
  height: 80vh;
  margin: 0;
  padding: 0;
}

/* Contenedor de la letra */
.letra {
  display: flex;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding-left: 60%;
  align-items: flex-end;
  z-index: 30;
}

/* Imagen de la letra */
.letra img {
  height: 90vh;
  width: auto;
  margin: 0;
  padding: 0;
}

/* contenedor de imagen identidad */
.identidad_body {
  display: flex;
  position: absolute;
  bottom: 0;
  padding-left: 85%;
  padding-bottom: 15%;
  align-items: flex-end;
  z-index: 35;
}

/* imagen identidad */
.identidad_body img {
  width: 100%;
  height: 55vh;
  margin: 0;
  padding: 0;

  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.bloque-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
  margin-left: 25px;
}

.contenedor-logos {
  border: 2px solid #FFF;
  border-radius: 20px;
  padding: 0.5rem 0.5rem;
  background: #ffffff00;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 300px;
}

.ctnlgimg1 {
  width: 50%;
  position: relative;
  padding: 15px;
  align-items: center;
  justify-content: center;
}

.ctnlgimg1::after {
  content: "";
  position: absolute;
  right: 0;
  
  width: 2px; 
  height: 30%; 
  background-color: var(--color-terceiario);
  
  top: 50%;
  transform: translateY(-50%);
}

.ctnlgimg2 {
  width: 50%;
  padding: 15px;
  align-items: center;
  justify-content: center;
}

.ctnlgimg1 img {
  margin: 0;
  width: 100px;
  /* Ajusta el tamaño de los logos */
  height: auto;
  max-width: 180px;
}


/* conetendor de triangulos */
.triangulos {
  display: flex;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 1px solid var(--color-blanco);
}

/* Triangulo de lado derecho */
.triangulo-derecha {
  background: linear-gradient(90deg, rgba(0, 35, 83, 1) 15%, rgba(0, 52, 140, 1) 66%);
  margin: 1px solid var(--color-blanco);
  clip-path: polygon(100% 100%, 100% 0%, 0% 100%);
  width: 100%;
  height: 180px;
  /* margin-top: 100px; */
  z-index: 20;
}