/*------ RESET & NORMALISE CSS ------*/

html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal
}

ul {
    list-style: none
}

button,
input,
select {
    margin: 0
}

html {
    box-sizing: border-box
}

*,
*::before,
*::after {
    box-sizing: inherit
}

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

iframe {
    border: 0
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td,
th {
    padding: 0
}


/*--------------GENERAL--------------*/

* {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: antialiased;
}

body,
html {
    overflow-x: hidden;
    position: relative;
}

.wrapper {
    max-width: 1250px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

.text-inline{
    display: block;
}

a.btn-cta{
    font-size: 17px;
    font-weight: bold;
    background-color: #4ba5d0;
    color:#fff;
    padding: 10px 16px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s all;
}

a.btn-cta span{
    font-size: 15px;
    color: #fff;
    margin-left: 15px;
    background-color: #403335;
    display: inline-block;
    text-align: center;    
}

a.btn-cta span::before{
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    color: #fff;
    width: 45px;
    height: 45px;
    line-height: 45px;
    transform: rotate(-35deg);
    display: inline-block;
}

a.btn-cta:hover{
    background-color: #fff;
    color: #4ba5d0 ;
}

/* RESPONSIVE */

@media only screen and (max-width: 767px) {
    .text-inline{
        display: inline-block;
    }

    a.btn-cta {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px){
    a.btn-cta {
        font-size: 15px;
    }
}


/*------------ MENU ------------*/

/* TOP MENU */

.top-menu-info .wrapper{
    background-color: #3878ba;
    padding-left: 30px;
    padding-right: 30px;
    align-items: center;
}

.top-menu-info {
    transition: 0.3s all ;
    background-color: #3878ba;
}

.top-menu-info ul li{
    display: inline-block;
}

.top-menu-info li{
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.top-menu-info li i{
    color: #fff;
    padding-right: 7px;
}

.top-menu-info .wrapper{
    display: flex;
}
.top-menu-info .left,
.top-menu-info .right{
    flex: 0 0 50%;
    max-width: 50%;
}

.top-menu-info .left{
    padding-top: 14px;
    padding-bottom: 13px;
}

.top-menu-info .right{
    text-align: right;
}

.top-menu-info .right a {
    color: #fff;
}

.top-menu-info .right a:nth-child(1),
.top-menu-info .right a:nth-child(2){
    margin-right: 15px;
}

.top-menu-info li:nth-child(1){
    margin-right: 25px;
}

.top-menu-info .btn-contact i {
    margin-left: 10px;
}

.menu-sticky {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9999999999;
}

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


/* MAIN MENU */

.main-menu-area{
    position: relative;
    background-color: #fff;
}

.main-menu-desktop {
    display: flex;
    align-items: center;
    flex-direction: row;
    background-color: #fff;

    border-bottom: 1px solid #fafafa38;
}

.main-nav {
    flex: 0 0 80%;
    max-width: 80%;
    text-align: right;
}

.logo-nav {
    flex: 0 0 20%;
    max-width: 20%;
    text-align: left;
}

.logo-nav img{
    width: 220px;
    transition: 0.3s all ;
}

.logo-nav a {
    display: inline-block;
    top: -65px;
}

.main-nav li {
    display: inline-block;
    position: relative;
}

.main-nav>ul li a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: #232323 ;
    margin-right: 20px;
    padding-top: 25px;
    padding-bottom: 25px;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: antialiased;
    transition: all 0.3s;
}

.main-nav ul li a:hover {
    color: #d3873d;
}

.main-nav ul li a.active {
    color: #d3873d;
}

.main-menu-mobile {
    display: none;
}

/* RESPONSIVE */

@media only screen and (max-width: 1200px) {
    .logo-nav img {
        width: 190px;
    }
}

@media only screen and (max-width: 991px) {
    .top-menu-area,
    .top-menu-info,
    .main-menu-desktop {
        display: none !important;
    }
    /* MOBILE MENU */
    .main-menu-mobile {
        display: block;
        background-color: #fff;
    }
    .menu-mobile-header {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding-top: 25px;
        padding-bottom: 25px;
        padding-right: 30px;
        padding-left: 30px;
    }

    .menu-mobile-body {
        height: 100vh;
    }
    .logo-nav-mobile {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .mobile-hamburger-wrapper {
        flex: 0 0 25%;
        max-width: 25%;
        text-align: right;
        margin-top: 5px;
    }
    .mobile-hamburger-icon {
        display: inline-block;
    }
    .mobile-hamburger-icon span {
        display: block;
        width: 25px;
        height: 2px;
        margin-bottom: 6px;
        background-color: #d3873d;
    }

    .menu-mobile-body a {
        display: block;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 600;
        color: #333;
        margin-right: 20px;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: antialiased;
        padding: 20px 0px 20px 0px;
        margin: 0px 30px 0px 30px;
        border-bottom: 1px solid #e0dddd;
        transition: all 0.3s;
    }

    .menu-mobile-body a:hover {
        color: #d3873d;
    }

}


/*------------ HEADER  ------------*/

.hero-section-content{
    background: url(../images/slide01.jpg) no-repeat center top;
    background-size: cover;
    height: 90vh;
    margin-top: 110px;
    display: flex;
    align-items: center;
}

.hero-section-content .intro-text h1{
    font-size: 54px;
    font-weight: bold;
    text-align: left;
    color: #fff;
    margin-bottom: 30px;
}

.hero-section-content .intro-text p{
    font-size: 15px;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 30px;
    max-width: 60%;
}


/* RESPONSIVE */

@media only screen and (max-width: 1200px) {
    .main-nav {
        flex: 0 0 80%;
        max-width: 80%;
    }

    .hero-section-content .intro-text h1 {
        font-size: 47px;
    }

    .hero-section-content .intro-text p {
        max-width: 90%;
    }
}

@media only screen and (max-width: 700px) {
    .hero-section-content .intro-text h1 {
        font-size: 44px;
    }
}

@media only screen and (max-width: 640px) {
    .text-inline{
        display: inline-block !important;
    }

    .logo-nav-mobile a img {
        max-width: 120px;
    }

    .hero-section-content .intro-text h1 {
        font-size: 38px;
    }

    .hero-section-content .intro-text p {
        max-width: 100%;
        font-size: 14px;
    }

}

@media only screen and (max-width: 500px) {
    .hero-section-content .intro-text h1 {
        font-size: 40px;
    }
}

@media only screen and (max-width: 320px) {
    
    .hero-section-content .intro-text h1 {
        font-size: 30px;
    }
}


/*------------ ABOUT AREA ------------*/

.about-area{
    padding-top: 100px;
    padding-bottom: 100px;
}

.about-container{
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-container .left{
    flex: 0 0 40%;
    max-width: 40%;
}

.about-container .right{
    flex: 0 0 55%;
    max-width: 55%;
}

.content-bloc h3{
    font-size: 14px;
    letter-spacing: 1px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.content-bloc h3::before{
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background-color: #d3873d;
    margin-right: 10px;
}

.content-bloc h2{
    font-size: 47px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 2.8px;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.content-bloc p{
    font-size: 16px;
    line-height: 1.4;
    color: #666;
    margin-bottom: 30px;
}

.content-bloc ul{
    margin-bottom: 30px;
}

.content-bloc li{
    font-size: 16px;
    line-height: 1.4;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.content-bloc li i{
    color: #d3873d;
    margin-right: 10px;
    font-size: 18px;
    position: relative;
    top: 3px;
}

.content-bloc a{
    background-color: #d3873d;
}

.content-bloc a.btn-cta:hover{
    background-color: #4ba5d0;
    color: #fff ;
}

.img-bloc{
    position: relative;
}

.img-bloc .img-exp{
    background-color: #d3873d;
    padding: 36px 23px;

    position: absolute;
    top: 55px;
    left: -40px;
}

.img-bloc .img-exp span{
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    display: block;
}

.img-bloc .img-exp .number{
    font-size: 90px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.img-bloc .img-exp .number::before{
    content: "";
    height: 1px;
    width: 100px;
    display: block;
    margin: 0 auto;
    background-color: rgb(255 255 255 / 46%);
}

.img-bloc .img-exp .number::after{
    content: "";
    height: 1px;
    width: 100px;
    display: block;
    margin: 0 auto;
    background-color: rgb(255 255 255 / 46%);
}

.img-bloc .img-exp .text:nth-child(1){
    margin-bottom: 15px;
}


/* RESPONSIVE */

@media only screen and (max-width: 1200px) {
    .about-area{
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .content-bloc h2 {
        font-size: 35px;
    }

    .content-bloc h3 {
        font-size: 12px;
    }

    .content-bloc p {
        font-size: 14px;
    }

    .content-bloc li {
        font-size: 15px;
    }

    .img-exp{
        display: none;
    }

}


@media only screen and (max-width: 991px) {
    .about-container .right,
    .about-container .left{
        flex: 0 0 100%;
        max-width: 100%;
    }

    .about-container {
        flex-wrap: wrap;
    }

    .about-container .left{
        order: 1;
        text-align: center;
    }

}

@media only screen and (max-width: 600px) {
    .content-bloc h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .content-bloc li i {
        margin-right: 5px;
    }
    
}


/*------------ SERVICES AREA ------------*/

.services-container{
    padding-top: 100px;
    padding-bottom: 100px;
    background: url(../images/services-bg.jpg) no-repeat center top;
    background-size: cover;
    padding-bottom: 200px;
}

.services-blocs{
    margin-top: -140px;
    padding-bottom: 120px;
}

.services-titles h2{
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-align: center;
    color: #4ba5d0;
    text-transform: uppercase;
}

.services-titles h2::before{
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background-color: #d3873d;
    margin-right: 15px;
}

.services-titles h2::after{
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background-color: #d3873d;
    margin-left: 10px;
}

.services-titles h3{
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    color: #333;
    text-transform: uppercase;
    max-width: 60%;
    margin: 0 auto;
    margin-bottom: 30px;
}

.services-titles p{
    font-size: 16px;
    line-height: 1.3;
    text-align: center;
    color: #999;
    max-width: 70%;
    margin: 0 auto;
}

.bloc-content h2{
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
    color: #333;
    text-transform: uppercase;
}

.bloc-content p{
    font-size: 14px;
    color: #999;
    text-align: left;
}

.services-blocs-container{
    display: flex;
    gap: 35px;
    justify-content: center;
}

.services-blocs-container .bloc{
    flex: 0 0 31%;
    max-width: 31%;
}

.bloc-content h2{
    font-size: 19px;
    line-height: 1;
    text-align: left;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: bold;
}

.bloc-image{
    position: relative;
    margin-bottom: 40px;
}

.bloc-image a{
    background-color: #d3873d;
    position: absolute;
    bottom: -20px;
    right: 20px;
    padding: 15px 20px;
    transition: 0.3s all;
}

.bloc-image a i {
    color: #fff;
    font-size: 20px;
}

.bloc-image a:hover{
    background-color: #3878ba;
}

/* RESPONSIVE */

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

    .services-container {
        padding-top: 80px;
    }

    .services-blocs {
        padding-bottom: 80px;
    }

    .services-titles h2 {
        font-size: 33px;
    }

    .services-titles h3 {
        font-size: 17px;
    }

    .services-titles p {
        font-size: 15px;
        max-width: 85%;
    }

    .bloc-content h2 {
        font-size: 17px;
        margin-bottom: 15px;
    }

    .bloc-content p {
        font-size: 13px;
    }
}

@media only screen and (max-width: 991px) {
    .bloc-image a {
        padding: 11px 15px;
    }

    .bloc-image a i {
        font-size: 17px;
    }

    .services-titles p {
        font-size: 15px;
    }

    .services-titles h3 {
        max-width: 90%;
    }
}

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

    .services-blocs-container .bloc {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .services-blocs-container {
        flex-wrap: wrap;
    }

    .services-titles h2 {
        font-size: 26px;
    }

}

/*------------ LOCALISATION AREA ------------*/

.localisation-content {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-right: 30px;
}

.localisation-container{
    display: flex;
}

.localisation-container .left,
.localisation-container .right{
    flex: 0 0 50%;
    max-width: 50%;
}

.localisation-area .left{
    background: url('../images/zone.jpg') no-repeat center top ;
    background-size: cover;
}

.localisation-area .right{
    background: url('../images/localisation-bg.jpg') no-repeat center top ;
    background-size: cover;

    display: flex;
    align-items: center;

    padding-right: calc(50% - 775px);

}

.localisation-container .left img{
    width: 100%;
    height: auto;
}

.localisation-content h3{
    font-size: 17px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.localisation-content h3:before{
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background-color: #d3873d;
    margin-right: 13px;
}

.localisation-content h2{
    font-size: 30px;
    font-weight: bold;
    text-align: left;
    color: #fff;
    margin-bottom: 30px;
}

.localisation-content p{
    font-size: 16px;
    line-height: 1.4;
    text-align: left;
    color: #fff;
    margin-bottom: 35px;
}

.localisation-content a{
    background-color: #d3873d;
}

.localisation-content a i{
    margin-left: 10px;
}


/* RESPONSIVE */

@media only screen and (max-width: 1300px) {
    .localisation-content h3 {
        font-size: 15px;
    }

    .localisation-content h2 {
        font-size: 23px;
    }

    .localisation-content p {
        font-size: 14px;
    }

}

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

    .localisation-content {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
}

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

    .localisation-container .left{
        height: 50vh;
    }

    .localisation-container .left, 
    .localisation-container .right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .localisation-area .left {
        background: url(../images/zone.jpg) no-repeat center ;
        background-position: center;
    }
}

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

    .localisation-content h3 {
        font-size: 13px;
    }
}

/*------------ CONTACT AREA ------------*/

.contact-area{
    padding-top: 120px;
    padding-bottom: 120px;
    background:url(../images/bg-contact.jpg) no-repeat center top;
    background-size: cover;
}

.contact-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-container .left,
.contact-container .right{
    flex: 0 0 48%;
    max-width: 48%;
}

.contact-area .content h3{
    font-size: 17px;
    line-height: 0.9;
    letter-spacing: 1px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-area .content h3::after {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background-color: #d3873d;
    margin-left: 10px;
}

.contact-area .content h2{
    font-size: 37px;
    font-weight: bold;
    letter-spacing: 1.8px;
    text-align: left;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.contact-area .content p{
    font-size: 16px;
    line-height: 1.4;
    color: #999;
    margin-bottom: 40px;
}

.contact-area .contact-list-info i{
    font-size: 16px;
    color: #3878ba;
    margin-right: 12px;
}

.contact-area .contact-list-info li{
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.contact-area .form-contact{
    background-color: #fff;
    padding: 35px 15px;
    position: relative;
}

.contact-area .form-contact::before{
    content: "";
    background-color: #3878ba;
    width: 100%;
    display: block;
    height: 13px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

}

.contact-area  .form-container{
    display: flex;
    margin-bottom: 20px;
}

.contact-area .col-6{
    flex: 0 0 50%;
    max-width: 50%;
}

.contact-area input[type="text"],
.contact-area textarea,
.contact-area input[type="email"]{
    width: 100%;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.4;
    color: #666;

    border: solid 1px #d7d7d7;
    padding: 10px 15px;
}

.contact-area input[type="textarea"]{
    width: 100%;
}

.contact-area .btn-cta span{
    background-color: #d3873d;
}

.contact-area .btn-cta{
    background-color: #3878ba;
}

.contact-area .btn-cta:hover{
    background-color: #333;
}

/* RESPONSIVE */

@media only screen and (max-width: 1200px) {
    .contact-area {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .contact-area .content h2 {
        font-size: 30px;
        letter-spacing: 1.5px;
    }

    .contact-area .content h3 {
        font-size: 14px;
        line-height: 0.5;
    }
}

@media only screen and (max-width: 991px) {
    .contact-container .left, .contact-container .right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .contact-container{
        flex-wrap: wrap;
    }

    .contact-container .left{
        margin-bottom: 60px;
    }
    
}

@media only screen and (max-width: 500px) {
    .contact-area .content h2 {
        font-size: 27px;
        letter-spacing: 1px;
    }
    
    .contact-area .content p {
        font-size: 15px;
    }

    .contact-area .contact-list-info li {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .contact-area .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .contact-area .form-container {
        flex-wrap: wrap;
    }

    .contact-area .form-container {
        flex-wrap: wrap;
        gap: 18px;
    }

}


/*------------ FOOTER AREA ------------*/

.footer-area{
    padding-top: 80px;
    padding-bottom: 80px;
}

.footer-bloc{
    display: flex;
    gap: 60px;
}

.footer-area .left,
.footer-area .middle,
.footer-area .right{
    flex: 0 0 30%;
    max-width: 30%;
}

.footer-area .middle{
    display: flex;
    justify-content: space-around;
}

.footer-area .logo{
    margin-bottom: 20px;
}

.footer-area p{
    font-size: 15px;
    color: #999;
    margin-bottom: 10px;
}

.footer-area .menu a{
    font-size: 17px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
}

.footer-area .menu a i{
    font-size: 18px;
    color: #d3873d;
    margin-right: 10px;
}

.footer-area .menu-social li {
    display: inline-block;
}

.footer-area .menu-social a{
    color: #d3873d;
    margin-right: 10px;
}

/* RESPONSIVE */

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

    .footer-area {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .footer-bloc {
        display: flex;
        gap: 30px;
    }

    .footer-area .left, .footer-area .middle, .footer-area .right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer-bloc {
        gap: 30px;
        flex-wrap: wrap;
    }

    .footer-area .middle {
        justify-content: flex-start;
    }

}

@media only screen and (max-width: 500px) {
    .footer-area .menu a {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .footer-bloc {
        gap: 10px;
    }
}



/*------------ COPYRIGHT AREA ------------*/

.copyright-area{
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #3878ba;
}

.copyright-area p{
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    color: #fff;
}

.copyright-area p a{
    font-size: 12px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s all;
    text-decoration: none;
}

.copyright-area p a:hover{
    color: #d3873d;
}

