/* Googlefont Poppins CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  min-height: 100vh;
  background-color: #eeeeee !important;
  font-family: 'Poppins', sans-serif !important;
}

.top-bar{
    padding-top: 6px;
    padding-bottom: 6px;
    border-bottom-width: 0px;
    font-size: 13px;
    line-height: 26px;
    /*background-color: #006294;*/
    /*background: linear-gradient(-45deg, #003366 0%, #001f33 100%);*/
    background: linear-gradient(-45deg, #4da6ff 0%, #267fbf 100%);
    border-bottom-color: rgba(0, 0, 0, 0);
    color: #fff;
}

.top-bar ul{
  padding: 0px;
  margin: 0px;
}

.top-bar li{
  padding: 0px;
  margin: 0px 5px;
  list-style: none;
}



nav{
  /*position: fixed;*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 90px;
  background: white;
  color: black;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
}
nav .navbar{
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0 50px;
}
.navbar .logo a{
  font-size: 23px;
  color: #006294;
  text-decoration: none;
  font-weight: 700;
}

.logo-title {
  display: flex;
  flex-direction: column;
  font-size: 22px;
  font-weight: 800;
  color: #006294;
  position: relative;
  padding-left: 7px;
  border-left: solid 7px #f1c10e;
}

.logo-subtitle{
    display: inline-block;
    font-size: 13px;
    color: #555;
    font-weight: normal;
    vertical-align: sub; /* Simula el efecto de subíndice */
    margin-left: 0px;
}

  
nav .navbar .nav-links{
  line-height: 90px;
  height: 100%;
}
nav .navbar .links{
  display: flex;
}
nav .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li a{
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: black;
  font-size: 15px;
  font-weight: 500;
}

nav .navbar .links li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0px;  /* Ajusta la distancia de la línea */
    width: 0%;
    height: 7px;
    background-color: #f1c10e;
    transition: width 0.3s ease, left 0.3s ease;
}

.links a:hover::after {
    width: 100% !important;
    left: 0 !important;
}


.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  color: black;
  transform: rotate(180deg);
}
nav .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: black;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu{
  display: block;
}
.navbar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar .links li .sub-menu a{
  color: black;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu{
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}

.social-network span{
      position: absolute;
      bottom: -5%; /* encima del ícono */
      left: 120%;
      transform: translateX(-50%);
      background-color: #000;
      color: #fff;
      padding: 5px 10px;
      border-radius: 0px;
      white-space: nowrap;
      font-size: 12px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

  .social-network:hover span{
    opacity: 1;
    transform: translateX(-50%) translateY(-5px); /* animación tipo "bounce" */
  }

  .social-network i{
    font-size: 1.2em;
  }

  .social-network:hover i{
    color: #006294;
  }

.navbar .search-box{
  position: relative;
   height: 40px;
  width: 40px;
}
.navbar .search-box i{
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box{
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #3E8DA8;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box{
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #3E8DA8;
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #3E8DA8;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input{
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .bx-menu{
  display: none;
}
@media (max-width:920px) {
  nav .navbar{
    max-width: 100%;
    padding: 0 25px;
  }
  nav .navbar .logo a{
    font-size: 27px;
  }
  nav .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
    font-size: 15px;
  }
}
@media (max-width:800px){
  nav{
    /* position: relative; */
  }
  .navbar .bx-menu{
    display: block;
  }
  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background:  white;
    color: black;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
    .sidebar-logo  i,
    .navbar .bx-menu{
      font-size: 25px;
      cursor: pointer;
      color: black;
    }
  nav .navbar .links{
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow{
    line-height: 40px;
  }
nav .navbar .links li{
    display: block;
  }
nav .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  box-shadow: none;
  display: none;
}
nav .navbar .links li .sub-menu li{
  border-bottom: none;
}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
  position: relative;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
  }
  .navbar .links li .sub-menu .more span{
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }
  .links li .sub-menu .more:hover .more-sub-menu{
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu{
    display: none;
  }
.navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu{
      display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow{
        transform: rotate(180deg);
}
    .navbar .nav-links.show2 .links .more-arrow{
      transform: rotate(90deg);
    }
}
@media (max-width:370px){
  nav .navbar .nav-links{
  max-width: 100%;
} 
}

.isotipo{
  width: 150px;
  height: 200px;
  position: absolute;
  z-index: 2;
  left: 11em;
  top: 10em;
}

/* Celulares (pantallas pequeñas) */
@media (max-width: 480px) {
  .isotipo{
    width: 50px;
    height: 70px;
    position: absolute;
/*    z-index: 9999999;*/
    left: 4em;
    top: 6.1em;
  }
}

/* Tablets (pantallas medianas) */
@media (min-width: 481px) and (max-width: 768px) {
  .isotipo{
    width: 100px;
    height: 130px;
    position: absolute;
   /* z-index: 9999999;*/
    left: 2em;
    top: 15em;
  }
}

.cont-welcome{
  padding: 3em;
}

/* Celulares (pantallas pequeñas) */
@media (max-width: 480px) {
  .cont-welcome{
    padding: 0.5em;
  }
}

/* Tablets (pantallas medianas) */
@media (min-width: 481px) and (max-width: 768px) {
  .cont-welcome{
    padding: 0.5em;
  }
}

#container-slider
{
    position: relative;
    display: block;
    width: 100%;
}
#slider {
    position: relative;
    display: block;
    width: 100%;
    height: 100vh;
    min-height: 500px;
}
#slider li {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    height: 100%;
    display: block;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
    z-index: -1;
    opacity: 0;
}
#container-slider .arrowPrev, #container-slider .arrowNext{
    font-size: 30pt;
    color: rgba(204, 204, 204, 0.65);
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50px;
    z-index: 2; 
}
#container-slider .arrowNext {
    left: initial;
    right: 50px !important;
}
.content_slider{
    padding: 15px 30px;
    color: #FFF;
    width: 100%;
    height: 100%;
}
.content_slider div{
    text-align: center;
}
.content_slider h2{
    /*font-family: 'arial';*/
    font-size: 35px;
    letter-spacing: 1px;
    /*text-transform: uppercase;*/
    margin-bottom: 20px;
    font-weight: bold;
}

.content_slider h3{
    /*font-family: 'arial';*/
    font-size: 30px;
    letter-spacing: 1px;
    /*text-transform: uppercase;*/
    margin-bottom: 20px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 0.5em;
    border-radius: 10px;
}


/* Smartphones (hasta 767px de ancho) */
@media only screen and (max-width: 767px) {
  .content_slider h2{
    font-size: 22px;
  }
  .content_slider h3{
    font-size: 16px;
  }
}

/* Tablets (de 768px a 1024px de ancho) */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .content_slider h2{
    font-size: 28px;
  }
  .content_slider h3{
    font-size: 20px;
  }
}

.content_slider p {
    font-size: 15pt;
    font-family: 'arial';
    color: #FFF;
    margin-bottom: 20px;
}
#slider li .content_slider{
    background: rgba(0, 0, 0, 0.30);
    padding: 10px 125px;
}
.content_slider{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btnSlider{
    color: #FFF;
    font-size: 15pt;
    font-family: 'arial';
    letter-spacing: 1px;
    padding: 10px 50px;
    border: 1px solid #CCC;
    background: rgba(13, 13, 13, 0.55);
    border-radius: 31px;
    text-decoration: none;
    transition: .5s all;
}
.btnSlider:hover{
    background: #111;
    border: 1px solid #111;
}
.listslider {
    position: absolute;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    left: 50%;
    bottom: 5%;
    list-style: none;
    z-index: 2;
    transform: translateX(-50%);
}
.listslider li {
    border-radius: 50%;
    width: 10px;
    height: 10px;
    cursor: pointer;
    margin: 0 5px;
}
.listslider li a {
    background: #CCC;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: block;
}
.item-select-slid {
    background: #FFF  !important;
}

@media screen and (max-width: 460px){
  .content_slider h2 {
      font-size: 15pt !important;
  }
  .content_slider p {
      font-size: 12pt !important;
  }
  #container-slider .arrowPrev, #container-slider .arrowNext{
    font-size: 20pt;
  }
  #container-slider .arrowPrev{
    left: 15px;
  }
  #container-slider .arrowNext{
    right: 15px !important;
  }
  #slider{
    height: 400px;
    min-height: 400px;
  }
  #slider li .content_slider{
    padding: 10px 35px;
  }
  .btnSlider{
    padding: 10px 30px;
      font-size: 10pt;
  }

}

.section-web{
  padding: 2em;
}

.titulo-seccion{
  font-weight: bold;
  display: inline-block; /* Para que el subrayado solo ocupe el ancho del contenido */
}

.titulo-intro{
  font-weight: bold;
  display: inline-block; /* Para que el subrayado solo ocupe el ancho del contenido */
    position: relative;
    padding-bottom: 20px; /* Espacio entre el texto y la línea */
  color: #595959;
}


.titulo-intro::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2.5em; /* Ajusta el ancho del subrayado */
    height: 5px; /* Grosor de la línea */
    background-color:#006294; /* Color del subrayado */
}

/* Smartphones (hasta 767px de ancho) */
@media only screen and (max-width: 767px) {
  .titulo-intro{
    font-size: 22px;
  }

}

/* Tablets (de 768px a 1024px de ancho) */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .titulo-intro{
    font-size: 22px;
  }
}



.titulo-item {
  font-weight: bold;
  display: inline-block; /* Para que el subrayado solo ocupe el ancho del contenido */
  position: relative;
  color: #595959;
  text-align: center;
}




.parrafo-intro {
    /*text-align: justify;*/
    line-height:2; /* Ajusta este valor según el espaciado deseado */
    color: #616161 !important;
    font-size: 18px !important;
}

/* Smartphones (hasta 767px de ancho) */
@media only screen and (max-width: 767px) {
  .parrafo-intro{
    font-size: 12px;
    line-height:1.5;
  }

}

/* Tablets (de 768px a 1024px de ancho) */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .parrafo-intro{
    font-size: 12px;
    line-height:1.5;
  }
}



.seccion-info {
    position: relative;
    padding: 20px; /* Ajusta el espacio interno según necesites */
}

.seccion-info::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;  /* Ajusta el ancho del rectángulo */
    height: 20px; /* Ajusta la altura del rectángulo */
    border-top: 20px solid #f1c10e;  /* Grosor y color del borde superior */
    border-right: 20px solid #f1c10e; /* Grosor y color del borde derecho */
}

.imagen-servicio{
  width: 150px;
  height: 150px;
}


.card-message{
    border: 1px solid rgba(0, 0, 0, .125);
    border-left: 10px solid #267fbf;
    border-radius: .25rem;
    padding: 0px !important;
    box-shadow: rgba(15, 10, 30, 0.15) 0px 12px 30px 0px;
}

.card-shadow{
  border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
    padding: 0px !important;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.card-adm {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f2f2f2;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;

}



.card-adm img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.card-adm:hover img {
    /*transform: scale(1.1);*/
}

.overlay-adm {
    /*background: linear-gradient(-45deg, #003366 0%, #001f33 100%);*/
        background: linear-gradient(-45deg, #4da6ff 0%, #267fbf 100%);
    color: white;
    text-align: center;
    font-weight: bold;
    font-size: 1.8em;
    padding: 10px 0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.extra-info-adm {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 10px;
    transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.3s ease;
    border-bottom: 0 solid #005a9c; /* Oculto por defecto */
}

.card-adm:hover {
    background-color: white;
    color: black;
}

.card-adm:hover .overlay-adm {
    background-color: white;
    color: black;
}

.card-adm:hover .extra-info-adm {
    max-height: 200px;
    opacity: 1;
    padding: 10px;
    border-bottom: 4px solid #005a9c; /* Borde visible al hacer hover */
}

.whatsapp-fixed {
    position: fixed;
    bottom: 40px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
  }

  .whatsapp-fixed:hover {
    text-decoration: none;
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    color: white;
  }

.bg-navy {
  background-color: #022e5e !important;
}

.divider-blue {
  width: 60px;
  border-top: 7px solid #006294; /* Azul Bootstrap */
  margin: 0 auto 20px !important;
}

.divider-thin {
  border-top: 1px solid #ccc;
  margin: 4px 0;
}

.item-level{
  border-bottom: solid 1px #EEEE;
  margin-bottom: 5px !important;
}

.card-service{
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

/*.card-service::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    border-bottom: 3px solid #f1c10e;
    border-right: 3px solid #f1c10e;
}
*/

.bgblue{
  /*background: linear-gradient(-45deg, #003366 0%, #001f33 100%);*/
  background: linear-gradient(-45deg, #4da6ff 0%, #267fbf 100%);
}

.title-bgblue{
  font-weight: bold;
  display: inline-block; /* Para que el subrayado solo ocupe el ancho del contenido */
  position: relative;
  color: white;
  text-align: center;
  /*background: linear-gradient(-45deg, #003366 0%, #001f33 100%);*/
  background: linear-gradient(-45deg, #4da6ff 0%, #267fbf 100%);
  padding: 10px;
}

/* From Uiverse.io by gharsh11032000 */ 
.body-service {
  position: relative;
  width: 100%;
  min-height: 230px;
  /*background: linear-gradient(-45deg, #003366 0%, #001f33 100%);*/
  border-radius: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /*justify-content: center;*/
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  padding: 10px 10px;
  margin-bottom: 20px;
}

.img-service{
  width: 100px; 
  height: 100px;
  margin-top: 20px; 
  margin-bottom: 20px;
}

.card_service h4{
  font-size: 1.8em;
  color: white;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 900;
}

.counter-item .linea {
  width: 50px;
  height: 2px;
  background-color: #f1c10e;
  margin: 0 auto 10px auto;
}

.bg-blue-gradient{
  background: linear-gradient(-45deg, #003366 0%, #001f33 100%);
}

footer h5 {
  font-size: 1.1rem;
}

footer p {
  font-size: 0.9rem;
}


.carousel{
    /*width: 100vw;*/
    /*width: 100%;*/
    height: 100vh;
    /*margin-top: -50px;*/
    overflow: hidden;
    position: relative;
}

/* Smartphones (hasta 767px de ancho) */
@media only screen and (max-width: 767px) {
  .carousel{
    width: 100%;
    height: 75vh;
  }

}

/* Tablets (de 768px a 1024px de ancho) */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .carousel{
    width: 100%;
    height: 75vh;
  }
}


.carousel .list .item{
    width: 180px;
    height: 250px;
    position: absolute;
    top: 80%;
    transform: translateY(-70%);
    left: 70%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background-position: 50% 50%;
    background-size: cover;
    z-index: 100;
    transition: 1s;
}

.carousel .list .item:nth-child(1),
.carousel .list .item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.carousel .list .item:nth-child(3){
    left: 67%;
}

.carousel .list .item:nth-child(4){
    left: calc(67% + 200px);
}

.carousel .list .item:nth-child(5){
    left: calc(67% + 400px);
}

.carousel .list .item:nth-child(6){
    left: calc(67% + 600px);
}

.carousel .list .item:nth-child(n+7){
    left: calc(67% + 800px);
    opacity: 0;
}





.list .item .content{
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    width: 400px;
    text-align: left;
    color: #fff;
    display: none;
}

.list .item:nth-child(2) .content{
    display: block;
}

.content .title{
    font-size: 100px;
    text-transform: uppercase;
    color: #14ff72cb;
    font-weight: bold;
    line-height: 1;

    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content .name{
    font-size: 100px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
    text-shadow: 3px 4px 4px rgba(255, 255, 255, 0.8);

    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}

.content .des{
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    margin-left: 5px;

    opacity: 0;
    animation: animate 1s ease-in-out 0.9s 1 forwards;
}

.content .btn{
    margin-left: 5px;

    opacity: 0;
    animation: animate 1s ease-in-out 1.2s 1 forwards;
}

.content .btn button{
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border: 2px solid #fff;
}

.content .btn button:nth-child(1){
    margin-right: 15px;
}

.content .btn button:nth-child(2){
    background: transparent;
    color: #14ff72cb;
    border: 2px solid #fff;
    transition: 0.3s;
}

.content .btn button:nth-child(2):hover{
    background-color: #14ff72cb;
    color: #fff;
    border-color: #14ff72cb;
}


@keyframes animate {
    
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

/* Carousel */



/* next prev arrows */

.arrows{
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.arrows button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #003366;
    color: #fff;
    border: solid 5px #f1c10e;
    font-size: 16px;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
    cursor: pointer;
box-shadow: 
  rgba(0, 0, 0, 0.5) 0px 80px 90px,
  rgba(0, 0, 0, 0.3) 0px -30px 50px,
  rgba(0, 0, 0, 0.3) 0px 12px 16px,
  rgba(0, 0, 0, 0.4) 0px 30px 35px,
  rgba(0, 0, 0, 0.25) 0px -8px 15px;
}

.arrows button:hover{
    background: #fff;
    color: #000;
}

/* Smartphones (hasta 767px de ancho) */
@media only screen and (max-width: 767px) {
  .arrows button{
    width: 30px;
    height: 30px;
  }

}

/* Tablets (de 768px a 1024px de ancho) */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .arrows button{
    width: 30px;
    height: 30px;
  }
}


/* time running */
.carousel .timeRunning{
    position: relative;
    z-index: 1000;
    width: 0%;
    height: 4px;
    background-color: #f1c10e;
    left: 0;
    top: 0;
    animation: runningTime 7s linear 1 forwards;
}

@keyframes runningTime {
    
    from{width: 0%;}
    to{width: 100%;}

}


/* Responsive Design */

@media screen and (max-width: 999px){
    
    header{
        padding-left: 50px;
    }

    .list .item .content{
        left: 50px;
    }

    .content .title, .content .name{
        font-size: 70px;
    }

    .content .des{
        font-size: 16px;
    }

}

@media screen and (max-width: 690px){
    header nav a{
        font-size: 14px;
        margin-right: 0;
    }

    .list .item .content{
        top: 40%;
    }

    .content .title, .content .name{
        font-size: 45px;
    }

    .content .btn button{
        padding: 10px 15px;
        font-size: 14px;
    }
}


.dw-documents{
  list-style: none;
  margin: 0;
  padding: 0;
}

.dw-documents li{
  margin-top: 20px;
  margin-bottom: 20px;
}

.dw-documents li i{
  color: #f1c10e;
}

.dw-documents li a{
  color: #616161;
  text-decoration: none;
  margin-left: 10px;
}

.dw-documents li a:hover{
  color: black;
}