/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

 @font-face {
   font-family: 'AvenirNextLTPro Bold';
   src: url('font-website-clown/AvenirNextLTPro-Bold.otf');
 }
 @font-face {
	 font-family: 'AvenirNextLTPro Demi';
	 src: url('font-website-clown/AvenirNextLTPro-Demi.otf');
 }
 @font-face {
	 font-family: 'AvenirNextLTPro DemiIt';
	 src: url('font-website-clown/AvenirNextLTPro-DemiIt.otf');
 }
 @font-face {
	 font-family: 'AvenirNextLTPro Heavy';
	 src: url('font-website-clown/AvenirNextLTPro-Heavy.otf');
 }
 @font-face {
	 font-family: 'AvenirNextLTPro HeavyIt';
	 src: url('font-website-clown/AvenirNextLTPro-HeavyIt.otf');
 }
 @font-face {
	font-family: 'AvenirNextLTPro It';
	src: url('font-website-clown/AvenirNextLTPro-It.otf');
 }
 @font-face {
	font-family: 'AvenirNextLTPro Light';
	src: url('font-website-clown/AvenirNextLTPro-Light.otf');
 }
 @font-face {
	font-family: 'AvenirNextLTPro LightIt';
	src: url('font-website-clown/AvenirNextLTPro-LightIt.otf');
 }
 @font-face {
	font-family: 'AvenirNextLTPro Regular';
	src: url('font-website-clown/AvenirNextLTPro-Regular.otf');
 }
 @font-face {
 font-family: 'AvenirLTStd Book';
 src: url('font-website-clown/AvenirLTStd-Book.woff');
 }
 @font-face {
 font-family: 'SegoeUI Semibold';
 src: url('font-website-clown/Segoe UI Semibold.ttf');
 }

/* ==========================================================================
   One Page Scroll with Animations styles
   ========================================================================== */
/* Code Samples */
body, html {
	height: 100%;
	min-height: 100%;
  background-color: #fff;
}

a {
  cursor: none;
}

#container {
  cursor: none;
}

.cursor-frame {
    position: fixed;
    text-align: center;
    width: 60px;
    height: 60px;
    z-index: 1001;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    pointer-events: none;
    /* mix-blend-mode: exclusion; */
}

#helper {
  width: 60px;
  height: 60px;
  text-align: center;
  border-radius: 60px;
  position: absolute;
  /* mix-blend-mode: exclusion; */
  z-index: 1000;
  font-size: 0.5em;
  font-weight: 600;
  letter-spacing: .15em;
  /* background-color: #C97A84; */
  /* color: #ffffff; */
}

.cursor-text {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-transform: uppercase;
}

section {
	min-width: 960px;
	opacity: 0;
	-webkit-transition:opacity .6s;
	-webkit-transition-delay:.2s;
	-moz-transition:opacity .6s;
	-moz-transition-delay:.2s;
	-o-transition:opacity .6s;
	-o-transition-delay:.2s;
	transition: opacity .6s;
	transition-delay:.2s;
}
.loaded section {
	opacity: 1;
}
section h2 {
	font-size: 36px;
	font-weight: 300;
	color: #000000;
	margin: 0;
	padding: 0;
	line-height: 1em;
}
section p {
	font-weight: 300;
	margin-bottom: 30px;
	font-size: 1.1875em;
	line-height: 1.6316;
	color: #808080;
}
.section-content {
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.copy-container {
	position: absolute;
	z-index: 1;
}
.images-container {
	display: block;
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	width: 670px;
	height: 600px;
}

.section-content .pos-container-header {
    width: 0;
    height: 0;
    position: absolute;
    top: 50vh;
    transform: rotate(-90deg);
}

.section-content .entry-header {
  position: absolute;
  height: 100vh;
  right: 7%;
}

/* .fade-out-right {
  -webkit-animation: fadeOutRight 1s ease-in-out 0s forwards;
    animation: fadeOutRight 1s ease-in-out 0s forwards;
} */
.revealAnim.section .pos-container{
  -webkit-animation: fadeOutRight 1s ease-out;
    animation: fadeOutRight 1s ease-out;
}
.revealAnim.section.active .pos-container {
  -webkit-animation: fadeInRight 1s ease-in 0s forwards;
    animation: fadeInRight 1s ease-in 0s forwards;
}

.revealAnim.section.active .entry-header {
  -webkit-animation: fadeInLeft 1s ease-in-out 0s forwards;
    animation: fadeInLeft 1s ease-in-out 0s forwards;
}
/* defines the animation */
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform:translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform:translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
    transform:translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform:translateX(0);
  }
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform:translateX(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform:translateX(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform:translateX(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform:translateX(0);
  }
}

/* defines the animation */
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform:translateX(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform:translateX(100px);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform:translateX(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateX(100px);
    transform:translateX(100px);
  }
}

.section-content .entry-title {
  position: absolute;
  font-size: 30px;
  font-family: SegoeUI Semibold;
  text-transform: uppercase;
  transform: translateX(-50%);
  width: max-content;
}

.section-content .box {
  width: 100vw;
  height: 100vh;
}
.section-content .pos-container {
  width: 0;
  height: 0;
  position: absolute;
  left: 50vw;
  top: 50vh;
}

.section-content .square {
  width: 74vh;
  height: 74vh;
  position: absolute;
  left: -37vh;
  top: -37vh;
  transform: rotate(25deg);
  overflow: hidden;
  box-shadow: 2px 2px 50px rgba(0, 0, 0, 0.2);
}

.section-content .square::before {
  position: absolute;
  content:" ";
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color: #C97A84;
  display: block;
  z-index: 100;
  opacity: 0.4;
}

.section-content .square:hover:before{
  display: none;
}

/* .section-content .clown-post-image::before {
  position: absolute;
  content:" ";
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-color: #C97A84;
  display: block;
  z-index: 100;
  opacity: 0.4;
}

.section-content .clown-post-image:hover:before{
  display: none;
} */

.section-content .click_loadModal:hover {
  opacity: 1;
  background-color: transparent;
}

.onepage-pagination li a.active::after {
    content: "O" counter(numRow);
    position: absolute;
		top: -65px;
    left: -55px;
    font-size: 60px;
		font-family: AvenirLTStd Book;
    color: #000;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    animation-direction: reverse;
}

.onepage-pagination li a:focus {
    outline: none;
}

.onepage-pagination{
  counter-reset: numRow;
}
.onepage-pagination li{
  counter-increment: numRow;
}

.onepage-pagination:after {
    content: "O6";
    position: absolute;
    bottom: -75px;
    left: -55px;
    font-size: 60px;
		font-family: AvenirLTStd Book;
    color: #000;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    animation-direction: reverse;
}

@keyframes pulse {
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.clown-logo {
    position: absolute;
    left: 10%;
    top: 5%;
    z-index: 900;
}

/* .revealAnim.section.active .image-animation:hover, */

.clown-instagram:hover,
#sidebar-language ul:hover,
.title-animation:hover,
.clown-logo:hover {
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-direction: reverse;
}
.clown-instagram-and-language {
  position: absolute;
  display: inline-flex;
  bottom: 3%;
  right: 7%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transform: translateZ(0);
}

.peu-page {
  background-color: #000;
  width: 180px;
  height: 100%;
  position: absolute;
  font-family: SegoeUI Semibold;
  text-transform: uppercase;
  left: 0;
  top: 0;
  z-index: 901;
  display: flex;
  flex-flow: column;
  justify-content: center;
  cursor: none;
  transform: translate(-75%,0);
  transition: all 1s ease;
}

.link-peu-page:hover > .peu-page {
  -webkit-transform: none;
   -moz-transform: none;
   -o-transform: none;
   -ms-transform: none;
   transform: none;
}

.skew {
  transform: rotate(45deg);
  background-color: #fff;
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 90px;
  height: 90px;
  align-items: center;
  margin-left: 160px;
}

.skew .peu-title {
  transform: rotate(-45deg);
  color: #000;
  font-size: 15px;
  text-align: center;
}

.skew .peu-title-text {
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-direction: reverse;
}

.link-peu-page .martine-img-not-hover {
  width: 100px;
}
.link-peu-page .martine-img-hover {
  width: 250px;
  display:none;
}
.link-peu-page:hover > .peu-page > .skew  > .peu-title-text > .peu-title > .martine-img-not-hover {
  display: none !important;
}

.link-peu-page:hover > .peu-page > .skew  > .peu-title-text > .peu-title > .martine-img-hover {
  transform: rotate(-90deg);
  transform-origin: center;
  line-height: 1;
  text-align: center;
  position: relative;
  margin-left: -250px;
  display: block !important;
}

/* Modal */
.modalbg {
  position: fixed;
  font-family: Arial, Helvetica, sans-serif;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 999;
  -moz-transition: all 2s ease-out;
  -webkit-transition: all 2s ease-out;
  -o-transition: all 2s ease-out;
  transition: all 2s ease-out;
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  -transition-delay: 0.2s;
  display: block;
  pointer-events: none;
}
.modalbg .dialog {
	width: 80vw;
	    height: 80vh;
	    position: relative;
	    top: -1400px;
	    margin: 15vh 7vw 5vh auto;
  box-shadow: 0 0 10px #000;
  -moz-box-shadow: 0 0 10px #000;
  -webkit-box-shadow: 0 0 10px #000;
}
.loadModal_result {
  margin: 0;
  font-family: AvenirLTStd Book;
  font-size: 21px;
  white-space: pre-line;
  overflow-y: auto;
  max-height: 82%;
  padding: 4%;
}
.loadModal_result::-webkit-scrollbar {
-webkit-appearance: none;
width: 7px;
}
.loadModal_result::-webkit-scrollbar-thumb {
border-radius: 4px;
background-color: rgba(0,0,0,.5);
box-shadow: 0 0 1px rgba(255,255,255,.5);
}
.modalbg .dialog .ie7 {
  filter: progid:DXImageTransform.Microsoft.Shadow(color='#000', Direction=135, Strength=3);
}
.modalbg-target {
  display: block;
  pointer-events: auto;
  -moz-transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.modalbg-target .dialog {
  top: -20px;
  -moz-transition: all 0.8s ease-out;
  -webkit-transition: all 0.8s ease-out;
  -o-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  -transition-delay: 0.4s;
}
.close {
  position: absolute;
  text-decoration: none;
	right: 0;
  z-index: 100;
}
.close-text {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 40px;
	overflow: hidden;
	top: 20px;
	right: 25px;
}
.close-text:hover::before, .close-text:hover::after {
  background: #1ebcc5;
}
.close-text::before, .close-text::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #fff;
}
.close-text::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.close-text::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.fineprint {
  font-style: italic;
  font-size: 10px;
  color: #646;
}

#overlay{
	position: absolute;
	z-index: 100;
	width: 100%;
	height:100%;
	display: block;
	background: rgba(0,0,0,0.6);
}
.cv-spinner {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.spinner {
	width: 40px;
	height: 40px;
	border: 4px #ddd solid;
	border-top: 4px #2e93e6 solid;
	border-radius: 50%;
	animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(359deg);
	}
}
.is-hide{
	display:none;
}

/* Contact form on modal */
.modalbl-class .contact-form-7 {
  white-space: unset !important;
}
.modalbl-class .wpcf7-form {
    margin-top: 40px;
}
.modalbl-class .wpcf7-form p {
  margin: 25px 0;
  padding: 0 40px;
}
.modalbl-class .wpcf7-form-control-wrap input {
  padding: 10px;
  width: 60%;
  border: none;
}
.modalbl-class .wpcf7-form-control-wrap input::placeholder,
.modalbl-class .wpcf7-form-control-wrap textarea::placeholder {
  color: #C97A84;
}
.modalbl-class .wpcf7-form-control-wrap textarea {
  padding: 10px;
  width: 60%;
  height: 150px;
  border: none;
}
.modalbl-class .wpcf7-form input[type="submit"] {
    float: right;
    margin-right: calc(40% - 20px);
    background-color: #C97A84;
    color: #ffffff;
    padding: 10px 35px;
}

.loadModal_result .load-content-post .owl-carousel {
   display: block;
}

 /* .loadModal_result .load-content-post .owl-carousel .photo-single-item {
   width: 80%;
 } */

 .modalbl-class .photo-gallery-css {
   white-space: unset !important;
 }

  .modalbl-class .photo-gallery-css .photo-single-item {
     margin-top: 20px;
   }

   /*.modalbl-class .photo-gallery-css .photo-single-item-img {
     width: 100%;
   } */

  .modalbl-class .photo-gallery-css .photo-img {
     /* background-repeat: no-repeat;
     background-position: center center;
     background-size: cover; */
     height: 450px;
     width: 450px;
   }

   .modalbl-class .photo-gallery-css .photo-gallery-carousel .owl-nav {
      position: absolute;
      top: calc(50% - 50px);
      width: 100%;
  }

  .modalbl-class .photo-gallery-css .photo-gallery-carousel .owl-nav .nav-button {
      font-size: 35px;
  }

  .modalbl-class .photo-gallery-css .photo-gallery-carousel .owl-nav .owl-prev {
    position: absolute;
    left: 15px;
  }

  .modalbl-class .photo-gallery-css .photo-gallery-carousel .owl-nav .owl-next {
    right: 15px;
    position: absolute;
  }

  .modalbl-class .photo-gallery-css .photo-gallery-carousel .owl-nav .owl-prev:active,
  .modalbl-class .photo-gallery-css .photo-gallery-carousel .owl-nav .owl-prev:focus,
  .modalbl-class .photo-gallery-css .photo-gallery-carousel .owl-nav .owl-next:active,
  .modalbl-class .photo-gallery-css .photo-gallery-carousel .owl-nav .owl-next:focus,
  .modalbl-class .photo-gallery-css .photo-gallery-carousel .owl-dots .owl-dot.active {
        outline: none;
  }

  .modalbl-class .photo-gallery-css .photo-gallery-carousel .owl-stage {
    display: flex;
  }

  .modalbl-class .photo-gallery-css .photo-gallery-carousel .owl-dots .owl-dot span {
    background: #000000;
    height: 3px;
    width: 40px;
  }

  .modalbl-class .photo-gallery-css .photo-gallery-carousel .owl-dots .owl-dot.active span,
  .modalbl-class .photo-gallery-css .photo-gallery-carousel .owl-dots .owl-dot:hover span {
    background: #4381c2;
  }

  .modalbl-class .photo-gallery-css .photo-gallery-carousel .owl-dots {
    margin-top: 15px;
  }

#logo-hover-audio {
  position: fixed;
  /* visibility: hidden; */
  top: -100px;
  left: 0;
}
/* Language sidebar */
#sidebar-language {
  bottom: 3%;
  margin-right: 15px;
}
#sidebar-language ul {
    list-style: none;
    padding: 5px 0;
    margin: 0;
}
#sidebar-language ul a {
    text-decoration: none;
    color: #000000;
    font-size: 18px;
}
#sidebar-language ul a .wpml-ls-native {
    font-weight: 900;
}

@media screen and (max-width:2561px) {

  .section-content .entry-title {
    font-size: 35px;
  }

  .onepage-pagination {
    margin-top: -270px;
  }

  .onepage-pagination li a {
    padding: 5px 0;
    height: 80px;
  }

  .onepage-pagination li a.active:before {
    width: 4px;
    height: 80px;
  }

  .onepage-pagination li a:before {
    width: 3px;
    height: 80px;
  }
}

@media screen and (max-width:1921px) {

  .onepage-pagination {
    margin-top: -240px;
  }

  .onepage-pagination li a {
    padding: 5px 0;
    height: 70px;
  }

  .onepage-pagination li a.active:before {
    width: 4px;
    height: 70px;
  }

  .onepage-pagination li a:before {
    width: 3px;
    height: 70px;
  }
}

@media screen and (max-width:1601px) {

  .section-content .entry-title {
    font-size: 25px;
  }
  .onepage-pagination {
    margin-top: -174px;
  }

  .onepage-pagination li a {
    padding: 4px 0;
    height: 50px;
  }

  .onepage-pagination li a.active:before {
    width: 3px;
    height: 50px;
  }

  .onepage-pagination li a:before {
    width: 2px;
    height: 50px;
  }
}

@media screen and (max-width:1401px) {

  .section-content .entry-title {
    font-size: 20px;
  }

  .onepage-pagination {
    margin-top: -138px;
  }

  .onepage-pagination li a {
    padding: 3px 0;
    height: 40px;
  }

  .onepage-pagination li a.active:before {
    width: 4px;
    height: 40px;
  }

  .onepage-pagination li a:before {
    width: 3px;
    height: 40px;
  }
}

@media screen and (max-width:1024px) {
  .cursor-frame {
    display: none;
  }
  .clown-logo {
    top: 8%;
    width: 100%;
    text-align: center;
    left: 0;
  }
  .peu-page {
    width: 50px;
    transform: none;
  }
  .skew {
    width: 50px;
    height: 50px;
    margin-left: 25px;
    margin-top: 0;
  }
  .onepage-pagination {
    right: 7% !important;
  }
  .onepage-pagination li a.active::after {
    top: -50px;
    left: -15px;
    font-size: 35px;
  }
  .onepage-pagination:after {
    bottom: -55px;
    left: -15px;
    font-size: 35px;
  }
  .clown-instagram-and-language {
    width: 100%;
    left: 0;
    bottom: 8%;
    align-items: center;
    justify-content: center;
  }
  #sidebar-language {
    margin-right: 20px;
  }
  /* .clown-instagram-and-language ul .wpml-ls-item-legacy-dropdown {
    display: inline-flex;
  } */
  .section-content .square {
    width: 70vw;
    height: 70vw;
    left: -35vw;
    top: -45vw;
    transform: rotate(0) !important;
  }
  .section-content .clown-post-image {
    transform: rotate(0) scale(1) !important;
  }
  .section-content .pos-container-header {
    top: 45vh;
  }
  .section-content .entry-header {
    right: 6%;
  }

  .modalbg .dialog {
    width: 75vw;
    height: 75vh;
    margin: 13vh 10vw 5vh auto;
  }

  .loadModal_result {
    font-size: 16px;
  }

  .loadModal_result h1 {
    font-size: 21px;
    margin-top: 20px;
  }

  .close-text {
    width: 25px;
    height: 25px;
    top: 15px;
    right: 15px;
  }
  .skew .peu-title {
    font-size: 10px;
  }
  .modalbl-class .wpcf7-form-control-wrap input {
    width: 80%;
  }
  .modalbl-class .wpcf7-form-control-wrap textarea {
    width: 80%;
  }
  .link-peu-page .martine-img-not-hover {
    width: 70px;
  }
  .modalbl-class .wpcf7-form input[type="submit"] {
    float: left;
    margin-right: 0;
  }

  .modalbl-class .photo-gallery-css .photo-img {
    /* height: 58vh; */
    margin-top: 40px;
  }
}
@media screen and (max-width:767px) {
  .section-content .entry-header {
    right: 7%;
  }
  .peu-page {
    width: 25px;
    transform: none;
  }
  .skew {
    width: 30px;
    height: 30px;
    margin-left: 10px;
    margin-top: 0;
  }
  .skew .peu-title {
    font-size: 6px;
  }
  .section-content .entry-title {
    font-size: 18px;
  }
  .link-peu-page .martine-img-not-hover {
    width: 40px;
  }
  .modalbl-class .photo-gallery-css .photo-img {
    margin-top: 40px;
    height: 200px;
    width: 200px;
  }
  .modalbl-class .photo-gallery-css .photo-gallery-carousel .owl-nav .nav-button {
    font-size: 20px;
  }

  .modalbl-class .photo-gallery-css .photo-gallery-carousel .owl-nav .owl-prev {
    left: 5px;
  }

  .modalbl-class .photo-gallery-css .photo-gallery-carousel .owl-nav .owl-next {
    right: 5px;
    position: absolute;
  }

  .modalbl-class .photo-gallery-css .photo-gallery-carousel .owl-dots .owl-dot span {
    width: 25px;
  }
  .modalbl-class .photo-gallery-css .photo-gallery-carousel .owl-nav {
    top: calc(50% - 30px);
  }
}
