.banner_page {
    background-image: url("../images/image-exposants.png");
}
.nav {
    background-color: white;
}
.nav ul {
    background-color: white;
}
a {
    color: black;
}
.main {
    margin-top: 2rem;
}
.main .intro {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.main .intro i {
    font-size: 2rem;
    color: rgba(128, 128, 128, 0.77);
    cursor: pointer;
    transition: 0.2s all ease-in-out;
}
.main .intro i:hover {
    color: #004aad;
}
.main .btns {
    margin: 20px 0;
    display: flex;
}

.main .btns button {
    width: 50%;
    border: none;
    padding: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease-in-out all;
}
.main .btns button:hover {
    background-color: #60c338;
    color: white;
}
.active {
    background-color: #60c338;
    color: white;
}
.tab-content {
    display: none;
}
.tab-content .activite {
    display: flex;
}
.tab-content .activite .heure {
    flex: 1;
    font-size: 20px;
    text-align: center;
    border-top: 3px solid #60c338;
    padding: 10px;
}
.tab-content .activite .programme {
    flex: 4;
    border-top: 1px solid black;
}
.tab-content .activite .programme .titre {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-size: 20px;
}
.tab-content .activite .programme .titre span i {
    color: #004aad;
}
.tab-content .activite .detail {
    display: none;
    padding: 5px;
    background-color: #dddddd25;
}
.tab-content .activite .detail ul {
    list-style-type: none;
}

.btn-inscription {
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    color: #fff;
    background-color: #004aad;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 25px;
    transition: all 0.2s ease-out;
    margin: 0.5rem 0;
    text-align: center;
}
.btn-inscription i{
    margin-left: 5px;
    transition: transform 0.5s ease;
}
.btn-inscription:hover i {
    transform: translateX(5px);
}
@media (max-width: 768px) {
    .tab-content .activite{
        flex-direction: column;
    }
}