@charset "utf-8";
/* CSS Document */

/* ARCHITECTURE */
/* DEFINITION DES BREAKPOINTS, ajout de XXL */
:root {
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1600px;
  
}
/* DEFINITION D'UN HEIGHT DE BASE */
html,body {
  height: 100%;
}

/* HEIGHT */
.h-10 {
  height: 10% !important;
}
@media (orientation:portrait), (max-width: 991px) {
.h-d {
  height: auto !important;
}
}

/* FONTS */
/* Définition de la font de base <p> */
@media (min-width: 0px) {
html {
	font-size: 13px;
}
}
@media (min-width: 576px) {
html {
	font-size: 14px;
}
}
@media (min-width: 768px) {
html {
	font-size: 14.5px;
}
}
@media (min-width: 992px) {
html {
	font-size: 11px;
}
}
@media (min-width: 1100px) {
html {
	font-size: 11.3px;
}
}
@media (min-width: 1200px) {
html {
	font-size: 12.3px;
}
}
@media (min-width: 1400px) {
html {
	font-size: 13.3px;
}
}
@media (min-width: 1600px) {
html {
	font-size: 13.8px;
}
}
@media (min-width: 1700px) {
html {
	font-size: 15.3px;
}
}
@media (min-width: 2000px) {
html {
	font-size: 16.8px;
}
}
@media (min-width: 2500px) {
html {
	font-size: 19px;
}
}
body {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 500;
  color: #47433C;
}

/* FONTS */
/* Titres */
h1 {
	font-size: 2.7rem;
	font-weight: 500;	
}
h2 {
	font-size: 1.6em;
	font-weight: 400;
	font-style: italic;
	text-transform: uppercase;	
}
h3 {
	font-size: 1.3rem;
	font-weight: 600;
	font-style: italic;
}
/* Paragraphe */
.legals {
	 font-size: 1rem;
	 font-style: italic;
	 color: #FFF;
	 font-weight: 400;
	 line-height: 1.2rem;
	 letter-spacing: 0.03em;	
}
.site {
	 font-size: 1.3rem;
	 font-weight: 600;	
}
.note {
	 font-size: 1rem;
	 font-style: italic;
	 font-weight: 400;
}
/* liens paragraphe */
p a {
	color: #47433C;
	text-decoration: underline;
}
p a:hover {
	color: #000;
}
/* label form */
label {
	font-size: 1.15rem;
	line-height: 1.25rem;
	line-height: auto;
	letter-spacing: inherit;
	letter-spacing: 0em;
}
.formText {
	font-size: 1.5rem;
	font-weight: 500;
	font-style: italic;
}
@media (min-width: 575px) {
h1 {
	font-size: 3.5rem;	
}
h2 {
	font-size: 1.8em;	
}
.site {
	 font-size: 1.4rem;	
}
.note {
	 font-size: 1rem;
}
}
/* BACKGROUND */
#background-img {
	width: 100%;
	height: 100%;
	position: fixed;
	background: url(img/background-chavet-cell.jpg) right top no-repeat;
	background-size: cover;
}
@media (min-width: 768px) {
#background-img {
	background: url(img/background-chavet-tablet.jpg) right top no-repeat;
	background-size: cover;
}
}
@media (min-width: 992px) {
#background-img {
	background: url(img/background-chavet.jpg) right top no-repeat;
	background-size: cover;
}
}
/* GLOBAL CONTENT */
.z-index {
	min-height: 100%;
	position: relative;
	z-index: 90;	
}
@media (min-width: 768px) {
.z-index {
	height: 100%;	
}
}
/* CONTENT */
.losange {
	width : 1.6rem;
	margin-bottom: 0 !important;
}
.trait {
	 font-size: 3.5rem;
	 line-height: 0rem;
	 color: #FFF;
	 font-weight: 600;	
}
/* Btn form */
label {
	font-size: 1.5rem;
	font-weight: 600;
}
input, textarea {
	didplay: block;
	width: 100%;
	margin-bottom: 0.3rem;
	border-radius: none;
	border: none;
	text-align: center;
}
textarea {
	height: 7rem;
}
.rectangle {
	font-size: 1.4rem;
	font-weight: 600;
	background-color: inherit;
	padding: 0rem 1.5rem 0.2rem 1.5rem !important;
	border: 0.1rem solid #47433C;
	transition: border-radius 0.3s, background-color 0.7s;
}
.rectangle:hover {
	border-radius: 2rem;
	border: 0.1rem solid #47433C;
}
/* FOOTER */
footer {
	background-color: rgba(228, 200, 116, 0.7);
}

