/********** Template CSS **********/
:root {
    --primary: #0000ff !important;
    --dark: #091E3E;
}
@font-face {
            font-family: 'BasierReg';
            src: url('fonts/basiersquare-regular-webfont.woff2') format('woff2'); /* Ruta a tu fuente */
            font-weight: normal;
            font-style: normal;
}
@font-face {
            font-family: 'BasierBold';
            src: url('fonts/basiersquare-bold-webfont.woff2') format('woff2'); /* Ruta a tu fuente */
            font-weight: Bold;
            font-style: normal;
}
@font-face {
            font-family: 'BasierMono';
            src: url('fonts/basiersquaremono-regular-webfont.woff2') format('woff2'),
            url('fonts/basiersquaremono-regular-webfont.woff') format('woff');
            font-weight: normal;
            font-style: normal;
}
@font-face {
            font-family: 'BasierMonoBold';
            src: url('basiersquaremono-bold-webfont.woff2') format('woff2'); /* Ruta a tu fuente */
            font-weight: Bold;
            font-style: normal;
}


.py-5 {
    padding-top: 1.2rem !important;
    padding-bottom: 1.5rem !important;
  }

.bg-primary {
    background-color: #0000ff !important;
  }
  .btn-primary:hover {
    color: #0000ff;
    background-color: #ffffff;
    border-color: #0000ff;
    box-shadow: inset 0 0 0 0 var(--primary);
  }

  .btn-primary:active {
    box-shadow: inset 0 0 0 0 var(--primary);
  }
  .btn-primary:focus {
    color: #0000ff;
    background-color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 0 0 .25rem rgba(255, 255, 255, 1);
  }
  .text-primary {
    color: #0000ff !important;
  }

  .btn-primary {
    background-color: #0000ff;
    border-color: #ffffff;
    border-radius: 30px;
  }

  .bg-dark {
    background-color: #0000ff !important;
  }

input {
   -webkit-box-sizing: border-box;
   box-sizing: border-box;
   padding: 10px;
   width: 100%;
   margin-bottom: 10px;

}
form{max-width: 500px; margin: 0 auto;}

/*** Button ***/
.btn {
    font-family: 'BasierMono', monospace;
    font-weight: 400;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.sticker {
  position: fixed;
  top: 60px;
  right: 10px;
  padding: 20px 20px;
  z-index: 1000; /* Asegura que esté sobre otros elementos */
}

.scroll-tagline {
    position: absolute;
    top: 20px;       /* Coordenada Y dentro del contenedor (ajustable) */
    left: 0;
    transform: translateX(32px); /* Fija la distancia desde el borde izquierdo de la ventana */
    z-index: 2;
    filter: drop-shadow(0px 0px 4px rgba(0,0,0,0.3));
}

/*** NavBarV2 ***/
 .navbarV2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #0000ff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px 10px 20px;
    height: 48px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.logo {
    height: 40px;
}

.nav-links {
    display: flex;
    font-family: 'BasierMono', monospace;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    gap: 20px;
}


/* Responsive (max-width: 768px) */
@media (max-width: 768px) {
  .navbarV2 .nav-links {
    display: none; 
    position: absolute;
    top: 48px;
    right: 0;
    width: 100%;
    background-color: #0000ff;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px 60px 30px;
    z-index: 10;
  }

.navbarV2 .nav-links.show {
    display: flex;
  }

.navbarV2 .nav-links a {
    font-family: 'BasierMono', monospace;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.navbarV2 .menu-toggle {
    display: block;
    
  }
}

/* Ocultar hamburguesa por defecto */
.menu-toggle {
  display: none;
}


/* Estructura general */


/* Menú principal */
.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  text-decoration: none;
  padding: 8px;
}

/* BOTÓN hamburguesa oculto por defecto */
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 11;
}

.nav-links a {
    color: #ffffff;
}

.nav-links a:hover {
            text-decoration: underline;
        }

/*** Video ***/

.video-container {
    width: 100%;
    min-height: 800px;
    height: 800px; /* Fija la altura una vez alcanzada la mínima */
    background-color: #0000ff;
    overflow: hidden;
    position: relative;
}

.video-container video {
    position: relative;
    top: 50%;
    left: 50%;
    min-width: 100%;
    height: auto;
    min-height: 800px;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.general-container {
    max-width: 600px;
    min-width: 200px;
    justify-content: space-between;
  }

.2col-container {
    width: 400px;
    align-content: left;
  }

.1col-container {
    width: 200px;
    align-content: left;
    
  }

.banner {
    width: 100%; /* o un ancho específico si lo necesitas */
    min-width: 150px;
    height: 80px;
    background-color: #0000ff;
    border-radius: 40px;
    margin: 0 auto;
}

.main-img-container {
    width: 100%; /* o un ancho específico si lo necesitas */
    min-height: 200px;
    margin: 0 auto;
}

.main-img-container img {
    width: 100%;
    height: auto;
    display: block;
}

.cv-container {;
    border-radius: 100px;
    width: 200px;
    height: auto;
    overflow: hidden;
    justify-content: left;
    margin-bottom: 20px;
        
}

.seccion {
    font-family: 'BasierBold', sans-serif;
    font-style: normal;
    font-weight: 800;
    text-transform: uppercase;
    color: #666666;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 2px;
    padding-top: 20px;
}

.seccion-neg {
    font-family: 'BasierBold', sans-serif;
    font-style: bold;
    font-weight: 800;
    text-transform: uppercase;
    color: #000066;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 2px;
    padding-top: 20px;
}

.titl {
    font-family: 'BasierReg', sans-serif;
    font-style: normal;
    font-weight: 200;
    color: #0000ff;
    font-size: 50px;
    line-height: 45px;
    letter-spacing: -1px;
    padding-right: 80px;
    padding-bottom: 40px;
}

.titl2 {
    font-family: 'BasierReg', sans-serif;
    font-style: normal;
    font-weight: 600;
    color: #0000ff;
    font-size: 32px;
    line-height: 32px;
    letter-spacing: -1px;
    padding-right: 100px;
    padding-bottom: 20px;
}

.titl2-neg {
    font-family: 'BasierReg', sans-serif;
    font-style: normal;
    font-weight: 600;
    color: #ffffff;
    font-size: 32px;
    line-height: 32px;
    letter-spacing: -1px;
    padding-right: 100px;
    padding-bottom: 20px;
}

.titl3 {
    font-family: 'BasierBold', sans-serif;
    font-style: bold;
    font-weight: 800;
    color: #666666;
    font-size: 18px;
    line-height: 18px;
    padding-right: 40px;
    padding-bottom: 0px;
}

.titl3-neg {
    font-family: 'BasierBold', sans-serif;
    font-style: bold;
    font-weight: 800;
    color: #cdcdcd;
    font-size: 18px;
    line-height:186px;
    padding-right: 40px;
    padding-bottom: 0px;
}

.titl4 {
    font-family: 'BasierBold', sans-serif;
    font-style: bold;
    font-weight: 800;
    color: #333333;
    font-size: 14px;
    line-height: 14px;
    padding-right: 80px;
}

.cont {
    font-family: 'BasierReg', sans-serif;
    font-style: normal;
    font-weight: 300;
    color: #333333;
    font-size: 14px;
    line-height: 20px;
    padding-right: 100px;
}

.cont-neg {
    font-family: 'BasierReg', sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #fafafa;
    font-size: 14px;
    line-height: 20px;
    padding-right: 100px;
}

.banner-fecha {
    font-family: 'BasierReg', sans-serif;
    font-style: normal;
    font-weight: 200;
    text-align: right;
    padding-top: 10px;
    padding-right: 30px;
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 30px;
    letter-spacing: -1px;
}

.banner-data {
    font-family: 'BasierBold', sans-serif;
    font-style: bold;
    font-weight: 400;
    text-align: right;
    padding-right: 30px;
    color: #ffffff;
    font-size: 1rem;
    line-height: 0px;
}

.caption {
    font-family: 'BasierReg', sans-serif;
    font-style: normal;
    font-weight: 300;
    color: #333333;
    font-size: 12px;
    line-height: 10px;
}

.caption-neg {
    font-family: 'BasierReg', sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #fafafa;
    font-size: 12px;
    line-height: 14px;
}

/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    /*** 
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
    ***/
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
   /*** 
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
    ***/
}

.section-title.section-title-sm::after {
    /*** 
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
    ***/
}







/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 1280px) {
    .facts {
        position: relative;
        margin-top: -80px;
        z-index: 1;
    }
}

