/*
Theme Name : JLBSecurite
Text Domain: JLBSecurite
Author: eO10Design
Author URI: https://www.eo10Design.com/
Description : Theme pour le site TBRenovation.com
Version : 1.0
*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )
-----------------------------------------*/

:root {
  --white-color:                #FFFFFF;
  --primary-color:              #2363af;
  --second-color:               #0f87ca;
  --orange-color:               #f59323;
  --section-bg-color:           #0f87ca;
  --dark-color:                 #000000;
  --grey-color:                 #d0d1d1;
  --p-color:                    #717275;

  --body-font-family:           'Barlow', sans-serif;

  --nav-li-font-size:           18px;
  --h5-font-size:               24px;
  --p-font-size:                20px;
  --copyright-text-font-size:   16px;
  --product-link-font-size:     14px;
  --custom-link-font-size:      12px;

  --font-weight-thin:           100;
  --font-weight-extralight:     200;
  --font-weight-light:          300;
  --font-weight-regular:        400;
  --font-weight-medium:         500;
  --font-weight-semibold:       600;
  --font-weight-bold:           700;
  --font-weight-extrabold:      800;
  --font-weight-black:          900;

  --font-style-normal:          'normal';
  --font-style-italic:          'italic';

}

/*---------------------RESET-------------------*/

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

body {
    background-color: #d0d0d0;
}

body, html {
	margin:0;
	padding:0;
	font-family: var(--body-font-family);
	width:100%;
    overflow-x: hidden;
}

#background-video {
    /* height: 50vh; */
    width: 100%;
    /* max-width: 1920px; */
    object-fit: cover;
    /* position: fixed; */
    /* left: 0;
    right: 0;
    top: 0;
    bottom: 0; */
    /* z-index: -1; */
    }

.entete {
    display: flex;
    align-items: center;
    justify-content: center;
}

.entete img {
    width:100vw;
    height:auto;
}

.title {
    position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    font-weight: var(--font-weight-black);
    font-size: 4em;
    text-shadow: 1px 1px 10px black;
}

.title img {
    width:50%;
}

/*---------------------COULEURS-------------------*/

.blanc {color: var(--white-color)!important;}
.orange {color:var(--orange-color);}
.bleu {color:var(--primary-color)!important;}

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

/* .navigation {
    position: fixed;
    z-index: 3;
    top:0;
	display: block;
	width:100%;
	margin:0 auto;
}

.ligneVerticaleNav {
	position:relative;
	z-index: 2;
	display: flex;
	justify-content: space-around;
	align-items: center;
	width:100%;
	height:auto;
}

.boxSymboleMenu {
	position:relative;
	z-index: 3;
	width:4.5em;
	height:4.5em;
	padding: 0.5em;
} */


/*---------------------NAVIGATION-------------------*/

.logoAccueil {
    position: fixed;
    z-index: 4;
    top:10px;
    left:10px;
	width:40px;
	height:40px;
}

.barre {
    position: fixed;
    opacity: 0;
    z-index: 2;
    top: 0;
    width:100%;
    height:60px;
    transition: all ease-in-out 0.5s;
    background-color: rgba(15,135,202,0.8);
    border-radius: 0 0 1em 1em;
    box-shadow: 10px 5px 5px rgba(0,0,0,0.2);
}

nav {
    position: fixed;
    z-index: 3;
    top:0;
    width:100%;
    height: 50px;
    /* background: #f1f1f1; */
    /* border-radius: 0 0 1em 1em; */
    /* box-shadow: 10px 5px 5px rgba(0,0,0,0.2); */
}

nav a {
    text-decoration: none;
    color : var(--white-color);
}

.liste-nav {
    list-style-type: none;
    width:100;
    height:100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.5s ease-in-out;
    z-index: 4;
}

.item,.liste-nav li {
    height:100%;
    text-align: center;
    line-height: 50px;
    padding: 3px 10px 0 10px;
    font-weight: var(--font-weight-medium);
    cursor : pointer;
}

.item::after,.liste-nav li::after {
    content:'';
    display: block;
    width:0%;
    height: 2px;
    border-radius: 5px;
    background: var(--orange-color);
    margin :-15px auto 0 auto;
    transition: width 0.2s ease-in-out;
}

.item:hover::after,.liste-nav li:hover::after {
    width: 80%;
}

/*---------------------BTN RESPONSIVE MENU-------------------*/

.btn-responsive-menu {
    position: fixed;
    z-index: 3;
    top : 15px;
    right: 10px;
    width: 40px;
    height: 40px;
    /* background: #000; */
    display: none;
    cursor: pointer;
}

.lignes {
    width: 80%;
    height:3px;
    border-radius: 5px;
    background: #FFF;
    position: absolute;
    transition : all 0.5s ease-in-out;
}
.lignes:nth-child(1) {top: 0px;}
.lignes:nth-child(2) {top: 10px;}
.lignes:nth-child(3) {top: 20px;}

.btn-responsive-menu.active .lignes:nth-child(1) {
    top:12px;
    transform: rotate(135deg);
}
.btn-responsive-menu.active .lignes:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}
.btn-responsive-menu.active .lignes:nth-child(3) {
    top:12px;
    transform: rotate(-135deg);
}


/*---------------------POLICE-------------------*/

h1,h2 {
    font-size: 40px;
    /* color : var(--second-color); */
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5em;
}

h3 {
    font-size: 20px;
    color : var(--primary-color);
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5em;
}

h4 {
    font-size: 18px;
    color : var(--orange-color);
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5em;
}

p {
    font-size: 16px;
    line-height: 1.2em;
    color : var(--primary-color);
    font-weight: var(--font-weight-regular);
    margin-bottom: 0.3em;
}

/* ul {
    font-size: 16px;
    color : var(--primary-color);
    line-height: 1.1em;
}

ul li {
    list-style-type: none;
    padding-left : 1em;
    line-height: 1.1em;
} */

.gras {font-weight: var(--font-weight-bold);}
.pIntro {font-size: 1.3em;}

/*---------------------PARTIES-------------------*/

.container {
    position: relative;
    margin:0 auto;
    background-color: #FFF;
    max-width: 1365px;
    width:98%;
}

.marginTop {
    margin-top: -5em;
}

.start {
    border-radius: 1em 1em 0 0;

}

.intro {
    padding:1em;
    background-image: url("images/bgPart01.png");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    min-height:640px;
    height: auto;
}

.part01 {
    padding:1em;
    background-color: var(--section-bg-color);
    background-image: url("images/bgPart02.png");
    background-repeat: no-repeat;
    min-height:392px;
    display: flex;
}

.part02 {
    background-color: var(--white-color);
    background-image: url("images/bgPart03.png");
    background-position: top;
    background-repeat: no-repeat;
    min-height:760px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partContact {
    padding:1em;
    background-color: var(--section-bg-color);
    display:flex;
    align-items: center;
    justify-content: center;
}

.contenuPage {
    background-image: url("images/bgPart04.png");
    /* background-size: contain 100%; */
    background-position: bottom;
    background-repeat: no-repeat;
    min-height:578px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}

.contenuPage.orange {
    background-image: url("images/bgPart04_orange.png");
}

/*---------------------ZONE TEXTES-------------------*/

.textIntro {
    padding: 1em;
    width:70%;
    margin: 0 auto;
    margin-top: 8em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--second-color);
}

.textPart01 {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white-color);
    padding: 1em;
    margin-left: 2em;
    width:50%;
}

/* .textPart01 p,.textPart01 h2, .textPart01 ul {
    color: var(--white-color);
} */

.textPart01 ul {
    font-size: 1.3em;
}

.imagePart01 {
    width:30%;
}

.textPart02 {
    padding:1em;
    width:80%;
    color: var(--second-color);
}

.textPart02 p,.textPart02 h4 {
    color: var(--primary-color);
}

.prestas {
    display: flex;
    justify-content: center;
    align-items:space-between;
    flex-wrap: wrap;
}

.itemPrestas {
    width:20%;
    margin : 0.2em;
}

.itemPrestas a img {
    transition: all ease 1s;
    /* background-color: red; */
}

.itemPrestas a:hover img {
    transform: rotateZ(20deg);
    transform: scale(1.05);
    /* opacity: 0.5; */
}


.fluide {
    width:100%;
    height:auto;
}

.center {
    text-align: center;
}

.marge {
    margin:2em 0;
}

.arrondie {
    border-radius: 50%;
}

.separateur {
    width:200px;
    display: flex;
    justify-content: center;
    margin: 1em auto;
}

/*---------------------BTN EN SAVOIR PLUS-----------*/

.savoirPlus {
    display: flex;
    align-items: center;
    padding: 0.5em 0.5em 0.5em 0.1em;
    margin-top:0.5em;
    background-color: var(--orange-color);
    color : var(--white-color);
    border-radius: 1em 0.5em 0.5em 1em;
    font-weight: var(--font-weight-semibold);
    font-size:1.2em;
    height: 2.1em;
}

.savoirPlus span {
    position:relative;
    /* margin-left:-1.1em; */
    /* width:6.5em; */
}

.savoirPlus img {
    position: relative;
    width:3em;
    left:-0.5em;
}

.btnSavoirPlus {
    margin : 2em auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btnSavoirPlus a {
    text-decoration-line: none;
    transition: all ease 0.2s;
}

.btnSavoirPlus a .savoirPlus img:hover {
    transition: all ease 0.2s;
    transform: rotate(45deg);
}


/*---------------------FORMULAIRE CONTACT-----------*/

.contactForm {
    /* background-color: yellow; */
    width:70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contactForm h4 {
    color:var(--orange-color);
}

.contactLoc {
    /* background-color: aqua; */
    width : 30%;
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box01 {
    /* background-color: aqua; */
	margin:0.5em;
    display: flex;
	width:100%;
}

#wpforms-140 .wpforms-form,#wpforms-107 .wpforms-form {
    /* background-color: salmon; */
    width:600px;
}

.wpforms-form .wpforms-field {
    width:100%;
    /* background-color: #f59323; */
}

.wpforms-form .wpforms-field.wpforms-field-text input {
	padding:0.5em;
    /* width:100%; */
	border:none;
	border-radius:0.3em;
	background-color:#F1F1F1;
	font-family: 'Raleway', sans-serif;
	font-size:1em;
}

.wpforms-form .wpforms-field.wpforms-field-textarea textarea {
	margin:0 0 0.5em 0;
	padding:0.5em;
	border:none;
	border-radius:0.5em;
	background-color:#F1F1F1;
	font-family: 'Raleway', sans-serif;
	font-size:1em;
} 

/* .formContact {
    width:100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.formContact input,.formContact button {
	height:3em;
	margin:0 0 0.5em 0;
	padding:0.5em;
	border:none;
	border-radius:0.2em;
	background-color:#F1F1F1;
	font-family: var(--body-font-family);
	font-size:1em;
    font-weight: var(--font-weight-regular);
}

.formContact button {
    background-color: var(--orange-color);
    border-radius: 0.5em;
    font-size: 1.2em;
    color: var(--white-color);
    font-family: var(--body-font-family);
    font-weight: var(--font-weight-bold);
}

.formContact textarea {

	margin:0 0 0.5em 0;
	padding:0.5em;
	border:none;
	border-radius:0.2em;
	background-color:#F1F1F1;
	font-family: var(--font-style-regular);
	font-size:1em;
} */



.box02 {
    width:100%;
    height:300px;
    display: flex;
    justify-content: center;
}

.googleMap {
    border-radius: 50%;
    height:100%;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #323437;
    height:10em;
}

.adresse {
    display: flex;
    width: 100%;
    padding: 1em;
    justify-content: space-between;
}

.logoFooter {
    width:8%;
    padding: 1em;
    display: flex;

}

.reseauxSociaux {
    padding:1em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rs {
    width:3em;
    padding:0.5em;
}

.infoAdresse p {
    color: var(--white-color);
    padding:1em;
}


/*---------------------TEXTE PAGE-----------*/

.contenuPageBis {
    background-image: url("images/bgPart04_orange.png");
    background-size: contain 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    min-height:578px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 1em 0 15em 0;
}

.textePage {
    width:80%;
}

.textePage h2 {
   color : var(--second-color);
   font-size: 30px; 
}

.textePage h3 {
    margin: 1em 0;
}

.textePage div {
    margin: 0.5em 0;
}

.textePage p {
    font-size: 1.1em;
    line-height: 1.3em;
    color : var(--primary-color);
    font-weight: var(--font-weight-regular);
    margin-bottom: 0.4em;
}

.textePage ul {
    font-size: 1.1em;
    color : var(--primary-color);
    line-height: 1.3em;
    padding-left: 2em;
}

ul li {
    /* list-style-type: none;
    padding-left : 1em;
    line-height: 1.1em; */
}