@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}


:root {
    --bleufonce: #343F59;
    --bleu: #467BA9;
    --bleuclair: #8BB4D2;

    --gris: #E9E9F0;
    --blanc: #F4F4F8;

    --jaune: #FBBC34;
    --jauneclair: #FFC74F;
}

* {
    margin: 0;
    padding: 0;
    /* cursor: url("https://birhdy.net/images/logo_birhdy_picto_blanc.png"), auto !important; */
}

body {
    background-color: var(--bleuclair);
}

.container {
    height: fit-content;
    text-align: center;
    position: relative;
}

.logo_container {
    position: relative;
    margin-top: 5%;
}

.logo {
    width: 25%;
    margin: auto;
    position: relative;
}


.text_container {
    position: relative;
    margin-top: 2%;
    margin-bottom: 4%;
}

.text_container p {
    font-size: 1.2rem;
}


.buttons_container {
    display: flex;
    width: 60%;
    height: fit-content;
    margin: auto;
    justify-content: space-around;
}


@media screen and (max-width: 1600px) {
    .buttons_container {
        display: flex;
        flex: wrap;
        gap: 1Rem;
        flex-direction: column;
        width: 60%;
        height: fit-content;
        margin: 2rem auto;
        align-items: center;
    }
}

/* CARDS */

.card1 {
    position: relative;
    width: 20rem;
    height: 9rem;
    background-color: var(--bleufonce);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card1 a {
    text-decoration: none;
}

/* .card1 a:hover {
    cursor: url("/images/logo_birhdy_picto_blanc.png"), auto !important;
} */

.card1 .logo {
    width: 100%;
}

.card1 p {
    color: #fff;
}

.card1:hover {
    opacity: 0.8;
}


.card2 {
    position: relative;
    width: 20rem;
    height: 9rem;
    background-color: #d9e8eb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card2 a {
    text-decoration: none;
}

.card2 .logo {
    width: 90%;
}

.card2 p {
    color: var(--bleufonce);
}

.card2:hover {
    opacity: 0.8;
}



.card3 {
    position: relative;
    width: 20rem;
    height: 9rem;
    background-color: var(--bleu);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card3 a {
    text-decoration: none;
}

.card3 .logo {
    width: 45%;
}

.card3 p {
    color: #fff;
}

.card3:hover {
    opacity: 0.8;
}

@media screen and (max-width: 700px) {
    .card1 {
        padding: 0.5rem 1rem;
    }

    .card2 {
        padding: 0.5rem 1rem;
    }

    .card3 {
        padding: 0.5rem 1rem;
    }
}