body{
     font-family: 'Montserrat', sans-serif;
}

h1{
    font-size: 4rem;
}

h2{
    font-size: 3rem;
}

h3{
    font-size: 2rem;
}
/*HEADER*/
header{
     height: 100vh;
     background: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .4)), url(../images/Imagenes_para_pag_web/Accesorios_y_mas/header.jpg) no-repeat center center /cover;
}
/*NAVBAR*/
.nav-menu{
     background: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .5));
     padding: 30px;
     transition: all .7s;
}
.menu-item{
     font-size: 13px;
     letter-spacing: 1px;
     color: white;
     transition: color .5s;
}

.menu-item:hover{
     color: #70aed2;

}

.line1, .line2, .line3{
     width: 23px;
     height: 3px;
     margin: 5px;
     transition: all .4s;
}

.change .line1{
     transform: rotate(-45deg) translate(-5px, 6px);
}
.change .line2{
     opacity: 0;
}

.change .line3{
     transform: rotate(45deg) translate(-5px, -6px);
}

.custom-navbar {
     padding: 5px 30px;
     background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .7));
}
/*END OF NAVBAR*/
/*BANNER*/
.banner{
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 80%;
}

.banner-heading{
     animation-name: anim;
     animation-duration: 2s;
}

.banner-par{
     animation-name: anim;
     animation-duration: 2s;
     animation-delay: .5s;
     animation-fill-mode: backwards;
}

@keyframes anim {
     0%{
          transform: translateX(-100px);
          opacity: 0;
     }
     100% {
          transform: translateX(0);
          opacity: 1;
     }
}
/*END OF BANNER*/




/*END OF HEADER*/

/*mission*/
.mission{
     background: black;
}

.underline{
     width: 150px;
     border: 3px solid #eeee;
     margin: auto;
}
.fromLeft{
     animation-name: fromLeft;
     animation-duration: 3s;
}

.fromRight{
     animation-name: fromRight;
     animation-duration: 3s;
}

@keyframes fromLeft {
     0%{
          transform: translateX(-120px);
          opacity: 0;
     }
     100% {
          transform: translateX(0);
          opacity: 1;
     }
}

@keyframes fromRight {
     0%{
          transform: translateX(30px);
          opacity: 0;
     }
     100% {
          transform: translateX(0);
          opacity: 1;
     }
}

/*Collection*/
.card-shadow{
     box-shadow: 5px 8px 20px #4444;
}

.heading{
     position: absolute;
     top: 70%;
     right: 0;
     font-size: 14px;
     letter-spacing: 1px;
     background: #222;
     width: 70%;
     cursor: pointer;
     opacity: .7;
     transition: all .5s;
}

.heading:hover{
     opacity: 1;
}
/*End Collection*/
/*GALLERY*/
.underline-dark{
     width: 150px;
     border: 3px solid #888;
     margin: auto;
}
.gallery-list-item{
     color: #777;
     cursor: pointer;
     user-select: none;
}

.active-item{
     color: #70aed2;
}

.card-1{
     background: #222;
     box-shadow: 7px 18px 50px  #555;
}
.card-list-item{
     border-bottom: 1px groove #eee;
     width: 55%;
     margin: auto;
}
.price-card-button{
     background: #f5593d;
     width: 130px;
     border-radius: 25px;
     box-shadow: 5px 8px 18px #000;
     transition: all .2s;
}


.contacto{
     background: linear-gradient(105deg, rgba(21,31,32,1) 0%, rgba(21, 31, 32, .95) 50%, transparent 50%), url(../images/Imagenes_para_pag_web/Accesorios_y_mas/MECEDORA\ MONACO.jpg) center center no-repeat/cover;

}

.input{
     background: transparent;
     border-color: transparent;
     border-bottom: 2px solid #ccc;
     border-radius: 0;
     transition: all .8s;
}
.input:focus{
     background: transparent;
     border-color: transparent;
     box-shadow: none;
     color: #ffffff;
     border-bottom: 2px solid rgb(255, 0, 0);
 

}

.submit-button{
     background-color: rgb(255, 0, 0);
     color: white;
     transition: all .3s;
}

.submit-button:hover{
     background-color: rgb(187, 8, 8);
     transform: translateY(-3px);
}

.label{
     color: #777;
     display: block;
     margin-top: -70px;
     margin-left: 4px;
     font-size: 13px;
     transition: all .3s;
}
.input:placeholder-shown + .label{
     transform: translate(20px, 20px);
     opacity: 0;
    visibility: hidden;
}
@media (min-width: 0px) and (max-width: 1200px) {
.map{
width: 1600px;
height: 1600px;
}
}

@media (min-width: 0px) and (max-width: 826px) {
    h1{
    font-size: 2.5rem;
    }

    h2{
        font-size: 2rem;
        }

        h3{
            font-size: 1.5rem;
            }
    }