.bottom {
  background: linear-gradient(135deg, #050f24, #051b47, var(--back-nav-footer));
  height: 250px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
  position: relative;
}
/* 
.bottom::after {
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  top: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #fdba74,
    #ff6a00,
    #fdba74,
    transparent
  );
} */

.bottom-img-container {
  position: relative;
  padding: 20px 45px;
  /* border-radius: 18px; */
  /* background: rgba(255, 255, 255, 0.08); */
  /* backdrop-filter: blur(12px); */
  /* border: 1px solid rgba(255,255,255,.15); */
  display: flex;
  justify-content: center;
  align-items: center;
  /* box-shadow:
    0 15px 40px rgba(156, 156, 156, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.548); */
  transition: 0.35s;
}

.bottom-img-container:hover {
  transform: translateY(-4px);
}

.bottom-img-container::before {
  content: "";
  position: absolute;
  /* width: 220px;
  height: 220px; */
  /* border-radius: 50%; */
  /* background: radial-gradient(#e2e2e22a, transparent 90%); */
  /* background: #e2e2e225; */
  z-index: 0;
}

.bottom-img-container::after {
  content: "";
  position: absolute;
  inset: 8px;
  /* border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12); */
}

.img-bottom {
  max-width: 310px;
  width: 100%;
}

.bottom-line {
  /* bottom: 0px;
  left: 0px; */
  width: 50%;
  height: 3px;
  /* margin: 25px auto 35px auto; */
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    #fdba74,
    #ff6a00,
    #fdba74,
    transparent
  );
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.25);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  animation: lineAppear 0.7s ease forwards;
  animation-delay: 0.75s;
  /* position: absolute; */
}

.container-info-escuela {
  text-align: center;
}

.info-escuela {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}
