/* ==========================================================================
   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*="mgrg.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%);
}

/* ==========================================================================
   Style Base
   ========================================================================== */
  
 html, body {
	height: 100%;
 } 
  
body {
    font-family: 'Poppins', Arial, Sans-Serif;
    font-size: 1.2rem;
	line-height: 1.8rem;
    color: #070707;
}

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: #070707; 
}
::-moz-selection { 
    color: #FFF;  
    background: #070707; 
}
::selection { 
    color: #FFF;  
    background: #070707; 
} 

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

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

h1, h2, h3 {
	color: #070707;
}

header p {
    display: block;
    margin: 1rem auto;
    text-align: center;
    font-weight: 300;
}
header p img {
	width: 80%;
}

h1 {
    font-family: 'Poppins', cursive;
    font-size: 2.4rem;
    line-height: 2.6rem;
    text-align: center;
	font-weight: 400;
}
h2 {
    text-transform: initial;
    font-size: 1.8rem;
	line-height: 1.8rem;
    display: block;
    text-align: center;
	font-weight: 400;
    color: #fbece1;
}

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

article {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

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

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

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


@media (max-width: 768px) {
    
    article {
        display: block;
    }

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