@font-face {
    font-family: krub;
    src: url('../fonts/Krub-Medium.ttf');
}

@font-face {
    font-family: signika;
    src: url('../fonts/Signika-Medium.ttf');
}

* {
    font-family: signika;
}

body {
    margin: 0;
}

ul {
    list-style-type: none;
    padding: 0;
}

h1, h2, h3, h4 {
    font-family: krub;
}
.flex {
    display: flex;
}

.jc-c {
    justify-content: center;
}

.jc-sb {
    justify-content: space-between;
}
.jc-sa {
    justify-content: space-around;
}

.as-c {
    align-self: center;
}

.fg-1 {
    flex-grow: 1;
}

.red {
    color: rgb(241, 93, 91);
}
.green {
    color: rgb(151, 207, 208);
}

.center {
    text-align: center;
}

.block {
    display: block;
}

.none {
    display: none;
}

.display-none-mobile {
    display: none;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

.link-logo {
    height: 8rem;
}

.link-logo img {
    height: 8rem;
}


.primary-btn {
    background-color: rgb(241, 93, 91);
    color: white !important;
    padding: 1rem;
    border: 2px solid rgb(241, 93, 91);
    font-size: 1em;
    cursor: pointer;
    text-decoration: none;
}

.secondary-btn {
    background-color: white;
    color: black !important;
    padding: 1rem;
    border: 2px solid rgb(151, 207, 208);
    font-size: 1em;
    cursor: pointer;
    text-decoration: none;
}

/**** Footer ***/
footer {
    color: white;
    /*height: 60rem;*/
}
.footer-container {
    background-color: rgb(241, 93, 91);
}

.sub-footer {
    max-width: 1320px;
    margin: auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    color: black;
}

.top-footer {
    max-width: 1320px;
    margin: auto;
    padding: 5rem 3rem;
}

.footer-container a {
    color: white;
}

.bloc-footer {
    padding: 3rem 0;
}

.social-medias img {
    padding: 0 1rem;
    width: 35px;
}
.social-medias-bloc p {
    align-self: center;
}

.mentions {
    flex-direction: column;
}
.mentions li {
    margin-bottom: 1rem;
}


@media screen and (min-width: 1024px) {
    .link-logo {
        height: 10rem;
    }

    .link-logo img {
        height: 10rem;
    }

    .display-none-mobile {
        display: block;
    }

    .mentions {
        flex-direction: row;
    }

    .mentions li {
        margin-bottom: 0;
    }

    .sub-footer {
        flex-direction: row;
    }
}

.langue {
    border: 0;
    border-bottom: 1px solid;
    margin-left: 2rem;
    font-size: 1rem;
    color: rgb(241, 93, 91);
    font-weight: bold;
    border-radius: 0;
}

.langue option {
    background-color: rgb(151, 207, 208);
    color: white;
    width: 2rem;
    padding: 2rem;
    height: 3rem;
}

select:focus > option:checked {
    background: rgb(241, 93, 91) !important;
}

select option:checked,
select option:hover {
    box-shadow: 0 0 10px 100px #000 inset !important;
}

