body {
    /* background-color: #ffb400; */
    font-family: 'Montserrat', sans-serif;
    color: #ff0000;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

h1 span {
    font-weight: 900;
}

.logo {
    display: block;
    margin: auto;
    max-width: 400px;
    width: 100%;
}

.img-header {
    max-width: 900px;
    display: block;
    margin: auto;
    width: 100%;
}

.btn {
    background-color: #ff0000;
    padding: 2% 7%;
    border-radius: 15px;
    align-items: center;
    font-size: 1.3rem;
    line-height: 1.45rem;
    display: block;
    margin: auto;
    text-align: center;
}

.btn:hover {
    background-color: #ff7300;
    box-shadow: 2px 3px 15px rgba(180, 132, 0, 0.35);
}

.btn.llamar:before {
    content: "";
    background-image: url(../img/phone-call.svg);
    background-size: contain;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    position: relative;
    top: 4px;
}

.text-center {
    text-align: center;
}

a {
    text-decoration: none;
    font-weight: 600;
    color: white !important;
}

.botones {
    align-items: center;
    justify-content: space-around;
    flex-wrap: nowrap;
}

@media screen and (max-width:768px) {
    .botones .btn {
        margin-top: 20px !important;
        padding: 5%;
    }
}

footer {
    background-color: white;
    padding: 3% 5%;
    margin: 0;
}

@media screen and (max-width:768px) {
    footer {
        padding-bottom: 30%;
    }
}

.direccion {
    background-color: #839f33;
    margin-top: 3rem;
    color: white;
    padding: 2%;
    text-align: center;
}

.justify-content-center {
    justify-content: center;
}

@media screen and (max-width:768px) {
    .menu {
        background-image: url(../img/menu-movil.jpg);
        background-size: 100%;
        width: 100%;
        height: 8000px;
        background-repeat: no-repeat;
    }

    .direccion {
        padding: 10% 4%;
    }
}

@media screen and (min-width:768px) {
    .menu {
        background-image: url(../img/menu-desktop.jpg);
        background-size: 100%;
        width: 100%;
        height: 3500px;
        background-repeat: no-repeat;
        background-position: center;
    }
}

.menu-bg {
    background-color: #FDC648;
}

.fixed {
    border-radius: 0 !important;
    position: fixed;
    right: 0;
}

.apps {
    margin: 10px;
}


/* ANIMATION */

.bg {
    animation: slide 3s ease-in-out infinite alternate;
    background-image: linear-gradient(-60deg, #ffb400 50%, #ff9100 50%);
    bottom: 0;
    left: -50%;
    opacity: .5;
    position: fixed;
    right: -50%;
    top: 0;
    z-index: -1;
}

.bg2 {
    animation-direction: alternate-reverse;
    animation-duration: 4s;
}

.bg3 {
    animation-duration: 5s;
}

@keyframes slide {
    0% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(25%);
    }
}