html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Playfair Display', serif;
    margin: 0;
    width: 100%;
}

.container {
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
    font-size: 16px;
    max-width: 1180px;
}

/** Utilities **/

.grid {
    display: grid;
}

.block {
    display: block;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 6rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 8rem;
}

.ptb-2 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.plr-2 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.text-orange {
    color: #FF8B00;
}

.text-blue {
    color: #00A0DF;
}

.text-white {
    color: #FFF;
}

.text-grey {
    color: #808080;
}

.bg-orange {
    background-color: #FF8B00;
}

.bg-white {
    background-color: #FFF;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

ul {
    list-style: none;
}

.italic {
    font-style: italic;
}

.font-light {
    font-weight: 400;
}

.font-bold {
    font-weight: 700;
}

.georgia {
    font-family: 'Georgia';
}

.right {
    text-align: right;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/** Header **/

.header {
    max-width: 1100px;
}

.header-content {
    border-bottom-left-radius: 25px;
    border-top-right-radius: 25px;
    grid-template-columns: 1fr max-content;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.header-content--title {
    font-size: 70px;
    line-height: 70px;
}

.header-content--subtitle-1 {
    font-size: 35px;
}

.header-content--subtitle-2 {
    font-size: 50px;
}

.header-content--left {
    background: url('/assets/images/Header-bulles.jpg') no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
}

.header-content--left--text {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: end;
}

.header-content--right, .header-content--right--image {
    height: 100%;
}

.header-content--image {
    position: absolute;
    right: 450px;
    transform: translateX(50%);
    top: 20px;
    width: 170px;
}

@media (max-width: 768px) {
    .header-content {
        grid-template-columns: 1fr;
    }
    .header-content--image {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(100%, 100%);
    }
}

@media (max-width: 650px) {
    .header-content--image {
        position: absolute;
        right: 50%;
        transform: translate(0);
        top: auto;
    }
}

ul li::before {
    color: #FE8A00;
    font-weight: bold;
    display: inline-block;
    margin-left: -1em;
    margin-right: 0.6rem;
}

/** Main **/

/** Section 1 **/

.section-1 {
    grid-template: 20px 1fr repeat(2, max-content) / repeat(5, 1fr);
    grid-gap: 0 20px;
    position: relative;
}

.section-1--img-text {
    grid-row-start: 2;
    grid-column: 2 / span 4;
    position: relative;
}

.text-image {
    position: absolute;
    top: 30px;
    left: 7%;
    font-size: 40px;
    width: min-content;
}

.text-image h3, .text-image p {
    font-weight: 400;
    text-shadow: 1px 0px 3px black;
}

.text--1 {
    grid-row-start: 3;
    grid-column: 2 / span 3;
}

.text--2 {
    grid-row-start: 4;
    grid-column: 2 / span 3;
    margin: auto;
    font-size: 19px;
}

.text--1, .text--2 {
    margin-left: 4px;
}

.img-france {
    grid-row-start: 4;
    grid-column-start: 1;
    align-self: center;
}

.encart {
    width: 380px;
    height: max-content;
}

.encart--div {
    transform-origin: 100% 0;
    transform: rotate(-2deg);
    margin-left: 5px;
    height: max-content;
    padding: 5px 10px;
    box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.1);
}

.encart--div h2 {
    font-size: 37px;
    font-weight: 400;
}

.encart--list {
    text-align: right;
    padding-left: 0;
    font-size: 20px;
}

.encart--list span {
    display: inline;
}

.encart--list li::before {
    content: "\2022";
}

.encart--1 {
    position: relative;
    top: -25px;
}

.encart--1, .encart--2 {
    grid-column-end: -1;
    z-index: 200;
}

.encart--2 {
    position: absolute;
    bottom: 0;
    right: 0;
}

/** Section 2 **/

.section-2 {
    padding: 0 8%;
}

.section-2 .section--title {
    font-size: 40px;
    font-weight: 400;
}

.section-2--grid {
    grid-template-columns: 200px 1fr;
    grid-column-gap: 20px;
}

.section-grid--text span {
    font-weight: bold;
    font-size: 27px;
}

.section-grid img {
    width: 100%;
}

.section-grid--text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/** Section 3 **/

.section-3 {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
    position: relative;
    background-color: #F1F4F4;
}

.section-3::after, .section-3::before, .section-5::after, .section-5::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: #F1F4F4;
    width: 100%;
}

.section-3::after {
    right: 100%;
}

.section-3::before {
    left: 100%;
}

.section-3--left--image {
    font-size: 17px;
}

.section-3--left--image {
    box-shadow: 5px 7px 20px rgba(0, 0, 0, 0.2);
    transform-origin: 100% 0;
    transform: rotate(-2deg);
}

.link {
    margin: auto;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-size: 21px;
}

.section-3--title {
    font-size: 45px;
    font-style: italic;
    font-weight: 500;
}

.section-3--list {
    padding-left: 50px;
}

.section-3--list li {
    margin-bottom: .7rem;
    display: flex;
}

.section-3--list li::before {
    content: "\2713";
}

/** Section 4 **/

.section-4--title {
    font-size: 45px;
    font-weight: 400;
}

.section-grid--image {
    max-width: 100%;
}

.section-4--container {
    position: relative;
}

.section-4--container .link, .section-4--title {
    position: absolute;
}

.section-4--container .link {
    bottom: 30px;
    right: 35px;
}

.section-4--title {
    top: 50%;
    transform: translateY(-50%);
    left: 80px;
    text-shadow: 1px 0px 1px #00A0DF;
}

.section-4--grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: min-content;
    grid-template-areas: "a b c d" " e e c d";
    grid-column-gap: 30px;
}

.section-4--grid--item {
    height: min-content;
}

.section-4--grid--testimony {
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -o-hyphens: auto;
}

.section-4--grid--name {
    font-style: italic;
}

.section-4--grid--item:nth-child(1) {
    grid-area: a;
}

.section-4--grid--item:nth-child(2) {
    grid-area: b;
}

.section-4--grid--item:nth-child(3) {
    grid-area: c;
}

.section-4--grid--item:nth-child(4) {
    grid-area: d;
}

.section-4--encart {
    grid-area: e;
    justify-self: center;
    align-self: center;
}

.stars span {
    font-size: 1.5rem;
}

/** Section 5 **/

.section-5 {
    position: relative;
    background-color: #F1F4F4;
}

.section-5::after {
    right: 100%;
}

.section-5::before {
    left: 100%;
}

.section-5--title {
    font-size: 45px;
    font-weight: 400;
}

.section-5--grid {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
}

.section-6 {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

@media (max-width: 850px) {
    .section-3 {
        grid-template-columns: 1fr;
    }
    .section-3--left {
        margin-bottom: 1rem;
    }
    .section-4--grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: "a b" "c d" "e e";
    }
    .section-5--grid {
        grid-template-columns: 1fr;
        grid-row-gap: 40px;
    }
    .section-1--img-text {
        grid-column: 1 / span 5;
    }
    .text--1 {
        grid-column: 1 / span 4;
    }
}

@media (max-width: 767px) {
    .header {
        margin: 0 -20px;
    }
    .header-content {
        border-bottom-left-radius: 0;
        border-top-right-radius: 0;
    }
    .main-img {
        max-width: 100vw;
        margin: 0 -20px;
    }
}

@media (max-width: 700px) {
    .section-2--grid {
        grid-template-columns: 1fr;
    }
    .section-2--grid img {
        margin: auto
    }
    .section-1 {
        grid-template: 20px 1fr repeat(3, max-content) / repeat(5, 1fr);
        grid-gap: 0 20px;
        position: relative;
    }
    .encart--1, .encart--2 {
        margin-top: 2rem;
    }
    .encart--1 {
        grid-row-start: 6;
        margin-top: 1rem;
        grid-column-start: 1;
        max-width: 100%;
        top: 0;
    }
    .encart--2 {
        max-width: 100%;
        grid-column-start: 1;
        grid-row-end: 8;
        position: relative;

    }
    .text--1 {
        grid-column: 1 / -1;
    }
    .text--2 {
        grid-column: 2 / -1;
    }
    .plr-2 {
        padding-left: 0;
        padding-right: 0;
    }
    .text-image {
        display: none;
    }
    .section-4 .section-grid--image {
        display: none;
    }
    .section-4--title {
        position:static;
        transform: translateY(0);
    }
    .section-4--container .link {
        position:static;
        bottom: auto; 
        margin-top: 2rem;
    }
    .section-4 {
        margin-top: 2rem;
    }
}

@media (max-width: 550px) {
    .section-4--grid {
        grid-template-columns: 100%;
        grid-template-areas: "a" "b" "c" "d" "e";
    }
}