
body.menu-active {
	overflow: hidden;
}

body {
	margin-bottom: 0 !important;
	background: #f8f6f6;
	-webkit-font-smoothing: antialiased;
	color: #101023;
	scroll-behavior: smooth;
	overflow-x: hidden;
}

.site {
	overflow-x: hidden;
}

:focus {
	outline: none !important;
}

html, body {
	cursor: none !important;
}

button:focus {
	outline: none !important;
}

.cursor {
	z-index: 10000000000000;
	position: fixed;
	border: 1px solid #cfa89b;
	width: 30px;
	height: 30px;
	border-radius: 100%;
	transform: translate(-50%, -50%);
	top: 0px;
	left: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
	-webkit-transition: width .3s ease-in-out, height .3s ease-in-out;
	-moz-transition: width .3s ease-in-out, height .3s ease-in-out;
	-o-transition: width .3s ease-in-out, height .3s ease-in-out;
	-ms-transition: width .3s ease-in-out, height .3s ease-in-out;
	transition: width .3s ease-in-out, height .3s ease-in-out;
}

.c-inside {
	height: 3px;
	width: 3px;
	border-radius: 100%;
	background: #cda89b;
	-webkit-transition: width .3s ease-in-out, height .3s ease-in-out;
	-moz-transition: width .3s ease-in-out, height .3s ease-in-out;
	-o-transition: width .3s ease-in-out, height .3s ease-in-out;
	-ms-transition: width .3s ease-in-out, height .3s ease-in-out;
	transition: width .3s ease-in-out, height .3s ease-in-out;
}

.menu-active .c-inside {
	background: #101023;
}

.menu-active .cursor {
	border: 1px solid #101023;
}

.overlink {
	background-color: #cda89b;
	opacity: .5;
	pointer-events: none;
	width: 75px;
	height: 75px;
	border: 1px solid #cda89b;
}

.overlink .c-inside {
	height: 5px;
	width: 5px;
	opacity: 1;
	background: #101023;
}

.menu-active .overlink {
	background-color: #101023;
	border: 1px solid #101023;
}

.menu-active .overlink .c-inside {
	background: #cda89b;
}

.overtext {
	background-color: rgba(100, 100, 255, .25) !important;
	border: 1px solid rgba(0, 0, 100, .25) !important;
}

/*****TYPOGRAPHY******/
.procedure p {
	color: #f8f6f6;
}

.boxe-testimonial p {
	color: #101023;
}

.post-content h3 {
	font-size: 24px;
	font-family: "Berling";
	text-transform: none;
}

h1 {
	font-family: "fashion fetish heavy";
	font-size: 45px;
	text-transform: uppercase;
	letter-spacing: 1.2px;
}

h1.intro {
	font-family: "fashion fetish Light";
	font-size: 35px;
	text-transform: uppercase;
	letter-spacing: 1.2px;
}

h2 {
	font-size: 48px;
	font-family: "Berling";
	line-height: 58px;
}

.splitting .char {
	-webkit-transition: opacity .3s linear, -webkit-transform .3s cubic-bezier(.3, 0, .3, 1);
	transition: opacity .3s linear, -webkit-transform .3s cubic-bezier(.3, 0, .3, 1);
	transition: transform .3s cubic-bezier(.3, 0, .3, 1), opacity .3s linear;
	transition: transform .3s cubic-bezier(.3, 0, .3, 1), opacity .3s linear, -webkit-transform .3s cubic-bezier(.3, 0, .3, 1);
	-webkit-transition-delay: calc(20ms * var(--char-index));
	transition-delay: calc(20ms * var(--char-index));
}

.splitting[data-scroll="out"] .char {
	opacity: .1;
	-webkit-transform: translateY(.25em);
	transform: translateY(.25em);
}

h3 {
	font-size: 22px;
	font-family: "Berling";
	line-height: 32px;
}

h4 {
	font-family: "gt";
	font-size: 36px;
}

.page-template-blank h4 {
	font-family: "gt";
	font-size: 24px;
	color: #cfa89b;
}

h5 {
	font-family: "gt";
	font-size: 14px;
	line-height: 17px;
	text-transform: uppercase;
	letter-spacing: 1.2px;
}

h5 strong {
	font-family: "gt m";
	font-size: 14px;
	line-height: 17px;
	text-transform: uppercase;
}

p {
	font-family: "gt";
	font-size: 18px;
	line-height: 25px;
}

p.big {
	font-family: "gt";
	font-size: 18px;
	line-height: 25px;
}

.big p {
	font-family: "gt";
	font-size: 18px;
	line-height: 25px;
}

em {
	font-family: "gt";
	font-size: 17px;
	line-height: 17px;
}

ul {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
	justify-content: center;
	align-items: center;
	font-family: "gt";
	font-size: 18px;
	line-height: 25px;
}

.link {
	font-family: "gt";
	font-size: 14px;
	line-height: 19px;
	text-decoration: none;
	font-style: normal;
	text-transform: uppercase;
}

.n-mobile {
	display: none !important;
}

/*****COLORS*****/
.blue {
	color: #101023;
}

.pink {
	color: #cfa89b;
}

.white {
	color: #f8f6f6 !important;
}

/******** LOADER **********/
@keyframes moveFromLeftFade {
	from {
		transform: translateX(-100%);
	}
}

.logo_loading_class polygon {
	stroke: #cfa89b;
	fill: transparent;
	transition: fill .3s ease-in-out;
}

.logo_loading_class rect {
	-webkit-animation: fillAction 1s ease;
	animation: fillAction 1s ease;
	fill: #cfa89b;
	transition: transform .3s ease-in-out;
}

@-webkit-keyframes fillAction {
	0% {
		-webkit-transform: translateY(100%);
	}
	
	100% {
		-webkit-transform: translateY(0%);
	}
}

.logo_part {
	fill: rgba(214, 167, 152, .23);
}

.loaded #loader #logo_loading>g>rect {
	-webkit-transform: translateY(-1000px, -1000px);
	transform: translateY(-1000px, -1000px);
	opacity: 1 !important;
	transition: all .9s .3s cubic-bezier(.645, .045, .355, 1);
}

#logo_loading {
	margin-left: auto;
	margin-right: auto;
	display: block;
	position: absolute;
	top: 47%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
	z-index: 9999;
	width: 20%;
}

.loader_title {
	margin-left: auto;
	margin-right: auto;
	display: block;
	position: absolute;
	top: 47%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0px;
	right: 0;
	margin: auto;
	text-align: center;
	z-index: 9999;
	font-family: "fashion fetish heavy";
	font-size: 3.5em;
	color: white;
	letter-spacing: 5px;
	opacity: 0;
}

.loader_title span {
	font-family: "fashion fetish light";
	padding-left: 300px;
	color: white;
}

.overlay_image {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	z-index: 999;
	opacity: 0;
}

.overlay_image img {
	width: 50%;
	vertical-align: top;
	display: block;
	margin: auto;
	opacity: .2;
}

.site-brand {
	z-index: 99999 !important;
}

.brand_loading_class {
	fill: none;
	stroke: #f8f6f6;
	stroke-width: .2px;
	opacity: .5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

#loader-wrapper .loader-section {
	position: fixed;
	top: 0;
	width: 33.3333333%;
	height: 100%;
	background: #101023;
	z-index: 10;
	transform-origin: top;
}

#loader-wrapper .loader-section.section-left {
	left: 0;
}

#loader-wrapper .loader-section.section-right {
	right: 0;
}

#loader-wrapper .loader-section.section-middle {
	left: 33.3333333%;
}

.loaded #loader-wrapper {
	display: none;
}

.section-left h1, .section-right h1 {
	color: #cfa89b;
	opacity: 0;
	line-height: 2;
}

.section-left, .section-right {
	display: flex;
	justify-content: center;
	align-items: center;
}

#loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	overflow: hidden;
}

.no-js #loader-wrapper {
	display: none;
}

/******** BUTTONS *******/
input[type="button"], input[type="reset"], input[type="submit"] {
	height: 45px;
	width: 220px;
	border: 1px solid rgba(221, 194, 185, .5) !important;
	text-align: center;
	padding: 0;
	color: #cfa89b !important;
	overflow: hidden;
	display: block;
	background: transparent !important;
	margin: auto;
	margin-top: 50px;
	font-family: "gt m";
	font-size: 16px !important;
	line-height: 18px;
	position: relative;
	z-index: 0;
	text-transform: uppercase;
	transition: all 1.3s cubic-bezier(.44, .9, .2, 1);
}

input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover {
	color: #f8f6f6 !important;
	text-decoration: none !important;
	border: 1px solid #ddc2b9;
	background: #ddc2b9 !important;
}

.btn-link, .phone-pop-link {
	height: 45px;
	max-width: 275px;
	border: 1px solid #cfa89b;
	text-align: center;
	padding: 0;
	color: #cfa89b;
	line-height: 45px;
	overflow: hidden;
	margin: 0 auto;
	display: block;
	background: transparent;
	font-family: "gt m";
	position: relative;
	z-index: 0;
}

.btn-link:hover, .phone-pop-link:hover {
	color: #f8f6f6;
	text-decoration: none !important;
	border: 1px solid #cfa89b;
}

.btn-link:hover:after, .phone-pop-link:hover:after {
	transform: translatey(-45px);
}

a.btn-link:after, a.phone-pop-link:after {
	content: "";
	width: 100%;
	height: 100%;
	background: #cfa89b;
	display: block;
	transform: translatey(0px);
	transition: all 700ms ease;
	position: absolute;
	z-index: -1;
}

.btn-link_blue {
	height: 45px;
	max-width: 275px;
	border: 1px solid #101023;
	text-align: center;
	padding: 0;
	color: #101023;
	line-height: 45px;
	overflow: hidden;
	margin: 0 auto;
	display: block;
	background: transparent;
	font-family: "gt m";
	position: relative;
	z-index: 0;
}

.btn-link_blue:hover {
	color: #f8f6f6;
	text-decoration: none !important;
}

a.btn-link_blue:after {
	content: "";
	width: 100%;
	height: 100%;
	background: #101023;
	display: block;
	transform: translatey(0px);
	transition: all 700ms ease;
	position: absolute;
	z-index: -1;
}

.btn-link_blue:hover:after {
	transform: translatey(-45px);
}

/**********FOOTER***********/
#colophon > div > div > div.col-md-4.order-sm-3.order-3.align-self-center {
	justify-content: flex-end;
	display: flex;
}

#menu-footer {
	text-align: left;
}

.container-footer {
	display: flex;
	max-width: 1600px;
	width: calc(100% - 150px);
	position: relative;
	margin-left: auto;
	margin-right: auto;
}

footer {
	cursor: none;
	background: #101023;
	padding: 50px 25px;
}

footer img {
	cursor: none;
	width: 200px;
}

.social {
	justify-content: right;
}

footer a {
	text-align: left;
	color: #cfa89b !important;
	line-height: 30px !important;
	font-size: 18px;
}

footer p, footer h5 {
	text-align: left;
	color: #cfa89b !important;
}

footer li {
	list-style: none !important;
}

/****** NEWSLETTER *****/
.site-newsletter {
	background-color: #101023;
	border-bottom: 1px solid rgba(207, 169, 154, .3);
	padding: 50px 0;
}

.page-template-traitement .site-newsletter {
	border-top: 1px solid rgba(207, 169, 154, .3);
}

.news-btn {
	width: fit-content;
	margin: auto;
	padding-left: 30px;
}

.news-btn:after {
	content: "+";
	font-family: "Berling";
	display: block;
	display: block;
	align-items: center;
	font-size: 45px;
	position: relative;
	transform: rotate(0deg);
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	top: 0;
	text-align: center;
	float: right;
	margin-left: 20px;
}

.news-btn.close_symbol:after {
	content: "-";
	transform: rotate(180deg) translateY(-5px) !important;
}

input:not([type]):focus:not([readonly]), input[type=text]:not(.browser-default):focus:not([readonly]), input[type=password]:not(.browser-default):focus:not([readonly]), input[type=email]:not(.browser-default):focus:not([readonly]), input[type=url]:not(.browser-default):focus:not([readonly]), input[type=time]:not(.browser-default):focus:not([readonly]), input[type=date]:not(.browser-default):focus:not([readonly]), input[type=datetime]:not(.browser-default):focus:not([readonly]), input[type=datetime-local]:not(.browser-default):focus:not([readonly]), input[type=tel]:not(.browser-default):focus:not([readonly]), input[type=number]:not(.browser-default):focus:not([readonly]), input[type=search]:not(.browser-default):focus:not([readonly]), textarea.materialize-textarea:focus:not([readonly]) {
	border-bottom: 1px solid #cfa89b;
}

label {
	display: block;
	margin-bottom: 0;
	font-size: 22px;
	font-family: "Berling";
	color: #cda89b;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="range"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="time"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="color"]:focus, textarea:focus {
	color: #f8f6f6;
}

label span {
	color: #f8f6f6;
	padding-left: 5px;
}

.wpcf7 label span {
	color: #f8f6f6;
	padding-left: 0;
}

.label.focused {
	font-size: 11px;
	opacity: .5;
	bottom: 0;
}

textarea {
	height: 50px;
}

.site-newsletter-title {
	text-align: center;
}

.info {
	padding-bottom: 50px;
}

.wpcf7-form-control-wrap {
	width: 100%;
}

input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
	color: #f8f6f6;
	border: none;
	width: 100%;
	border-bottom: 1px solid rgba(207, 169, 154, .3);
	background: none;
	font-family: "gt";
	font-size: 18px;
	padding-left: 0;
	padding-top: 15px;
	border-radius: 0;
}

div.wpcf7-mail-sent-ok, div.wpcf7-response-output {
	border: none !important;
}

.wpcf7-response-output {
	color: #cfa89b;
	font-size: 24px;
	font-family: "Berling";
	margin: 0 !important;
	padding: 0 !important;
}

.label br {
	display: none;
}

.wpcf7-not-valid-tip {
	color: #cfa89b !important;
	font-size: 16px !important;
	font-family: "Berling";
	padding-top: 5px;
}

.site-newsletter {
	width: 100%;
}

.newsletter input {
	border: 1px solid #cfa89b;
	background: transparent;
	border-radius: 0;
	padding: 10px;
}

.site-newsletter-inside {
	padding-top: 50px;
	position: absolute;
	height: auto;
	width: 100%;
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50% 0%;
	-ms-transform-origin: 50% 0%;
	transform-origin: 50% 0%;
	-webkit-transition: -webkit-transform .5s cubic-bezier(.165, .84, .44, 1);
	transition: -webkit-transform .5s cubic-bezier(.165, .84, .44, 1);
	transition: transform .5s cubic-bezier(.165, .84, .44, 1);
	transition: transform .5s cubic-bezier(.165, .84, .44, 1), -webkit-transform .5s cubic-bezier(.165, .84, .44, 1);
	transition: transform .5s cubic-bezier(.165, .84, .44, 1), -webkit-transform .5s cubic-bezier(.165, .84, .44, 1);
	-o-transition: transform .5s cubic-bezier(.165, .84, .44, 1);
}

.site-newsletter-inside.news-expend {
	position: relative;
	height: auto;
	width: 100%;
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
	-webkit-transform-origin: 50% 0%;
	-ms-transform-origin: 50% 0%;
	transform-origin: 50% 0%;
	-webkit-transition: -webkit-transform .5s cubic-bezier(.165, .84, .44, 1);
	transition: -webkit-transform .5s cubic-bezier(.165, .84, .44, 1);
	transition: transform .5s cubic-bezier(.165, .84, .44, 1);
	transition: transform .5s cubic-bezier(.165, .84, .44, 1), -webkit-transform .5s cubic-bezier(.165, .84, .44, 1);
	transition: transform .5s cubic-bezier(.165, .84, .44, 1), -webkit-transform .5s cubic-bezier(.165, .84, .44, 1);
	-o-transition: transform .5s cubic-bezier(.165, .84, .44, 1);
}

.submit-b, .info .col-sm, .region .col-sm {
	opacity: 0;
	-webkit-transition: all 0s cubic-bezier(.165, .84, .44, 1) 0s;
	-o-transition: all 0s cubic-bezier(.165, .84, .44, 1) 0s;
	transition: all 0s cubic-bezier(.165, .84, .44, 1) 0s;
	transform: translateY(50px);
}

.news-expend .submit-b, .news-expend .info .col-sm, .news-expend .region .col-sm {
	opacity: 1;
	transform: translateY(0px);
	-webkit-transition: all .5s cubic-bezier(.25, .46, .45, .94) .35s;
	-o-transition: all .5s cubic-bezier(.25, .46, .45, .94) .35s;
	transition: all .5s cubic-bezier(.25, .46, .45, .94) .35s;
}

.news-expend .info .col-sm:nth-child(1) {
	transition-delay: .3s;
}

.news-expend .info .col-sm:nth-child(2) {
	transition-delay: .5s;
}

.news-expend .info .col-sm:nth-child(3) {
	transition-delay: .7s;
}

.news-expend .region .col-sm:nth-child(1) {
	transition-delay: .9s;
}

.news-expend .submit-b {
	transition-delay: 1.1s;
}

.submit-b {
	display: flex;
	justify-content: center;
}

/**********HOME PAGE***********/
.c-mask_background {
	fill: #101023;
	fill-opacity: .45;
}

.page-template-home_page footer, .page-template-Home-EN  footer, .page-template-Home-EN  .site-newsletter {
	display: none;
}

a:hover {
	text-decoration: none !important;
}

.c-homepage-hero__item-inner {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
}

.c-overlay svg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.c-svg_letter {
	font-size: 400px;
	font-family: Circular Std, sans-serif;
	font-weight: 900;
	text-transform: capitalize;
}

.c-overlay {
	height: 100vh;
	position: relative;
}

.loader {
	font-size: 26px;
	color: #f8f6f6;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	opacity: 0;
	visibility: visible;
}

.color-wipes-animate {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	left: 0;
	position: fixed;
	top: 100%;
	width: 100%;
	height: 100vh;
	z-index: 99999;
}

.transition .logo_part {
	fill: white !important;
}

.c-homepage-hero {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	z-index: -2;
}

.c-background {
	width: 100%;
	height: 100%;
	background-size: cover;
	position: relative;
	z-index: -1;
}

.homepage-hero__mask, .homepage-hero__mask-inner {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000;
	transform-origin: left top;
	transform-origin: top;
	opacity: 0;
	visibility: hidden;
	z-index: 99;
	transform: translateZ(0);
}

.homepage-hero__mask-inner {
	background: #252525;
	z-index: 9;
}

.homepage-hero__item-tagline {
	margin: 0;
	color: #cea99b;
	text-transform: uppercase;
	font-family: "fashion fetish regular";
	font-weight: 900;
	font-size: 42px;
	letter-spacing: 20px;
	white-space: nowrap;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	line-height: 60px;
}

.homepage-hero__item-tagline span {
	font-family: "fashion fetish light";
	color: #f8f6f6;
}

.is-index {
	z-index: 3;
}

.hide {
	opacity: 0;
	visibility: hidden;
}

.show {
	opacity: 1 !important;
	visibility: visible !important;
	transform: scale(1) !important;
	-webkit-transform: scale(1, 1) !important;
}

.show-slide {
	transform: translateY(-100px);
	opacity: 1 !important;
}

.show-slide-2 {
	transform: translateY(0px) !important;
	opacity: 1 !important;
}

.c-homepage-hero__item-wrapper {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	display: -ms-flexbox;
	display: flex;
}

.c-title {
	margin: 0;
	z-index: 1;
	text-align: center;
	pointer-events: none;
	position: absolute;
	width: 100%;
}

.text-logo {
	opacity: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -100%);
	margin: 0;
	font-family: "fashion fetish heavy";
	color: #cfa89b;
	font-size: 10vw;
	text-transform: uppercase;
}

.c-title.bigtitle {
	line-height: 1.6;
	background-position: 0;
	background-repeat: no-repeat;
	text-align: center;
	position: absolute;
	-webkit-background-clip: text;
	color: transparent;
	animation-name: image-effect;
	animation-duration: 15s;
	animation-iteration-count: 10;
	animation-direction: alternate;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	top: 45%;
}

.inner-title {
	margin: 0;
	z-index: 1;
	text-align: center;
	pointer-events: none;
	position: absolute;
	left: 50%;
	top: 60%;
	transform: translate(-50%, -50%);
	width: 100%;
	font-size: 64px;
	color: #cfa89b;
	font-family: "Berling";
}

.inner-title .letter {
	display: inline-block;
	line-height: 1em;
}

.section-title .letter {
	display: inline-block;
	line-height: 1em;
}

.c-overlay_text {
	text-align: center;
	position: absolute;
	top: 58%;
	width: 100%;
	z-index: 999;
}

.is-activet {
	height: 100vh;
	transform: translate(50% top);
}

.c-homepage-hero__item-image {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 9;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0;
	transform: scale(1.05);
	-webkit-transform: scale(1.05, 1.05);
	transition: all .5s cubic-bezier(.25, .46, .45, .94);
	transform-origin: center;
}

.c-second.transition .c-homepage-hero__item-image {
	transition: none;
}

.c-second.transition .c-homepage-hero__item-image {
	transition: none;
}

.inner-subtitle {
	text-decoration: none !important;
	background: transparent !important;
	border: none;
	position: absolute;
	left: 50%;
	top: 55%;
	transform: translate(-50%, -50%);
}

.menu {
	margin: 0;
	padding: 0;
}

.inner-nav:hover {
	color: #cea99b;
}

.c-line_inner {
	content: "";
	display: block;
	bottom: 0px;
	left: 0px;
	width: 0%;
	height: 1px;
	background: #cea99b;
	transition: all .6263s ease;
	-webkit-transition: all .6263s ease;
	-moz-transition: all .6263s ease;
	-o-transition: all .6263s ease;
	margin-top: 6px !important;
	margin: auto;
	color: #cea99b;
}

.c-overlay_text p {
	max-width: 320px;
	margin: 0 auto;
	margin-bottom: 33px;
	margin-top: 33px;
}

/**********NAVIGATION***********/
.lang-item {
	display: flex;
}

.cvisible-menu a:after, .lang-item a:after {
	left: 0;
	height: 1px;
	width: auto;
	content: "";
	display: block;
	background: #cfa89b;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .4s ease-out;
}

.cvisible-menu a:hover:after, .lang-item a:hover:after {
	transform: scaleX(1);
	transform-origin: left;
}

#menu-visible-menu li, #menu-visible-menu-en li {
	display: block;
	padding: .5rem 1rem;
	font-size: 16px;
}

.menu-active .open-overlay span {
	background-color: #101023 !important;
}

.menu-active .open-overlay span:nth-child(1) {
	display: none;
}

.menu-active .open-overlay span:nth-child(2) {
	transform: rotate(45deg) translate(6px, 6px);
}

.menu-active .open-overlay span:nth-child(3) {
	transform: rotate(-45deg);
}

.navbar-brand {
	z-index: 9999;
}

.navbar-brand .st0, .navbar-brand.st1 {
	fill: #cfa89b;
}

.navbar-brand svg {
	width: 180px;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}

.navbar {
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}

.floating-rdv .st0, .floating-rdv .st1 {
	fill: #f8f6f6;
}

.page-template-blank .floating-rdv .st0, .page-template-blank  .floating-rdv .st1 {
	fill: #cfa89b;
}

.current_page_item a.dark-text-color:before {
	background-color: #101023 !important;
}

.menu-active .floating-rdv .st0, .menu-active .floating-rdv .st1 {
	fill: #f8f6f6 !important;
}

.clinicare-2-0-color svg .st0, .clinicare-2-0-color svg .st1 {
	fill: #cea99b;
}

.telephone {
	position: relative;
	margin-left: 25px;
	border: 1px solid #f8f6f6;
	border: 1px solid #f8f6f6;
	padding: 5px 25px;
	padding: 0;
	height: 45px;
	width: 175px;
	text-align: center;
	color: #cfa89b;
	line-height: 45px;
	overflow: hidden;
	margin: 0 auto;
	display: block;
	background: transparent;
	z-index: 9999;
}

.page-template-blank .telephone {
	position: relative;
	margin-left: 25px;
	border: 1px solid #cfa89b;
	border: 1px solid #cfa89b;
	padding: 5px 25px;
	padding: 0;
	height: 45px;
	width: 175px;
	text-align: center;
	color: #cfa89b;
	line-height: 45px;
	overflow: hidden;
	margin: 0 auto;
	display: block;
	background: transparent;
	z-index: 9999;
}

.telephone:after {
	content: "";
	width: 100%;
	height: 100%;
	background: #cfa89b;
	display: block;
	transform: translatey(0px);
	transition: all 700ms ease;
	z-index: -1;
	position: absolute;
}

.telephone.dark-border-color:after {
	background: #101023;
}

.telephone:hover:after {
	transform: translatey(-45px);
}

.telephone:hover {
	border: 1px solid #cfa89b !important;
}

.telephone:hover span {
	color: #f8f6f6 !important;
}

.telephone:hover svg {
	fill: #f8f6f6 !important;
}

.telephone svg {
	height: 18px;
	width: auto;
	margin-right: 10px;
	margin-bottom: 3px;
}

.telephone svg {
	fill: #f8f6f6;
}

.page-template-blank .telephone svg {
	fill: #cfa89b;
}

.telephone .link {
	z-index: 2;
}

.logo-wrap {
	width: 185px;
	position: absolute;
	z-index: 9999;
	left: 2rem;
}

.svg .st0, svg .st1 {
	transition: all .6263s ease;
	-webkit-transition: all .6263s ease;
	-moz-transition: all .6263s ease;
	-o-transition: all .6263s ease;
}

.normal-color svg .st0, .normal-color svg .st1 {
	fill: #cea99b;
}

.cd-header {
	height: 80px;
	position: fixed;
	top: 0;
	width: 100vw;
	z-index: 9999;
}

.header-wrapper {
	height: 110px;
	display: flex;
	align-items: center;
}

.overlay-navigation {
	position: fixed;
	z-index: 99;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 1, 15, .47);
	transform: translateY(-100%);
}

.overlay-slide-down {
	transition: all .4s ease-in-out;
	transform: translateY(0);
}

.overlay-slide-up {
	transition: all .8s ease-in-out;
	transform: translateY(-100%);
}

.overlay-navigation nav, .overlay-navigation nav .inner-nav {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

.overlay-navigation nav .inner-nav {
	display: flex;
	list-style: none;
}

.overlay-navigation nav .inner-nav .rect {
	flex-basis: 33.33%;
	justify-content: center;
	align-items: center;
	height: 100%;
	overflow: hidden;
	transform: translateY(-100%);
	display: flex;
}

.overlay-navigation nav .rect li {
	display: block;
	text-align: left;
}

.overlay-navigation nav .rect:nth-of-type(1) {
	background-color: #eee0dc;
}

.overlay-navigation nav .rect:nth-of-type(2) {
	background-color: #ddc2b9;
}

.overlay-navigation nav .rect:nth-of-type(3) {
	background-color: #d9b9ae;
}

#menu-menu-1 .menu-item, #menu-sidebar .menu-item, #menu-sidebar-1 .menu-item, #menu-menu-2 .menu-item {
	opacity: 0;
	transform: translateY(-50px);
	transition: all 1.3s cubic-bezier(.44, .9, .2, 1);
}

.menu-active #menu-menu-1 .menu-item, .menu-active #menu-sidebar .menu-item, .menu-active #menu-menu-2 .menu-item, .menu-active #menu-sidebar-1 .menu-item {
	opacity: 1;
	transform: translate(0);
}

.menu-active #menu-menu-1 .menu-item:nth-child(1), .menu-active #menu-sidebar .menu-item:nth-child(1), .menu-active #menu-menu-2 .menu-item:nth-child(1), .menu-active #menu-sidebar-1 .menu-item:nth-child(1) {
	transition-delay: 1s;
}

.menu-active #menu-menu-1 .menu-item:nth-child(2), .menu-active #menu-sidebar .menu-item:nth-child(2), .menu-active #menu-menu-2 .menu-item:nth-child(2), .menu-active #menu-sidebar-1 .menu-item:nth-child(2) {
	transition-delay: .9s;
}

.menu-active #menu-menu-1 .menu-item:nth-child(3), .menu-active #menu-sidebar .menu-item:nth-child(3), .menu-active #menu-menu-2 .menu-item:nth-child(3), .menu-active #menu-sidebar-1 .menu-item:nth-child(3) {
	transition-delay: .8s;
}

.menu-active #menu-menu-1 .menu-item:nth-child(4), .menu-active #menu-sidebar .menu-item:nth-child(4), .menu-active #menu-menu-2 .menu-item:nth-child(4), .menu-active #menu-sidebar-1 .menu-item:nth-child(4) {
	transition-delay: .7s;
}

.menu-active #menu-menu-1 .menu-item:nth-child(5), .menu-active #menu-sidebar .menu-item:nth-child(5), .menu-active #menu-menu-2 .menu-item:nth-child(5), .menu-active #menu-sidebar-1 .menu-item:nth-child(5) {
	transition-delay: .8s;
}

.slide-in-nav-item {
	animation: slide-in-nav-item .6s cubic-bezier(.44, .9, .2, 1) 1 .2s both;
}

.slide-in-nav-item-delay-1 {
	animation: slide-in-nav-item .6s cubic-bezier(.44, .9, .2, 1) 1 .4s both;
}

.slide-in-nav-item-delay-2 {
	animation: slide-in-nav-item .6s cubic-bezier(.44, .9, .2, 1) 1 .6s both;
}

.slide-in-nav-item-delay-3 {
	animation: slide-in-nav-item .6s cubic-bezier(.44, .9, .2, 1) 1 .8s both;
}

.slide-in-nav-item-delay-4 {
	animation: slide-in-nav-item .6s cubic-bezier(.44, .9, .2, 1) 1 1s both;
}

.slide-in-nav-item-reverse {
	animation: slide-in-nav-item-reverse .6s cubic-bezier(.44, .9, .2, 1) 1 .5s both;
}

.slide-in-nav-item-delay-1-reverse {
	animation: slide-in-nav-item-reverse .6s cubic-bezier(.44, .9, .2, 1) 1 .4s both;
}

.slide-in-nav-item-delay-2-reverse {
	animation: slide-in-nav-item-reverse .6s cubic-bezier(.44, .9, .2, 1) 1 .3s both;
}

.slide-in-nav-item-delay-3-reverse {
	animation: slide-in-nav-item-reverse .6s cubic-bezier(.44, .9, .2, 1) 1 .2s both;
}

.slide-in-nav-item-delay-4-reverse {
	animation: slide-in-nav-item-reverse .6s ease-in-out 1 both;
}

/* ====================================
  Burger king
  ==================================== */
.open-overlay {
	position: relative;
	z-index: 100;
	width: 34px;
	height: 34px;
	display: block;
	cursor: pointer !important;
	margin-left: 30px;
	padding-top: 8px;
}

.open-overlay span {
	display: block;
	height: 1px;
	background-color: #f8f6f6;
	margin-top: 8px;
	transition: all .4s ease-in-out;
}

.page-template-blank  .open-overlay span {
	background-color: #cfa89b;
}

.bar-top {
	margin: 0 !important;
}

/* ====================================
  Animation keyframes
  ==================================== */
@keyframes slide-in-nav-item {
	from {
		opacity: 0;
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
	
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes slide-in-nav-item-reverse {
	from {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	
	to {
		opacity: 0;
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
}

/**********ANIMATION BANNER***********/
.enter {
	opacity: 1;
	transform: translateY(0px);
}

.big-letter {
	opacity: 0;
	transform: translateY(-50%);
	transition: all 2.5s ease-in-out;
}

.service-background {
	height: 100vh;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	width: 100vw;
	background-position: center;
}

/*******PAGE SERVICE*******/
.s-overlay {
	height: 100vh;
	position: absolute;
	width: 100vw;
	-webkit-transition: -webkit-transform 2s cubic-bezier(.25, .46, .45, .94);
	transition: -webkit-transform 2s cubic-bezier(.25, .46, .45, .94);
	transition: transform 2s cubic-bezier(.25, .46, .45, .94);
	transition: transform 2s cubic-bezier(.25, .46, .45, .94);
}

.s-overlay svg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	height: 100%;
}

.s-svg_letter {
	font-size: 85vw;
	font-family: Circular Std, sans-serif;
	font-weight: 900;
	text-transform: capitalize;
}

.service-hero {
	display: block;
	overflow: hidden;
	position: relative;
}

.s-mask_background {
	fill: #101023;
	fill-opacity: .15;
}

.home-scroll-down {
	position: absolute;
	margin-bottom: -130px;
	margin-top: 150px;
	z-index: 2;
	text-align: center;
	opacity: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	transition: 1.3s cubic-bezier(.44, .9, .2, 1);
}

.home-scroll-down h5 {
	color: #f8f6f6;
	font-size: 13px;
	letter-spacing: 1.2px;
	letter-spacing: 0;
	line-height: 17px;
	font-style: normal;
	text-transform: uppercase;
}

.content-traitments {
	padding: 15.6rem 0px;
}

.c-scrolldown {
	width: 1px;
	height: 60px;
	margin: 0 auto;
	overflow: hidden;
}

.c-line {
	width: 100%;
	height: 100%;
	display: block;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 50%);
	background-position: 0 -60px;
	background-size: 100% 200%;
	animation: scrolldown 2.2s cubic-bezier(.76, 0, .3, 1) forwards infinite;
}

@keyframes scrolldown {
	0% {
		background-position: 0 -60px;
	}
	
	75% {
		background-position: 0 0;
	}
	
	100% {
		background-position: 0 60px;
	}
}

/**********INTRO***********/
.inner {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-content-inner {
	display: inline-block;
	opacity: 0;
	transition: all 2.5s ease-in-out;
}

.hero-content {
	width: 100%;
	width: calc(100% - 300px);
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #f8f6f6;
}

.letter-clinicare-2-0 {
	margin-bottom: 35px;
	display: flex;
}

.letter-clinicare-2-0 svg {
	margin-left: 145px;
	margin-right: 145px;
	overflow: visible;
	height: 100px;
	transition: all 5s ease-in-out;
}

.content-intro {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
}

.intro-descriptif {
	text-align: center;
}

.text-mask {
	line-height: 1.6;
	background-position: 0;
	background-repeat: no-repeat;
	text-align: center;
	font-size: 65px !important;
	-webkit-background-clip: text;
	color: transparent;
	animation-name: image-effect;
	animation-duration: 15s;
	animation-iteration-count: 10;
	animation-direction: alternate;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	font-family: "fashion fetish Light";
	margin-top: 10px;
}

.text-mask strong {
	font-family: "fashion fetish heavy";
	line-height: 1.6;
	font-size: 65px !important;
}

@-webkit-keyframes image-effect {
	0% {
		background-position: right top;
	}
	
	100% {
		background-position: right bottom;
	}
}

@keyframes image-effect {
	0% {
		background-position: right top;
	}
	
	100% {
		background-position: right bottom;
	}
}

/**********SERVICES***********/
.sub-section-title {
	display: flex;
	align-items: center;
	color: #cfa89b;
}

.sub-section-title strong {
	font-weight: 100;
}

.sub-section-title:after {
	content: "";
	height: 1px;
	width: 36px;
	background-color: #cfa89b;
	display: block;
	margin-left: 5px;
}

.sub-section-title strong {
	font-family: "gt" !important;
}

.col-section-title {
	color: #cfa89b;
	margin-bottom: 30px;
}

.tabs_wrapper {
	width: 100%;
	position: relative;
	margin: 0 auto;
	overflow: hidden;
	padding: 5px;
}

ul.tabs {
	position: absolute;
	left: 0px;
	top: 0px;
	min-width: 3000px;
	margin-left: -40px;
	margin-top: 0px;
	height: 65px;
	display: flex;
	align-items: center;
}

ul.tabs:after {
	content: "";
	width: 3000px;
	height: 65px;
	background: #cfa89b;
	opacity: .1;
	display: block;
	position: absolute;
	top: 0px;
}

.tab_container {
	display: inline-block;
	vertical-align: top;
	position: relative;
	z-index: 1;
	left: -7px;
	width: 100%;
	min-width: 10px;
	text-align: left;
	background: transparent;
	padding: 25px;
	margin-top: 25px;
}

.tab_content {
	padding-top: 50px;
	padding-bottom: 50px;
	height: 100%;
	display: none;
}

.tab_drawer_heading {
	display: none;
}

.tabs li {
	margin: 0 10px;
	color: #101023;
	font-family: "gt";
	font-size: 13px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	display: table-cell;
	position: relative;
	text-align: center;
	cursor: grab;
	cursor: -webkit-grab;
	line-height: 28px;
	vertical-align: middle;
	z-index: 2;
}

.tabs li.active {
	background: transparent;
	border-bottom: 1px solid #101023;
	opacity: 1;
	color: #101023;
}

.active {
	-ms-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.scroller {
	text-align: center;
	cursor: pointer;
	display: none;
	display: block;
	display: flex;
	white-space: no-wrap;
	vertical-align: middle;
	height: 65px;
	width: 150px;
	align-items: center;
	justify-content: flex-end;
	background: linear-gradient(270deg, #f8f6f6 0%, rgba(255, 255, 255, 0) 100%);
}

.scroller-right {
	position: absolute;
	right: 0;
	z-index: 3;
}

.scroller-right svg, .scroller-left svg {
	width: 24px;
	fill: #101023;
}

.scroller-left {
	position: absolute;
	left: 0;
	z-index: 3;
	transform: rotate(180deg);
}

.apercu {
	background: #eee0dc;
	padding: 20px;
	min-height: 500px;
}

.apercu h2 {
	word-wrap: break-word;
	hyphens: auto;
	hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	font-size: 40px;
	line-height: 40px;
}

.procedure {
	padding-top: 20px;
	padding-left: 30px;
}

.procedure .small {
	color: #cfa89b;
}

.procedure .row .col {
	padding: 15px;
	margin: 15px;
}

.obj {
	background-color: #eaded9;
}

.tech {
	background-color: #eaded9;
}

.res {
	background-color: #eaded9;
}

/**********OTHER TRAITEMENTS***********/
.other-traitemts {
	margin-top: 200px;
	margin-bottom: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#inner-menu {
	background-position: 50% 50%;
	bottom: 0px;
	box-sizing: border-box;
	color: #e3bbb5;
	height: auto;
	position: relative;
	font: normal normal 400 normal 16px/30px tt_norms, Helvetica, Arial;
	display: flex;
	align-items: center;
}

#inner-menu .menu-visage-container {
	padding: 50px;
	position: absolute;
}

#inner-menu .menu-corps-container {
	padding: 50px;
	position: absolute;
}

#inner-menu .menu-soin-de-peau-container {
	padding: 50px;
	position: absolute;
}

/**********TESTIMONAL***********/
.testimonial-slide .slick-list, .testimonial-slide2 .slick-list {
	background: #f8f6f6;
}

.testimonial-slide.show {
	opacity: 1;
}

.testimonial-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100vw;
}

.testimonial-banner {
	height: 500px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50%;
	margin-top: -150px;
}

.testimonial .slick-track {
	display: flex !important;
}

.testimonial .slick-slide {
	background: #f8f6f6;
	padding: 50px;
}

/**********GEOMETRIC ELEMENTS***********/
.banner {
	bottom: 0px;
	width: 100vw;
	height: 60vh;
	position: relative;
	background: no-repeat;
	background-position: center;
	background-size: cover;
}

/**********SLIDER AVANT APRES***********/
#slide-subject {
	float: right;
	width: 50%;
	padding-left: 30px;
	color: #f8f6f6;
}

.full-card .col-md-7:before {
	background-color: #101023;
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transform: scaleX(0);
	transform-origin: center right;
	transition: transform .6s cubic-bezier(.7, .085, .79, .415);
	will-change: transform;
	z-index: 20;
}

.font-description {
	width: 30%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	float: right;
}

.slick-active.full-card .col-md-7:before {
	animation: color_slide 1.5s cubic-bezier(.565, .43, .24, .92);
}

@-webkit-keyframes color_slide {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	
	100% {
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
	}
}

@keyframes tilt-in-right-1 {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	
	100% {
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
	}
}

.slick-active.full-card .col-md-4, .slick-active.boxe-testimonial p, .slick-active.boxe-testimonial .rate_md, .slick-active.boxe-testimonial img, .slick-active .p-inside, .slick-active .apercu .big, .slick-active .apercu h2, .slick-active .apercu h3, .slick-active .apercu a {
	animation-name: fadeInUpSD;
	animation-duration: 1s;
}

@-webkit-keyframes fadeInUpSD {
	0% {
		opacity: 0;
		-webkit-transform: translateY(100px);
		transform: translateY(100px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInUpSD {
	0% {
		opacity: 0;
		-webkit-transform: translateY(100px);
		transform: translateY(100px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInUpSD {
	-webkit-animation-name: fadeInUpSD;
	animation-name: fadeInUpSD;
}

.font-description h3 {
	color: #cfa89b;
	padding-bottom: 20px;
}

.font-image {
	width: 60%;
	float: left;
}

.single-item [data-animation-in] {
	animation-duration: 1.5s;
	transition: opacity .5s ease .3s;
}

/**********RESERVATION BUTTON***********/
.reservation-rotate {
	bottom: 3rem;
	right: 3rem;
	position: fixed;
	z-index: 10001;
	height: 120px;
	width: 120px;
	display: block;
	text-align: center;
	transform: scale(0);
	opacity: 0;
}

.floating-rdv {
	transition: all .5s ease-out;
	display: inline-block;
	position: relative;
}

.floating-rdv:hover {
	transform: scale(1.05);
}

.floating-rdv-svg-graphic {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	height: 140px;
	width: 140px;
	will-change: transform;
	transform-origin: center;
	transition: all .25s ease-out;
}

.floating-rdv:hover .floating-rdv-svg-graphic {
	opacity: .5;
}

.floating-rdv-svg-text {
	display: block;
	will-change: transform;
	transform-origin: center;
	height: 140px;
	width: 140px;
}

.split {
	height: 100%;
	width: 50%;
	position: fixed;
	z-index: 1;
	top: 0;
	overflow-x: hidden;
	padding-top: 20px;
}

.left {
	left: 0;
	background-color: #e1cec7;
}

.right {
	right: 0;
}

.right .big-letter {
	font-size: 35vw;
}

.centered {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.centered img {
	width: 150px;
	border-radius: 50%;
}

/*******CONTACT*******/
.map-info {
	overflow: hidden;
	height: 700px;
}

.intro_contact h3 {
	color: #cfa89b;
}

.intro_contact {
	color: #101023;
	text-align: left;
	padding: 100px 0;
	padding-left: 100px;
	background-color: #eee0dc;
}

.intro_contact svg {
	width: 70px;
	margin-bottom: 35px;
	opacity: .3;
}

.intro_contact svg .st0 {
	fill: #cfa89b;
}

.contact-info {
	text-align: left;
	width: auto;
}

.contact-form {
	padding: 100px 0;
	background-color: #101023;
}

.container {
	padding-bottom: 0 !important;
}

.page-template-contact .banner {
	height: auto;
	overflow-x: hidden;
}

.banner-contact {
	bottom: 0px;
	width: 100vw;
	-webkit-mask: url("https://cdn-ikpfoeb.nitrocdn.com/RBVHapycvDTFMZDxiRPpQDIpMEAeLNzm/assets/images/source/rev-7ea84fa/www.clinicare.ca/wp-content/themes/clinicare-2-0/layouts/images/banner.svg") no-repeat 50% 50%;
	mask: url("https://cdn-ikpfoeb.nitrocdn.com/RBVHapycvDTFMZDxiRPpQDIpMEAeLNzm/assets/images/source/rev-7ea84fa/www.clinicare.ca/wp-content/themes/clinicare-2-0/layouts/images/banner.svg") no-repeat 50% 50%;
	height: 800px;
	position: relative;
	background: no-repeat fixed 50% 50%/cover padding-box border-box;
	-webkit-mask-size: 100vw;
	-webkit-mask-position: top;
}

.page-template-contact .c-title.bigtitle {
	background-size: cover;
	top: 35%;
}

.page-template-contact .service:after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100vh;
	left: 0;
	z-index: 0;
}

.align-contact {
	display: flex;
	align-content: center;
	justify-content: center;
}

.align-contact-right label, .align-contact-left label, .align-contact-message label {
	width: 100%;
}

.align-contact-message textarea {
	width: 100%;
	height: 150px;
}

.align-contact-message label {
	margin-top: 30px;
}

.contact input[type="submit"] {
	cursor: none;
	cursor: pointer;
	font: inherit;
	line-height: normal;
	background-color: #cfa89b;
	color: #eaded9;
	text-transform: uppercase;
	text-align: center;
	letter-spacing: .1428571429em;
	border: none;
	border-radius: 0;
	padding: 15px 60px;
	margin: top;
	margin-top: 30px;
}

.contact-info span {
	cursor: none;
	color: #cfa89b;
	padding-right: 10px;
	font-size: 20px;
}

.page-template-contact .wpcf7 {
	opacity: 1 !important;
}

.page-template-contact .site-newsletter {
	display: none;
}

.contact {
	margin-bottom: 300px;
}

/******A PROPOS*******/
.img-box img.moveit {
	transform: translateX(-45%);
}

.img-box {
	overflow: hidden;
}

.team {
	background: #101023;
	padding: 100px 0;
}

.img-box-team {
	position: relative;
	display: inline-block;
	overflow: hidden;
	width: 100%;
	height: 500px;
}

.content-team li {
	list-style: none;
	position: relative;
	display: flex;
	justify-content: end;
	align-items: flex-start;
}

.content-team li:nth-child(2) {
	left: calc(( 100vw - 200px ) / -7 * -3);
	margin-top: calc(( 100vw - 80px ) / 24 * -3);
}

.content-team li:nth-child(3) {
	margin-top: calc(( 100vw - 80px ) / 24 * -2);
}

.img-box img, .img-box-team img {
	height: 100%;
	max-width: 100%;
	max-width: none;
	object-fit: cover;
	max-height: 100%;
	vertical-align: middle;
	display: block;
	float: left;
}

.description-hiden {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	transition: all 1.3s cubic-bezier(.44, .9, .2, 1);
	background-color: rgba(16, 16, 35, .65);
	z-index: 99;
	transform: translateY(450px);
}

.img-box-team:hover .description-hiden {
	transform: translateY(0px);
}

.description-hiden p {
	color: #f8f6f6;
	-webkit-transform: translate(-50%, 50%);
	-ms-transform: translate(-50%, 50%);
	transform: translate(-50%, 50%);
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: center;
	width: 75%;
	transition: all .8s ease-out;
}

.img-box-team:hover .description-hiden p {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.show_arrow {
	height: 15px;
	width: 15px;
	border-bottom: 2px solid #cfa99a;
	border-right: 2px solid #cfa99a;
	transform: rotate(225deg);
	position: absolute;
	left: 49%;
	top: 5%;
	opacity: 1;
	transition: all cubic-bezier(.44, .9, .2, 1);
}

.img-box-team:hover .show_arrow {
	opacity: 0;
}

.dr-title h2 {
	font-size: 30px;
	color: #cfa89b;
}

.dr-title h5, .dr-title p {
	color: #f8f6f6;
}

.dr-title {
	position: relative;
	display: inline-block;
	width: 100%;
}

circle {
	transform-origin: 50% 50%;
	transform: scale(.5);
	transition: transform 200ms cubic-bezier(.25, .46, .45, .94);
}

image {
	transform: scale(1.1);
	transform-origin: 50% 50%;
	transition: transform 200ms cubic-bezier(.25, .46, .45, .94);
}

.image-overlay {
	mix-blend-mode: color;
}

.items {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}

.item {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	margin: 2rem 15px;
	box-sizing: border-box;
	cursor: pointer;
	transform: translateZ(0);
}

.c-team-grid_item_content {
	max-width: 445px;
	margin: 0 auto;
}

.c-team-grid_item_content h2 {
	font-size: 30px;
	color: #cfa89b;
}

.c-team-grid_item_content h5, .c-team-grid_item_content p {
	color: #f8f6f6;
}

.item-inner {
	width: 100%;
	height: 500px;
	display: block;
}

.item:hover circle, .item:hover image {
	transform: scale(1);
}

.page-template-propos .c-title.bigtitle {
	background-size: cover;
	top: 45%;
}

.clinique {
	height: 100vh;
	display: flex;
	align-items: center;
}

.intro-clinique {
	text-align: right;
}

.clinique-image {
	height: 585px;
	background-repeat: no-repeat;
	background-size: contain;
}

.banner-contact2 {
	/* bottom: 0px; */
	width: 1000px;
	-webkit-mask: url("https://cdn-ikpfoeb.nitrocdn.com/RBVHapycvDTFMZDxiRPpQDIpMEAeLNzm/assets/images/source/rev-7ea84fa/www.clinicare.ca/wp-content/themes/clinicare-2-0/layouts/images/banner.svg") no-repeat 50% 50%;
	mask: url("https://cdn-ikpfoeb.nitrocdn.com/RBVHapycvDTFMZDxiRPpQDIpMEAeLNzm/assets/images/source/rev-7ea84fa/www.clinicare.ca/wp-content/themes/clinicare-2-0/layouts/images/banner.svg") no-repeat 50% 50%;
	height: 600px;
	position: absolute;
	right: 70%;
	background: no-repeat fixed 50% 50%/contain padding-box border-box;
}

/*******SIDEBAR*****/
.current_page_parent .sub-menu {
	display: block;
}

.current_page_parent .sub-menu li {
	opacity: 1;
}

.sub-menu {
	display: none;
}

.sub-menu li {
	opacity: 0;
	transition: all .5s ease-out;
	transition-delay: .5s;
}

.sub-menu.dropdown {
	display: block;
}

.sub-menu.dropdown li {
	opacity: 1;
}

.menu-sidebar-container {
	margin-top: 30px;
}

.menu-item-has-children a {
	font-family: "gt";
	color: #101023;
	line-height: 1.5;
}

#menu-menu-1 .menu-item a, #menu-menu-2 .menu-item a {
	color: #101023;
	line-height: 1.7;
}

#menu-menu-1 .menu-item a:hover, #menu-menu-1-en .menu-item a:hover, #menu-menu-2 .menu-item a:hover, #menu-menu-1-en-1 .menu-item a:hover {
	color: #eddfdc;
}

#menu-sidebar a, #menu-sidebar-en a, #menu-sidebar-1 a, #menu-menu-1 a, #menu-menu-1-en a, #menu-menu-2 a, #menu-sidebar-en-1 a, #menu-menu-1-en-1 a {
	font-family: "Berling";
	display: flex;
	align-items: center;
	font-size: 35px;
	line-height: 1.5;
	color: #101023;
}

/*.menu-item-has-children>a, #menu-menu-1 .menu-item a, #menu-item-633 a, #menu-item-632 a{
  font-family: "Berling";
  display: flex;
  align-items: center;
  font-size: 40px;
}
#menu-item-633 a,  #menu-item-632 a{
  color: #101023;
  line-height: 1.5;
}
*/
#menu-sidebar .sub-menu li a, #menu-sidebar-en .sub-menu li a, #menu-sidebar-1 .sub-menu li a, #menu-sidebar-en-1 .sub-menu li a {
	font-family: "gt";
	color: #101023;
	line-height: 1.5;
	font-size: 18px;
}

#menu-sidebar a:hover, #menu-sidebar-en a:hover, #menu-sidebar-1 a:hover, #menu-sidebar-en-1 a:hover {
	color: #cfa89b !important;
}

.current_page_item.menu-item-633> a, .current_page_item.menu-item-632> a {
	color: #cda89b !important;
}

.current_page_item.menu-item-633 a:before, .current_page_item.menu-item-632 a:before {
	content: "";
	height: 1px;
	width: 3.75vw;
	margin-right: .2vw;
	display: inline-block;
	background: #cda89b;
}

.menu-item-has-children>a:after {
	content: "+";
	font-family: "Berling";
	display: block;
	display: block;
	align-items: center;
	font-size: 45px;
	position: relative;
	transform: rotate(0deg);
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	top: 0;
	text-align: center;
	float: right;
	margin-left: 20px;
}

a.n-open:after {
	content: "-";
}

.menu-item-has-children>a.rotate:after {
	transform: rotate(180deg) translateY(-5px) !important;
	content: "-";
}

.menu-item-has-children {
	padding: 5px 0;
}

.current_page_parent .sub-menu {
	display: block;
}

nav .current_page_item a {
	color: #f8f6f6 !important;
}

nav .current-page-ancestor> a {
	color: #cda89b !important;
}

.current_page_parent .sub-menu .current_page_item a {
	font-family: "gt m";
	color: #cda89b !important;
	display: flex;
	align-items: center;
}

.current_page_parent .sub-menu .current_page_item a:before {
	content: "";
	height: 1px;
	width: 3.75vw;
	margin-right: .2vw;
	display: inline-block;
	background: #cda89b;
}

nav .current_page_item a:before {
	content: "";
	height: 1px;
	width: 3.75vw;
	margin-right: .2vw;
	display: inline-block;
	background: #f8f6f6;
}

.sub-menu a {
	font-size: 18px;
}

.sub-menu {
	margin-left: 0;
	padding-left: 30px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.section_discover .sub-menu {
	padding-left: 15px;
}

#menu-social, #menu-social-en, #menu-social-1, #menu-social-en-1 {
	margin-top: 30px;
	display: flex;
}

#menu-item-634 > a {
	display: none;
}

#menu-item-634 ul {
	display: flex;
	padding: 0;
}

#menu-item-634 ul li {
	width: fit-content;
	margin-right: 10px;
}

#menu-item-634  .sub-menu li {
	opacity: 1 !important;
	transition: all .5s ease-out;
	transition-delay: .5s;
}

#menu-item-569 a, #menu-item-570 a {
	font-family: "gt";
	font-size: 22px;
	color: #101023;
	line-height: 1.7;
}

#menu-social li, #menu-social-en li, #menu-social-1 li, #menu-social-en-1 li {
	width: fit-content;
	margin-right: 10px;
}

#menu-social .menu-item a, #menu-social-en .menu-item a, #menu-social-1 .menu-item a, #menu-social-en-1 .menu-item a {
	font-family: "gt";
	font-size: 22px;
	color: #101023;
	line-height: 1.7;
}

#menu-social .menu-item a:hover, #menu-social-en .menu-item a:hover, #menu-social-1 .menu-item a:hover, #menu-social-en-1 .menu-item a:hover {
	color: #f8f6f6;
}

.expend #overlay {
	display: block;
	opacity: 1;
}

#overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(16, 16, 35, .5);
	z-index: 8900;
	overflow: hidden;
	overflow-y: hidden;
	overflow-x: hidden;
	text-align: center;
	display: none;
	transition: all 1s ease-out;
}

.fade-leave-active, .fade-enter-active, .slide-leave-active, .slide-enter-active {
	transition: opacity 450ms ease, transform 650ms ease-in-out;
}

/* fade transition states */
.fade-leave, .fade-enter-to {
	opacity: 1;
}

.fade-enter, .fade-leave-to {
	opacity: 0;
}

/* slide transition states */
.slide-leave, .slide-enter-to {
	transform: translateX(0);
}

.slide-enter, .slide-leave-to {
	transform: translateX(100%);
}

.hero-content-inner {
	max-width: 900px;
}

/****A PROPOS******/
.doctor, .news {
	padding: 100px 0;
}

.post-inner {
	height: 410px;
	background-size: cover !important;
	max-width: 500px;
	background-position: center !important;
}

.blog-slider .slick-prev {
	left: 3% !important;
	margin-top: 0% !important;
	top: 50% !important;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%) !important;
	z-index: 99999;
}

.blog-slider .slick-slide:not(.slick-center) {
	transition: all .5s ease-out;
}

.blog-slider .slick-next {
	left: 100% !important;
	margin-top: 0% !important;
	top: 50% !important;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%) !important;
}

.blog-slider .slick-slide:not(.slick-center) {
	z-index: 0;
	transform: scale(.8);
}

.single-item .slick-prev, .single-item .slick-next {
	top: 100% !important;
}

.slick-prev, .slick-next {
	background: #cfa89b;
	border-radius: 0;
	height: 40px;
	width: 40px;
	display: flex !important;
	justify-content: center;
	align-items: center;
	z-index: 2;
}

.slick-next::before {
	content: "";
	height: 15px;
	width: 15px;
	border-bottom: 2px solid #f8f6f6;
	border-right: 2px solid #f8f6f6;
	transform: rotate(-45deg);
	margin-right: 8px;
}

.slick-prev::before {
	content: "";
	height: 15px;
	width: 15px;
	border-bottom: 2px solid #f8f6f6;
	border-left: 2px solid #f8f6f6;
	transform: rotate(45deg);
	margin-left: 8px;
}

.testimonial-slide2 .slick-prev {
	left: auto;
	right: -25px;
	margin-top: 40px;
}

.single-item .slick-next {
	right: 50%;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
	background: #ddc2b9 !important;
}

.slick-active.slick-center+.slick-slide+.slick-slide {
	z-index: 1;
}

.slick-active.slick-center+.slick-slide, .slick-center+.slick-cloned {
	z-index: 2;
}

.slick-center {
	z-index: 3;
}

.slidepost.slick-slide {
	position: relative;
	transition: transform 80ms;
}

.post-inner {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	position: relative;
	transform: translateX(-50%);
	left: 50%;
}

.post-content {
	padding: 25px;
}

.post-content h3, .post-content p {
	color: #f8f6f6;
}

.post-content a {
	color: #cfa89b;
}

.excerpt.big {
	opacity: .5;
}

.bg {
	background-image: url("https://www.clinicare.ca/wp-content/themes/clinicare-2-0/layouts/images/letter-clinicare-2-0.svg");
	background-repeat: no-repeat;
	background-size: 75%;
}

.intro-descriptif p {
	margin: 0;
	padding-top: 150px;
}

/*******BLOG******/
.nav-next a:after, .nav-previous a:after {
	left: 0;
	height: 1px;
	width: auto;
	content: "";
	display: block;
	background: #cfa89b;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .4s ease-out;
}

.nav-next a:hover:after, .nav-previous  a:hover:after {
	transform: scaleX(1);
	transform-origin: left;
}

.blog-inner {
	position: absolute;
	bottom: 20%;
	left: 15%;
	max-width: 500px;
}

.blog-hero {
	overflow: hidden;
	display: block;
	position: relative;
}

.blog-background {
	display: block;
	display: flex;
	height: 100vh;
	background-size: cover;
	background-position: center;
	background-position: center;
	justify-content: center;
	align-items: center;
}

.blog-background h2 {
	color: #cfa89b;
	line-height: 1.2;
}

.bg.nitro-lazy {
	background-image: none !important;
}

.gift {
	height: 80vh;
	z-index: -1;
	opacity: .1;
	bottom: 0px;
	width: 100vw;
	position: relative;
	background: no-repeat;
	background-position: center;
	background-size: cover;
}

.sect-gift {
	margin-top: calc(-12.4rem - 150px);
	z-index: -1;
	display: block;
	width: 100vw;
	height: 80vh;
	position: relative;
}

.gift-inner {
	background: rgba(16, 15, 36, .5);
	padding: 25px;
}

.gift-inner p {
	color: #f8f6f6;
	text-align: center;
}

.gift-inner h2 {
	color: #cfa89b;
	text-align: center;
}

.gift-inner h2 span {
	font-family: "gt";
	font-size: 50px;
}

.transition-fade {
	transition: .4s;
	opacity: 1;
}

html.is-animating .transition-fade {
	opacity: 0;
}

.slide-right {
	visibility: hidden;
	height: 100vh;
	width: 33.3333333%;
	background: #cfa89b;
	position: fixed;
	z-index: 9999;
	transform: scaleY(0);
	right: 0;
	top: 0;
	transition: all .7s ease-out;
	transform-origin: bottom;
}

.slide-left {
	visibility: hidden;
	height: 100vh;
	width: 33.3333333%;
	background: #cfa89b;
	position: fixed;
	z-index: 99999;
	transform: scaleY(0);
	left: 0;
	top: 0;
	transition: all .7s ease-out;
	transform-origin: bottom;
}

.fade-out .slide-right {
	visibility: visible;
	height: 100vh;
	background: #cfa89b;
	position: fixed;
	z-index: 99999;
	transform: scaleY(1);
	right: 0;
	top: 0;
	width: 33.3333333%;
	transform-origin: bottom;
}

.fade-out .slide-left {
	visibility: visible;
	transform: scaleY(1);
	width: 33.3333333%;
	transform-origin: bottom;
}

.slide-mid {
	visibility: hidden;
	height: 100vh;
	width: 33.3333333%;
	background: #cfa89b;
	position: fixed;
	z-index: 99999;
	transform: scaleY(0);
	left: 33.3333333%;
	top: 0;
	transition: all .7s ease-out;
	transform-origin: bottom;
}

.fade-out .slide-mid {
	visibility: visible;
	transform: scaleY(1);
	transform-origin: bottom;
}

.anima div:nth-child(1) {
	transition-delay: 0s;
}

.anima div:nth-child(2) {
	transition-delay: .2s;
}

.anima div:nth-child(3) {
	transition-delay: .4s;
}

.single .entry-content p, .single .entry-content li, .single .entry-content h4, .single .entry-content h5, .single .entry-content h3 {
	color: #101023;
}

.single .entry-content h2 {
	color: #cfa89b;
	font-size: 30px;
}

.nav-previous a, .nav-next a {
	font-size: 30px;
	color: #cfa89b;
	display: block;
	width: fit-content;
	overflow: hidden;
	font-family: "Berling";
}

.nav-next {
	width: auto !important;
}

.post-navigation {
	margin-top: 100px !important;
}

#sgpb-popup-dialog-main-div {
	background-color: #f8f6f6 !important;
	box-shadow: none !important;
	border-radius: 0 !important;
}

#sg-popup-content-wrapper-1061>div>div>h4 {
	font-size: 36px;
	font-family: "Berling";
	color: #101023;
	padding: 5px 0;
}

#sg-popup-content-wrapper-1061>div>div>p {
	font-size: 18px;
	color: #cfa89b;
	margin-bottom: 15px;
	margin-top: 15px;
}

#sg-popup-content-wrapper-1061>div>div>a {
	margin-top: 30px;
}

body.home.scene-2-active {
	background: #101023 !important;
}

.wrapper {
	max-width: 100%;
	border: 1px solid #ddd;
	margin: 0 auto;
}

img {
	max-width: 100%;
	height: auto;
}

.portfolio-thumb-slider .slick-slider-item {
	padding: 5px;
}

.portfolio-thumb-slider {
	margin: 0 -5px 5px -5px;
}

.portfolio-thumb-slider .slick-active img {
	outline: 2px solid transparent;
}

.portfolio-thumb-slider .slick-current img {
	outline-color: green;
}

.slick-slider {
	margin-bottom: 0px;
}

.controls {
	text-align: center;
	padding: 10px;
	font-family: monospace;
	font-weight: bold;
}

.action {
	display: block;
	margin: 100px auto;
	width: 100%;
	text-align: center;
}

.action a {
	display: inline-block;
	padding: 5px 10px;
	background: #f30;
	color: #fff;
	text-decoration: none;
}

.action a:hover {
	background: #000;
}

.slick-slide {
	outline: none;
}

.apercu em {
	font-family: "gt l i";
	font-size: 14px;
}

.article_btn {
	display: block;
	margin-top: 25px;
	color: #101023;
	font-size: 18px;
	position: relative;
	float: right;
	font-family: "gt";
	overflow: hidden;
}

.article_btn:hover {
	color: #101023;
}

.article_btn:after {
	left: 0;
	height: 1px;
	width: auto;
	content: "";
	display: block;
	background: #101023;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .4s ease-out;
}

.article_btn:hover:after {
	transform: scaleX(1);
	transform-origin: left;
}

.archive-inner {
	height: 450px;
	background-size: cover !important;
	background-position: center !important;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

.half {
	width: 50%;
	float: left;
}

.ng-row {
	clear: both;
}

.reservation-rotate.hidden {
	opacity: 0 !important;
}

.boxe-testimonial img {
	width: 25%;
}

.svg-logo {
	position: absolute;
	width: 70%;
	top: 0;
	left: 0;
}

.svg-logo #Layer_1 path {
	fill: #14132c !important;
}

/****************************************/
.image-menu {
	height: 100%;
	width: 100%;
	margin: auto;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0;
	visibility: hidden;
	transition: all 1.3s cubic-bezier(.44, .9, .2, 1);
	position: absolute;
	left: 0%;
}

.v-img {
	opacity: 1;
	visibility: visible;
}

.section_welcome:before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: "";
	opacity: .5;
	background: #101023;
}

.section_welcome {
	color: #fff;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.section_welcome__heading {
	opacity: .3;
	font-family: "fashion fetish heavy";
	color: #cfa89b;
	font-size: 10vw;
	text-transform: uppercase;
}

.st3 {
	-webkit-animation: slide-bottom 2s ease-in-out infinite both;
	animation: slide-bottom 2s ease-in-out infinite both;
}

/* ----------------------------------------------
 * Generated by Animista on 2020-4-16 9:17:32
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-bottom
 * ----------------------------------------
 */
@-webkit-keyframes slide-bottom {
	0% {
		-webkit-transform: translateY(-50px);
		transform: translateY(-50px);
	}
	
	50% {
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
	}
	
	100% {
		-webkit-transform: translateY(-50px);
		transform: translateY(-50px);
	}
}

@keyframes slide-bottom {
	0% {
		-webkit-transform: translateY(-50px);
		transform: translateY(-50px);
	}
	
	50% {
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
	}
	
	100% {
		-webkit-transform: translateY(-50px);
		transform: translateY(-50px);
	}
}

.intro_mobile {
	color: #101023;
	text-align: center;
	padding: 100px 25px;
}

.intro_mobile svg {
	width: 70px;
	margin-bottom: 35px;
	opacity: .3;
}

.intro_mobile svg .st0 {
	fill: #cfa89b;
}

#menu-visage .menu-item-has-children>a, #menu-corps .menu-item-has-children>a, #menu-soins .menu-item-has-children>a {
	color: #cfa89b;
	line-height: 45px;
	font-size: 16px;
	font-family: "gt m";
	text-transform: uppercase;
}

.col-md-4 p {
	margin: 0;
}

input {
	border-radius: 0 !important;
}

.caption {
	color: #f8f6f6;
	font-family: "gt m";
	font-size: 18px;
}

.page-template-blank .caption {
	color: #cfa89b;
	font-family: "gt m";
	font-size: 18px;
}

.section_discover__img img {
	padding-bottom: 15px;
}

.menu-active .telephone {
	border: 1px solid #14132c !important;
}

.menu-active .caption {
	color: #101023 !important;
}

.menu-active .telephone:hover span {
	color: #f8f6f6 !important;
}

.menu-active .telephone svg {
	fill: #101023 !important;
}

.menu-active .telephone:hover svg {
	fill: #f8f6f6 !important;
}

.menu-active .telephone:after {
	background: #101023;
}

.menu-active .open-overlay {
	margin-bottom: 15px;
}

.cvisible-menu a, .lang-item a {
	color: #f8f6f6;
	font-family: "gt m";
}

.cvisible-menu a:hover, .lang-item a:hover {
	color: #cfa89b !important;
}

.page-template-blank .cvisible-menu a {
	color: #cfa89b;
	font-family: "gt m";
}

.page-template-blank .cvisible-menu a:hover {
	color: #cfa89b !important;
}

.nav-tabs {
	display: none;
}

.open-overlay.mobile span {
	background-color: #cfa89b;
}

@media (min-width: 768px) {
	.nav-tabs {
		display: flex;
		flex-flow: column nowrap;
	}
	
	.nav-tabs {
		border-bottom: none;
		border-right: 1px solid rgba(207, 169, 154, .5);
		display: flex;
	}
	
	.nav-tabs {
		margin: 0 15px;
		margin-left: 0;
		width: 250px;
	}
	
	.nav-tabs .nav-item+.nav-item {
		margin-top: .25rem;
	}
	
	.nav-tabs .nav-link {
		transition: all .125s ease-in;
		background-color: transparent !important;
		margin-right: -2px;
		font-family: "gt";
		font-size: 18px;
		color: #f8f6f6 !important;
		border-radius: 0;
		border: none;
		padding-left: 0;
		width: 250px;
	}
	
	.nav-tabs .nav-link:hover {
		color: #cda89b !important;
	}
	
	.nav-tabs .nav-link.active {
		border: none;
		border-right: 3px solid #cda89b;
		border-radius: 0;
		font-family: "gt m";
	}
	
	.card {
		border: none;
	}
	
	.card .card-header {
		display: none;
	}
	
	.card .collapse {
		display: block;
		margin-left: 30px;
	}
}

@media (max-width: 767px) {
	.page-template-traitement .card-body {
		padding-left: 0;
		padding: 0;
	}
	
	.tab-pane {
		display: block !important;
		opacity: 1 !important;
		border: none !important;
	}
	
	.card-header {
		padding: 15px 0 !important;
		margin-bottom: 0;
		border-radius: 0 !important;
		background-color: transparent !important;
		border-bottom: 1px solid rgba(221, 194, 185, .5) !important;
	}
	
	.card-header h5 a {
		color: #f8f6f6;
		line-height: 35px;
		font-size: 16px;
		font-family: "gt";
		text-transform: initial;
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	
	.card-header h5 a:after {
		content: "+";
		font-family: "Berling";
		display: block;
		display: block;
		align-items: center;
		font-size: 35px;
		position: relative;
		transform: rotate(0deg);
		-webkit-transition: all .5s ease;
		transition: all .5s ease;
		top: 0;
		text-align: center;
		float: right;
		margin-left: 20px;
		color: #cfa89b;
	}
	
	.c-link.minus:after {
		content: "-";
	}
	
	.c-link.plus:after {
		content: "+";
	}
	
	.collapse h2.pink {
		padding-top: 30px;
	}
}

.card {
	background-color: transparent !important;
}

.traitements {
	background: #101023;
}

.traitements, .before-after {
	padding: 100px 0px;
}

.before-after {
	padding-bottom: 150px;
}

.card-body h3 {
	font-size: 30px;
}

.card-body h3.pink {
	font-family: "gt";
}

.page-template-traitement  .card-body {
	padding-left: 0;
}

.section_intro {
	background: #eee0dc;
}

.testimonial, .gift-card {
	background: #101023;
	padding: 100px 0px;
}

.gift-card {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.boxe-testimonial em {
	color: #cda89b;
}

.procedure h3.white:after {
	content: "";
	height: 1px;
	width: 100%;
	background-color: #cda89b;
	display: block;
	margin-left: 5px;
	opacity: .5;
}

.telephone.mobile {
	margin-left: 0 !important;
	cursor: pointer;
	border: none;
	width: auto;
	margin-right: 0;
	margin-top: 2px;
	z-index: 9;
}

.telephone.mobile svg {
	fill: #cfa89b;
}

.telephone.mobile:after {
	content: none;
}

.rdv-mobile {
	width: 55px;
}

.menu-active .telephone.mobile {
	border: none !important;
}

.menu-active .telephone.mobile svg {
	fill: #cfa89b !important;
}

.rdv-mobile  svg {
	fill: #cfa89b;
}

.heateor_sss_sharing_title {
	font-family: "gt";
	font-size: 16px;
	color: #cfa89b;
	padding-bottom: 10px;
	font-weight: inherit !important;
}

.m-menu {
	padding: 0;
}

.under_img {
	padding: 25px 15px;
}

.rate_md {
	background-image: url("https://cdn-ikpfoeb.nitrocdn.com/RBVHapycvDTFMZDxiRPpQDIpMEAeLNzm/assets/images/optimized/rev-7ea84fa/www.clinicare.ca/wp-content/themes/clinicare-2-0/layouts/images/header-logo.svg");
	width: 150px;
	display: block;
	height: 30px;
	background-size: contain;
	background-repeat: no-repeat;
}

.rate_md.nitro-lazy {
	background-image: none !important;
}

html.pum-open.pum-open-overlay.pum-open-scrollable body>[aria-hidden] {
	padding-right: 0 !important;
}

.over_link_blog {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
}

.btn-trait {
	text-align: center;
	color: #f8f6f6;
	font-family: "gt m";
	z-index: 0;
	transition: all .9s cubic-bezier(.645, .045, .355, 1);
	width: 100%;
	height: 100%;
	vertical-align: middle;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 10px;
}

.btn-trait:hover {
	color: #f8f6f6 !important;
}

.btn_col {
	border: 1px solid rgba(248, 246, 246, .5);
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 45px;
	margin: 10px;
	transition: all .9s cubic-bezier(.645, .045, .355, 1);
	vertical-align: middle;
	padding: 0;
}

.btn_col:hover .btn-trait {
	color: #f8f6f6 !important;
}

.btn_col:hover {
	text-decoration: none !important;
	border: 1px solid #cfa89b;
	background-color: #cfa89b;
}

.card-body h3.pink {
	font-family: "gt";
	font-size: 26px;
}

.tab-content h2 {
	font-size: 40px;
}

.mc4wp-success p {
	color: #cfa89b;
	padding-top: 25px;
	font-family: "Berling";
	text-align: center;
}

.nouveau a:after {
	content: "nouveau";
	font-size: 10px;
	color: #f8f6f6;
	background-color: #101023;
	padding: 3px 4px;
	text-transform: uppercase;
	margin-left: 10px;
	font-family: "gt m";
}

.new a:after {
	content: "new";
	font-size: 10px;
	color: #f8f6f6;
	background-color: #101023;
	padding: 3px 4px;
	text-transform: uppercase;
	margin-left: 10px;
	font-family: "gt m";
}

.pum-container h6 {
	font-size: 10px;
	color: #cfa89b;
	margin-bottom: 0;
	line-height: 14px;
	letter-spacing: .1px;
	font-family: "gt";
}

.pum-container form br {
	display: none;
}

.pum-container h2 {
	color: #cfa89b;
	font-size: 36px;
}

.pum-container input[type="email"] {
	color: #cfa89b;
}

#menu-visible-menu, #menu-visible-menu-en {
	display: flex;
}

.cvisible-menu .current_page_item a:before {
	display: none;
}

.page-template-contact .site {
	overflow-x: initial;
}

.menu-menu-footer-en {
	text-align: center;
}

.before-after h6 {
	font-size: 14px;
	font-family: "gt l i";
}

.single-item .slick-dots {
	left: -25%;
}

.single-item .slick-track {
	display: flex;
	justify-content: center;
	align-items: center;
}

.slick-dots li.slick-active button:before {
	color: #cfa89b;
	opacity: 1;
}

.slick-dots li button:before {
	font-size: 10px;
	color: #cfa89b;
	transform: scale(1);
	transition: all .9s cubic-bezier(.645, .045, .355, 1);
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
	transform: scale(1.2);
}

.testimonial-slide2 .slick-dots {
	bottom: 15px;
}

.page-template-blank .lang-item a {
	color: #cfa89b;
}

.page-template-blank ul li::before {
	content: "";
	font-weight: bold;
	display: inline-block;
	width: 5px;
	height: 5px;
	background: #cfa79b;
	border-radius: 100%;
	margin-right: 1em;
}

.page-template-blank #content ul {
	padding-left: 15px;
	margin-bottom: 1.5em;
}

.page-template-blank ul li {
	list-style: none;
	display: flex;
	justify-content: left;
	align-items: center;
	font-family: "gt";
	font-size: 16px;
	line-height: 25px;
}

#masthead ul li::before {
	display: none;
}

ol li {
	counter-increment: list;
	list-style-type: none;
	position: relative;
}

ol li:before {
	color: #cfa79b;
	content: counter(list) ".";
	left: -32px;
	position: absolute;
	text-align: right;
	width: 26px;
	font-family: "Berling";
}

ol {
	margin-left: 0;
}

.n-menu li a {
	font-family: "gt";
	color: #cfa89b;
	line-height: 1.5;
	font-size: 18px;
}

.n-menu .custom-menu-class ul {
	text-align: center;
}

.c-overlay_text li a {
	font-family: "gt";
	color: #cfa89b;
	line-height: 1.5;
	font-size: 18px;
}

.c-overlay_text li a:hover {
	font-family: "gt";
	color: #f8f6f6;
	line-height: 1.5;
	font-size: 18px;
}

.c-overlay_text .custom-menu-class {
	padding-top: 50px;
	position: absolute;
	height: auto;
	width: 100%;
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50% 0%;
	-ms-transform-origin: 50% 0%;
	transform-origin: 50% 0%;
	-webkit-transition: -webkit-transform .5s cubic-bezier(.165, .84, .44, 1);
	transition: -webkit-transform .5s cubic-bezier(.165, .84, .44, 1);
	transition: transform .5s cubic-bezier(.165, .84, .44, 1);
	transition: transform .5s cubic-bezier(.165, .84, .44, 1), -webkit-transform .5s cubic-bezier(.165, .84, .44, 1);
	transition: transform .5s cubic-bezier(.165, .84, .44, 1), -webkit-transform .5s cubic-bezier(.165, .84, .44, 1);
	-o-transition: transform .5s cubic-bezier(.165, .84, .44, 1);
}

.n-menu #menu-visage-1, .n-menu #menu-soins-1, .n-menu #menu-corps-1, .n-menu  #menu-face-1, .n-menu #menu-skin-care-1, .n-menu #menu-body-1 {
	position: absolute;
	height: auto;
	width: 100%;
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50% 0%;
	-ms-transform-origin: 50% 0%;
	transform-origin: 50% 0%;
	-webkit-transition: -webkit-transform .5s cubic-bezier(.165, .84, .44, 1);
	transition: -webkit-transform .5s cubic-bezier(.165, .84, .44, 1);
	transition: transform .5s cubic-bezier(.165, .84, .44, 1);
	transition: transform .5s cubic-bezier(.165, .84, .44, 1), -webkit-transform .5s cubic-bezier(.165, .84, .44, 1);
	transition: transform .5s cubic-bezier(.165, .84, .44, 1), -webkit-transform .5s cubic-bezier(.165, .84, .44, 1);
	-o-transition: transform .5s cubic-bezier(.165, .84, .44, 1);
}

.display-menu .c-overlay_text .custom-menu-class, .v-m-display .n-menu #menu-visage-1, .s-m-display .n-menu #menu-soins-1, .c-m-display .n-menu #menu-corps-1, .v-m-display .n-menu  #menu-face-1, .s-m-display .n-menu #menu-skin-care-1, .c-m-display .n-menu #menu-body-1 {
	position: relative;
	height: auto;
	width: 100%;
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
	-webkit-transform-origin: 50% 0%;
	-ms-transform-origin: 50% 0%;
	transform-origin: 50% 0%;
	-webkit-transition: -webkit-transform .5s cubic-bezier(.165, .84, .44, 1);
	transition: -webkit-transform .5s cubic-bezier(.165, .84, .44, 1);
	transition: transform .5s cubic-bezier(.165, .84, .44, 1);
	transition: transform .5s cubic-bezier(.165, .84, .44, 1), -webkit-transform .5s cubic-bezier(.165, .84, .44, 1);
	transition: transform .5s cubic-bezier(.165, .84, .44, 1), -webkit-transform .5s cubic-bezier(.165, .84, .44, 1);
	-o-transition: transform .5s cubic-bezier(.165, .84, .44, 1);
}

.c-overlay_text .custom-menu-class ul li, .n-menu #menu-visage-1 li, .n-menu #menu-soins-1 li, .n-menu #menu-corps-1 li, .n-menu  #menu-face-1 li, .n-menu #menu-skin-care-1 li, .n-menu #menu-body-1 li {
	opacity: 0;
	-webkit-transition: all 0s cubic-bezier(.165, .84, .44, 1) 0s;
	-o-transition: all 0s cubic-bezier(.165, .84, .44, 1) 0s;
	transition: all 0s cubic-bezier(.165, .84, .44, 1) 0s;
	transform: translateY(50px);
}

.display-menu .c-overlay_text .custom-menu-class ul li, .v-m-display .n-menu #menu-visage-1 li, .s-m-display .n-menu #menu-soins-1 li, .c-m-display .n-menu #menu-corps-1 li, .v-m-display .n-menu  #menu-face-1 li, .s-m-display .n-menu #menu-skin-care-1 li, .c-m-display .n-menu #menu-body-1 li {
	opacity: 1;
	transform: translateY(0px);
	-webkit-transition: all .5s cubic-bezier(.25, .46, .45, .94) .35s;
	-o-transition: all .5s cubic-bezier(.25, .46, .45, .94) .35s;
	transition: all .5s cubic-bezier(.25, .46, .45, .94) .35s;
}

.display-menu .c-overlay_text .custom-menu-class ul li:nth-child(1) {
	transition-delay: .3s;
}

.display-menu .c-overlay_text .custom-menu-class ul li:nth-child(2) {
	transition-delay: .4s;
}

.display-menu .c-overlay_text .custom-menu-class ul li:nth-child(3) {
	transition-delay: .5s;
}

.display-menu .c-overlay_text .custom-menu-class ul li:nth-child(4) {
	transition-delay: .6s;
}

.display-menu .c-overlay_text .custom-menu-class ul li:nth-child(5) {
	transition-delay: .7s;
}

.display-menu .c-overlay_text .custom-menu-class ul li:nth-child(6) {
	transition-delay: .8s;
}

.display-menu .c-overlay_text .custom-menu-class ul li:nth-child(7) {
	transition-delay: .9s;
}

.display-menu .c-overlay_text .custom-menu-class ul li:nth-child(8) {
	transition-delay: 1s;
}

.display-menu .c-overlay_text .custom-menu-class ul li:nth-child(9) {
	transition-delay: 1.1s;
}

.display-menu .c-overlay_text .custom-menu-class ul li:nth-child(10) {
	transition-delay: 1.2s;
}

.v-m-display .n-menu #menu-visage-1 li:nth-child(1), .s-m-display .n-menu #menu-soins-1 li:nth-child(1), .c-m-display .n-menu #menu-corps-1 li:nth-child(1), .v-m-display .n-menu  #menu-face-1 li:nth-child(1), .s-m-display .n-menu #menu-skin-care-1 li:nth-child(1), .c-m-display .n-menu #menu-body-1 li:nth-child(1) {
	transition-delay: .3s;
}

.v-m-display  .n-menu  #menu-visage-1 li:nth-child(2), .s-m-display .n-menu #menu-soins-1 li:nth-child(2), .c-m-display .n-menu #menu-corps-1 li:nth-child(2), .v-m-display .n-menu  #menu-face-1 li:nth-child(2), .s-m-display .n-menu #menu-skin-care-1 li:nth-child(2), .c-m-display .n-menu #menu-body-1 li:nth-child(2) {
	transition-delay: .4s;
}

.v-m-display .n-menu  #menu-visage-1 li:nth-child(3), .s-m-display .n-menu #menu-soins-1 li:nth-child(3), .c-m-display .n-menu #menu-corps-1 li:nth-child(3), .v-m-display .n-menu  #menu-face-1 li:nth-child(3), .s-m-display .n-menu #menu-skin-care-1 li:nth-child(3), .c-m-display .n-menu #menu-body-1 li:nth-child(3) {
	transition-delay: .5s;
}

.v-m-display  .n-menu  #menu-visage-1 li:nth-child(4), .s-m-display .n-menu #menu-soins-1 li:nth-child(4), .c-m-display .n-menu #menu-corps-1 li:nth-child(4), .v-m-display .n-menu  #menu-face-1 li:nth-child(4), .s-m-display .n-menu #menu-skin-care-1 li:nth-child(4), .c-m-display .n-menu #menu-body-1 li:nth-child(4) {
	transition-delay: .6s;
}

.v-m-display  .n-menu  #menu-visage-1 li:nth-child(5), .s-m-display .n-menu #menu-soins-1 li:nth-child(5), .c-m-display .n-menu #menu-corps-1 li:nth-child(5), .v-m-display .n-menu  #menu-face-1 li:nth-child(5), .s-m-display .n-menu #menu-skin-care-1 li:nth-child(5), .c-m-display .n-menu #menu-body-1 li:nth-child(5) {
	transition-delay: .7s;
}

.v-m-display  .n-menu #menu-visage-1 li:nth-child(6), .s-m-display .n-menu #menu-soins-1 li:nth-child(6), .c-m-display .n-menu #menu-corps-1 li:nth-child(6), .v-m-display .n-menu  #menu-face-1 li:nth-child(6), .s-m-display .n-menu #menu-skin-care-1 li:nth-child(6), .c-m-display .n-menu #menu-body-1 li:nth-child(6) {
	transition-delay: .8s;
}

.v-m-display  .n-menu  #menu-visage-1 li:nth-child(7), .s-m-display .n-menu #menu-soins-1 li:nth-child(7), .c-m-display .n-menu #menu-corps-1 li:nth-child(7), .v-m-display .n-menu  #menu-face-1 li:nth-child(7), .s-m-display .n-menu #menu-skin-care-1 li:nth-child(7), .c-m-display .n-menu #menu-body-1 li:nth-child(7) {
	transition-delay: .9s;
}

.v-m-display  .n-menu #menu-visage-1 li:nth-child(8), .s-m-display .n-menu #menu-soins-1 li:nth-child(8), .c-m-display .n-menu #menu-corps-1 li:nth-child(8), .v-m-display .n-menu  #menu-face-1 li:nth-child(8), .s-m-display .n-menu #menu-skin-care-1 li:nth-child(8), .c-m-display .n-menu #menu-body-1 li:nth-child(8) {
	transition-delay: 1s;
}

.v-m-display  .n-menu  #menu-visage-1 li:nth-child(9), .s-m-display .n-menu #menu-soins-1 li:nth-child(9), .c-m-display .n-menu #menu-corps-1 li:nth-child(9), .v-m-display .n-menu  #menu-face-1 li:nth-child(9), .s-m-display .n-menu #menu-skin-care-1 li:nth-child(9), .c-m-display .n-menu #menu-body-1 li:nth-child(9) {
	transition-delay: 1.1s;
}

.v-m-display  .n-menu  #menu-visage-1 li:nth-child(10), .s-m-display .n-menu #menu-soins-1 li:nth-child(10), .c-m-display .n-menu #menu-corps-1 li:nth-child(10), .v-m-display .n-menu  #menu-face-1 li:nth-child(10), .s-m-display .n-menu #menu-skin-care-1 li:nth-child(10), .c-m-display .n-menu #menu-body-1 li:nth-child(10) {
	transition-delay: 1.2s;
}

a:not([href]) {
	color: #cfa89b !important;
}

a:not([href]):hover {
	color: #f8f6f6 !important;
}

.m-close {
	display: none;
	margin-bottom: 15px !important;
	width: 32px;
	height: 32px;
	border: 1px solid;
	border: 1px solid #cfa89b;
	justify-content: center;
	align-items: center;
	position: relative;
	border-radius: 100%;
	margin: 0 auto;
}

.v-m-display .m-v-close, .s-m-display .m-s-close, .c-m-display .m-c-close {
	display: flex;
}

.m-close:before, .m-close:after {
	position: absolute;
	left: 14px;
	content: " ";
	height: 18px;
	width: 2px;
	background-color: #cfa89b;
}

.m-close:before {
	transform: rotate(45deg);
}

.m-close:after {
	transform: rotate(-45deg);
}

.v-m-display  .n-menu .v-btn, .s-m-display .n-menu .s-btn, .c-m-display .n-menu .c-btn {
	display: none;
}

.error404 .text-mask, .page-template-404 .text-mask {
	font-size: 250px !important;
	font-family: "fashion fetish heavy";
	margin: 0 !important;
}

.img-box-team img {
	width: 500px;
}

.img-box img {
	height: 1000px;
}

.radio-450 {
	display: none !important;
}

.intro_contact a {
	color: #101023 !important;
}

@media only screen and (min-width: 600px) {
	.contact-form input[type=email], .contact-form input[type=tel], .contact-form input[type=text], .contact-form input[type=url] {
		width: 100% !important;
		padding: 0;
	}
}

.home .navbar {
	background: linear-gradient(-180deg, rgba(16, 16, 32, 85%) 0%, rgba(16, 16, 32, .75) 20%, rgba(16, 16, 32, 0) 100%);
}

.pum-content a {
	color: #cfa89b;
}
