@import url('https://fonts.googleapis.com/css?family=Kanit:400,700|Open+Sans');

* {
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    font-size: 10px;
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
}

section {
    padding-top: 80px;
    padding-bottom: 50px;
}

h1,
h2,
h3,
h4 {
    font-family: 'Kanit', sans-serif;
    font-weight: normal;
    color: #444444;
    text-transform: uppercase;
    text-align: left;
}

h1 {
    font-size: 4.8em;
    line-height: 1em;
    margin-bottom: 20px;
}

h2 {
    font-size: 3.2em;
    line-height: 1em;
    margin-bottom: 30px;
}

h3 {
    font-size: 2.4em;
    line-height: 1em;
    margin-bottom: 15px;
}

h4 {
    font-size: 1.8em;
    line-height: 1em;
    margin-bottom: 15px;
}

p {
    font-size: 1.8em;
}

p+p{
    margin-top: 15px;
}

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

sup {
    font-size: 0.6em;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;    
}

a.btn-noir {
    display: block;
    max-width: 480px;
    text-transform: uppercase;
    font-size: 1.8em;
    padding: 15px 0;
    background-color: #000;
    color: #fff;
    margin: 50px auto 0;
    text-align: center;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    box-sizing: border-box;
}

a.btn-noir:hover {
    background-color: #444444;
    color: #fff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

a.btn-brun {
    display: block;
    text-transform: uppercase;
    padding: 10px 15px;
    background-color: #8c6e4a;
    color: #fff;
    font-weight: bold;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    box-sizing: border-box;
}

a.btn-brun:hover {
    background-color: #ae9777;
    color: #fff;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.container {
    width: 1200px;
    max-width: 100%;
    position: relative;
    margin: 0 auto;
    padding: 0 2%;
    box-sizing: border-box;
}

.clear {
    clear: both;
}

header {
    position: fixed;
    background-color: rgba(0,0,0,1);
    width: 100%;
    margin: 0 auto;
    height: 100px;
    z-index: 99;
    padding: 0 2%;
    box-sizing: border-box;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

header.step1 {
    background-color: rgba(227,222,218,0.15);
}

header.step2 {
    background-color: rgba(227,222,218,0.35);
}

header.step3 {
    background-color: rgba(227,222,218,0.50);
}

header.step4 {
    background-color: rgba(227,222,218,0.85);
}

header.step5 {
    background-color: rgba(255,255,255,1);
    -webkit-box-shadow: 0px 2px 15px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 2px 15px 0px rgba(0,0,0,0.3);
    box-shadow: 0px 2px 15px 0px rgba(0,0,0,0.3);
}

.header-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    float: left;
    margin-top: 20px;
    width: 320px;
}

header .logo-blanc {
    display: block;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

header .logo-gris {
    display: none;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

header.step5 .logo-gris {
    display: block;
}

header.step5 .logo-blanc {
    display: none;
}

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

.main-nav {
    font-family: 'Kanit', sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.8em;
    height: 100%;
}

.main-nav .menu-principal-container {
    width: 100%;
    height: 100%;
}


#menu-principal {
    margin-top: 40px;
    float: right;
}

.main-nav ul li {
    display: block;
    float: left;
}

.main-nav ul li a {
    position: relative;
    color: #fff;
    padding: 15px 20px;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.main-nav ul li a:before,
.main-nav ul li a:before {
    content: "";
    background: #8c6e4a;
    position: absolute;
    bottom: 5px;
    height: 2px;
    width: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.main-nav ul li a.active:before,
.main-nav ul li a:hover:before {
    width: calc( 100% - 40px );
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.contact-nav {
    position: absolute;
    right: 0;
    top: 200%;
}

.contact-nav li {
    margin: 5px 0;
    background-color: #fff;
}

.contact-nav a {
    display: block;
    text-align: center;
    color: #000;
    padding: 10px;
    border: 2px solid #282828;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;}

.contact-nav a:hover {
    color: #ae9777;
    transition: all 0.3s;
    border-color: #ae9777;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.contact-nav .menu-item i._mi {
    margin-top: 0;
}

.contact-nav ul.sub-menu {
    position: absolute;
    height: 50px;
    font-size: 1.8em;
    min-width: 150px;
    right: 0;
    top: 0;
    transform: translateX(100%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.contact-nav .menu-item-has-children ul.sub-menu li a {
    padding: 13px;
}

.contact-nav .menu-item-has-children:hover ul.sub-menu {
    right: 3px;
    transform: translateX(-50px);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

#accueil {
    background-color: rgba(0,0,0,0.65);  
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-top: 100px;
}

#accueil .container {
    padding: 0;    
}

#accueil .thumbs-wrapper {
    background-color: #ae9777;
}

#accueil #top-slider-thumbs {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    margin: 0 auto;
    background-color: #ae9777;
    box-sizing: border-box;
}

#accueil .texte-overlay {
    position: absolute;
    top: 0;
    color: #fff;
    z-index: 9;
    padding: 15px 25px;
    box-sizing: border-box;
}

#accueil .texte-overlay h1 {
    color: #ae9777;
}

ul.slides {
    width: 100%;
}

.flexslider ul.slides li.slide {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

li.slide video {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

video[poster]{
    position: absolute;
    height:100%;
    width:100%;
    top: 0;
    left: 0;
}

li.slide img {
    width: 100%;
    height: auto;
}

.video-wrapper,
.img-wrapper {
    position: relative;
    height: 0;
    padding-top: 56.25%;
}

.video-wrapper video,
.img-wrapper div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-size: cover;
    background-repeat: no-repeat;
}

#projet {
    position: relative;
}

#projet ul{
    padding-left: 15px;
    margin: 15px 0;
}

#projet li {
    font-size: 1.6em;
    margin-bottom: 15px;
}

#projet .left-section,
#projet .right-section,
#a-propos .left-section,
#a-propos .right-section {
    position: relative;
    box-sizing: border-box;
}

#projet .left-section,
#a-propos .left-section,
#contact #coordonnees .left-section {
    float: left;
    max-width: 50%;
}

#projet .right-section,
#a-propos .right-section,
#contact #coordonnees .right-section  {
    float: right;
    width: 430px;
    max-width: 50%;
    margin-bottom: 80px;
}

#projet h1 {
    padding-bottom: 42px;
}

#projet h2,
#a-propos h2 {
    color: #8c6e4a;
    border-bottom: 2px solid #8c6e4a;
    padding-bottom: 42px;
}

#a-propos .notphonenumber {
    pointer-events: none;
}

.starting-price {
    width: 40%;
    color: #8c6e4a;
    font-family: 'Kanit';
    float: left;

}

.starting-price span {
    font-size: 4em;
    line-height: 0.5em;
}

.project-resume {
    width: 60%;
    float: right;
    line-height: 2.6em;
}

.border-section {
    padding: 25px 0;
    border-top: 2px solid #8c6e4a;
    border-bottom: 2px solid #8c6e4a;
}

.logos-space {
    padding: 25px 0;
}

.logos-space img {
    display: inline-block;
    width: 49%;
    padding: 15px;
    box-sizing: border-box;
}

#google_map_orsainville.block {
    position: relative;
}

#google_map_orsainville {
    position: absolute;
    width: 100%;
    height: 300px;
}

.adresse-projet {
    margin-top: 40px;
}

.share-nav {
    margin-top: 30px;
    position: relative;
    height: 75px;
}

.share-nav li {
    display: inline-block;
    margin: 0 5px;
    background-color: #fff;
}

.share-nav a {
    text-align: center;
    color: #000;
    padding: 10px;
    border: 2px solid #282828;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;}

.share-nav a:hover {
    color: #ae9777;
    transition: all 0.3s;
    border-color: #ae9777;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.share-nav .menu-item i._mi {
    margin-top: 0;
}

#projet .project-text,
#a-propos .texte-a-propos {
    /*text-align: justify;*/
}

.tabs-details {
    margin-top: 50px;
}

.tabs-details li {
    position: relative;
    list-style-type: disc;
    margin-left: 10px;
}

.tabs-details li.tab-detail,
.tabs-details li.tab-detail a {
    font-family: 'Open sans',sans-serif;
    color: #dbd0c2;
}

.tabs-details li.tab-detail a {
    text-decoration: underline;
}

#tabs {
    padding: 50px 0;
}

#units {
    position: relative;
}

#units table {
    width: 100%;
    border-spacing: 0;
}

#units table tr th,
#units table tr td {
    width: 16.66%;
    text-align: center;
    font-size: 1.8em;
    padding: 25px 0;
    box-sizing: border-box;
}

#units table tr th{
    position: relative;
    color: #8c6e4a;
    font-family: 'Kanit';
    font-weight: bold;
    text-transform: uppercase;
    border-top: 2px solid #8c6e4a;;
    border-bottom: 2px solid #8c6e4a;
}

#units table tr td {
    border-bottom: 2px solid #dbd0c2;
}

#units #list tr span {
    background-image: url('images/asc.png');
    display: block;
    position: absolute;
    float: right;
    width: 24px;
    height: 24px;
    bottom: 5px;
    left: calc( 50% - 12px );
    cursor: pointer;
}

#units #list tr span.desc {
    background-image: url('images/desc.png')!important;
}

#a-propos .left-section {
    float: left;
}

#a-propos .left-section video {
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
}

#a-propos .right-section {
    color: #dbd0c2;
    margin-top: 0;
}

#a-propos .right-section h2 {
    margin-top: 0;
}

#a-propos .right-section img {
    max-width: 100%;
}

#a-propos img.logo-apropos {
    max-width: 50%;
}

#contact {
    background-color: #8c6e4a;
    position: relative;
    width: 100%;
}

#contact a {
    color: #dbd0c2;
}

#contact #coordonnees {
    width: 100%;
    color: #fff;
    float: left;
    box-sizing: border-box;
}

#contact #coordonnees h2 {
    color: #fff;
    border-bottom: 2px solid #fff;
    padding-bottom: 42px;   
}

footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0 20px;
    font-size: 1.4em;
    z-index: 1;
}

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

    h1 {
        font-size: 2.8em;
    }

    h2 {
        font-size: 2.4em;
    }

    .container {
        box-sizing: border-box;
        padding: 15px;
    }

    header {
        height: 70px;
        background-color: rgba(0,0,0,1);
        -webkit-box-shadow: 0px 2px 15px 0px rgba(0,0,0,0.3);
        -moz-box-shadow: 0px 2px 15px 0px rgba(0,0,0,0.3);
        box-shadow: 0px 2px 15px 0px rgba(0,0,0,0.3);
    }

    .header-wrap {
        box-sizing: border-box;
        padding: 2% 0;
    }

    .logo {
        margin-top: -4px;
    }

    .logo img {
        width: 75%
    }

    header .logo-gris {
        display: block;
    }

    .main-nav .menu-principal-container {
        width: 104%;
        height: auto; 
        position: absolute;
        left: -2%;
        top: 70px;
    }

    ul#menu-principal {
        margin: 0;
        float: none;
    }

    ul#menu-principal li {
        float: none;
        background-color: #fff;
        text-align: center;
        border-top: 1px solid #000;
        padding: 0;
        line-height: 50px;
        transition: all 0.3s linear;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
    }
    ul#menu-principal li:nth-last-child(1) {
        border-bottom: 1px solid #000;
        -webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.5);
        -moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.5);
        box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.5);
    }
                
    ul#menu-principal li a {
        display: block;
        color: #000;
        width: 100%;
        height: 100%;
        padding: 0;
    }

    ul#menu-principal li a.active {
        color: #8c6e4a;
    }

    ul#menu-principal li a:nth-last-child(1) {
        border-radius: 0;
    }

    .main-nav ul li a.active:before {
        display: none;
    }

    .menu-principal-container {
        display: none;
    }

    /* MENU CONTACT */

    .contact-nav {
        position: absolute;
        text-align: center;
        top: 8px;
        transform: translateX(50%);
        -webkit-transform: translateX(50%);
        -moz-transform: translateX(50%);
        right: 80px;
    }

    .contact-nav li {
        display: inline-block;
    }

    .contact-nav li a .fa.fa-phone {
        font-size: 2.6em!important;
    }

    .contact-nav .sub-menu {
        display: none;
    }

    /* HAMBURGER POUR LE RESPONSIVE */

    .c-hamburger {
        float: right;
        display: block;
        position: absolute;
        overflow: hidden;
        top: 15px;
        right: 0;
        margin: 0;
        padding: 0;
        width: 40px;
        height: 40px;
        font-size: 0;
        text-indent: -9999px;
        appearance: none;
        box-shadow: none;
        border-radius: none;
        border: none;
        cursor: pointer;
        border-radius: 5px;
        transition: background 0.3s;
    }

    .c-hamburger:focus {
        outline: none;
    }

    .c-hamburger span {
        display: block;
        position: absolute;
        top: 18px;
        left: 5px;
        right: 5px;
        height: 4px;
        background: white;
        border-radius: 2px;
    }

    .c-hamburger span::before,
    .c-hamburger span::after {
        content: "";
        position: absolute;
        display: block;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: #fff;
        border-radius: 2px;
    }
    .c-hamburger span::before {
        top: -10px;
    }

    .c-hamburger span::after {
        bottom: -10px;
    }

    .hamburger {
        background-color: #ae9777;
    }

    .hamburger span {
        transition: all 0.3s linear;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
    }

    .hamburger span::before,
    .hamburger span::after {
        transition: all 0.3s linear;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
    }
    .hamburger span::before {
        transition-property: top, transform;
    }
    .hamburger span::after {
        transition-property: bottom, transform;
    }
    .hamburger.is-active {
        background-color: #ae9777;
    }
    .hamburger.is-active span {
        background: none;
    }
    .hamburger.is-active span::before {
        top: 0;
        transform: rotate(225deg);
    }

    .hamburger.is-active span::after {
        bottom: 0;
        transform: rotate(-225deg);
    }

    .hamburger.is-active span::before,
    .hamburger.is-active span::after {
        transition: all 0.3s linear;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
    }

    #accueil {
        top: 70px;
        padding-top: 0;
    }

    #projet h1 {
        padding-bottom: 0;
    }

    #projet h2 {
        margin-top: 0;
        padding-bottom: 52px;
    }

    .service {
        width: 100%;
    }
}

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

    body {
        font-size: 8px;
    }

    #projet {
        padding-top: 80px;
    }

    section {
        padding-top: 0;
    }

    p {
        max-width: 100%;
    }

    #projet .left-section,
    #projet .right-section,
    #a-propos .left-section,
    #a-propos .right-section,
    #google_map {
        width: 100%;
        max-width: 100%;
        margin-bottom: 0;
        margin-top: 0;
    }

    #projet .left-section,
    #projet .right-section {
        margin-bottom: 30px;
    }

    #projet a.btn-noir {
        margin: 40px auto;
    }

    #projet h2 {
        padding-bottom: 39px;
    }

    #a-propos .left-section {
        margin-bottom: 30px;
    }

    #contact {
        padding-bottom: 0;
    }

    #contact #coordonnees {
        width: 100%;
        max-width: 100%;
        padding-bottom: 30px;
    }

    #google_map {
        position: relative!important;
        width: 100%;
        height: 300px; 
        float: none;
        bottom: -50px;
    }
}

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

    .logo {
        margin-top: 12px;
    }

    .logo img {
        width: 60%;
    }

    #accueil .texte-overlay h1,
    #accueil .texte-overlay p {
        text-align: center;
    }

    #accueil .texte-overlay img {
        max-width: 75%;
        text-align: center;
    }

    .slide-details {
        transform: initial;
        font-size: 0.8em;
        text-align: center;
    }

    .slide-details a {
        display: none;
    }



    #units table tr th, #units table tr td {
        font-size: 1.6em;
    }
}

@media screen and (max-width:480px) {
    
    .starting-price span {
        font-size: 3.2em;
    }

    #units table tr th, #units table tr td {
        font-size: 1em;
    }

    #contact #coordonnees .coordonnees,
    #contact #coordonnees .heures {
        width: 100%;
    }

    #a-propos .left-section img {
        max-width: 100%;
        height: auto;
    }

    #contact #coordonnees .left-section,
    #contact #coordonnees .right-section {
        width: 100%;
        float: none;
        margin-bottom: 20px;
    }

    footer {
        position: relative;
        padding: 15px 0 0 0;
    }
}