

#page-container{
    position: absolute;
    background-image: url("/partners/campus-numeria/assets/images/futuroscope3.jpg");
    filter: blur(3px);
    width: 100%;
    height: 85vh;
    background-position: center;
    background-size: cover;
    z-index: -10;
}

#page-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.01); /* Blanc avec 70% d'opacité */
    z-index: -9;
}

#hero-container {
    display: flex;
    height: 80px;
    width: 100%;
    gap: 20px;
    justify-content: center;
    align-items: center;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#hero-container img {
    height: 50px;
    width: auto
}

#main-content{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.3);
    height: calc(100vh - 100px);
    width: 100%;
    background-position: center;
    background-size: cover;
    /* opacity: 0.7; */
}

#main-content > h1{
    margin-top: 80px;
    color: black;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
}

#main-content > p{
    color: black;
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 40px;
}

.card-wrapper{
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;

}

.card-container{
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* justify-content: center; */
    align-items: center;
    flex-wrap: wrap;
    background-color: white;
    opacity: 1;
    width: 350px;
    /* height: 450px; */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);

}

.card-image{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 350px;
    /* height: 200px; */
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
    object-fit: contain;
}

.card-container img{
    height: 200px;
    width: 350px;
    /* object-fit: contain; */
}

.adjust-fit-image img{
    padding-top: 10px;
    object-fit: contain;
}

.card-container a{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f1f1f1;
    padding: 10px;
    border-radius: 5px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s;
    color: white;
    background-color: #24A068;
    border: none;
    border-radius: 3px;
    height: 30px;
    text-decoration: none;
    font-weight: bold;

}

.card-container a:hover{
    background-color: #1E7E5D;
    transition: all 0.3s;
    text-decoration: none;
    text-decoration: none;
}

.card-element{
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.card-element div{
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    font-weight: bold;
    color: black;
}

.card-element p{
    color: black;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 500;
}
