html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	overflow-x: none;
}

#content {
	position: absolute;
	width: 100%;
	height: 100%;
	transition: 0.3s;
}

.nav-link {
	color: #2d2d2d;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
}

.nav-link:hover {
	color: white;
	transition: 0.3s;
}

a {
	color: #d62828;
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
}

a:hover {
	color: #d62828;
	text-decoration: underline;
}

.nav-link:hover {
	color: white;
	transition: 0.3s;
}

.list-group-item {
	text-transform: uppercase;
	font-weight: 600;
}

.list-group-item.active {
	background-color: #d62828 !important;
	border-color: #d62828;
}

.list-group-item.active:hover {
	background-color: #d62828 !important;
	border-color: #d62828;
}

a.bg-dark {
	color: white;
}

a.bg-dark:hover, .card.bg-dark:hover {
	background-color: initial !important;
	transition: 0.3s;
	cursor: pointer;
	text-decoration: none;
}

a.bg-dark:focus {
	background-color: #d62828 !important;
}

@font-face {
	font-family: "The Bold Font";
	src: url("../components/fonts/theboldfont-webfont.woff2") format("woff2"),
	url("../components/fonts/theboldfont-webfont.woff") format("woff");
}

h1 {
	font-family: 'The Bold Font', sans-serif;
	text-transform: uppercase;
}

h2, h3, h4 {
	font-family: 'The Bold Font', sans-serif;
	font-weight: 300;
}

p, li{
	font-family: 'Poppins', sans-serif;
}

ul {
	list-style: none;
	font-weight: 300;
}

.font-min {
	font-size: .9rem;
}

.font-light {
	font-weight: 300;
}

.font-bold {
	font-weight: 600 !important;
}

.color-primary {
	color: #d62828;
}

.background-primary {
	background-color: #d62828;
}

.color-secondary {
	color: #2d2d2d;
}

.background-secondary {
	background-color: #2d2d2d;
}

.text-black {
	color: black;
}

::-webkit-scrollbar {
	width: 3px;
}

::-webkit-scrollbar-thumb {
	background-color: black;
}

.navbar-nav {
	justify-content: center;
	width: 100%;
}

/* Preloader */
.loading {
	overflow: hidden;
	height: 100vh;
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	background-repeat: no-repeat;
	background-color: #2d2d2d;
	background-position: center;
}

#logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform:translate(-50%, -50%);
}

/* Hamburger */
.ham {
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transition: transform 400ms;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.hamRotate.active {
	transform: rotate(45deg);
}

.hamRotate180.active {
	transform: rotate(180deg);
}

.line {
	fill: none;
	transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
	stroke: white;
	stroke-width: 5.5;
	stroke-linecap:round;
}

.ham8 .top {
	stroke-dasharray: 40 160;
}
.ham8 .middle {
	stroke-dasharray: 40 142;
	transform-origin: 50%;
	transition: transform 400ms;
}
.ham8 .bottom {
	stroke-dasharray: 40 85;
	transform-origin: 50%;
	transition: transform 400ms, stroke-dashoffset 400ms;
}

.ham8.active .top {
	stroke-dashoffset: -64px;
	stroke: #2d2d2d;
	transition: 0.3s;
}

.ham8.active .middle {
	//stroke-dashoffset: -20px;
	transform: rotate(90deg);
	stroke: #2d2d2d;
	transition: 0.3s;
}

.ham8.active .bottom {
	stroke-dashoffset: -64px;
	stroke: #2d2d2d;
	transition: 0.3s;
}

/* Boutons */
.custom-btn {
	padding: 10px 25px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	background: transparent;
	outline: none !important;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	display: inline-block;
}

.btn-1 {
	border: 2px solid #d62828;
	z-index: 1;
	color: #d62828;
}

.btn-1:after {
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	top: 0;
	right: 0;
	z-index: -1;
	background: #d62828;
	transition: all 0.3s ease;
}

.btn-1:hover {
	color: #fff ;
}

.btn-1:hover:after {
	left: 0;
	width: 100%;
}

.btn-1:active {
	top: 2px;
}

.btn-2 {
	border: 2px solid white;
	z-index: 1;
	color: white;
}

.btn-2:after {
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	top: 0;
	right: 0;
	z-index: -1;
	background: white;
	transition: all 0.3s ease;
}

.btn-2:hover {
	color: #2d2d2d;
}

.btn-2:hover:after {
	left: 0;
	width: 100%;
}

.btn-2:active {
	top: 2px;
}

.btn-3 {
	border: 2px solid #2d2d2d;
	z-index: 1;
	color: #2d2d2d;
}

.btn-3:after {
	position: absolute;
	content: "";
	width: 0;
	height: 100%;
	top: 0;
	right: 0;
	z-index: -1;
	background: #2d2d2d;
	transition: all 0.3s ease;
}

.btn-3:hover {
	color: white;
}

.btn-3:hover:after {
	left: 0;
	width: 100%;
}

.btn-3:active {
	top: 2px;
}

/* Formulaire */
label {
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
	font-size: .9rem;
	color: white;
}

.invalid-feedback {
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
}

input[type="text"], input[type="email"], textarea {
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
	font-size: .9rem !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	border-bottom: 1px solid white !important;
	outline: 0 !important;
	padding: 0 !important;
	color: white !important;
}

.form-control:focus {
	box-shadow: none !important;
}

/* Font Awesome */
.fab {
	color: #d62828;
}

/* Tools */

#cog {
	position: fixed;
	bottom: 30px;
	right: 30px;
	height: 60px;
	width: 60px;
	border-radius: 50%;
	background-color: #d62828;
	z-index: 1;
	cursor: pointer;
}

.fa-spin-hover:hover {
	-webkit-animation: fa-spin 2s infinite linear;
	-moz-animation: fa-spin 2s infinite linear;
	-o-animation: fa-spin 2s infinite linear;
	animation: fa-spin 2s infinite linear;
}

#lang {
	position: fixed;
	bottom: 100px;
	right: 30px;
	height: 60px;
	width: 60px;
	border-radius: 50%;
	background-color: #212121;
	z-index: 1;
	cursor: pointer;
	visibility: hidden;
}