*, ::before, ::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: Montserrat, sans-serif;
    background: #fff8e6;
}

/*--------- Navigation ---------*/

nav {
    position: fixed;
    height: 70px;
    width: 100%;
    background: #E1B966;
    border-bottom: 1px dotted #f1f1f1;
    background: linear-gradient(to bottom, #E1B966, #A48E65);
    z-index: 100;
}
.logo-menu {
    position: fixed;
    top: 10px;
    right: 15px;
    width: 50px;
    z-index: 250;
    display: none;
}
.liste-nav {
    background: linear-gradient(to bottom, #E1B966, #A48E65);
    border-bottom: 1px dotted #f1f1f1;
    height: 70px;
    width: 100%;
    display: flex;
    justify-content: center;
    list-style-type: none;
    position: fixed;
    z-index: 200;
}
.item-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}
.item-nav a {
    font-size: 25px;
    color: #f1f1f1;
    text-decoration: none;
    margin: 0 20px;
}
.item-nav a::after {
    content: '';
    display: block;
    margin: 0 auto;
    width: 0%;
    height: 2px;
    background: #f1f1f1;
    transition: all 0.2s ease-in-out;
}
.item-nav a:hover::after {
    width: 100%;
}
@media screen and (max-width: 920px) {
    .logo-menu {
        display: block;
    }
    .liste-nav {
        display: none;
        flex-direction: column;
        height: auto;
    }
    .liste-nav.active {
        display: block;
    }
    .item-nav {
        height: 70px;
    }
    .item-nav:nth-child(1){
        margin-top: 70px;
    }
}

/*--------- Accueil ---------*/

.accueil {
    width: 100%;
    height: 100vh;
    background-image: url(ressources/bambooPaper2.jpg);
    background-position: center;
    padding-top: 1px;
    border-bottom: 1px dotted #777;
}
.logo-angie {
    border-radius: 50%;
    width: 280px;
    display: block;
    margin: 120px auto 0;
}
.accueil h1 {
    text-align: center;
    font-size: 130px;
    text-shadow: 0 0 10px #E1B966;
    color: #f1f1f1;
    margin: 10px 0 0 0;
    font-family: Allura, sans-serif;
}
.sous-titre {
    text-align: center;
    font-size: 35px;
    font-weight: bold;
    color: #f1f1f1;
    margin: 5px 0;
    text-shadow: 0 0 10px #E1B966;
}
@media screen and (max-width: 850px) {
    .accueil {
        height: 650px;
    }
    .logo-angie {
        margin: 120px auto 0;
    }
    .accueil h1 {
        font-size: 60px;
    }
    .sous-titre {
        font-size: 23px;
    }
}
@media screen and (max-width: 400px) {
    .accueil {
        height: 550px;
    }
    .logo-angie {
        width: 150px;
        margin: 110px auto 0;
    }
    .accueil h1 {
        font-size: 35px;
    }
    .sous-titre {
        font-size: 20px;
    }
    .logo-menu {
        top: 15px;
        width: 40px;
    }
}

/*--------- Section asymétrique ---------*/

.section-asymetrique {
    display: grid;
    grid-template: 200px repeat(23, 150px) / 1fr 600px 1fr 600px 1fr;
    background: #FFF8E6;
}
.section-asymetrique h2 {
    /* deb row / deb col / fin row / fin col */
    grid-area: 1 / 1 / 2 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    font-size: 70px;
    padding-top: 50px;
}

/* Bloc-1 & Bloc-3 */

.bloc-1 {
    grid-area: 3 / 2 / 8 / 3;
}
.bloc-3 {
    grid-area: 17 / 2 / 22 / 3;
}
.bloc-left {
    background: #A48E65;
    color: #f1f1f1;
    position: relative;
    left: 100px;
    border-radius: 5px;
    box-shadow: 0 0 50px 5px #E1B966;
}
.bloc-left img {
    position: absolute;
    left: 300px;
    top: 160px;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 0 50px 5px #E1B966;
}
.bloc-txt-left {
    width: 50%;
    height: 100%; 
}
.bloc-txt-left h3 {
    width: 150%!important;
    font-size: 35px;
    margin: 15px 0;
    padding: 15px;
}
.bloc-txt-left h4 {
    width: 100%;
    font-size: 20px;
    padding: 15px;
    margin: 15px 0;
}
.bloc-txt-left h5 {
    width: 100%;
    font-size: 20px;
    padding: 15px;
    margin: 15px 0;
}
.bloc-txt-left p {
    line-height: 40px;
    padding: 15px;
}
.bloc-txt-left a {
    position: absolute;
    font-size: 20px;
    color: #E1B966;
    text-decoration: none;
    padding-left: 12px;
    top:500px;
    cursor: pointer;
}
.bloc-txt-left a::after {
    content: '';
    display: block;
    margin: 0 auto;
    width: 0%;
    height: 2px;
    background: #E1B966;
    transition: all 0.2s ease-in-out;
}
.bloc-txt-left a:hover::after {
    width: 100%;
}

/* Bloc-2 */

.bloc-2 {
    grid-area: 10 / 4 / 15 / 5;
    background: #A48E65;
    color: #f1f1f1;
    position: relative;
    right: 100px;
    border-radius: 5px;
    box-shadow: 0 0 50px 5px #E1B966;
}
.bloc-2 img {
    position: absolute;
    height: auto;
    right: 300px;
    top: 100px;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 0 50px 5px #E1B966;
}
.bloc-txt-2 {
    position: absolute;
    right: 0;
    width: 50%;
    height: 100%;
}
.bloc-txt-2 h3 {
    position: relative;
    right: 40px;
    width: 150%!important;
    font-size: 35px;
    margin: 15px 80px;
    padding: 10px;
}
.bloc-txt-2 h4 {
    width: 100%;
    font-size: 20px;
    padding: 15px;
    margin: 15px 0;
}
.bloc-txt-2 h5 {
    width: 100%;
    font-size: 20px;
    padding: 15px;
    margin: 15px 0;
}
.bloc-txt-2 p {
    line-height: 40px;
    padding: 15px;
}
.bloc-txt-2 a {
    position: absolute;
    font-size: 20px;
    color: #E1B966;
    text-decoration: none;
    padding-left: 12px;
    top:530px;
    cursor: pointer;
}
.bloc-txt-2 a::after {
    content: '';
    display: block;
    margin: 0 auto;
    width: 0%;
    height: 2px;
    background: #E1B966;
    transition: all 0.2s ease-in-out;
}
.bloc-txt-2 a:hover::after {
    width: 100%;
}

/* Lignes verticales */

.ligne-gauche {
    grid-area: 1 / 2 / -1 / 3;
    border-left: 1px solid #333;
}
.ligne-milieu {
    grid-area: 1 / 3 / -1 / 4;
    border-right: 1px solid #333;
}
.ligne-droite {
    grid-area: 1 / 5 / -1 / 6;
    border-left: 1px solid #333;
}
@media screen and (max-width: 1950px) {
    .section-asymetrique {
        grid-template: 200px repeat(26, 100px) / 1fr 400px 1fr;
    }
    .bloc-1 {
        grid-area: 3 / 2 / 9 / 3;
    }
    .bloc-left {
        left: -150px;
    }
    .bloc-txt-left {
        width: 70%;
    }
    .bloc-txt-left p {
        line-height: 30px;
        padding: 15px;
    }

    /* Bloc-2 */

    .bloc-2 {
        grid-area: 11 / 2 / 17 / 3;
        right: -150px;
    }
    .bloc-txt-2 {
        width: 70%;
    }
    .bloc-2 img {
        top: 150px;
    }
    .bloc-txt-2 h3 {
        right: 80px;
    }
    .bloc-txt-2 p {
        line-height: 30px;
        padding: 15px;
    }
    .bloc-txt-2 button {
        padding: 15px 30px;
        font-size: 18px;
        margin: 10px;
    }
    .bloc-3 {
        grid-area: 19 / 2 / 25 / 3;
    }

    /* Lignes */

    .ligne-gauche {
        border-right: 1px solid #333;
    }
    .ligne-milieu, .ligne-droite {
        display: none;
    }
}
@media screen and (max-width: 850px) {
    .section-asymetrique {
        grid-template: 200px repeat(35, 100px) / 1fr 400px 1fr;
    }
    .section-asymetrique h2 {
        font-size: 45px;
        padding-top: 0px;
    }
    .bloc-1 {
        grid-area: 2 / 2 / 8 / 3;
        border-bottom: 1px solid #f1f1f1;
    }
    .bloc-left {
        left: 0px;
    }
    .bloc-left img {
        position: absolute;
        left: 0px;
        top: 600px;
    }
    .bloc-txt-left {
        width: 100%;
    }
    .bloc-txt-left h3 {
        width: 100%!important;
        text-align: center;
        margin: 5px 0;
    }
    .bloc-txt-left p {
        font-size: 20px;
        line-height: 40px;
    }
    .btn-bloc-left {
        margin: 10px auto;
    }

    /* bloc-2 */

    .bloc-2 {
        grid-area: 13 / 2 / 19 / 3;
        right: 0px;
        border-top: 1px solid #f1f1f1;
    }
    .bloc-txt-2 h3 {
        position: relative;
        right: 0px;
        width: 100%!important;
        text-align: center;
        font-size: 35px;
        margin: 5px 0;
    }
    .bloc-txt-2 {
        width: 100%;
    }
    .bloc-2 img {
        position: absolute;
        right: 0px;
        top: 600px;
    }
    .bloc-txt-2 p {
        line-height: 40px;
        font-size: 20px;
    }
    .bloc-txt-2 button {
        margin: 10px auto;
    }

    .bloc-3 {
        grid-area: 24 / 2 / 30 / 3;
        border-top: 1px solid #f1f1f1;
    }
}
@media screen and (max-width: 430px) {
    .section-asymetrique {
        grid-template: 200px repeat(32,100px) / 1fr 320px 1fr;
    }
    .section-asymetrique h2 {
        grid-area: 1 / 1 / 2 / -1;
        font-size: 30px;
    }

    .bloc-txt-left h3 {
        font-size: 25px;
    }
    .bloc-txt-left p {
        font-size: 16px;
    }

    /* b2 */

    .bloc-2 {
        grid-area: 12 / 2 / 18 / 3;
    }
    .bloc-txt-2 h3 {
        font-size: 25px;
    }
    .bloc-txt-2 p {
        font-size: 16px;
    }
    .bloc-txt-2 {
        width: 100%;
    }
    .bloc-2 img {
        position: absolute;
        right: 0px;
        top: 600px;
    }
    .bloc-txt-2 button {
        margin: 10px auto;
    }
    .bloc-3 {
        grid-area: 22 / 2 / 28 / 3;
    }
}

/*--------- Section asymétrique 2---------*/

.section-asymetrique2 {
    display: grid;
    grid-template: 200px repeat(23, 150px) / 1fr 600px 1fr 600px 1fr;
    background: #FFF8E6;
}
.section-asymetrique2  h2 {
    /* deb row / deb col / fin row / fin col */
    grid-area: 1 / 1 / 2 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    font-size: 62px;
}

/* Bloc-1 & Bloc-3 */

.a2bloc-1 {
    grid-area: 2 / 2 / 8 / 3;
}
.a2bloc-3 {
    grid-area: 17 / 2 / 22 / 3;
}
.a2bloc-left {
    background: #A48E65;
    color: #f1f1f1;
    position: relative;
    left: 100px;
    border-radius: 5px;
    box-shadow: 0 0 50px 5px #E1B966;
}
.a2bloc-left img {
    position: absolute;
    left: 300px;
    top: 160px;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 0 50px 5px #E1B966;
}
.a2bloc-txt-left {
    width: 50%;
    height: 100%; 
}
.a2bloc-txt-left h3 {
    width: 150%!important;
    font-size: 35px;
    margin: 5px 10px;
    padding: 5px 10px;
}
.a2bloc-txt-left h4 {
    width: 100%;
    font-size: 20px;
    padding: 5px 15px;
    margin: 5px 0;
}
.a2bloc-txt-left h5 {
    width: 100%;
    font-size: 20px;
    padding: 15px;
    margin: 15px 0;
}
.a2bloc-txt-left p {
    line-height: 10px;
    padding: 10px;
    font-size: 11px;
}
.a2bloc-txt-left a::after {
    content: '';
    display: block;
    margin: 0 auto;
    width: 0%;
    height: 2px;
    background: #E1B966;
    transition: all 0.2s ease-in-out;
}
.a2bloc-txt-left a:hover::after {
    width: 100%;
}

.a2bloc-txt-left .new {
    margin: 200px 20px;
}

/* Bloc-2 */

.a2bloc-2 {
    grid-area: 10 / 4 / 15 / 5;
    background: #A48E65;
    color: #f1f1f1;
    position: relative;
    right: 100px;
    border-radius: 5px;
    box-shadow: 0 0 50px 5px #E1B966;
}
.a2bloc-2 img {
    position: absolute;
    height: auto;
    right: 300px;
    top: 100px;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 0 50px 5px #E1B966;
}
.a2bloc-txt-2 {
    position: absolute;
    right: 0;
    width: 50%;
    height: 100%;
}
.a2bloc-txt-2 h3 {
    position: relative;
    right: 40px;
    width: 150%!important;
    font-size: 35px;
    margin: 5px 80px;
    padding: 5px;
}
.a2bloc-txt-2 h4 {
    width: 100%;
    font-size: 20px;
    padding: 5px;
    margin: 5px 0;
}
/* .a2bloc-txt-2 h5 {
    width: 100%;
    font-size: 20px;
    padding: 15px;
    margin: 15px 0;
} */
.a2bloc-txt-2 p {
    line-height: 30px;
    padding: 10px;
}
.a2bloc-txt-2 a {
    position: absolute;
    font-size: 20px;
    color: #E1B966;
    text-decoration: none;
    padding-left: 12px;
    top:530px;
    cursor: pointer;
}
.a2bloc-txt-2 a::after {
    content: '';
    display: block;
    margin: 0 auto;
    width: 0%;
    height: 2px;
    background: #E1B966;
    transition: all 0.2s ease-in-out;
}
.a2bloc-txt-2 a:hover::after {
    width: 100%;
}

/* Lignes verticales */

.ligne-gauche {
    grid-area: 1 / 2 / -1 / 3;
    border-left: 1px solid #333;
}
.ligne-milieu {
    grid-area: 1 / 3 / -1 / 4;
    border-right: 1px solid #333;
}
.ligne-droite {
    grid-area: 1 / 5 / -1 / 6;
    border-left: 1px solid #333;
}
@media screen and (max-width: 1950px) {
    .section-asymetrique2 {
        grid-template: 200px repeat(26, 100px) / 1fr 400px 1fr;
    }
    .a2bloc-1 {
        grid-area: 3 / 2 / 9 / 3;
    }
    .a2bloc-left {
        left: -150px;
    }
    .a2bloc-txt-left {
        width: 70%;
    }
    .a2bloc-txt-left p {
        line-height: 30px;
        padding: 15px;
    }

    /* Bloc-2 */

    .a2bloc-2 {
        grid-area: 11 / 2 / 17 / 3;
        right: -150px;
    }
    .a2bloc-txt-2 {
        width: 70%;
    }
    .a2bloc-2 img {
        top: 150px;
    }
    .a2bloc-txt-2 h3 {
        right: 80px;
    }
    .a2bloc-txt-2 p {
        line-height: 30px;
        padding: 15px;
    }
    .a2bloc-txt-2 button {
        padding: 15px 30px;
        font-size: 18px;
        margin: 10px;
    }
    .a2bloc-3 {
        grid-area: 19 / 2 / 25 / 3;
    }

    /* Lignes */

    .ligne-gauche {
        border-right: 1px solid #333;
    }
    .ligne-milieu, .ligne-droite {
        display: none;
    }
}
@media screen and (max-width: 850px) {
    
    .section-asymetrique2 {
        grid-template: 200px repeat(35, 100px) / 1fr 400px 1fr;
    }
    .section-asymetrique2 h2 {
        font-size: 45px;
        padding-top: 0px;
    }
    .a2bloc-1 {
        grid-area: 2 / 2 / 8 / 3;
        border-bottom: 1px solid #f1f1f1;
    }
    .a2bloc-left {
        left: 0px;
    }
    .a2bloc-left img {
        position: absolute;
        left: 0px;
        top: 600px;
    }
    .a2bloc-txt-left {
        width: 100%;
    }
    .a2bloc-txt-left h3 {
        width: 100%!important;
        text-align: center;
        margin: 5px 0;
    }
    .a2bloc-txt-left p {
        font-size: 15px;
        line-height: 40px;
    }

    /* bloc-2 */

    .a2bloc-2 {
        grid-area: 13 / 2 / 19 / 3;
        right: 0px;
        border-top: 1px solid #f1f1f1;
    }
    .a2bloc-txt-2 h3 {
        position: relative;
        right: 0px;
        width: 100%!important;
        text-align: center;
        font-size: 35px;
        margin: 5px 0;
    }

    .a2bloc-txt-2 h4 {
        margin-left: 10px;
    }
    .a2bloc-txt-2 {
        width: 100%;
    }
    .a2bloc-2 img {
        position: absolute;
        right: 0px;
        top: 600px;
    }
    .a2bloc-txt-2 p {
        line-height: 40px;
        font-size: 14px;
    }

    .a2bloc-3 {
        grid-area: 24 / 2 / 30 / 3;
        border-top: 1px solid #f1f1f1;
    }
}
@media screen and (max-width: 430px) {
    .section-asymetrique2 {
        grid-template: 200px repeat(32,100px) / 1fr 320px 1fr;
    }
    .section-asymetrique2 h2 {
        grid-area: 1 / 1 / 2 / -1;
        font-size: 30px;
    }

    .a2bloc-txt-left h3 {
        font-size: 25px;
    }
    .a2bloc-txt-left p {
        font-size: 16px;
    }

    /* b2 */

    .a2bloc-2 {
        grid-area: 12 / 2 / 18 / 3;
    }
    .a2bloc-txt-2 h3 {
        font-size: 25px;
    }
    .a2bloc-txt-2 p {
        font-size: 16px;
    }
    .a2bloc-txt-2 {
        width: 100%;
    }
    .a2bloc-2 img {
        position: absolute;
        right: 0px;
        top: 600px;
    }
    .a2bloc-txt-2 button {
        margin: 10px auto;
    }
    .a2bloc-3 {
        grid-area: 22 / 2 / 28 / 3;
    }
}

/*-------- Section Parallax ----------*/

.parallax {
    width: 100%;
    height: 400px;
    background: url(ressources/cailloux.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.parallax .logo-angie2 {
    border-radius: 50%;
    width: 100px;
    display: block;
    margin: 30px auto 0;
}
.parallax span {
    display: block;
    font-family: Allura, sans-serif;
    font-size: 50px;
    text-shadow: 0 0 10px #E1B966;
    color: #f1f1f1;
}

/* --------- Infos --------- */

.titreSec1 {
    text-align: center;
    font-size: 70px;
    padding-top: 100px;
    padding-bottom: 50px;
} 
.txtImg {
    padding-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.txtImg .flexContainerSection1 {
    display: flex;
    justify-content: center;
    width: 1200px;
}
.txtImg .flexContainerSection1 .contImgSec1 {
    width: 50%;
    margin: 20px;
}
.txtImg .flexContainerSection1 .contImgSec1 img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 0 50px 5px #E1B966;
}
.txtImg .flexContainerSection1 .contTxtSec1 {
    width: 45%;
    background: #A48E65;
    margin: 20px;
    border-radius: 5px;
    color: #f1f1f1;
    box-shadow: 0 0 50px 5px #E1B966;
    margin-bottom: 30px;
}
.txtImg .flexContainerSection1 .contTxtSec1 h2 {
    text-align: center;
    font-size: 35px;
    color: #f1f1f1;
    padding-top: 20px;
}
.txtImg .flexContainerSection1 .contTxtSec1 h3 {
    text-align: center;
    font-size: 35px;
    color: #f1f1f1;
    padding-top: 20px;
}
.txtImg .flexContainerSection1 .contTxtSec1 .txtSec1 {
    font-size: 15px;
    padding: 15px;
}
.txtImg .flexContainerSection1 .contTxtSec1 .txtSec1::first-letter {
    font-size: 30px;
}
@media screen and (max-width: 1200px) {
    .txtImg .flexContainerSection1 {
      flex-direction: column;
      align-items: center;
      width: 400px;
    }
    .txtImg .flexContainerSection1 .contImgSec1 {
      width: 100%;
    }
    .txtImg .flexContainerSection1 .contTxtSec1 {
      width: 100%;
    }
}
@media screen and (max-width: 550px) {
    .titreSec1 {
      font-size: 50px;
    }
}

  /*-------- Section Parallax 2 ----------*/

.parallax2 {
    width: 100%;
    height: 400px;
    background: url(ressources/pierre-plage.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.parallax2 .logo-angie2 {
    border-radius: 50%;
    width: 100px;
    display: block;
    margin: 30px auto 0;
}
.parallax2 span {
    display: block;
    font-family: Allura, sans-serif;
    font-size: 50px;
    text-shadow: 0 0 10px #E1B966;
    color: #f1f1f1;
}

/* ------- Conseils ------- */

.titreConseils {
    text-align: center;
    font-size: 70px;
    padding-top: 80px;
    padding-bottom: 50px;
}
.sectionConseils {
    padding-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.sectionConseils .flexContainerConseils {
    display: flex;
    justify-content: center;
    width: 1200px;
}
.sectionConseils .flexContainerConseils .contImgConseils {
    width: 50%;
    margin: 20px;
}
.sectionConseils .flexContainerConseils .contImgConseils img {
    width: 100%;
    height: auto;
    margin-top: 180px;
    border-radius: 5px;
    box-shadow: 0 0 50px 5px #E1B966;
}
.sectionConseils .flexContainerConseils .contTxtConseils {
    width: 45%;
    background: #A48E65;
    margin: 20px;
    padding: 20px;
    border-radius: 5px;
    color: #f1f1f1;
    box-shadow: 0 0 50px 5px #E1B966;
    margin-bottom: 30px;
}
.sectionConseils .flexContainerConseils .contTxtConseils h3 {
    text-align: center;
    font-size: 25px;
    color: #f1f1f1;
    padding-top: 30px;
}
.sectionConseils .flexContainerConseils .contTxtConseils .txtConseils {
    font-size: 15px;
    padding: 15px;
}
.sectionConseils .flexContainerConseils .contTxtConseils .txtConseils::first-letter {
    font-size: 30px;
}
@media screen and (max-width: 1200px) {
    .sectionConseils .flexContainerConseils {
      flex-direction: column;
      align-items: center;
      width: 400px;
    }
    .sectionConseils .flexContainerConseils .contImgConseils {
      width: 100%;
    }
    .sectionConseils .flexContainerConseils .contImgConseils img {
        margin-top: auto;
    }
    .sectionConseils .flexContainerConseils .contTxtConseils {
      width: 100%;
    }
}
@media screen and (max-width: 550px) {
    .titreConseils {
      font-size: 50px;
    }
}

/*-------- Section Parallax 3 ----------*/

.parallax3 {
    width: 100%;
    height: 400px;
    background: url(ressources/ponton2.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.parallax3 .logo-angie2 {
    border-radius: 50%;
    width: 100px;
    display: block;
    margin: 30px auto 0;
}
.parallax3 span {
    display: block;
    font-family: Allura, sans-serif;
    font-size: 50px;
    text-shadow: 0 0 10px #E1B966;
    color: #f1f1f1;
}

/* ------- Présentation ------- */

.titrePresentation {
    text-align: center;
    font-size: 50px;
    padding-top: 60px;
    padding-bottom: 50px;
}
.sectionPresentation {
    padding-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.sectionPresentation .flexContainerPresentation {
    display: flex;
    justify-content: center;
    width: 1200px;
    margin-left: 100px;
}
.sectionPresentation .flexContainerPresentation .txtPresentation {
    padding-top: 50px;
    padding-bottom: 50px;
    width:95%;
    margin: 20px;
}
.sectionPresentation .flexContainerPresentation .contImgPresentation img {
    width: 80%;
    margin-top: 200px;
    border-radius: 5px;
    box-shadow: 0 0 50px 5px #E1B966;
}
.sectionPresentation .flexContainerPresentation .contTxtPresentation {
    width: 100%;
    background: #A48E65;
    margin: 20px ;
    border-radius: 5px;
    color: #f1f1f1;
    box-shadow: 0 0 50px 5px #E1B966;
    margin-bottom: 30px;
}
.sectionPresentation .flexContainerPresentation .contTxtPresentation .txtPresentation {
    font-size: 21px;
    padding: 15px auto;
}
.sectionPresentation .flexContainerPresentation .contTxtPresentation .txtPresentation::first-letter {
    font-size: 30px;
}
@media screen and (max-width: 1200px) {
    .sectionPresentation .flexContainerPresentation {
        flex-direction: column;
        align-items: center;
        width: 400px;
        margin: 10px;
    }
    .sectionPresentation .flexContainerPresentation .contImgPresentation {
        width: 100%;
    }
    .sectionPresentation .flexContainerPresentation .contImgPresentation img {
        margin-top: auto;
        width: 100%;
    }
    .sectionPresentation .flexContainerPresentation .contTxtPresentation {
        width: 100%;
    }
}
@media screen and (max-width: 550px) {
  .titreSec1 {
    font-size: 50px;
  }
}

  /*-------- Section Parallax 4 ----------*/

.parallax4 {
    width: 100%;
    height: 400px;
    background: url(ressources/foretJaune.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.parallax4 .logo-angie2 {
    border-radius: 50%;
    width: 100px;
    display: block;
    margin: 30px auto 0;
}
.parallax4 span {
    display: block;
    font-family: Allura, sans-serif;
    font-size: 50px;
    text-shadow: 0 0 10px #E1B966;
    color: #f1f1f1;
}
@media screen and (max-width: 400px) {
    .parallax4 p {
        font-size: 55px;
    }
}

/* ------- Carte cadeau ------- */

.titreCarte {
    text-align: center;
    font-size: 50px;
    padding-top: 60px;
    padding-bottom: 30px;
}
.sectionCarte {
    padding-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.sectionCarte .flexContainerCarte {
    display: flex;
    justify-content: center;
    width: 1200px;
    margin-left: 130px;
}
.sectionCarte .flexContainerCarte .txtCarte {
    padding-top: 50px;
    padding-bottom: 50px;
    width:90%;
    margin: 20px;
}
.sectionCarte .flexContainerCarte .contImgCarte img {
    width: 80%;
    margin-top: 80px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 0 50px 5px #E1B966;
}
.sectionCarte .flexContainerCarte .contTxtCarte {
    width: 100%;
    background: #A48E65;
    margin: 20px ;
    border-radius: 5px;
    color: #f1f1f1;
    box-shadow: 0 0 50px 5px #E1B966;
}
.sectionCarte .flexContainerCarte .contTxtCarte .txtCarte {
    font-size: 17px;
    padding: 15px 15px;
}
.sectionCarte .flexContainerCarte .contTxtCarte .txtCarte::first-letter {
    font-size: 30px;
}
@media screen and (max-width: 1200px) {
    .sectionCarte .flexContainerCarte {
        flex-direction: column;
        align-items: center;
        width: 400px;
        margin: 10px;
    }
    .sectionCarte .flexContainerCarte .contImgCarte {
        width: 100%;
    }
    .sectionCarte .flexContainerCarte .contImgCarte img {
        margin-top: auto;
        width: 100%;
    } 
    .sectionCarte .flexContainerCarte .contTxtCarte {
      width: 100%;
    }
}
@media screen and (max-width: 550px) {
    .titreCarte {
        font-size: 50px;
    }
  }

  /*-------- Section Parallax 4 ----------*/

.parallax5 {
    width: 100%;
    height: 400px;
    background: url(ressources/palmier.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.parallax5 .logo-angie2 {
    border-radius: 50%;
    width: 100px;
    display: block;
    margin: 30px auto 0;
}
.parallax5 span {
    display: block;
    font-family: Allura, sans-serif;
    font-size: 50px;
    text-shadow: 0 0 10px #E1B966;
    color: #f1f1f1;
}

/* ------- Contact ------- */

.titreContact {
    text-align: center;
    font-size: 50px;
    padding-top: 60px;
    padding-bottom: 50px;
}
.sectionContact {
    padding-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.sectionContact .flexContainerContact {
    display: flex;
    justify-content: center;
    width: 1200px;  
}
.sectionContact .flexContainerContact .txtContact {
    width:100%;
    margin: 29px;
}
.sectionContact .flexContainerContact .contTxtContact .logo-angieContact {
    border-radius: 50%;
    width: 80px;
    display: block;
    margin: 30px auto 0;   
}
.sectionContact .flexContainerContact h3 {
    font-family: Allura;
    text-align: center;
    font-size: 30px;
    text-shadow: 0 0 10px #E1B966;
    color: #f1f1f1;
    margin: 10px 0 0 0;
    font-family: Allura, sans-serif;
}

.sectionContact .flexContainerContact a {
  text-decoration: none;
  color: #E1B966;
  
}
.sectionContact .flexContainerContact .contImgContact iframe {
    width: 600px;
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: 0 0 50px 5px #E1B966;
}
.sectionContact .flexContainerContact .contTxtContact {
    width: 100%;
    background: #A48E65;
    margin: 20px ;
    border-radius: 5px;
    color: #f1f1f1;
    box-shadow: 0 0 50px 5px #E1B966;
}
.sectionContact .flexContainerContact .contTxtContact .txtContact {
    font-size: 18px;
    padding: 11px 15px;
}
.sectionContact .flexContainerContact .contTxtContact .txtContact::first-letter {
    font-size: 30px;
}
@media screen and (max-width: 1200px) {
    .sectionContact .flexContainerContact {
        flex-direction: column;
        align-items: center;
        width: 400px;
        margin: 10px;
    }
    .sectionContact .flexContainerContact .contImgContact {
        width: 100%;
    }
    .sectionContact .flexContainerContact .contImgContact iframe {
        margin-top: auto;
        width: 100%;
    }
    .sectionContact .flexContainerContact .contTxtContact {
      width: 100%;
    }
}
@media screen and (max-width: 550px) {
    .titreContact {
        font-size: 50px;
    }
}

  /* Footer */

footer {
    width: 100%;
    text-align: center;
    padding-top: 100px;
}
@media screen and (max-width: 1300px) {
  footer {
      padding-left: 0px;
  }
}