/*-----------------------------------------------------------------------------

Atelier__85 CSS Framework 2025 - V1.0

-------------------------------------------------------------------------------

By Nicolas EVARISTE (https://www.atelier85.fr)
© 2025 - All rights reserved - Toute reproduction interdite

------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------
 Variables
------------------------------------------------------------------------------*/
:root{
	--coul-1: #833458;	 					/* Couleur : Bordeaux */
	--coul-2: #52293c;						/* Couleur : Bordeaux foncé */
	--coul-3: #f6f4f1;						/* Couleur : Beige */
	
	--font-1: "Montserrat", sans-serif;
	--font-2: "Montserrat", sans-serif;
	
	--100px: 100px;	
	--50px: 50px;	
	--25px: 25px;	
	--10px: 10px;
	--5px: 5px;
}

/*-----------------------------------------------------------------------------
 Reset (à compléter !!!)
------------------------------------------------------------------------------*/
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
img {
	max-width: 100%;
	height: auto;
	border: none;
    vertical-align: middle;
}
h1, h2, h3, h4, h4, h5, h6 {
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-weight: normal;
	padding: 15px 0;
}
form, figure{
	margin: 0;
	padding: 0;
}
iframe {
  border: 0;
  max-width: 100%;
}
pre{
	margin: 0;
	padding: 0;
}

/*-----------------------------------------------------------------------------
 Général
------------------------------------------------------------------------------*/

/* HTML / Body
--------------------------------------------------*/
html, body {
	height: 100%;
}
body {
	font-family: var(--font-1);
 	font-optical-sizing: auto;
	font-size: 18px;
	/*font-size: 1em;*/
	font-weight: 300;
	line-height: 1.4;
	color: #000000;
	background: #ffffff;
	margin: 0;
	-webkit-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}

/* WP
--------------------------------------------------*/
.wp-block-image{
	margin: 0;
	padding: 0;
	margin-top: 30px;
}
.wp-block-file{
	
}
.wp-block-gallery{
	
}
.wp-block-separator{
	display: block;
	width: 100%;
	height: 1px;
	border: 0;
	background: var(--coul-1);
	margin-top: 80px;
	margin-bottom: 80px;
}
.wp-block-spacer{
	
}
.wp-block-columns{
	
}
.wp-block-column{
	
}
h1.wp-block-heading,
h2.wp-block-heading,
h3.wp-block-heading,
h4.wp-block-heading,
h5.wp-block-heading,
h6.wp-block-heading{
	
}
h1.wp-block-heading{
	font-size: 2.2rem;
	line-height: 1em;
	font-weight: 300;
	color: var(--coul-1);
}
h2.wp-block-heading{
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--coul-1);
}
h3.wp-block-heading{
	font-size: 1.5rem;
}
h4.wp-block-heading{
	font-size: 1.3rem;
}
h5.wp-block-heading{
	
}
h6.wp-block-heading{
	
}

/*-----------------------------------------------------------------------------
 Grid et Flex
------------------------------------------------------------------------------*/

/* Grille
--------------------------------------------------*/
.grid{
	display: grid;
}

/* Flex
--------------------------------------------------*/
.flex-col{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* Colonnes
--------------------------------------------------*/
.col-1{
	grid-template-columns: 1fr;
}
.col-2{
	grid-template-columns: repeat(2, 1fr);
}
.col-3{
	grid-template-columns: repeat(3, 1fr);
}
.col-4{
	grid-template-columns: repeat(4, 1fr);
}
.col-6{
	grid-template-columns: repeat(6, 1fr);
}
.col-2_33-66{
	grid-template-columns: 33% 66%;
}
.col-2_66-33{
	grid-template-columns: 66% 33%;
}

/* Colonnes - Séparations
--------------------------------------------------*/
.col-2-separ{
	grid-template-columns: 1fr 1px 1fr;
}
.col-3-separ{
	grid-template-columns: 1fr 1px 1fr 1px 1fr;
}
.col-4-separ{
	grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
}
.col-6-separ{
	grid-template-columns: 1fr 1fr 1px 1fr 1fr 1px 1fr 1fr;
}
.separation-v{
	width: 1px;
	height: 100%;
}
.separation-h{
	width: 100%;
	height: 1px;
}

/* Gap
--------------------------------------------------*/
.gap-100{
	grid-gap: var(--100px);
}
.gap-50{
	grid-gap: var(--50px);
}
.gap-25{
	grid-gap: var(--25px);
}

/*-----------------------------------------------------------------------------
 Alignements
------------------------------------------------------------------------------*/

/* Alignements - Grid
--------------------------------------------------*/
.align-middle{
	align-items: center;
}
.align-top{
	align-items: start;
}
.align-bottom{
	align-items: end;
}
.item-center{
	align-self: center;
  	justify-self: center;
}

/* Alignements - Textes
--------------------------------------------------*/
.txt-center{
	text-align: center;
}
.txt-justify{
	text-align: justify;
}
.txt-left{
	text-align: left;
}
.txt-right{
	text-align: right;
}

/* Alignements - Divers
--------------------------------------------------*/
.center{
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

/*-----------------------------------------------------------------------------
 Padding
------------------------------------------------------------------------------*/

/* Padding 100
--------------------------------------------------*/
.ptb-100{
	padding-top: var(--100px);
	padding-bottom: var(--100px);
}
.plr-100{
	padding-left: var(--100px);
	padding-right: var(--100px);
}
.pt-100{
	padding-top: var(--100px);
}
.pb-100{
	padding-bottom: var(--100px);
}
.pl-100{
	padding-left: var(--100px);
}
.pr-100{
	padding-right: var(--100px);
}

/* Padding 50
--------------------------------------------------*/
.ptb-50{
	padding-top: var(--50px);
	padding-bottom: var(--50px);
}
.plr-50{
	padding-left: var(--50px);
	padding-right: var(--50px);
}
.pt-50{
	padding-top: var(--50px);
}
.pb-50{
	padding-bottom: var(--50px);
}
.pl-50{
	padding-left: var(--50px);
}
.pr-50{
	padding-right: var(--50px);
}

/* Padding 25
--------------------------------------------------*/
.ptb-25{
	padding-top: var(--25px);
	padding-bottom: var(--25px);
}
.plr-25{
	padding-left: var(--25px);
	padding-right: var(--25px);
}
.pt-25{
	padding-top: var(--25px);
}
.pb-25{
	padding-bottom: var(--25px);
}
.pl-25{
	padding-left: var(--25px);
}
.pr-25{
	padding-right: var(--25px);
}

/* Padding 10
--------------------------------------------------*/
.ptb-10{
	padding-top: var(--10px);
	padding-bottom: var(--10px);
}
.plr-10{
	padding-left: var(--10px);
	padding-right: var(--10px);
}
.pt-10{
	padding-top: var(--10px);
}
.pb-10{
	padding-bottom: var(--10px);
}
.pl-10{
	padding-left: var(--10px);
}
.pr-10{
	padding-right: var(--10px);
}

/* Padding 5
--------------------------------------------------*/
.ptb-5{
	padding-top: var(--5px);
	padding-bottom: var(--5px);
}
.plr-5{
	padding-left: var(--5px);
	padding-right: var(--5px);
}
.pt-5{
	padding-top: var(--5px);
}
.pb-5{
	padding-bottom: var(--5px);
}
.pl-5{
	padding-left: var(--5px);
}
.pr-5{
	padding-right: var(--5px);
}

/* Padding 0
--------------------------------------------------*/
.ptb-0{
	padding-top: 0px;
	padding-bottom: 0px;
}
.plr-0{
	padding-left: 0px;
	padding-right: 0px;
}
.pt-0{
	padding-top: 0px;
}
.pb-0{
	padding-bottom: 0px;
}
.pl-0{
	padding-left: 0px;
}
.pr-0{
	padding-right: 0px;
}

/*-----------------------------------------------------------------------------
 Margin
------------------------------------------------------------------------------*/

/* Margin 100
--------------------------------------------------*/
.mtb-100{
	margin-top: var(--100px);
	margin-bottom: var(--100px);
}
.mlr-100{
	margin-left: var(--100px);
	margin-right: var(--100px);
}
.mt-100{
	margin-top: var(--100px);
}
.mb-100{
	margin-bottom: var(--100px);
}
.ml-100{
	margin-left: var(--100px);
}
.mr-100{
	margin-right: var(--100px);
}

/* Margin 50
--------------------------------------------------*/
.mtb-50{
	margin-top: var(--50px);
	margin-bottom: var(--50px);
}
.mlr-50{
	margin-left: var(--50px);
	margin-right: var(--50px);
}
.mt-50{
	margin-top: var(--50px);
}
.mb-50{
	margin-bottom: var(--50px);
}
.ml-50{
	margin-left: var(--50px);
}
.mr-50{
	margin-right: var(--50px);
}

/* Margin 25
--------------------------------------------------*/
.mtb-25{
	margin-top: var(--25px);
	margin-bottom: var(--25px);
}
.mlr-25{
	margin-left: var(--25px);
	margin-right: var(--25px);
}
.mt-25{
	margin-top: var(--25px);
}
.mb-25{
	margin-bottom: var(--25px);
}
.ml-25{
	margin-left: var(--25px);
}
.mr-25{
	margin-right: var(--25px);
}

/* Margin 10
--------------------------------------------------*/
.mtb-10{
	margin-top: var(--10px);
	margin-bottom: var(--10px);
}
.mlr-10{
	margin-left: var(--10px);
	margin-right: var(--10px);
}
.mt-10{
	margin-top: var(--10px);
}
.mb-10{
	margin-bottom: var(--10px);
}
.ml-10{
	margin-left: var(--10px);
}
.mr-10{
	margin-right: var(--10px);
}

/* Margin 5
--------------------------------------------------*/
.mtb-5{
	margin-top: var(--5px);
	margin-bottom: var(--5px);
}
.mlr-5{
	margin-left: var(--5px);
	margin-right: var(--5px);
}
.mt-5{
	margin-top: var(--5px);
}
.mb-5{
	margin-bottom: var(--5px);
}
.ml-5{
	margin-left: var(--5px);
}
.mr-5{
	margin-right: var(--5px);
}

/* Margin 0
--------------------------------------------------*/
.mtb-0{
	margin-top: 0px;
	margin-bottom: 0px;
}
.mlr-0{
	margin-left: 0px;
	margin-right: 0px;
}
.mt-0{
	margin-top: 0px;
}
.mb-0{
	margin-bottom: 0px;
}
.ml-0{
	margin-left: 0px;
}
.mr-0{
	margin-right: 0px;
}

/*-----------------------------------------------------------------------------
 Mise en forme
------------------------------------------------------------------------------*/

/* Width / Height
--------------------------------------------------*/
.w100{
	width: 100%;
}
.min-h100vh{
	min-height: 100vh;
}
.min-h500px{
	min-height: 500px;
}
.h500px{
	height: 500px;
}

/* Rounded
--------------------------------------------------*/
.rounded-50{
	border-radius: 50px;
}
.rounded-30{
	border-radius: 30px;
}
.rounded-20{
	border-radius: 20px;
}
.rounded-10{
	border-radius: 10px;
}
.rounded-5{
	border-radius: 5px;
}
.rounded-br{
	border-top-left-radius: 0 !important;
	border-top-right-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}
.rounded-bl{
	border-top-left-radius: 0 !important;
	border-top-right-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}
.rounded-r{
	border-top-left-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}
.rounded-l{
	border-top-right-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}
.rounded-t{
	border-bottom-left-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}
.rounded-b{
	border-top-left-radius: 0 !important;
	border-top-right-radius: 0 !important;
}
.rond{
	border-radius: 50%;
}
.rond-haut{
	border-radius: 50% 50% 0 0;
}
.rond-bas{
	border-radius: 0 0 50% 50%;
}

/* Hr
--------------------------------------------------*/
hr.hr-1{	
	display: block;
	width: 100px;
	height: 3px;
	border: 0;
}
hr.hr-2{	
	display: block;
	width: 1px;
	height: 100px;
	border: 0;
}
hr.hr-3{	
	display: block;
	width: 100%;
	height: 1px;
	border: 0;
}

/*-----------------------------------------------------------------------------
 Couleurs
------------------------------------------------------------------------------*/

/* Blanc
--------------------------------------------------*/
.coul-blanc,
.hover-coul-blanc:hover{
	color: #fff;
}
.bg-coul-blanc,
.hover-bg-coul-blanc:hover{
	background-color: #fff;
	border-color: #fff;
}
.hover-border-coul-blanc:hover{
	border-color: #fff;
	background: none;
}

/* Noir
--------------------------------------------------*/
.coul-noir,
.hover-coul-noir:hover{
	color: #000;
}
.bg-coul-noir,
.hover-bg-coul-noir:hover{
	background-color: #000;
}
.hover-border-coul-noir:hover{
	border-color: #000;
	background: none;
}

/* Coul 1
--------------------------------------------------*/
.coul-1,
.hover-coul-1:hover{
	color: var(--coul-1);
}
.bg-coul-1,
.hover-bg-coul-1:hover,
.hover-bg-coul-1.hover-border-coul-1:hover{
	background-color: var(--coul-1);
	border-color: var(--coul-1);
}
.hover-border-coul-1:hover{
	border-color: var(--coul-1);
	background: none;
}

/* Coul 2
--------------------------------------------------*/
.coul-2,
.hover-coul-2:hover{
	color: var(--coul-2);
}
.bg-coul-2,
.hover-bg-coul-2:hover,
.hover-bg-coul-2.hover-border-coul-2:hover{
	background-color: var(--coul-2);
	border-color: var(--coul-2);
}
.hover-border-coul-2:hover{
	border-color: var(--coul-2);
	background: none;
}

/* Coul 3
--------------------------------------------------*/
.coul-3,
.hover-coul-3:hover{
	color: var(--coul-3);
}
.bg-coul-3,
.hover-bg-coul-3:hover,
.hover-bg-coul-3.hover-border-coul-3:hover{
	background-color: var(--coul-3);
	border-color: var(--coul-3);
}
.hover-border-coul-3:hover{
	border-color: var(--coul-3);
	background: none;
}

/*-----------------------------------------------------------------------------
 Textes
------------------------------------------------------------------------------*/

/* Textes - Font Family
--------------------------------------------------*/
.font-1 {
  font-family: var(--font-1);
  font-optical-sizing: auto;
}
.font-2 {
  font-family: var(--font-2);
  font-optical-sizing: auto;
}

/* Textes - Mise en forme
--------------------------------------------------*/
.bold, strong{
	font-weight: 600;
}
.italic{
	font-style: italic;
}
.uppercase{
	text-transform: uppercase;
}
.fw-100{
	font-weight: 100;
}
.fw-200{
	font-weight: 200;
}
.fw-300{
	font-weight: 300;
}
.fw-400{
	font-weight: 400;
}

/* Textes - Titres
--------------------------------------------------*/
.titre-1{
	font-size: 2.2rem;
	line-height: 1em;
}
.titre-2{
	font-size: 2rem;
}
.titre-3{
	font-size: 1.5rem;
}

/* Textes - Font Size et Line Height
--------------------------------------------------*/
.txt-26{
	font-size: 26px;
}
.txt-24{
	font-size: 24px;
}
.txt-22{
	font-size: 22px;
}
.txt-20{
	font-size: 20px;
}
.txt-18{
	font-size: 18px;
}
.txt-16{
	font-size: 16px;
}
.txt-14{
	font-size: 14px;
}
.txt-12{
	font-size: 12px;
}
.lh-1{
	line-height: 1;
}
.lh-1-5{
	line-height: 1.5;
}
.lh-2{
	line-height: 2;
}

/* Textes - Divers
--------------------------------------------------*/
.sur-titre{
	font-size: 1rem;
	line-height: 1em;
	margin-bottom: -20px;
}
.trait-avant:before{
	content: "";
	display: inline-block;
    position: relative;
	width: 30px;
	height: 2px;
	vertical-align: middle;
    margin-right: 10px;
    border-bottom: 2px solid var(--coul-1);
}
.trait-apres:after{
	content: "";
	display: inline-block;
    position: relative;
	width: 30px;
	height: 2px;
	vertical-align: middle;
    margin-left: 10px;
    border-bottom: 2px solid var(--coul-1);
}


/*-----------------------------------------------------------------------------
 Liens et Boutons
------------------------------------------------------------------------------*/

/* Liens et Boutons - Général
--------------------------------------------------*/
a, a svg{
	color: inherit;
	-webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}
a:hover{
	color: #000;							/* --- A CUSTOMISER */
}

/* Liens et Boutons - Boutons
--------------------------------------------------*/
.bt{
	display: inline-block;
	text-decoration: none !important;
	cursor: pointer;
	-webkit-appearance: none; 
	-moz-appearance: none;
	appearance: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border-width: 1px;
	border-style: solid;
	padding: 10px 25px 10px 25px;		/* --- A CUSTOMISER */
}

/*-----------------------------------------------------------------------------
 Effets / Animations
------------------------------------------------------------------------------*/

/* Hover
--------------------------------------------------*/
.hover-scale img,
.hover-scale svg,
.hover-scale-2 img,
.hover-scale-2 svg{
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.hover-scale img:hover,
.hover-scale svg:hover{
	transform: scale(1.1);
}
.hover-scale-2 img:hover,
.hover-scale-2 svg:hover{
	transform: scale(1.05);
}
@-webkit-keyframes fadeEffect {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeEffect {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Défilement
--------------------------------------------------*/
.defilement {
	overflow: hidden;
}
.defilement > :first-child {
	display: inline-block;
	padding-right: 2em;
	padding-left: 100%; 
	white-space: nowrap;
	animation: defilement-rtl 20s infinite linear;
}
.defilement:hover :first-child {
	animation-play-state: paused;
}
@keyframes defilement-rtl {
0% {
    transform: translate3d(0,0,0); 
}
100% {
    transform: translate3d(-100%,0,0);
}
}

/*-----------------------------------------------------------------------------
 Box
------------------------------------------------------------------------------*/
.box-item{
	position: relative;
	overflow: hidden;
}
.span-hover{
	position: absolute;
    left: 50%;
    bottom: 0px;
    transform: translate3d(-50%, 100%, 0);
    transition: all 0.3s cubic-bezier(0.6, 0.4, 0, 1);
    opacity: 0;
	z-index: 2;
}
.box-item:hover .span-hover{
	bottom: 50%;
	opacity: 1;
	transform: translate3d(-50%, 50%, 0);
}
/*.span-hover-bg{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: 1;
	transition: all 0.2s ease-in-out;
}
.box-item:hover .span-hover-bg{
	opacity: 0.8;
}*/
.span-center{
	position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translate3d(-50%, 50%, 0);
}
.span-bottom{
	position: absolute;
    right: 5%;
    bottom: 5%;
}
.span-top{
	position: absolute;
    left: 5%;
    top: 5%;
}

/*-----------------------------------------------------------------------------
 Accordion
------------------------------------------------------------------------------*/

.ac {
	margin-top: 10px;
	box-sizing: border-box;
}
.ac .ac-header {
	margin: 0;
	padding: 0;
}
.ac .ac-trigger {
	font-family: var(--font-1);
	font-size: 1.1rem;
	text-align: left;
	width: 100%;
	display: block;
	cursor: pointer;
	background-color: transparent;
	transition: color 0.25s ease;
	position: relative;
	text-decoration: none;
	margin: 0;
	border: 0;
	padding: 20px 30px; 					/* --- A CUSTOMISER */
}
.ac .ac-trigger::after {
	content: "+";
	text-align: center;
	width: 15px;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	position: absolute;
	right: 30px;						 	/* --- A CUSTOMISER */
	top: 50%;
}
.ac .ac-trigger:focus {

}
.ac .ac-panel {
	overflow: hidden;
	transition-property: height, visibility;
	transition-timing-function: ease;
}
.ac .ac-panel .ac-text {	
	padding: 30px;			 				/* --- A CUSTOMISER */
	padding-top: 0;
	margin: 0;
}
.ac.js-enabled .ac-panel {
	visibility: hidden;
}
.ac.is-active .ac-panel {
	visibility: visible;
}
.ac.is-active > .ac-header .ac-trigger::after {
	content: "-";
}

/*-----------------------------------------------------------------------------
 Tabs
------------------------------------------------------------------------------*/

.tabs {
	overflow: hidden;
	background: var(--coul-3);
}
.tabs button {
	font-family: var(--font-1);
	font-size: 1.1rem;
	background-color: inherit;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 20px 30px; 					/* --- A CUSTOMISER */
	transition: 0.3s;
}
.tabs button:hover {
	background-color: var(--coul-2);
	color: var(--coul-3);
}
.tabs button.activetab {
	background-color: #fff;
	color: var(--coul-1);
}
.tabcontent {
	display: none;
	padding: 30px;			 				/* --- A CUSTOMISER */
	background: #fff;	
}
.tabcontent-wrap{
	-webkit-animation: fadeEffect 1s;
  	animation: fadeEffect 1s;
}

/*-----------------------------------------------------------------------------
 Divers
------------------------------------------------------------------------------*/

.overflow-h{
	overflow: hidden;
}
.display-1280{
	display: none;
}

/*-----------------------------------------------------------------------------
 Blog
------------------------------------------------------------------------------*/

/* Item blog
--------------------------------------------------*/
div.item-blog{
	padding-top: 50px;
	padding-bottom: 50px;
}
div.item-blog-photo{
	
}
div.item-blog-infos{
	padding-left: 50px;
}
div.item-blog-infos h2{
	font-weight: 400;
	font-size: 20px;
	color: var(--coul-1);
}
div.item-blog-infos small{
	
}
div.item-blog-infos div{
	padding-top: 0px;
	padding-bottom: 15px;
}

/* Pagination
--------------------------------------------------*/
div#pages{
	text-align: center;
	font-size: 20px;
	padding-top: 40px;
}
div#pages span.page-numbers.current{
	display: inline-block;
	color: var(--coul-1);
	text-decoration: none;
	padding: 5px 15px;
	margin-left: 5px;
	margin-right: 5px;
}
div#pages a.page-numbers{
	display: inline-block;
	background: var(--coul-1);
	border: 1px solid var(--coul-1);
	color: #fff;
	text-decoration: none;
	padding: 5px 15px;
	margin-left: 2px;
	margin-right: 2px;
}
div#pages a.page-numbers:hover{
	border: 1px solid var(--coul-1);
	color: var(--coul-1);
	background: none;
}
div#pages a.next.page-numbers svg,
div#pages a.prev.page-numbers svg{
	width: 40px;
	height: auto;
	vertical-align: middle;
}
div#pages a.next.page-numbers,
div#pages a.prev.page-numbers{
	color: var(--coul-1);
	background: none;
	border: none;
}
div#pages a.next.page-numbers:hover,
div#pages a.prev.page-numbers:hover{
	text-decoration: underline;
}

/*-----------------------------------------------------------------------------
-------------------------------------------------------------------------------

 Responsive

-------------------------------------------------------------------------------
------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------
 Responsive - 1920
------------------------------------------------------------------------------*/

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

/*-----------------------------------------------------------------------------
 Responsive - 1440
------------------------------------------------------------------------------*/

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

/*-----------------------------------------------------------------------------
 Variables
------------------------------------------------------------------------------*/	
:root{
	--100px: calc(100px / 1.5);	
	--50px: calc(50px / 1.5);	
	--25px: calc(25px / 1.5);	
	--10px: calc(10px / 1.5);	
	--5px: calc(5px / 1.5);	
}
	
}

/*-----------------------------------------------------------------------------
 Responsive - 1280
------------------------------------------------------------------------------*/

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

/*-----------------------------------------------------------------------------
 Variables
------------------------------------------------------------------------------*/	
:root{
	--100px: calc(100px / 2);	
	--50px: calc(50px / 2);	
	--25px: calc(25px / 2);	
	--10px: calc(10px / 2);	
	--5px: calc(5px / 2);	
}
	
/*-----------------------------------------------------------------------------
 Grid et Flex
------------------------------------------------------------------------------*/
	
/* Colonnes
--------------------------------------------------*/
.col-2{
	grid-template-columns: repeat(1, 1fr);
}
.col-3{
	grid-template-columns: repeat(1, 1fr);
}
.col-4{
	grid-template-columns: repeat(2, 1fr);
}
.col-6{
	grid-template-columns: repeat(3, 1fr);
}
	
/* Colonnes - Séparations
--------------------------------------------------*/
.col-2-separ{
	grid-template-columns: repeat(1, 1fr);
}
.col-3-separ{
	grid-template-columns: repeat(1, 1fr);
}
.separation-v{
	width: 100%;
	height: 1px;
	margin-top: var(--100px);
	margin-bottom : var(--100px);
}
	
/*-----------------------------------------------------------------------------
 Textes
------------------------------------------------------------------------------*/

/* Textes - Titres
--------------------------------------------------*/
.titre-1{
	font-size: 1.9rem;
}
.titre-2{
	font-size: 1.5rem;
}
.titre-3{
	font-size: 1.2rem;
}	


/*-----------------------------------------------------------------------------
 Divers
------------------------------------------------------------------------------*/
.display-1280{
	display: block;
}	
	
}

/*-----------------------------------------------------------------------------
 Responsive - 1024
------------------------------------------------------------------------------*/

@media screen and (max-width: 1024px) {
	
/*-----------------------------------------------------------------------------
 Variables
------------------------------------------------------------------------------*/	
:root{
	--100px: calc(100px / 3);	
	--50px: calc(50px / 1.5);	
}
	
/*-----------------------------------------------------------------------------
 Textes
------------------------------------------------------------------------------*/

/* Textes - Titres
--------------------------------------------------*/
.titre-1{
	font-size: 1.5rem;
}
.titre-2{
	font-size: 1.3rem;
}
.titre-3{
	font-size: 1.1rem;
}	

/* WP
--------------------------------------------------*/
h1.wp-block-heading{
	font-size: 1.5rem;
}
h2.wp-block-heading{
	font-size: 1.3rem;
}
h3.wp-block-heading{
	font-size: 1.2rem;
}
h4.wp-block-heading{
	font-size: 1.1rem;
}	
	
/*-----------------------------------------------------------------------------
 Blog
------------------------------------------------------------------------------*/

/* Item blog
--------------------------------------------------*/
div.item-blog{
	padding-top: 50px;
	padding-bottom: 50px;
	
	display: block;
}
div.item-blog-photo{
	display: block;
	width: 100%;
}
div.item-blog-infos{
	display: block;
	width: 100%;
	padding-left: 0px;
	padding-top: 20px;
}
	
}

/*-----------------------------------------------------------------------------
 Responsive - 768
------------------------------------------------------------------------------*/

@media screen and (max-width: 768px) {
	
/* WP
--------------------------------------------------*/
.wp-block-image{
	margin-top: 15px;
}	
	
/*-----------------------------------------------------------------------------
 Variables
------------------------------------------------------------------------------*/	
:root{
	--100px: calc(100px / 4);	
	--50px: calc(50px / 2.5);	
}
	
/* Rounded
--------------------------------------------------*/
.rounded-50{
	border-radius: 30px;
}
.rounded-30{
	border-radius: 20px;
}
	
}