h2 {
    text-align: center;
    color: #8a6345;
}
div#home {
    width: 100%;
    height: 100vh;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 0;
}
div#home video {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    z-index: 0;
}
div#home img {
    width: auto;
    height: auto;
    max-width: 50%;
    max-height: calc(100vh - 150px);
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: 50px;
    transform: scaleX(-1);
}

div#home div.intro {
    /* background: rgba(0, 0, 0, 0.5); */
    position: absolute;
    top: 130px;
    left: 0;
    width: 100%;
    height: calc(100vh - 130px);
    padding: 0 100px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
div#home div.intro a {
    display: block;
    color: #fff;
    background: #8a6345;
    width: 350px;
    height: 50px;
    line-height: 50px;
    font-size: 1.3em;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    font-weight: bolder;
    margin: 30px auto;
    transition: 0.5s;
}
div#home div.intro a:hover {
    background: #222;
    transition: 0.5s;
}
div#home div.intro p {
    font-size: 1.7em;
    line-height: 30px;
    margin: 0;
    padding: 0;
    color: #333;
    color: #fff;
    font-weight: 500;
    font-style: italic;
}
div#home div.intro h1 {
    font-size: 2em;
    line-height: 20px;
    margin: 40px 0;
    padding: 0;
    color: #111;
    color: #fff;
    text-shadow: 0 0 7px rgba(0, 0, 0, 0.9);
}
div#home div.intro h1 strong {
    font-weight: 700;
}

div.define {
    background: #f3efec;
    padding: 50px 0;
    text-align: center;
    width: 100%;
}
div.define h2 {
    margin: 40px 0;
}
div.define div.arguments {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 35px;
}
div.define div.arguments span {
    font-size: 3em;
    color: #8a6345;
}
div.define div.arguments p {
    font-size: 1.2em;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

div.about {
    padding: 100px 0;
    background: #fff;
}
div.about div.content {
    width: 100%;
    max-width: 1200px;
    display: block;
    margin: 0 auto;
    padding: 60px;
}
div.about img {
    transform: scaleX(-1);
}
div.about div.photo {
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}
div.about div.texte {
    padding: 0 20px;
    font-size: 1.5em;
    width: calc(100% - 300px);
    display: flex;
    justify-content: center;
    flex-direction: column;
}
div.about div.texte span {
    display: inline-block;
    width: 35%;
}
div.about div.texte strong {
    display: inline-block;
    width: 64%;
}
div.about a {
    display: block;
    width: 50%;
    max-width: 300px;
    margin: 0 auto;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    margin: 15px 0; 
    padding: 0;
    background-color: #8a6345;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: 0.5s;
}
div.about a:hover {
    background-color: #222;
    transition: 0.5s;
}

div.formules {
    background: #f3efec;
    padding: 100px 0;
    text-align: center;
}
div.formules div.content {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}
div.formules div.formule {
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    font-size: 1.5em;
}
div.formules div.formule p.formule {
    color: #8a6345;
}
div.formules div.formule p.prix {
    color:#8a6345;
    font-style: italic;
    display: none;
}
div.formules a.bouton {
    display: block;
    width: 50%;
    max-width: 300px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    margin: 15px auto;
    padding: 0;
    background-color: #8a6345;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: 0.5s;
}
div.formules a.bouton:hover {
    background-color: #222;
    transition: 0.5s;
}
