/*Estilos Generales*/


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root{
    --primary-color :#3D5975;
    --accent-color  :#EDCD1F;
    --text-color    :#1E2D3B;
    --hover-color   :#FF8052;
    --blue-color    :#5B86B0;
    --grey-color    :#C6C6C6;
    --green-color   :#509C35;
}

body{
    font-family: "Roboto";
    font-weight: 300;
    line-height: 1.5;
    color: var(--text-color);
}

p{
    font-size: 1em;
}

h1{
    font-weight:500;
    color: var(--primary-color);
    font-size: 1.5em;
    text-transform: uppercase;
}

a{
    text-decoration: none;
}

.button{
    color: #fff;
    text-decoration: none;
    font-size: 0.85em;
    padding:1em 2.5em;
    border-radius: 10000px;
    transition: all .25s;
    font-weight: 300;
}

.button:hover{
    background: var(--hover-color) !important;
}

h2{
    text-transform: uppercase;
    font-weight: 700;
    width: auto;
    display: inline-block;
    letter-spacing:2.5px;
    font-size: 2em;
}

h2::after{
    content: "";
    display: block;
    width: 40%;
    height: 8px;
    background: #000;
    margin:.25em auto;
}

h3{
    color: var(--primary-color);
}

footer h3{
    color: var(--text-color);
}

video{
    width: 100%;
    margin-top: 2em;
}

img{
    width: 100%;
    display: block;
}

.wrapper{
    width: 90%;
    margin: auto;
    max-width: 1200px;
    position: relative;
}


/*Header*/

.header{
    height:30px;
    background: var(--text-color);
}

.nav{
    display: none;
}

.header__logo{
    display: none;
}

@media screen and (min-width:1024px){

    .header{
        height: 75px;
    }

    .header .wrapper{
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        top: 1em;
    }

    .nav{
        display: block;
    }

    .menu{
        display: flex;
        text-transform: uppercase;
        font-size: 1em;
        font-weight: 300;
        color: #fff;
        list-style: none;
    }

    .menu__link{
        color: #fff;
        margin-left: 3em;
        transition: all .25s;
    }

    .menu__link:hover{
        color: var(--accent-color);
    }

    .header__logo{
        height: 40px;
        width: auto;
        display: block;
    }
}

/*Laytech*/

.laytech{
    padding-top: 3em;
    text-align: center;
}


.laytech__button{
    display: block;
    width: auto;
    margin:1em auto;
    background: #000;
}

@media screen and (min-width:1024px){
    .laytech__img{
        max-width: 600px;
        margin:auto;
        margin-bottom: 1em;
    }

    .laytech__title{
        font-size: 2em;
        margin-bottom: 1.5em;
    }
}

/*Servicios*/

.servicios{
    text-align: center;
    margin-top: 2em;
}

.servicios h2{
    color: var(--grey-color);
}

.servicios h2::after{
    background: var(--accent-color) !important;
}

.gallery-container{
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery__item{
  border-radius: 0.25rem;
  overflow: hidden;
  position: relative;
}

.gallery__item .content{
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px);
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: 0;
  padding: 0.5rem 1rem;
}

.gallery__item .content p{
  font-size: 0.9rem;
  line-height: 1.8;
  position: relative;
  display: none;
  transform: translateY(-500%);
  top: 100%;
}

.gallery__item:hover p{
  display: block;
  transform: translateY(0);
}

.gallery__img{
    width: 500px;
    height: 300px;
    object-fit: cover;
}

@media screen and (min-width:1024px){
    .servicios{
        margin-top: 8em;
        margin-bottom: 5em;
    }

    .servicios h2{
        font-size: 3.5em;
    }

}

/*Certificacion*/

.certificada{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.certificada.miembros{
    padding-top: 5em !important;
}

.certificada h2{
    font-size: 0.9em;
    color: var(--blue-color);
    width: 50%;
}

.certificada h2::after{
    display: none;
}

.certificada__img{
    width: 30%;
}

.certificada.miembros .certificada__img{
    width: 50%;
}

@media screen and (min-width:1024px){

    .certificada{
        margin-top: 2em;
        padding-bottom: 5em;
    }

    .certificada.miembros{
        padding-top: 5em !important;
    }

    .certificada h2{
        font-size: 3.5em;
        color: var(--primary-color);
    }

    .certificada h2::after{
        display: block;
        width: 83%;
        background: var(--blue-color);
        margin-left: 0;
    }
}

/*Nosotros*/

.nosotros{
    padding-top: 1em;
    display: flex;
    flex-wrap: wrap;
}

.info{
    order: 2;
    padding-top: 2em;
}

.info .h2{
    color: var(--grey-color);
}

.info .h2::after{
    background: var(--blue-color);
    margin-left: 0 !important;
}

.info p{
    padding-top: 1.5em;
    line-height: 2;
}

.nosotros__img{
    height: 300px;
    width: 100%;
    background:fixed url("img/laytech_nosotros.png") center/cover;
}

@media screen and (min-width:1024px){
    .info{
        width: 40%;
        margin-left:0;
    }

    .info .h2{
        font-size: 3.5em;
    }

    .nosotros__img{
        height: 592px;
        width: 50%;
        right: 0;
        position: absolute;
        background-position:right 0;
        background-size: contain;
        background-repeat: no-repeat;
    }

    
}

/*Experiencia*/


.experience{
    background: var(--primary-color);
    padding:2em 0;
    margin-top: 2em;
    padding-bottom: 4em;
}

.experience .wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    color: #fff;
    font-weight: 700;
}

.content{
    text-align: center;
    width: 150px;
    font-size: 1.2em;
    margin-bottom: 2em;
}

.content span{
    font-size: 2.25em;
    display: block;
}

@media screen and (min-width:1024px){
    .experience .wrapper{
        align-items: center;
        position: relative;
        top: 1.5em;
    }
}


/*Galeria*/


.galeria{
    margin-top: 2em;
    text-align: center;
}

.galeria h2{
    color: var(--grey-color);
}

.galeria h2::after{
    background: var(--blue-color);
}

.galeria-container{
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
    gap: 12px;
    overflow-x: auto;
}

.galeria__img{
    margin-top: 2em;
    object-fit: cover;
    width: 200px;
    height: 200px;
    cursor: pointer;
}


@media screen and (min-width:1024px){
    .galeria__img{
        width: 275px;
        height: 275px;
        transition: all .25s;
    }

    .galeria__img:hover{
        opacity: 0.3;
    }

    .galeria h2{
        color: var(--grey-color);
        font-size: 3.5em;
    }

}

/*Clientes*/

.clientes{
    text-align: center;
    margin-top: 5em;
}

.clientes h2{
    color: var(--grey-color);
}

.clientes h2::after{
    background: var(--blue-color);
}

.client-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}   

.client__img{
    margin-top: -4em;
    width: 100%;
    display: block;
    height: auto;
    transform: scale(.4);
}

@media screen and (min-width:1024px){
    .clientes h2{
        font-size: 3.5em;

    }

    .client__img{
        transform: scale(0.8);
        width:auto;
        margin-top:2em;
    }
}

/*Footer*/


.footer{
    text-align: center;
}

.footer h2{
    color: var(--grey-color);
}

.footer h2::after{
    background: var(--blue-color);
}

iframe{
    width: 100%;
    height: 350px;
}

.questions{
    margin-top: 2em;
    text-align: left;
}

.questions h3{
    margin-bottom: 1em;
}

.questions p{
    font-size: 0.9em;
    line-height: 2;
}

.form{
    margin-top: 2em;
}

.form__input{
    display: block;
    width: 100%;
    padding:1em 1em;
    margin-bottom: 1em;
    border:none;
    background: #f1f1f1;
    color: #ccc;
    font-size: 0.9em;
    font-family: "Roboto";
    font-weight: 300;
}

.form__textarea{
    font-family: "Roboto";
    font-weight: 300;
    display: block;
    width: 100%;
    padding:1em 1em;
    margin-bottom: 1em;
    border:none;
    background: #f1f1f1;
    color: #ccc;
    font-size: 0.9em;
    resize: none;
}

.form__truco{
    float: right;
}

.form__button{
    background: #242424;
    border: none;
    padding:.5em .5em;
    color: #fff;
}

.office{
    text-align: left;
    margin-top: 5em;
}

.office h3{
    margin-bottom: 1.5em;
}

.office p{
    line-height: 2;
    font-size: 0.9em;
}

.office__cotizacion{
    color: var(--blue-color);
    font-weight: 700;
    font-size: 1.2em !important;
}

.office .button{
    background: var(--green-color) !important;
    padding-left: 0;
    padding-right: 0;
    padding-top: 1.25em;
    padding-bottom:1.25em;
    display: block;
    margin:1em auto;
    width: 126px;
    text-align: center;
}

.made{
    display: block;
    margin-top: 7em;
    font-size: 0.9em;
    padding-bottom: .25em;
}

@media screen and (min-width:1024px){
    .footer h2{
        font-size: 3.5em;
    }

    .footer{
        margin-top: 5em;
        padding-bottom: 10em;
    }

    .footer-container{
        display: flex;
        justify-content: space-between;
    }

    .questions{
        width: 55%;
    }

    .footer h3{
        font-size: 1.5em;
    }

    .office{
        text-align:left;
        margin-top: 2em;
        width: 38%;
        margin-left: 0;
    }

    .office .button{
        margin-left: 0 !important;
    }

    .office__cotizacion{
        font-size: 1.5em !important;
    }

    .office .button{
        padding-left: 2em;
        padding-right: 2em;
        width: 200px;
        padding-top: .75em;
        padding-bottom: .75em;
    }

    iframe{
        margin-top: 2em;
    }
}



html.lb-disable-scrolling {
    overflow: hidden;
    /* Position fixed required for iOS. Just putting overflow: hidden; on the body is not enough. */
    position: fixed;
    height: 100vh;
    width: 100vw;
  }
  
  .lightboxOverlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color:#272727;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.9;
    display: none;
  }
  
  .lightbox {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10000;
    text-align: center;
    line-height: 0;
    font-weight: normal;
  }
  
  .lightbox .lb-image {
    display: block;
    height: auto;
    max-width: inherit;
    max-height: none;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
    /* Image border */
  }
  
  .lightbox a img {
    border: none;
  }
  
  .lb-outerContainer {
    position: relative;
    zoom: 1;
    width: 250px;
    height: 250px;
    margin: 0 auto;

  
    /* Background color behind image.
       This is visible during transitions. */

  }
  
  .lb-outerContainer:after {
    content: "";
    display: table;
    clear: both;
  }
  
  .lb-loader {
    position: absolute;
    top: 43%;
    left: 0;
    height: 25%;
    width: 100%;
    text-align: center;
    line-height: 0;
  }
  
  .lb-cancel {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto;
  }
  
  .lb-nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
  }
  
  .lb-container > .nav {
    left: 0;
  }
  
  .lb-nav a {
    outline: none;
    background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
  }
  
  .lb-prev, .lb-next {
    height: 100%;
    cursor: pointer;
    display: block;
  }
  
  .lb-nav a.lb-prev {
    width: 34%;
    left: 0;
    float: left;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    transition: opacity 0.6s;
  }
  
  .lb-nav a.lb-prev:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }
  
  .lb-nav a.lb-next {
    width: 64%;
    right: 0;
    float: right;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    -o-transition: opacity 0.6s;
    transition: opacity 0.6s;
  }
  
  .lb-nav a.lb-next:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }
  
  .lb-dataContainer {
    margin: 0 auto;
    padding-top: 5px;
    zoom: 1;
    width: 100%;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
  }
  
  .lb-dataContainer:after {
    content: "";
    display: table;
    clear: both;
  }
  
  .lb-data {
    padding: 0 4px;
    color: #ccc;
  }
  
  .lb-data .lb-details {
    width: 85%;
    float: left;
    text-align: left;
    line-height: 1.1em;
  }
  
  .lb-data .lb-caption {
    font-size: 13px;
    font-weight: bold;
    line-height: 1em;
  }
  
  .lb-data .lb-caption a {
    color: #007AFF;
  }
  
  .lb-data .lb-number {
    display: block;
    clear: left;
    padding-bottom: 1em;
    font-size: 12px;
    color: #999999;
  }
  
  .lb-data .lb-close {
    display: block;
    float: right;
    width: 30px;
    height: 30px;
    text-align: right;
    outline: none;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
    opacity: 0.7;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  
  .lb-data .lb-close:hover {
    cursor: pointer;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }

  .lb-caption{
    color: #fff;
    text-transform: uppercase;
    font-weight: 800 !important;
  }

  .lb-data .lb-number{
      color: #fff !important;
      margin-top:1em;
      opacity: 0.8;
  }


  .error{
      color: red;
  }

  .check{
    color: #509C35;
}

.mercadolibre{
  margin-top: 4rem;
  margin-bottom: 4rem;
  text-align: center;
}

.ml-bg{
  background: #FFDF59;
  padding: 4rem 0;
  padding-bottom: 6rem;
}

.mercadolibre .info-mercado img{
  height: 32px;
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  width: auto;
}

.mercadolibre .info-mercado h2{
  text-transform: initial;
  letter-spacing: 0;
  font-size: 2.5rem;
  display: block;
  margin-bottom:0.5rem;
}

.mercadolibre p{
  margin-bottom: 1.5rem;
}

.mercadolibre .info-mercado h2::after{
  display: none;
}

.mercadolibre a{
  display: inline-block;
  background: #000;
  color: #FFFFFF;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
}


/*
<a href="#">
                <img src="https://http2.mlstatic.com/D_NQ_NP_719141-MLM48982524968_012022-W.webp" alt="">
                <div class="ml-content">  
                  <h3 class="price">$1,070</h3>
                  <p class="ml-description">
                    Base De Pared Para Xbox Series X (negro)
                  </p>
                </div>
              </a>
              */

.ml-products{
  position: relative;
  gap: 24px;
  padding: 0 2rem;
  padding-bottom: 2rem;
  display: flex;
   flex-wrap: nowrap;
   overflow-x: auto;
  width: 100%;
  top: -2rem;
}

.ml-product{
  border: var(--grey-color);
  border-radius: 8px !important;
  background: white !important;
  overflow: hidden;
  padding: 0 !important;
  flex: 0 0 300px; 
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 12%);
  transition: all .3s;
}

.ml-product:hover{
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 24%);
}

.ml-product img{
  aspect-ratio: 1/1;
  object-fit: contain;
  border-bottom: 1px solid #eee;
}

.ml-content{
  padding: 16px;
  text-align: left;
}

.ml-product h3{
  color: #242424;
  font-weight: 300 !important;
  font-size: 28px;
}

.ml-description{
  font-weight: 300 !important;
  font-size: 14px;
  margin-bottom: 0.5rem !important;
  color: #272727;
}