/* To disable blank at the to of the page */

* {
	margin: 0;
	padding: 0;
	font-family: "Raleway", sans-serif;
}

/*********************************************************************************/

/* Section generator style + generator animation */

section:nth-child(even) {
	overflow-x: hidden;
}

section:nth-child(odd) .div_anim {
	opacity: 0;
	left: 10%;
	transition-duration: 0.5s;
}

section:nth-child(even) .div_anim {
	opacity: 0;
	left: -10%;
	transition-duration: 0.5s;
}

.ne-transition {
	left: 0px !important;
	top: 0px !important;
	opacity: 1 !important;
}

div[name="ne-moving_element"] {
	position: relative;
}

section:not(#main) {
	padding-top: 10px;
	padding-bottom: 40px;
}

section .div_container h2 {
	font-size: 24px;
}

section .div_container h3 {
	font-size: 18px;
}

section .div_container .fahov {
	transition: 0.5s;
}

section .div_container .fahov:hover {
	font-size: 90px !important;
}

/*********************************************************************************/

/* To create a footer at the footer of the page whatever the size */

body {
	position: relative;
	min-height: 100vh;
	overflow-x: hidden;
}

main {
	padding-bottom: 3.5rem;
	overflow-x: hidden;
}

.footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding-top: 1.0rem;
	padding-bottom: 1.0rem;
	margin: 0 auto;
	display: block;
	text-align: center;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

/*********************************************************************************/

/* Top nav bar */

header {
	overflow: hidden;
	position: sticky;
	top: 0;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

header ul {
	list-style-type: none;
}

header a {
	float: left;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
	transition: 0.5s;
}

header ul.at_right a {
	float: right;
}

/*********************************************************************************/

/* Animations Opacity HTML*/

html {
	animation: opac 1s;
}

@keyframes opac {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

/*********************************************************************************/

/* Title Animations */

.logo_leaf {
	position: relative;
	animation: hey_bottom 1s;
	border-radius: 100%;
	width: 100px;
}

.main_dot_title {
	font-weight: 100;
	font-size: 18px;
}

.main_title {
	position: relative;
	animation: hey_top 1s;
}

.main_sub_title {
	line-height: 0.5;
	font-weight: 400;
	font-size: 18px;
	position: relative;
	animation: hey_top 1s;
	margin-bottom: 30px;
}

@keyframes hey_top {
	from {
		top: +25px;
		opacity: 0;
	}

	to {
		opacity: 1;
		top: 0px;
	}
}

@keyframes hey_bottom {
	from {
		top: -25px;
		opacity: 0;
	}

	to {
		opacity: 1;
		top: 0px;
	}
}


/*********************************************************************************/

/* Main mannager */

html {
	user-select: none;
	line-height: 1.8;
	height: 100%;
	scroll-behavior: smooth;
	line-height: 1.8;
}

main {
	padding-top: 2%;
	text-align: center;
	overflow-x: clip;
}

h2, h3, h4 {
	font-weight: 400;
}

h3 {
	padding-top: 14px;
	padding-bottom: 24px;
}

a {
	text-decoration: none;
}

/*********************************************************************************/

/* Row repsonsive */

.row-resp:after, .row-resp:before {
	content: "";
	display: table;
	clear: both;
}

.row-resp {
	text-align: center;
	display: block;
	width: 100%
}

.row-element {
	padding-bottom: 24px;
	float: left;
	box-sizing: inherit;
	text-align: center;
}

.row-element h3 {
	font-size: 18px;
	padding-bottom: 0 !important;
	margin-left: 15px;
	margin-right: 15px;
}

.row-element p {
	font-size: 15px;
}

/*********************************************************************************/

/* Device screen width responsive */

/*Hide for ... large, medium, small*/
@media (min-width:993px) {
	.hide-large {
		display: none;
	}

	.row-element {
		width: 25%;
	}

	.image-resp {
		width: 60%;
	}

	.boots-inpt-text {
		width: 25%;
	}

	.resp_text {
		padding-left: 20%;
		padding-right: 20%;
	}

	.btn_card {
		width: 60%;
	}
}

@media (max-width:992px) and (min-width:691px) {
	.hide-medium {
		display: none;
	}

	.row-element {
		width: 25%;
	}

	.image-resp {
		width: 60%;
	}

	.boots-inpt-text {
		width: 50%;
	}

	.resp_text {
		padding-left: 10%;
		padding-right: 10%;
	}

	.btn_card {
		width: 70%;
	}
}

@media (max-width: 690px) {
	.hide-small {
		display: none;
	}

	.row-element {
		width: 100%;
	}

	.image-resp {
		width: 100%;
	}

	.boots-inpt-text {
		width: 91%;
	}

	.logo_title {}

	.btn_card {
		width: 90%;
	}

	.text_left_border {
		margin: 0 !important;
	}
}

/*********************************************************************************/

/* Modal Gestion*/

.modal {
	display: none;
	opacity: 0;
	position: fixed;
	z-index: 25;
	padding-top: 100px;
	padding-bottom: 100px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
}

.modal:target {
	display: block;
	animation: modal_open 0.5s both;
}

@keyframes modal_open {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}


.modal-content {
	margin: auto;
	padding: 20px;
	width: 80%;
	padding: 0;
	border-radius: 8px;
	margin-bottom: 20%;
}

.modal-content-content {
	margin: 30px;
}

.close {
	font-weight: bold;
	height: 30px;
	width: 30px;
	cursor: pointer;
	border-radius: 2px;
	float: right;
}

/*********************************************************************************/

/* Bijoux image banner */

.banner_bijoux {
	width: 75%;
	border-radius: 6px;
}

.banner_bijoux.bottom {
	filter: drop-shadow(10px 10px 10px #000);
}

.banner_bijoux.top {
	position: absolute;
	left: 12.5%;
}

#ne-change_image {
	position: relative;
}

#ne-change_image img {
	-webkit-transition: opacity 1s ease-in-out;
	-moz-transition: opacity 1s ease-in-out;
	-o-transition: opacity 1s ease-in-out;
	transition: opacity 1s ease-in-out;
}

#ne-change_image img.top:hover {
	opacity: 0;
}

/*********************************************************************************/

/* Modal mail */

.form-online {
	margin-top: 10px;
}

.boots-inpt-text {
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	background-clip: padding-box;
	border-radius: .25rem;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.boots-inpt-btn {
	margin-top: 10px;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid transparent;
	border-top-color: transparent;
	border-right-color: transparent;
	border-bottom-color: transparent;
	border-left-color: transparent;
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: .25rem;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

/*********************************************************************************/

/* Progress bar JS! and CSS */

.mobile {
	z-index: 1;
}

header {
	z-index: 1;
}

.progress-container {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 3px;
	background: #ccc;
}

.progress-bar {
	height: 3px;
	width: 0%;
}

.content {
	padding: 100px 0;
	margin: 50px auto 0 auto;
	width: 80%;
}

/*********************************************************************************/

/* CV Section */

div.main_img {
	margin: 0 auto;
	display: block;
	margin-top: 1%;
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 rgba(0, 0, 0, 0.19);
	border-radius: 10px;
	overflow: hidden;
	padding-bottom: 24px;
}

div.main_img img {
	height: auto;
	width: 100%;
	transition: 0.5s;
	image-orientation: from-image;
}

div.main_img img:hover {
	opacity: 0.5;
}

div.text_card {
	padding: 2%;
}

div.main_img h3 {
	font-weight: 400;
	font-size: 20px;
}

div.text_card h4 {
	font-weight: 400;
	font-size: 18px;
	margin-bottom: 4%;
}

div.text_card p {
	font-size: 15px;
	line-height: 1.4;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
}

.btn_card {
	transition: 0.5s;
	display: block;
	margin: 0 auto;
	text-align: center;
	cursor: pointer;
	font: inherit;
	border: none;
	font-size: 15px;
	margin-top: 4%;
	transition: 0.3s;
	border-radius: 20px;
	height: 30px;
}


.btn_card .fa {
	font-size: 15px !important;
}

/*********************************************************************************/

/* Logo from font awsome */

.big {
	font-size: 64px !important;
	color: #31ad38;
}

.fa-trophy {
	color: #d2be0e;
}

.fa-snapchat-ghost {
	color: #d2be0e;
}


.fa-envelope {
	color: #31ad38;
}

.small {
	margin-right: 6px !important;
}

.white {
	color: white;
}

/*********************************************************************************/

/* Menu modal phone */

.menu-modal {
	display: none;
	position: fixed;
	z-index: 25;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);
	transition: 0.5s;
}

.menu-modal-content {
	position: absolute;
	right: 0;
	height: 100%;
	width: 40%;
	padding: 0;
	background-color: #fefefe;
}

.menu-modal:target {
	display: block;
}

.menu-modal:target .menu-modal-content {
	animation: hey_right 0.5s both;
}

@keyframes hey_right {
	from {
		right: -50px;
		opacity: 0;
	}

	to {
		opacity: 1;
		right: 0px;
	}
}

.modal:target {
	display: block;
}

.modal-content {
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	padding: 0;
	border-radius: 8px;
	margin-bottom: 20%;
}

.modal-content-content {
	margin: 30px;
}

/*********************************************************************************/

/* Contact btn */

.contact_btn {
	border-radius: 10px;
	padding: 20px;
	cursor: pointer;
	font-size: 15px;
	border: none;
	transition: 0.4s;
}


.contact_btn:hover {
	transform: scale(0.9);
}

.empty_btn {
	border-radius: 10px;
	padding: 20px;
	cursor: pointer;
	font-size: 15px;
	border: none;
	transition: 0.4s;
}

.empty_btn:hover {
	transform: scale(0.9);
}

/*********************************************************************************/

.bg-resto {
	overflow: hidden;
	width: 100%;
	background-image: url(resto.png);
	background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	margin-bottom: 30px;
}

.bg-resto2 {
	overflow: hidden;
	width: 100%;
	background-image: url(resto2.png);
	background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	margin-bottom: 30px;
}

.image_menu {
	max-width: 150px;
	border-radius: 10px;
}

.hscale {
	transition: 0.3s;
}

.hscale p {
	padding-left: 10px;
	padding-right: 10px;
}

.hscale:hover {
	transform: scale(1.1);
	cursor: pointer;
	/* cursor: url(fuck.cur), pointer; */
}

.mrtel {
	margin-left: 10px;
}

/* Boder and text */

.text_left {
	text-align: left;
	padding-left: 10px;
	padding-right: 10px;
}

.text_left_max {
	text-align: left;
	padding-left: 40px;
	padding-right: 20px;
}

.text_left_border {
	margin-left: 10px;
}

.text_left_border p {
	padding-left: 10px;
	padding-right: 10px;
}

/*********************************************************************************/

.ne-scale.ne-transition {
	animation: ne_zoomIn 0.5s;
	opacity: 1 !important;
}

.ne-scale {
	opacity: 0 !important;
}

@keyframes ne_zoomIn {
	0% {
		opacity: 0;
		transform: scale(0.3);
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.map_image {
	max-width: 90%;
	margin-top: 10px;
}

.list .name {
	float: left;
}

.list .price {
	float: right;
}

.list {
	display: inline-block;
	width: 100%;
}

.ne_take {
	transition: 3s;
}

@keyframes ne_take {
	0% {
		opacity: 0;
	}

	50% {}

	100% {
		opacity: 1;
	}
}

.bg-par-c {
	overflow: hidden;
	position: relative;
	width: 100%;
	background-image: url(../img/back_goutte.png);
	background-attachment: fixed;
	background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;

	display: table-cell !important;
	vertical-align: middle !important;
}

.citation {
	text-align: center !important;
	font-weight: 500;
	line-height: 1.2;
	text-shadow: 0px 0 0.2em #000;
	color: #fff !important;
	font-family: "Raleway", sans-serif;
	font-size: 2.5rem;
	padding-left: 15px;
	padding-right: 15px;
}

.sub_titlte {
	font-size: 1.5rem;
	font-weight: 250;
}

@media (min-width:993px) {
	.hide-large {
		display: none;
	}

	.width-resp_card {
		width: 40%;
	}

	.row-element {
		width: 25%;
	}

	.image-resp {
		width: 60%;
	}

	.boots-inpt-text {
		width: 25%;
	}

	.resp_text {
		padding-left: 20%;
		padding-right: 20%;
	}

	.resp_text_max {
		padding-left: 30%;
		padding-right: 30%;
	}

	.bg-par-c {
		height: 30vh;
	}

	.bg-part {
		height: 30vh;
	}

	.ne-50-70-100 {
		width: 50%;
	}

	.div_stage-resp {
		display: flex;
	}

	.time_ter {
		width: 50%;
	}
}

@media (max-width:992px) and (min-width:691px) {
	.hide-medium {
		display: none;
	}

	.width-resp_card {
		width: 45%;
	}

	.row-element {
		width: 25%;
	}

	.image-resp {
		width: 60%;
	}

	.boots-inpt-text {
		width: 50%;
	}

	.resp_text {
		padding-left: 10%;
		padding-right: 10%;
	}

	.resp_text_max {
		padding-left: 10%;
		padding-right: 10%;
	}

	.bg-par-c {
		height: 30vh;
	}

	.bg-part {
		height: 30vh;
	}

	.ne-50-70-100 {
		width: 70%;
	}

	.div_stage-resp {
		display: flex;
	}

	.time_ter {
		width: 70%;
	}
}

@media (max-width: 690px) {
	.hide-small {
		display: none;
	}

	.width-resp_card {
		width: 90%;
	}

	.row-element {
		width: 100%;
	}

	.image-resp {
		width: 100%;
	}

	.boots-inpt-text {
		width: 91%;
	}

	.bg-par-c {
		height: 100vh;
	}

	.ne-50-70-100 {
		width: 100%;
	}

	.div_stage-resp {
		display: block;
	}

	.padding_resp {
		padding-left: 15px;
		padding-right: 15px;
	}

	.bg-part {
		height: 100vh;
	}

	.time_ter {
		width: 90%;
	}
}

.temp_title {
	color: #2980b9 !important;
	font-family: 'Dancing Script', cursive !important;
	font-weight: 800;
	font-size: 31px;
}

.person_img {
	max-width: 200px;
	border-radius: 100%;
}

.case_h3 {
	text-align: center;
	vertical-align: middle;
	line-height: 25vh;
	font-family: 'Archivo Black', sans-serif;
	opacity: 0.75;
	overflow-wrap: break-word;
}

.mt-2, .my-2 {
	margin-top: .5rem !important;
}

h3 {
	margin-bottom: .5rem;
	font-weight: 500;
	line-height: 1.2;
}

.row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}

.col-6 {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}

.mb-3 {
	margin-bottom: 1.5rem !important;
}

.mtb-20 {
	margin-bottom: 20px !important;
	margin-top: 20px !important;
}

main {
	text-align: center;
}

div.main_img {
	margin: 4% auto;
	display: block;
	margin-top: 1%;
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 rgba(0, 0, 0, 0.19);
	border-radius: 10px;
	overflow: hidden;
}

.case_h3 {
	text-align: center;
	vertical-align: middle;
	line-height: 23vh;
	font-family: "Raleway", sans-serif;
	opacity: 0.75;
	overflow-wrap: break-word;
	font-weight: 500;
	font-size: 1.75rem;
}

.select-hypn {
	transition: 0.25s;
}

.select-hypn:hover {
	transform: scale(0.9);
}

.bg-part {
	overflow: hidden;
	position: relative;
	width: 100%;
	background-attachment: fixed;
	background-size: cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	display: table-cell !important;
	vertical-align: middle !important;
}

.image_prnt {
	max-width: 90%;
	border-radius: 30px;
	margin: 20px 0px 20px 0px;
}

.time_ter {
	/*border: 2px solid #2980b9;*/
	margin: auto;
	margin-top: 30px;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
	border-radius: 15px;
	color: #484848;
	padding-bottom: 20px;
	padding-top: 10px;
}

.line {
	width: 50%;
	margin: auto;
	margin-top: 20px;
	margin-bottom: 10px;
	height: 1px;
	border: none;
	border-top: 1px solid #484848;
}

.bold {
	font-weight: bold;
}

.pricing span {
	font-size: 70px;
}

.italic {
	font-style: italic;
	width: 55%;
	margin: auto;
}

.pricing_card {
	width: fit-content !important;
	max-width: 90%;
}