@import url('https://fonts.googleapis.com/css2?family=Sansita:wght@400;700;800&display=swap');
*{
    font-family: 'Sansita', sans-serif;
    text-transform: none;
    text-decoration: none;
    outline: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body{
    width: 100%;
    overflow-x: hidden;
}
:root{
    --boton-padding: 20px 40px;
}

body{
    font-family: 'Raleway', sans-serif;
}

/* Estilo icon wsp */

a.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-size: 30px;
    color: #fff;
    background-color: #25d366;
    padding: 10px;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
  }
  
  a.whatsapp:hover {
    background-color: #128c7e;
  }

/* img fondo inicio */
.wrappe{
    width: 1170px;
    margin: 0 auto;
}

header{
    overflow: hidden;
    height: 100vh;
    position: relative;
}

.vid-bg{
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -999;
}
/* barra de navegacion */


.nav{

    position: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    transition: all 0.5s ease;
    z-index: 101;
}
@media(max-width:700px){
    .nav{
        justify-content: space-between;
    }
    .logo img{
        margin-left: 100px;
    }
}
.nav.active{
    background: #fff;
    padding: 15px;
    box-shadow: 0 .2rem 3.5rem rgb(0, 0, 0, .4);
    z-index: 101;
}
/* se activa con scroll */
.nav.active .logo{
    color: rgb(0, 4, 250);
    font-weight: 800;
}
.nav.active a,
.nav.active .menu-btn{
    color: rgb(0, 0, 0);
}

.nav.active a:hover{
    background: rgb(0, 4, 250);
    color: #fff;
}
.logo img{
    width: 150px;
    height: 75px;
}
.logo{

    font-size: 25px;
    color: #fff;
    font-weight: 600;
}
.menu{
    display: flex;
}
.menu li{
    list-style: none;
    margin: 20px
}
.menu li a{
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.5s ease;
}
.menu li a:hover{
    padding: 5px 10px;
    background: #fff;
    color: #000;
    border-radius: 15px;
}
.scrol{
    height: 100px;
}

.menu-btn{
    color: white;
    font-size: 20px;
    display: none;
    cursor: pointer;
}

@media screen and (max-width:1035px){

    .nav{
        justify-content: space-between;
    }

    .menu-btn{
        display: block;
    }
    .menu{
        position: fixed;
        top: 0;
        left: 0;
        width: 155px;
        height: 100vh;
        background: red;
        display: flex;
        flex-direction: column;
        align-items:center;
        justify-content: space-between;
        transition: all 0.5s ease;
        transform: translateX(-100%);
        z-index: 9999;
    }
    .menu li{
        margin: 15px 0;
    }    
    
    .menu.active{
        transform: translateX(0);
    }

    .nav.active a, .nav.active {
        color: rgb(255, 255, 255);
    }
}
/* responsive logo nav */

@media only screen and (max-width: 1035px){
    .logo img {
      margin-left: 435px;
  }
    }

    @media only screen and (max-width: 930px){
        .logo img {
          margin-left: 400px;
      }
        }
    
        @media only screen and (max-width: 860px){
            .logo img {
              margin-left: 350px;
          }
            }
        

/* contenido del header */
.header-cont{
    max-width: 600px;
    height: 850px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-cont h1{
    font-size: 60px;
    color: rgb(255, 255, 255);
    text-transform: none;
    text-shadow: 3px 3px 7px rgb(0, 0, 0);
    
}

.header-cont h2{
    margin-top: 15px;
    font-size: 60px;
    color: rgb(255, 255, 255);
    text-transform: none;
    text-shadow: 3px 3px 7px rgb(0, 0, 0);    
}

.header-cont h1 span{
    color: red;
    margin-top: 30px;
}

.titulo span{ 
    font-size: 77px; text-shadow: 3px 3px 7px rgb(0, 0, 0);
    margin-top: 55px;
}

.header-cont p{
    margin-top: 30px;
    font-size: 28px;
    color: rgb(255, 217, 0);
    font-weight: bold;
    text-shadow: 3px 3px 7px rgb(0, 0, 0);
    text-transform: uppercase;
}

.header-cont a{
    display: inline-block;
    margin-top: 25px;
    background: rgb(255, 0, 0);
    padding: 10px 15px;
    border-radius: 40px;
    text-decoration:none;
    color: rgb(238, 238, 238);
    font-weight: 450;
    transition: all 0.3s ease;
}

.header-cont a:hover{
    transform: translateY(-5px);
}

/* Responsive headercont */

@media only screen and (max-width: 768px) {
    .header-cont {
      max-width: 100%;
      margin: 0;
      padding: 30px;
    }
    
    .header-cont h1 {
      font-size: 60px;
    }
    
    .header-cont h2 {
      font-size: 60px;
    }
    
    .titulo span {
      font-size: 90px;
      margin-top: 30px;
    }
    
    .header-cont p {
      font-size: 30px;
      margin-top: 20px;
    }
    
    .header-cont a {
      margin-top: 50px;
      padding: 15px 22px;
      font-weight: 700;
    }

    .nav {
        justify-content: space-between;
    }

    .nav .logo img{
        justify-content: space-between;
    }
  }

  @media only screen and (max-width: 768px){
    .logo img {
        margin-left: 300px;
    }
      }

  @media only screen and (max-width: 765px){
  .logo img {
    margin-left: 250px;
}
  }

  @media only screen and (max-width: 615px) {
    .header-cont h1 {
      font-size: 50px;
    }
    
    .header-cont h2 {
      font-size: 50px;
    }
    
    .titulo span {
      font-size: 65px;
      margin-top: 20px;
    }
    
    .header-cont p {
      font-size: 25px;
      margin-top: 15px;
    }
    
    .header-cont a {
      margin-top: 20px;
      padding: 12px 19px;
      font-size: 15px;
    }
.nav {
    justify-content: space-around;
}
  }


  @media only screen and (max-width: 615px){
.logo img {
    margin-left: 150px;
}
  }
  
  @media only screen and (max-width: 490px) {
    .header-cont h1 {
      font-size: 50px;
    }
    
    .header-cont h2 {
      font-size: 50px;
    }
    
    .titulo span {
      font-size: 65px;
      margin-top: 20px;
    }
    
    .header-cont p {
      font-size: 25px;
      margin-top: 15px;
    }
    
    .header-cont a {
      margin-top: 20px;
      padding: 12px 19px;
      font-size: 15px;
    }
.nav {
    justify-content: space-around;
}
  }


  @media only screen and (max-width: 490px){
.logo img {
    margin-left: 110px;
}
  }

  
  @media only screen and (max-width: 430px) {
    .header-cont h1 {
      font-size: 45px;
    }
    
    .header-cont h2 {
      font-size: 50px;
    }
    
    .titulo span {
      font-size: 55px;
      margin-top: 20px;
    }
    
    .header-cont p {
      font-size: 25px;
      margin-top: 15px;
    }
    
    .header-cont a {
      margin-top: 20px;
      padding: 12px 19px;
      font-size: 15px;
    }
.nav {
    justify-content: space-around;
}
  }


  @media only screen and (max-width: 430px){
.logo img {
    margin-left: 95px;
}
  }

  @media screen and (max-width: 390px) {
    /* contenido del header */
    .header-cont{
        max-width: 440px;
        height: 720px;
    }

    .header-cont h1{
        font-size: 34px;
        text-shadow: 1px 1px 3px rgb(0, 0, 0);
    }
  
    .header-cont h2{
        font-size: 44px;
        margin-top: 8px;
        text-shadow: 1px 1px 3px rgb(0, 0, 0);
    }
  
    .header-cont h1 span{
        margin-top: 15px;
    }
  
    .titulo span{
        font-size: 45px;
        margin-top: 20px;
        text-shadow: 1px 1px 3px rgb(0, 0, 0);
    }
  
    .header-cont p{
        font-size: 19px;
        margin-top: 12px;
    }
  
    .header-cont a{
        margin-top: 18px;
        padding: 6px 10px;
        border-radius: 25px;
        font-size: 12px;
    }
  }

  @media only screen and (max-width: 430px){
    .logo img {
        margin-left: 65px;
    }
      }

/* title servicios */
.titleservice{
    text-align: center;
    padding-top: 4rem;

}

.titleservice h2{
    color: red;
    font-size: 3rem;
    margin-bottom: 25px;
}

.titleservice p{
    line-height: 1.7;
}
/* box cont */

.box button {
    margin-top: 15px;
    background-color: rgb(255, 217, 0);
    color: rgb(0, 4, 250);
    border-radius: 20px;
    padding: 7px 10px;
    border: none;
    cursor: pointer;
    font-weight: bold;
  }
  
.box-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.box-container .box{
    height: 12rem;
    width: 13rem;
    background: #fcfcfc; /*color card*/
    text-align: center;
    border-radius: 1rem;
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.13);
    margin: 1rem;
    cursor: pointer;
}

.box-container .box i{
    height: 3.5rem;
    width: 3.5rem;
    line-height: 3.5rem;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    background: rgb(0, 4, 250);
    font-size: 28px;
    margin: 1rem 0;
    transition: .2s;
}

.box-container .box h3{
    font-size: 20px;
    color:  rgb(250, 0, 0);;
    transition: .2s;
}

.box-container .box p{
    font-size: 14px;
    padding: .4rem 2rem;
}


/* box cont */
.box-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.box-container .box2{
    height: 20rem;
    width: 30rem;
    background: #fcfcfc; /*color card*/
    text-align: center;
    border-radius: 1rem;
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.13);
    margin: 2rem;
}

.box-container .box2 i{
    height: 3.5rem;
    width: 3.5rem;
    line-height: 3.5rem;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    background: rgb(0, 4, 250);
    font-size: 28px;
    margin: 1rem 0;
    transition: .2s;
}

.box-container .box2 h3{
    font-size: 20px;
    color:  rgb(250, 0, 0);;
    transition: .2s;
}

.box-container .box2 p{
    font-size: 14px;
    padding: .4rem 2rem;
}

/*------------*/

.hiabb{
    width: 100%;
    height: 30vh;
    background-image: url(../img/headerclientess.jpg);
    background-size: cover;
    background-position: center;
}

.header-hiab{
max-width: 600px;
height: 100%;
margin: auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}

.header-hiab h2{
font-size: 60px;
color: rgb(255, 255, 255);
text-transform:none;
text-shadow: 3px 3px 7px rgb(0, 0, 0);

}

.header-hiab h2 span {
    color: red;
    text-shadow: 3px 3px 7px rgb(0, 0, 0);
}

.header-hiab p{
font-size: 20px;
color: rgb(212, 212, 212);
font-weight: 300;
}

.header-hiab a{
display: inline-block;
margin-top: 25px;
background: rgb(255, 0, 0);
padding: 10px 15px;
border-radius: 40px;
text-decoration: none;
color: rgb(255, 255, 255);
font-weight: 300;
transition: all 0.3s ease;
}

.header-hiab a:hover{
transform: translateY(-5px);
}

/* Responsive header hiab */ 

@media only screen and (max-width: 768px) {
    /* estilos para dispositivos con ancho máximo de 768px */
    
    .hiabb {
    height: 50vh;
    }
    
    .header-hiab h2 {
    font-size: 70px;
    }
    
    .header-hiab p {
    font-size: 18px;
    }
    }
    
    @media only screen and (max-width: 480px) {
    /* estilos para dispositivos con ancho máximo de 480px */
    
    .hiabb {
    height: 60vh;
    }
    
    .header-hiab h2 {
    font-size: 55px;
    }
    
    .header-hiab p {
    font-size: 16px;
    }
    }
    
    @media only screen and (max-width: 320px) {
    /* estilos para dispositivos con ancho máximo de 320px */
    
    .hiabb {
    height: 70vh;
    }
    
    .header-hiab h2 {
    font-size: 40px;
    }
    
    .header-hiab p {
    font-size: 14px;
    }
    }

/* titulo para card */

.titlenosotros{
    text-align: center;
    padding-top: 4rem;

}

.titlenosotros h2{
    color: rgb(255, 0, 0);
    font-size: 3rem;
    margin-bottom: -30px;
    margin-top: 55px;
}

.titlenosotros p{
    line-height: 1.7;
}

/*vCONTENEDORESSSSS */


.line{
    width: 500px;
    height: 4px;
    background: rgb(0, 4, 250);
    margin: 10px auto;
    border-radius: 5px;
}

.container{
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    padding: 80px 0;
    max-width: 1200px;
}

.subtitle{
    color: rgb(0, 4, 250);
    font-size: 2.5rem;
    margin-bottom: 35px;
    text-align: center;
}

.about{
    min-height: 400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 80px;
    justify-items: center;
    align-items: center;
}

.about_img{
    text-align: center;
}

.about_img--left{
    text-align: left;
}

.about_picture{
    max-width: 80%;
}

.about_paragraph{
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 300;
}

table {
    border-collapse: collapse;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    font-size: 14px;
    text-align: center;
  }

  .medidascol{
    background-color: red;
  }

  .dimensionescol{
    background-color: red;
  }

  /* Estilos para los encabezados de la tabla */
  th {
    background-color: rgb(0, 4, 250);
    color: #fff;
    font-weight: bold;
    padding: 10px;
    text-transform: uppercase;
  }

  /* Estilos para las celdas de datos */
  td {
    border: 1px solid #000000;
    padding: 10px;
  }

  /* Estilos para las celdas de datos de la primera columna */
  td:first-child {
    font-weight: bold;
  }

  /* Estilos para las celdas de datos de la primera fila */
  tr:first-child td {
    border-top: 0;
  }

  /* Eliminar las lineas separadoras de la tabla */

  table {
    border-collapse: collapse;
  }
  
  table, th, td {
    border: none;
  }

/*vCONTENEDORESSSSS 2 */


.line{
    width: 500px;
    height: 4px;
    background: rgb(0, 4, 250);
    margin: 10px auto;
    border-radius: 5px;
}

.container2{
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 80px 0;
    max-width: 1200px;
}

.subtitle2{
    color: rgb(0, 4, 250);
    font-size: 2.5rem;
    margin-bottom: 35px;
    text-align: center;
}

.subtitle3{
    color: rgb(0, 4, 250);
    font-size: 2.5rem;
    margin-bottom: 35px;
    text-align: center;
}

.about{
    min-height: 400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 80px;
    justify-items: center;
    align-items: center;
}

.about_img2{
    text-align: center;
}

.about_img--left2{
    text-align: left;
}

.about_picture2{
    max-width: 80%;
}

.about_paragraph2{
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 300;
}

.about_paragraph3{
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 300;
    font-size: 15px;
}


/* contenedores responsive */

@media screen and (max-width:800px){

   :root{
    --boton-padding: 18px 40px;
   }

    .subtitle{
        font-size: 1.5rem;
    }

    .about{
        grid-template-columns: 1fr;
    }

    .about .container{
        padding-top: 30px;
    }

    .about_img--left{
        text-align: center;
    }

    .about_texts:last-child{
        grid-row: 3/4;
    }
}


 /* contenedores responsive 2 */

 @media screen and (max-width:800px){

    :root{
     --boton-padding: 18px 40px;
    }
 
     .subtitle2{
         font-size: 1.5rem;
     }
 
     .about{
         grid-template-columns: 1fr;
     }
 
     .about .container2{
         padding-top: 30px;
     }
 
     .about_img--left2{
         text-align: center;
     }
 
     .about_texts2:last-child{
         grid-row: 3/4;
     }
 }

 @media screen and (max-width: 500px){

    :root{
        --boton-padding: 18px 35px
    }

    .subtitle2{
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .about{
        row-gap: 60px;
    }

    .about .container2{
        padding-top: 10px;

    }


 }

 /* objetivos */
.ventajas{
    padding: 25px;
    background-color: rgb(255, 255, 255);
}

.ventaja{
    color: #fff;
    text-align: center;
}

.ventaja i{
    font-size: 30px;
    color: blue;
}

.ventaja h3{
    font-size: 18px;
    color: red;
}

.ventaja p{
    font-size: 13px;
    color: black;
}

/* Objetivos responsive */

@media(min-width: 768px) {
    .contenido-ventajas{
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 1rem;
    }
}

/* titulo para certificados */

.titlecertific{
    text-align: center;
    padding-top: 2rem;

}

.titlecertific h2{
    color: rgb(255, 0, 0);
    font-size: 3rem;
    margin-bottom: 25px;
}

.titlecertificp{
    line-height: 1.5;
}


/* carousel de certificados */

.wrapper{
    width: 100%;
}

.carousel{
    position: relative;
    max-width: 1000px;
    margin: auto;
    padding: 0 60px;
}

.carousel .cards{
    height: 400px;
    border-radius: 5px;
}

#c1{
    background: url(../img/grua3.jpeg) no-repeat center
    center/cover;
}

#c2{
    background: url(../img/contenedorsitem2.jpeg) no-repeat center
    center/cover;
}

#c3{
    background: url(../img/contenedoressitem8.jpeg) no-repeat center
    center/cover;
}

#c4{
    background: url(../img/contenedorsitem7.jpeg) no-repeat center
    center/cover;
}

#c5{
    background: url(../img/CONTENEDORSITEM6.jpeg) no-repeat center
    center/cover;
}

#c6{
    background: url(../img/CONTENEDORSITEM3.jpeg) no-repeat center
    center/cover;
}

.owl-dots{
    text-align: center;
    margin-top: 20px;
}

.owl-dot{
    height: 15px;
    width: 15px;
    border-radius: 50%;
    cursor: pointer;
    outline: none;
    margin: 0 5px;
    border: 2px solid red !important;
    transition: all 0.3s ease;
}

.owl-dot:hover,
.owl-dot.active{
    background-color: red !important;
}

.owl-prev,
.owl-next {
    position: absolute;
    top: 45%;
    transform: translate(-50%, -50%);
}

.owl-prev {
    left: 40px;
}

.owl-next{
    right: 30px;
}

.fa-chevron-left,
.fa-chevron-right {
    font-size: 30px;
    color: red;
    transition: all 0.2s;
}

.fa-chevron-left:hover,
.fa-chevron-right:hover {
    color: blue;
}
@media(max-width:1024px){
    .rows{
        flex-direction: column;
    }
}
.rows{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

.red-btn{
    border: 1px solid #ff1100;
    background: transparent;
    color: #ff1100;
}
.red-btn:hover{
    color: #fff;
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: rgb(17, 0, 255);
    border: 1px solid rgb(17, 0, 255);
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #ff1100;
    background: #ff1100;
    transition: 1s;
}

.location{
    width: 90%;
    margin: auto;
    padding: 5px 0;
}

.location iframe{
    width: 100%;
}

.contact-us{
    width: 80%;
    margin: auto;
}

.contact-col{
    flex-basis: 48%;
    margin-bottom: 30px;
}

.contact-col div{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fa{
    font-size: 28px;
    color: rgb(0, 4, 250);
    margin: 10px;
    margin-right: 30px;
}

.contact-col div p{
    padding: 0;
}

.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}

.contact-col input, .contact-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}


/*:::::Pie de Pagina */
.pie-pagina{
    width: 100%;
    background-color: #f8f8f8;
}

.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: 250px;
}

.pie-pagina .grupo-1 .box h2 {
    color: #ff0000;
    margin-bottom: 25px;
    font-size: 20px;
}

.pie-pagina .grupo-1 .box p{
    color: #000000;
    margin-bottom: 10px;
}

.pie-pagina .grupo-1 .red-social a{
    display: inline-block;
    text-decoration: none;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: rgb(0, 4, 250);
    margin-right: 10px;
    background-color: #f0f0f0;
    text-align: center;
    transition: all 300ms ease;
}

.pie-pagina .grupo-1 .red-social a:hover{
    color: red;
}

.pie-pagina .grupo-2{
    background-color: #e2e2e2;
    padding: 15px 10px;
    text-align: center;
    color: #000000;
}

.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;
    }
}

#cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    background-color: #f7f7f7;
    border-top: 1px solid #eaeaea;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
  }
  
  #cookie-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
  }
  
  #cookie-banner button {
    display: inline-block;
    padding: 8px 16px;
    margin-left: 16px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background-color: #0077cc;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  #cookie-banner button:hover {
    background-color: #005fa3;
  }