@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

header{
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 200px;
  transition: 0.5s ease;
  background-color: transparent;
  transition: background-color 0.2s ease-in;
  z-index: 999;
}

html{
  height: -webkit-fill-available;
}
body{
  margin: 0;
}



.scroll-bg {
  background-color: rgb(32, 58, 110) !important;
}
/*CODIGO ANTERIOR*/




.gallery {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.filter {
  margin-bottom: 20px;
}

.filter .btn {
  display: inline-block;
  margin: 5px;
  padding: 8px 16px;
  border: 1px solid #ccc;
  background-color: #4773c5;
  cursor: pointer;
  border-radius: 2px;
  color:#fff;
  transition: background-color 0.3s, color 0.3s;
}

.filter .btn:hover {
  background-color: #0e2842;
  color: #fff;
}

.filter .btn.active {
  background-color: #fff;
  color: #32528c;
}

.images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  transition: opacity 0.4s ease-in-out;
  opacity: 1;
}

.image {
  width: calc(33.33% - 20px);
  margin: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.image.zoom-out {
  transform: scale(0);
  opacity: 0.0;
}

.image.zoom-in {
  transform: scale(1);
  opacity: 1;
}

.image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s;
}

.image:hover img {
  transform: scale(1.1);
}


.image:hover .overlay {
  opacity: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 55, 134, 0.7);
  color: #fff;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.overlay p {
  text-align: center;
  font-size: 16px;
  padding: 10px;
}

#slider-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

#slider-modal .close-slider {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  position: absolute;
  top: 20px;
  right: 30px;
  cursor: pointer;
}

#slider-modal .slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#slider-modal .slide {
  display: none;
}

#slider-modal .slide img {
  width: 100%;
  height: auto;
  max-width: 500px;
  max-height: 500px;
  margin: 0 auto;
}


#slider-modal .prev,
#slider-modal .next {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

#slider-modal .prev {
  left: 10px;
}

#slider-modal .next {
  right: 10px;
}


@media screen and (max-width: 768px) {
  .image {
    width: calc(100% - 20px);
  }
}


.galeria_proyectos{
  text-align: center;
  padding-top: 100px;
}

.titulo_proyectos {
  padding-top: 35px;
  color: #32528c;
}

 .parrafo_proyectos {
  padding: 45px;
  color: #32528c;
  text-align: justify;
  text-align: center;
}

.contenedor_pago{
  align-items: center;
  justify-content: center;
  background-color: #232323;
  width: 100%;
  height: 200px;
}
.contenedor_pago h2{
  padding-top: 15px;
  color:#dddddd;
  text-align: center;
  
}

.payment-option h3, i{
  color:#dddddd;
  text-align: center;
  transition: transform 0.3s;
}

.payment-section {
  display: flex;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
  align-items: center ;
  width: 80%;
  height: 30px; 
  
}

.payment-options {
  
display: flex;
align-content: center;
width: 100%;
text-align: center;
justify-content: center;
padding-bottom: 50px;  
}

.payment-option {
  margin: 0 auto;
  text-align: center;
  transition: transform 0.3s; 
}

.payment-option:hover i {
  transform: scale(1.1);
  color: #eee;
}

.payment-option:hover h3 {
  transform: scale(1.1);
  color: #eee;
}

.payment-option i {
  font-size: 48px;
  margin-bottom: 10px;
}

.payment-option h3 {
  font-size: 18px;
}

@media (max-width: 768px) {
  .payment-options {
    margin-top: 20px;
  }

  .payment-options i{
       font-size: 35px;
  }
  .payment-options h3{
    font-size: 20px;
}

  .payment-option {
    flex-basis: 50%;
    margin: 10px;
  }
}

@media (max-width: 375px) {
  .payment-options {
    margin-top: 20px;
  }
  .contenedor_pago h2{
    font-size: 20px;
  }

  .payment-options i{
       font-size: 25px;
  }
  .payment-options h3{
    font-size: 15px;
    
}
.contact-form h2{
  font-size: 20px;
}

  .payment-option {
    flex-basis: 50%;
    margin: 10px;
  }

  .footerContainer a{
    font-size: 8px;
  }

  
  .footerContainer i{
    font-size: 20px;
  }
  .footerNav a{
    font-size: 9px;
  }

  .media-icons i{
    font-size: 10px;
  }
  .media-icons a{
    font-size: 1em;
  }

  
  .footerBottom p{
    font-size: 15px;
  }
  .contact-form h2{
    font-size: 20px;
  }

  
}



/**/
.proveedores{
  padding-top: 25px;
  display: flex;
  width: 100%;
}

.texto-proveedores{
  padding-top: 12%;
 margin: 0 auto;
  width: 100vw;
  text-align: center;
  padding-left: 5px;
}

.texto-proveedores p{
  text-align: center;
  color:#32528c;
  margin: 40px;
}
.proveedores .section-title {
  text-align: center;
  color:#32528c;
  text-transform: uppercase;
  font-size: 30px;
}
.imagenes-proveedores{
  margin: 50px;
}

.slider{
  padding-left: 15px;
  margin-top: 15px;
  width: 50vw;
  height: auto;
  margin: auto;
  overflow: hidden;
  
}

.slider .slider-track{
  display: flex;
  animation: scroll 40s linear infinite;
  -webkit-animation: scroll 40s linear infinite;
  width: calc(200px * 18);
  
}

.slider .slide{
 
  width: 250px;
  padding-bottom: 50px;
}

.slider .slide img{
  width: 100%;
}

.Contenedor_Parallax{
  width: 100%;
  height: 400px;
  background: url(Images/Fondo3.webp);
  padding:100px 50px ;
}

.Contenedor_Parallax .parrafo_parallax{
  color:#fff;
  text-align: center;
  font-size: 20px;
}

.Contenedor_Parallax .titulo_parallax{
  color:#fff;
  text-align: center;
  font-size: 25px;
}
.boton{
  background: #2696E9;
  width: 200px;
  height: 50px;
  margin:0 auto;
  justify-content: center;
  text-align: center;
  padding: 15px 35px;
  border-radius: 4px;
}

.boton a{
  text-decoration: none;
  color: #fff;
  font-size: 20px bold;
}
.contenedor_nosotros{
  width: 100%;
 padding: 80px 0;
 background: url(Images/wave.svg);
 background-repeat: no-repeat ;
 background-position: bottom;
 z-index: -100;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 30px;
  min-height: 400px;
}

.column{
  height: 520px;
  width: 335px;
  padding: 20px 35px;
  border-radius: 20px;
  margin: 15px;
  position: relative;
 overflow: hidden;
  text-align: center;
  box-shadow: 0px 5px 10px rgba(15, 15, 15, .2);
  background-color: #fff;

}
.column i{
  font-size: 50px;
  display: block;
  text-align: center;
  margin: 25px 0px;
  color:#32528c ;
}

.column img{
  width: 100%;
}
.column p{
  text-align: justify;
}
.column h2{
  font-size: 23px;
  margin-bottom: 15px;
  color: #32528c;
}
.column p{
  color:gray
}

.titulo_nosotros h1{
  margin: 30px auto;
  text-align: center;
  padding-top: 25px;
  color: #32528c;  
}


.titulo_clientes h1{
  margin: 30px auto;
  text-align: center;
  padding-top: 25px;
  color: #fff;  
}

.linea{
  background:#32528c;
  height: 5px;
  width: 100%;
  display: block;
}
.galeria_imagenes{
  background-color: #fff;
}


.galeria{
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(420px, 1fr));
  /*grid-template-columns: 33.33% 33.33% 33.33%;*/
  width: 100%;
  margin: 0;
  gap:10px;
  padding: 40p 0x;
  overflow: hidden;

}

.galeria img{
  width: 100%;
  vertical-align: top;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s;
}


.clientes{
  width: 100%;
  padding:40px;
  background: linear-gradient(180deg, #32528c,#eee), url(Images/Fondo3.webp);
  background-blend-mode: screen;
}

.fila{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding:50px;
  color: #fff;
}



.columna1{
  padding:10px;
  width: 33.33%;
  max-width: 800px;
  min-width: 180px;
  
  }
  .columna1 img{
    width: 90%;
    border-radius: 5px;
    box-shadow: 0px 5px 10px rgba(15, 15, 15, .5);
  }


@media screen and (max-widht:400px){
  .galeria{
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  }

  .close{
    top:20px;
    right: 20px;
  }
 
}

@keyframes scroll{
  0%{
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100%{
    -webkit-transform: translateX(calc(-200px * 9));
    transform: translateX(calc(-200px * 9));
  }

}
/*CODIGO ANTERIOR*/

header .brand{
  color: #fff;
  font-size: 1.5em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.imagen-logo{
  width: 200px;
  max-width: 480px;
  min-width: none;
  
  }

  .imagen-logo img{
    width: 100%;
    border-radius: 5px;

  }

header .navigation{
  position: relative;
}

header .navigation .navigation-items a{
  position: relative;
  color: #fff;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  margin-left: 30px;
  transition: 0.3s ease;
}

header .navigation .navigation-items a:before{
  content: '';
  position: absolute;
  background: #fff;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  transition: 0.3s ease;
}

header .navigation .navigation-items a:hover:before{
  width: 100%;
}

section{
  padding: 100px 200px;
}

.btn-whatsapp {
        display:block;
        width: 60px;
        height:60px;
        color: #fff;
        position: fixed;
        right:30px;
        bottom:30px;
        border-radius:50%;
        line-height:80px;
        text-align:center;
        z-index:999;
}

.services-section{
  background: #eee;
  background-size: cover;
  padding: 20px 0;


}
.imagen{
padding-bottom: 1x;
width: 85vw;
max-width: 1300px;
min-width: 180px;
margin: auto;
}
.imagen img{
  width: 100%;
  border-radius: 15px;
  box-shadow: 0px 5px 10px rgba(15, 15, 15, .5);
}

.inner-width{
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  overflow: hidden;

}

.section-title{
  text-align: center;
  color: #32528c;
  text-transform: uppercase;
  font-size: 30px;

}

.border{
  width: 50%;
  height: 2px;
  background: #32528c;
  margin: 25px auto;
}

.border2{
  width: 50%;
  height: 2px;
  background: #fff;
  margin: 25px auto;
}

.services-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

}

.service-box{
  max-width: 25%;
  padding: 40px;
  text-align: center;
  color: #32528c;
  cursor: pointer;
  width: 350px;
  
}
.service-icon i{
  color:#32528c
}
.service-icon{
  display: inline-block;
  width: 70px;
  height: 70px;
  border: 3px solid  #32528c;
  color: #32528c;
  transform: rotate(45deg);
  margin-bottom: 30px;
  margin-top: 16px;
  transition: 0.3s linear;

}

.service-icon i{
  line-height: 70px;
  transform: rotate(-45deg);
  font-size: 26px;
  width: 20px;
}
.service-icon img{
  line-height: 50px;
  transform: rotate(-45deg);
  font-size: 10px;
  color:#32528c;
}

.service-box:hover .service-icon{
background: #32528c;
color: #fff;
 
}
.service-box:hover{
  transition: all .3s ease-in-out;
    transform: scale(1.06);
}
.service-box:hover .service-icon i{
  
  color: #fff;
   
  }
  .formulario{
  
      max-width: 700px;
      margin: 0 auto;
    }
    .forms_google{
      width: 100%;
      height: 1000px;
    }

    

    @media (max-width: 768px) {
      .formulario {
        max-width: 400px;
      }
    }

    @media (max-width: 480px) {
      .formulario {
        max-width: 300px;
      }
    }
    
    .zoom-in-effect {
      opacity: 0;
      transform: scale(0.8);
      transition: opacity 1s, transform 1s;
    }
    
    .zoom-in-effect.zoom-in {
      opacity: 1;
      transform: scale(1);
    }

    

    .fade-in-effect {
      opacity: 0;
      transform: translateX(-100px);
      transition: opacity 1s ease-out, transform 1s ease-out;
    }
    
    .fade-in-effect.fade-in {
      opacity: 1;
      transform: translateX(0);
    }

      
  .service-title{
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
  }

.separador{
  width: 60px;
  height: 2px;
  background: #32528c;
  margin: auto;
}
.service-desc{
  font-size: 14px;
}

@media screen and (max-width:960px){
  .service-box{
    max-width: 45%;
  }
}

@media screen and (max-width:768px){
  .service-box{
    max-width: 50%;
  }
}

@media screen and (max-width:480px){
  .service-box{
    max-width: 100%;
  }
  .contact-form h2{
    font-size: 20px;
  }
}


@media screen and (max-width:320px){
  .contact-form h2{
    font-size: 18px;
  }
}



@media screen and (max-width:280px){
  .footerNav a{
    font-size: 8px;
  }
  .home .content h1{
    font-size: 25px;
  }

  
  .home .content h1 span{
    font-size: 20px;
  }

}

.home{
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: -webkit-fill-available;
}

.home:before{
  z-index: 777;
  content: '';
  position: absolute;
  background: rgba(3, 96, 251, 0.3);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.home .content{
  z-index: 888;
  color: #fff;
  width: 80%;
  margin-top: 40px;
  display: none;
}

.home .content.active{
  display: block;
}

.home .content h1{
  font-size: 50px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 60px;
  margin-bottom: 40px;
}

.home .content h1 span{
  font-size: 50px;
  
  font-weight: 500;
}

.home .content p{
  margin-bottom: 65px;
}

.home .content a{
  background: #fff;
  padding: 15px 35px;
  color: #1680AC;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
}

.home .media-icons{
  z-index: 888;
  position: absolute;
  right: 30px;
  display: flex;
  padding-top: 25px;
  flex-direction: column;
  transition: 0.5s ease;
}

.home .media-icons i{
  color: #fff;
  font-size: 1.6em;
  transition: 0.3s ease;
}

.home .media-icons a:not(:last-child){
  margin-bottom: 20px;
}

.home .media-icons i:hover{
  transform: scale(1.3);
}
.socialIcons i:hover{
  transform: scale(1.3);
  color:#eee
}
.home video{
  z-index: 000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-navigation{
  z-index: 888;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(80px);
  margin-bottom: 12px;
}

.slider-navigation .nav-btn{
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
  transition: 0.3s ease;
}

.slider-navigation .nav-btn.active{
  background: #2696E9;
}

.slider-navigation .nav-btn:not(:last-child){
  margin-right: 20px;
}

.slider-navigation .nav-btn:hover{
  transform: scale(1.2);
}

.video-slide{
  position: absolute;
  width: 50%;
  clip-path: circle(0% at 0 50%);
}

.video-slide.active{
  clip-path: circle(150% at 0 50%);
  transition: 2s ease;
  transition-property: clip-path;

}


footer{
  background-color:#151313; 
  }
  
  .footerContainer{
    width: 100%;
    height: 200px;
    padding: 30px 20px 15px;
    
  }
  
  .socialIcons{
    display: flex;
    justify-content: center;
    
  }
  
  .socialIcons a{
    text-decoration: none;
    padding: 15px;
    margin: 10px;
    color:#eee ;
    font-size: 25px;
  }
  .footerNav{
    text-align: center;
  
  }
  .footerNav a{
    color:#fff;
    margin: 20px;
    text-decoration: none;
    font-size: .8em;
    opacity: 0.6;
    transition: 0.5s;
    text-transform: uppercase;
  
    
  }
  .footerNav a:hover{
    opacity:1 ;
  }
  
  .footerBottom p{
    color: #eee;
    text-align: center;
    background-color: #151313;
    padding: 10px;
  }
  
/*formulario*/
.contact-form {
  position: relative;
  background-image: url(Images/Fondo3.webp);
  background-size: cover;
  background-position: center;
  padding: 50px;
  padding-top: 80px;
}
.contact-form h2{
  color: #32528c;
}
.form-bg {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
}

form {
  max-width: 600px;
  margin: 0 auto;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}


input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #007bff;
}

button {
  display: block;
  margin: 0 auto;
  padding: 10px 20px;
  background-color: #4773c5;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #4ca3e7;
}


#mensajeEmergente {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  z-index: 9999;
  transition: opacity 0.5s ease-in-out;
}

#mensajeEmergente.show {
  display: block;
  opacity: 1;
}

#mensajeEmergente.hide {
  opacity: 0;
}
/*////////////////////////////*/
 

@media (max-width: 1040px){
  header{
    padding: 12px 20px;
  }

  section{
    padding: 100px 20px;
  }

  .home .media-icons{
    right: 15px;
  }

  header .navigation{
    display: none;
  }

  header .navigation.active{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(1, 1, 1, 0.5);
  }

  header .navigation .navigation-items a{
    color: #222;
    font-size: 1.2em;
    margin: 20px;
  }

  header .navigation .navigation-items a:before{
    background: #222;
    height: 5px;
  }

  header .navigation.active .navigation-items{
    background: #fff;
    width: 600px;
    max-width: 600px;
    margin: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
  }

  .menu-btn{
    background: url(menu.png)no-repeat;
    background-size: 30px;
    background-position: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .menu-btn.active{
    z-index: 999;
    background: url(close.png) no-repeat;
    background-size: 25px;
    background-position: center;
    transition: 0.3s ease;
  }
}

@media screen and (max-width: 660px){
    .home .content h1{
      font-size: 42px;
      line-height: 30px;
      letter-spacing: none;
    }

    .home .content h1 span{
      font-size: 36px;
      line-height: 60px;
    }
    

    .home .media-icons a{
      font-size: 0.9em;
    }

    .imagen-logo img{
      width:70%;
    }

    .btn-whatsapp img {
      height: 70%;
      width: 70%;
      margin-left: 30px;
      margin-top: 30px;
    }

    p{
      font-size: 15px;
    }

    .proveedores{
      display: block;
    }
    .proveedores .section-title{
      font-size:1.8em;
    }

    .slider{
      margin:auto;
      width: 100%;
      height: 60%;

    }

    .Contenedor_Parallax{
      width: 100vw;
      height: 400px;
      background: url(Images/Fondo3.webp);
      padding:100px 50px ;
    }
    
    .Contenedor_Parallax .parrafo_parallax{
      color:#fff;
      text-align: center;
      font-size: 15px;
    }
    
    .Contenedor_Parallax .titulo_parallax{
      color:#fff;
      text-align: center;
      font-size: 20px;
    }
    .column p{
      font-size: 12px;
    }
    .column h2{
      font-size: 15px;
    }

    
  }

@media screen and (max-width: 360px){
  .home .content h1{
    font-size: 42px;
    padding: 10px;
    line-height: 30px;
    letter-spacing: none;
  }

  .home .content h1 span{
    font-size: 36px;
    line-height: 60px;
  }
  

  .home .media-icons a{
    font-size: 0.7em;
  }

  .imagen-logo img{
    width:70%;
  }

  .btn-whatsapp img {
    height: 70%;
    width: 70%;
    margin-left: 30px;
    margin-top: 30px;
  }

  p{
    font-size: 15px;
  }
  .Contenedor_Parallax{
    width: 100vw;
    height: 400px;
    background: url(Images/Fondo3.webp);
    padding:100px 50px ;
  }
  
  .Contenedor_Parallax .parrafo_parallax{
    color:#fff;
    text-align: center;
    font-size: 10px;
  }
  
  .Contenedor_Parallax .titulo_parallax{
    color:#fff;
    text-align: center;
    font-size: 15px;
  }

  .slider{
    margin:auto;
    width: 100%;

  }
  .column p{
    font-size: 12px;
  }
  .column h2{
    font-size: 15px;
  }

  .row{
    height: 80%;
  }

  .home .content h1 span{
    font-size: 32px;
  }

}

@media screen and (max-width: 820px) {
  .column p{
    font-size: 12px;
  }
  .column h2{
    font-size: 15px;
  }
  
}
@media screen and (max-width: 912px)
{
  .column p{
    font-size: 13px;
  }
  .column h2{
    font-size: 18px;
  }
  
}

