/*
Theme Name: creatio
Text Domain: creatio
Author: Louise Obé
Version: 1.0
Description: css creatio
*/
@font-face {
  font-family: 'Blur';
  src: url('./fonts/BlurMedium.eot');
  src: url('./fonts/BlurMedium.eot?#iefix') format('embedded-opentype'), url('./fonts/BlurMedium.woff2') format('woff2'), url('./fonts/BlurMedium.woff') format('woff'), url('./fonts/BlurMedium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Blur-Bold';
  src: url('./fonts/BlurBold.eot');
  src: url('./fonts/BlurBold.eot?#iefix') format('embedded-opentype'), url('./fonts/BlurBold.woff2') format('woff2'), url('./fonts/BlurBold.woff') format('woff'), url('./fonts/BlurBold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Blur-Light';
  src: url('./fonts/BlurLight.eot');
  src: url('./fonts/BlurLight.eot?#iefix') format('embedded-opentype'), url('./fonts/BlurLight.woff2') format('woff2'), url('./fonts/BlurLight.woff') format('woff'), url('./fonts/BlurLight.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Blurvh1';
  src: url('./fonts/Blurvh1.eot');
  src: url('./fonts/Blurvh1.eot?#iefix') format('embedded-opentype'), url('./fonts/Blurvh1.woff2') format('woff2'), url('./fonts/Blurvh1.woff') format('woff'), url('./fonts/Blurvh1.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
body,
html {
  width: 100vw;
  overflow-x: hidden;
}
body {
  min-height: 100vh;
  position: relative;
  font-size: 14px;
  color: #2b256c;
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  border: 40px solid white;
}
p {
  line-height: 1.9em;
  font-size: 14px;
}
.mobile {
  display: none !important;
}
.desktop {
  display: block;
}
.section-container {
  width: 100%;
  align-items: center;
}
section {
  align-items: center;
}
h1,
h2,
h3,
h4 {
  font-family: 'Blur';
}
h1 {
  color: white;
  text-align: center;
  font-weight: 500;
}
p {
  text-align: left;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  font-size: 15px;
  hyphens: none !important;
  /* réglages complémentaires */
  word-spacing: normal;
  /* pas d'espace artificiellement augmenté */
  text-justify: inter-word;
}
a.button {
  padding: 10px 40px;
  border-radius: 30px;
  background-color: #fb006a;
  color: white;
  font-size: 12px;
  border: initial;
  text-transform: uppercase;
  transition: all 0.3s;
  text-decoration: none;
  font-weight: 300;
  box-shadow: 3px 4px 5px 0px #0f0e0e;
  letter-spacing: 0.2em;
  transition: all 0.3s ease-out;
}
a.button:hover {
  background-color: white;
  color: #fb006a;
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-item {
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-item:nth-child(1) {
  animation-delay: 0s;
}
.hero-item:nth-child(2) {
  animation-delay: 0.4s;
}
.hero-item:nth-child(3) {
  animation-delay: 0.6s;
}
.hero-item:nth-child(4) {
  animation-delay: 0.8s;
}
.hero-logo {
  opacity: 0;
  transform: translateY(-50px);
  animation: logoDrop 1s ease-out forwards;
  animation-delay: 0.2s;
}
@keyframes logoDrop {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.parallax {
  will-change: transform;
  transition: transform 0.1s linear;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
html.intro nav.desktop ul {
  opacity: 0;
  transform: translateX(-80px);
  animation: menu-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.3s;
}
html.intro nav.desktop .button {
  opacity: 0;
  transform: translateX(80px);
  animation: button-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.5s;
}
header {
  display: flex;
  justify-content: space-around;
  align-items: start;
  width: 100%;
  position: absolute;
  flex-direction: row;
  z-index: 99;
  padding: 50px;
}
header nav.desktop {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav.desktop .button {
  opacity: 1;
  transform: translateX(0);
}
header nav.desktop ul {
  display: flex;
  justify-content: space-around;
  opacity: 1;
  transform: translateX(0);
}
header nav.desktop ul li {
  padding: 10px 0;
}
header nav.desktop ul li.current-menu-item a {
  color: #fb006a;
}
header nav.desktop ul li a {
  font-size: 16px;
  transition: all 0.2s;
  position: relative;
  font-weight: 300;
  padding: 0 20px;
  letter-spacing: 0.05em;
  font-family: "Blur";
}
@keyframes menu-in {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes button-in {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
footer {
  background-color: #f2f1f4;
  display: flex;
  flex-direction: column;
  margin-top: -50px;
  width: initial;
  border-bottom-right-radius: 40px;
  border-bottom-left-radius: 40px;
  padding: 150px 80px;
  color: #2b256c;
}
footer aside {
  width: fit-content;
  margin: 0 auto;
}
footer svg.c-creatio {
  width: 58px;
  margin-bottom: 10px;
  margin-left: 65px;
}
footer .footer-container {
  display: flex;
  flex-direction: row;
  z-index: 1;
  justify-content: space-around;
  align-items: stretch;
  position: relative;
  gap: 30px;
  width: 80vw;
  max-width: 1000px;
  flex-wrap: wrap;
}
footer .footer-container .links {
  margin-bottom: 10px;
}
footer .footer-container .links a {
  width: 30px;
  height: 30px;
  box-shadow: 2px 4px 10px 0px #1a171770;
}
footer .footer-container .links a:hover .picto-color {
  fill: #2b256c;
}
footer .footer-container .links .picto-color {
  fill: #fb006a;
}
footer .footer-container .footer-column {
  flex: 1;
  height: stretch;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
footer .footer-container .footer-column p {
  line-height: 1.5em;
  font-size: 13px;
}
footer .footer-container .footer-column:nth-child(1),
footer .footer-container .footer-column.last {
  flex: 1.5;
}
footer .footer-container #logo {
  max-width: 200px;
}
footer .footer-container h4 {
  color: #2b256c;
  margin-top: 30px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0em;
}
footer .footer-container h4 span {
  color: #fb006a;
}
footer .footer-container li {
  color: #2b256c;
  text-transform: uppercase;
  list-style-type: none;
  font-family: "Blur";
  font-size: 13px;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #2b256c;
  padding: 5px 0;
  max-width: 140px;
}
footer .footer-container li:nth-child(1) {
  padding-top: 0;
}
footer .footer-container li:nth-child(4) {
  border: none;
  padding-bottom: 0;
}
div.logo {
  position: absolute;
  top: 0;
  display: flex;
  align-self: center;
  justify-content: center;
  width: 120px;
}
div.logo svg {
  position: absolute;
  top: 0;
  width: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 10px;
}
div.logo svg.coeur {
  transform: rotateY(270deg);
}
div.logo.heart svg.c-creatio {
  transform: rotateY(90deg);
}
div.logo.heart svg.coeur {
  transform: rotateY(0deg);
}
nav#mobile-menu {
  background: url('img/bg.jpg');
  background-size: cover;
  height: 100dvh;
  border-radius: 40px;
  overflow: hidden;
  z-index: 99;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  position: absolute;
  justify-content: space-between;
  padding-bottom: 20px;
  pointer-events: none;
  top: 0;
  opacity: 0;
  width: 100%;
  left: 0;
  transition: all 0.5s cubic-bezier(0, 0.61, 0.34, 1.01);
  gap: 10px;
}
nav#mobile-menu div.logo {
  position: relative;
  right: 0;
  left: 0;
  margin: 0 auto;
}
nav#mobile-menu li a {
  font-size: 20px;
  transition: all 0.2s;
  position: relative;
  font-weight: 300;
  padding: 0 20px;
  letter-spacing: 0.05em;
  font-family: "Blur";
}
nav#mobile-menu h3 {
  color: white;
  font-size: 18px;
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
}
nav#mobile-menu div.links a {
  width: 30px;
  height: 30px;
}
nav#mobile-menu p {
  color: white;
  line-height: 1.1em;
  font-size: 12px;
}
body.menu-open {
  overflow: hidden;
  height: 100vh;
}
nav#mobile-menu ul {
  flex-direction: column;
  transform: none !important;
}
nav#mobile-menu ul li {
  margin-bottom: 20px;
}
nav#mobile-menu ul li a {
  color: white;
}
nav#mobile-menu.active {
  pointer-events: initial;
  opacity: 1;
}
section.hero {
  height: calc(90vh - 80px);
  border-radius: 40px;
  overflow: hidden;
  z-index: 1;
}
section.hero .section-container {
  height: 100%;
  background: url('img/bg.jpg');
  background-size: cover;
  align-items: center;
  justify-content: center;
  display: flex;
}
section.hero .section-container h1 {
  font-size: 55px;
  line-height: 4rem;
}
section.hero .section-container h2 {
  color: white;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-top: 10px;
}
section.hero .section-container a.button {
  margin-top: 50px;
}
section.duo {
  margin-top: -50px;
  padding: 150px 50px;
}
section.duo .section-container {
  flex-direction: row;
  display: flex;
  max-width: 1000px;
}
section.duo .section-container div {
  flex: 1;
}
section.duo .section-container h3 {
  font-size: 35px;
  font-weight: 400;
  line-height: 1.2em;
  margin-bottom: 30px;
}
div.links {
  display: flex;
  gap: 15px;
}
div.links a {
  background: url(img/circle.svg);
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 10px 11px 10px 0px #1a171770;
  border-radius: 40px;
}
div.links a svg {
  max-height: 60%;
  max-width: 60%;
  width: 20px;
  height: 20px;
}
section.grey {
  background-color: #f2f1f4;
  z-index: 0;
}
section.grey .section-container img {
  max-width: 400px;
}
section.grey .section-container img#illu2 {
  max-width: 550px;
  padding-right: 50px;
}
section.pink {
  background: url('img/bg-rose.png');
  background-size: cover;
  border-radius: 40px;
  overflow: hidden;
  color: white;
}
section.blue {
  background: url('img/bg-blue.png');
  background-size: cover;
  border-radius: 40px;
  overflow: hidden;
  color: white;
}
section.blue .section-container {
  max-width: 1200px;
}
section.blue .section-container .left {
  padding-right: 10vw;
}
section.blue .section-container .arrows {
  max-width: 400px;
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-bottom: 40px;
}
section.blue .section-container .arrows img {
  max-width: 50px;
  box-shadow: 10px 11px 10px 0px #1a171770;
  border-radius: 100%;
}
section.blue .section-container .arrows img:nth-child(1) {
  transition-delay: 0.3s;
}
section.blue .section-container .arrows img:nth-child(2) {
  transition-delay: 0.4s;
}
section.blue .section-container .arrows img:nth-child(3) {
  transition-delay: 0.5s;
}
section.blue .section-container .arrows img:nth-child(4) {
  transition-delay: 0.6s;
}
section.gradient {
  background: url('img/bg.jpg');
  background-size: cover;
  border-radius: 40px;
  overflow: hidden;
  padding: 50px 30px 45px 30px;
}
section.anne {
  margin-top: 30px;
}
.links.anne a:hover .picto-color {
  fill: #2b256c;
  transition: fill 0.3s ease-out;
}
.links.anne .picto-color {
  fill: #fb006a;
}
section.yannik {
  margin-top: 30px;
}
section.yannik .section-container {
  flex-direction: row-reverse;
  padding-bottom: 50px;
}
.links.yannik a:hover .picto-color {
  fill: #fb006a;
  transition: fill 0.3s ease-out;
}
.links.yannik .picto-color {
  fill: #2b256c;
}
section.anne,
section.yannik {
  padding: 50px;
  z-index: 1;
}
section.anne .section-container,
section.yannik .section-container {
  max-width: 1000px;
  gap: 100px;
}
section.anne .section-container img,
section.yannik .section-container img {
  max-height: 400px;
}
section.anne .section-container h3,
section.yannik .section-container h3 {
  margin-bottom: 10px;
}
section.anne .section-container p,
section.yannik .section-container p {
  line-height: 2em;
  margin-bottom: 30px;
}
section.anne .section-container .left,
section.yannik .section-container .left,
section.anne .section-container .right,
section.yannik .section-container .right {
  padding: 0;
}
section.blue.duo.arrows {
  z-index: 1;
  padding: 160px 50px 150px 50px;
  display: flex;
}
section.blue.duo.arrows .section-container {
  align-items: flex-start;
}
section#avis .section-container .ti-widget.ti-goog .ti-review-content {
  height: 170px !important;
  color: #2b256c;
  font-family: "Shippori Antique B1";
  line-height: 1.4em;
}
section#avis .ti-widget.ti-goog .ti-widget-container {
  margin-bottom: 0;
}
section#avis .ti-widget.ti-goog .ti-col-3 .ti-review-item .ti-inner {
  border-radius: 30px !important;
  box-shadow: 3px 4px 5px 0px #0f0e0e;
  padding: 40px !important;
}
section#avis .ti-widget.ti-goog .ti-reviews-container-wrapper {
  padding-bottom: 5px;
}
section#avis .ti-widget.ti-goog .ti-controls .ti-next,
section#avis .ti-widget.ti-goog .ti-controls .ti-prev {
  box-shadow: 3px 4px 5px 0px #0f0e0e;
  outline: none;
  width: 40px;
  height: 40px;
  border-radius: 40px;
}
section#avis .ti-widget.ti-goog .ti-controls .ti-prev {
  left: -80px;
}
section#avis .ti-widget.ti-goog .ti-controls .ti-next {
  right: -80px;
}
section#avis .ti-widget.ti-goog .ti-controls .ti-next:before,
section#avis .ti-widget.ti-goog .ti-controls .ti-prev:before {
  background: url('img/arrow-avis.svg');
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 200ms ease-out;
  content: "";
  display: block;
  position: absolute;
  border: initial;
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
  transform: none;
}
section#avis .ti-widget.ti-goog .ti-controls .ti-next:before {
  transform: rotate(180deg);
}
section#avis .ti-widget.ti-goog .ti-star {
  width: 27px !important;
  height: 27px !important;
  margin-right: 8px !important;
}
section#avis .ti-widget.ti-goog .ti-reviews-container-wrapper .ti-inner > .ti-stars {
  margin-bottom: 25px;
  margin-top: 20px;
}
section#avis .ti-widget.ti-goog .ti-widget-container .ti-name {
  font-size: 15px;
  line-height: 15px;
  color: #2b256c;
  font-family: "Shippori Antique B1";
}
section#avis .ti-widget.ti-goog .ti-widget-container .ti-date {
  display: none;
  line-height: 0;
}
section#avis .section-container {
  padding: 30px 0;
}
@media (max-width: 1400px) {
  section.blue .section-container {
    gap: 100px;
  }
  section.blue .section-container .left {
    padding-right: 0;
  }
}
@media (max-width: 1050px) {
  .mobile {
    display: inline-block !important;
  }
  .section-container,
  section.duo .section-container {
    padding: 25px;
    flex-direction: column;
  }
  section.hero .section-container {
    padding-top: 100px;
  }
  section.hero .section-container h1 {
    font-size: 28px;
    line-height: 1.3em;
    letter-spacing: 0em;
  }
  section.duo .section-container h3,
  p {
    text-align: center;
  }
  section.duo .section-container h3 {
    font-size: 24px;
    margin-bottom: 10px;
    margin-top: 20px;
  }
  section.duo .section-container,
  section.duo .section-container div.left,
  section.duo .section-container div.right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  section.duo {
    padding: 80px 0px;
  }
  header {
    justify-content: flex-start;
    padding-left: 30px;
    height: auto;
    margin-top: 0;
    margin-bottom: -30px;
  }
  body {
    border-width: 10px;
  }
  section.hero .section-container h2 {
    font-size: 12px;
    text-align: center;
  }
  nav.desktop {
    display: none! important;
  }
  nav.mobile,
  .mobile-logo,
  .mobile.ham {
    display: block !important;
  }
  .desktop {
    display: none !important;
  }
  section.grey .section-container img,
  section.grey .section-container img#illu2 {
    max-width: 500px;
    padding-right: 0;
  }
  section.blue.duo.arrows {
    padding: 60px 10px 60px 10px;
  }
  section.blue.duo.arrows .section-container {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
  }
  section.blue.duo.arrows .section-container .button {
    margin-top: 30px;
  }
  section.blue.duo.arrows .section-container .left {
    padding-right: 0;
    margin-top: 20px;
  }
  section#avis {
    padding: 0;
  }
  section#avis .section-container {
    padding: 30px;
  }
  #avis .ti-widget.ti-goog .ti-controls-line {
    display: none !important;
  }
  section#avis .ti-widget.ti-goog .ti-widget-container .ti-name {
    letter-spacing: 0em;
  }
  section.duo.anne,
  section.duo.yannik {
    padding: 20px 0px;
    z-index: 1;
  }
  section.duo.anne .section-container,
  section.duo.yannik .section-container {
    gap: 30px;
  }
  section.duo .section-container div.links a svg {
    width: 20px;
    height: 20px;
  }
  footer.mobile {
    padding: 150px 20px;
    display: flex !important;
    align-items: center;
  }
  footer.mobile .footer-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 70px;
  }
  footer.mobile .footer-container .footer-column {
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  footer.mobile .footer-container .footer-column .links {
    margin-top: 0;
    justify-content: center;
  }
  footer.mobile .footer-container .footer-column:nth-child(3) {
    flex-wrap: wrap;
    text-align: center;
    justify-content: space-around;
  }
  footer.mobile .footer-container .footer-column:nth-child(3) p,
  footer.mobile .footer-container .footer-column:nth-child(3) li {
    font-size: 14px;
  }
  footer.mobile .footer-container h4 {
    text-align: center;
  }
  footer.mobile svg.c-creatio {
    margin-left: 0;
    margin-right: 0;
  }
  div.logo {
    width: 100px;
  }
  img#illu1 {
    margin-bottom: 20px;
  }
}
@media (max-width: 760px) {
  section.grey .section-container img,
  section.grey .section-container img#illu2 {
    max-width: 100%;
  }
}
