/*
Theme Name: ozan
Theme URI: https://www.experimental-net.com
Author: Flavien LOCHE
Author URI: https://www.experimental-net.com
Description: ozan
Version: 1.0
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: ;
    background: 0 0;
}
html,
html a {
    -webkit-font-smoothing: antialiased !important;
	-moz-osx-font-smoothing: grayscale !important;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
	-webkit-text-size-adjust: 100%;
}
html,
body {
    overflow-x: hidden !important;
}
html {
    overflow-y: scroll;
	scroll-behavior: smooth;
}
body { 
	letter-spacing: .01em;
	font-family: "brown-pro", sans-serif;
	font-weight: 300;
	font-style: normal;
	color: #000;
}
* {
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    box-sizing: border-box !important;
	/*scroll-margin-top: 97px;*/
}
sup { font-size: 70%; }
strong, .strong {
	font-weight: 600;
	font-style: normal;
}
.medium {
	font-weight: 400;
	font-style: normal;
}
li::marker { text-indent:30px !important; }
a[href^="tel"],
a[href^="mailto"] {
    color: inherit;
    text-decoration: none;
}
.red { color:#d13032; }
.flex { display: flex; justify-content: space-between; }
header.main-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 100;
	border-bottom: 1px solid #f0f0f0;
	border-top: 1px solid #f0f0f0;
	background-color: #fff;
	/*-webkit-box-shadow: 0px 30px 40px 10px rgba(46,75,81,0.08); 
	box-shadow: 0px 30px 40px 10px rgba(46,75,81,0.08);
	-webkit-box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.12);
	box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.12);*/
}
.home header.main-header {
	position: absolute;
	top: 100vh;
	left: 0;
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 100;
	border-bottom: 1px solid #f0f0f0;
	border-top: 1px solid #f0f0f0;
	background-color: #fff;
	/*-webkit-box-shadow: 0px 30px 40px 10px rgba(46,75,81,0.08); 
	box-shadow: 0px 30px 40px 10px rgba(46,75,81,0.08);
	-webkit-box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.12);
	box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.12);*/
}
.sticky {
	position: fixed !important;
	top: 0 !important;
}
.main-menu {
	position: relative;
	display: flex;
	width: 100%;
	max-width: 1440px;
	margin: auto;
	height: 77px;
	background-color: #fff;
	transition: background-color 500ms;
	justify-content: space-between;
}
.main-logo {
	position: relative;
    width: auto;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.main-logo img {
	height: 44px;
}
.burger {
	position: relative;
	display: none;
	margin-right: 20px;
	height: 100%;
	width: 44px;
	flex-direction: column;
    justify-content: center;
	background-image: url(/wp-content/uploads/2025/05/hamburger.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	cursor: pointer;
}
.burger.open {
	background-image: url(/wp-content/uploads/2025/05/cross.svg);
}
.menu-container {
	position: relative;
	margin-left: 60px;
	margin-right: 20px;
	flex-grow:1;
	display: flex;
	justify-content: flex-end;
}
.menu-principal-container {
	position: relative;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
ul#menu-principal {
	list-style: none;
	display: flex;
	height: 77px;
}
ul#menu-principal > li {
	display: flex;
	flex-direction: column;
	justify-content: center;
	cursor: pointer;
	transition: background-color 300ms, color 300ms;
}
ul#menu-principal > li + li {
	margin-left: 40px;
}

ul#menu-principal > li > a {
	font-size: 18px;
	color: #000;
	border-bottom: 2px solid #fff;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
	transition: color 300ms;
	letter-spacing: .05em;
	transition: all 300ms;
}
ul#menu-principal > li > a:hover, ul#menu-principal > li.current-menu-item > a, ul#menu-principal > li.current-menu-ancestor > a {
	border-bottom: 2px solid #b3b3b3;
	color: #b3b3b3;
	transition: all 300ms;
}
ul#menu-principal ul.sub-menu {
    position: fixed;
    list-style: none;
    display: none;
    width: 100%;
    background-color: #f0f0f0;
    left: 0;
    top: 77px;
    justify-content: center;
    grid-gap: 20px;
    padding: 20px;
}
ul#menu-principal > li.current-menu-item.menu-item-has-children ul.sub-menu, ul#menu-principal > li.current-menu-ancestor.menu-item-has-children ul.sub-menu {
    display: flex;
}
ul#menu-principal ul.sub-menu:hover {
    display: flex;
}
ul#menu-principal > li.menu-item-has-children:hover ul.sub-menu {
    display: flex;
}

ul#menu-principal > li > ul.sub-menu > li > a {
	font-size: 18px;
	color: #000;
	border-bottom: 2px solid #f0f0f0;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
	transition: color 300ms;
	letter-spacing: .05em;
	transition: all 300ms;
}
ul#menu-principal > li > ul.sub-menu > li > a:hover, ul#menu-principal > li > ul.sub-menu > li.current-menu-item > a {
	border-bottom: 2px solid #b3b3b3;
	color: #b3b3b3;
	transition: all 300ms;
}

.nav-mobile {
	position: fixed;
	display: flex;
	width: 100%;
	height: auto;
	z-index: 99;
	top: -600px;
	left: 0;
	background-color: #fff;;
	transition: all 500ms;
}
.nav-mobile.open {
	top: 77px;
	transition: all 500ms;
}
ul#menu-principal-1 {
	list-style: none;
	display: flex;
	flex-direction: column;
	padding: 20px;
}
ul#menu-principal-1 > li {
	display: block;
	cursor: pointer;
	transition: background-color 300ms, color 300ms;
}
ul#menu-principal-1 > li + li {
	margin-top: 10px;
}

ul#menu-principal-1 > li > a {
	font-size: 18px;
	color: #000;
	border-bottom: 2px solid #fff;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: .05em;
	transition: all 300ms;
}
ul#menu-principal-1 > li > .sub-menu {
	list-style: none;
	display: flex;
	flex-direction: column;
	padding: 5px 20px;
}
ul#menu-principal-1 > li > .sub-menu > li + li {
	margin-top: 5px;
}
ul#menu-principal-1 > li > .sub-menu > li > a {
	font-size: 18px;
	color: #b3b3b3;
	border-bottom: 2px solid #fff;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: .05em;
	transition: all 300ms;
}
ul#menu-principal-1 > li {
	position: relative;
}
/*ul#menu-principal-1 > li.menu-item-has-children::after {
	content: ">";
	position: absolute;
	right: 0;
	top: 0;
	width: 20px;
	height: 20px;
	font-size: 18px;
}*/

ul#menu-principal > li > a:hover, ul#menu-principal > li.current-menu-item > a {
	border-bottom: 2px solid #b3b3b3;
	color: #b3b3b3;
	transition: all 300ms;
}

.main-container {
	position: relative;
	min-height: calc( 100vh - 193px);
}
.main-footer {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	background-color: #f0f0f0;
}
.footer-container {
	position: relative;
	width: 100%;
	max-width: 1440px;
	margin: auto;
	padding: 50px 20px 50px;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-gap: 20px;
}
.menu-footer {
	display:flex;
	justify-content: flex-end;
	border-top: 1px solid rgba(255, 255, 255, .25);
	padding-top: 10px;
	margin-top: 15px;
	flex-wrap: wrap;
	grid-gap: 6px 30px;
}
.logo-footer img {
	height: 40px;
}
.logo-footer {
	margin-bottom: 15px;
}
.tel-footer {
	margin-bottom: 3px;
}
.mail-footer a {
	color: #000;
	text-decoration: none;
}
.titre-menu-footer {
	margin-bottom: 15px;
	border-bottom: 1px solid #000;
	display: inline-block;
}
ul#menu-footer {
	list-style: none;
	display: flex;
	flex-direction: column;
}
ul#menu-footer > li {
	display: block;
	font-weight: normal;
	color: #000;
}
ul#menu-footer > li {
	margin-bottom: 5px;
}
ul#menu-footer > li a {
	font-weight: 300;
	color: #000;
	text-decoration: none;
}
.footer-social {
	position: relative;
	padding-top: 30px;
}
.social-icons {
	position: relative;
	display: flex;
	justify-content: flex-end;
	grid-gap: 20px;
}
.footer-social img {
	height: 30px;
	filter: grayscale(1);
}
.footer-newsletter {
	text-align: right;
}
.intro-home {
	position: relative;
	width: 100%;
	height: 100vh;
	background-color: #fff;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.logo-site {
	position: relative;
	padding: 20px;
	margin: -100px auto 0;
	cursor: pointer;
	display: block;
}
.logo-site h2 {
	font-size: 12vw;
	letter-spacing: 0;
	font-weight: 600;
}
.logo-site h2 img {
	max-width: 100%;
}
.accroche-site {
	position: absolute;
	display: flex;
	flex-direction: column;
	width: calc(100% - 40px);
	left: 20px;
	bottom: 50px;
	text-align: center;
}
.accroche-site h3 {
	text-align: center;
	font-size:20px;
	font-weight: 400;
}
.fleche-bas {
	display: inline-block;
	position: relative;
	width: 100%;
	height: 80px;
	background-image: url(/wp-content/uploads/2025/05/arrow-bottom.svg);
	background-color: transparent;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	margin-bottom: 40px;
}
.content-home {
	position: relative;
	width: 100%;
}
.container {
	position: relative;
	width: 100%;
	max-width: 1440px;
	margin: auto;
	padding: 0 20px 100px;
	/*min-height: 100vh;*/
}
#last {
	background-color: #f0f0f0;
	padding-top: 162px;
}
#integrale {
	margin-top: 100px;
	min-height: 100vh;
}
.titre-news {
	position: relative;
	padding: 140px 20px 40px;
	text-align: center;
	font-size: 30px;
	font-weight: 400;
}
.content-page {
	position: relative;
	width: 100%;
	max-width: 1440px;
	margin: auto;
	padding: 140px 20px 40px;
}
.page-template-page-objects .content-page {
	min-height: calc(100vh - 289px);
}
.page-template-page-contact .content-page {
	min-height: calc(100vh - 289px);
	max-width: 960px;
}
.grid-sizer,
.object-item {
	position: relative;
	width: calc( ( 100% - 60px) / 4 );
	margin-bottom: 20px;
	color: #fff;
	font-weight: 500;
}
.gutter-sizer { width: 20px; }
.object-image img { width: 100%; }
.object-hover {
	position: absolute;
	background-color: rgba(0,0,0,0.75);
	width: 100%;
	height: 100%;
	top: 0;
	opacity: 0;
	transition: all 400ms;
}
.object-item:hover .object-hover {
	opacity: 1;
	transform: all 800ms;
}
.object-hover-title {
	position: relative;
	padding: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	height: 100%;
	color: #fff;
	font-weight: 500;
	font-size: 24px;
}
.content-object {
	position: relative;
	width: 100%;
	max-width: 1440px;
	margin: auto;
	padding: 140px 20px 100px;
	display: flex;
	grid-gap: 20px;
}
.thumb-container {
	position: relative;
	/*height: calc( 100vh - 200px);*/
	height: 750px;
	width: 120px;
}
.image-container {
	position: relative;
	/*height: calc( 100vh - 200px);*/
	height: 750px;
	/*width: calc(50% + 100px);*/
	/*width: calc( ( (100vh - 200px) * 0.75 ) + 100px );*/
	width: 662px;
}
.text-container {
	position: relative;
	/*height: calc( 100vh - 200px);*/
	height: 750px;
	/*width: calc( 50% - 240px);*/
	/*width: calc( 100% - 240px - ( (100vh - 200px) * 0.75 ) );*/
	width: calc( 100% - 802px);
	padding-left: 48px;
}
.text-container h1 {
	color: #000;
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 7px;
	text-transform: uppercase;
}
.text-container .bottom {
	position: relative;
	margin-top: 60px;
}
.text-container h2 {
	color: #000;
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 15px;
}
.text-container h3 {
	color: #000;
	font-size: 18px;
	line-height: 1.3;
	font-weight: 300;
	margin-bottom: 15px;
}
.text-container .price {
	color: #000;
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 20px;
}
.text-container .conditions {
	color: #000;
	font-size: 14px;
	font-weight: 300;
	margin-bottom: 20px;
}
.text-container .boutons {
	position: relative;
	display: flex;
	/*flex-direction: column;*/
	grid-gap: 18px;
	padding-bottom: 5px;
	flex-wrap: wrap;
}
.text-container .boutons a {
	display: block;
	border: 2px solid #000;
	background-color: #fff;
	padding: 5px 10px 6px;
	color: #000;
	text-decoration: none;
	font-size: 20px;
	font-weight: 400;
	transition: all 400ms;
	text-transform: uppercase;
	width: 170px;
	text-align: center;
	cursor: pointer;
	/*box-shadow: 2px 11px 20px 0px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 2px 11px 20px 0px rgba(0, 0, 0, 0.2);*/
}
.text-container .boutons a:hover {
	border: 2px solid #b3b3b3;
	background-color: #b3b3b3;
	color: #fff;
	text-decoration: none;
	transition: all 400ms;
}
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.swiper-container-wrap {
	  position:relative;
      width: 100%; /* Largeur du conteneur parent */
	  height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
	
.mySwiper2 {
  position: relative;
  width: calc( 100% - 100px);
  margin: 0 auto;
  height: 100%;
}
.swiper-button-prev, .swiper-button-next {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: black !important; /* Couleur des flèches */
}
.mySwiper2 .swiper-button-prev {
  left: 5px;
}
.mySwiper2 .swiper-button-next {
  right: 5px;
}

.mySwiper {
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .swiper-slide {
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mySwiper2 .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 70px !important;
	font-weight: 300 !important;
}
/*.swiper-button-next, .swiper-button-prev {
    mix-blend-mode: difference;
}*/
.swiper-button-prev {
    left: 0 !important;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 0px !important;
}
.swiper-button-next:after {
    content: '' !important;
    background-image: url(/wp-content/uploads/2025/05/chevron-right.svg) !important;
    height: 45px !important;
    width: 30px !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
}
.swiper-button-prev:after {
    content: '' !important;
    background-image: url(/wp-content/uploads/2025/05/chevron-left.svg) !important;
    height: 45px !important;
    width: 30px !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
}
.content-bio {
	position: relative;
	width: 100%;
	max-width: 960px;
	margin: auto;
	min-height: calc( 100vh - 289px);
	display: grid;
	grid-template-columns: 1fr 2fr;
	grid-gap: 20px;
	padding: 140px 20px 40px;
}
.bio {
	font-size: 24px;
	padding-bottom: 200px;
}
.portrait img {
	width: 100%;
}
.wpcf7, .wpcf7 form { 
	position: relative;
	width: 100%;
}
.flex-form p, .fw-form p {
	position: relative;
	display: flex;
	grid-gap: 20px;
	width: 100%;
	margin-bottom: 20px;
}
.flex-form p span {
	position: relative;
	display: block;
	width: calc( 50% - 10px);
}
.flex-form p span input {
	position: relative;
	display: block;
	width: 100%;
}
.fw-form p span, .fw-form p span input, .fw-form p span textarea {
	position: relative;
	display: block;
	width: 100%;
}
.wpcf7-email, .wpcf7-tel, .wpcf7-text, .wpcf7-textarea {
	position: relative;
	padding: 7px 10px 5px;
	border-radius: 0px;
	font-size: 18px;
	font-weight: 500;
	border: 2px solid #000;
	color: #000;
	font-family: "brown-pro", sans-serif;
}
.wpcf7-submit {
	position: relative;
	padding: 7px 10px 5px;
	border-radius: 0px;
	font-size: 18px;
	font-weight: 500;
	background-color: #fff;
	border: 2px solid #000;
	color: #000;
	font-family: "brown-pro", sans-serif;
}
.overlay-form {
	position: fixed;
	top: 0;
	left: 100%;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0, .2);
	z-index: 10000;
	opacity: 0;
	transition: opacity 600ms;
	cursor: pointer;
}
.overlay-form.active {
	left: 0;
	opacity: 1;
	transition: opacity 600ms;
}
.content-form {
	position: relative;
	margin: 100px auto;
	width: 100%;
	max-width: 1000px;
	padding: 0 20px;
}
.content-form .wpcf7 {
	position: relative;
	background-color: #fff;
	padding: 20px;
}
.content-classic {
	position: relative;
	width: 100%;
	max-width: 1440px;
	margin: auto;
	padding: 140px 20px 40px;
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 30px;
}
.page-template-page-bio .content-classic {
	position: relative;
	width: 100%;
	max-width: 1440px;
	margin: auto;
	padding: 140px 20px 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 30px;
}
.content-classic h1 {
	font-size: 24px;
}
.content-classic .text_content {
	font-size: 24px;
	margin-top: 50px;
}
.content-classic .text_content p {
	margin-bottom: 30px;
}
.footer-contact {
	text-align: center;
}
.sib-email-area input[type="submit"] {
	color: #fff;
	border-radius: 0;
	background-color: #000;
	border: 2px solid #000;
}
input[type="email"].sib-email-area {
	width: 134px;
}
.more {
	background-color: #f0f0f0;
	padding-top: 50px;
}
.more .container {
    padding: 0 20px 50px;
}
.more h4, #last h4 {
	color: #000;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 25px;
    text-transform: uppercase;
    margin-left: 50px;
    border-bottom: 1px solid #000;
    display: inline-block;
	
}
.contactbtn {
	display: block;
	color: #000;
	margin-top: 30px;
	font-weight: 500;
}
@media screen and (max-width: 1280px) {
	.grid-sizer, .object-item {
		width: calc((100% - 40px) / 3);
	}
}
@media screen and (max-width: 996px) {
	.grid-sizer, .object-item {
		width: calc((100% - 20px) / 2);
	}
	.footer-container {
		grid-template-columns: 1fr;
	}
	.footer-social {
		grid-column: span 1;
	}
	.content-object {
		padding: 100px 20px 40px;
		flex-direction: column;
	}
	.thumb-container {
		display: none;
	}
	.image-container {
		position: relative;
		height: auto;
		width: 100%;
	}
	.text-container {
		height: auto;
		width: 100%;
	}
	.text-container .bottom {
		position: relative;
	}
	
	.footer-menu, .footer-contact, .footer-newsletter {
		text-align: center;
		margin-bottom: 30px;
	}
	.social-icons {
		justify-content: center;
		grid-gap: 20px;
	}
	.content-classic {
		grid-template-columns: 1fr;
	}
	.bio {
		padding-bottom: 50px;
	}
	.page-template-page-bio .content-classic {
		grid-template-columns: 1fr;
	}
}
@media screen and (max-width: 768px) {
	.grid-sizer, .object-item {
		width: calc((100% - 20px) / 2);
	}
	.content-bio {
		grid-template-columns: 1fr;
		padding: 100px 20px 40px;
	}
	.burger {
		display: flex;
	}
	.menu-container {
		display: none;
	}
}
@media screen and (max-width: 500px) {
	.grid-sizer, .object-item {
		width: 100%;
	}
	.text-container .boutons a {
		font-size: 16px;
	}
	.text-container .boutons {
		flex-direction: column;
	}
}