.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;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main hr {
    margin-bottom: 2rem;
}

.container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}
.panel {
    width: 100%;
}
.image {
    width: 200px;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.salle {
    font-size: 2em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.theme {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.moderateur {
    font-size: 1.1em;
    color: #777;
    font-style: italic;
}

.paneliste {
    width: 200px;
    text-align: center;
    background-color: #fff;
    overflow: hidden;
    padding: 10px;
    transition: 0.3s ease-in-out;
}

.personne {
    font-size: 1.2em;
    color: #004aad;
    font-weight: bold;
}

.profil {
    color: #333;
    margin-top: 10px;
  	font-weight: bold;
}

.sous-theme {
    font-size: 1em;
    color: #666;
    margin-top: 5px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .container {
        justify-content: center;
    }
}

.linkedin-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(51, 51, 51, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.linkedin {
    font-size: 2rem;
    transition: 0.3s ease-in-out;
    color: #fff;
}

.linkedin:hover {
    color: #004aad;
}

.paneliste:hover .linkedin-link {
    transform: translateY(0);
    opacity: 1;
}

.paneliste:hover .linkedin-logo {
    opacity: 1;
}
.see-more {
    color: blue;
    font-style: italic;
    cursor: pointer;
}

.more {
    display: none;
}

.less {
    display: inline;
}