/* ==========================================================================
   Fichier CSS RESET
   ========================================================================== */
   
/*supprime toutes marges*/
*,
body.site {
padding: 0;
margin: 0;
}

/* supprime toutes bordures */
fieldset,img { border : 0; }

/* supprime les déco des liens */
a:link, a:visited {
text-decoration: none;
}

/* Remove the default outline */
:focus {
  outline: none;
}

/* Add an outline only when it should be visible */
:focus-ring {
  outline: 2px solid blue;
}

body {
  font-size: 100%;
  text-align: left;
  font-weight: 400;
  font-style: normal;
  line-height: 1.58;
  letter-spacing: -.003em;
}

@media print {
    body {
      background-color: transparent !important;
    }
    .header {
        position: static;
  }
    nav {
        display: none;
  }
    /* Affiche les liens a l'impression */
    a[href^="https"]:not([href*="maopeinture.fr"])::after {
        content: " (" attr(href) ")";
  }
}

/* Permet de cacher des elements aux lecteurs mais pas aux navigateurs */
.visually-hidden {
/* Remove the item from normal flow */
    position: absolute;
/* Workaround for falsely pronounced, smushed text */
    white-space: nowrap;
/* Set it to the smallest possible size (some screen readers ignore elements with zero height and width) */
    width: 1px;
    height: 1px;
/* Hide overflowing content after resizing */
    overflow: hidden;
/* Reset any property that may change the elements size */
    border: 0;
    padding: 0;
/* Clipping defines what part of an element should be displayed. */
/* Deprecated clip property for older browsers */
    clip: rect(0 0 0 0);
/* clip-path for newer browsers. inset(50%) defines an inset rectangle that makes the content disappear.  */
    clip-path: inset(50%);
}

@keyframes bounceIn {
	0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
	40% {
    transform: translateY(-30px);
  }
	60% {
    transform: translateY(-15px);
  }
}

/* ==========================================================================
   Style Base
   ========================================================================== */
  
 html, body {
	height: 100%;
 } 
  
body {
    font-family: ashemore, sans-serif;
    font-size: 1rem;
	line-height: 1.2rem;
    color: #f3dab5;
}

body {    
	background: url(../img/pattern.svg);
    background-repeat: no-repeat;
    background-size: cover;
	position: relative;
}

header, div.wrapper, footer {
    display: block;
    max-width: 1200px;
    width: 100%;
    margin: 20px auto;
}

::-webkit-selection { 
    color: #FFF;  
    background: #c79471; 
}
::-moz-selection { 
    color: #FFF;  
    background: #c79471; 
}
::selection { 
    color: #FFF;  
    background: #c79471; 
} 

.small {
    font-size: 1rem;
    font-weight: 200;
}

a, a:hover, a:focus {
	font-weight: 400;
    color: #f3dab5;
}
a.underline {
	color: #f3dab5;
	text-decoration: underline;
}

header p {
    display: block;
    margin: 1rem auto;
    text-align: center;
    font-weight: 300;
}
header p img {
	width: 80%;
}
.bounce {
  animation: bounceIn 2s;
}

h1, h2, h3, h4 {
    color: #c79471;
}
h1 {
    font-size: 2rem;
    line-height: 2.2rem;
    text-align: center;
	font-weight: 400;
}
h2 {
    text-transform: initial;
    font-size: 1.2rem;
	line-height: 1.4rem;
    display: block;
    text-align: center;
	font-weight: 400;
    color: #a06e4d;
}

.hidden {
	position: absolute;
	text-indent: -999px;
}

article {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 2rem 0;
}

section {
    flex: 1 1 0;
    margin-right: 16px;
    text-align: center;
}

.cta {
  position: relative;
  margin: auto;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: 50px;
  background: #c79471;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
}

.cta span {
  position: relative;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #c79471;
}

.cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #f3dab5;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.cta:hover:before {
  width: 100%;
  background: #c79471;
}

.cta:hover svg {
  transform: translateX(0);
}

.cta:active {
  transform: scale(0.95);
}

footer {
    display: block;
    margin: 20px auto;
    bottom: 0;
    text-align: center;
    font-size: 0.8rem;
}

@media (max-width: 1024px) {
	
    
}


@media (max-width: 768px) {
    
    header p img {
        width: 100%;
    }

    article {
        display: block;
    }

	header, div.wrapper, footer {
		width: auto;
	}
    
}
