/* FUENTES */
@font-face {
  font-family: "bauhaus";
  src: url("../fonts/bauhaus/bauhaus.ttf");
  font-display: swap;
}

@font-face {
  font-family: "poppins-bold";
  src: url("../fonts/poppins/Poppins-Bold.otf");
  font-display: swap;
}

@font-face {
  font-family: "poppins-regular";
  src: url("../fonts/poppins/Poppins-Regular.otf");
  font-display: swap;
}

:root {
  --blue: #1B2449;
  --blue-medium: #08185A;
  --blue-light: #1b6ec4;
  --red: #9E0101;
  --red-light: #e20008;
  --gray: #D9D9D9;
}

body {
  margin: 0;
  overflow-x: hidden;
}

.text-bahaus {
  font-family: "bauhaus";
}

/* HEADER */
.navbar {
  position: fixed;
  z-index: 100;
  width: 100vw;
  background: white;
  align-items: initial;
  /* max-height: 100px; */
}

.navbar-light .navbar-nav .nav-link {
  text-transform: uppercase;
  color: #2C2C2D;
  opacity: 1;
  font-weight: 700;
}

.navbar-light .navbar-nav .active>.nav-link,
.nav-link:hover {
  color: var(--red) !important;
}

.header-logo {
  height: 60px;
}

.footer-logo {
  height: 150px;
}

/* FOOTER */
footer {
  background: white;
  color: var(--blue-medium);
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid var(--red);
}

footer .footer-list {
  display: flex;
}

footer .footer-list>div>span {
  font-size: 22px;
  line-height: 22px;
}

footer .footer-list>div>ul a,
footer .footer-list>div>ul li {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--blue-medium);
}

footer .footer-list>div>ul li {
  margin-bottom: .7rem;
}

.container-footer {
  max-width: 846px;
  margin-left: auto;
  margin-right: auto;
}

/* BANNER */
.banner {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 500px;
  text-align: center;
  justify-content: center;
}

.banner>.row {
  margin-top: 0;
  margin-top: -60px;
}

.banner .title {
  font-size: 32px;
  line-height: 35px;
  margin-bottom: 32px;
  margin-top: 0;
  color: var(--blue);
}

.banner .subtitle {
  font-family: "poppins-regular";
  font-size: 18px;
  color: var(--red);
  font-weight: 600;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* backdrop-filter: blur(10px); */
  background: rgba(255, 255, 255, 0.3);

}

/* BLOQUE DE INFORMACIÓN */
.data-half-big {
  width: 360px;
  height: 478px;
  transform: translateY(-80px);
}

.data-half-small {
  width: 286.84px;
  height: 495.19px;
}

.data-full {
  width: 578px;
  max-width: 100%;
  transform: translateY(-80px);
}

.data-full-big {
  width: 765px;
  max-width: 100%;
}

.data-full-big>img,
.data-full>img {
  max-width: 100%;
}

.data-small {
  width: 212px;
  min-height: 316px;
  z-index: 1;
}

/* BLOQUE AZUL */
.blue-block {
  padding: 40px 0;
  color: white;
}

/* LÍDERES */
.leader-container {
  padding: 120px 1rem;
  padding-bottom: .5rem;
  min-height: 495px;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.leader-experience>span {
  font-family: "bauhaus";
  text-transform: uppercase;
  font-size: 36px;
  line-height: 26px;
}

.leader-experience>.leader-years {
  font-size: 70px;
  line-height: 60px;
  display: block;
}

.leader-name {
  font-size: 17px;
  line-height: 24px;
  margin-bottom: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.leader-university {
  font-size: 14px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}



/* TEXTOS */
.title {
  font-family: "bauhaus";
  font-size: 35px;
  line-height: 38px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.title-small {
  font-family: "poppins-regular";
  text-transform: uppercase;
  font-size: 16px;
  line-height: 20px;
}

.service-title {
  text-transform: none;
}

.subtitle {
  font-family: "poppins-bold";
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
  position: relative;
  margin-right: 1rem;
}

.subtitle.line::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 27.63px;
  height: 1px;
}

.subtitle.line.gray::before {
  background-color: #959595;
}

.subtitle.line.white::before {
  background-color: white;
}

.subtitle.line.center::before {
  left: 50%;
  top: -12px;
  transform: translateX(-50%);
}

.subtitle.line.left::before {
  left: 0;
  top: -12px;
}

.bar {
  content: "";
  transform: translateY(-50%);
  height: 11px;
  background: var(--red);
  flex-grow: 1;
  margin-top: -4px;
}

/* ADICIONES */
.button {
  font-family: "poppins-bold";
  padding: 15px 30px;
  background-color: var(--red);
  color: white;
  display: inline-block;
}

.button:hover {
  background-color: white;
  color: var(--red);
  text-decoration: none;
}

.btn-small {
  padding: 8px 30px;
}

.btn-alt {
  background-color: transparent;
}

.btn-alt.red {
  border: 2px solid var(--red);
  color: var(--red) !important;
  /* No hover */
}

.button:hover.btn-alt.red {
  background-color: var(--red);
  color: white !important;
}

.button:hover.white {
  color: var(--red) !important;
}

.btn-alt.red.text-black-50 {
  color: rgba(0, 0, 0, .5) !important;
  /* No hover */
}

.btn-alt.gray {
  border: 2px solid var(--gray);
  color: var(--gray) !important;
  /* No hover */
}

.btn-alt.white {
  border: 2px solid white;
  color: white !important;
  /* No hover */
}

.filter-blue::before,
.filter-red::before {
  content: "";
  mix-blend-mode: multiply;
  opacity: 0.90;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.filter-blue::before {
  background: var(--blue);
}

.filter-red::before {
  background: var(--red);
}

.icon1 {
  height: 55px;
  margin-bottom: 1rem;
}

.icon2 {
  height: 65px;
  margin-bottom: 1rem;
}

.icon-big {
  height: 139px;
  margin-bottom: 1.5rem;
}

.border.white {
  border-color: white;
}

.fs-12px {
  font-size: 12px;
}

.red-line {
  background-color: var(--red);
  position: absolute;
  z-index: 50;
  height: 19px;
}

.logo-big {
  max-height: 200px;
  max-width: 209px;
}

.benefit {
  height: 335px;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: top;
  position: relative;
  padding: 2rem
}

.services-list>li>div {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 19px 24px;
  border: 1px solid #C7CDE7;
}

.services-list>li:nth-of-type(1n+10) {
  display: none;
}

/* COLORES */
.text-blue {
  color: var(--blue-medium);
}

.text-blue-light {
  color: var(--blue-light);
}

.text-red {
  color: var(--red);
}

.text-red-light {
  color: var(--red-light);
}

.poppins-bold {
  font-family: "poppins-bold";
}

/* BACKGROUNDS */
.bg-lines {
  background-image: url('../images/lines.jpg');
  background-size: contain;
}

.bg-blue {
  background: var(--blue);
}

.bg-red {
  background: var(--red);
}

.whatsapp-fixed {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
}

.icon-big-alt {
  max-width: 80%;
}

@media (min-width: 576px) {}

@media (min-width: 768px) {
  .banner {
    height: 800px;
    text-align: left;
  }

  .banner .title {
    font-size: 72px;
    line-height: 65px;
  }

  /* BLOQUE AZUL */
  .blue-block {
    padding-top: 88px;
    padding-bottom: 128px;
  }

  .leader-container:first-child {
    
  }

  /* TEXTOS */
  .title {
    font-size: 45px;
    line-height: 40px;
  }

  .title.small {
    font-size: 37px;
    line-height: 40px;
  }

  .service-title {
    font-size: 50px;
    line-height: 50px;
  }

  .benefit {
    padding: 2rem;
  }

  .benefit .title {
    font-size: 37px;
    line-height: 40px;
  }

}

@media (min-width: 992px) {
  .navbar {
    padding: 0 101px;
    margin-top: 1rem;
    background: transparent;
    position: absolute;
  }

  .nav-item .nav-link {
    padding: 0 !important;
  }

  .nav-item.active .nav-link,
  .nav-link:hover,
  .button {
    border-bottom: 3px var(--red) solid;
  }

  .header-logo {
    height: 160px;
  }

  .footer-logo {
    height: 220px;
  }

  /* FOOTER */
  footer {
    padding-top: 3rem;
    padding-bottom: 1rem;
    text-align: left;
  }

  footer .footer-list {
    padding: 0 2rem;
  }

  .banner {
    padding-left: 100px;
    padding-right: 50px;
    box-shadow: inset 0px 200px 150px -90px rgba(255, 255, 255, 0.6);
  }

  .data-info {
    padding: 100px 1rem;
  }

  .leader-container {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .data-small {
    position: absolute !important;
    left: -50px;
    top: 50%;
    transform: translateY(-40%);
  }
}

@media (min-width: 1200px) {
  .banner {
    padding-left: 278px;
    padding-right: 180px;
  }

  .container {
    max-width: 1234px;
  }

  .header-logo {
    height: 220px;
  }
}

/* update */
.text-red {
  color: var(--red) !important;
}

.curriculum.custom-nav {
  margin-top: -5rem !important;
  position: relative;
  z-index: 5;
}

.curriculum-content {
  margin-top: 13rem;
  z-index: 10;
  position: relative;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  position: fixed;
  padding: 1rem 3rem;
  /* margin-top: 3.7rem; */
}

@media (min-width: 768px) {
  .header.scrolled {
    padding: 2rem 12rem;
    margin-top: 0rem;
  }
}

.cont-cont-f {
  position: relative;
  padding-bottom: 7rem;
}

.banner .subtitle {
  color: var(--red);
  font-weight: 900;
}

.benefit {
  height: 100%;
}

@media (min-width: 768px) {
  .banner .title {
    font-size: 60px;
    line-height: 58px;
  }
}

@media (min-width: 992px) {
  .benefit {
    padding: 3.5rem;
  }
}

@media (min-width: 1100px) {
  .benefit {
    padding: 3rem;
  }
}

.fs-16px {
  font-size: 16px;
}

.fs-18px {
  font-size: 18px;
}

.navbar-light .navbar-nav .nav-link {
  padding: .4rem !important;
}

.navbar-light .navbar-nav .nav-link.button-contac {
  padding: 0.4rem 1rem !important;
  color: #fff !important;
}

.cont-white p {
  color: #fff;
}

.owl-carousel-municipios .owl-nav,
.owl-carousel-clients .owl-nav {
  display: flex;
  justify-content: space-between;
  top: -5rem;
  position: relative;
  font-size: 3rem !important;
}

.owl-carousel-clients .owl-carousel .owl-nav button.owl-next,
.owl-carousel-municipios .owl-carousel .owl-nav button.owl-next,
.owl-carousel-clients .owl-carousel .owl-nav button.owl-prev,
.owl-carousel-municipios .owl-carousel .owl-nav button.owl-prev {
  font-size: 3rem !important;
}

@media (max-width: 1000px) {

  .owl-carousel-municipios .owl-nav,
  .owl-carousel-clients .owl-nav {
    top: -7rem;
  }

  .logo-big {
    width: 10rem !important;
    height: auto !important;
  }
}

.owl-carousel-municipios .owl-nav {
  top: -10rem;
}

.button-contac {
  border-radius: .5rem !important;
}

.nav-link.button.button-contac:hover {
  color: var(--red) !important;
  ;
}



.btn-cv {
  display: inline-block;
  background-color: #8B0000;
  color: #fff;
  padding: 12px 30px;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-cv:hover {
  background-color: var(--red) !important;
  ;
}

.text-center .btn-cv {
  margin: 1.5rem auto;
}

.gupo-as-txt {
  color: var(--red) !important;
  font-weight: 300 !important;
  font-family: "bauhaus" !important;
}

.custom-imgs img {
  height: 5rem !important;
}

/* .obc-filter {
  position: relative;
}
.obc-filter:before{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  mix-blend-mode: lighten;
  background: #273668;
  background: linear-gradient(12deg,rgba(39, 54, 104, 0.83) 7%, rgba(255, 255, 255, 1) 100%);
  top: 0;
  left: 0;
} */
.button {
  border-radius: 0.5rem;
}

.benefit p {
  font-size: 1.2rem;
}

.no-wrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}


.logo-clientes-us {
  max-width: 10rem;
  height: auto;
}

.btn.btn-alt.white:hover {
  background-color: white;
  color: var(--red) !important;
  text-decoration: none;
}


@media (max-width: 767px) {
  .btn-mobile-right {
    display: block;
    text-align: right;
  }
  .curriculum-content {
    margin-top: 3rem;
  }
  .banner>.row {
    margin-top: 1rem;
  }
}

@media (min-width: 992px) {
  .navbar-light .navbar-nav .nav-link {
    text-align: center;
  }
  .m-negativo{
    margin-top: -4rem !important;
  }
  .scrolled .m-negativo{
    margin-top: .1rem !important;
  }
  .logo-big {
    width: 15rem !important;
  }

  
}

@media (min-width: 992px) and (max-width: 1450px) {
  .navbar-light .navbar-nav .nav-link {
    font-size: .7rem;
  }

  .header.scrolled {
    padding: 2rem 4rem;
  }

  footer .footer-list>div>ul a,
  footer .footer-list>div>ul li,
  footer li {
    font-size: 11px;

  }

  .benefit p {
    font-size: 0.8rem;
  }

  

}
.just-content-center{
  justify-content: center;
}
.m-t-per{
  margin-top: 5rem;
}
.center-logo {
  justify-content: center;
  display: flex;
  align-items: center;
}
