/* CSS Document */

/* Barre de Recherche */
.QPsearchBox {
	position: absolute !important;
	top: 2% !important;
	left: 76% !important; 
	transform: translate(-50%, 50%) !important;
	background: #f7c88b !important;
	height: 40px !important;
	border-radius: 40px !important;
	/*padding: 10px !important;*/
}
.QPsearchBox:hover>.QPsearchInput {
	width: 75% !important;
	padding: 0 6px !important;
}
.QPsearchBox:hover>.QPsearchButton {
	background: white !important;
	color: #D28403 !important;
}
.QPsearchButton {
	color: white !important;
	float: right !important;
	width: 40px !important;
	height: 40px !important;
	border-radius: 50% !important;
	border: inset !important;
	background: #f7c88b !important;
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	transition: 0.4s !important;
}
.QPsearchInput {
	border: none !important;
	box-shadow: none !important;
	background: none !important;
	outline: none !important;
	float: left !important;
	padding: 0 !important;
	color: white !important;
	font-size: 16px !important;
	transition: 0.4s !important;
	line-height: 40px !important;
	width: 0px !important;
}
@media screen and (max-width: 100%) {
	.QPsearchBox:hover>.QPsearchInput {
		width: 150px !important;
		padding: 0 6px !important;
	}
}

/* blockquote */
.quote-wrapper {
	display: flex;
	/*height: 100vh;*/
	padding: 0 20px;
}
.blockquote {
	position: relative;
	font-family: 'Barlow Condensed', sans-serif;
	max-width: 960px;
	margin: 80px auto;
	align-self: center;
}
.blockquote h3 {
	font-family: 'Abril Fatface', cursive;
	position: relative;
	color: #f7c88b;
	font-size: 2.8rem;
	font-weight: normal;
	line-height: 1;
	margin: 0;
	border: 2px solid #fff;
	border: solid 2px;
	border-radius: 20px;
	padding: 25px;
}
.blockquote h3 span{
	color: #ffffff;
}
.blockquote h3:after {
	content: "";
	position: absolute;
	border: 2px solid #f7c88b;
	border-radius: 0 50px 0 0;
	width: 60px;
	height: 60px;
	bottom: -60px;
	left: 50px;
	border-bottom: none;
	border-left: none;
	z-index: 3;
}
.blockquote h3:before {
	content: "";
	position: absolute;
	width: 80px;
	border: 1px solid #ee7d13;
	bottom: -2px;
	left: 50px;
	z-index: 2;
}
@media all and (min-width: 600px) {
	.blockquote h3 {
		font-size: 3rem;
		line-height: 1.2;
	}
}
.blockquote h4 {
	position: relative;
	color: #ffffff;
	font-size: 1.3rem;
	font-weight: 400;
	line-height: 1.2;
	margin: 0;
	padding-top: 15px;
	z-index: 1;
	margin-left: 150px;
	padding-left: 12px;
}

.blockquote h4:first-letter {
	margin-left: -12px;
}
