:root {
	--color-text: #434A54;
	--color-silver: #F3EFF5;
	--color-blue: #213F7F;
	--color-light-blue: #437CBF;

	--color-turquoise: #67BFB8;

	--height-menu: 88px;

	--container-widht: 1240px;

	--margin-left-global: calc((100vw - 1240px) / 2);
	--margin-right-global: calc((100vw - 1240px) / 2);


	--margin-title-bottom: 32px;

	--transition-base: all .3s linear 0s;
}

@font-face {
	font-family: 'Aventa';
	src: local('Aventa Light'), local('Aventa-Light'),
	url('../fonts/Aventa/Aventa-Light/Aventa-Light.woff2') format('woff2'),
	url('../fonts/Aventa/Aventa-Light/Aventa-Light.woff') format('woff'),
	url('../fonts/Aventa/Aventa-Light/Aventa-Light.ttf') format('truetype');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Aventa';
	src: local('Aventa Regular'), local('Aventa-Regular'),
	url('../fonts/Aventa/Aventa-Regular/Aventa-Regular.woff2') format('woff2'),
	url('../fonts/Aventa/Aventa-Regular/Aventa-Regular.woff') format('woff'),
	url('../fonts/Aventa/Aventa-Regular/Aventa-Regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Aventa';
	src: local('Aventa Medium'), local('Aventa-Medium'),
	url('../fonts/Aventa/Aventa-Medium/Aventa-Medium.woff2') format('woff2'),
	url('../fonts/Aventa/Aventa-Medium/Aventa-Medium.woff') format('woff'),
	url('../fonts/Aventa/Aventa-Medium/Aventa-Medium.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Aventa';
	src: local('Aventa Bold'), local('Aventa-Bold'),
	url('../fonts/Aventa/Aventa-Bold/Aventa-Bold.woff2') format('woff2'),
	url('../fonts/Aventa/Aventa-Bold/Aventa-Bold.woff') format('woff'),
	url('../fonts/Aventa/Aventa-Bold/Aventa-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
}


*::-webkit-scrollbar {
	width: 5px;
}

*::-webkit-scrollbar-track {
	box-shadow: inset 0 0 3px rgba(160, 157, 125, 0.3);
}

*::-webkit-scrollbar-thumb {
	background-color: var(--color-light-blue);
	outline: 1px solid var(--color-light-blue);
}

body {
	min-width: 320px;
	position: relative;
	line-height: 1;
	font-size: 16px;
	font-family: 'Aventa', sans-serif;
	font-weight: 400;
	/*overflow-x: hidden;*/
	color: var(--color-text);
	background-color: #fff
}

input,
textarea,
button,
select,
a {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

section {
	width: 100%;
	/*overflow: hidden*/
}

main {
	overflow: hidden;
	padding-top: 0

}

.container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: var(--container-widht);
	margin: 0 auto;
	/*padding: 0 20px*/
}

.container-sm {
	width: 890px;
	max-width: calc(100% - 60px);

}
.d-f {
	display: flex;
}
.fd-c {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}
.fd-r {
	flex-direction: row;
}

.ai-fe {
	align-items: flex-end;
}
.ai-fs {
	align-items: flex-start;
}
.ai-c {
	align-items: center;
}

.btn {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 56px;
	border-radius: 10px;
	font-weight: 400;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: 0.005em;
}
.btn.btn-bg {
	background-color: var(--color-blue);
	color: var(--color-silver);
	transition: var(--transition-base);
}


.btn.btn-rdv {
	width: 150px;
}
.btn.w180 {
	width: 180px;
}

.btn.w100p {
	width: 100%;
}
.btn.w50p {
	width: 50%;
}
.btn.btn-bg:hover {
	background: #2D2D2D;
	transition: var(--transition-base);
}
.btn svg {
	margin-left: 15px;
}
.p-x-80 {
	padding: 0 80px;
}


.title-section {
	font-style: normal;
	font-weight: 400;
	font-size: 34px;
	line-height: 120%;
	margin: 0;
}
.title-section.c-white {
	color: var(--color-silver);
}
.title-section.c-black {
	color: var(--color-text);
}

.subtitle-section {
	font-style: normal;
	font-weight: 400;
	font-size: 28px;
	line-height: 120%;
	letter-spacing: 0.0025em;
	font-feature-settings: 'liga' off;
	margin: 0;
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 105vh;
	background: linear-gradient(273.52deg, #437CBF 5.26%, #447DBF 9.41%, #457FBF 13.12%, #4681BF 16.56%, #4783BE 19.88%, #4885BE 23.24%, #4988BE 26.8%, #4B8BBD 30.71%, #4D8FBD 35.13%, #5094BD 40.22%, #5299BC 46.13%, #569FBB 53.02%, #59A5BB 61.05%, #5DADBA 70.38%, #62B5B9 81.15%, #67BFB8 93.54%);
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(0%);
	z-index: 999;
	transition: var(--transition-base);
}
.preloader.active {
	transform: translateY(-110%);
	opacity: 0;
	transition: var(--transition-base);
}
.preloader .box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
}
.preloader .logo {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	margin-bottom: 46px;
}
.preloader .logo .logo-icon {
	margin-right: 32px;
	transform: translateX(335px);
	transition: all .7s linear 0s;
}
.preloader .logo .logo-txt {
	opacity: 0;
	transform: translateX(335px);
	transition: all .7s linear 0s;
}

.preloader .logo .logo-icon.show {
	transform: translateX(0);
	transition: all .7s linear 0s;
}
.preloader .logo .logo-txt.show {
	opacity: 1;
	transform: translateX(0);
	transition: all .7s linear 0s;
}

.preloader .box .counter {
	font-style: normal;
	font-weight: 400;
	font-size: 28px;
	line-height: 120%;
	display: flex;
	align-items: center;
	text-align: center;
	letter-spacing: 0.0025em;
	font-feature-settings: 'liga' off;
	color: #F3EFF5;
	margin: 0;
}


h1,
h2,
h3,
h4,
h5,
p {
	cursor: default;
}

.article-hero {
	margin: 0 0 26px
}

.article-hero img {
	width: 100%;
	overflow: hidden;
}

.breadcrumbs {
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	margin: 0 0 48px 0;
	padding: 0;
}

.breadcrumbs li {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 0 !important;
}

.breadcrumbs li:before {
	display: none !important;
}

.breadcrumbs li:after {
	content: '|';
	margin: 0 16px;
	display: block;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	text-align: center;
	letter-spacing: 0.025em;
	color: #434A54;
}

.breadcrumbs li:last-child:after {
	display: none;
}

.breadcrumbs li span {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: 0.025em;
	color: #437CBF;
}

.breadcrumbs li a {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: 0.025em;
	color: #434A54;
	transition: var(--transition-base);
}

.breadcrumbs li a:hover {
	color: #437CBF;
	transition: var(--transition-base);
}


.article-content {
	padding-top: 122px;
	padding-bottom: 100px;
	min-height: calc(100vh - 135px);
}
.article-content .container-sm {
	position: relative;
	width: 816px;
	max-width: 100%;
	z-index: 2;
}

.article-content .btn {
	width: 180px;
	margin: 60px auto;
}

.wpcf7-spinner {
    margin-top: 5px;
    left: calc(50% - 35px);
}

.article-content .img-article {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
}
.article-content .img-article img {
	width: 100%;
	border-radius: 24px;
	height: auto;
}
.article-content .title-article {
	font-style: normal;
	font-weight: 400;
	font-size: 42px;
	line-height: 120%;
	text-align: center;
	color: #434a54;
	margin: 0 0 22px 0;
}

.article-content .breadcrumbs {
	margin-bottom: 48px;
}
.article-content .breadcrumbs li {
	width: auto !important;
}
.article-content p {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	text-align: justify;
	letter-spacing: 0.025em;
	color: #434A54;
	margin: 0 0 10px
}

.article-content p a {
	color: var(--color-light-blue);
}

.article-content p:last-child {
	margin-bottom: 0
}

.article-content .wp-block-image {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 40px 0 40px 0;
	width: 100%;
}
.article-content .wp-block-image img {
	width: 100%;
	border-radius: 24px;
}

.article-content h2 {
	margin: 40px 0 32px
}
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
	font-style: normal;
	font-weight: 400;
	margin: 32px 0 24px
}

.article-content h2 strong,
.article-content h3 strong,
.article-content h4 strong,
.article-content h5 strong,
.article-content h6 strong {
	font-weight: 500;
}

.article-content h2:last-child,
.article-content h3:last-child,
.article-content h4:last-child,
.article-content h5:last-child,
.article-content h6:last-child {
	margin-bottom: 0
}


.article-content h2:first-child,
.article-content h3:first-child,
.article-content h4:first-child,
.article-content h5:first-child,
.article-content h6:first-child {
	margin-top: 0;
}

.article-content h2 {
	font-style: normal;
	font-weight: 400;
	font-size: 34px;
	line-height: 120%;
	color: #434A54;
}

.article-content h3 {
	font-weight: 400;
	font-size: 28px;
	line-height: 120%;
	letter-spacing: 0.0025em;
	font-feature-settings: 'liga' off;
	color: #434A54;
}

.article-content h4 {
	font-size: 20px;
	line-height: 120%;
	letter-spacing: 0.0025em;
	font-feature-settings: 'liga' off;
	color: #434A54;
}

.article-content h5 {
	font-size: 18px;
	line-height: 120%;
	letter-spacing: 0.0025em;
	font-feature-settings: 'liga' off;
	color: #434A54;
}

.article-content ul {
	margin: 5px 0 25px;
	padding: 0 0 0 12px;
	list-style: none;
}

.article-content ul li {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: 0.025em;
	color: #434A54;
	margin-bottom: 4px;
	position: relative;
	width: 100%;
}

.article-content ul li:last-child {
	margin-bottom: 0;
}

.article-content ul li::before {
	content: '';
	width: 2px;
	height: 2px;
	display: block;
	position: absolute;
	left: -10px;
	top: 9px;
	border-radius: 50%;
	background-color: #434A54;
}

.error-page {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
}

.error-page .container {
	height: calc(100vh - 130px);
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.error-page .container .error-page__number {
	font-size: 120px;
	line-height: 120px;
	font-weight: 900;
	text-align: center;
	margin: 0 0 20px 0;
}

.error-page .container .error-page__title {
	text-align: center;
	font-size: 36px;
	line-height: 36px;
	margin: 0 0 30px 0;
}

.error-page .container .error-page__subtitle {
	text-align: center;
	font-size: 24px;
	line-height: 26px;
	font-weight: 400;
	margin: 0 0 50px 0;
}

.error-page .btn {
	/*width: 100%;*/
	width: 280px;
	max-width: 100%;
}

.widget-box {
	position: fixed;
	display: flex;
	background: rgba(67, 124, 191, 0.5);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	height: 216px;
	right: 120px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	z-index: 10;
	padding: 8px;
}
.widget-box ul {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	margin: 0;
	padding: 0;
	list-style: none;
	/*gap: 16px;*/
}
.widget-box ul li {

}
.widget-box ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 56px;
	min-width: 56px;
	padding: 14px;
	background-color: rgba(243, 239, 245, 0);
	transition: var(--transition-base);
	border-radius: 10px;
	border: 1px solid #F3EFF5;
}
.widget-box ul li a svg {}
.widget-box ul li a svg path {
	transition: var(--transition-base);
}
.widget-box ul li a span {
	font-weight: 400;
	font-size: 18px;
	line-height: 110%;
	letter-spacing: 0.005em;
	color: var(--color-blue);
	margin-left: 0;
	max-width: 0;
	opacity: 0;
	transition: margin 0.3s ease-out 0.25s, max-width 0.3s ease-out 0.25s, opacity 0.3s ease;
	/*display: none;*/
}

.adaptive-menu,
.traitement-menu {
	position: fixed;
	top: 88px;
	left: 0;
	width: 100%;
	height: 100vh;
	display: none;
	background-color: #fff;
}

.adaptive-menu {
	z-index: 990;
	border-top: 1px solid #F3EFF5;
	transform: translateY(-120%);
	opacity: 0;
	transition: var(--transition-base);
}

.adaptive-menu.active {
	transform: translateY(0%);
	opacity: 1;
	transition: var(--transition-base);
}

.adaptive-menu .bg-menu {
	position: absolute;
	right: 0;
	top: 20px;
	z-index: -1;
}

.adaptive-menu .container {
	padding-top: 60px;
	padding-bottom: 60px;
	flex-direction: column;
	position: relative;
	z-index: 2;
}
.adaptive-menu .menu-items {
	list-style: none;
	margin: 0 0 60px 0;
	padding: 0;
}
.adaptive-menu .menu-items li {
	margin-bottom: 32px;
}
.adaptive-menu .menu-items li:last-child {
	margin-bottom: 0;
}
.adaptive-menu .menu-items li a {
	font-style: normal;
	font-weight: 400;
	font-size: 25px;
	line-height: 120%;
	color: #434A54;
}

.adaptive-menu .info-items {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0 0 60px 0;
}
.adaptive-menu .info-items .info-item {
	display: flex;
	align-items: center;
}
.adaptive-menu .info-items .info-item svg {
	margin-right: 14px;
}
.adaptive-menu .info-items .info-item span {
	font-weight: 400;
	font-size: 18px;
	line-height: 130%;
	letter-spacing: 0.015em;
	color: #437CBF;
}

.traitement-menu {
	display: none;
	border-top: 1px solid #F3EFF5;
	z-index: 991;
	transform: translateX(100%);
	opacity: 0;
	transition: var(--transition-base);
	overflow-y: auto;
}

.traitement-menu.active {
	transform: translateX(0%);
	opacity: 1;
	transition: var(--transition-base);
}

.traitement-menu .bg-menu {
	position: absolute;
	right: 0;
	top: 20px;
	z-index: -1;
}

.traitement-menu .container {
	flex-direction: column;
	position: relative;
	z-index: 2;
	width: 100%;
	padding-left: 15px;
}
.traitement-menu .prev-menu {
	margin-top: 14px;
	background-color: transparent;
	border: none;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.traitement-menu .prev-menu svg {

}
.traitement-menu .title-menu {
	font-weight: 400;
	font-size: 25px;
	line-height: 120%;
	margin: 20px 0 20px 0;
}
.traitement-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.traitement-menu .list-category {
	width: 70%;
}
.traitement-menu .list-category .list-category-item {}
.traitement-menu .list-category .list-category-item span {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 120%;
	padding-top: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #F3EFF5;
	padding-right: 25px;
	transition: var(--transition-base);
}

.traitement-menu .list-category .list-category-item.active span {
	color: #437CBF;
	transition: var(--transition-base);
}

.traitement-menu .list-category .list-category-item span svg {
	transition: var(--transition-base);
}
.traitement-menu .list-category .list-category-item.active span svg {
	transform: rotate(180deg);
	transition: var(--transition-base);
}
.traitement-menu .list-post {
	display: none;
	background-color: #fff;
	margin-left: 30px;
	width: calc(100% - 30px);
	/*margin-bottom: 24px;*/
	/*background-color: red;*/
}
.traitement-menu .list-post .list-post-item {
	padding-right: 25px;
}
.traitement-menu .list-post .list-post-item a {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 400;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: 0.005em;
	color: #437CBF;
	border-bottom: 1px solid #F3EFF5;
	padding-top: 20px;
	padding-bottom: 20px;
}
.traitement-menu .list-post .list-post-item a svg {}

.header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	background-color: #ffffff;
	z-index: 99;
}

.burger {
	background-color: transparent;
	border: none;
	cursor: pointer;
	display: none;
	padding: 0;
}
.burger svg {
	width: 50px;
	height: 50px;
}
.burger .line {
	fill: none;
	stroke: #434A54;
	stroke-width: 6;
	transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
	stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.burger .line1 {
	stroke-dasharray: 60 207;
	stroke-width: 6;
}
.burger .line2 {
	stroke-dasharray: 60 60;
	stroke-width: 6;
}
.burger .line3 {
	stroke-dasharray: 60 207;
	stroke-width: 6;
}
.burger.active .line1 {
	stroke-dasharray: 90 207;
	stroke-dashoffset: -134;
	stroke-width: 6;
}
.burger.active .line2 {
	stroke-dasharray: 1 60;
	stroke-dashoffset: -30;
	stroke-width: 6;
}
.burger.active .line3 {
	stroke-dasharray: 90 207;
	stroke-dashoffset: -134;
	stroke-width: 6;
}

.header .container {
	justify-content: space-between;
	align-items: center;
	height: var(--height-menu);
}
.header ul {
	list-style: none;
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
}
.header .logo {}
.header .logo .logo-desktop {}
.header .logo .logo-mobile {
	display: none;
}
.header .nav {}
.header .menu-items {}
.header .menu-items li {
	margin-right: 40px;
}
.header .menu-items li:last-child {
	margin-right: 0;
}
.header .menu-items li a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: var(--height-menu);
	font-size: 18px;
	line-height: 130%;
	letter-spacing: 0.015em;
}
.header .menu-items li a:after {
	content: '';
	width: 100%;
	height: 8px;
	background-color: var(--color-blue);
	border-radius: 0px 0px 10px 10px;
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(-120%);
	opacity: 0;
	transition: var(--transition-base);
}
.header .menu-items li a:hover {
	color: var(--color-blue);
}
.header .menu-items li a:hover:after {
	transform: translateY(0);
	opacity: 1;
	transition: var(--transition-base);
}

.hero-section {
	margin-top: var(--height-menu);
	max-height: calc(100vh - var(--height-menu));
	overflow: hidden;
	position: relative;
	width: 100%;
}

.hero-section .sound {
	border-radius: 50%;
	bottom: 88px;
	height: 40px;
	position: absolute;
	left: 5%;
	width: 40px;
	z-index: 3;
	cursor: pointer;
}

.hero-section .sound svg {
	height: 100%;
	width: 100%
}

.hero-section .sound svg circle {
	fill: transparent;
	transition: var(--transition-base)
}

.hero-section .sound svg:hover path {
	fill: var(--color-light-blue);
	transition: var(--transition-base)
}


.hero-section .sound svg .unmute, .hero-section .sound.active svg .mute {
	display: none
}

.hero-section .sound.active svg .unmute {
	display: block
}

.hero-section .video-preview {
	height: 0;
	max-width: 100%;
	overflow: hidden;
	padding-bottom: 56%;
	position: relative
}

.hero-section iframe {
	height: 102%;
	left: -1%;
	pointer-events: none;
	position: absolute;
	width: 102%;
	z-index: 1
}

.cabinet-dentaire-section {
	margin-top: 40px;
	margin-bottom: 40px;
}
.cabinet-dentaire-section .wrapper {
	display: flex;
	align-items: center;
	width: 100%;
}
.cabinet-dentaire-section .left {
	display: flex;
	flex-direction: column;
	width: 60%;
	padding-left: var(--margin-left-global);
	padding-right: 80px;
}
.cabinet-dentaire-section .left .title-section {
	font-style: normal;
	font-weight: 400;
	font-size: 42px;
	line-height: 120%;
	color: var(--color-text);
	margin: 0 0 32px 0;
}
.cabinet-dentaire-section .left .desc {}
.cabinet-dentaire-section .left .desc p {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	color: var(--color-text);
	text-align: justify;
	letter-spacing: 0.025em;
	margin: 0 0 20px 0;
}
.cabinet-dentaire-section .left .desc p:last-child {
	margin-bottom: 0;
}
.cabinet-dentaire-section .right {
	width: 40%;
	padding-right: calc(var(--margin-left-global) / 1.7);
}
.cabinet-dentaire-section .right svg {
	width: 100%;
}

.notre-quipe-section {}
.quipe-doctor {
	width: 100%;
	margin-bottom: 75px;
}
.quipe-doctor .wrapper {
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
}
.assistanteSwiper-box .bg-mobile,
.quipe-doctor .wrapper .bg-mobile,
.quipe-doctor .desc-mobile {
	display: none;
}
.quipe-doctor .wrapper .bg {
	width: calc(100% - 7vw);
	height: auto;
	position: absolute;
	right: 0;
	top: -11px;
	z-index: 0;
}
.quipe-doctor .wrapper .img {
	width: 50%;
	padding-left: var(--margin-left-global);
	position: relative;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	padding-right: 80px;
}
.quipe-doctor .wrapper .img img {
	width: 88.1%;
}
.quipe-doctor .wrapper .desc {
	padding-top: 50px;
	width: 50%;
	position: relative;
	z-index: 2;
	padding-right: var(--margin-right-global);
	color: var(--color-silver);
}

.quipe-doctor .wrapper .desc .title-section {
	margin-bottom: var(--margin-title-bottom);
}
.quipe-doctor .wrapper .desc .subtitle-section {
	color: var(--color-blue);
	margin-bottom: 16px;
}
.quipe-doctor .text {
	margin-bottom: 40px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.quipe-doctor .text p {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: 0.025em;
	margin: 0 0 8px 0;
}
.quipe-doctor .text ul {
	margin: 0 0 8px 0;
	padding: 0 0 0 25px;
	list-style: none;
}
.quipe-doctor .text ul li {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: 0.025em;
	position: relative;
}
.quipe-doctor .text ul li:before {
	content: '';
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background-color: var(--color-silver);
	position: absolute;
	top: 9px;
	left: -15px;
}
.quipe-doctor .text *:last-child {
	margin-bottom: 0;
}

.assistanteSwiper-box {
	display: none;
}

.assistante-items {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	padding-left: calc(var(--margin-left-global) + 117px);
	margin-bottom: 140px;
}
.assistante-items .assistante-item {
	position: relative;
	z-index: 2;
	margin-right: 128px;
	width: 18.75%;
}
.assistante-items .assistante-item:last-child {
	margin-right: 0;
}
.assistante-items .assistante-item img {
	width: 100%;
}
.assistante-items .assistante-item .info {
	position: absolute;
	right: -50px;
	bottom: 24px;
	color: var(--color-silver);
}
.assistante-items .assistante-item .info .title {
	font-style: normal;
	font-weight: 400;
	font-size: 34px;
	line-height: 120%;
	margin: 0;
}
.assistante-items .assistante-item .info .office {
	font-style: normal;
	font-weight: 400;
	font-size: 23px;
	line-height: 120%;
	letter-spacing: 0.0015em;
	margin: 0;
}
.assistante-items .bg {
	width: calc(100% - 7vw);
	height: auto;
	position: absolute;
	left: 0;
	top: -15px;
	z-index: 0;
}

.nos-valeurs-section {
	padding: 80px 0;
	background: radial-gradient(77.89% 80.93% at 117.55% 100%, #64203C 0%, rgba(100, 32, 60, 0) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */, radial-gradient(77.62% 180.16% at -22.14% -23.2%, #03667B 0%, rgba(3, 102, 123, 0) 100%), #08213F;
	position: relative;
	color: var(--color-silver);
}

.nos-valeurs-section .valeursSwiper-box,
.nos-valeurs-section .expertisesSwiper-box {
	display: none;
}
.nos-valeurs-section .icon-one {
	position: absolute;
	top: 0;
	left: 0;
}
.nos-valeurs-section .icon-two {
	position: absolute;
	right: 0;
	bottom: 150px;
}
.nos-valeurs-section .container {
	align-items: center;
}
.nos-valeurs-section .title-section {
	margin-bottom: var(--margin-title-bottom);
}
.nos-valeurs-section .desc-text {
	width: 50%;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	text-align: justify;
	letter-spacing: 0.025em;
	margin: 0 0 32px 0;
}
.nos-valeurs-section .valeurs-items {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 32px;
	margin-bottom: 140px;
	position: relative;
	z-index: 2;
}
.nos-valeurs-section .valeurs-items .valeurs-item {
	width: 100%;
}
.nos-valeurs-section .valeurs-items .valeurs-item .img {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 32px;
	position: relative;
}
.nos-valeurs-section .valeurs-items .valeurs-item .img img {
	border-radius: 16px;
	overflow: hidden;
	width: 100%;
	height: auto;
}
.nos-valeurs-section .valeurs-items .valeurs-item .img .hover {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 50px;
	background: linear-gradient(153.13deg, rgba(0, 255, 235, 0.9) 2.72%, rgba(0, 117, 255, 0.9) 98.89%);
	box-shadow: 0px 20px 20px -12px rgba(0, 0, 0, 0.8);
	border-radius: 16px;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	padding: 20px 52px;
	opacity: 0;
	transition: var(--transition-base);
}

.nos-valeurs-section .valeurs-items .valeurs-item:hover .img .hover {
	opacity: 1;
	transition: var(--transition-base);
}
.nos-valeurs-section .valeurs-items .valeurs-item .img .hover p {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	text-align: justify;
	letter-spacing: 0.025em;
	margin: 0;
}

.nos-valeurs-section .valeurs-items .valeurs-item .title {
	font-style: normal;
	font-weight: 400;
	font-size: 28px;
	line-height: 120%;
	text-align: center;
	letter-spacing: 0.0025em;
	font-feature-settings: 'liga' off;
	color: #67BFB8;
	margin: 0;
}
.nos-valeurs-section .expertises-items {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 32px;
}
.nos-valeurs-section .expertises-item {
	width: 100%;
	border-radius: 16px;
	border-color: #67BFB8;
	padding: 0 0 24px 0;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	transition: var(--transition-base);
}
.nos-valeurs-section .expertises-item:after {
	content: '';
	position: absolute;
	width: calc(100% + 3px);
	height: calc(100% + 43px);
	top: -40px;
	left: -1px;
	border-radius: 16px;
	background: linear-gradient(273.52deg, #437CBF 5.26%, #447DBF 9.41%, #457FBF 13.12%, #4681BF 16.56%, #4783BE 19.88%, #4885BE 23.24%, #4988BE 26.8%, #4B8BBD 30.71%, #4D8FBD 35.13%, #5094BD 40.22%, #5299BC 46.13%, #569FBB 53.02%, #59A5BB 61.05%, #5DADBA 70.38%, #62B5B9 81.15%, #67BFB8 93.54%);
	opacity: 0;
	z-index: 0;
	transition: var(--transition-base);
}
.nos-valeurs-section .expertises-item a {
	position: absolute;
	z-index: 3;
	width: calc(100% + 3px);
	height: calc(100% + 43px);
	top: -40px;
	left: -1px;
	border-radius: 16px;
}
.nos-valeurs-section .expertises-item .count {
	font-style: normal;
	font-weight: 800;
	font-size: 64px;
	line-height: 120%;
	color: #67BFB8;
	padding: 0 16px;
	margin-left: 10px;
	transition: var(--transition-base);
	position: relative;
	z-index: 1;
}
.nos-valeurs-section .expertises-item .title {
	font-style: normal;
	font-weight: 400;
	font-size: 28px;
	line-height: 120%;
	letter-spacing: 0.0025em;
	font-feature-settings: 'liga' off;
	color: #67BFB8;
	margin: 0 0 16px 0;
	padding: 0 32px;
	transition: var(--transition-base);
	position: relative;
	z-index: 1;
}
.nos-valeurs-section .expertises-item .text {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	text-align: justify;
	letter-spacing: 0.025em;
	width: 100%;
	color: #67BFB8;
	padding: 0 32px;
	margin: 0 0 10px 0;
	transition: var(--transition-base);
	position: relative;
	z-index: 1;
}

.nos-valeurs-section .expertises-item .link {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 0 32px;
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: 0.005em;
	color: #FFFFFF;
	margin: 0;
	position: relative;
	z-index: 2;
	opacity: 0;
	transition: var(--transition-base);
}
.nos-valeurs-section .expertises-item .link svg {
	margin-left: 12px;
}

.nos-valeurs-section .expertises-item:hover {
	border-color: transparent;
	/*border: none;*/
	transition: var(--transition-base);
}

.nos-valeurs-section .expertises-item:hover:after {
	opacity: 1;
	transition: var(--transition-base);
}

.nos-valeurs-section .expertises-item:hover .count,
.nos-valeurs-section .expertises-item:hover .title,
.nos-valeurs-section .expertises-item:hover .text {
	color: var(--color-silver);
	transition: var(--transition-base);
}

.nos-valeurs-section .expertises-item:hover .link {
	opacity: 1;
	transition: var(--transition-base);
}

.technologie-cabinet-section {
	padding: 100px 0 110px;
	position: relative;
}

.technologie-cabinet-section .bg-desktop {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center left;
	z-index: -1;
}
.technologie-cabinet-section .bg-mobile {
	display: none;
}
.technologie-cabinet-section .title-section {
	margin-bottom: var(--margin-title-bottom);
}
.technologie-cabinet-section .text {
	width: 41%;
	margin-bottom: 40px;
}
.technologie-cabinet-section .text p {
	text-align: justify;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: 0.025em;
	color: var(--color-silver);
	margin: 0 0 15px 0;
}
.technologie-cabinet-section .text p:last-child {
	margin-bottom: 0;
}

.gallery-section {
	/*height: 100vh;*/
	overflow: hidden;
}
.gallery-section .container {
	position: relative;
	justify-content: flex-end;
}
.gallery-section .svg-block {
	position: absolute;
	left: 0;
	top: 0;
}
.gallery-section .svg-block .svg-bg {
	position: absolute;
	left: 0;
	top: -70px;
	z-index: 1;
}
.gallery-section .svg-block .svg-txt {
	position: absolute;
	left: 70px;
	top: 0;
	z-index: 3;
}
.gallery-section .gallerySwiper-box {
	width: calc(100% - 270px);
	margin-top: 140px;
	margin-bottom: 250px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.gallery-section .box-bottom {
	margin: 35px 0 0;
}

.gallery-section .gallerySwiper {
	width: 100%;

}
.gallery-section .swiper-slide {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	/*padding-left: 200px;*/
}
.gallery-section .swiper-slide img {
	width: 100%;
	border-radius: 16px;
}

.gallery-modal {
	display: none;
	/*display: flex;*/
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 99;
	background-color: #fff;
}

.gallery-modal .container {
	/*display: block;*/
	flex-direction: column;
	align-items: flex-end;
}
.gallery-modal .galleryModalSwiper-box {
	width: 100%;
	/*display: flex;*/
	/*flex-direction: column;*/
	/*align-items: center;*/
}
.gallery-modal .gallerySwiper {
	width: 100%;

}
.gallery-modal .swiper-slide {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	/*padding-left: 200px;*/
}
.gallery-modal .swiper-slide img {
	width: 100%;
	border-radius: 16px;
}
.box-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 56px;
	margin: 35px auto 0;
	width: 392px;
}
.box-bottom .gallery-swiper-button-prev {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 56px;
	width: 56px;
	max-width: 56px;
	min-height: 56px;
	cursor: pointer;
}
.box-bottom .gallery-swiper-button-prev svg {
	min-width: 56px;
	width: 56px;
	max-width: 56px;
	min-height: 56px;
	transition: var(--transition-base);
}
.box-bottom .gallery-swiper-button-next {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 56px;
	width: 56px;
	max-width: 56px;
	min-height: 56px;
	cursor: pointer;
}
.box-bottom .gallery-swiper-button-next svg {
	min-width: 56px;
	width: 56px;
	max-width: 56px;
	min-height: 56px;
	transition: var(--transition-base);
}

.box-bottom .gallery-swiper-button-prev:hover svg rect,
.box-bottom .gallery-swiper-button-next:hover svg rect {
	fill: #2D2D2D;
	transition: var(--transition-base);
}
.box-bottom .gallery-swiper-pagination {
	width: auto;
	font-weight: 400;
	font-size: 23px;
	line-height: 120%;
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
	letter-spacing: 0.0015em;
	color: #437cbf;

}
.box-bottom .gallery-swiper-pagination .swiper-pagination-current {
	color: #434A54;
	display: block;
	margin-right: 12px;
}
.box-bottom .gallery-swiper-pagination .swiper-pagination-total {
	display: block;
	margin-left: 12px;
}

.gallery-modal .close {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	border: none;
	margin-bottom: 20px;
}
.gallery-modal .close svg {}

.conscience-section {
	padding: 100px 0;
	position: relative;
}
.sourire-section {
	padding: 167px 0 176px;
	margin-bottom: 140px;
	position: relative;
}
.conscience-section .bg-desktop {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center left;
	z-index: -1;
}
.sourire-section .bg-desktop {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center right;
	z-index: -1;
}

.conscience-section .bg-mobile,
.sourire-section .bg-mobile {
	display: none;
}
.conscience-section .col {
	width: 45%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.sourire-section .col {
	width: 35%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.conscience-section .title-section,
.sourire-section .title-section {
	margin-bottom: var(--margin-title-bottom);
}

.conscience-section .text,
.sourire-section .text {
	margin-bottom: 40px;
}
.conscience-section .text p,
.sourire-section .text p {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	text-align: justify;
	letter-spacing: 0.025em;
	color: var(--color-text);
	margin: 0 0 15px 0;
}
.conscience-section .text p:last-child,
.sourire-section .text p:last-child {
	margin-bottom: 0;
}

.conseils-section {
	color: #fff;
	margin-bottom: 140px;
}
.conseils-section .container {
	width: 1460px;
	max-width: calc(100% - 40px);
	background: radial-gradient(109.26% 260.86% at -21.57% -14.93%, #03667B 0%, rgba(3, 102, 123, 0.993687) 7.42%, rgba(3, 102, 123, 0.977185) 13.61%, rgba(3, 102, 123, 0.950857) 18.81%, rgba(3, 102, 123, 0.915064) 23.3%, rgba(3, 102, 123, 0.870167) 27.33%, rgba(3, 102, 123, 0.816527) 31.16%, rgba(3, 102, 123, 0.754507) 35.07%, rgba(3, 102, 123, 0.684467) 39.29%, rgba(3, 102, 123, 0.606769) 44.11%, rgba(3, 102, 123, 0.521775) 49.78%, rgba(3, 102, 123, 0.429845) 56.55%, rgba(3, 102, 123, 0.331341) 64.7%, rgba(3, 102, 123, 0.226624) 74.49%, rgba(3, 102, 123, 0.116057) 86.17%, rgba(3, 102, 123, 0) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */, radial-gradient(123.75% 129.17% at 131.21% 135.59%, #64203C 0%, rgba(100, 32, 60, 0.993687) 7.42%, rgba(100, 32, 60, 0.977185) 13.61%, rgba(100, 32, 60, 0.950857) 18.81%, rgba(100, 32, 60, 0.915064) 23.3%, rgba(100, 32, 60, 0.870167) 27.33%, rgba(100, 32, 60, 0.816527) 31.16%, rgba(100, 32, 60, 0.754507) 35.07%, rgba(100, 32, 60, 0.684467) 39.29%, rgba(100, 32, 60, 0.606769) 44.11%, rgba(100, 32, 60, 0.521775) 49.78%, rgba(100, 32, 60, 0.429845) 56.55%, rgba(100, 32, 60, 0.331341) 64.7%, rgba(100, 32, 60, 0.226624) 74.49%, rgba(100, 32, 60, 0.116057) 86.17%, rgba(100, 32, 60, 0) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */, #08213F;
	border-radius: 24px;
	padding-top: 80px;
	padding-bottom: 80px;
	align-items: flex-start;
	position: relative;
}


.conseils-section .container:after {
	content: '';
	height: calc(100% - 160px);
	width: 2px;
	background-color: #ffffff;
	position: absolute;
	left: 50%;
	top: 80px;
}

.conseils-section .title-section {
	margin-bottom: var(--margin-title-bottom);
}
.conseils-section .text {
	margin-bottom: 40px;
}
.conseils-section .text p {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	margin: 0 0 15px 0;
	text-align: justify;
	letter-spacing: 0.025em;
}
.conseils-section .text p:last-child {
	margin-bottom: 0;
}
.conseils-section .left {
	width: 50%;
	padding-left: 200px;
	padding-right: 122px;
	position: relative;
}
.conseils-section .left .info-items {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.conseils-section .left .info-items .info-title {
	font-style: normal;
	font-weight: 400;
	font-size: 28px;
	line-height: 120%;
	letter-spacing: 0.0025em;
	font-feature-settings: 'liga' off;
	margin: 0 0 24px 0;
}
.conseils-section .left .info-items .info-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 16px;
	transition: var(--transition-base);
}
.conseils-section .left .info-items .info-item svg {
	margin-right: 13px;
}
.conseils-section .left .info-items .info-item span {
	font-weight: 400;
	font-size: 23px;
	line-height: 120%;
	align-items: center;
	letter-spacing: 0.0015em;
	color: #67BFB8;
}

.conseils-section .left .info-items .info-item:hover {
	opacity: .7;
	transition: var(--transition-base);
}

.conseils-section .left .info-items .info-item:last-child {
	margin-bottom: 0;
}

.conseils-section .right {
	width: 50%;
	padding-left: 122px;
	padding-right: 200px;
}
.conseils-section .right {}
.conseils-section .right {}
.conseils-section .right .btn-box {
	display: flex;
	flex-direction: column;
	gap: 20px
}

.conseils-section .right .btn-box .btn-items {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.parallax-section {
	height: 800px;
	margin-bottom: 140px;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.parallax-section:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: linear-gradient(100.56deg, #437CBE -15.25%, #437EBE -9.41%, #4280BF -4.18%, #4283C0 0.67%, #4286C0 5.35%, #418AC1 10.09%, #408EC2 15.1%, #4093C3 20.62%, #3F99C4 26.85%, #3EA0C6 34.02%, #3DA8C7 42.35%, #3CB0C9 52.06%, #3ABBCB 63.38%, #38C6CE 76.52%, #37D3D0 91.71%, #35E1D4 109.17%);
	mix-blend-mode: hard-light;
}
.parallax-section .bg-mobile {
	display: none;
}
.parallax-section .container {
	position: relative;
	z-index: 3;
	justify-content: center;
	align-items: center;
}
.parallax-section svg {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	z-index: 2;
}
.parallax-section .title-parallax {
	width: 816px;
	max-width: 70%;
	font-style: normal;
	font-weight: 400;
	font-size: 34px;
	line-height: 120%;
	text-align: center;
	color: #FFFFFF;
	margin: 0;
}


.laboratoire-section {
	padding: 167px 0 167px;
	position: relative;
}

.laboratoire-section .bg-desktop {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center left;
	z-index: -1;
}
.laboratoire-section .bg-mobile {
	display: none;
}

.laboratoire-section .col {
	width: 35%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.laboratoire-section .title-section {
	margin-bottom: var(--margin-title-bottom);
}

.laboratoire-section .text {
	margin-bottom: 40px;
}
.laboratoire-section .text p {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	text-align: justify;
	letter-spacing: 0.025em;
	color: var(--color-text);
	margin: 0 0 15px 0;
}
.laboratoire-section .text p:last-child {
	margin-bottom: 0;
}

.acces-section {
	display: flex;
	align-items: center;
}
.acces-section .left {
	width: 50%;
	height: 584px;
	position: relative;
}
.acces-section .left .map {
	background-color: goldenrod;
	width: 100%;
	height: 100%;
}
.acces-section .left .btn {
	position: absolute;
	bottom: 57px;
	left: 0;
	right: 0;
	margin: auto;
	width: 286px;
}

.acces-section .right {
	padding-left: 140px;
	width: 50%;
	padding-right: var(--margin-right-global);
}
.acces-section .title-section {
	margin-bottom: var(--margin-title-bottom);
}
.acces-section .info-items {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 40px;
}
.acces-section .info-items .info-item {
	display: flex;
	align-items: center;
}
.acces-section .info-items .info-item svg {
	margin-right: 14px;
}
.acces-section .info-items .info-item span {
	font-weight: 400;
	font-size: 18px;
	line-height: 130%;
	letter-spacing: 0.015em;
	color: #437CBF;
}
.acces-section .horaires-box {}
.acces-section .horaires-box .title-horaires {
	font-size: 28px;
	line-height: 120%;
	letter-spacing: 0.0025em;
	font-feature-settings: 'liga' off;
	margin: 0 0 24px 0;
}
.acces-section .horaires-box .horaires-items {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.acces-section .horaires-box .horaires-items li {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	display: flex;
	align-items: center;
	letter-spacing: 0.025em;
}
.acces-section .horaires-box .horaires-items li.active {
	color: #437CBF;
}
.acces-section .horaires-box .horaires-items li span {}
.acces-section .horaires-box .horaires-items li span:nth-child(1) {
	width: 74px;
	display: block;
	margin-right: 32px;
}
.acces-section .horaires-box .horaires-items li span:nth-child(2) {}

.contactez-section {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.contactez-section .left {
	width: 50%;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	padding-left: var(--margin-left-global);
}
.contactez-section .left .title-section {
	text-align: center;
	margin-bottom: var(--margin-title-bottom);
}
.contactez-section .right {
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contactez-section .right img {
	width: 100%;
}

.contactez-section .right .bg-mobile {
	display: none;
}
.wpcf7 {
	width: 72%;
}
.wpcf7 p {
	width: 100%;
	margin: 0;
}
.wpcf7 br {
	display: none;
}
.wpcf7 label {
	width: 100%;
	position: relative;
	margin-bottom: 28px;
	display: flex;
	flex-direction: column;
}
.wpcf7-not-valid-tip {
	font-size: 11px;
	margin-left: 5px;
	margin-top: 5px;
}
textarea + .wpcf7-not-valid-tip {
	margin-top: 0;
}
.wpcf7 label .label {
	position: absolute;
	top: -21px;
	left: 0;
	font-style: normal;
	font-weight: 300;
	font-size: 13px;
	line-height: 26px;
	color: #333331;
	opacity: 0;
	transition: var(--transition-base);
}
.wpcf7 label.active-label .label {
	opacity: 1;
	transition: var(--transition-base);
}
.wpcf7 label .wpcf7-form-control-wrap input.wpcf7-text {
	width: 100%;
	height: 56px;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	display: flex;
	align-items: center;
	letter-spacing: 0.025em;
	color: #437CBF;
	background: #FFFFFF;
	border: 2px solid #F3EFF5;
	border-radius: 10px;
	text-indent: 15px;
}
.wpcf7 label.active-label .wpcf7-form-control-wrap input.wpcf7-text,
.wpcf7 label .wpcf7-form-control-wrap input.wpcf7-text:focus {
	border: 2px solid #437CBF;
}
.wpcf7 label .wpcf7-form-control-wrap input.wpcf7-text::placeholder {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	display: flex;
	align-items: center;
	letter-spacing: 0.025em;
	color: #437CBF;
}
.wpcf7 label .wpcf7-form-control-wrap textarea.wpcf7-textarea {
	width: 100%;
	height: 132px;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	display: flex;
	align-items: center;
	letter-spacing: 0.025em;
	color: #437CBF;
	background: #FFFFFF;
	border: 2px solid #F3EFF5;
	border-radius: 10px;
	padding: 15px;
}

.wpcf7 label.active-label .wpcf7-form-control-wrap textarea.wpcf7-textarea,
.wpcf7 label .wpcf7-form-control-wrap textarea.wpcf7-textarea:focus {
	border: 2px solid #437CBF;
}
.wpcf7 label .wpcf7-form-control-wrap textarea.wpcf7-textarea::placeholder {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	display: flex;
	align-items: center;
	letter-spacing: 0.025em;
	color: #437CBF;
}
.wpcf7 form .wpcf7-response-output {
	margin: 20px 0 0;
	font-size: 13px;
	padding: 5px;
}
.wpcf7 .wpcf7-submit {
	margin-top: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 56px;
	width: 100%;
	border-radius: 10px;
	font-weight: 400;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: 0.005em;
	background-color: var(--color-blue);
	color: var(--color-silver);
	transition: var(--transition-base);
}
.wpcf7 .wpcf7-submit:hover {
	background: #2D2D2D;
	transition: var(--transition-base);
}

.footer {
	background-color: var(--color-blue);
}
.footer .container {
	justify-content: space-between;
	align-items: center;
	padding-top: 32px;
	padding-bottom: 32px;
}
.footer .logo {
	width: 30%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.footer .logo svg {
	width: 100%;
	height: auto;
}

.footer .copyright p {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	text-align: right;
	letter-spacing: 0.025em;
	color: #F3EFF5;
	margin: 0;
}

.footer .copyright a:hover {
	opacity: .5;
	transition: var(--transition-base);
}

.main-technologie-page .breadcrumbs {
	margin-bottom: 68px;
}
.main-technologie-page {
	padding-top: 168px;
	margin-bottom: 110px;
}

.main-technologie-page .btn {
	width: 180px;
	margin: auto;
}

.title-technologie-page {
	font-style: normal;
	font-weight: 400;
	font-size: 42px;
	line-height: 120%;
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #434A54;
	margin: 0 0 22px 0;
}

.technologie-page-items {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	gap: 48px;
	width: 100%;
	margin-bottom: 60px;
}
.technologie-page-items .technologie-item {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.technologie-page-items .technologie-item .img {
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.technologie-page-items .technologie-item .img img {
	width: 100%;
}
.technologie-page-items .technologie-item .desc {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 50%;
}
.technologie-page-items .technologie-item .desc .text {
	width: 392px;
}
.technologie-page-items .technologie-item .desc .text .title {
	font-style: normal;
	font-weight: 400;
	font-size: 34px;
	line-height: 120%;
	color: #213F7F;
	margin: 0 0 32px 0;
}
.technologie-page-items .technologie-item .desc .text .text-box {}
.technologie-page-items .technologie-item .desc .text .text-box p {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	text-align: justify;
	letter-spacing: 0.025em;
	color: #434A54;
	margin: 0 0 15px 0;
}
.technologie-page-items .technologie-item .desc .text .text-box p:last-child {
	margin-bottom: 0;
}
.technologie-page-items .technologie-item .desc svg {
	min-width: 264px;
}

.technologie-page-items .technologie-item:nth-child(odd) {
	flex-direction: row;
	padding-left: 120px;
}

.technologie-page-items .technologie-item:nth-child(odd) .desc {
	padding-left: 189px;
}
.technologie-page-items .technologie-item:nth-child(odd) svg {
	margin-left: 76px;
}
.technologie-page-items .technologie-item:nth-child(odd) {}

.technologie-page-items .technologie-item:nth-child(even) {
	flex-direction: row-reverse;
	padding-right: 120px;
}

.technologie-page-items .technologie-item:nth-child(even) .desc {
	padding-right: 189px;
}
.technologie-page-items .technologie-item:nth-child(even) svg {
	margin-right: 76px;
}


.traitements-section {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}
.traitements-section .left {
	display: flex;
	width: 50vw;
	align-items: center;
	padding: 60px 0;
}

.traitements-section .left .box-left .bg-mobile {
	display: none;
}

.traitements-section .title-section {
	margin-bottom: var(--margin-title-bottom);
}

.traitements-section .right {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50vw;
	position: relative;
}

.traitements-section .right .default-box {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: stretch;
	justify-content: flex-end;
}
.traitements-section .right .default-box:before {
	/*content: "";*/
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #fff;
	z-index: 2;
}
.traitements-section .right .default {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center left;
	position: relative;
	z-index: 1;

}
.traitements-section .right .imgs {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
}
.traitements-section .right .imgs img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center left;
	display: none;
}

.traitements-section .right .imgs img.aсtive-default {
	display: block;
}

.traitements-section .list-items .list-item .item-name-cat .arrow {
	display: none;
}

.traitements-section .list-items {
	display: flex;
	flex-direction: column;
}
.traitements-section .list-items p {
	margin: 0;
}
.traitements-section .list-items .list-item {
	padding-top: 24px;
	width: 100%;

}
.traitements-section .list-items .list-item:first-child {
	padding-top: 0;
}
.traitements-section .list-items .list-item .item-name-cat {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	cursor: pointer;
	transition: var(--transition-base);
}

.traitements-section .list-items .list-item .item-name-cat .name {
	font-style: normal;
	font-weight: 400;
	font-size: 28px;
	line-height: 120%;
	letter-spacing: 0.0025em;
	font-feature-settings: 'liga' off;
	color: #434A54;
	margin: 0;
	cursor: pointer;
}

.traitements-section .list-items .list-item:hover .item-name-cat .name,
.traitements-section .list-items .list-item.active .item-name-cat .name {
	color: var(--color-blue);
	transition: var(--transition-base);
	cursor: pointer;
}


.traitements-section .list-items .list-item .post-items {
	width: 100%;
	display: none;
	/*display: none;*/
	margin-top: 12px;
}

.traitements-section .list-items .list-item .post-items .post-item {
	width: 100%;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	cursor: pointer;
	color: var(--color-blue);
	position: relative;
	transition: var(--transition-base);
}

.traitements-section .list-items .list-item .post-items .post-item .title-sub-item:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #F3EFF5;
	border-radius: 50px;
	z-index: -1;
	opacity: 0;
	transition: var(--transition-base);
}
.traitements-section .list-items .list-item .post-items .post-item svg {
	margin-left: 12px;
	opacity: 0;
	transition: var(--transition-base);
}

.traitements-section .list-items .list-item .post-items .post-item:hover .title-sub-item:before {
	opacity: 1;
	transition: var(--transition-base);
}

.traitements-section .list-items .list-item .post-items .post-item:hover svg {
	opacity: 1;
	transition: var(--transition-base);
}

.traitements-section .list-items .list-item .post-items .post-item:last-child {
	margin-bottom: 0;
}
.traitements-section .list-items .list-item .post-items .post-item .item-name-post {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.traitements-section .list-items .list-item .post-items .post-item .item-name-post .title-sub-item {
	font-style: normal;
	font-weight: 400;
	font-size: 23px;
	line-height: 120%;
	padding: 12px 24px;
	position: relative;
	margin: 0;
}

.traitements-section .list-items .list-item .post-items .post-item .item-name-post:hover {
	color: var(--color-blue);
	transition: var(--transition-base);
}
.traitements-section .list-items .list-item .post-items .post-item:hover:after {
	opacity: 1;
	transition: var(--transition-base);
}

.map div[title="marker"] {
	background-image: url(../img/svg/marker.svg);
	background-size: contain;
	width: 72px !important;
	height: 72px !important;
}
.map div[title="marker"]:hover {
	-webkit-transition: 0.2s;
	transition: 0.2s;
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}

@media only screen and (max-width: 1915px) {
	.quipe-doctor .wrapper .bg {
		top: -11px;
	}
	.assistante-items .bg {
		top: -15px;
	}
}
@media only screen and (max-width: 1700px) {
	.widget-box {
		right: 1.5vw;
	}
	.quipe-doctor .wrapper .img {
		padding-right: 50px;
		padding-bottom: 55px;
	}
	.quipe-doctor .wrapper .img img {
		width: 68%;
	}

	.quipe-doctor .wrapper .desc {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.quipe-doctor .wrapper .bg {
		height: 100%;
		object-position: center left;
		object-fit: cover;
		top: 0;
	}

	.assistante-items {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.assistante-items .bg {
		top: 10px;
		height: 100%;
		object-position: center right;
		object-fit: cover;
	
	}

	.traitements-section .left {
		padding: 40px 0;
	}
	.traitements-section .left>svg {
		margin-right: 32px;
		width: 350px;
		height: auto;
	}
	.conseils-section .container {
		max-width: calc(100% - 120px);
	}
	.conseils-section .left {
		padding-left: 140px;
		padding-right: 80px;
	}
	.conseils-section .right {
		padding-right: 140px;
		padding-left: 80px;
	}

	.contactez-section  {
		align-items: stretch;
		/*align-self: stretch;*/
	}

	.contactez-section .left {
		padding-top: 60px;
		padding-bottom: 40px;
	}

	.contactez-section .right img {
		height: 100%;
		object-position: center;
		object-fit: cover;
	}

	.technologie-page-items .technologie-item:nth-child(odd) .desc {
		padding-left: 40px;
	}
	.technologie-page-items .technologie-item:nth-child(even) .desc {
		padding-right: 40px;
	}

}

@media only screen and (max-width: 1440px) {
	.assistante-items .bg {
		top: 9px;
	}
}
@media only screen and (max-width: 1367px) {
	:root {
		--container-widht: calc(100% - 220px);
	}

	.laboratoire-section .bg-desktop {
		object-position: 40% 50%;
	}

	.hero-section {
		margin-bottom: 30px;
	}
	.hero-section iframe {
		top: 0;
	}

	.quipe-doctor .wrapper .img {
		transform: translateX(19px);
	}
	.quipe-doctor .wrapper .img img {
		width: 67.7%;
	}

	.quipe-doctor .wrapper .bg {
		top: 1px;
	}

	.assistante-items .assistante-item {
		width: 17.75%;
	}

	.assistante-items .bg {
		top: 5px;
	}

	.gallery-section .svg-block .svg-bg {
		height: 790px;
		width: auto;
	}

	.gallery-section .svg-block .svg-txt {
		height: 650px;
		width: auto;
	}

	.gallery-section {
		padding-bottom: 80px;
	}
	.traitements-section .left>svg {
		width: 250px;
	}

	.traitements-section .list-items .list-item .item-name-cat .name {
		font-size: 22px;
	}
	.traitements-section .list-items .list-item .post-items .post-item .item-name-post .title-sub-item {
		font-size: 18px;
	}
	.technologie-page-items .technologie-item .desc svg {
		width: 150px;
		min-width: 150px;
	}
	.technologie-page-items .technologie-item:nth-child(odd) svg {
		margin-left: 30px;
	}
	.technologie-page-items .technologie-item:nth-child(even) svg {
		margin-right: 30px;
	}
}

@media only screen and (max-width: 1024px) {
	:root {
		--container-widht: calc(100% - 40px);
		--margin-left-global: 20px;
		--margin-right-global: 20px;
	}

	.quipe-doctor .wrapper .desc .subtitle-section {
		color: #F3EFF5;
	}

	.adaptive-menu,
	.traitement-menu {
		display: block;
	}

	.burger {
		display: flex;
	}
	.header nav {
		display: none;
	}
	.cabinet-dentaire-section {
		margin-bottom: 110px;
	}
	.quipe-doctor .wrapper .desc .title-section {
		position: absolute;
		top: -80px;
		text-align: center;
		width: 200%;
		left: -100%;
		color: #434A54;
		font-weight: 400;
		font-size: 25px;
		line-height: 120%;
	}

	.quipe-doctor {
		margin-bottom: -3px;
	}
	.quipe-doctor .wrapper .img {
		padding-bottom: 14px;
		/*margin-bottom: -73px;*/
		margin-bottom: 27px;
		transform: translateX(12px);
	}

	.quipe-doctor .wrapper .bg {
		width: calc(100% - 20px);
	}

	.assistante-items {
		padding-left: var(--margin-left-global);
		margin-bottom: 70px;
	}

	.assistante-items .assistante-item {
		width: 20.75%;
		margin-right: 87px;
	}

	.assistante-items .bg {
		width: calc(100% - 20px);
	}


	.technologie-cabinet-section .bg-desktop {
		object-position: 76% 50%;
	}

	.sourire-section {
		margin-bottom: 70px;
	}

	.conscience-section .bg-desktop {
		object-position: 30% 50%;
	}
	.sourire-section .bg-desktop {
		object-position: 65% 50%;
	}

	.sourire-section .col {
		width: 41%;
	}

	.conseils-section {
		margin-bottom: 70px;
	}
	.conseils-section .container {
		width: calc(100% - 20px);
		max-width: calc(100% - 20px);
	}

	.conseils-section .left {
		padding-left: 20px;
		padding-right: 20px;
	}
	.conseils-section .right {
		padding-left: 20px;
		padding-right: 20px;
	}

	.parallax-section {
		margin-bottom: 70px;
		height: 500px;
	}
	.parallax-section svg {
		height: 80%;
		width: auto;
	}

	.laboratoire-section .bg-desktop {
		object-position: 40% 50%;
	}

	.laboratoire-section .col {
		width: 41%;
	}
	.acces-section .right {
		padding-left: 40px;
	}

	.technologie-page-items .technologie-item:nth-child(even) {
		padding-right: 20px;
		padding-left: 20px;
	}
	.technologie-page-items .technologie-item:nth-child(odd) {
		padding-left: 20px;
		padding-right: 20px;
	}

	.technologie-page-items .technologie-item .desc svg {
		display: none;
	}

	.technologie-page-items .technologie-item .desc .text {
		width: 100%;
	}
	.gallery-section .gallerySwiper-box {
		margin-top: 157px;
		margin-bottom: 70px;
	}
}
@media only screen and (max-width: 992px) {
	.quipe-doctor .wrapper .desc .title-section {
		left: 0;
		width: 100%;
		top: -50px;
	}
	.preloader .logo .logo-txt.show {
		width: 85%;
	}
	.gallery-section {
		padding-bottom: 20px;
	}
	.preloader .logo .logo-icon.show {
        width: 20%;
	}
	.preloader .logo .logo-icon {
    	transform: translateX(287px);
	}
	.preloader .logo {
		align-items: center;
		width: 85%;
	}

	.cabinet-dentaire-section {
		margin-bottom: 90px;
	}
	.conscience-section,
	.sourire-section,
	.conseils-section,
	.parallax-section,
	.gallery-section .gallerySwiper-box {
		margin-bottom: 60px;
	}
	.hero-section {
		margin-bottom: 50px;
	}
	.cabinet-dentaire-section .left {
		width: 70%;
		padding-right: 40px;
	}
	.cabinet-dentaire-section .right {
		width: 30%;
	}
	.cabinet-dentaire-section .right svg {
		height: auto;
	}
	/*.notre-quipe-section {*/
	/*	display: none;*/
	/*}*/

	.quipe-doctor {
		position: relative;
	}
	.quipe-doctor .wrapper .bg {
		width: calc(100% + 45px);
	}
	.quipe-doctor .wrapper .desc {
		position: static;
	}

	.quipe-doctor .wrapper .img {
		transform: translateX(15px);
		margin-bottom: 28px;
	}
	.quipe-doctor .wrapper .img img {
		width: 100%;
		transform: translatex(75px);
	}

	.assistante-items {
		overflow: hidden;
	}
	.assistante-items .bg {
		width: calc(100% + 45px);
		top: -6px;
	}

	.nos-valeurs-section {
		padding: 60px 0;
		overflow: hidden;
	}

	.nos-valeurs-section .desc-text {
		width: 100%;
	}

	.nos-valeurs-section .swiper .swiper-pagination {
		bottom: -60px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.nos-valeurs-section .swiper-pagination .swiper-pagination-bullet {
		background: #F3EFF5;
		opacity: 1;
	}
	.nos-valeurs-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
		width: 14px;
		height: 14px;
		background: #67BFB8;
	}
	.nos-valeurs-section .valeursSwiper-box {
		display: block;
		width: 100%;
		margin-bottom: 110px;
	}
	.nos-valeurs-section .valeursSwiper {
		position: relative;
	}

	.nos-valeurs-section .valeursSwiper-box .swiper-slide .img {
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 32px;
		position: relative;
	}
	.nos-valeurs-section .valeursSwiper-box .swiper-slide .img img {
		border-radius: 16px;
		overflow: hidden;
		width: 100%;
		height: auto;
	}
	.nos-valeurs-section .valeursSwiper-box .swiper-slide .img .hover {
		position: absolute;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0 50px;
		background: linear-gradient(153.13deg, rgba(0, 255, 235, 0.9) 2.72%, rgba(0, 117, 255, 0.9) 98.89%);
		box-shadow: 0px 20px 20px -12px rgba(0, 0, 0, 0.8);
		border-radius: 16px;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		padding: 20px 52px;
		opacity: 0;
		transition: var(--transition-base);
	}

	.nos-valeurs-section .valeursSwiper-box .swiper-slide:hover .img .hover {
		opacity: 1;
		transition: var(--transition-base);
	}
	.nos-valeurs-section .valeursSwiper-box .swiper-slide .img .hover p {
		font-style: normal;
		font-weight: 400;
		font-size: 16px;
		line-height: 150%;
		text-align: justify;
		letter-spacing: 0.025em;
		margin: 0;
	}

	.nos-valeurs-section .valeursSwiper-box .swiper-slide .title {
		font-style: normal;
		font-weight: 400;
		font-size: 28px;
		line-height: 120%;
		text-align: center;
		letter-spacing: 0.0025em;
		font-feature-settings: 'liga' off;
		color: #67BFB8;
		margin: 0 0 15px 0;
	}
	.nos-valeurs-section .valeursSwiper-box .swiper-slide .desc {}
	.nos-valeurs-section .valeursSwiper-box .swiper-slide .desc p {
		font-style: normal;
		font-weight: 400;
		font-size: 16px;
		line-height: 130%;
		display: flex;
		align-items: center;
		text-align: justify;
		margin: 0;
	}
	.nos-valeurs-section .expertisesSwiper-box {
		display: block;
		width: 100%;
		position: relative;
		margin-bottom: 60px;
	}

	.nos-valeurs-section .expertises-item .title {
		font-size: 24px;
	}

	.nos-valeurs-section .expertises-item .link {
		opacity: 1;
		margin-top: 30px;
	}

	.nos-valeurs-section .icon-one,
	.nos-valeurs-section .icon-two,
	.nos-valeurs-section .valeurs-items,
	.nos-valeurs-section .expertises-items {
		display: none;
	}
	.gallery-section .svg-block {
		display: none;
	}

	.gallery-section .gallerySwiper-box {
		margin-top: 50px;
		margin-bottom: 50px;
		width: 100%;
	}

	.gallery-section .box-bottom {
		margin: 35px auto 0;
	}
	.technologie-cabinet-section {
		padding: 70px 0;
	}
	.technologie-cabinet-section .text {
		width: 65%;
	}

	.traitements-section .left {
		padding-left: 20px;
	}
	.traitements-section .left>svg {
		display: none;
	}

	.sourire-section {
		padding: 67px 0;
	}
	.conscience-section .bg-desktop {
		object-position: 25% 50%;
	}
	.sourire-section .bg-desktop {
		object-position: 78% 50%;
	}

	.conscience-section .col,
	.sourire-section .col {
		width: 61%;
	}

	/*.conseils-section .right .btn-box .btn-items {*/
	/*	flex-direction: column;*/
	/*}*/

	.laboratoire-section {
		padding: 67px 0;
	}
	.laboratoire-section .bg-desktop {
		object-position: 22% 50%;
	}
	.laboratoire-section .col {
		width: 61%;
	}

	.acces-section {
		flex-direction: column-reverse;
		margin-bottom: 40px;
	}

	.acces-section .left {
		width: 100%;
	}
	.acces-section .right {
		width: 100%;
		margin-bottom: 20px;
	}

	.contactez-section {
		flex-direction: column;
	}
	.contactez-section .left {
		width: 100%;
		padding-left: 0;
	}
	.contactez-section .right {
		width: 100%;
	}

	.main-technologie-page {
		padding-top: 125px;
		margin-bottom: 60px;
	}

	.main-technologie-page .breadcrumbs {
		margin-bottom: 35px;
	}

	.technologie-page-items .technologie-item:nth-child(even),
	.technologie-page-items .technologie-item:nth-child(odd) {
		flex-direction: column-reverse;
	}

	.technologie-page-items .technologie-item .img {
		width: 100%;
		margin-top: 20px;
	}
	.technologie-page-items .technologie-item .desc {
		width: 100%;
	}
	.technologie-page-items .technologie-item:nth-child(odd) .desc {
		padding-left: 0;
	}
	.technologie-page-items .technologie-item:nth-child(even) .desc {
		padding-right: 0;
	}
	.article-content {
		padding-top: 125px;
		padding-bottom: 0;
	}
	.title-technologie-page,
	.article-content .title-article {
		font-size: 36px;
		margin-bottom: 15px;
	}
	.technologie-page-items .technologie-item .desc .text .title {
		margin-bottom: 16px;
	}
	.technologie-page-items .technologie-item .desc .text .title,
	.article-content h2 {
		font-size: 28px;
	}
	.article-content h3 {
		font-size: 24px;
	}
	.article-content h4 {
		font-size: 20px;
	}
	.article-content h5 {
		font-size: 18px;
	}
	.article-content h2 {
		margin: 20px 0 16px
	}
	.article-content h3,
	.article-content h4,
	.article-content h5,
	.article-content h6 {
		font-style: normal;
		font-weight: 400;
		margin: 16px 0 12px
	}
	.article-content ul {
		margin: 5px 0 15px;
	}

	.article-content .breadcrumbs {
		margin-bottom: 24px;
	}
}
@media only screen and (max-width: 600px) {
	:root {
		--container-widht: calc(100% - 30px);
		--margin-title-bottom: 16px;
		--margin-left-global: 15px;
		--margin-right-global: 15px;
	}
	.widget-box {
		display: none;
	}
	
	.quipe-doctor .wrapper .img img {
		width: 100%;
		transform: none;
	}
	.title-section {
		font-size: 25px;
		line-height: 120%;
	}
	
	.header .logo .logo-desktop {
		display: none;
	}
	.header .logo .logo-mobile {
		display: block;
	}
	.header .btn-rdv {
		display: none;
	}

	.hero-section {
		margin-bottom: 32px;
	}
	.cabinet-dentaire-section {
		margin-bottom: 110px;
	}
	.cabinet-dentaire-section .wrapper {
		flex-direction: column;
	}

	.cabinet-dentaire-section .left {
		width: 100%;
		margin-bottom: 16px;
		padding-right: var(--margin-right-global);
	}
	.cabinet-dentaire-section .left .title-section {
		font-size: 30px;
		line-height: 120%;
		margin-bottom: 16px;
	}
	.cabinet-dentaire-section .left .desc p {
		font-size: 14px;
		line-height: 130%;
	}
	.cabinet-dentaire-section .right {
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.cabinet-dentaire-section .right svg {
		width: 50%;
	}
	
	.box-bottom {
		width: 100%;
	}

	.technologie-cabinet-section {
		padding: 0;
	}
	.technologie-cabinet-section .bg-desktop {
		display: none;
	}
	.technologie-cabinet-section .bg-mobile {
		display: block;
		width: 100%;
	}
	.technologie-cabinet-section .container {
		padding: 0 15px;
		position: absolute;
		bottom: 60px;
		left: 0;
		width: 100%;
	}

	.technologie-cabinet-section .text {
		width: 100%;
	}

	.technologie-cabinet-section .btn {
		width: 100%;
	}

	.traitements-section {
		flex-direction: column;
	}

	.traitements-section .left {
		width: 100%;
		padding: 60px 15px;
	}

	.traitements-section .left .box-left {
		position: relative;
	}
	.traitements-section .left .box-left .bg-mobile {
		position: absolute;
		display: block;
		top: -60px;
		right: -15px;
		height: auto;
		width: 80%;
		z-index: 0;
		/*width: 55%;*/
	}

	.traitements-section .title-section {
		margin-bottom: 40px;
	}

	.traitements-section .list-items {
		position: relative;
		z-index: 2;
	}

	.traitements-section .list-items .list-item {
		border-bottom: 1px solid #F3EFF5;
		padding-bottom: 17px;
		padding-top: 15px;
	}
	.traitements-section .list-items .list-item .item-name-cat {
		justify-content: space-between;
	}

	.traitements-section .list-items .list-item .item-name-cat .name {
		font-weight: 400;
		font-size: 20px;
		line-height: 120%;
	}
	.traitements-section .list-items .list-item .item-name-cat .arrow {
		min-width: 40px;
		width: 40px;
		display: block;
		transition: var(--transition-base);
	}
	.traitements-section .list-items .list-item.active .item-name-cat .arrow {
		transform: rotate(180deg);
		transition: var(--transition-base);
	}
	.traitements-section .list-items .list-item .post-items .post-item .item-name-post .title-sub-item {
		font-size: 16px;
	}

	.traitements-section .right {
		display: none;
	}
	.quipe-doctor .text,
	.quipe-doctor .wrapper .desc .btn {
		display: none;
	}
	.conscience-section {
		padding: 0;
		margin-bottom: 0;
	}

	.sourire-section {
		padding: 0;
		margin-bottom: 0;
	}

	.conscience-section .bg-desktop,
	.sourire-section .bg-desktop {
		display: none;
	}

	.conscience-section .bg-mobile {
		position: absolute;
		top: -30px;
		left: 0;
		width: 100%;
		height: calc(100% + 30px);
		object-position: top center;
		object-fit: cover;
		display: block;
		z-index: 1;
	}
	.sourire-section .bg-mobile {
		display: block;
		width: 100%;
	}
	.conscience-section .container {
		position: relative;
		z-index: 2;
	}
	.sourire-section .container {
		position: absolute;
		padding: 0 15px;
		width: 100%;
		bottom: 60px;
		left: 0;
	}
	.conscience-section .col,
	.sourire-section .col {
		width: 100%;
	}
	.conseils-section {
		margin-bottom: 70px;
	}
	.conseils-section .container {
		flex-direction: column;
		width: 100%;
		max-width: 100%;
		border-radius: 0;
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.conseils-section .container:after {
		display: none;
	}

	.conseils-section .text {
		margin-bottom: 28px;
	}
	.conseils-section .text p {
		font-size: 14px;
		line-height: 130%;
	}

	.conseils-section .left {
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
		position: relative;
		margin-bottom: 80px;
	}

	.conseils-section .left:after {
		content: '';
		position: absolute;
		left: 15px;
		bottom: -40px;
		width: calc(100% - 30px);
		height: 2px;
		background-color: #376FB3;
	}

	.conseils-section .left .info-items .info-title {
		font-weight: 400;
		font-size: 20px;
		line-height: 120%;
		margin-bottom: 24px;
	}

	.conseils-section .left .info-items .info-item span {
		font-weight: 400;
		font-size: 18px;
		line-height: 130%;
	}

	.conseils-section .right {
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}

	.parallax-section {
		background-image: none !important;
		/*width: calc(100% - 30px);*/
		padding: 0 15px;
		display: flex;
		align-items: center;
	}
	.parallax-section:after {
		width: calc(100% - 30px);
		background: linear-gradient(167.22deg, #437CBE -11.96%, #437EBE -6.23%, #4280BF -1.1%, #4283C0 3.65%, #4286C0 8.24%, #418AC1 12.89%, #408EC2 17.8%, #4093C3 23.2%, #3F99C4 29.31%, #3EA0C6 36.34%, #3DA8C7 44.51%, #3CB0C9 54.03%, #3ABBCB 65.13%, #38C6CE 78.02%, #37D3D0 92.91%, #35E1D4 110.02%);
		mix-blend-mode: hard-light;
		border-radius: 16px;
		left: 15px;
		top: 7px;
		height: calc(100% - 12px);
	}
	.parallax-section svg {
		height: auto;
		width: 80%;
	}
	.parallax-section .bg-mobile {
		display: block;
		width: 100%;
		border-radius: 16px;
	}
	.parallax-section .container {
		position: absolute;
	}

	.parallax-section .title-parallax {
		font-weight: 400;
		font-size: 25px;
		line-height: 120%;
	}

	.laboratoire-section {
		padding: 0;
		margin-bottom: 60px;
	}

	.laboratoire-section .bg-desktop {
		display: none;
	}
	.laboratoire-section .bg-mobile {
		display: block;
		width: 100%;
	}

	.laboratoire-section .container {
		position: absolute;
		bottom: 60px;
		left: 0;
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}

	.laboratoire-section .col {
		width: 100%;
	}

	.acces-section .left {
		height: 382px;
	}
	.acces-section .right {
		margin-bottom: 32px;
		padding-left: var(--margin-left-global);
	}

	.acces-section .info-items .info-item {
		align-items: flex-start;
	}

	.acces-section .info-items {
		margin-bottom: 32px;
	}
	.acces-section .horaires-box .title-horaires {
		margin-bottom: 16px;
	}

	.acces-section .horaires-box .horaires-items li {
		width: 100%;
		justify-content: space-between;
	}

	.contactez-section .left {
		padding-left: 15px;
		padding-right: 15px;
		padding-top: 0;
		padding-bottom: 10px;
	}

	.contactez-section .left {
		width: 100%;
	}

	.footer .container {
		flex-direction: column;
	}
	.footer .logo {
		width: 100%;
		margin-bottom: 40px;
	}
	.footer .logo svg {
		width: 100%;
	}

	.footer .copyright p {
		text-align: center;
		font-weight: 400;
		font-size: 14px;
		line-height: 130%;
		margin-bottom: 8px;
	}
	.footer .copyright p:last-child {
		margin-bottom: 0;
	}


	.quipe-doctor .wrapper .img {
		transform: translateX(5px);
		margin-bottom: 0px;
		padding-right: 0;
		width: 80%;
	}

	.quipe-doctor .wrapper .img img {
		border-bottom-left-radius: 98px;
	}

	.quipe-doctor .wrapper .desc .subtitle-section {
		font-weight: 400;
		font-size: 20px;
		line-height: 120%;
	}

	.quipe-doctor .wrapper .bg-mobile {
		display: block;
		position: absolute;
		left: 0;
		top: -15px;
		width: 100%;
		height: auto;
	}
	.quipe-doctor .desc.desc-mobile {
		display: block;
		margin-top: 70px;
		padding: 0 15px;
		margin-bottom: 70px;
	}
	.quipe-doctor .wrapper .bg {
		display: none;
	}

	.quipe-doctor .wrapper .desc .title-section {
		top: -70px;
	}

	.quipe-doctor .desc.desc-mobile .text, .quipe-doctor .desc.desc-mobile .btn {
		display: flex;
	}

	.quipe-doctor .desc.desc-mobile .text {
		margin-bottom: 32px;
	}
	.quipe-doctor .text ul li,
	.quipe-doctor .text p {
		color: #213F7F;
	}
	.quipe-doctor .text ul li:before {
		background-color: #213F7F;
	}

	.quipe-doctor .desc.desc-mobile .btn {
		width: 100%;
	}

	.nos-valeurs-section .valeursSwiper-box .swiper-slide .title {

	}

	.assistante-items {
		display: none;
	}
	.assistanteSwiper-box {
		position: relative;
		display: block;
		padding: 0 15px;
	}

	.assistanteSwiper-box .swiper-slide {
		position: relative;
	}
	.assistanteSwiper-box .swiper-slide img {
		width: 60%;
	}
	.assistanteSwiper-box .swiper-slide .info {
		position: absolute;
		right: 50px;
		top: 130px;
		color: var(--color-silver);
	}
	.assistanteSwiper-box .swiper-slide .info .title {
		font-style: normal;
		font-weight: 400;
		font-size: 25px;
		line-height: 120%;
		margin: 0;
	}
	.assistanteSwiper-box .swiper-slide .info .office {
		font-style: normal;
		font-weight: 400;
		font-size: 18px;
		line-height: 130%;
		letter-spacing: 0.0015em;
		margin: 0;
	}
	.assistanteSwiper-box .box-bottom {
		margin: 75px auto 70px;
	}

	.assistanteSwiper-box .bg-mobile {
		display: block;
		position: absolute;
		width: 106%;
		height: auto;
		left: 0;
		top: -23px;
	}

	.nos-valeurs-section .expertises-item .title,
	.nos-valeurs-section .expertises-item .text {
		color: #F3EFF5;
	}
	.breadcrumbs {
		display: none;
	}

	.title-technologie-page {
		font-size: 30px;
		line-height: 120%;
		text-align: left;
		justify-content: flex-start;
		margin-bottom: 40px;
		padding-left: var(--margin-left-global);
		padding-right: var(--margin-right-global);
	}
	.technologie-page-items {
		gap: 0;
		align-items: center;
	}
	.technologie-page-items .technologie-item {
		border-bottom: 1px solid #F3EFF5;
		margin-bottom: 20px;
		padding-bottom: 20px;
		width: calc(100% - 30px);
	}
	.technologie-page-items .technologie-item:nth-child(even),
	.technologie-page-items .technologie-item:nth-child(odd) {
		padding-left: 0;
		padding-right: 0;
	}

	.title-technologie-page,
	.article-content .title-article {
		font-size: 30px;
	}

	.technologie-page-items .technologie-item .desc .text .title,
	.article-content h2 {
		font-size: 24px;
	}
	.article-content h3 {
		font-size: 20px;
	}
	.article-content h4 {
		font-size: 18px;
	}
	.article-content h5 {
		font-size: 16px;
	}

	.article-content p,
	.article-content ul li {
		font-size: 14px;
	}

	.adaptive-menu .bg-menu,
	.traitement-menu .bg-menu {
		right: -15px;
	}
	.traitement-menu .list-category {
		width: 100%;
	}
}

/* @media (hover: none) { */
	.widget-box ul li a:hover {
		background-color: rgba(243, 239, 245, 1);
		transition: var(--transition-base);
	}
	.widget-box ul li a:hover svg path {
		transition: var(--transition-base);
		fill: var(--color-light-blue);
	}
	.widget-box ul li a:hover span {
		margin-left: 15px;
		max-width: 127px;
		opacity: 1;
		transition: margin 0.3s ease-out, max-width 0.3s ease-out, opacity 0.3s ease 0.25s;
	}

	.widget-box ul li:nth-child(2) a:hover span {
		max-width: 184px;
	}
/* } */