/* ==========================================================================
   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*="tybolcreol.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: 'Bebas Neue', Arial, Sans-Serif;
    font-size: 2.2rem;
	line-height: 2.6rem;
    color: #144e68;
}

body {    
	background: #002433;
    color: #e8eaed;
}

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

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

a, a:hover, a:focus {
	font-weight: 600;
    color: #ffba2a;
    border-bottom: 2px solid #ffba2a;
}

header img {
    max-width: 36%;
    margin: 0 auto;
    display: block;
}

header h2,
header h3 {
    text-indent: -9999px;
}

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

h2 {
    font-family: 'Devonshire', cursive;
    font-size: 4.4rem;
    line-height: 4.6rem;
    text-align: center;
	font-weight: 400;
}
h3 {
    text-transform: initial;
    font-size: 1.8rem;
	line-height: 2.4rem;
    display: block;
    text-align: center;
	font-weight: 400;
    color: #9aa0a6;
}
h5 {
    text-align: center;
}

p {
    text-align: center;
}

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 {
		padding: 14%;
	}

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