@import url('../fonts/stylesheet.css');

:root {
    --black: #000;
    --white: #fff;
    --primary: #96ceff;
    --second: #36637f;
    --back: #2385da;
    --gris: #616468;
    --third: #2C7A99;
    --mainfont: "Hind", sans-serif;
    --secondfont: "Montserrat", sans-serif;
    --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;
}

body {
    padding: 0px;
    margin: 0px;
    font-family: 'Titillium Web';
    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;
}

.header .d-flex {
    position: relative;
}

/* .header .d-flex:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2;
    background: url(../images/ligne.png) no-repeat;
    background-position: 11px 0px;
} */

.flex-bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 25px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
    background: #fff;
}

.flex-bottom-section:after {
    content: "";
    width: 100px;
    height: 100%;
    position: absolute;
    left: -20px;
    top: 0;
    background: #fff;
    transform: skewX(35deg);
}

.flex-bottom-section:before {
    content: "";
    background: var(--back);
    width: 10px;
    height: calc(100% + 15px);
    position: absolute;
    left: -23px;
    top: 0;
    z-index: 2;
    transform: skewX(35deg);
}

.header .d-flex a {
    display: block
}

.right-top {
    display: flex;
    align-items: center;
    z-index: 1;
}

.right-top span {
    color: #000;
    text-align: left;
    font-size: 15px;
    line-height: 1.2;
    display: block;
    margin-right: 30px;
}

.right-top .phone {
    color: #000;
    padding: 0;
    font-size: 21px;
    position: relative;
    margin-left: 13px;
    z-index: 1;
    display: block;
    text-align: right;
    font-weight: 800;
    position: relative;
}

.right-top .phone:before {
    content: "";
    background: #96ceff;
    width: 12px;
    height: 15px;
    position: absolute;
    left: -30px;
    top: -15px;
    transform: skewx(34deg);
}

.right-top .phone:nth-child(2) {
    font-size: 20px;
}

.right-top .phone2 {
    color: #000;
    padding: 0;
    font-size: 24px;
    position: relative;
    margin-left: 30px;
    display: block;
    text-align: right;
    font-weight: 700;
}

.banner {
    position: relative;
    z-index: 0;
}

.block-banner {
    position: relative;
    overflow: hidden;
    max-height: 580px;
}

.block-banner img {
    max-width: 100%
}

.banner {
    overflow: hidden;
    height: 100%;
    animation: zoom 8s ease infinite alternate;
    background-position: top;
    background-size: cover;
    transform: scale(1.1);
    height: 100%;
    width: 100%;
    position: relative;
}


@keyframes zoom {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.0);

    }
}

.banner img {
    max-width: 100%;
    opacity: 0;
}
.banner video {
    height:100%;
    width:100%;
    object-fit: cover;;
}

.logo {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 100px;
}

.logo a {
    display: table;
    margin-bottom: 0;
}

.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 0px;
}

.dropdown-item {
    transition: 0.5s ease all;
    color: #fff;
    padding: 10px 20px;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 400;
}

.dropdown-item:hover {
    background: var(--second);
    color: #fff;
}


.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: 15px 35px;
    white-space: nowrap;
    transition: 0.3s ease all;
    font-size: 18px;
    text-align: left;
    font-weight: 700;
    color: #000;
    position: relative;
    display: flex;
    align-items: center;
}

.navbar .navbar-nav .nav-item .nav-link span {
    position: relative;
    z-index: 2;
    display: block;
}

.navbar .navbar-nav .nav-item .nav-link:before {
    content: "";
    width: 7px;
    height: 34px;
    position: absolute;
    background: var(--primary);
    right: -4px;
    top: 12px;
    transform: skewX(-14deg);
    transition: 0.3s ease all;
    z-index: 1;
}

.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;
}

.fixed .navbar .navbar-nav .nav-item .nav-link {
    color: #fff
}

.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.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;
    width: 100%;
    position: relative;
    z-index: 20;
    background: #ffff;
    max-width: 1200px;
    padding: 0px 20px;
    padding-right: 60px;
    margin: -23px auto 0;
    box-shadow: 1px 1px 7px 3px #00000094;
}

.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;
}

.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;
}



/****** end menu ***/

.domains-section {

    padding: 0px 20px 100px;
    text-align: center;
    color: white;
    position: relative;
    max-width: 1440px;
    margin: 0px auto 100px;
}


h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.domains-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
}

.domain-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 380px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    padding: 10px 10px;
    background: url(../images/back2.png) no-repeat;
    height: 148px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.domain-item p {
    font-size: 23px;
    line-height: 1;
    margin: 0;
    font-weight: 700;
    padding: 0px 50px;
}

.domain-item:hover {
    background-color: #5c5c6b;
    transform: translateY(-5px);
    cursor: pointer;
}


.block-center-text {

    max-width: 1440px;

    margin: 0 auto 50px;

    margin-top: 40px;

    padding: 0px 15px 0px;

    color: #000;
}

.block-text-content h2 {
    font-size: 24px;
    display: block;
    text-align: center;
    margin-bottom: 25px;
}

.block-text-content {
    margin: 0 auto;
    padding: 0;
    max-width: 890px;
}

.block-text-content b {
    font-size: 26px;
    font-weight: 700;
    margin: 30px auto 20px;
}

.block-text-content p {
    font-size: 18px;
    font-weight: 600;
    margin: 0px 0px 15px;
    color: #000;
    text-align: center;
}

.block-text-content p {

    max-width: 920px;

    text-align: center;

    font-weight: 700;

    margin: 0 auto 100px;
}


.block-text-content p.back-text {
    margin: 0 auto 100px;
    color: #000;
    font-size: 20px;
    background: url(../images/top.png), url(../images/bottom.png);
    background-repeat: no-repeat;
    padding: 71px 35px 65px;
    background-position: 0% 0%, 100% 100%;
    display: block;
    font-weight: 700;
    text-align: center;
}

/****** bloc-text_flex  ***/
.block-encarts {
    max-width: 1420px;
    margin: 0 auto 0px;
    overflow: hidden;
    position: relative;
    padding-bottom: 0;
}

.block-encarts>h2 {
    border-left: 150px solid #98c6ee;
    line-height: 1;
    padding-left: 13px;
    font-size: 29px;
    display: block;
    margin-bottom: 80px;
}

.block-encarts h2 span {
    display: block;
    font-weight: 700;
    font-size: 24px;
}

.block-encarts h2 b {
    font-weight: 700;
    display: block;
}

.flex-block-text {
    margin: 0 auto 80px;
    overflow: hidden;
    padding: 100px 0px 0px;
    max-width: 1200px;
    background-position: 100% 100%;
    background-size: 64% auto;
}

.flex-block-text img {}

.flex-block-text h1 {
    font-size: 26px;
    font-weight: 500;
    display: block;
    padding-bottom: 20px;
    padding-top: 24px;
    max-width: 960px;
    margin: 0 auto 15px;
    line-height: 1;
    position: relative;
    z-index: 2;
}

.flex-block-text h1 span {
    font-size: 33px;
    display: block;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 1px;
}

.flex-block-text h1 span:nth-child(2) {
    color: #36637f;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0;
}

.flex-block-text h1 b {
    font-size: 26px;
    font-weight: 700;
    color: #609bcf;
    display: block;
    margin-top: 25px;
    border-left: 18px solid #96ceff;
    padding-left: 19px;
    line-height: 29px;
}

.flex-block-text>div {
    align-items: center;
    margin: 0 auto;
}

.flex-block-text p {
    font-size: 17px;
    font-weight: 200;
    padding: 0;
    margin: 0;
}

.flex-block-text .flex-block_text p:first-child {
    font-size: 18px;
    max-width: 460px;
    font-weight: 400;
}

.flex-block-text .flex-block_text {
    margin: 0 auto;
    padding: 0;
}

.flex-block-2 {
    margin: 0 auto 0px;
}

.flex-block-2 .flex-block_text {
    margin: 0 auto 100px;
    position: relative;
}

.flex-block-2 .flex-block_text:hover img {
    transform: scale(1.1);
}

.flex-block-2 .flex-block_text h2 {
    font-weight: 800;
    font-size: 19px;
    text-shadow: none;
    padding: 16px;
    position: relative;
    text-transform: none;
    margin-bottom: 0;
    letter-spacing: 0;
    color: #000;
    transition: 0.3s ease all;
    padding: 15px 0px;
}

.flex-block-2 .flex-block_text h2 i {
    color: #36637f;
    font-size: 20px;
    font-weight: 500;
    display: block;
    margin-top: 15px;
    max-width: 260px;
}

.img-encarts {
    display: table;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    width:100%;
}

.img-encarts img {
    transition: 0.3s ease all
}

.img-encarts:hover img {
    transform: scale(1.1);
}

.flex-block-2 img {
    max-width: 100%;
    width:100%;
}

.flex-block-2>div .col-12 {
    width: calc(100% / 3);
    flex: calc(100% / 3);
    max-width: calc(100% / 3);
    padding: 0px 10px;
}

.flex-block-2>div {
    width: 100%;
    max-width: 1350px;
}

.flex-block-2 .col-12:last-child {
    position: relative;
}


.flex-img {
    gap: 0;
    margin: 0px auto 0px;
    justify-content: space-between;
    max-width: 1370px;
    flex-wrap: wrap;
}


.flex-img>div {
    width: max-content;
    position: relative;
    margin-bottom: 20px;
    max-width: max-content;
    padding: 0px 0px;
}

.flex-img>div:nth-child(3)>div {
    min-width: 440px;
    background: var(--primary);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-img>div:nth-child(3)>div a {
    transition: 0.3s ease all;
    padding: 0px 15px;
}

.flex-img>div:nth-child(3)>div a:hover {
    transform: scale(0.8)
}

.flex-img img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}


.link-devis {
    display: block;
    color: #fff;
    padding: 0;
    text-align: center;
    font-weight: 600;
    font-size: 30px;
    transition: 0.3s ease all;
    margin: 40px 0px 0px;
    position: relative;
    background: var(--second);
    max-width: 330px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    letter-spacing: 1px;
    position: relative
}

.link-devis:before {
    content: "";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 0 25px 25px;
    border-color: transparent transparent #fff transparent;
    transform: rotate(0deg);
    position: absolute;
    right: 0;
    bottom: 0;
}


.link-devis b {
    font-weight: 800
}

.link-devis:hover:before {}

.link-devis:hover:after {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
}

.link-devis:hover {
    color: #fff;
    letter-spacing: 2px;
    background: var(--primary);
    color: var(--second);
}

.link-rubrique {
    position: absolute;
    width: calc(100% - 30px);
    height: 100%;
    left: 15px;
    top: 0;
    cursor: pointer;
}

.link-rubrique {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    cursor: pointer;
    z-index: 2;
}

.flex-block {
    position: relative;
    transition: 0.5s ease all;
}

.flex-block>div {
    display: flex;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 0;
    position: relative;
    z-index: 2;
    justify-content: center;
}

.flex-block-3 {
    max-width: 1440px;
    margin: 100px auto 100px;
    background: url(../images/back.jpg) no-repeat;
    padding: 183px 30px;
    background-size: cover;
    background-size: 100% 100%;
}

.banner-header {
    width: 100%;
    height: 640px;
}

.flex-block-3 .flex-block_text.back-carte {
    max-width: 500px;
}

.flex-block-3 .flex-block_text p {
    margin: 0;
    font-size: 17px;
    font-weight: 400;
    display: block;
    color: #fff;
    text-align: justify;
}

.flex-block-3>div {
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.flex-block-3 h2 {
    font-size: 31px;
    font-weight: 800;
    margin-bottom: 120px;
    color: #fff;
    line-height: 1;
    letter-spacing: 2px;
    text-align: center;
}

.btn-plan, .btn-contact {
    display: flex;
    border-bottom: 7px solid #fff;
    justify-content: flex-end;
    padding-bottom: 15px;
    align-items: flex-end;
    color: #fff;
    font-weight: 600;
    font-size: 21px;
    max-width: 470px;
}

.btn-plan span {
    margin-left: 20px;
    transition: 0.3s ease all;
}

.btn-plan img {
    transition: 0.3s ease all;
}

.btn-plan:hover img {
    transform: scale(0.9)
}

.btn-plan:hover {
    color: #fff;
    letter-spacing: 2px
}

.flex-block-3 h2 span {
    font-size: 44px;
    display: block;
    font-weight: 700;

}

.flex-block-3 h2 b {
    font-size: 25px;
    font-weight: 700;
}

.flex-block_text h2 b {
    display: block;
    font-size: 44px;
    font-weight: 800;
    margin: 8px 0px;
}


.flex-block-4 {
    max-width: 1100px;
    margin: 0 auto;
}

.flex-block.flex-block-4>div {
    align-items: center;
}

.flex-block-4 h2 {}

.flex-block-4 p {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 25px;
}

.flex-block-4 i {
    color: #609bcf;
}

.flex-block-4 img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}


.flex-block-5 {
    max-width: 1060px;
    margin: 0 auto 150px;
    color: #36637f;
}

.flex-block-5 h2 {
    font-size: 31px;
    font-weight: 600;
    margin: 0;
}

.flex-block-5 p {
    margin: 0;
    font-size: 17px;
    padding-left: 15px;
}

.flex-block-contact {
    background: #36637f;
    max-width: 1100px;
    margin: 60px auto 150px;
    padding: 30px 0px;
    border-radius: 45px;
}

.flex-block-contact .col-12 {
    padding: 0px
}

.link-contact {
    background: #9fd0fa;
    width: 100%;
    display: block;
    padding: 13px 40px;
    font-weight: 700;
    color: #000;
    font-size: 20px;
    text-align: center;
    position: relative;
    padding-left: 0;
    transition: 0.3s ease all;
}

.link-contact:after {
    content: "";
    width: 49px;
    height: 100%;
    position: absolute;
    left: -25px;
    top: 0;
    background: #9fd0fa;
    transform: skewX(35deg);
    transition: 0.3s ease all;
}

.link-contact:hover:after {
    transform: none;
    background: #fff;
}

.link-contact:hover {
    background: #fff;
    color: #36637f;
}

.flex-block-contact .col-12 p {
    color: #fff;
    text-align: left;
    font-weight: 600;
    font-size: 20px;
    max-width: 620px;
    margin: 0 auto;
    font-style: italic;
}
.flex-block-contact .col-12 p.contact-text {
    font-style:normal;
    line-height: unset;
    font-weight: 400;   
}

.flex-block-contact>div {
    align-items: center
}

/****** page interne ***/


.text {
    color: #000;
    max-width: 1440px;
    margin: 0px auto 0px;
    padding: 0px 15px;
    position: relative;
    z-index: 2;
}

.textdiv {
    margin: 30px auto 0px;
    padding: 50px 30px 100px;
    line-height: 31px;
    font-size: 17px;
    text-align: justify;
    position: relative;
    z-index: 1;
    font-weight: 200;
}

.titre-block {
    color: #000;
    font-size: 27px;
}



/****** Contact ***/

.footer-ico {
    display: block;
    max-width: 120px;
}

.btn-contact {
    height: auto;
    display: table;
    width: auto;
    font-size: 14px;
    margin: 0;
    clear: both;
    color: #fff;
    padding: 0;
    background: none;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    font-weight: 300;
    transition: 0.3s ease all;
    margin: 0 auto;
}

.btn-contact:after {
    display: none;
}

.btn-contact:hover {
    background: var(--primary);
    text-decoration: none;
    color: #fff;
    padding: 14px 71px;
    border-color: var(--primary);
}

.btn-contact:hover {
    background: var(--primary);
    padding: 0px 15px;
    left: 0;
    top: 0;
    width: auto;
    color: #36637f;
}

.flex-bottom-footer {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 35px 25px;
    background: var(--second);
    background-position: bottom, 50% 0%;
    background-repeat: no-repeat;
    background-size: auto, 50%;
}

.flex-bottom-footer a img {
    max-width: 390px;
    display: block;
    margin: 0 auto;
}

.flex-bottom-footer>div {
    position: relative;
    width: 100%;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
}

.flex-bottom-footer>div span {
    color: #fff;
    text-align: right;
    font-size: 14px;
    font-weight: 300;
    display: block;
}

.flex-bottom-footer p {
    margin: 0;
    font-size: 20px;
    display: table;
    margin: 0 auto;
    color: #fff;
}

.flex-bottom-footer .phone {
    color: #fff;
    font-size: 23px;
    display: block;
    font-weight: 800;
    text-align: right;
    letter-spacing: 2px;
}

/****** end Contact ***/


.footer-ico {
    display: block;
    max-width: 120px;
    filter: brightness(0) saturate(100%) invert(70%) sepia(17%) saturate(1077%) hue-rotate(168deg) brightness(90%) contrast(83%);
}



/****** footer ***/



.page .flex-bottom-footer {
    margin-top: 0;
}

.boxfooter {
    overflow: hidden;
    padding: 15px 0px;
    z-index: 1;
    position: relative;
    margin: 0 auto;
    max-width: 1440px;
    padding-top: 20px;
}

.footerlink {
    color: #d0d0d0;
    font-size: 10px;
    font-family: verdana;
    text-align: right;
    padding: 0;
}

.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: var(--primary);
    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 ***/


@media (max-width: 1280px) {
    .navbar .navbar-nav .nav-item .nav-link {
        text-align: center;
        font-size: 15px;
    }

    .flex-bottom-footer a img {
        max-width: 169px;
    }

    .flex-bottom-footer>div span {
        font-size: 12px;
    }

    .flex-block-text>div img {
        max-width: 100%
    }

    .flex-img>div {
        max-width: calc(100% / 3);
        padding: 0px 10px;
        width: calc(100% / 3);
        flex: calc(100% / 3);
    }

    .flex-img>div:nth-child(3)>div {
        min-width: 100%;
    }

    .navbar-nav:after {
        height: 100%;
    }

    .flex-img {
        justify-content: center
    }

    .flex-block-2 .col-12:last-child {
        left: 0;
    }


}


@media (max-width: 1280px) {
    .flex-block_text h2 b {
        font-size: 35px;
    }

    .flex-block_text h2 span {
        font-size: 22px;
    }

}

@media (min-width:991px) {
    .navbar-expand-lg .navbar-collapse {
        display: block !important;
    }

    .navbar-nav .nav-item.dropdown:hover>.dropdown-menu {
        display: block;
    }

}

@media (max-width: 992px) {
    .flex-block>div .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
        top: 0 !important;
    }


    .btn-plan {
        margin: 0 auto;
    }

    .banner-header {
        height: 310px;
        margin-bottom: 30px;
    }

    .flex-block-3 {
        margin-bottom: 40px;
        margin-top: 0;
    }

    .flex-block_text h2 {
        font-size: 27px;
        text-align: center;
    }

    .domains-section {
        padding-bottom: 0;
        margin-bottom: 50px;
    }

    .domains-list {
        flex-direction: column;
        align-items: center;
    }

    .flex-block-3 .flex-block_text {
        margin-top: 0;
        background: none !important;
        padding: 0px !important;
        max-width: 380px;
        margin: 0 auto;
    }

    .flex-block-2>div:after {
        display: none
    }

    .flex-block-text h1 {
        text-align: center;
        margin-bottom: 20px;
        padding-top: 0;
        background-position: 50% 0px;
    }

    .flex-block-text h1 b {
        border: none;
        padding: 0;
    }

    .flex-block-text h1 span {
        text-align: center !important;
        font-size: 37px;
        white-space: normal !important;
    }

    .flex-block-text p {
        text-align: center;
        max-width: 100% !important;
        margin-bottom: 30px;
    }



    .link-devis {
        margin: 0 auto 40px;
    }

    .flex-bottom-footer {

        flex-direction: column;
    }

    .flex-bottom-footer a img {
        max-width: 100%
    }

    .flex-bottom-footer p {
        margin: 0 auto;
        text-align: center;
    }

    .flex-bottom-footer a {
        display: table;
        margin: 0 auto;
    }

    .right-top .phone2 {
        margin: 0;
        text-align: center;
    }


    .flex-bottom-footer .phone {
        text-align: center;
        margin: 0 auto;
    }

    .flex-bottom-footer>div {
        justify-content: center;
        align-items: center
    }

    .flex-bottom-footer>div {
        padding: 10px;
    }

    .flex-bottom-footer>div span {
        text-align: center
    }

    .block-text-content {
        margin-bottom: 0;
        max-width: calc(100vw - 40px);
    }

    .flex-block-3 h2 {
        margin-bottom: 30px
    }


    .flex-block>div .col-12 img {
        max-width: 100%;
        display: table;
        margin-left: auto;
        margin-right: auto;
        opacity: 1;
        margin-top: 30px;
    }

    .flex-block-2 img {
        margin: 0 auto;
    }

    .flex-block-2 {
        margin-bottom: 0;
        margin: 0;
        padding: 0px 15px 40px;
    }

    .flex-block-2>div .col-12 {
        margin-bottom: 0;
    }

    .flex-block-2 .flex-block_text h2 {
        display: block;
        margin: 0 auto 0px;
        font-size: 23px;
    }

    .flex-block-2 .flex-block_text h2 br {
        display: none
    }

    .flex-block-2 .flex-block_text {
        margin-bottom: 15px;
    }

    .img-encarts {
        margin: 0 auto;
    }

    .flex-block-2 .col-12:last-child {
        margin: 0 auto;
    }

    .flex-block-2 .flex-block_text h2 i {
        margin: 10px auto 0px;
    }

    .flex-block-2 .col-12:last-child>div {
        padding-left: 0;
        flex-direction: column;
    }

    .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;
    }

    .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;
    }

    .dropdown-item {
        text-transform: none;
        font-weight: 500;
    }

    .navbar-nav:last-child {
        background: none;
        max-width: 100%;
        margin: 0 !important;
        padding-top: 0;
    }

    .navbar .navbar-nav .nav-item .nav-link {
        padding: 5px 20px;
        font-size: 18px;
        color: #fff;
        display: table;
        margin: 0 auto;
        position: relative;
    }

    .dropdown-toggle::after {
        position: absolute;
        right: 0;
        top: 18px;
    }

    .navbar .navbar-nav .nav-item {
        background: none
    }

    .menubox:before,
    .menubox:after {
        display: none
    }

    .activemenu.menubox {
        transform: none;
    }

    .flex-block-contact {
        margin-bottom: 50px
    }

    .block-encarts {
        margin-top: 0;
        margin-bottom: 50px;
    }

    .block-encarts>h2 {
        border: none;
        text-align: center;
        padding: 0;
        margin-bottom: 10px;
    }

    .link-contact {
        max-width: 280px;
        margin: 20px auto 0px;
        text-align: center;
        padding: 13px 40px;
    }

    .link-contact span {
        display: table;
        margin: 0 auto;
    }

    .link-contact:after {
        display: none
    }

    .menubox {
        width: 100%;
        top: 58px !important;
        border: none;
        background: var(--second);
        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: 100px 20px;
        height: 100%;
        box-shadow: none;
    }

    .logo img {
        max-width: 350px;
    }

    .logo {
        position: absolute;
        width: 100% !important;
        height: 100%;
        justify-content: center;
        align-items: center;
        padding: 0;
        justify-content: center;
        top: 0;
    }

    .header .d-flex:after {
        background-position: 11px 50%;
        display: none;
    }

    .header .d-flex>div {}

    .flex-block-text {
        padding: 40px 20px 0;
        margin-top: 0;
        margin-bottom: 0;
        background: none;
    }

    .logo a {
        padding: 0px;
        margin-bottom: 0;
    }

    .header {
        position: relative;
        top: 0;
        margin-top: 58px;
        max-height: initial;
        border: none;
        margin-bottom: 10px;
        padding: 0;
        background: var(--primary);
    }

    .flex-bottom-section {
        padding: 0
    }

    .flex-bottom-section .right-top {
        display: none
    }

    .header .d-flex {
        top: 0px;
        padding: 0;
        display: block !important;
    }

    .block-banner {
        height: 320px;
    }

    .bloc-menu a {
        display: table;
        padding: 0;
        top: 11px;
        left: 11px;
        position: relative;
        margin: 0;
    }

    .btn-menu:after {
        display: none
    }

    #bloc-1: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: var(--second);
    }

    .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;
        filter: none !important;
    }

    .btn_scroll {
        display: none
    }

    .banner {
        width: 100%;
        max-width: 100%;
        height: 100%;
    }

    .header:before {
        display: none
    }

    .header:after {
        display: none
    }


}

@media (max-width: 767px) {
    .block-text-content {
        margin-top: 39px;
        text-align: center;
        padding: 0;
        text-align: center;
    }

    .block-text-content p {
        margin-bottom: 0
    }

    .flex-block-text .flex-block_text {
        margin: 0;
        padding: 0;
    }

    .flex-block-text h1 span {
        font-size: 25px;
    }

    .flex-block-text h1 span:nth-child(2) {
        font-size: 25px;
        margin-top: 2px;
    }

    .block-center-text {
        margin-bottom: 50px;
        margin-top: 0;
    }

    .link-rubrique {
        right: -59px;
        top: 47px;
    }

    .flex-block .col-12 {
        left: 0;
        top: 0;
        border: none;
        display: block;
    }

    .block-text-content p.back-text {
        padding: 84px 20px 72px;
        text-align: center;
        font-size: 19px;
        margin-bottom: 50px;
    }

    .footerlink {
        text-align: center;
    }

    .footerlink ul {
        display: flex;
        flex-direction: column;
    }

    .flex-block {
        margin: 0px auto;
        padding: 15px 0px 0;
        left: 0px !important;
    }

    .flex-block-5 {
        padding: 0px 20px;
    }

    .flex-block-5 p {
        padding: 0;
        text-align: center;
        margin-bottom: 50px;
    }


    .flex-block-5 h2 {
        margin-bottom: 20px
    }

    .flex-block-3 {
        padding: 100px 10px;
        margin-bottom: 20px;
    }

    .flex-block-contact {
        border-radius: 0;
        padding: 40px 26px;
        margin-bottom: 50px;
        margin-top: 40px;
    }

    .flex-block-4 p {
        text-align: center
    }

    .flex-block-3 h2 span {
        font-size: 34px;
    }

    .flex-img {
        flex-direction: column;
        max-width: 355px;
    }

    .flex-img>div:nth-child(3)>div {
        padding: 70px 0px;
    }

    .flex-img>div {
        width: 100%;
        flex: 100%;
        max-width: 100%;
    }

    .link-devis span {
        font-size: 22px;
    }

    .link-devis b {
        font-size: 25px;
    }

    .flex-block-2 {
        padding: 0;
        background-size: contain;
        max-width: 100%;
        margin-top: 15px;
        overflow: hidden;
        padding-bottom: 40px;
        padding-top: 0;
    }

    .flex-bottom-footer .right-top {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
    }

    .flex-bottom-footer .right-top a {
        display: block;
        margin: 0 auto 5px;
        border: none;
    }

    .flex-block-2>div {
        padding: 0;
        text-align: center;
    }

    .flex-block-2 h2 {
        display: table;
        padding-right: 0;
        position: relative;
        margin-bottom: 30px;
        width: 100%;
        max-width: 100%;
        font-size: 22px;
    }

    .menubox:after {
        display: none;
    }

    .logo img {
        margin: 0 auto;
        display: block;
        max-width: 100%;
    }

    .block-banner:after {
        background-size: 69% 100%;
    }


    .block-banner {
        width: 100%;
        margin: 0;
        border: none;
    }

    .logo a {
        margin: 0px;
    }

    .header .d-flex a {
        text-align: center;
        padding: 0px 31px;
    }


    .header .d-flex {
        display: block !important;
        padding: 0;
    }

    .boxfooter img {
        margin: 0 auto 15px;
        display: block;
        max-width: 120px;
    }
}

#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 .cropped-edge {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 33% 100%, 0 66%);
}



#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);
}

/* !!!! 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;
}