/*                                              FONTS                                                     */


@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900");







/*                                              STYLE COMMUN                                                     */





*,
*::after,
*::before {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}

body {
    background-color: #fff;
    font-family: "Poppins", sans-serif;
    line-height: 24px;
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    visibility: visible;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #222;
    font-weight: 400;
    margin-top: 0;
}

h1 {
    font-size: 66px;
    line-height: 1;
    min-height: 100px;
}

@media only screen and (max-width: 767px) {
    h1 {
        font-size: 56px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    h1 {
        padding-top: 100px;
        padding-bottom: 50px;
        font-size: 56px;
    }
}

h2 {
    font-size: 36px;
    line-height: 1;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 16px;
}

h5 {
    font-size: 14px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    h2 {
        font-size: 34px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h2 {
        font-size: 28px;
    }
}

@media only screen and (max-width: 767px) {
    h2 {
        font-size: 26px;
    }
}

p {
    font-family: "Poppins", sans-serif;
    margin-bottom: 10px;
    font-size: 15px;
}

p:last-child {
    margin-bottom: 0;
}

a,
button {
    color: inherit;
    display: inline-block;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
}

a {
    cursor: pointer;
}

a.anchor {
    display: block;
    position: relative;
    top: -50px;
    visibility: hidden;
}

a.anchor2 {
    display: block;
    position: relative;
    top: -150px;
    visibility: hidden;
}


a,
button,
img,
input,
span {
    transition: all 0.3s ease 0s;
}

*:focus {
    outline: none !important;
}

a:focus {
    color: inherit;
    outline: none;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: red;
}

button,
input[type="submit"] {
    cursor: pointer;
}

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

ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

span {
    color: red;
}


/*                                              CONTAINER RESPONSIVE                                                     */


@media only screen and (max-width: 767px) {
    .container {
        width: 450px;
    }
}

@media only screen and (max-width: 479px) {
    .container {
        width: 320px;
    }
}


/*                                              COULEURS DE FOND                                                     */


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

.bg-light-grey {
    background-color: #f9f9f9;
}

.bg-dark {
    background-color: #333;
}

.bg-grey {
    background-color: #f8f8f8;
}

.grey-light {
    background: #fafafa;
}


/*                                              SCROLL UP                                                     */


#scrollUp {
    width: 40px;
    height: 40px;
    background-color: #d44432;
    color: #ffffff;
    right: 20px;
    bottom: 60px;
    line-height: 40px;
    text-align: center;
    overflow: hidden;
}

#scrollUp i {
    display: block;
    line-height: 40px;
    font-size: 16px;
}

#scrollUp:hover i {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

.bg-image {
    background-image: url(../images/header/background-image.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}


/*                                              MAIN WRAPPER                                                     */


.main-wrapper.header-transparent {
    padding: 0 !important;
    margin: 0 !important;
}


/*                                              SECTIONS PADDING                                                     */


.section-ptb {
    padding: 120px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .section-ptb {
        padding: 100px 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-ptb {
        padding: 80px 0;
    }
}

@media only screen and (max-width: 767px) {
    .section-ptb {
        padding: 70px 0;
    }
}

@media only screen and (max-width: 479px) {
    .section-ptb {
        padding: 60px 0;
    }
}

.section-pt {
    padding-top: 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .section-pt {
        padding-top: 100px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-pt {
        padding-top: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .section-pt {
        padding-top: 70px;
    }
}

@media only screen and (max-width: 479px) {
    .section-pt {
        padding-top: 60px;
    }
}

.section-pt-90 {
    padding-top: 90px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .section-pt-90 {
        padding-top: 60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-pt-90 {
        padding-top: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .section-pt-90 {
        padding-top: 40px;
    }
}

@media only screen and (max-width: 479px) {
    .section-pt-90 {
        padding-top: 30px;
    }
}

.section-pb-100 {
    padding-bottom: 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .section-pb-100 {
        padding-bottom: 70px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-pb-100 {
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .section-pb-100 {
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 479px) {
    .section-pb-100 {
        padding-bottom: 60px;
    }
}

.section-pt-60 {
    padding-top: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .section-pt-60 {
        padding-top: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-pt-60 {
        padding-top: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .section-pt-60 {
        padding-top: 10px;
    }
}

@media only screen and (max-width: 479px) {
    .section-pt-60 {
        padding-top: 0px;
    }
}

.section-pb-70 {
    padding-bottom: 90px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .section-pb-70 {
        padding-bottom: 60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-pb-70 {
        padding-bottom: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .section-pb-70 {
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 479px) {
    .section-pb-70 {
        padding-bottom: 30px;
    }
}

.section-pb {
    padding-bottom: 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .section-pb {
        padding-bottom: 100px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-pb {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 767px) {
    .section-pb {
        padding-bottom: 70px;
    }
}

@media only screen and (max-width: 479px) {
    .section-pb {
        padding-bottom: 60px;
    }
}

.section-ptb-140 {
    padding: 140px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .section-ptb-140 {
        padding: 90px 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-ptb-140 {
        padding: 80px 0;
    }
}

@media only screen and (max-width: 767px) {
    .section-ptb-140 {
        padding: 70px 0;
    }
}

@media only screen and (max-width: 479px) {
    .section-ptb-140 {
        padding: 60px 0;
    }
}

.section-ptb-160 {
    padding: 160px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .section-ptb-160 {
        padding: 110px 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section-ptb-160 {
        padding: 80px 0;
    }
}

@media only screen and (max-width: 767px) {
    .section-ptb-160 {
        padding: 70px 0;
    }
}

@media only screen and (max-width: 479px) {
    .section-ptb-160 {
        padding: 60px 0;
    }
}


/*                                              MARGIN TOP                                                     */


.mt--5 {
    margin-top: 5px;
}

.mt--10 {
    margin-top: 10px;
}

.mt--15 {
    margin-top: 15px;
}

.mt--20 {
    margin-top: 20px;
}

.mt--25 {
    margin-top: 25px;
}

.mt--30 {
    margin-top: 30px;
}

.mt--35 {
    margin-top: 35px;
}

.mt--40 {
    margin-top: 40px;
}

.mt--45 {
    margin-top: 45px;
}

.mt--50 {
    margin-top: 50px;
}

.mt--55 {
    margin-top: 55px;
}

.mt--60 {
    margin-top: 60px;
}

.mt--65 {
    margin-top: 65px;
}

.mt--70 {
    margin-top: 70px;
}

.mt--75 {
    margin-top: 75px;
}

.mt--80 {
    margin-top: 80px;
}

.mt--85 {
    margin-top: 85px;
}

.mt--90 {
    margin-top: 90px;
}

.mt--95 {
    margin-top: 95px;
}

.mt--100 {
    margin-top: 100px;
}

.mt--105 {
    margin-top: 105px;
}

.mt--110 {
    margin-top: 110px;
}

.mt--115 {
    margin-top: 115px;
}

.mt--120 {
    margin-top: 120px;
}

.mt--125 {
    margin-top: 125px;
}


/*                                              MARGIN BOTTOM                                                    */


.mb--5 {
    margin-bottom: 5px;
}

.mb--10 {
    margin-bottom: 10px;
}

.mb--15 {
    margin-bottom: 15px;
}

.mb--20 {
    margin-bottom: 20px;
}

.mb--25 {
    margin-bottom: 25px;
}

.mb--30 {
    margin-bottom: 30px;
}

.mb--35 {
    margin-bottom: 35px;
}

.mb--40 {
    margin-bottom: 40px;
}

.mb--45 {
    margin-bottom: 45px;
}

.mb--50 {
    margin-bottom: 50px;
}

.mb--55 {
    margin-bottom: 55px;
}

.mb--60 {
    margin-bottom: 60px;
}

.mb--65 {
    margin-bottom: 65px;
}

.mb--70 {
    margin-bottom: 70px;
}

.mb--75 {
    margin-bottom: 75px;
}

.mb--80 {
    margin-bottom: 80px;
}

.mb--85 {
    margin-bottom: 85px;
}

.mb--90 {
    margin-bottom: 90px;
}

.mb--95 {
    margin-bottom: 95px;
}

.mb--100 {
    margin-bottom: 100px;
}

.mb--105 {
    margin-bottom: 105px;
}

.mb--110 {
    margin-bottom: 110px;
}

.mb--115 {
    margin-bottom: 115px;
}

.mb--120 {
    margin-bottom: 120px;
}

.mb--125 {
    margin-bottom: 125px;
}


/*                                              PADDING TOP                                                     */


.pt--5 {
    padding-top: 5px;
}

.pt--10 {
    padding-top: 10px;
}

.pt--15 {
    padding-top: 15px;
}

.pt--20 {
    padding-top: 20px;
}

.pt--25 {
    padding-top: 25px;
}

.pt--30 {
    padding-top: 30px;
}

.pt--35 {
    padding-top: 35px;
}

.pt--40 {
    padding-top: 40px;
}

.pt--45 {
    padding-top: 45px;
}

.pt--50 {
    padding-top: 50px;
}

.pt--55 {
    padding-top: 55px;
}

.pt--60 {
    padding-top: 60px;
}

.pt--65 {
    padding-top: 65px;
}

.pt--70 {
    padding-top: 70px;
}

.pt--75 {
    padding-top: 75px;
}

.pt--80 {
    padding-top: 80px;
}

.pt--85 {
    padding-top: 85px;
}

.pt--90 {
    padding-top: 90px;
}

.pt--95 {
    padding-top: 95px;
}

.pt--100 {
    padding-top: 100px;
}

.pt--105 {
    padding-top: 105px;
}

.pt--110 {
    padding-top: 110px;
}

.pt--115 {
    padding-top: 115px;
}

.pt--120 {
    padding-top: 120px;
}

.pt--125 {
    padding-top: 125px;
}


/*                                              PADDING BOTTOM                                                     */


.pb--5 {
    padding-bottom: 5px;
}

.pb--10 {
    padding-bottom: 10px;
}

.pb--15 {
    padding-bottom: 15px;
}

.pb--20 {
    padding-bottom: 20px;
}

.pb--25 {
    padding-bottom: 25px;
}

.pb--30 {
    padding-bottom: 30px;
}

.pb--35 {
    padding-bottom: 35px;
}

.pb--40 {
    padding-bottom: 40px;
}

.pb--45 {
    padding-bottom: 45px;
}

.pb--50 {
    padding-bottom: 50px;
}

.pb--55 {
    padding-bottom: 55px;
}

.pb--60 {
    padding-bottom: 60px;
}

.pb--65 {
    padding-bottom: 65px;
}

.pb--70 {
    padding-bottom: 70px;
}

.pb--75 {
    padding-bottom: 75px;
}

.pb--80 {
    padding-bottom: 80px;
}

.pb--85 {
    padding-bottom: 85px;
}

.pb--90 {
    padding-bottom: 90px;
}

.pb--95 {
    padding-bottom: 95px;
}

.pb--100 {
    padding-bottom: 100px;
}

.pb--105 {
    padding-bottom: 105px;
}

.pb--110 {
    padding-bottom: 110px;
}

.pb--115 {
    padding-bottom: 115px;
}

.pb--120 {
    padding-bottom: 120px;
}

.pb--125 {
    padding-bottom: 125px;
}


/*                                              BOUTONS                                                     */


.btn-contact {
    border: 2px solid #ffffff;
    padding: 13px 40px;
    color: #ffffff;
    display: inline-block;
    border-radius: 6px;
    background: transparent;
    font-size: 14px;
}

.btn-contact:hover {
    background: red;
    color: #ffffff;
    border: 2px solid red;

}

@media only screen and (max-width: 767px) {
    .btn-contact {
        padding: 10px 23px;
        margin-top: 20px;
    }
}

.default-btn {
    margin-top: 40px;
    letter-spacing: 1px;
    padding: 13px 40px;
    background: red;
    display: inline-block;
    border-radius: 5px;
    color: #ffffff;
    display: inline-block;
    border: 1px solid red;
    color: #ffffff;
}

.default-btn:hover {
    background: #ffffff;
    color: red;
    border: 1px solid #ffffff;
}

@media only screen and (max-width: 767px) {
    .default-btn {
        padding: 10px 23px;
        margin-top: 20px;
    }
}

/*                                              SECTIONS TITRES                                                     */


.equipe-titre,
.section-titre-2 {
    text-align: center;
    position: relative;
    margin-bottom: 20px;
}

.equipe-titre::after,
.section-titre-2::after {
    position: absolute;
    left: 50%;
    content: "";
    height: 185px;
    width: 165px;
    top: 38%;
    background: url(../images/icones/up.png) no-repeat;
    transform: translateY(-50%) translateX(-50%);
}

.equipe-titre h4,
.section-titre-2 h4 {
    color: red;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    margin-top: -5px;
}

@media only screen and (max-width: 767px) {

    .equipe-titre h4,
    .section-titre-2 h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    .equipe-titre h4,
    .section-titre-2 h4 {
        margin-bottom: 15px;
    }
}

.equipe-titre h2,
.section-titre-2 h2 {
    font-weight: 700;
    color: #333;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-top: -7px;
    margin-bottom: 15px;
}

.equipe-titre h2 span,
.section-titre-2 h2 span {
    color: red;
}

.equipe-titre p,
.section-titre-2 p {
    font-size: 16px;
    margin-top: 5px;
    padding: 0 15px;
}

@media only screen and (max-width: 767px) {

    .equipe-titre p,
    .section-titre-2 p {
        padding: 0 0;
    }
}

.section-titre-2::after {
    display: none;
}


/*                                              MENU MOBILE                                                     */



.mobile-menu {
    float: left;
    width: 100% !important;
    position: relative !important;
}

.mobile-menu .meanmenu-reveal {
    position: absolute;
    top: -47px;
    color: #000;
    left: 0;
}

.mobile-menu .meanmenu-reveal span {
    position: relative;
}

.mobile-menu .mean-bar .meanmenu-reveal span.menu-bar {
    height: 2px;
    width: 26px;
    background-color: red;
    display: block;
    margin: 8px 0;
}

.mobile-menu .mean-bar .meanmenu-reveal span.menu-bar::before,
.mobile-menu .mean-bar .meanmenu-reveal span.menu-bar::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: red;
}

.mobile-menu .mean-bar .meanmenu-reveal span.menu-bar::before {
    top: -8px;
}

.mobile-menu .mean-bar .meanmenu-reveal span.menu-bar::after {
    bottom: -8px;
}

.mobile-menu .mean-bar .meanmenu-reveal span.menu-close {
    height: 2px;
    width: 26px;
    background-color: transparent;
    display: block;
    margin: 8px 0;
}

.mobile-menu .mean-bar .meanmenu-reveal span.menu-close::before,
.mobile-menu .mean-bar .meanmenu-reveal span.menu-close::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: red;
}

.mobile-menu .mean-bar .meanmenu-reveal span.menu-close::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu .mean-bar .meanmenu-reveal span.menu-close::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.mobile-menu .mean-bar .mean-nav {
    background-color: #333;
}

.mobile-menu .mean-bar .mean-nav > ul {
    margin-bottom: 30px;
    border: 1px solid #eeeeee;
    border-top: 0px solid transparent;
    overflow-x: hidden;
}

@media only screen and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .mobile-menu .mean-bar .mean-nav > ul {
        max-height: 280px;
        overflow-y: auto;
    }
}

@media only screen and (max-width: 479px) {
    .mobile-menu .mean-bar .mean-nav > ul {
        max-height: 220px;
        overflow-y: auto;
    }
}

.mobile-menu .mean-bar .mean-nav > ul li {
    position: relative;
    display: block;
    float: left;
    width: 100%;

}

.mobile-menu .mean-bar .mean-nav > ul li a {
    font-size: 13px;
    display: block;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 44px;
    position: relative;
    border-top: 1px solid #eeeeee;
    padding: 0 40px 0 20px;
}

.mobile-menu .mean-bar .mean-nav > ul li a i {
    display: none;
}

.mobile-menu .mean-bar .mean-nav > ul li a:hover {
    color: #ccc;
    padding-left: 25px;
}

.mobile-menu .mean-bar .mean-nav > ul li a.mean-expand {
    border: 1px solid #eeeeee;
    position: absolute;
    right: -1px;
    top: 0;
    font-size: 30px !important;
    color: #fff;
    line-height: 44px;
    height: 46px;
    width: 40px;
    text-align: center;
    padding: 0;
}

.mobile-menu .mean-bar .mean-nav > ul li a.mean-expand.mean-clicked {
    line-height: 40px;
}


/*                                              HEADER                                                     */


.header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 99;
}

@media only screen and (max-width: 767px) {
    .header {
        position: inherit;
    }
}

.zone-header-top {
    padding: 18px 0 20px;
}

@media only screen and (max-width: 767px) {
    .contact-info-top {
        text-align: center;
    }

    .contact-info-top a {
        color: #000000;
    }

    .contact-info-top a:hover {
        color: red;
    }
}

.contact-info-top ul li {
    /*     ---------------------------------------        */
    display: inline-block;
    margin-right: 30px;
    color: #ffffff;
}

.contact-info-top ul li:last-child {
    margin-right: 0;
}

.contact-info-top ul li a {
    display: block;
    font-size: 14px;
}

.contact-info-top ul li a i {
    color: red;
    margin-right: 12px;
}

@media only screen and (max-width: 479px) {
    .contact-info-top ul li {
        margin-right: 0px;
    }

    .contact-info-top ul li:last-child {
        margin-top: 5px;
    }
}

.header-sticky.is-sticky {
    -webkit-animation: 600ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 600ms ease-in-out 0s normal none 1 running fadeInDown;
    background: rgba(250, 250, 250, 0.9) none repeat scroll 0 0;
    -webkit-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.4);
    left: 0;
    margin: auto;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

.header-sticky.is-sticky .header-bottom-wrap {
    background: transparent;
    padding: 0px 0px;
}

@media only screen and (max-width: 767px) {
    .header-sticky.is-sticky {
        padding: 10px 0 0 0;
        margin-bottom: 10px;
    }
}

.header-sticky.is-sticky .header-bottom-wrap ul li a {
    color: black;
}

.header-sticky.is-sticky .header-bottom-wrap ul li a:hover {
    color: red;
}

.header-bottom-wrap {
    background: transparent;
    /*     ---------------------------------------        */
    border-radius: 4px;
    padding: 0 40px;
}

@media only screen and (max-width: 767px) {
    .header-bottom-wrap {
        padding: 0 15px;
    }
}

.logo-area {
    margin: 18px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .logo-area {
        margin: 10px 0;
    }
}

@media only screen and (max-width: 767px) {
    .logo-area {
        margin: 0 0 15px 0;
    }
}

.menu {
    justify-content: flex-end;
    display: flex;
}

.menu ul > li {
    display: inline-block;
    margin-left: 50px;
    position: relative;
}

.menu ul > li > a {
    /*     ---------------------------------------        */
    display: block;
    color: white;
    padding: 35px 0 20px 0px;
    font-weight: 500;
}

.menu ul > li > a:hover {
    color: red;
}

.menu ul > li:hover {
    color: red;
}


/*                                              ACCUEIL                                                     */


.accueil {
    height: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
}

.titre {
    margin-top: 70px;
}

@media only screen and (max-width: 767px) {
    .titre {
        margin-top: 0px;
    }
}

.titre h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 72px;
    margin-bottom: 20px;
    color: #ffffff;
}

.titre h1 span {
    color: red;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .titre h1 {
        font-size: 50px;
        line-height: 1.2em;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .titre h1 {
        font-size: 50px;
        line-height: 1.2em;
    }
}

@media only screen and (max-width: 767px) {
    .titre h1 {
        font-size: 36px;
        line-height: 1.2em;
    }

    .titre h1 br {
        display: none;
    }
}

.titre p {
    color: #ffffff;
    width: 85%;
    font-size: 16px;
    padding-top: ;
}

@media only screen and (max-width: 767px) {
    .titre p {
        width: 100%;
    }
}

.titre-bouton > a {
    margin-top: 100px;
    margin-right: 10px;
    width: 200px;
    border-radius: 50px;
}


/*                                            LOCALISATION                                                   */

.business-horaires {
    padding: 50px 14px 40px;
    margin-top: -30px;
    position: relative;
}

.business-horaires .horaires {
    font-size: 22px;
    color: #333;
    text-transform: uppercase;
    padding-left: 5px;
    border-left: 4px solid red;
}

.business-horaires li {
    color: #333;
    line-height: 30px;
    border-bottom: 1px solid #333;
}

.business-horaires li:last-child {
    border-bottom: none;
}

.business-horaires .horaires-ouverture li.today {
    color: red;
}

/*                                             EQUIPE                                                    */


.equipe-content a {
    margin-top: 15px;
    font-weight: 500;
    font-size: 16px;
    color: red;
    text-transform: uppercase;
}

.equipe-content a:hover {
    color: #333;
}

@media only screen and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .equipe-image {
        margin-top: 30px;
        text-align: center;
    }
}


/*                                            SERVICES                                                  */


.services-menu li {
    margin-bottom: 10px;
}

.services-menu li a {
    background: #f6f6f6;
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding: 20px;
    text-align: center;
}

.services-menu li a.active {
    background: red;
    color: #ffffff;
}

.services-menu li:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .services-contenu {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .services-contenu {
        margin-top: 30px;
    }
}

.service-titre {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-left: 8px;
    border-left: 4px solid red;
}

.warning p {
    padding: 45px 0 0 15px;
    align-content: center;
}

.services-contenu-inner .services-liste {
    margin-top: 30px;
}

.services-contenu-inner .services-liste li {
    margin-bottom: 10px;
    padding-left: 40px;
    position: relative;
}

.services-contenu-inner .services-liste li::before {
    left: 0;
    top: 50%;
    position: absolute;
    content: "";
    background: red;
    height: 1px;
    width: 30px;
}

.services-contenu-inner .services-liste li:last-child {
    margin: 0;
}

.services-contenu-inner .services-liste li i {
    color: red;
    margin-right: 10px;
}


/*                                              CONTACT                                                     */


.box-contact {
    background: #fff;
    max-width: 1410px;
    width: 100%;
    z-index: 9;
    margin: auto;
}

@media only screen and (max-width: 479px) {
    .box-contact {
        border: none;
    }
}

.zone-contact {
    padding: 110px 0;
    background: #fff;
    margin: auto;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .zone-contact {
        padding: 80px 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .zone-contact {
        padding: 80px 0;
        border: none;
    }
}

@media only screen and (max-width: 767px) {
    .zone-contact {
        padding: 70px 0;
        border: none;
    }
}

@media only screen and (max-width: 479px) {
    .zone-contact {
        padding: 60px 0;
        border: none;
    }
}

.contact-form h3 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 55px;
}

@media only screen and (max-width: 767px) {
    .contact-form h3 {
        font-size: 28px;
        margin-bottom: 25px;
    }
}

.contact-form-wrap .input-box {
    margin-bottom: 30px;
}

.contact-form-wrap .input-box input,
.contact-form-wrap .input-box textarea {
    width: 100%;
    padding: 15px;
    color: #555;
    border: 1px solid #ddd;
}

.contact-form-wrap .input-box textarea {
    height: 120px;
}

.contact-envoyer-btn .envoyer-btn {
    border-radius: 0;
    margin-top: 10px;
}

.contact-envoyer-btn .envoyer-btn:hover {
    background: #333;
    border: 1px solid #333;
    color: #ffffff;
}

.contact-info-wrap .contact-info {
    margin-bottom: 55px;
}

.contact-info-wrap .contact-info:last-child {
    margin-bottom: 0;
}

.contact-info-wrap .contact-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
    .contact-info-wrap .contact-info h3 {
        margin-bottom: 10px;
    }
}

.contact-info-wrap .contact-info p {
    margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .contact-info-wrap .contact-info {
        margin-bottom: 35px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-info-wrap {
        margin-top: 60px;
    }

    .contact-info-wrap .contact-info {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .contact-info-wrap {
        margin-top: 60px;
    }

    .contact-info-wrap .contact-info {
        margin-bottom: 25px;
    }
}

@media only screen and (max-width: 479px) {
    .contact-info-wrap {
        margin-top: 55px;
    }
}

.form-message.error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    font-style: italic;
}

.form-message.success {
    color: green;
    font-size: 14px;
    margin-top: 5px;
    font-style: italic;
}


/*                                              FOOTER                                                     */


h3 a:hover {
    color: red;
}

.footer-top {
    border-top: 1px solid #ddd;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .footer-top.pb--120 {
        padding-bottom: 100px;
    }

    .footer-top.pt--80 {
        padding-top: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .footer-top.pb--120 {
        padding-bottom: 80px;
    }

    .footer-top.pt--80 {
        padding-top: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-top.pb--120 {
        padding-bottom: 65px;
    }

    .footer-top.pt--80 {
        padding-top: 20px;
    }
}

@media only screen and (max-width: 479px) {
    .footer-top.pb--120 {
        padding-bottom: 55px;
    }

    .footer-top.pt--80 {
        padding-top: 20px;
    }
}

.footer-info .subscribe-wrap .input-box input {
    width: 100%;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #aaaaaa;
    background: transparent;
    color: #333;
    font-size: 14px;
    padding: 5px 0;
}

.footer-info .subscribe-wrap .input-box .subscribe-btn {
    margin-top: 20px;
    background: #e26d2f;
    font-size: 14px;
    border: none;
    padding: 8px 20px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.footer-info .subscribe-wrap .input-box .subscribe-btn:hover {
    background: #333;
}

.footer-info .social {
    margin-top: 20px;
}

.footer-info .social li {
    display: inline-block;
    margin-right: 5px;
}

.footer-info .social li a {
    font-size: 28px;
}

.footer-info .social li a:hover {
    color: red;
}

.footer-info .footer-titre {
    margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
    .footer-info .footer-titre {
        margin-bottom: 20px;
    }
}

.footer-info .footer-titre h3 {
    font-size: 18px;
    color: #333;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: -5px;
}

@media only screen and (max-width: 767px) {
    .footer-info .footer-titre h3 {
        margin-top: -15px;
    }
}

.footer-info p {
    font-size: 15px;
    margin-top: 25px;
}

.footer-info .footer-liste li {
    margin-bottom: 10px;
    font-size: 15px;
}

@media only screen and (max-width: 479px) {
    .footer-info .footer-liste li {
        margin-bottom: 8px;
    }
}

.footer-info .footer-liste li:last-child {
    margin-bottom: 0;
}

.footer-info .footer-liste li a:hover {
    color: red;
}

.footer-bottom .footer-bottom-inner {
    padding: 30px 0;
    border-top: 1px solid #ddd;
}

.footer-bottom .footer-bottom-inner p {
    color: #333;
    font-size: 14px;
}
