.home {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 204, 255, 0.2)),
        url('../img/aboutus/main.png') top / cover no-repeat;
	margin-top: 100px;
	padding-top: 0;
	margin-top: 100px;
}

.main_logo {
    width: 430px;
    height: auto;
    margin-top: 20px;
}

.companies_logo img { width: 158px; }

.info_container { margin: 150px auto; }

.info_container p { 
    margin-top: 50px;
    color: #fff;
    font-weight: 700;
    font-size: 27px;
    line-height: 150%;
    text-align: center;
    vertical-align: middle;
}
.footer_home {
    background-image: url('../img/aboutus/footer_home.png');
    height: 216px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    top: 82px;
}
.gradient_bg {
    height: 192vh;
    background: linear-gradient(rgba(0, 13, 79, 1) 0%, rgba(255, 255, 255, 0.1) 50%),url("../img/aboutus/mision_bg.png") center / cover no-repeat;
}
.objetivos_container {
    margin-top: 10px;
    background: #D6F4FA;
    border-radius: 45px;
    text-align: left;
    color: #000;
    padding: 0 100px;
    overflow: hidden;
}
.objetivos_container ul {
    font-weight: 400;
    font-size: 25px;
    line-height: 150%;
    vertical-align: middle;
    margin-top: 12%;
    margin-bottom: 12%;
}
.objetivos_container ul li {
    margin-bottom: 25px;
}
.objetivos_container ul span {
    color: #AC5CFF;
    font-weight: 800;
	font-family: var(--default-bold-font);
}
@media (max-width: 767.98px) {
  .objetivos_container {
    padding: 0 10px;
  }
}

.etapa {
  padding: 20px 30px;
  color: white;
  font-weight: bold;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  min-width: 200px;
  transition: transform 0.3s ease;
  animation: slideUp 0.8s ease forwards;
  opacity: 0;
  font-family: var(--default-bold-font);
}

.etapa:hover {
  transform: scale(1.05);
}

.etapa1 {
  background: #AC5CFF;
  box-shadow: 0px 4px 5px 10px #00000040;
  animation-delay: 0.1s;
  font-weight: 800;
  font-size: 30px;
  line-height: 150%;
  text-align: center;
}

.etapa2 {
  background: #4D60FF;
  box-shadow: 0px 4px 5px 10px #00000040;
  font-weight: 800;
  font-size: 30px;
  line-height: 150%;
  text-align: center;

  animation-delay: 0.3s;
}

.etapa3 {
  background: #00DBDA;
  box-shadow: 0px 4px 5px 0px #00000040;
  font-weight: 800;
  font-size: 30px;
  line-height: 150%;
  text-align: center;
  animation-delay: 0.5s;
}

.linea {
  height: 2px;
  width: 70px;
  border: 3px solid #AC5CFF;
  transition: background 0.3s ease;
}
.linea2 {
  height: 2px;
  width: 70px;
  border: 3px solid #4D60FF;
  transition: background 0.3s ease;
}

/* Animaciones */
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 600px) {
  .linea, .linea2 {
    width: 4px;
    height: 30px;
  }
  .etapa { width: 100%; }
}
.box_container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeIn 1s ease-in-out;
}
.box_benefits {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.box_benefits h2 {
    font-weight: 700;
    font-size: 25px;
    line-height: 150%;
    vertical-align: middle;
    color: #00F88F;
}
.box_benefits p {
    font-weight: 400;
    font-size: 25px;
    line-height: 150%;
    vertical-align: middle;
    color: #fff;
}
.bg_benefits {
    height: 100vh;
    background: url("../img/aboutus/benefits_bg.png") no-repeat;
    background-size: cover;
}