/* FONTS */
@import "fonts.css";
/* VARIABLES */
@import "commons.css";
/* GENERAL */
body, .scroll {
    background-color: var(--black);
}

footer {
    background-color: var(--cream);
}

.banner-movilgrill {
    background-image: url("../images/movilgrill/banner.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100vh;
}

.btn-movilgrill {
    font-size: 25px;
    color: var(--black);
    font-family: var(--adineueLight);
    background-color: var(--white);
    border: 1px solid var(--white);
    border-radius: 40px;
    padding: 10px 35px;
    letter-spacing: 3px;
    margin: 70px 0;
    text-decoration: none;
}

.btn-movilgrill:hover {
    color: var(--white);
    background-color: transparent;
}

.bg-typo {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--white);
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    font-family: var(--adineueBlack);
    letter-spacing: 6px;
    font-size: 20vw;
    line-height: normal;
    margin: 0;
    padding: 0;
    position: relative;
    width: fit-content;
    display: inline-block;
}

.bg-typo::before {
    position: absolute;
    content: attr(data-text);
    top: 0;
    left: 0;
    -webkit-text-fill-color: var(--white);
    width: 0;
    overflow: hidden;
    transition: 0.5s;
}
.bg-typo:hover::before {
    width: 100%;
}

.mb-100-neg {
    margin-bottom: -100px;
}

/* CARDS */
.card-specs {
    background-color: #E9E9E9;
    width: 200px;
    height: 200px;
    padding: 15px;
    margin: 5px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
}
.card-specs.left {
    margin-right: -70px;
}

.card-specs.right {
    margin-left: -70px;
}

/* HOVER ANIMATION */
.gallery-item a img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    border: 2px solid transparent;
}
.gallery-item a:hover img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    border: 2px solid var(--white);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

/* RRSS ICONS */
.followus h5 {
    color: var(--white);
}
.followus .rrss-movil {
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 50px;
    padding: 14px 22px;
}

.followus .rrss-movil.ig {
    padding: 15px 18px;
}

.followus .rrss-movil.mail {
    padding: 12px 13px !important;
}

.followus .rrss-movil:hover {
    color: var(--black);
    background-color: var(--white);
}

.followus .rrss-movil svg {
    position: relative;
    top: 6%;
}

/* RESPOSIVE */
@media (min-width: 1400px) {
    .mb-100-neg {
        margin-bottom: -140px;
    }
}
@media (max-width: 1400px) {
    .card-specs {
        width: 180px;
        height: 180px;
    }
    .card-specs.left {
        margin-right: -50px;
    }

    .card-specs.right {
        margin-left: -50px;
    }
}
@media (max-width: 1200px) {
    .mb-100-neg {
        margin-bottom: -80px;
    }
    .card-specs {
        width: 150px;
        height: 150px;
    }
    .card-specs p {
        font-size: 14px;
    }
}
@media (max-width: 992px) {
    .mb-100-neg {
        margin-bottom: -60px;
    }
    .card-specs {
        width: 30%;
        height: 100px;
    }
    .card-specs.left {
        margin-right: 0;
        margin-bottom: -15px;
    }

    .card-specs.right {
        margin-left: 0;
        margin-top: -20px;
    }
}
@media (max-width: 768px) {
    .mb-100-neg {
        margin-bottom: -50px;
    }
    .banner-movilgrill {
        height: 400px;
    }
}
@media (max-width: 576px) {
    .bg-typo {
        font-size: 18vw;
    }
    .btn-movilgrill {
        font-size: 15px;
        margin: 30px 0;
    }
    .card-specs {
        width: 40%;
        height: 140px;
        margin: -20px 0;
    }
    .card-specs p {
        font-size: 13px;
    }
}
@media (max-width: 480px) {
    .mb-100-neg {
        margin-bottom: -30px;
    }
}