* {
    padding: 0;
    margin: 0;
}

.fitness {
    overflow: hidden;
    background: #091538;
    padding-top: 11px;
}

.horariosDesktop{
    display: initial;
}

.horariosMobile{
    display: none;
}
.mobileElement {
    display: none;
}

div.darkTable {
    background-color: #091538;
    width: 80%;
    margin: 0 auto 5rem;
    text-align: left;
    border-collapse: collapse;
    display: flex;
    justify-content: space-between;
}

.container-table {
    margin-top: 4rem;
}

.tr {
    width: 100%;
}

div.darkTable .td {
    border-bottom: 1px solid white;
    height: 70px;
    padding-left: 20px;
}

div.darkTable .td {
    font-size: 13px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

div.darkTable .tr:nth-child(even) {
    background: #091538;
}

div.darkTable .thead {
    background: rgba(255, 255, 255, 0.35);
}

div.darkTable .thead .th {
    font-size: 20px;
    font-weight: 800;
    color: white;
    text-align: left;
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.td span,
.td p {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
}

.td p {
    font-weight: 600;
}

.containerTitle {
    background: #0ee696;
}

b {
    font-weight: bolder;
}

.containerTitle div {
    padding: 1rem 0;
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.containerTitle div h2 {
    font-weight: 700;
    font-size: 27px;
    color: #091538;
    line-height: 32px;
}

.button {
    width: 110px;
    height: 40px;
    border: none;
    border-radius: 50px;
    color: #091538;
    background: #0ee696;
    border: 2px solid#091538;
    font-weight: 900;
    transition: 1s all ease-in-out;
}

.button:hover {
    color: white;
    border: 2px solid #0ee696;
    background-color: #091538;
}

@media screen and (max-width: 780px) {
    .mobileElement {
        display: block;
    }

    .arrow-container-img {
        width: 20%;
    }

    .containerTitle div {
        display: block;
        text-align: center;
    }

    .button {
        width: 200px;
    }

    .container-table {
        position: relative;
        margin-top: 3rem;
    }

    .containerTitle div {
        padding: 2rem 0;
    }

    .container-arrows {
        display: flex;
        width: 60%;
        margin: 2rem auto;
        justify-content: center;
        gap: 20px;
    }

    .horariosDesktop{
        display: none;
    }
    
    .horariosMobile{
        display: block;
        left: 0 !important;
        height: auto !important;
    }
    div.darkTable .thead .th {
        text-align: center;
        padding-left: 0;
    }

    div.darkTable .td {
        text-align: center;
        padding-left: 0;
    }

    .containerTitle div h2 {
        margin-bottom: 1rem;
    }

    .button {
        width: 190px;
        height: 40px;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1025px) {
    div.darkTable {
        width: 90%;
    }

    div.darkTable .thead .th {
        font-size: 17px;
    }


    .td span,
    .td p {
        font-size: 13px;
    }
}