
body {
    margin: 0;
    background-image: url('Fondo4-Web.jpg');
    background-size: cover;
    background-attachment: fixed;
}
#copy{
    font-family: 'salamander', sans-serif;
    font-size: 1.6em;
    color: #fff;
}
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(14, 29, 51, 0.8), rgba(14, 29, 51, 0.2));
}
.inner {
    position: relative;
    transform: translateY(-20%);
    color: white;
    text-align: center;
}

.title {
    font-family: 'salamander', sans-serif;
    font-size: 3rem;
    line-height: 1.2em;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
}
.inner .btn {
    border: 1px solid #fff;
    padding: 14px 18px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
    

}
.inner .btn:hover {
    background: orange;
    color: #000;
}

.logo{
    height: 250px;
    position: absolute;
    z-index: 1;
    padding-top: 30px;
}
.container-grid{
    display: grid;
    height: 80vh;
    width: 66%;
    grid-template-columns: repeat(5,1fr);
    grid-template-rows:repeat(6,1fr);
    grid-template-areas: 
    "img1 img2 img3 img3 img3"
    "img1 img2 img3 img3 img3"
    "img4 img4 img3 img3 img3"
    "img4 img4 img3 img3 img3"
    "img6 img6 img5 img5 img5"
    "img6 img6 img5 img5 img5"
    ;
    gap: 5px;
    margin: auto;
    padding-top: 13px;
}
.img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img:hover{
    filter: grayscale(50%);
    cursor: pointer;
    transition: filter .5s;
}
.img-1{
    grid-area: img1;
}
.img-2{
    grid-area: img2;
}
.img-3{
    grid-area: img3;
}
.img-4{
    grid-area: img4;
}
.img-5{
    grid-area: img5;
}
.img-6{
    grid-area: img6;
}

.container-img{
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    background: rgb(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform .4s ease-in;
    padding-top: 200px;
}

.img-show{
    height: 80%;
    transform: scale(0);
    display: block;
    object-fit: cover;
    transition: transform .2s .4s;
}
.move{
    transform: translateX(0);
}
.show{
    transform: scale(1);
}
.copy{
    position: fixed;
    color: orange;
    bottom: 10px;
    font-family: 'salamander' , sans-serif;
    font-size: 50px;

}


/*resposive*/
@media screen and (min-width:200px){
    .inner .btn {
        border: 1px solid white;
        padding: 10px 0px;
        text-transform: uppercase;
        font-family: 'salamander', sans-serif;
        font-size: 1.4rem;
        letter-spacing: 8px;
        color: white;
        text-decoration: none;
        transition: all 0.2s ease;
        display: block;
    }
    .inner{
    position: relative;
    transform: translateY(-10%);
    color: orange;
    text-align: center;
    z-index: 2;
    }

    .inner .title {
        font-size: 3.9rem;
    }

    .logo{
        height: 150px;
        position: relative;
        z-index: 2;
        padding: 1px;
    }
    #copy{
        font-family: 'salamander', sans-serif;
        font-size: 1.6em;
        color: #fff;
        position:relative;
        margin: 0;

    }
    .container-grid{
        display: grid;
        height: 40vh;
        width: 400px;
        position: relative;
        z-index: 3;
        grid-template-columns: repeat(5,1fr);
    grid-template-rows:repeat(6,1fr);
    grid-template-areas: 
    "img1 img2 img3 img3 img3"
    "img1 img2 img3 img3 img3"
    "img4 img4 img3 img3 img3"
    "img4 img4 img3 img3 img3"
    "img6 img6 img5 img5 img5"
    "img6 img6 img5 img5 img5"
    ;
    gap: 5px;
    margin: auto;
    padding-top: 13px;
    }

    .container-img {
        padding-top: 20px;
    }
    /*Lightbox*/

    .img-show{
        width: 95%;
        height: 30%;
    }
    .copy{
        font-size: 25px;
        bottom: 210px;
        font-family: 'salamander' , sans-serif;

    }

    .bx.bx-x{
        top: 500px;
        font-size: 25px;
    }
    .social{
        width: 70vw;
        height: 100px;
        position: absolute;
        z-index: 4;
        display: block;
        text-align: end;
        padding-left: 100px;
      }
    .fa-instagram{
        color: orange;
        font-size: 40px;
        padding: 4px;
        cursor: pointer;
        text-decoration: none;
    }
    .fa-instagram:hover{
        color:white;
    }
    .fa-facebook-square{
        color: orange;
        font-size: 40px;
        padding: 4px;
        cursor: pointer;
        text-decoration: none;
    }
    .fa-facebook-square:hover{
        color: white;
    }
    
    .fa-map-marked-alt{
        color: orange;
        font-size: 40px;
        padding: 4px;
        cursor: pointer;
        text-decoration: none;
    }
    
    .fa-map-marked-alt:hover{
        color: white;
    }
    .fa-phone-square{
        color: orange;
        font-size: 40px;
        padding: 4px;
        cursor: pointer;
        text-decoration: none;
    }
    .fa-phone-square:hover{
        color: white;
    }
}

@media screen and (min-width:480px){
    .inner .btn {
        border: 1px solid white;
        padding: 10px 0px;
        text-transform: uppercase;
        font-family: 'salamander', sans-serif;
        font-size: 1.6rem;
        letter-spacing: 12px;
        color: white;
        text-decoration: none;
        transition: all 0.2s ease;
        display: block;
    }
    .inner{
    position: relative;
    transform: translateY(1%);
    color: orange;
    text-align: center;
    z-index: 2;
    }

    .inner .title {
        font-size: 3.6rem;
    }
    .logo{
        height: 200px;
        position: relative;
        z-index: 1;
    
    }
    .container-grid{
        display: grid;
        height: 50vh;
        width: 480px;
        padding-top: 20px;
    }

    .container-img {
        padding-top: 20px;
    }
    /*Lightbox*/

    .img-show{
        width: 90%;
        height: 35%;
    }
    .copy{
        font-size: 25px;
        bottom: 190px;
        font-family: 'salamander' , sans-serif;

    }

    .bx.bx-x{
        top: 350px;
        font-size: 30px;
    }
    .social{
        width: 78vw;
        height: 100px;
        position: absolute;
        z-index: 4;
        display: block;
        text-align: end;
        padding-left: 100px;
      }
    .fa-instagram{
        color: orange;
        font-size: 45px;
        padding: 6px;
        cursor: pointer;
        text-decoration: none;
    }
    .fa-instagram:hover{
        color:white;
    }
    .fa-facebook-square{
        color: orange;
        font-size: 45px;
        padding: 6px;
        cursor: pointer;
        text-decoration: none;
    }
    .fa-facebook-square:hover{
        color: white;
    }
    
    .fa-map-marked-alt{
        color: orange;
        font-size: 45px;
        padding: 6px;
        cursor: pointer;
        text-decoration: none;
    }
    
    .fa-map-marked-alt:hover{
        color: white;
    }
    .fa-phone-square{
        color: orange;
        font-size: 45px;
        padding: 6px;
        cursor: pointer;
        text-decoration: none;
    }
    .fa-phone-square:hover{
        color: white;
    }
}

@media screen and (min-width:768px){
    .inner .btn {
        border: 1px solid white;
        padding: 10px 18px;
        text-transform: uppercase;
        font-family: 'salamander', sans-serif;
        font-size: 1.4rem;
        letter-spacing: 2px;
        color: white;
        text-decoration: none;
        transition: all 0.2s ease;
        display: inline;
    }
    .inner{
    position: relative;
    transform: translateY(-40%);
    color: orange;
    text-align: center;
    z-index: 2;
    }

    .inner .title {
        font-size: 5.2rem;
    }
    .logo{
        height: 250px;
        position: relative;
        z-index: 1;
    
    }
    /*Lightbox*/
    .container-grid{
        display: grid;
        height: 60vh;
        width: 754px;
        padding-top: 0;
    }

    .container-img {
        padding-top: 0px;
    }

    .img-show{
        width: 90%;
        height: 57%;
    }
    .copy{
        bottom: 80px;
        font-size: 30px;
        font-family: 'salamander' , sans-serif;

    }

    .bx.bx-x{
        top: 350px;
        font-size: 25px;
    }
    .social{
        width: 85vw;
        height: 100px;
        position: absolute;
        z-index: 4;
        display: block;
        text-align: end;
        padding-left: 90px;
      }
    .fa-instagram{
        color: orange;
        font-size: 50px;
        padding: 8px;
        cursor: pointer;
        text-decoration: none;
    }
    .fa-instagram:hover{
        color:white;
    }
    .fa-facebook-square{
        color: orange;
        font-size: 50px;
        padding: 8px;
        cursor: pointer;
        text-decoration: none;
    }
    .fa-facebook-square:hover{
        color: white;
    }
    
    .fa-map-marked-alt{
        color: orange;
        font-size: 50px;
        padding: 8px;
        cursor: pointer;
        text-decoration: none;
    }
    
    .fa-map-marked-alt:hover{
        color: white;
    }
    .fa-phone-square{
        color: orange;
        font-size: 50px;
        padding: 8px;
        cursor: pointer;
        text-decoration: none;
    }
    .fa-phone-square:hover{
        color:white;
    }
}
@media screen and (min-width:1024px){
    .inner .btn {
        border: 1px solid white;
        padding: 10px 30px;
        text-transform: uppercase;
        font-family: 'salamander', sans-serif;
        font-size: 1.9rem;
        letter-spacing: 4px;
        color: white;
        text-decoration: none;
        transition: all 0.2s ease;
        display: inline;
    }
    .inner{
    position: relative;
    transform: translateY(-54%);
    color: orange;
    text-align: center;
    z-index: 2;
    }

    .inner .title {
        font-size: 6.0rem;
    }
    .container-grid{
    display: grid;
    height: 60vh;
    width: 950px;

}

.container-img{
    padding-top: 0px;
}
.img-show{
    width: 90%;
    height: 50%;
}
.copy{
    font-size: 40px;
    bottom: 210px;
    font-family: 'salamander' , sans-serif;

}
.bx.bx-x{
    top: 600px;
    font-size: 40px;
}
.logo{
    height: 250px;
    position: relative;
    z-index: 1;
    padding: 20px;
}
.social{
    width: 90vw;
    height: 100px;
    position: absolute;
    z-index: 4;
    display: block;
    text-align: end;
    padding-left: 90px;
  }
.fa-instagram{
    color: orange;
    font-size: 50px;
    padding: 10px;
    cursor: pointer;
    text-decoration: none;
}
.fa-instagram:hover{
    color:white;
}
.fa-facebook-square{
    color: orange;
    font-size: 50px;
    padding: 10px;
    cursor: pointer;
    text-decoration: none;
}
.fa-facebook-square:hover{
    color: white;
}

.fa-map-marked-alt{
    color: orange;
    font-size: 50px;
    padding: 10px;
    cursor: pointer;
    text-decoration: none;
}

.fa-map-marked-alt:hover{
    color: white;
}
.fa-phone-square{
    color: orange;
    font-size: 50px;
    padding: 10px;
    cursor: pointer;
    text-decoration: none;
}
.fa-phone-square:hover{
    color: white;
}
}
@media screen and (min-width:1248px){

    .inner .btn {
        border: 1px solid white;
        padding: 10px 30px;
        text-transform: uppercase;
        font-family: 'salamander', sans-serif;
        font-size: 2.0rem;
        letter-spacing: 4px;
        color: white;
        text-decoration: none;
        transition: all 0.2s ease;
        display: inline;
    }
    .inner{
    position: relative;
    transform: translateY(-100%);
    color: orange;
    text-align: center;
    z-index: 2;
    }

    .inner .title {
        font-size: 6.0rem;
    }
    .container-grid{
        height: 80vh;
        width: 1100px;
        padding-top: 0px;
        display: grid;
        margin-top: -80px;
    }
    
    .container-img{
        padding-top: 5px;
    }
    .img-show{
        width: 80%;
        height: 80%;
    }
    .copy{
        font-size: 40px;
        bottom: -40px;
        font-family: 'salamander' , sans-serif;

    }
    .bx.bx-x{
        top: 60px;
        font-size: 40px;
    }
    .logo{
        height: 200px;
        position: relative;
        z-index: 1;
    }
    .social{
        width: 90vw;
        height: 100px;
        position: absolute;
        z-index: 4;
        display: block;
        text-align: end;
        padding-left: 100px;
      }
    .fa-instagram{
        color: orange;
        font-size: 60px;
        padding: 10px;
        cursor: pointer;
        text-decoration: none;
    }
    .fa-instagram:hover{
        color:white;
    }
    .fa-facebook-square{
        color: orange;
        font-size: 60px;
        padding: 10px;
        cursor: pointer;
        text-decoration: none;
    }
    .fa-facebook-square:hover{
        color: white;
    }
    
    .fa-map-marked-alt{
        color: orange;
        font-size: 60px;
        padding: 10px;
        cursor: pointer;
        text-decoration: none;
    }
    
    .fa-map-marked-alt:hover{
        color: white;
    }
    .fa-phone-square{
        color: orange;
        font-size: 60px;
        padding: 10px;
        cursor: pointer;
        text-decoration: none;
    }
    .fa-phone-square:hover{
        color: white;
    }
}