@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    --black: #000;
    --white: #fff;
    --primary: #f69c70;
    --primary-dark: #be6e45;
    --primary-light: #f7b290;
    --second: #b5ad9b;
    --third: #2C7A99;
	--mainfont: "Lato", sans-serif;
	--secondfont: "Lato", sans-serif;
    --back: #b5ad9b;
    --gris: #616468;
	--shadow-box: 0px 0px 15px 5px rgba(0,0,0,0.1);
	--shadow-text: 0px 0px 15px rgba(0,0,0,0.1);
	--grey1: rgba(0,0,0,0.03);
	--grey2: rgba(0,0,0,0.06);
	--grey3: rgba(0,0,0,0.09);
	--grey4: rgba(0,0,0,0.12);
	--spacing-size: 50px;
	--radius: 20px;
}

body {
    padding: 0px;
    margin: 0px;
    font-family: var(--mainfont);
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-weight: normal;
    overflow-x: hidden;


}

ul {
    padding: 0px;
    margin: 0px;
}

a {
    text-decoration: none !important
}

.header {
    width: 100%;
    position: relative;
    margin: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    background: var(--second) url(../images/back.jpg) no-repeat;
    padding: 0px 15px 35px;
    background-position: right;
}





.top {
    padding: 6px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top span {
    color: #a09885;
    font-weight: 400;
    font-size: 15px;
}


.top>div {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top>div:first-child {
    gap: 0px 15px;
}

.right-top .phone {
    color: #000 !important;
    padding: 0px 10px;
    font-size: 21px;
    position: relative;
    margin-left: 5px;
    z-index: 1;
    display: block;
    text-align: right;
    font-weight: 600;
    padding-right: 0;
}

.block-banner {
    position: relative;
    width: 60%;
    height: 420px;
}

.block-banner>div {
    height: 100%;
}


.logo {
    width: 40%;
    text-align: center;
}

.logo a {
    display: table;
    margin-bottom: 0;
}

.logo>div {
    position: relative;
    display: table;
    margin: 0 auto;
}

.logo img {
    position: relative;
    z-index: 1;
    max-width: 100%;
}


/* end header */


/* menu */

.navbar-nav .nav-item {
    display: block;
    transition: 0.5s ease all;
    padding: 0px 20px;
    position: relative;
}

.navbar-nav .nav-item:after {
    content: "";
    width: 10px;
    height: 10px;
    background: #fff;
    display: block;
    position: absolute;
    border-radius: 50%;
    right: 0;
    top: calc(50% - 5px);
}

.dropdown-item {
    transition: 0.5s ease all;
    color: #fff;
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 600;
}

.dropdown-item:hover {
    background: var(--back);
    color: var(--second);
}

.navbar-nav .nav-item.dropdown:hover>.dropdown-menu {
    display: block;
}

.dropdown-menu {
    left: 0;
    top: initial;
    background: var(--primary);
    border: 0;
    border-radius: 0;
    margin: 0;
    padding: 0;
    bottom: 100%;
}

.fixed .dropdown-menu {
    top: 100%;
    bottom: initial;
}

.page .navbar-nav .nav-item:last-child {
    margin: 0
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 16px 30px;
    white-space: nowrap;
    transition: 0.3s ease all;
    font-size: 18px;
    text-align: left;
    font-weight: 700;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
    background: var(--primary);
    color: #fff;
}

.navbar .navbar-nav .nav-item:hover .nav-link {
    background: var(--second);
    color: #2a2927;
}

.navbar .navbar-nav .nav-item:first-child {
    background: none;
}

.navbar .navbar-nav .nav-item .nav-link:after {
    z-index: 1
}

.navbar .navbar-nav .nav-item:last-child .nav-link:before {
    opacity: 0
}


.navbar .navbar-nav .nav-item:last-child .nav-link:after {
    display: none
}

.navbar .navbar-nav .nav-item .nav-link:hover:before {
    width: 100%;
}


.navbar-nav .nav-item:hover>.nav-link:before {
    width: 100%;
    opacity: 1 !important
}

.bloc-menu.fixed .btn-menu {
    display: table;
}


.bloc-menu {
    display: none;
    margin-right: 15px;
    position: relative;
    left: 45px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s ease all;
}

.btn-menu {
    display: table;
    margin: 0 auto;
    position: relative;
    transition: 0.3s ease all;
}

.btn-menu:hover {
    transform: rotate(180deg);
}


.menubox {
    transition: 0.3s ease all;
    padding: 0;
    margin: 0 auto 10px;
    width: 100%;
    position: relative;
    z-index: 20;
    background: var(--primary);
    max-width: 1400px;
    margin: 0 auto;
    top: -30px;
}

.menubox.activemenu {
    transform: none;
}

.menubox.fixed {
    top: 0;
    z-index: 20;
    position: fixed;
    background: var(--back);
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    left: 0;
    bottom: initial;
}

.inner-menubox {
    transition: 0.3s ease all;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.fixed .inner-menubox {
    border: none;
}

.navbar {
    padding: 0;
    position: relative;
    z-index: 1;
}

.navbar-nav {
    margin: 0px !important;
    padding: 12px 15px;
    z-index: 9;
    width: 100%;
    flex-wrap: wrap;
}

.navbar-nav:last-child {
    padding: 0;
    justify-content: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto !important;
}




/****** end menu ***/


.stone-section {
    max-width: 1200px;
    margin: 0 auto;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 0;
}

/* TOP BLOCK */
.top-block {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

/* IMAGE */
.image-block img {
    width: 100%;
    max-width: 450px;
    display: block;
}

/* CONTENT */
.content-block {
    background: url(../images/back-2.jpg) no-repeat;
    padding: 100px 40px 0px;
    color: white;
    position: relative;
    flex: 1;
    background-size: contain;
    top: 40px;
}

.content-block>div {
    max-width: 570px;
    margin: 0 auto;
}

.content-block h2 {
    margin-bottom: 40px;
    font-size: 30px;
    font-weight: 800;
}

.content-block p {
    margin: 5px 0;
    line-height: 1.5;
    font-size: 17px;
    margin-bottom: 8px;
    font-weight: 600;
}

/* ORANGE BOX */
.orange-box {
    background: var(--primary);
    padding: 40px 80px;
    margin-top: 50px;
    color: white;
    max-width: 100%;
}

.orange-box .title {
    font-weight: bold;
    margin-bottom: 20px;
}

.orange-box ul {
    padding-left: 0;
    list-style: none;
}

.orange-box li {
    margin-bottom: 10px;
    font-style: italic;
    font-size: 18px;
    display: flex;
    align-items: flex-start;
    gap: 0px 20px;
    text-align: left;
}

.orange-box li:before {
    content: "";
    width: 10px;
    height: 10px;
    background: #fff;
    display: block;
    border-radius: 50%;
    min-width: 10px;
    min-height: 10px;
    position: relative;
    top: 10px;
}

/* BOTTOM TEXT */
.bottom-text {
    text-align: center;
    color: #333;
    max-width: 730px;
    margin: 150px auto;
}

.bottom-text p {
    margin: 0;
    font-size: 19px;
}

/* BOTTOM LINE IMAGE */
.bottom-line {
    max-width: 1200px;
    margin: 0 auto;
}

.bottom-line img {
    display: block;
    max-width: 100%;
}


.region-section {
    padding: 80px 0;
    max-width: 960px;
    margin: 0 auto;
}

.region-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.region-text {
    flex: 1;
}

.region-text h2 {
    font-size: 50px;
    margin-bottom: 25px;
}

.region-text p {
    color: #333;
    line-height: 1.6;
    font-size: 17px;
}

.region-text .highlight {
    color: var(--primary);
    margin-top: 17px;
    font-style: italic;
}

.region-map img {
    max-width: 100%;
    width: 100%;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 30px 80px;
}

h1 {
    font-size: 40px;
    margin: 10px 0;
}

.gallery-section {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    align-items: start;
}

/* Images */
.img img {
    max-width: 100%;
    display: block;
}

/* Positionnement style design */
.img1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.img2 {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

.img3 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    display: flex;
    justify-content: flex-end;
}

/* Texte */
.gallery-text {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    padding-top: 40px;
    max-width: 400px;
}

.gallery-text h3 {
    margin-bottom: 10px;
    font-weight: 800;
    font-size: 28px;
}

.gallery-text p {
    color: #333;
    line-height: 1.4;
    font-size: 18px;
    margin: 0;
}

.experiences {
    text-align: center;
    padding: 100px 20px 0px;
    max-width: 1350px;
    margin: 50px auto;
}

.experiences h2 {
    color: var(--primary);
    margin-bottom: 110px;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.experiences h2 b {
    display: block;
    font-size: 32px;
    font-weight: 800;
}

.experiences h2 span {
    font-size: 18px;
}

/* Grid */
.grid {
    display: flex;
    justify-content: center;
    text-align: left;
    flex-wrap:wrap;
}

/* Card */
.card {
    transition: transform 0.3s ease;
    border: none;
    padding: 0px 35px;
    width: calc(100% / 3);
    flex: calc(100% / 3);
    max-width: calc(100% / 3);
    margin-bottom: 80px;
}

.card:hover {
    cursor: pointer;
}

/* Image circle */
.img-box {
    margin: 0 auto 20px;
    position: relative;
}

.img-box:after {
    content: "";
    background: var(--second);
    position: absolute;
    width: 100%;
    height: 100%;
    top: -25px;
    left: -15px;
    transition: 0.3s ease all;
}

/* Image */
.img-box img {
    max-width: 100%;
    transition: transform 0.4s ease, filter 0.4s ease;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Hover effect 🔥 */
.img-box:hover:after {
    left: 15px;
    background: var(--primary);
}



/* Text */
.card h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 800;
    text-align: left;
    transition: 0.3s ease all;
}

.card:hover h3 {
    color: var(--second)
}

.card p {
    font-size: 16px;
    color: #000;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .grid {
        flex-direction: column;
    }

    .experiences h2 {
        margin-bottom: 80px;
    }

    .card h3 {
        max-width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }

    .region-content {
        flex-direction: column;
        text-align: center;
        padding: 0px 15px;
    }

    .region-text {
        width: 100%;
    }

    .region-text h2 {
        font-size: 30px;
    }

    .gallery-section {
        max-width: 330px;
        margin: 0 auto;
    }

    .gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 20px 0px;
        text-align: center;
    }

    .top-block {
        flex-direction: column;
        max-width: 450px;
        margin: 0 auto;
    }

    .content-block {
        top: 0;
        background: url(../images/back-2.jpg);
        padding: 40px;
        text-align: center;
    }

    .orange-box {
        padding: 40px 20px;
    }

    .bottom-text {
        margin: 50px auto;
        padding: 0px 15px;
    }

    .card {
        width: 100%;
        max-width: 420px;
        flex: 100%;
        padding: 0;
        margin: 0 auto 50px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

.flex-block-2 {
    max-width: 1100px;
    margin: 50px auto 150px;
}

.flex-block-2 p {
    font-size: 17.5px;
    line-height: 1.5;
    display: block;
    padding-left: 30px;
}

.flex-block-2 p:last-child {
    font-style: italic;
    font-weight: 300;
}

.flex-block {
    position: relative;
    transition: 0.5s ease all;
    background-size: cover;
}

.flex-block h1 {
    font-size: 28px;
    margin: 0;
    font-weight: bold;
    font-weight: 900;
    margin: 0 auto;
}

.flex-block h1 {
    font-size: 70px;
    font-weight: 900;
    display: block;
    line-height: 1;
    margin: 0;
    background: url(../images/back-text.jpg) 0 0 / cover no-repeat;
    color: var(--primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.flex-block h1 strong {
    display: block;
    font-size: 39px;
    background: url(../images/forme.png) no-repeat;
    padding-left: 72px;
    padding-bottom: 60px;
    line-height: 1.1;
}

.flex-block h1 b {
    font-size: 72px;
    display: block;
    line-height: 0.9;
    margin-bottom: 30px;
}

.flex-block h1 b span {
    display: block;
    font-size: 60px;
}

.flex-block h1>span {
    font-size: 32px;
    display: block;
    font-weight: 800;
    margin: 0px 0px 23px;
    background: url(../images/forme1.png) no-repeat;
    background-position: 60% 100%;
}

.flex-block h1 span:after {
    content: ""
}

.flex-block h1:after {
    content: "";
}

.flex-block>div {
    display: flex;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 0;
    position: relative;
    z-index: 2;
    color: var(--color-title);
}

.bloc-1-quote {
    position: relative;
    max-width: 870px;
    padding: 90px 40px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px auto 100px;
}

.bloc-1-quote p {
    font-size: 42px;
    color: var(--primary);
    line-height: 1.1;
    margin: 0;
    font-weight: 900;
    text-align: center;
}

.quote-top {
    position: absolute;
    top: 0;
    left: 0;
}

.quote-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
}

/* Text block */

.block-text-center {
    max-width: 890px;
    margin: 31px auto 120px;
    padding: 40px 15px;
    text-align: center;
    color: var(--primary);
}

.block-text-center h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 400;
}

.block-text-center p {
    font-size: 1rem;
    line-height: 1.4;
    font-size: 18px;
    font-weight: 400;
    color: var(--primary);
}


img {
    transition: 0.3s ease all;
}

/****** page interne ***/


.text {
    max-width: 1440px;
    margin: 0px auto 0px;
    padding: 0px 15px 0px;
    position: relative;
    z-index: 2;
}

.textdiv {
    margin: 0px auto 0px;
    padding: 50px 30px 100px;
    line-height: 31px;
    font-size: 18px;
    text-align: justify;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

.footer {
    width: 100%;
    max-width: 1440px;
    margin: 100px auto 0px;
    position: relative;
    z-index: 1;
    padding: 0;
    overflow: hidden;
}

.link-fleche {
    position: absolute;
    left: 100%;
    top: 40px;
    font-size: 32px;
    display: flex;
    align-items: flex-end;
    gap: 0px 20px;
    font-weight: 600;
    color: #fff !important;
    transition: 0.3s ease all;
}

.link-fleche:hover {
    letter-spacing: 2px;
}

.link-fleche img {
    transition: 0.3s ease all;
}

.link-fleche:hover img {
    transform: rotate(-95deg);
}

.footer-container {
    display: flex;
    align-items: flex-end;
    position: relative;
    margin: 0 auto;
    justify-content: space-between;
    padding: 25px 20px;
    background: url(../images/back-footer.jpg) no-repeat;
    background-size: cover;
}

.link-fleche span {
    display: block;
    white-space: nowrap;
    line-height: 1;
}

.footer-container>div:last-child {
    display: flex;
    align-items: flex-end;
    gap: 15px 0px;
    flex-direction: column;
    justify-content: flex-end;
    color: #000;
}

.footer-container>div:last-child .d-flex {
    gap: 0px 15px;
    padding-bottom: 20px;
}


.footer-container>div:last-child .link {
    color: #000 !important;
    font-size: 26px;
    font-weight: 700;
}

.link-contact {
    display: table;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    transition: 0.3s ease all;
    border-bottom: 1px solid #000;
}

.link-contact:hover {
    letter-spacing: 1px;
    color: #000 !important;
}

/****** end Contact ***/


.footer-ico {
    display: block;
    max-width: 120px;
    filter: brightness(0) saturate(100%) invert(22%) sepia(2%) saturate(4657%) hue-rotate(349deg) brightness(94%) contrast(83%);
}



/****** footer ***/
.boxfooter {
    overflow: hidden;
    padding: 16px 10px;
    z-index: 1;
    position: relative;
    margin: 0 auto 50px;
    max-width: 1440px;
}

.footerlink {
    color: #d0d0d0;
    font-size: 10px;
    font-family: verdana;
    text-align: right;
}

.footerlink ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: inline-block;
}

.footerlink ul li {
    display: inline-block;
}

.footerlink ul li a {
    text-decoration: none !important;
    transition: 0.3s ease all;
    color: #4b4137;
    padding: 0px 10px;
    font-size: 12px;
}

.footerlink ul li a:hover {
    color: var(--primary);
}

.inlineblock {
    display: inline-block;
}

.footerlink ul {
    padding: 0px;
    margin: 0px;
    list-style: none;
    background: none;
}

.boxfooter>div {
    width: 100%;
    margin: 0;
    align-items: center;
}


/****** footer ***/



/****** end page interne ***/


@media (max-width: 1280px) {
    .navbar .navbar-nav .nav-item .nav-link {
        text-align: center;
        font-size: 15px;
        padding: 10px 10px;
    }

    .navbar-nav:after {
        height: 100%;
    }

    .logo img {
        max-width: 350px;
    }
}

@media (min-width:991px) {
    .navbar-expand-lg .navbar-collapse {
        display: block !important;
    }

    .page .block-banner {
        max-height: 450px;
    }


    .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block
    }

    .navbar-nav .nav-item.dropdown .dropdown-menu {
        background: var(--second);
        border: none;
        border-radius: 0px;
        margin: 0;
        padding: 0;
        left: 15px;
    }

    .dropdown-item {
        color: #fff;
        font-size: 16px;
        padding: 10px 15px;
    }

    .dropdown-item:focus,
    .dropdown-item:hover {
        background: var(--primary);
        color: #000;
    }
}


/* =========================================
   TABLETTE (â‰¤ 1024px)
========================================= */
@media (max-width: 1024px) {

    .link-contact {}


}

@media (max-width: 992px) {

    /* ---------- GLOBAL PADDING ---------- */
    .flex-block>div {
        flex-direction: column;
    }

    .flex-block>div .col-12 {
        width: 100%;
        max-width: 100%;
        flex: 100%;
        text-align: center;
    }

    .flex-block-2 p {
        text-align: center;
        padding: 0;
    }

    .experiences {
        margin: 0 auto;
    }

    .footer-container {
        flex-direction: column;
        top: 0;
        align-items: center;
    }

    .link-fleche {
        position: relative;
        top: 0;
        left: 0;
        justify-content: center;
        margin: 40px auto;
    }

    .footer-container>div:last-child {
        flex-direction: column;
        gap: 14px 0px;
        justify-content: center;
        align-items: center;
    }

    .footer-container>div:last-child .d-flex {
        align-items: center;
        padding: 0;
    }

    .footer-container .right-top {
        flex-direction: column;
        gap: 20px 0px;
    }

    .link-contact {
        margin: 0 auto;
    }

    .navbar .navbar-nav .nav-item .nav-link:before {
        display: none
    }

    .navbar {
        padding: 0px
    }

    .navbar-nav:after {
        display: none
    }

    .navbar-nav .nav-item .nav-link {
        text-align: left
    }

    .inner-menubox {
        padding: 0;
        background: none;
        left: 0;
        width: 100%;
        border: none;
        max-width: 100%;
    }

    .collapse:not(.show) {
        display: block;
    }

    .navbar-nav {
        align-items: center;
        flex-direction: column;
    }

    .navbar-nav:first-child {
        padding-bottom: 0;
    }

    .menubox.fixed .navbar-nav {
        flex-direction: column;
    }

    .navbar-nav:last-child {
        background: none;
        max-width: 100%;
        margin: 0 !important;
        padding-top: 0;
        border: none;
    }

    .navbar-nav .nav-item:after {
        display: none
    }

    .navbar .navbar-nav .nav-item .nav-link {
        padding: 8px 10px;
        font-size: 14px;
        color: #fff;
        border: none;
        text-shadow: none;
    }

    .navbar .navbar-nav .nav-item {
        background: none;
        display: block;
    }

    .navbar-nav .nav-item:before,
    .menubox:before,
    .menubox:after {
        display: none
    }

    .navbar-nav:last-child:before {
        display: none
    }

    .menubox {

        width: 100%;

        top: 58px !important;

        border: none;

        background: var(--second) !important;

        position: fixed;

        top: 0;

        left: 0;

        width: 100%;

        z-index: 10;

        max-width: 100%;

        transform: translateX(-100%);

        transition: 0.3s ease all;

        bottom: initial;

        padding: 50px 20px 0px !important;

        margin: 0;

        height: 100%;

        display: block;
    }

    .menubox.activemenu {
        transform: none;
    }

    .logo img {
        max-width: 100%;
    }

    .logo {
        width: 100%;
        left: 0;
        padding: 0;
        margin-bottom: 30px;
    }

    .logo:after,
    .logo:before {
        display: none;
    }

    .logo a:first-child img {
        display: block;
        margin: 0 auto;
        max-width: 250px;
    }

    .block-banner {
        width: 100%;
        height: 450px;
    }

    .block-banner:before,
    .block-banner:after {
        display: none
    }

    .block-banner>div {
        background-position: center;
        height: 100%;
    }

    .top {
        display: none
    }

    .inner-menubox:after {
        display: none
    }

    .menubox:after {
        display: none
    }

    .header {
        position: relative;
        top: 0;
        margin-top: 58px;
        max-height: initial;
        border: none;
        margin-bottom: 0;
        display: block;
        background-position: top;
        padding: 20px 20px 40px;
    }

    .textdiv {
        padding-top: 0;
    }

    .bloc-menu a {
        display: table;
        padding: 0;
        top: 11px;
        left: 11px;
        position: relative;
        margin: 0;
    }

    .btn-menu:after {
        display: none
    }

    .bloc-menu.fixed {
        left: 0;
        top: 0;
        box-shadow: none;
        border-radius: 0;
    }

    .bloc-menu {
        top: 0;
        left: 0;
        width: auto;
        position: fixed;
        top: 0px;
        width: 100%;
        height: 58px;
        overflow: hidden;
        z-index: 13;
        display: block;
        animation: none !important;
        background: #d0c5af;
    }

    .bloc-menu.fixed .btn-menu {
        margin: 0;
        padding: 0;
        background: none;
        box-shadow: none;
    }

    .bloc-menu img {
        position: relative;
        left: 0;
        top: 0;
        width: 40px;
    }

    .btn_scroll {
        display: none
    }

    .header:before {
        display: none
    }

    .header:after {
        display: none
    }

    .bloc-1-quote {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .bloc-1-quote {
        min-height: 290px;
        max-width: calc(100vw - 50px);
    }

    .block-text-center {
        text-align: center;
        margin: 0 auto;
    }

    .flex-block-2 {
        margin: 0 auto;
        padding: 40px 0px;
    }

    .flex-block h1 b {
        text-align: center;
        font-size: 52px;
        margin: 0px 0px 5px;
    }

    .flex-block h1 span:after {
        display: none;
    }

    .flex-block h1>span {
        text-align: center;
        background: none;
        margin-bottom: 9px;
    }

    .flex-block h1 b span {
        font-size: 42px;
    }

    .flex-block h1 strong {
        background: none;
        text-align: center;
        padding: 0;
        font-size: 30px;
        margin-bottom: 20px;
    }

    img {
        max-width: 100%
    }

    .flex-block h1 {
        text-align: left;
    }

    .back2>div {}

    .flex-block h1 br {
        display: none
    }
}

@media (max-width: 767px) {

    .block-text-center h2 {
        margin-bottom: 20px;
    }

    .footer {
        padding: 0px !important;
    }

    .bloc-1-quote {
        max-width: calc(100vw - 40px);
        padding: 40px;
        margin-bottom: 40px;
    }

    .footer {
        padding: 40px 20px;
    }

    .footer-container>div:first-child {
        width: 100%;
        padding: 0;
        flex-direction: column;
        gap: 20px 0px;
    }

    .bloc-1-quote p {
        font-size: 25px;
        padding: 40px 0px;
        line-height: 1.4;
    }

    .block-banner {
        height: 250px;
        margin-bottom: 0;
    }

    .footerlink {
        text-align: center;
    }

    .footerlink ul {
        display: flex;
        flex-direction: column;
    }

    .menubox:after {
        display: none;
    }

    .logo img {
        margin: 0 auto;
        display: block;
        max-width: 100%;
    }

    .block-banner:after {
        background-position: 85% 100%;
    }

    .logo a {
        margin: 0px;
    }

    .boxfooter img {
        margin: 0 auto 15px;
        display: block;
        max-width: 120px;
    }
}

/* MODIF */
/* MODIF FIN */


.header video {width:100%; height:100%; object-fit: cover;}
#axo-content{overflow: hidden;}
#axo-content .container{width: 1440px; max-width: 100%;}
#axo-content .spacing-content{margin-top: var(--spacing-size); margin-bottom: var(--spacing-size);}
#axo-content hr{margin: 15px auto;}

/* !!!! DÉBUT !!!! STYLE IMAGE & TAILLE */

#axo-content .img-fluid-wh{width: 100%; height: 100%; object-fit: cover; display: block;}
#axo-content .img-fluid-w{width: 100%; object-fit: cover; display: block;}
#axo-content .img-fluid-w.h400{height: 300px;}
#axo-content .img-fluid-w.h300{height: 300px;}
#axo-content .img-fluid-w.h400{height: 400px;}
#axo-content .img-fluid-w.h500{height: 500px;}
#axo-content .img-fluid-w.h600{height: 600px;}
#axo-content .img-fluid-w.h700{height: 700px;}
#axo-content .img-fluid-w.h800{height: 800px;}

/* !!!! DÉBUT !!!! STYLE FIL D'ARIANNE */

#axo-content .breadcrumb{background: rgba(0,0,0,0); margin: 15px auto; padding: 10px 0px; border-bottom: 1px solid rgba(0,0,0,0.1); display: flex; justify-content: center;}
#axo-content .breadcrumb-item+.breadcrumb-item::before{padding: 0px 5px;}
#axo-content .breadcrumb-item{font-size: 13px;}
#axo-content .breadcrumb-item a{color: var(--primary); font-weight: 600; transition: all 0.4s; text-decoration: none;}
#axo-content .breadcrumb-item a:hover{opacity: 0.5;}
#axo-content .breadcrumb-item .active{color: #000;}

/* !!!! DÉBUT !!!! HEADER IMAGE */

#axo-content .axo-banner-header{position: relative; z-index: 1; margin-bottom: 0px;}
#axo-content .axo-banner-header .main-img{position: relative; z-index: 1; display: block; width: 100%; height: 500px; object-fit: cover;}
#axo-content .axo-banner-header:before{content: ''; display: block; width: 100%; height: 100%; position: absolute; left: 0; top: 0; z-index: 2; background: rgb(0,0,0);
background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);}
#axo-content .axo-banner-header .caption{position: absolute; z-index: 3; bottom: 0; left: 0; padding: 40px 15px;}
#axo-content .axo-banner-header .caption .title-page:before{content: ''; display: block; width: 2px; height: calc(var(--spacing-size) * 2); background: #fff; margin: 0px auto 15px;}
#axo-content .axo-banner-header .caption .title-page{display: block; text-transform: uppercase; color: #fff; font-weight: 700; font-family: var(--secondfont); font-size: 70px; text-shadow: 0px 0px 10px rgba(0,0,0,0.3);}

/* !!!! DÉBUT !!!! BANNIERE IMAGE */

#axo-content .axo-banner-img hr, #axo-content .axo-banner-color hr{background: rgba(255,255,255,0.5);}
#axo-content .axo-banner-img, #axo-content .axo-banner-color{position: relative; z-index: 1; color: #fff; padding-top: calc(var(--spacing-size) * 2); padding-bottom: calc(var(--spacing-size) * 2); min-height: 600px; align-items: center;}
#axo-content .axo-banner-img:before{content: ''; display: block; width: 100%; height: 100%; position: absolute; left: 0; top: 0; z-index: 2; background: rgb(0,0,0,0.6);}
#axo-content .axo-banner-img .main-img{position: absolute; z-index: 1; display: block; width: 100%; height: 100%; left: 0; top: 0; object-fit: cover;}
#axo-content .axo-banner-img>.container,#axo-content .axo-banner-img>.container-fluid, #axo-content .axo-banner-color>.container,#axo-content .axo-banner-color>.container-fluid{position: relative; z-index: 10;}
#axo-content .axo-banner-img .small-title{color: #fff;}
#axo-content .shape1{clip-path: polygon(0 var(--spacing-size), 100% 0%, 100% calc(100% - var(--spacing-size)), 0% 100%);}
#axo-content .shape2{clip-path: polygon(0 0, 100% var(--spacing-size), 100% 100%, 0 calc(100% - var(--spacing-size)));}
#axo-content .shape3{clip-path: polygon(0 0, 100% var(--spacing-size), 100% calc(100% - var(--spacing-size)), 0 100%);}
#axo-content .shape4{clip-path: polygon(0 var(--spacing-size), 100% 0, 100% 100%, 0 calc(100% - var(--spacing-size)));}
#axo-content .shape5{clip-path: polygon(0% 0%, 50% var(--spacing-size), 100% 0, 100% 100%, 0% 100%);}
#axo-content .shape6{clip-path: polygon(0 0, 50% var(--spacing-size), 100% 0, 100% calc(100% - var(--spacing-size)), 50% 100%, 0 calc(100% - var(--spacing-size)));}
#axo-content .shape7{clip-path: polygon(0 var(--spacing-size), 50% 0, 100% var(--spacing-size), 100% 100%, 50% 100%, 0 100%);}
#axo-content .shape8{clip-path: polygon(0 var(--spacing-size), 50% 0, 100% var(--spacing-size), 100% 100%, 50% calc(100% - var(--spacing-size)), 0 100%);}
/* !!!! DÉBUT !!!! TEXTE */

#axo-content .h1,#axo-content .h2,#axo-content .h3,#axo-content .h4,#axo-content .h5{font-weight: 700; margin-bottom: 20px; color: var(--primary); font-family: var(--secondfont);}
#axo-content .title-after:after{content: ''; display: block; width: var(--spacing-size); height: 2px; margin: 20px 0px 0px; background: var(--second);}
#axo-content .title-after.text-center:after{margin-left: auto; margin-right: auto;}
#axo-content .small-title{display: block; text-transform: uppercase; font-size: 60%; color: auto; font-family: var(--mainfont); margin-top: 7px;}

#axo-content .h1{font-size: 40px;}
#axo-content .h2{font-size: 36px;}
#axo-content .h3{font-size: 32px;}
#axo-content .h4{font-size: 28px;}
#axo-content .h5{font-size: 24px;}
#axo-content .h6{font-size: 20px;}

#axo-content p, #axo-content .p, #axo-content ul, #axo-content .table{font-size: 16px; font-weight: 400; line-height: 21px;}
#axo-content p a, #axo-content ul a{color: var(--primary); font-weight: bold; transition: all 0.4s; text-decoration: none;}
#axo-content p a:hover, #axo-content ul a:hover{opacity: 0.4;}
#axo-content ul{padding-left: 15px; margin-bottom: 15px;}

#axo-content .table{background:rgba(0,0,0,0.05);}
#axo-content a.link-btn.link-icone:after{font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f054" !important; display: inline-block; margin-left: 10px;}
#axo-content a.link-btn{color: #fff; text-align: center; cursor: pointer; background: var(--primary); color: #fff; text-transform: uppercase; transition: all 0.4s; font-size: 14px; font-weight: 500; display: table; text-decoration: none; padding: 9px 15px;}
#axo-content a.link-btn:hover{background: var(--second); color: #fff;}
#axo-content a.link-btn.large{width: 100%;}


/* !!!! DÉBUT !!!! COULEUR & PERSONNALISATION */

#axo-content .border-box{border: 2px solid var(--primary);}
#axo-content .back-primary{background: var(--primary); color: #fff;}
#axo-content .back-second{background: var(--second); color: #fff;}
#axo-content .back-third{background: var(--third); color: #fff;}
#axo-content .color-primary{color: var(--primary);}
#axo-content .color-second{color: var(--second);}
#axo-content .color-third{color: var(--second);}
#axo-content .back-grey1{background: var(--grey1);}
#axo-content .back-grey2{background: var(--grey2);}
#axo-content .back-grey3{background: var(--grey3);}
#axo-content .back-grey4{background: var(--grey4);}
#axo-content .rounded1{border-radius: 10px;}
#axo-content .rounded2{border-radius: 30px;}
#axo-content .rounded3{border-radius: 100%;}
#axo-content .back-primary .h1, #axo-content .back-primary .h2, #axo-content .back-primary .h3, #axo-content .back-primary .h4,#axo-content .back-primary .h5,#axo-content .back-primary .h6, #axo-content .back-second .h1, #axo-content .back-second .h2, #axo-content .back-second .h3, #axo-content .back-second .h4,#axo-content .back-second .h5,#axo-content .back-second .h6, #axo-content .back-third .h1, #axo-content .back-third .h2, #axo-content .back-third .h3, #axo-content .back-third .h4,#axo-content .back-third .h5,#axo-content .back-third .h6, #axo-content .axo-banner-img .h1, #axo-content .axo-banner-img .h2, #axo-content .axo-banner-img .h3, #axo-content .axo-banner-img .h4,#axo-content .axo-banner-img .h5,#axo-content .axo-banner-img .h6, #axo-content .back-primary .small-title, #axo-content .back-second .small-title, #axo-content .back-third .small-title{color: #fff;}
#axo-content .back-primary a.link-btn, #axo-content .back-primary a.link-btn, #axo-content .back-primary a.link-btn, #axo-content .back-primary a.link-btn,#axo-content .back-primary a.link-btn,#axo-content .back-primary a.link-btn, #axo-content .back-second a.link-btn, #axo-content .back-second a.link-btn, #axo-content .back-second a.link-btn, #axo-content .back-second a.link-btn,#axo-content .back-second a.link-btn,#axo-content .back-second a.link-btn, #axo-content .back-third a.link-btn, #axo-content .back-third a.link-btn, #axo-content .back-third a.link-btn, #axo-content .back-third a.link-btn,#axo-content .back-third a.link-btn,#axo-content .back-third a.link-btn, #axo-content .axo-banner-img a.link-btn, #axo-content .axo-banner-img a.link-btn, #axo-content .axo-banner-img a.link-btn, #axo-content .axo-banner-img a.link-btn,#axo-content .axo-banner-img a.link-btn,#axo-content .axo-banner-img a.link-btn, #axo-content .back-primary a.link-btn, #axo-content .back-second a.link-btn, #axo-content .back-third a.link-btn{background: transparent; border: 1px solid #fff; color: #fff}
#axo-content .back-primary a.link-btn:hover, #axo-content .back-primary a.link-btn:hover, #axo-content .back-primary a.link-btn:hover, #axo-content .back-primary a.link-btn:hover,#axo-content .back-primary a.link-btn:hover,#axo-content .back-primary a.link-btn:hover, #axo-content .back-second a.link-btn:hover, #axo-content .back-second a.link-btn:hover, #axo-content .back-second a.link-btn:hover, #axo-content .back-second a.link-btn:hover,#axo-content .back-second a.link-btn:hover,#axo-content .back-second a.link-btn:hover, #axo-content .back-third a.link-btn:hover, #axo-content .back-third a.link-btn:hover, #axo-content .back-third a.link-btn:hover, #axo-content .back-third a.link-btn:hover,#axo-content .back-third a.link-btn:hover,#axo-content .back-third a.link-btn:hover, #axo-content .axo-banner-img a.link-btn:hover, #axo-content .axo-banner-img a.link-btn:hover, #axo-content .axo-banner-img a.link-btn:hover, #axo-content .axo-banner-img a.link-btn:hover,#axo-content .axo-banner-img a.link-btn:hover,#axo-content .axo-banner-img a.link-btn:hover, #axo-content .back-primary a.link-btn:hover, #axo-content .back-second a.link-btn:hover, #axo-content .back-third a.link-btn:hover{background: #fff; color: #000}
#axo-content .back-second .title-after:after{background: var(--primary);}
#axo-content .shadow-box{box-shadow: var(--shadow-box);}
#axo-content .shadow-text{text-shadow: var(--shadow-text);}

#axo-content .axo-icone{font-size: 25px;}
#axo-content .axo-icone.big{font-size: 45px;}
#axo-content .axo-icone.box{background: var(--primary); color: #fff; display: flex; justify-content: center; align-items: center; width: var(--spacing-size); height: var(--spacing-size);}
#axo-content .axo-icone.box.big{width: calc(var(--spacing-size) * 2); height: calc(var(--spacing-size) * 2);}
.custom-btn {border-radius:40px;transition: all 0.3s ease; padding: 10px 20px; display: block; width: fit-content; background: var(--primary); color: var(--white);}
.custom-btn:hover {background:var(--primary-dark);color:white;}
ul.custom, #axo-content ul.custom { list-style: none; padding-left: 0; }
ul.custom li { padding-left: 1.6em; position: relative;}
ul.custom li:before { content: "\f00c"; font-family: "Font Awesome 5 Free"; font-weight: 900; position: absolute; left: 0; color: var(--primary);}

#axo-content .container.image-section {position:relative; min-width: calc(100% + 30px); color:white; margin-left: -15px; padding: 0; overflow: hidden; margin-bottom:50px;}
#axo-content .container.image-section .image-container {position:absolute; width:100%; height:100%;}
#axo-content .container.image-section img {width:100%; height:100%; object-fit: cover;}
#axo-content .container.image-section .image-container::after {content:"";position:absolute; width:100%; height:100%; top:0; left:0; background:rgba(0, 0, 0, 0.7);}
#axo-content .container.image-section .row {max-width:940px; width:100%; margin:0 auto; padding:130px 0;}
#axo-content .container.image-section .row.text-center .custom-btn {margin-inline: auto;}

/* SECTION CARDS FEATURES */
.cards-section .row > [class*="col-"]{padding-left: 12px; padding-right: 12px; margin-bottom: 24px;}
.card-feature{background: #fff; border-radius: 12px; padding: 36px 28px; height: 100%; box-shadow: var(--shadow-box); transition: transform 0.3s ease, box-shadow 0.3s ease; border-top: 4px solid transparent;}
.card-feature:hover{transform: translateY(-6px); box-shadow: 0px 12px 30px rgba(0,0,0,0.13); border-top-color: var(--primary);}
.card-feature--accent{background: var(--grey1); border-top-color: var(--primary);}
.card-feature__icon{font-size: 32px; color: var(--primary); margin-bottom: 18px;}
.card-feature__title{font-size: 20px; font-weight: 700; color: var(--back); margin-bottom: 14px; line-height: 1.3;}
.card-feature p, .card-feature ul {font-size: 15px; color: var(--gris); line-height: 1.7; margin-bottom: 8px;}

/* HERO + CARDS  */
.hero-cards {color:white; position:relative; min-width: calc(100% + 30px); margin-left: -15px;}
.hero-cards:before {content:""; display:block; position:absolute; top:0; left:0; width:100%; height:80%; background:var(--back);}
.hero-cards .hero-cards__title {padding:80px 0 60px;}
.hero-cards .hero-cards__title p {opacity:.8;}

/* BOXED */
.boxed {background:var(--primary); padding:100px 0;}
.boxed.second {background:var(--second);}
.boxed.third {background:var(--third);}
.boxed.back {background:var(--back);}
.boxed.black {color:var(--black);}

/* !!!! DÉBUT !!!! RESPONSIVE */

@media all and (max-width: 1440px) {
	#axo-content p, #axo-content .p, #axo-content ul, #axo-content .table{font-size: 15px; font-weight: 400; line-height: 20px;}
#axo-content .h1{font-size: 36px;}
#axo-content .h2{font-size: 33px;}
#axo-content .h3{font-size: 29px;}
#axo-content .h4{font-size: 26px;}
#axo-content .h5{font-size: 23px;}
#axo-content .h6{font-size: 20px;}
}

@media all and (max-width: 991px) {
	#axo-content .axo-banner-header .main-img{height: 280px;}
	#axo-content .axo-banner-header .caption .title-page{font-size: 40px;}
	#axo-content .h1{font-size: 30px;}
	#axo-content .h2{font-size: 27px;}
	#axo-content .h3{font-size: 24px;}
	#axo-content .h4{font-size: 21px;}
	#axo-content .h5{font-size: 18px;}
	#axo-content .h6{font-size: 15px;}
	#axo-content .img-fluid-w.h300, #axo-content .img-fluid-w.h400, #axo-content .img-fluid-w.h500,#axo-content .img-fluid-w.h600, #axo-content .img-fluid-w.h700,#axo-content .img-fluid-w.h800
	{max-height: 400px;}
}

@media all and (max-width: 560px) {
	#axo-content p, #axo-content .p, #axo-content ul, #axo-content .table{font-size: 14px; font-weight: 400;}
	#axo-content .img-fluid-w.h300, #axo-content .img-fluid-w.h400, #axo-content .img-fluid-w.h500,#axo-content .img-fluid-w.h600, #axo-content .img-fluid-w.h700,#axo-content .img-fluid-w.h800
	{height: 300px;}
	:root {
		--spacing-size: 30px;
	}
	#axo-content .axo-icone{font-size: 16px;}
	#axo-content .axo-icone.big{font-size: 26px;}
	#axo-content .axo-banner-header .caption .title-page{font-size: 30px;}
}

/* DÉBUT SLIDE STYLE */
.axo-slide-style .slick-prev, .axo-slide-style .slick-next{position: absolute; transition: all 0.4s; top: 50%; z-index: 99; background: var(--primary); width: 40px; height: 40px; display: flex; justify-content: center; align-items: center;}
.axo-slide-style .slick-prev:hover,.axo-slide-style .slick-next:focus,.axo-slide-style .slick-prev:focus, .axo-slide-style .slick-next:hover{background: #000;}
.axo-slide-style .slick-prev{left: 0px;}
.axo-slide-style .slick-next{right: 0px;}
.axo-slide-style .slick-dots{bottom: 0px; left: 0px; padding: 0px;}
.axo-slide-style .slick-dots li{padding: 0px; margin: 0px;}
.axo-slide-style .slick-dots li button{display: flex; justify-content: center; align-items: center; padding: 0px;}
.axo-slide-style .slick-prev:before{font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f053" !important;}
.axo-slide-style .slick-next:before{font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f054" !important;}
.axo-slide-style .slick-dots li button:before{left: 50%; top: 50%; transform: translate(-50%,-50%);}
.axo-slide-style .slick-dots li button:before{background: #fff; border: 1px solid var(--primary); content: '' !important; display: block; width: 14px !important; height: 14px !important; border-radius: 15px; opacity: 1 !important;}
.axo-slide-style .slick-dots li.slick-active button:before{background: var(--primary);}
.axo-slide-style a{outline: none; text-decoration: none;}

#axo-content .slider-simple.presta img {
    max-height:600px;
}