* {
    margin: 0;
    padding: 0;
    font-family: 'Satoshi', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #e3efe6;
}

.Background-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 25%;
}

/*Home*/
#bg-image {
    background-image: url(https://www.alreporter.com/wp-content/uploads/2024/04/School-funding-photo-scaled-e1712832020417-1024x576.webp);
}

.bg-blur {
    background-color: #0000005e;
}

@media (min-width: 1024px) {
    .Bacground-image {
        background-position: center;
    }

    .bg-blur {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.692) 25%, rgba(0, 0, 0, 0));
    }
}

.bg-blur-white {
    background-color: rgba(205, 204, 204, 0.537);
    /* Couleur blanche semi-transparente */
    backdrop-filter: blur(10px);
    /* Appliquer le flou */
    -webkit-backdrop-filter: blur(10px);
}

.Text-Animation {
    animation: 1s ease-out Text;
}

@keyframes Text {
    from {
        opacity: 0;
        margin-bottom: -40vh;
    }

    to {
        opacity: 1;
        margin-bottom: 0vh;
    }
}

/*About*/
#bg-about {
    background-image: url(https://a8d50b36.delivery.rocketcdn.me/wp-content/uploads/funding-education-opportunity-scaled.jpg);
}

/*Activities*/
#bg-activities {
    background-image: url(https://www.usnews.com/object/image/0000018a-3d19-dfa2-ab9f-bfdd163c0000/gettyimages-1355430861.jpg?update-time=1693242221902&size=responsive640);
}

.card-academics div:last-child{
    opacity: 0;
}

.card-academics:hover {
    div:first-child {
        opacity: 0;
    }

    div:last-child {
        opacity: 1;
    }
}

.cards-Choose:hover{
   margin-top: -6vh;
   box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.397);
}