@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*
{
    margin: 0;
    padding: 0; 
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(1, 111, 255, 0.897);
    box-shadow: 0 4px 25px -22px black;
    z-index: 2;
}

.header-content{
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}


.logo{
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}



.logo a img{
    width: 90px;
}
.menu {
    height: 80px;
}

.menu nav{
    height: 100%;
}

.menu nav ul{
    height: 100%;
    display: flex;
    list-style: none;
}

.menu nav ul li{
    height: 100%;
    margin: 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.menu-selected:before{
    content: '';
    width: 100%;
    height: 3px;
    background: #0b1864;
    position: absolute;
    top: 0;
    left: 0;
}


.menu nav ul li a{
    color: #fff;
    font-size: 18px;
    transition: color 300ms;
    text-decoration: none;
}

.menu nav ul li a:hover{
    color: #0b1864;
   
}

.text-menu-selected{
    font-weight: 600 !important;
    color: #0b1864 !important;
    
}
.menu nav ul li a i{
    display: none;
}
 
  .text-menu-selected{
    color: #0b1864;
    
  }

#icon-menu{
    width: 50px;
    height: 50px;
    position: absolute;
    right: 20px;
    top: 16px;
    padding: 10px;
    font-size: 20px;
    background: #eeeeeefa;
    border-radius: 100%;
    color: #787878;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#icon-menu:hover{
    opacity: 0.8;
}

/* Responsive Design - adaptable a dispositivos moviles*/





@media screen and (max-width: 800px){

    body{
        overflow-x: hidden;
    }

    .container-all{
        transition: all 300ms cubic-bezier(1,0,0,1);
    }

    .move-container-all{
        transform: translateX(300px);
    }

    .menu{
        width: 0px;
        height: 100vh;
        position: fixed;
        top: 80px;
        left: 0;
        background: #fff;
        overflow: hidden;
        transform: translateX(-350px);
        box-shadow: 10px 0 20px -25px black;
        transition: all 300ms cubic-bezier(1,0,0,1);
    }

    .show-lateral {
        width: 300px;
        transform: translateX(0px);
    }

    .menu nav ul {
        flex-direction: column;
    }

    .menu nav ul li{
        max-width: 200px;
        height: 50px;
        justify-content: flex-start;
    }

    .menu-selected:before{
        width: 0;
    }

    .menu nav ul li a{
        margin-top: 40px;
        color: #858585;
    }

    .menu nav ul li a i{
        width: 20px;
        display: inline-block;
        margin-right: 10px;
        color: #46a2fd;
    }

    #icon-menu{
        display: flex;
    }

    .container-aside{
        flex-wrap: wrap;
    }

}

/*Portada*/


.blog-container-cover{
    width: 100%;
    height: 400px;
    position: relative;
    margin-top: 80px;
    background-image: url(../Imagenes/PTAR.jpeg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.blog-container-cover:before{
    content: '';
    width: 100%;
    height: 100%;
    /*background: rgba(22, 22, 22, 0.76);*/
    position: absolute;
    top: 0;
    left: 0;
}

.container-info-cover{
    max-width: 800px;
    height: 500px;
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.container-info-cover h1{
    font-size: 60px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.container-info-cover p{
    color: #fff;
    font-size: 20px;
    font-weight: 300;
}


  /* -------------------------- TEXTO DEL BLOG ---------------*/

  .texto-blog{
    
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2em;

  }
  .container-descripcion{
    display: flex;
    flex-wrap: wrap;
    width: 70%;
    
    justify-content: space-between;
  }
  .container-texto{
    width: 50%;
  
  }

  .container-texto h1{
    font-size: 2em;
    text-align: left;
    padding-bottom: 0.5em;
  }
  .container-texto hr{
    height: 2px;
    background-color: rgb(189, 189, 189);
    width: 100%;
  }
  .container-texto p{
    margin-top: 2em;
    padding-bottom: 3em;
  }

 
.metadatos{
  width: 30%;
  border: 1px doted #DFDFDF;
  padding: 2em;
}
.metadatos h2{
  padding-bottom: 1em;
}
.metadatos hr{
  height: 2px;
  background-color: rgb(189, 189, 189);
  width: 100%;
}

.metadatos ul{
  
  list-style: none;
  
}
.lista-des{
  font-size: 1em;
  padding: 0.8em 0; 
  border-bottom: 1px dotted #DFDFDF
}
.container-buttons-blog{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  
}

.contacto-blog{
  display: flex;
  flex-wrap: wrap;
  width: 70%;
  padding-top: 3em;
  padding-bottom: 3em;
}
.botones-container{
 width: 50%;
 text-align: center;
 align-items: center;
 display: flex;
 flex-direction: row;
 justify-content: center;

}
.boton-proyectos{
  width: 50%;
  display: flex;

 }
 .boton-proyectos a{
  text-align: center;
  margin: 0 auto;
 }
.boton-contacto{
  width: 50%;
  display: flex;
}
.boton-contacto a{
  text-align: center;
  margin: 0 auto;
}
.cta{
  
    background-color: #0086d3;
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    transition-duration: 0.3s;
    transition-property: transform;
}
.cta:hover, .cta:focus, .cta:active{
    background-color: #015f96;
    font-weight: 600;
    transform: scale(1.05);
    
}
.cta-whatsapp{

  background-color: #25D366 !important;
}

.logo-whatsapp{
  font-size: 1.5em !important;
}

/* ----------------------------- RESPONSIVE TEXTO BLOG ---------*/

@media screen and (max-width: 1200px){
  
  .metadatos{
    width: 45%;
    
  }
}

@media screen and (max-width: 800px){

  .container-texto{
    width: 100%;
  
  }
  .container-descripcion{
    width: 80%;
    
  }

  .container-texto h1{
    font-size: 1.5em;
    text-align: left;
    padding-bottom: 0.5em;
  }
  .container-texto hr{
    height: 2px;
    background-color: rgb(189, 189, 189);
    width: 100%;
  }
  .container-texto p{
    margin-top: 2em;
    padding-bottom: 3em;
  }
.metadatos{
  width: 100%;
  background-color: rgb(240, 240, 240);
  
}
.container-buttons-blog{
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  
}
.contacto-blog{
  width: 100%;
  padding-top: 3em ;
  
}
.botones-container{
  width: 100%;
  justify-content: space-between;
  padding-top: 3em;
  flex-direction: column;
  
 }
 .boton-proyectos{
  width: 100%;
  margin-bottom: 1.5em;
 }
 .boton-contacto{
  width: 100%;
  
}
 
}
  

  /* -------------------- SLIDER ---------------*/

  #container-slider
  {
      position: relative;
      display: block;
      width: 100%;
      margin-top: 80px;
  }
  
  #slider {
      position: relative;
      display: block;
      width: 100%;
      height: 80vh;
      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;
  }
  
  .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: 800px){
    #slider {

      height: 50vh;
      min-height: 500px;
  }
    #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: 500px;
    }
    .btnSlider{
      padding: 10px 30px;
        font-size: 10pt;
    }
  
  }



  /* ------------------------ FOOTER ---------------------*/

.pie-pagina{
  width: 100%;
  background-color: #0086d3;
  margin-top: 3em;
}
.pie-pagina .grupo-1{
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap:50px;
  padding: 45px 0px;
}

.pie-pagina .grupo-1 .box figure{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pie-pagina .grupo-1 .box figure img{
  width: 120px;
}
.pie-pagina .grupo-1 .box h2{
  color: #fff;
  margin-bottom: 25px;
  font-size: 20px;
  text-align: center;
}
.box-nav-footer{
  width: 100%;
  display: flex;
  width: 100%;
  justify-content: center;
}
.nav-footer{
  display: flex;
  width: 80%;
  height: 100%;
  align-items: center;
  justify-content: center;
  
}
.footer-ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2em;
  
}

.footer-li a{
  text-decoration: none;
  color: #fff;
  
  
}

.pie-pagina .grupo-1 .red-social{
  display: flex;
  justify-content: center;
  align-items: center;
}
.pie-pagina .grupo-1 .red-social a{
  display: inline-block;
  text-decoration: none;
  width: 45px;
  height: 45px;
  line-height: 45px;
  color: #fff;
  margin-right: 10px;
  background-color: #015f96;
  border-radius: 25px;
  text-align: center;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: transform;
}
.pie-pagina .grupo-1 .red-social a:hover{
  color: #0b1864;
  transform: scale(1.1);
}
.pie-pagina .grupo-2{
  background-color: #0a1a2a;
  padding: 15px 10px;
  text-align: center;
  color: #fff;
}
.pie-pagina .grupo-2 small{
  font-size: 15px;
}
@media screen and (max-width:800px){
  .pie-pagina .grupo-1{
      width: 90%;
      grid-template-columns: repeat(1, 1fr);
      grid-gap:30px;
      padding: 35px 0px;
  }
}