body {
    padding: 0;
    margin: 0;
}

/* Estilos generales */
.desktop-container {
    display: block;
    /* Por defecto, ocultamos el container de escritorio */
}

.mobile-container {
    display: block;
    /* Por defecto, mostramos el container móvil */
}

/* Media query para pantallas de escritorio */
@media screen and (min-width: 768px) {
    .container-desktop {
        display: block;
        /* Mostramos el container de escritorio en pantallas grandes */
    }

    .mobile-container {
        display: none;
        /* Ocultamos el container móvil en pantallas grandes */
    }

    .footer-container {
        padding-top: 8%;
    }

    .footer-address {
        padding: 2%;
    }

    .footer-hours {
        padding: 2%;
        font-size: 11px;
    }

    .footer-address img {
        position: absolute;
        left: 0px;
        top: 50%;
        transform: translateY(-50%);
        width: 17px;
    }
}

/* Media query para pantallas móviles */
@media screen and (max-width: 767px) {
    .desktop-container {
        display: none;
        /* Ocultamos el container de escritorio en pantallas pequeñas */
    }

    .mobile-container {
        display: block;
        /* Mostramos el container móvil en pantallas pequeñas */
    }

    .footer-container {
        padding-top: 16%;
    }

    .footer-address {
        padding: 2%;
        font-size: 10px;
    }

    .footer-hours {
        padding: 2%;
        font-size: 11px;
    }

    .footer-address img {
        position: absolute;
        left: -14px;
        top: 50%;
        transform: translateY(-50%);
        width: 15px;
    }
}

#menu {
    position: absolute;
    right: 25px;
    top: 40px;
    color: #fff;
    background: rgb(0 0 0 / 57%);
    display: block;
    width: 100px;
    height: 33px;
}

#menu p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Gotham', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin: 0;
    font-size: 20px;
    color: #fff;

}

.item-row {
    line-height: 0;
}

.item-row img {
    width: 100%;
}

.item-col {
    width: 50%;
    display: inline-block;
    font-size: 0;
    overflow: hidden;
    position: relative;
}

.desktop-container .item-col video {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0.3%;
}

.mobile-container .item-row video {
    width: 100%;
}

#welcome-text {
    position: absolute;
    top: 0;
    left: 0;
}

.footer-container {
    text-transform: uppercase;
    background: #000;
    color: #fff;
    text-align: center;
    border-bottom: 8px solid #A26F14;
}

.footer-logo {
    width: 57%;
    max-width: 400px;
    margin: auto;
}

.footer-logo img {
    width: 100%;
}

.footer-address {
    font-family: 'Gotham', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}



.footer-hours {
    font-family: 'Gotham Light', sans-serif;
    margin-bottom: 3%;
    letter-spacing: 2px;
}

.footer-social img {
    width: 60%;
    max-width: 280px;
}

.footer-copyright {
    font-family: 'Gotham Light', sans-serif;
    letter-spacing: 2px;
    margin-top: 6%;
}

video::-webkit-media-controls {
    display: none !important;
}

video::-webkit-media-controls-enclosure {
    display: none !important;
}

video::-webkit-media-controls-play-button {
    display: none !important;
}

video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

video::-webkit-media-controls-overlay-play-button {
    display: none !important;
}

video::-webkit-media-controls-timeline {
    display: none !important;
}

video::-webkit-media-controls-current-time-display {
    display: none !important;
}

video::-webkit-media-controls-time-remaining-display {
    display: none !important;
}

video::-webkit-media-controls-mute-button {
    display: none !important;
}

video::-webkit-media-controls-volume-slider {
    display: none !important;
}

video::-webkit-media-controls-volume-slider-container {
    display: none !important;
}

video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}