body {
	color: #666;
    background-color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 24px;
    overflow-x: hidden;
}

a,
a:hover,
a:focus {
	text-decoration: none;
	color: inherit;
	outline: none;
}
a, .btn {
	-webkit-transition: .3s ease;
    transition: .3s ease;
}

img {
	max-width: 100%;
}

h1,h2,h3,h4,h5 {
	color: #cc0000;
	font-weight: 300;
}
h2 {
    font-size: 26px;
    line-height: 36px;
}

/*
Header
*/
#sticky-wrapper {
    position: relative;
    z-index: 10000 !important;
}
.header {
    background: #cc0000;
    height: 80px;
    position: relative;
    z-index: 10000 !important
}
.logo {
    width: 20%;
    flex: 0 0 20%;
}
.logo img {
    width: 90%;
}
.Mobile .logo img {
    width: 100%;
}
@media(max-width: 767px) {
	.logo {
	    width: 50%;
	    flex: 0 0 50%;
	}
}

.TelMob {
    text-align: center;
    padding: 5px 0;
    background-color: #000;
}
.TelMob a {
    font-size: 18px;
    margin: 0 10px;
    color: #ffffff;
}

/*
Nav
*/
.nav {
	height: 80px;
	width: 80%;
    flex: 0 0 80%;
    justify-content: flex-end;
}
.nav-list {
	display: table;
	height: 100%;
    list-style: none;
    margin: 0;
    padding-left: 15px;
}
.nav-item {
	display: table-cell;
	vertical-align: middle;
	position: relative;
	padding: 0 7px;
	height: 100%;
	width: 15%;
}
.Desktop .nav-item:last-child {
	width: 20%;
}
.nav-item > a {
	text-transform: uppercase;
    font-weight: 600;
    color: white;
    position: relative;
    text-align: center;
    line-height: 100%;
    font-size: 13px;
    display: flex;
    height: 100%;
    align-items: center;
}

.nav-item > a:before,
.nav-item > a:after {
    transition: opacity .25s ease;
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 0;
    width: 0;
    border: solid transparent;
    pointer-events: none;
    opacity: 0;
}
.nav-item > a:before {
    border-color: rgba(199,198,197,0);
    border-bottom-color: #d9d9d7;
    border-width: 7px;
}
.nav-item > a:after {
    border-color: rgba(255,255,255,0);
    border-bottom-color: #fff;
    border-width: 6px;
}
.nav-item.active > a:before,
.nav-item.active > a:after,
.nav-item:hover > a:before,
.nav-item:hover > a:after {
    opacity: 1;
}

.nav-submenu {
	padding-left: 0;
	margin: 0;
	list-style: none;
	display: block;
	opacity: 0;
    transition: opacity .25s ease;
    position: absolute;
    width: 312px;
    pointer-events: none;
    border: 1px solid #c7c6c5;
    border-top: 0;
    border-radius: 3px;
    box-shadow: 0 5px 10px 0 rgba(0,0,0,.05);
    left: -15px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 20px;
    background-color: white;
}
.nav-item:hover .nav-submenu {
	opacity: 1;
    pointer-events: auto;
}
.nav-submenu-item {
    padding: 0 15px;
}
.nav-submenu-item > a {
    color: #222;
    display: block;
    border-bottom: 1px dotted #ddd;
    padding: 1px 0;
    font-size: 12px;
    line-height: 18px;
    transition: all 0.4s;
}
.nav-submenu-item:hover,
.nav-submenu-item.active {
    background: #cc0000;
}
.nav-submenu-item:hover a,
.nav-submenu-item.active a {
    color: #fff;
}




/* Mobile navigation */
.nav-mobile {
  	display: none;
  	cursor: pointer;
    background: #000 url(../images/nav.svg) no-repeat 60px 50%;
    background-size: 18px;
    height: 45px;
    width: 90px;
    color: white;
    line-height: 45px;
    padding-left: 12px;
}
.nav-click {
  position:absolute;
  top:0;
  right:0;
  display:none;
  border-left:1px solid #000;
  background-color: #000;
  height:44px;
  width:50px;
  cursor:pointer;
  z-index: 10000 !important;
}
.nav-click i {
	display:block;
	height:48px;
	width:48px;
	background:url(../images/drop.svg) no-repeat center center;
	background-size:20px;
}
.nav-click:hover {
	background-color:#000;
}
.nav-rotate {
	-webkit-transform:rotate(180deg);
	-moz-transform:rotate(180deg);
	-ms-transform:rotate(180deg);
	-o-transform:rotate(180deg);
	transform:rotate(180deg);
}

@media only screen and (max-width: 767px) {
	.header {
		height: inherit;
	}
	.header .d-flex {
		justify-content: space-between;
		align-items: center;
	}
    .nav-mobile {
      display:block;
    }
    .nav {
      width:100%;
      display: block;
      height: inherit;
      position: absolute;
    }
    .nav-list {
    	background: #fff;
      display:none;
      padding: 0;
    }
    .nav-item {
        background: white;
      width:100%;
      display: block;
      height: initial;
    }
    .nav-item > a {
        display: block;
         padding: 15px;
	    color: #000;
	    text-align: left;
    }
    .nav-click {
      display:block;
    }
    .nav-mobile-open {
      border-radius:5px 5px 0 0;
      -webkit-border-radius:5px 5px 0 0;
      -moz-border-radius:5px 5px 0 0;
    }
    .nav-item:hover .nav-submenu {
      	display:none;

      	border: none;
    	box-shadow: none;
    	background: #efefef;
    }
    .nav-submenu {
      position:static;
      width:100%;
      display: none;
    }
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}


/*
Homeslider
*/
.homeslider {
    position: relative;
    height: 588px;
}
.sliderHome .row {
	margin-right: -1px;
    margin-left: -1px;
}
.sliderHome .row > div {
	padding-right: 1px;
    padding-left: 1px;
}
.imgSlider {
    height: 588px;
    background-color: #ddd;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@media(max-width: 767px) {
	.homeslider,
	.imgSlider {
		height: 350px;
	}
}
.captionSlider {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
}
.title-slider {
    text-transform: uppercase;
    color: white;
    font-weight: 800;
    font-size: 30px;
    line-height: 150%;
    padding-top: 132px;
    text-shadow: 0px 1px 7px #292828;
}
.title-slider span {
    display: block;
    text-shadow: 0px 1px 7px #292828;
    font-weight: 300;
    font-size: 29px;
    margin-bottom: 20px;
}
.title-slider span:after {
    content: "";
    display: block;
    width: 373px;
    border-bottom: 8px solid #cc0000;
    margin-top: -3px;
}

@media(max-width: 767px) {
	.title-slider {
		font-size: 18px;
		padding-top: 0;
	}
	.title-slider span {
    font-size: 28px;
	}
	.title-slider span:after {
		width: 270px;
	    margin-top: 2px;
	}
}
.rappelSlider, .DevisSlider {
    display: inline-block;
    vertical-align: top;
}
.rappelSlider {
    width: 40%;
    padding-right: 15px;
}
.rappelSlider > div {
    background: rgb(255, 255, 255);
    padding: 20px;
}
#mail, #mail2 { display: none; }
.DevisSlider {
    background: rgb(255, 255, 255);
    padding: 20px;
    position: relative;
    width: 60%;
}
@media(max-width: 767px) {
	.rappelSlider,
	.DevisSlider {
		width: 100%;
		display: block;
	}
	.rappelSlider {
		padding-right: 0;
	}
}
.form-input {
    display: block;
    width: 100%;
    margin: 5px 0;
    padding: 10px 10px;
    background: white;
    border: 1px solid #ddd;
}
textarea.form-input {
    height: 100px;
}
.form-input:focus {
	outline: none;
	box-shadow: none;
	-webkit-transition: .3s ease;
    transition: .3s ease;
}
.DevisSlider h3,
.rappelSlider h3 {
	background: url(../images/stripe-line.png) repeat-x left center;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 600;
}
.DevisSlider h3 span,
.rappelSlider h3 span {
	background-color: white;
	padding-right: 15px;
}
.btn-devis {
    border: 2px solid #cc0000;
    background: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    padding: 7px 25px;
    display: block;
    margin-top: 10px;
    cursor: pointer;
    -webkit-transition: .3s ease;
    transition: .3s ease;
}
.btn-devis:hover {
    background-color: #cc0000;
    color: white;
}
.btn-devis:focus {
    outline: none;
    box-shadow: none;
}
.btn-devis.btn-realisations {
    background: #cc0000;
    color: white;
    width: 250px;
    text-align: center;
}
#rappel_immediat .btn-devis {
	width: 100%;
    margin-top: 5px;
}
.tel-slider {
    /*background: none !important; */
    background: rgba(36, 93, 179, 0.7) !important;
    padding: 0 !important;
    padding-left: 7px !important;
    padding-top: 12px;
    padding-left: 10px !important;

    display: flex;
    align-items: center;
}
.tel-slider img {
    width: 50px;
}
.tel-slider span {
    display: block;
    font-size: 24px;
    margin: 8px 0;
    color: white;
    font-weight: 600;
}
.call {
    display: block;
    border-radius: 100%;
    overflow: hidden;
    width: 170px;
    margin: 0 auto 15px;
    border: 3px solid #245db3;
}

/*
Categories
*/
.categories {
    padding: 60px 0 0;
    position: relative;
}
.categories:after {
	content: "";
    background: url(../images/stripe-line.png) repeat-x left center;
    display: block;
    height: 25px;
    margin: 50px auto 0;
    width: 50%;
}
.categories-inner h2 {
    text-align: center;
    font-size: 36px;
}
.categories-item {
    margin-top: 35px;
    padding: 0;
    margin-bottom: 0;
    list-style: none;
}
.categories-item .slick-track {
	margin-right: -15px;
    margin-left: -15px;
}
.categories-item li {
    padding-right: 15px;
    padding-left: 15px;
}
@media(max-width: 767px) {
	.categories-item li {
		padding: 0;
		margin-bottom: 20px;
	}
}
.categories-item a {
    display: block;
}
.categories-item a span {
    text-transform: uppercase;
    line-height: 130%;
    background: #cc0000;
    height: 50px;
    padding: 10px;
    display: flex;
    align-items: center;
    color: white;
}
@media(max-width: 767px) {
    .categories-item a img {
        width: 100%;
    }
}

.Mobile h2 {
    font-size: 22px;
    line-height: 30px;
}

/*
Contenu
*/
.wrap {
	font-size: 16px;
	line-height: 30px;
	color: #584f4f;
}

.wrap h1 {
	border-left: 5px solid #cc0000;
    color: #000;
    text-transform: uppercase;
    font-size: 30px;
    padding-left: 15px;
}
.Mobile .wrap h1 {
    font-size: 24px;
    text-align: left !important;
}
.wrap h1:after {
	content: "";
    background: url(../images/stripe-line.png) repeat-x left center;
	display: block;
	height: 25px;
}
.Desktop .row-reverse {
	flex-direction: row-reverse;
}
.section1 {
	padding: 80px 0 0;
}
#interne .section1{
	padding-bottom: 60px;
}
.img-intero {
    border: 15px solid #fff;
    box-shadow: 0 2px 15px #ddd;
}
.Mobile .img-intero,
.Mobile .item-img {
    margin-bottom: 20px;
}
.Mobile .item-text {
    padding: 0 8px;
}

.section2 {
	background-color: #f6f6f6;
	padding: 60px 0;
	margin-top: -50px;
}
#interne .section2{
	margin-top: 0;
}
.section3 {
    padding: 60px 0;
    position: relative;
}
.section4 {
	position: relative;
    padding: 40px 0 30px;
    color: white;
}
.section4 .overlay {
	background-repeat: repeat;
    background-image: url(../images/row-pattern.png);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #cc0000;
    opacity: 0.8;
}

.item4 {
	position: relative;
}
.item4 h2 {
    color: white;
    font-weight: 400;
}
.item-img img:last-child {
	margin-top: -47px;
}
.item-text:last-child p {
	margin-bottom: 0;
}
.logo-inner {
    max-width: 700px;
    margin: auto;
}
@media(max-width: 767px) {
	.section1 {
		padding: 20px 0;
	}
	.section1 .row {
		flex-direction: column-reverse;
	}
	.section2 {
		margin-top: 0;
		padding: 20px 0;
	}
	.item-img img:last-child {
		margin-top: -23px;
	}
    .item-text h2, .item-text p,
    .item4 h2, .item4 p,
    .section1 h2, .section1 p,
    .section5 h2, .section5 p {
        text-align: left !important;
    }
}
@media(max-width: 543px) {
	.logo-inner .row > div:last-child img {
		width: 75px !important;
	}
}
.logo-prart {
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
    color: white;
    padding: 30px 0;
    position: relative;
}
.logo-prart:before {
	content:"";
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .85;
}
.logo-item {
	text-align: center;
	position: relative;
}


/*
Footer
*/
.info-footer {
    padding: 60px 0;
    background: #2f2f33;
    color: white;
}
.logo-footer a {
	display: block;
    text-align: center;
}
.logo-footer a img {
	height: 140px;
}
.copyright {
    padding: 10px 0;
}
.Desktop .texte-agence {
    border-top: 5px solid #fff;
    padding-top: 15px;
    margin-top: 10px;
}
#bdrl {
	border-left: 1px solid #cc0000;
	padding-left: 35px;
}
.info-divers h3 {
    color: white;
}
.Mobile .info-divers h3 {
    color: #cc0000;
    margin-top: 20px;
    font-size: 22px;
}

.info-divers h3:after {
    content: "";
    display: block;
    width: 50px;
    border-bottom: 7px solid #fff;
    margin-left: 2px;
    margin-top: 5px;
    margin-bottom: 15px;
}
.info-divers ul {
    padding-left: 0;
    list-style: none;
    margin: 0;
}
.liens-compt li {
    margin-bottom: 0;
}
.liens-compt li:last-child {
    margin-bottom: 0;
}