html {
    font-size: 62.5%;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    color: #004169;
    font-size: 1.8rem;
    line-height: 1.4;
}
* {
    box-sizing: inherit
}
h1, h2 {
    text-transform: uppercase;
    font-size: 100%;
    font-weight: normal;
    text-align: center;
    margin: 0;
    padding: 0;
}
h1 {
    font-size: 4.2rem;
    line-height: 1;
}
h2 {
    padding: 2rem 0 4rem 0;
    font-size: 2rem;
}
button, input {
    outline: none;
    cursor: pointer;
    border: 0;
    transition: 1s ease;
}
.container {
    max-width: 800px;
    width: 100%;
    padding: 0 2rem;
    margin: auto;
}

.fixed {
    position: fixed;
    width: 100%;
    top: 0;
    background-color: #FFF;
    z-index: 100;
    padding: 8rem 0 4rem 0; 
}
    .recherche__group {
        display: flex;
        margin: auto;
        max-width: 64rem;
    }
        .recherche__input {
            width: 75%;
            border: 1px solid #004169;
            border-radius: 5px 0 0 5px;
            padding: 1.5rem;
            color: #004169;
            line-height: 1;
        }
        .recherche__button-container {
            display: flex;
            width: 25%;
        }
        .recherche__button {
            width: 100%;
            border-radius: 0 5px 5px 0;
            position: relative;
            border: 1px solid transparent;
            background-color: #295197;
            color: white;
        }

.resultats {
    position: absolute;
    top: 0px;
    margin-top: 32rem;
    width: 100%;
}
@media (max-width: 767px) {
    .resultats {
        margin-top: 34rem;
    }
}
    .resultat {
        display: flex;
        max-width: 64rem;
        margin: auto;
        min-height: 8.4rem;
        margin-bottom: 3rem;
    }
        .resultat__body {
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: #F8F8FA;
            width: 75%;
            padding: 0.5rem 2rem;
            border-radius: 5px 0 0 5px;
        }
            .resultat__nom {
                font-weight: 600;
            }
            .resultat__societe {
                font-size: 1.6rem;
                text-transform: uppercase;
            }
        .resultat__print {
            width: 25%;
            background-color: #EB571B;
            color: #FFF;
            border-radius: 0 5px 5px 0;
            font-size: 1.6rem;
            line-height: 1.5; 
        }
        .resultat__print:hover {
            background-color: #C73900;
        }
        .resultat__info {
            text-align: center;
        }


