/*--------  fonts  ----------*/
@font-face {
  font-family: "Texta";
  src: url("../fonts/TextaBlack.ttf") format("opentype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Texta";
  src: url("../fonts/TextaBold.ttf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Texta";
  src: url("../fonts/TextaBook.ttf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
/*--------  images  ----------*/

@media (max-width: 768px) {
  .navbar-brand img {
    height: 60px; /* Adjust as needed */
  }
  .img-central {
    height: 150px !important; /* Adjust as needed */
  }
  .img-central-2 {
    height: 100px !important; /* Adjust as needed */
  }
}
/*--------  navbar  ----------*/
.bg-body-tertiary {
  background: linear-gradient(to right, #1a2e5e, #639cc7);
}
a.nav-link:hover {
  border-bottom: 2px solid #ffffff;
  color: #ffffff;
}
a.nav-link:active {
  color: #ffffff;

}
/*--------  text  ----------*/
a.text-footer:hover {
  border-bottom: 2px solid #ffffff;
  color: #ffffff;
}
.bg-body-tertiary a {
  font-size: 34px;
  color: #ffffff;
  font-weight: bold;
  font-family: "Texta";
  text-align: left;
}
.headline-1 {
  font-size: 65px;
  color: #ffffff;
  font-weight: 800 !important;
  font-family: "Texta" !important;
}
.headline-2 {
  font-size: 65px;
  color: #1a2e5e;
  font-weight: 800 !important;
  font-family: "Texta" !important;
  text-align: center;
}
.headline-3 {
  font-size: 45px;
  color: #1a2e5e;
  font-weight: 800 !important;
  font-family: "Texta" !important;
  text-align: center;
}
.headline-3 span {
  color: #ffffff;
}
.tittle-1 {
  font-size: 45px;
  color: #ffffff;
  font-weight: 800 !important;
  font-family: "Texta" !important;
}
.tittle-2 {
  font-size: 41px;
  color: #1a2e5e;
  font-weight: 800;
  font-family: "Texta";
  text-align: center;
}
.tittle-3 {
  font-size: 34px;
  color: #1a2e5e;
  font-weight: bold;
  font-family: "Texta";
}
.tittle-4 {
  font-size: 32px;
  color: #ffffff;
  font-weight: bold;
  font-family: "Texta";
}
.tittle-5 {
  font-size: 30px;
  color: #000000;
  font-weight: bold;
  font-family: "Texta";
}
.tittle-6 {
  font-size: 48px;
  color: #1a2e5e;
  font-weight: bold;
  font-family: "Texta";
}
p.text-1 {
  font-size: 28px;
  color: #000000;
  font-weight: 500;
  font-family: "Texta";
  text-align: left;
  line-height: 32px;
  text-align: justify;
}
p.text-footer, a.text-footer {
  font-size: 30px;
  color: #ffffff;
  font-family: "Texta";
  line-height: 36px;
}
ul.dropdown-menu.show {
  background: linear-gradient(to right, #1a2e5e, #639cc7);
}
@media (max-width: 768px) {
  .mobile-center {
    justify-content: center !important;
    text-align: center !important;
  }
}
@media (max-width: 768px) {
  .bg-body-tertiary a {
    font-size: 26px;
  }
  .headline-1 {
    font-size: 35px;
  }
  .headline-2 {
    font-size: 46px;
  }
  .headline-3 {
    font-size: 38px;
  }
  .tittle-1 {
    font-size: 32px;
  }
  .tittle-2 {
    font-size: 28px;
  }
  .tittle-3 {
    width: auto;
    height: auto;
    font-size: 22px;
  }
  .tittle-4 {
    font-size: 30px;
    color: #ffffff;
    font-weight: bold;
    font-family: "Texta";
  }
  .tittle-5 {
    font-size: 26px;
  }
  .tittle-6 {
    font-size: 38px;
  }
  p.text-1 {
    font-size: 18px;
    line-height: 20px;
  }
  p.text-footer, a.text-footer {
    font-size: 20px;
    line-height: 24px;
  }
}
.dropdown-item:hover, .dropdown-item:focus {
  background: linear-gradient(to right, #1a2e5e, #639cc7) !important;
color: #ffffff !important;
}
.dropdown-item:hover, .dropdown-item:focus a{
 border-bottom: solid 2px #ffffff;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
color: #ffffff;
}



/*----- Animación al cargar ----------*/
.animate-on-load {
  opacity: 0;
  animation: fadeInUp 1s forwards;
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll-custom {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll-custom.active {
  opacity: 1;
  transform: translateY(0);
}





.absolute-icon {
  position: absolute;
  top: -50px;
  left: -50px;
  border-radius: 50%;
  border: 4px solid #639cc7;
  background-color: #1a2e5e;
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 768px) {
  .absolute-icon {
    top: -30px;
    left: -30px;
    width: 60px;
    height: 60px;
  }
}

.mt-6 {
  margin-top: 4rem !important;
}

.bg-form-custom {
  background-image: linear-gradient(to bottom, #639cc7, #1a2e5e);
}

.form-outline .form-control~.form-notch div {
  border-color: #ffffff;
}
.form-outline .form-control~.form-label {
  color: #ffffff !important;
}
