/*FONTS*/

@font-face {
	font-family: 'GreycliffCF Regular';
	font-style: normal;
	font-weight: normal;
	src: local('GreycliffCF Regular'), url('../fonts/GreycliffCF-Regular.woff') format('woff');
}
@font-face {
	font-family: 'GreycliffCF Medium';
	font-style: normal;
	font-weight: 600;
	src: local('GreycliffCF Medium'), url('../fonts/GreycliffCF-Medium.woff') format('woff');
}
@font-face {
	font-family: 'GreycliffCF Bold';
	font-style: normal;
	font-weight: bold;
	src: local('GreycliffCF Bold'), url('../fonts/GreycliffCF-Bold.woff') format('woff');
}

/*GENERAL*/
*,
a {
	text-decoration: none;
}
h1,
h2,
h3 {
	font-family: 'GreycliffCF Bold', sans-serif;
}
h1 {
	font-size: 49px;
}
h2 {
	font-size: 43px;
	margin: 0;
}
h3 {
	font-size: 30px;
	margin: 0;
}
p {
	font-size: 16px;
}

body {
	position: relative;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	height: 100%;
}
body.open {
	overflow-y: hidden;
}
section {
	padding: 20px;
}
img {
	max-width: 100%;
}
.section {
	overflow: hidden;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	align-items: center;
	max-width: 1400px;
	margin: auto;
}
.column {
	flex-direction: column;
}
.left,
.right {
	width: 50%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

@media all and (max-width: 991px) {
	h1 {
		font-size: 36px;
	}
	h2 {
		font-size: 30px;
	}
	h3 {
		font-size: 24px;
	}
	.left,
	.right {
		width: 100%;
	}
}
/*CTA*/
.btn {
	transition-duration: 0.15s;
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	font-size: 16px;
	border-radius: 0.25rem;
	width: fit-content;
	cursor: pointer;
	padding: 10px 24px;
	font-weight: 600;
}
.btn-devis {
	background-color: #e7b25c;
	text-transform: uppercase;
	color: black;
	gap: 10px;
	align-items: center;
}
.btn-devis:hover {
	background-color: #d39e48;
	color: black;
}
.btn-rdv {
	text-transform: uppercase;
	border-color: #434255;
	border: 2px solid;
	color: #434255;
}
.btn-rdv:hover {
	background-color: #434255;
	color: white;
}
.btn-tel {
	background-color: #0072ba;
	color: white;
	font-weight: 600;
	gap: 10px;
	align-items: center;
}
.btn-tel:hover {
	background-color: #00549c;
}
.btn-tel svg {
	color: white;
}
.btn-submit{
	color: #1f1f22;
	background-color: white;
	font-weight: 600;
	gap: 10px;
	align-items: center;
	border: none;
}
.btn-submit:hover{
	background-color: #434255;
	color: white;
}

/*NAV*/
header {
	width: 100%;
	display: flex;
	background-color: white;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
	display: flex;
	align-items: center;
	padding: 25px 0;
	z-index: 99;
	justify-content: space-around;
}
.navbar {
	top: 0;
	position: fixed;
	width: 100%;
	transition: all 2s ease-in-out;
}
.navbar.expand {
	height: 20px;
}
.expand .logo.desktop svg {
	max-width: 60%;
}
.logo {
	color: #0072ba;
}
.logo svg {
	max-width: 100%;
}
.nav_desktop {
	display: flex;
	justify-content: end;
	align-items: center;
}
nav a {
	font-size: 16px;
	color: #434255;
	font-weight: 600;
}
nav a:hover {
	color: #0072ba;
}
/*	color: rgb(214, 169, 0); */
.nav_desktop ul {
	display: flex;
	gap: 20px;
	list-style: none;
	align-items: center;
}
/**/
/*MOBILE*/
label.menu_mobile {
	display: none;
}
.nav_mobile {
	display: none;
}
.nav_mobile .logo {
	display: flex;
	margin: 25px 0;
	width: 100%;
	justify-content: space-around;
	align-items: center;
}
.nav_mobile .logo svg {
	max-width: 50%;
}
@media all and (max-width: 991px) {
	.close {
		cursor: pointer;
	}
	.nav_desktop {
		display: none;
	}
	.nav_mobile ul {
		list-style: none;
		display: flex;
		gap: 40px;
		flex-direction: column;
	}
	.nav_mobile {
		display: flex;
		width: 100%;
		height: 100%;
		background-color: white;
		z-index: 9;
		position: absolute;
		top: 0;
		left: -120%;
		flex-direction: column;
		height: 100vh;
		transition: all ease-in-out 1s;
	}
	header .logo {
		width: 152px;
	}
	nav {
		height: 60px;
	}
	nav .main_pages {
		display: none;
	}
	.menu_mobile {
		display: flex;
	}
	label.menu_mobile {
		width: 30px;
		margin-left: 25px;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 40px;
		color: #434255;
		cursor: pointer;
	}
	header {
		justify-content: start;
		padding: 25px 0;
		gap: 20px;
	}
}
.rs {
	color: white;
	display: flex;
	align-items: baseline;
	gap: 20px;
	padding: 20px 0;
	justify-content: center;
}
.rs svg {
	color: white;
}

/*PREMIER*/
.premiere {
	background: aliceblue;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 150px 0 100px 0;
}
.premiere span {
	color: #0072ba;
}
.premiere .cta {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-top: 70px;
}
.premiere h1,
.premiere h2 {
	padding: 0 20px;
}
@media all and (max-width: 991px) {
	.premiere h1,
	.premiere h2 {
		text-align: center;
	}
}

/*PRODUCT*/

#produits_services {
	background-color: #f6efec;
	padding-bottom: 200px;
}
.product-title {
	max-width: 1500px;
	margin: 20px auto 30px auto;
	flex-direction: column;
	gap: 30px;
	display: flex;
}
.product-list {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 20px;
}

.product-item {
	color: black;
	position: relative;
	display: flex;
	background-color: #ffffff;
	border-radius: 10px;
	align-items: center;
	width: -webkit-fill-available;
	height: 100%;
	padding: 0 20px 0 0;
}
.product-item:hover {
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	cursor: pointer;
}
.product-item .btn-box {
	position: absolute;
	top: 0;
	right: 0;
	color: white;
	padding: 10px;
	background-color: #0072ba;
	display: none;
	border-bottom-left-radius: 10px !important;
	border-top-right-radius: 10px !important;
	border-radius: 0;
}
.product-item:hover .btn-box {
	display: block;
}

.second .details {
	margin-left: 20px;
}
.product-item .img {
	width: 250px;
}
.col-6 {
	display: flex;
	width: 1500px;
	gap: 20px;
}
@media all and (min-width: 1201px) {
.product-item .portails{
	width: 180px;
}
}
@media all and (max-width: 665px) {
.product-item {
		flex-wrap: wrap;
	}
}
@media all and (max-width: 991px) {
	.col-6 {
		flex-wrap: wrap;
		justify-content: center;
	}
	.product-item {
		height: auto;
		justify-content: center;
		padding: 0 20px 0 20px;
		width: 80vw;
	}
	.product-item .img {
		width: 175px;
	}
	.product-item .btn-box {
		display: block;
	}
	#produits_services {
		padding-bottom: 230px;
	}
}
@media (min-width:991px) and (max-width:1200px){
	.product-item{
		justify-content: center;
		flex-wrap: wrap;
		padding: 0 20px;
	}
}

/*BLEU BOX*/
.box-bleu {
	display: flex;
	max-width: 1500px;
	margin: auto;
	background: #0072ba;
	padding: 50px;
	border-radius: 10px;
	color: white;
	position: relative;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	top: -100px;
	width: 85%;
}
@media all and (max-width: 991px) {
	.box-bleu {
		padding: 50px 10px;
		width: 85%;
	}
}
.box-bleu h3 {
	margin: 0;
}
.box-bleu img {
	height: fit-content;
	max-width: 65px;
}
.box-bleu .value {
	display: flex;
	align-items: center;
	gap: 20px;
}
@media all and (max-width: 991px) {
	.box-bleu {
		flex-wrap: wrap;
		gap: 20px;
		top: -130px;
	}
	.quote{
		margin: auto;
	}
}
/*POURQUOI NOUS CHOISIR*/
.quote {
	background-color: aliceblue;
	border-radius: 10px;
	padding: 20px;
	width: 70%;
	color: #1f1f22;
	font-size: 20px;
	display: flex;
	flex-direction: column;
	position: relative;
}
.quote svg {
	position: absolute;
	top: -30px;
	left: -15px;
}
/*AVIS*/
.avis {
	background-color: #f6efec;
	display: flex;
	justify-content: center;
	padding: 40px 0;
	text-align: center;
}
.avis video {
	margin: auto;
	width: 100%;
}
@media all and (max-width: 991px) {
}
/*CARROUSEL*/
.rate {
	color: #d39e48;
}
.marquee-wrapper {
	margin-top: 60px;
	position: relative;
	display: flex;
	overflow: hidden;
	gap: 1rem;
	justify-content: center;
	border-radius: 1rem;
}
.marquee-wrapper .marquee-content {
	position: relative;
	display: flex;
	align-items: center;
	flex-shrink: 0;
	gap: 1rem;
	cursor: grab;
}
.marquee-wrapper .marquee-content .card-testimonial {
	/* max-width: 330px; */
	background-color: #ffffff;
	padding: 10px;
	border-radius: 10px;
	color: #434255;
}
.marquee-wrapper .marquee-content .card-testimonial article picture {
	position: relative;
	min-width: 200px;
}
.marquee-wrapper .marquee-content .card-testimonial article picture img {
	width: 100%;
	border-radius: 0.5rem;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: 50% 15%;
	object-position: 50% 15%;
}
.marquee-wrapper .marquee-content .card-testimonial article h4 {
	font-size: 20px;
	text-transform: capitalize;
	margin-block: 1rem;
}
.marquee-wrapper .marquee-content .card-testimonial article article.short-description p {
	font-size: 14px;
	font-weight: 300;
	line-height: 20px;
	margin-bottom: 1.2rem;
}
.vjs-big-play-button {
	top: 46% !important;
    left: 36% !important;
}

.rectangulaire .vjs-big-play-button {
    top: 50% !important;
    left: 45% !important;
}
.video-js {
	margin: auto;
}
.rectangulaire .video-js{
	height:480px;
	width: 650px;
}
@media all and (max-width: 991px) {
	.marquee-wrapper {
		justify-content: flex-start;
		overflow: auto;
		margin-top: 10px;
	}
	.rectangulaire .video-js{
		width:350px!important;
	}
}
/*FOOTER*/
.footer {
	background-color: #434255;
	color: white;
	display: flex;
	padding-bottom: 20px;
	width: 100%;
}
.subfooter {
	padding-left: 40px;
	padding-top: 20px;
	display: flex;
	justify-content: space-around;
	align-items: baseline;
	width: 100%;
	flex-wrap: wrap;
}
.footer a {
	color: white;
}
@media all and (max-width: 991px) {
	.subfooter {
		gap: 20px;
		justify-content: flex-start;
	}
}

/*COPYRIGHT*/
.copyright {
	color: white;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	background-color: #1f1f22;
}
.copyright a {
	color: white;
	text-decoration: solid !important;
}
/*COOKIE*/
.button-group{
	display: flex;
    justify-content: center
}
@media (min-width:650px){
	body #tarteaucitronRoot div#tarteaucitronAlertBig{
    width: 100%!important;

}

}
#tarteaucitronRoot #tarteaucitronAlertBig{
	bottom: -30px;
	padding-bottom: 35px !important;
	box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
}
#tarteaucitronAlertBig #tarteaucitronDisclaimerAlert{
	width: 90%;
    display: block;
    margin: auto;
    padding: 20px;
    text-align: center
}
/*CONTACT*/

.section-contact{
	background-color: #f6efec;
}
.section-contact h2{
	padding: 30px 0;
	color: white;
	text-align: center;
}
.contact-content {
	margin-top: 50px!important;
	background-color: #0072ba;
	border-radius: 10px;
    width: 60%;
    margin: auto;
	color: rgb(0, 0, 0);
    padding-bottom: 20px;
}

fieldset{
	border:none!important;
}
.contact-content input, .contact-content textarea{
	padding: 10px;
    border-radius: 5px;
    border: none;
    color: rgb(0, 0, 0);
	font-family: 'GreycliffCF regular', sans-serif;
    width: 60%;    
	margin-bottom: .9rem;
}
.contact-content input:focus,
.contact-content textarea:focus,
.contact-content select:focus {
    color: rgb(0, 0, 0);
    border-bottom: 1px solid #34853f;
}
.contact-content input.error,
.contact-content textarea.error,
.contact-content select.error {
    color: #a30000;
    border-bottom: 1px solid #a30000;
}
.error{
	color: #ffffff;    
	border-bottom: 1px solid #a30000;
}
.contact-content button,
.contact-content .btn {
    margin-bottom: 0.6rem;
}
.contact-content input::-webkit-input-placeholder,
.contact-content select::-webkit-input-placeholder,
.contact-content textarea::-webkit-input-placeholder {
    color: #4f4f4f;
}

.contact-content input:-moz-placeholder,
.contact-content select:-moz-placeholder,
.contact-content textarea:-moz-placeholder {
    color: #4f4f4f;    /* Firefox 18- */
}

.contact-content input::-moz-placeholder,
.contact-content select::-moz-placeholder,
.contact-content textarea::-moz-placeholder {
    color: #4f4f4f;    /* Firefox 19+ */
}

.contact-content input:-ms-input-placeholder,
.contact-content select:-ms-input-placeholder,
.contact-content textarea:-ms-input-placeholder {
    color: #4f4f4f;
}

.contact-content input.placeholder,
.contact-content select.placeholder,
.contact-content textarea.placeholder {
    color: #4f4f4f !important;
}
.form-field{
	display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}
.contact-primary, .contact-secondary {
    float: left;
    padding: 0 5rem;
}

.contact-primary {
    width: 65%;
}

.contact-primary #contactForm {
    margin-top: -1.5rem;
}

.contact-secondary {
    width: 35%;
}

.contact-secondary::before {
    content: "";
    display: block;
    width: 35%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #121212;
}

.contact-secondary .contact-info {
    position: relative;
}

.contact-secondary .cinfo {
    margin-bottom: 4.8rem;
}

.contact-social {
    list-style: none;
    display: inline-block;
    margin: 0;
    font-size: 2rem;
}

.contact-social li {
    margin-right: 15px;
    padding-left: 0;
    display: inline-block;
}

.contact-social li a {
    color: white;
}

.contact-social li a:hover, 
.contact-social li a:focus {
    color: #34853f;
}

.contact-social li:last-child {
    margin: 0;
}

.message-warning, 
.message-success {
    display: none;
    font-size: 20px;
    text-align: center;
    /* padding: 3rem; */
    padding-bottom: 1.6rem;
    width: fit-content;
	margin: auto;
}

.message-warning {
    color: #ffffff;
	padding: 10px;
	border-radius: 5px;
	background-color: #a30000;
}

.message-success {
	color: #ffffff;
	padding: 10px;
	border-radius: 5px;
	background-color: #34853f;
}

.message-warning i, .message-success i {
    margin-right: 10px;
    font-size: 1.2rem;
}

@media all and (max-width: 991px) {
	.contact-content{
		width: 90%;
		margin-top: 0;
	}
	.avis{
		padding-bottom: 0;
	}
	.contact-content input, .contact-content textarea{
		width: 100%;
	}
}
.confirm .error{
	order: 1;
}
@media (min-width:568px) {
	

.parallax {
	background-image: url("/assets/images/rencontre-jpg.jpeg");
	min-height: 500px;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
  }
}