.panel {
    position: absolute;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 48px;
    color: white;
    font-weight: bold;
    transition: opacity 0.5s ease;
    background-color: transparent;
    transition: background-color 0.5s ease;

}

#container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;

}

.modelo-titulo {
    flex-direction: column;
    justify-content: start;
    padding-top: 100px;
}

.red {
    background-color: #9a0000;
}

.orange {
    background-color: #094c7c;
}

.purple {
    background-color: #5c5454;
}

/* MOTOS   */

.motorcycle-item {
    width: 100%;
    height: 100%;
}

.motorcycle-item-content {
    margin: auto;
    height: 100%;
    width: 1320px;
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
}


.motorcycle-item img {
    object-fit: contain;
    width: 800px;
}


.motorcycle-item {
    display: flex;
    flex-direction: column;
}

.motorcycle-item h5 {
    font-family: 'Estricta Thin', sans-serif;
    font-size: 22px;
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
}

.motorcycle-item p {
    font-family: 'Estricta Light', sans-serif;
    font-size: 1.2rem;
    color: white;
    text-transform: uppercase;
}



@media screen and (max-width: 768px) {

    .mobile {
        display: block;
    }


    .motorcycle-item {
        flex-direction: column;
        width: 100%;
    }

    .mobileWrapper {
        padding: 0px 50px;
    }

    .modelo-titulo {
        padding: 0px 20px;
    }

    .moto-del-mes {
        display: none;
    }

    .motorcycle-item-content {
        width: 100%;
        grid-template-columns: 1fr;
        place-content: unset;
        margin-top: 60px;
        height: auto;
    }


    .motorcycle-item img {
        max-width: 100%;
        max-height: 100%;
    }

    .motorcycle-item h3 {
        font-size: 2.5rem;
        white-space: normal;
        overflow-wrap: break-word;
        word-wrap: break-word;

    }


    .motorcycle-item h2 {
        font-size: 20px;
    }


}