/*
	Theme Name: The_Light
	Theme URI: http://www.thelight.cl
	Description: The_Light WordPress Theme
	Version: 1.0
	Author: TheLight Medias & grafics
	Author URI: http://www.thelight.cl
	Tags: Blank, HTML5, CSS3, Materialize

*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:100%;
}
:root{
	--canard-fonce: #01897d;
    --canard: #3db7ae;
	--canard-clair: #bbe0dd;
    --pomme: #c6d240;
    --bleu: #6176b8;
	--violet: #b497c7;
    --rose-fonce: #e7177c;
    --rose: #db5b9d;
    --rose-clair: #ee9dc4;
	--rose-fond: #fbe3ef;
    --orange-fonce: #f08249;
    --orange: #f59b24;
    --orange-clair: #f8b25c;
	--orange-fond: #fde1d0;
	--gris: #474747;
}
body {
	font:300 11px/1.4 'DIN Alternate Bold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color:var(--gris);
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:#444;
	text-decoration:none;
}
a:hover {
	color:#444;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}
.flex{
    display: flex;
}
.wrap{
    flex-wrap: wrap;
}
.alicenter{
    align-items: center;
}
.justibet{
    justify-content: space-between;
}
.relative{
    position: relative
}


/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	/* max-width:1280px;
	width:95%; */
	margin:0 auto;
	position:relative;
}
/* header */
.header {

}
/* logo */
.logo {
    width: 320px;
}
.logo-img {

}
.cabezera{
    padding: 30px 0;
}
/* nav */
nav{
    height: 40px;
    line-height: 40px;
    width: auto;
}
.nav{
    box-shadow: none;
    background-color: transparent;
}  
nav a{
    color: var(--rose-fonce);
}
.nav ul{
    display: flex;
    justify-content: space-around;
	/* max-width: 60%; */
    align-items: center;
    margin: 0 auto;
}
.nav ul li.menu-item-has-children{
    position: relative;     
}   
.nav ul li.menu-item-has-children:hover ul.sub-menu{
    display: block;
}   
.nav ul li{
}
.nav ul li a{
	font-weight: 400;
    color: var(--canard-fonce);
    text-transform: uppercase;
}
.nav ul.sub-menu{
	display: none;
	position: absolute;
	z-index: 1;
    max-width: 160%;
    width: 160%;
    background-color: white;
    
}
.nav ul.sub-menu li{
    width: 100%;
}
.nav ul.sub-menu li a{
	display: block;
    float: left;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
    line-height: 25px;
    width: 100%;
    color: var(--rose-fonce);
}

.nav ul li a:hover{
    color: var(--canard);
    background-color: #fff;
}
.nav ul li.current-menu-item a{
	color: var(--bleu);
    border-bottom: 1px solid var(--rose-fonce);
}
.nav ul li.current-menu-item a:hover{
    color: var(--orange);
}

/* sidebar */
.sidebar {

}
/* footer */
.footer {
    /* position: fixed;
    bottom: 6px; */
    padding: 36px;
    width: 100%;
    justify-content: space-evenly;
    font-size: 15px;
    flex-wrap: nowrap;
    border-radius: 5px;
    /* -webkit-box-shadow: 7px 7px 15px -3px rgba(231,23,124,0.77);
    box-shadow: 7px 7px 15px -3px rgba(231,23,124,0.77); */
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    background-color: var(--pomme);
}
.copyright{
    width: 32%;
    z-index: 2;
}


/*------------------------------------*\
    PAGES
\*------------------------------------*/



/*------------------------------------*\
    IMAGES
\*------------------------------------*/



/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/
@font-face {
    font-family: 'DIN Alternate Bold';
    font-style: normal;
    font-weight: normal;
    src: local('DIN Alternate Bold'), url('fonts/DINAlternate-Bold.woff') format('woff');
    }
@font-face {
	font-family:'Font-Name';
	src:url('fonts/font-name.eot');
	src:url('fonts/font-name.eot?#iefix') format('embedded-opentype'),
		url('fonts/font-name.woff') format('woff'),
		url('fonts/font-name.ttf') format('truetype'),
		url('fonts/font-name.svg#font-name') format('svg');
    font-weight:normal;
    font-style:normal;
}
h1.titre{
    font-size: 35px !important;
    position: relative;
    margin: 60px 0;
}
.content {
    position: absolute;
    top: 75%;
    left: calc(35px + 35%);
    transform: translate(-50%, -50%);
    height: 40px;
    overflow:hidden;
    /* font-family: 'Lato', sans-serif; */
    font-size: 35px;
    line-height: 40px;
    color: var(--gris);
}

  .content__container {
    font-weight: 600;
    overflow: hidden;
    height: 40px;
    padding: 0 40px;
  }
  /* .content__container:before {
    content: "[";
    left: 0;
  }
  .content__container:after {
    content: "]";
    position: absolute;
    right: 0;
  } */
  /* .content__container:after, .content__container:before {
    position: absolute;
    top: 0;
    color: #16a085;
    font-size: 42px;
    line-height: 40px;
    -webkit-animation-name: opacity;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-name: opacity;
    animation-duration: 2s;
    animation-iteration-count: infinite;
  } */
  .content__container__text {
    display: inline;
    float: left;
    margin: 0;
  }
  ul.content__container__list {
    margin-top: 0;
    padding-left: 0;
    text-align: left;
    list-style: none;
    -webkit-animation-name: change;
    -webkit-animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-name: change;
    animation-duration: 10s;
    animation-iteration-count: infinite;
  }
  li.content__container__list__item {
    width: 100%;
    line-height: 40px;
    margin: 0;
    font-size: 35px;
  }
  
  @-webkit-keyframes opacity {
    0%, 100% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
  }
  @-webkit-keyframes change {
    0%, 19.5%, 100% {
      transform: translate3d(0, 0, 0);
    }
    23.5%, 43% {
      transform: translate3d(0, -33%, 0);
      -webkit-transform: translate3d(0, -33%, 0);
      -moz-transform: translate3d(0, -33%, 0);
      -ms-transform: translate3d(0, -33%, 0);
      -o-transform: translate3d(0, -33%, 0);
}
    47%, 66.5% {
      transform: translate3d(0, -66%, 0);
      -webkit-transform: translate3d(0, -66%, 0);
      -moz-transform: translate3d(0, -66%, 0);
      -ms-transform: translate3d(0, -66%, 0);
      -o-transform: translate3d(0, -66%, 0);
}
    70.5%, 90% {
      transform: translate3d(0, -33%, 0);
      -webkit-transform: translate3d(0, -33%, 0);
      -moz-transform: translate3d(0, -33%, 0);
      -ms-transform: translate3d(0, -33%, 0);
      -o-transform: translate3d(0, -33%, 0);
}
}
  
  @keyframes opacity {
    0%, 100% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
  }
  @keyframes change {
    0%, 19.5%, 100% {
      transform: translate3d(0, 0, 0);
    }
    23.5%, 43% {
      transform: translate3d(0, -33%, 0);
      -webkit-transform: translate3d(0, -33%, 0);
      -moz-transform: translate3d(0, -33%, 0);
      -ms-transform: translate3d(0, -33%, 0);
      -o-transform: translate3d(0, -33%, 0);
}
    47%, 66.5% {
      transform: translate3d(0, -66%, 0);
      -webkit-transform: translate3d(0, -66%, 0);
      -moz-transform: translate3d(0, -66%, 0);
      -ms-transform: translate3d(0, -66%, 0);
      -o-transform: translate3d(0, -66%, 0);
}
    70.5%, 90% {
        transform: translate3d(0, -33%, 0);
        -webkit-transform: translate3d(0, -33%, 0);
        -moz-transform: translate3d(0, -33%, 0);
        -ms-transform: translate3d(0, -33%, 0);
        -o-transform: translate3d(0, -33%, 0);
}
  }

  li.fade{
    display: inline-block;
    background: linear-gradient( 90deg, var(--rose-fonce) 30%, #fff 60%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:320px) {
    #introbig{
        display: none;
    }
    section.hauteur{
        min-height: 80vh;
    }
    .filter-btn{
        background-color: var(--metier-color);
}
section.professionnels{
    margin-bottom: 36px;
}
#filters button, #prohome button{
    min-width: 100px;
    border-radius: 6px;
    -webkit-border-radius: none;
    -moz-border-radius: none;
    -ms-border-radius: none;
    -o-border-radius: none;
    font-size: 18px;
    color: #fff;
    padding: 6px;
    margin: 6px;
    border-top: none;
    border-bottom: none;
    border-right: none;
    border-left: none;
}
#filters button:focus{
    background-color: #F0F0F0;
    color: var(--gris);
}
#filters button.tous{
    color: var(--gris);
}
#filters button.tous:focus{
    background-color: var(--canard);
}
h5.fiche-nom{
    font-size: 17px;
}
#introsmall #annonce{
    width: 95   %;
}
#annonce{
    background-color: var(--orange);
    width: 50%;
    height: -webkit-fill-available;
    color: #fff;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    float: right;
    padding: 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}
#annonce h2, #annonce div{
    margin: 0 auto;
    color: #ffffff !important;
    padding: 18px;
}
#annonce div{
    font-size: 18px;
}
#annonce button{
    color: var(--canard-clair);
    background-color: var(--canard-fonce);
    padding: 6px;
    border: none;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    padding: 6px;
    margin: 0 auto;
}
#annonce button a{
    color: var(--canard-clair);
}
.adresse{
    font-size: 15px;
}

.bord{
    width: 19%;
    /* border: 10px solid var(--bleu);
    border-image: linear-gradient(140deg, var(--bleu) 30%, #fff 48%);
    border-image-slice: 1; */
}
.bord h3{
    font-size: 2.2rem;
}
.child-page{
    display: flex;
    flex-wrap: wrap;
    padding: 1%;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
}
.projects > *:nth-child(3n+2) h3{
   color: var(--orange);
}
.projects > *:nth-child(3n+1) h3{
    color: var(--bleu);
 }
 .projects > *:nth-child(3n) h3{
    color: var(--rose);
 }
.projects{
    justify-content: space-around;
    flex-direction: column;
}
.bord img{
    width: 60%;
}
.pros h3{
    border-radius: 20px;
    font-size: 13px;
    font-weight: 300;
    background: var(--rose);
    color: #fff;
    padding: 6px;
}
.fond{
    display: flex;
    /* justify-content: center; */
    align-items: center;
    /* background: var(--bleu); */
}
h2.texture{
    font-size: calc(2rem + 4vw);
    font-weight: 800;
    text-transform: uppercase;
    /* -webkit-text-stroke: 1px var(--gris);
    filter: drop-shadow(10px 10px 5px var(--gris));
    -webkit-filter: drop-shadow(10px 10px 5px var(--gris)); */
    /* background-image: url(https://porema8096.live-website.com/wp-content/uploads/2025/12/iconrosePlan-de-travail-6.png);
    background-size: cover;
    background-clip: text;
    -webkit-background-clip: text; */
    color: var(--canard);
    margin: 5vh 0;
}
.test{
    height: 90vh;
    background-color: var(--violet);
    position: relative;
    padding: 30px;
}
.conteneur-test{
    margin: 30px;
}
.r{
    position: absolute;
    top: 10%;
    left: 3%;
    width: 10%;
}
.p{
    position: absolute;
    bottom: 10%;
    left: 15%;
    width: 4%;
}
footer.footer{
    flex-direction: column;
    align-items: center;
}
.footer .p{
    bottom: 0;
    font-size: calc(1rem + 1vw);
}
.copyright {
    width: 95%;
}
.o{
    position: absolute;
    bottom: 2%;
    right: 3%;
    width: 15%;
}
h1{
    z-index: 2;
}
#results{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-content: space-evenly;
    /* min-height: 80vh; */
}
article.pro-card{
    width: 32%;
    border: 2px solid var(--metier-color);
    display: flex;
    justify-content: space-around;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    margin: 18px auto;
}
#post-23{
    width: 60%;
    margin: 0 auto;
}
#post-23 label{
    font-size: calc(0.8rem + 0.8vw);
    color: var(--gris);
}
input:focus{
    box-shadow: none;
    border-bottom: 2px solid var(--rose-fonce);
    border-top: none;
    border-left: none;
    border-right: none;
}
input[type="submit"] {
    background-color: var(--rose);
    color: #F0F0F0;
    padding: 6px;
    border: none;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    font-size: calc(0.8rem + 0.8vw);
}
.bandeau{
    display: flex;
    justify-content: space-around;
}
.flex-grid img{
    max-width: 300px;
    border: 3px solid var(--rose-fonce);
    border-radius: 18px;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    -ms-border-radius: 18px;
    -o-border-radius: 18px;
}
.flex-grid{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
}
.flex-grid h2{
    font-size: 2.5rem;
}
.flex-grid p{
    font-size: calc(0.7rem + 0.6vw);
}
.flex-grid .wp-block-group{
    width: 32%;
    padding: 18px;
    display: flex;
    flex-direction: column;
    /* border: 1px solid black; */
    border-radius: 18px;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    -ms-border-radius: 18px;
    -o-border-radius: 18px;
    margin: 9px 0;
}
.flex-grid > div.wp-block-group:nth-child(4n+2) {
    border: 3px solid var(--orange);
 }
 .flex-grid > div.wp-block-group:nth-child(4n+1) {
    border: 3px solid var(--bleu);
  }
  .flex-grid > div.wp-block-group:nth-child(4n) {
    border: 3px solid var(--canard-fonce);
  }
  .flex-grid > div.wp-block-group:nth-child(4n+3) {
    border: 3px solid var(--rose-fonce);
  }
  section.projet-details{
    min-height: 70vh;
  }
}
@media only screen and (min-width:480px) {
    .test{
        height: 60vh;
    }
}
@media only screen and (min-width:600px) {

    article.pro-card{
        width: 19%;
    

    }

    article.pro-card i{
        font-size: 17px;
    }
    .child-page{
        width: 32%;
    }
    .projects{
        justify-content: space-around;
        flex-direction: row;
    }
    h2.texture{
        font-size: calc(3rem + 4vw);
    }
    footer.footer{
        flex-direction: row;
        justify-content: space-around;
    }
    .copyright {
        width: 32%;
    }
}
@media only screen and (min-width:1200px) {
    .child-page{
        width: 19%;
    }
    #introsmall{
        display: none;
    }
    #introbig{
        display: block;
    }
}
@media only screen and (min-width:1140px) {

}
@media only screen and (min-width:1280px) {

}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
