@charset "utf-8";
/* FONT FAMILY */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');

/*
   COLOR : #efb239 GOLD
   COLOR : #5e276e mauve
*/

*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}


body {
	font-family: 'Oswald', sans-serif;
  	background-color: #FFF;
	overflow-x: hidden;
	color: #5e276e;
	font-size: 62.5%;
}


/****** NAVBAR DESTOP MODE **********/
.navbar input[type="checkbox"],
.navbar .hamburger-lines {
  	display: none;
}

.navbar {
  	box-shadow: 0px 5px 10px 0px #aaa;
  	width: 100%;
  	background: #5e276e;
  	color: #fff;
  	opacity: 0.85;
  	height: 90px;
  	z-index: 1;
	position: fixed;
	top: 0;
}

.navbar-container {
  	display: flex;
  	justify-content: space-between;
  	height: 120px;
}

.menu-items {
  	order: 2;
  	display: flex;
	flex-flow: row wrap;
	align-items: center;
	height: 90px;
}

.menu-items li {
  	list-style: none;
  	margin-left: 1rem;
  	margin-right: 1rem;
  	margin-bottom: 0.5rem;
  	font-size: 1rem;
}

.menu-items a:link,
.menu-items a:visited {
  	text-decoration: none;
  	color: #fff;
  	/*font-weight: 500;*/
  	transition: color 0.3s ease-in-out;
}

.menu-items a:hover,
.menu-items a:active {
  	color: #efb239;
  	transition: color 0.3s ease-in-out;
}

.logo {
  	z-index: 2;
	display: flex;
	align-items: flex-start;
}

.logo img {
	display: block;
}

/************ INDEX **************/
.home {
	font-size: 1.2rem;
	background-image: url("../images/wild-bear-training.jpeg");
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	height: 100%;
	color: #fff;
	padding: 2rem;
}

.text-home {
	max-width: 1000px;
	margin: 0 auto;
}

.btn-rdv {
	height: 3.5rem;
}

.btn-rouge {
  	color : #efb239;
  	background: red;
  	width: 550px;
  	height: 50px;
  	text-align: center;
  	border-radius: 10px;
 	border:2px solid #efb239;
  	font-size: 1.6rem;

	position: absolute;
 	left: 50%;
  	transform: translateX(-50%);

}

.btn-rouge a:link,
.btn-rouge a:visited {
	text-decoration: none;
	color: #efb239;
}

.btn-rouge a:hover,
.bnt-rouge a:active {
	color: black;
}

.mindset {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 1.2rem;
	position: relative;
	top: 121px;
	padding-top: 1.6rem;
	margin-bottom: 1.2rem;
}

.column {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	margin-left: 1rem;
	margin-right: 1rem;
	font-size:2rem;
}

.column-img {
	margin-bottom: 1.2rem;
}

.column-title {
	text-transform: uppercase;
	font-size: 1.6rem;
	margin-bottom: 1.2rem;
	font-weight: 600;
}

/************ EQUIPE **************/
.equipe {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.equipe-details {
	margin-bottom: 3.2rem;
	margin-left: 2rem;
	margin-right: 2rem;
}

.equipe-details p {
	text-align: justify;
}

.name {
	text-align: center !important
}

.equipe-img {
	width: 300px;
	border-radius: 10px;
	aspect-ratio : auto;
}

/************ SERVICES **************/
.services {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;	
}

.services ul {
	display: flex;
	flex-direction: column;
	gap:1rem;
	align-items: flex-start;
	justify-content: flex-start;
	font-size: 1.2rem;
	margin: 2rem;
	text-align: left;
}

.services-img {
	display: inline-block;
	border-radius: 10px;
}

/************ TEMOIGNAGES **************/
.temoignages {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;	
}

.temoignages p {
	text-align: justify;
}

.client-temoignages {
	margin-left: 2rem;
	margin-right: 2rem;
}

.client-images {
	display: inline-block;
	width: 400px;
	aspect-ratio : auto;
}

/************ FOOTER **************/

.footer {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	position: relative;
	top: 121px;
	height: 80px;
	width: 100%;
    color: #f9b700;
    background: #5e276e;
	padding: 0.5rem;
}

.footer img {
	display: inline;
	height: 20px;
}

.fo-column {
	text-align: center;
}

#size {
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translateX(-50%);
	color: aqua;
	font-size: 2rem;
}


