@import url('https://fonts.googleapis.com/css2?family=Jomolhari&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Khand:wght@300;400;500;600;700&display=swap');


body {
    font-family: "Khand", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.image {
    transition: transform 0.3s ease;

}

.image:hover {
    transform: scale(1.1);
    border: solid 1px #000;
}

th {
    font-family: "Khand", sans-serif;
    font-weight: 600;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Jomolhari", serif;
    font-weight: 400;
    font-style: normal;
}

#bgheader {
    background-image: url(../../images/bggg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
}

.input {
    border-radius: 5%, 5%, 5%, 5%;
}

.input {
    padding: 6px;
    font-size: 19px;
    border-width: 0px;
    border-color: #0f6dad;
    background-color: #ffffff94;
    color: #000000;
    border-style: solid;
    border-radius: 12px;
    box-shadow: 0px 0px 6px rgba(15, 109, 173, .75);
    text-shadow: 0px 0px 5px rgba(66, 66, 66, .75);
}

.input:focus {
    outline: none;
}

.title1 {
    font-size: 40px;
    font-weight: 700;
    color: #0F6DAD;
}

.input1 {
    width: 250px;
    height: 44px;
    flex-shrink: 0;
    fill: rgba(255, 255, 255, 0.50);
    stroke-width: 1px;
    stroke: #0E5673;
    border-radius: 10px;
}

.button1 {
    color: #ffffff;
    font-size: 20px;
    width: 216px;
    height: 43px;
    background-color: rgba(14, 86, 115, 0.50);
    stroke-width: 1px;
    stroke: #0E5673;
    border-radius: 10px;

    &:hover {
        background-color: rgba(14, 86, 115, 0.70);
    }
}

.button2 {
    color: #ffffff;
    font-size: 20px;
    width: 216px;
    height: 43px;
    background-color: rgba(14, 86, 115, 0);
    stroke-width: 1px;
    stroke: #0E5673;
    border-radius: 10px;

    &:hover {
        background-color: rgba(14, 86, 115, 0.70);
    }
}

.couleur1 {
    background: linear-gradient(#ABB3C2 100%,

        );

}

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@600;700&display=swap');

* {
    box-sizing: border-box;
}

.page-contain {
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    background: #E7F3F1;
    border: .75em solid white;
    padding: 2em;
    font-family: 'Open Sans', sans-serif;
}

.data-card {
    display: flex;
    flex-direction: column;
    max-width: 20.75em;
    min-height: 20.75em;
    overflow: hidden;
    border-radius: .5em;
    text-decoration: none;
    background: white;
    margin: 1em;
    padding: 2.75em 2.5em;
    box-shadow: 0 1.5em 2.5em -.5em rgba(#000000, .1);
    transition: transform .45s ease, background .45s ease;

    h3 {
        color: #2E3C40;
        font-size: 3.5em;
        font-weight: 600;
        line-height: 1;
        padding-bottom: .5em;
        margin: 0 0 0.142857143em;
        border-bottom: 2px solid #0E5673;
        transition: color .45s ease, border .45s ease;
    }

    h5 {
        color: #627084;
        text-transform: uppercase;
        font-size: 10px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.1em;
        margin: 0 0 1.777777778em;
        transition: color .45s ease;
    }

    p {
        opacity: 0;
        color: #FFFFFF;
        font-weight: 600;
        line-height: 1.8;
        margin: 0 0 1.25em;
        transform: translateY(-1em);
        transition: opacity .45s ease, transform .5s ease;
    }

    .link-text {
        display: block;
        color: #0E5673;
        font-size: 1.125em;
        font-weight: 600;
        line-height: 1.2;
        margin: auto 0 0;
        transition: color .45s ease;

        svg {
            margin-left: .5em;
            transition: transform .6s ease;

            path {
                transition: fill .45s ease;
            }
        }
    }

    &:hover {
        background: #0E5673;
        transform: scale(1.02);

        h3 {
            color: #FFFFFF;
            border-bottom-color: #0E5673;
        }

        h4 {
            color: #FFFFFF;
        }

        p {
            opacity: 1;
            transform: none;
        }

        .link-text {
            color: #FFFFFF;

            svg {
                animation: point 1.25s infinite alternate;

                path {
                    fill: #FFFFFF;
                }
            }
        }
    }
}

@keyframes point {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(.125em);
    }
}

/* styles.css */
.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    background-color: #f9f9f9;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    padding: 12px;
    overflow: hidden;
    transition: max-height 0.3s ease;
    max-height: 0;
}

.dropdown-content.show {
    display: block;
    max-height: 500px;
    /* Valeur arbitraire pour définir la hauteur maximale des réponses */
}

.dropdown-content .faq {
    margin-bottom: 20px;
}

.dropdown-content .faq h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.dropdown-content .faq p {
    font-size: 16px;
    line-height: 1.5;
}

.tittre {

    color: #627084;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.1em;
    margin-right: 10px;
    transition: color .45s ease;
}

a {
    text-decoration: none;
    color: #0E5673;
}

/* styles.css */
.lien {
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;

}

.lien:hover {
    background-color: #e0e0e0;

}

@keyframes fadeOutUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

.fadeOutUp {
    animation-name: fadeOutUp;
    animation-duration: 0.5s;
    animation-timing-function: ease-out;
}