.container_tm {
    width: 100%;
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: row;
    position: relative;
}

.container_tm_session {
    width: 100%;
    height: calc(100vh - 130px);
    display: flex;
    flex-direction: row;
    position: relative;
    gap: 1vh;
}

.tm_pub {
    width: 10%;
    height: 100%;
}

.tm_pub img {
    height: 100%;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.tm_wrapper {
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 2vh;
}

.text_tm {
    margin-top: 2vh;
    width: 100%;
    height: auto;
    background-color: var(--vert);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.h2titretm {
    margin-top: 1vh;
    color: white;
}

.h3titretm {
    margin-top: 1vh;
    color: white;
}

.tm_wrapper p {
    width: 80%;
    color: white;
}
.tm_wrapper ol {
    text-align: start;
    color: white;
}

.tm_conditions_wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 5vh;
}

.item_condition {
    width: 50%;
    height: 100%;
    background-color: var(--vert);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.item_condition h2 {
    margin-bottom: 1vh;
}

.item_condition p {
    text-align: justify;
    color: white;
}

.list_condition {
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    color: white;
}

.item_condition ul {
    text-align: left;
    color: white;
    list-style: none;
    width: 80%;
}

.container_link_download {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--vert);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.row_download {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2vh;
}

.row_download .card_download {
    width: 20%;
    height: 90%;
    color: var(--vert);
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5vh;
    gap: 1vh;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.icon_download {
    color: var(--vert);
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon_download i {
    font-size: 50px;
}

.btn_download {
    color: var(--vert);
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn_download a {
    text-decoration: none;
    color: white;
    width: 50%;
    border-radius: 20px;
    padding: 1vh;
    background-color: var(--vert);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border: solid 2px white;
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
}

.btn_download a:hover {
    color: var(--vert);
    background-color: white;
    border: solid 2px var(--vert);
}

/* Responsive pages tm /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Responsive pages tm /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* Responsive pages tm /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

@media all and (max-width: 992px) {
    .tm_wrapper {
        height: auto;
        width: 100%;
    }

    .text_tm {
        width: 90%;
    }

    .tm_conditions_wrapper {
        flex-direction: column;
    }

    .item_condition {
        width: 90%;
    }

    .container_link_download {
        width: 90%;
    }

    .row_download {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .row_download .card_download {
        width: 90%;
    }

    .tm_pub {
        display: none;
    }
}
