/*
 * Style pour ONE
 * v1.0
 *
 * one.68000.fr
 */

@font-face {
	font-family: "elephant";
	src: url('../theme/ELEPHNT.TTF');
}

:root {
  --title-color: #1a3953;
  --title-clair: #e8cc79;
  --gray-color: #eeeeee;
  --form-color: #d1d1d1;
}





/* Header et Footer */
.oneHeader {
	height:75vh;
	background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.logoHeader {
	animation: animLogoMra 2s 0.5s ease-out forwards;
	opacity: 0;
}
@keyframes animLogoMra {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.logoFooter {
  width: 33vw;
}





/* Sections */
.oneSection::before {
	height: 15vh;
	background-size: cover;
	background-attachment: fixed;
	background-position-y: center;
	box-shadow: inset 0px 0px 20px 0px black;
}

#section4.oneTexte {
	background-color:var(--gray-color);
}
#formulaire.oneTexte {
	background-color:var(--form-color);
}







/* titres */
h1, h2, .h1, .h2 {
	font-size: 2.5rem;
	color:var(--title-color);
	font-family: "elephant";
}

.h3, h3 {
	color:var(--title-clair);
	font-family: "elephant";
}



/* Onglets */
.list-group-item.active {
    background-color: #e8cc79;
    border-color: #b69e58;
}