@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Parkinsans:wght@300..800&display=swap");
:root {
  --site-width: 1400rem;
  --site-width-narrow: 900rem;
  --header-height: 180rem;
  --primary-color: #1193d4;
  --secondary-color: #0d171b;
  --background-color: #8cc0f52a;
  --card-background: #ffffff;
  --text-primary: #0d171b;
  --text-secondary: #475569;
  --border-color: #e2e8f0;
  --logo-color: #fda135;
}

.wp-block-mytheme-icon.icomoon-icon.align-center {
  text-align: center;
}
.wp-block-mytheme-icon.icomoon-icon.align-right {
  text-align: right;
}

html {
  font-size: 1px;
  scroll-behavior: smooth;
}

body {
  padding-top: var(--header-height);
}
body .site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
}
body .site-body {
  position: relative;
  z-index: 20;
}
body .site-footer {
  position: relative;
  z-index: 20;
}

.site-header {
  width: 100%;
  height: var(--header-height);
  background-color: white;
  transition: 0.3s;
}
.site-header--wrap {
  height: 100%;
  width: var(--wp--style--global--wide-size);
  margin: 0 auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .logo {
  text-decoration: none;
  text-transform: uppercase;
  margin: 0;
  width: 150rem;
  transition: 0.2s;
}
.site-header .logo img {
  width: 100%;
  transition: 0.3s;
}
.site-header .logo--description {
  font-size: 25rem;
  color: var(--primary-color);
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
}
.site-header .logo--description em {
  display: block;
  margin: 2rem 0;
  font-size: 0.6em;
  font-weight: 700;
  line-height: 1.2;
}
.site-header .logo--description strong {
  display: block;
  color: var(--logo-color);
  font-weight: 700;
}
.site-header.sticky {
  --header-height: 80rem;
  width: calc(100% - 0rem);
  background-color: white;
  border-bottom: 2px solid var(--primary-color);
}
.site-header.sticky .logo {
  width: 70rem;
}
.site-header.sticky .logo span {
  font-size: 14rem;
  color: rgb(0, 0, 0);
}
.site-header.sticky .logo--description {
  font-size: 18rem;
}
.site-header.sticky .nav-lang a {
  color: black;
}
.site-header.sticky .nav-lang a.current {
  color: white;
}
.site-header .mobile-nav {
  display: none;
}

.site-nav {
  position: relative;
}
.site-nav > ul {
  display: flex;
  align-items: start;
}
.site-nav > ul li {
  position: relative;
}
.site-nav > ul li a {
  font-weight: 700;
  text-decoration: none;
  padding: 0 15rem;
  transition: all 0.2s;
}
.site-nav > ul li a:hover {
  color: #006e93;
}
.site-nav > ul li.menu-item-has-children {
  margin-right: 10rem;
  padding-right: 20rem;
}
.site-nav > ul li.menu-item-has-children ul {
  translate: 0 -50rem;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  height: fit-content;
  padding: 10rem 0;
  background-color: white;
  transition: all 0.2s;
}
.site-nav > ul li.menu-item-has-children ul li {
  width: max-content;
  margin: 0rem 0;
  transition: all 0.2s 0.1s;
}
.site-nav > ul li.menu-item-has-children:hover ul {
  translate: 0 0;
  opacity: 1;
  pointer-events: all;
}
.site-nav > ul li.menu-item-has-children:hover ul li {
  margin: 10rem 0;
}
.site-nav > ul li.menu-item-has-children:after {
  content: "›";
  display: inline-block;
  position: absolute;
  top: 0%;
  right: 0rem;
  rotate: 90deg;
  line-height: 1;
  font-size: 30rem;
}

.site-footer {
  margin-top: 50rem;
  padding: 30rem 0;
  color: var(--text-secondary);
  background-color: var(--secondary-color);
  color: var(--card-background);
}
.site-footer--wrap {
  width: var(--site-width);
  margin: 0 auto 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.site-footer--logo {
  display: block;
  width: 100rem;
  margin: 0 auto 0;
}
.site-footer--logo img {
  display: block;
  width: 100%;
}
.site-footer--adress h6 {
  font-size: 18rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 10rem;
  color: var(--wp--preset--color--primary);
}
.site-footer--contact {
  color: var(--primary-color);
}

.nav-footer {
  margin-top: 50rem;
  text-align: center;
}
.nav-footer li {
  display: inline-block;
  margin: 0 5rem;
}
.nav-footer li a {
  font-size: 14rem;
  text-decoration: none;
  color: inherit;
}

.home .hero {
  margin-bottom: 100rem;
}
.home .sell {
  margin-bottom: 100rem;
}

.hero {
  position: relative;
}
.hero--pic {
  width: 100%;
  height: calc(100vh - var(--header-height));
  object-fit: cover;
  filter: brightness(0.7);
}
.hero--content {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  z-index: 10;
  width: 55%;
}
.hero--content h1 {
  font-family: var(--typo-titre);
  color: var(--wp--preset--color--light);
  font-size: 8vh;
  font-weight: 700;
  line-height: 1.2;
  margin: 20rem 0 20rem;
}
.hero--content p {
  font-size: 2vh;
  color: var(--wp--preset--color--light);
  text-shadow: 0 0 5rem var(--wp--preset--color--dark);
}

.blog-content {
  width: var(--wp--style--global--wide-size);
  margin-left: auto;
  margin-right: auto;
}
.category-list {
  display: flex;
  gap: 20rem;
  margin: 10rem 0 50rem;
}
.category-list li {
  list-style-type: none;
  border: 1px solid var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary);
  border-radius: 1px;
}
.category-list li a {
  display: block;
  padding: 5rem 10rem;
  text-decoration: none;
  background-color: transparent;
  transition: all 0.2s;
}
.category-list li a:hover {
  color: var(--wp--preset--color--light);
  background-color: var(--wp--preset--color--primary);
}
.category-list li.cat-item-none {
  display: none;
}
.category-list li.current-cat {
  color: var(--wp--preset--color--light);
  background-color: var(--wp--preset--color--primary);
}

.post-list {
  width: var(--wp--style--global--wide-size);
  margin: auto;
  display: flex;
  justify-content: flex-start;
  gap: 3%;
  flex-wrap: wrap;
}
.post-list .post {
  width: 30%;
}
.post-list .post h2 {
  color: var(--wp--preset--color--primary);
  font-size: calc(var(--wp--preset--font-size--md) * 1);
}
.post-list .post a {
  display: block;
  text-decoration: none;
}
.post-list .post figure {
  overflow: hidden;
}
.post-list .post .wp-post-image {
  display: block;
  height: 200rem;
  width: 100%;
  object-fit: cover;
  transition: 0.2s;
}
.post-list .post:hover .wp-post-image {
  scale: 1.2;
}

.pagination {
  width: fit-content;
  margin: 10rem auto 0;
}
.pagination .nav-links {
  display: flex;
  gap: 10rem;
}
.pagination .page-numbers {
  display: block;
  width: 40rem;
  height: 40rem;
  line-height: 40rem;
  text-align: center;
  text-decoration: none;
  border: 1px solid var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary);
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  border: none;
  width: auto;
}
.pagination .page-numbers.current {
  color: var(--wp--preset--color--light);
  background-color: var(--wp--preset--color--primary);
}

.post--data {
  margin: -1.5em 0 3em;
}

body .cookies {
  position: fixed;
  bottom: 5rem;
  right: 5rem;
  z-index: 999;
}

.cookies {
  --color01: #006e93;
  --color02: white;
  width: 30%;
  text-align: center;
  background-color: var(--color01);
  padding: 15rem 0;
  font-size: 20rem;
  border-radius: 5rem;
  transition: opacity 0.5s;
}

.cookies-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.cookies-cta button {
  color: var(--color02);
  margin: 0 5rem 0rem;
  padding: 5rem 15rem;
  font-family: inherit;
  font-size: 20rem;
  background-color: transparent;
  border: 1px solid var(--color02);
  border-radius: 3rem;
  cursor: pointer;
  transition: all 0.2s;
}

.cookies-cta button.cookies-ko {
  font-size: 14rem;
  border: 0;
}

.cookies-cta button:hover {
  background-color: var(--color02);
  color: var(--color01);
}

.cookies-more {
  color: var(--color02);
  text-decoration: underline;
  font-size: 14rem;
  margin-left: 10rem;
}

.cookies-more:hover {
  color: inherit;
  text-decoration: underline;
}

.cookies-message {
  color: var(--color02);
  margin-bottom: 20rem;
}

.ftlgpdr-video-message {
  margin: 10rem 0;
  padding: 5rem;
  background-color: lightblue;
  border-radius: 3rem;
}

.ftlgpdr-video-btn {
  margin: 0 0;
  padding: 5rem 15rem;
  font-family: inherit;
  font-size: 20rem;
  background-color: transparent;
  border: 1px solid black;
  border-radius: 3rem;
  cursor: pointer;
  transition: all 0.2s;
}

@media screen and (max-width: 719px) {
  .cookies {
    width: 100%;
    padding: 15rem;
  }
}
.burger {
  display: none;
}

@media screen and (max-width: 1400px) {
  html {
    font-size: 0.07vw;
  }
  .site-header .logo--description em {
    margin: 2rem 0;
  }
  .blog-content {
    width: 100%;
    padding: 0 30rem;
  }
  .post-list {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --header-height: 125rem;
  }
  html {
    font-size: 0.25vw;
  }
  .burger {
    display: block;
    position: relative;
    z-index: 2;
    width: 40rem;
    height: 60rem;
    background-color: transparent;
    border: none;
    cursor: pointer;
  }
  .burger.is-open span {
    background-color: white;
  }
  .burger.is-open span:nth-child(1) {
    rotate: 45deg;
    translate: 0 9rem;
  }
  .burger.is-open span:nth-child(2) {
    translate: 0rem 20rem;
    rotate: -45deg;
  }
  .burger.is-open span:nth-child(3) {
    opacity: 0;
    translate: -100rem 0rem;
  }
  .burger span {
    display: block;
    height: 5rem;
    margin-bottom: 7rem;
    background-color: var(--wp--preset--color--primary);
    transition: all 0.5s;
    transform-origin: 0 50%;
  }
  .burger span:last-child {
    width: 85%;
  }
  .site-header {
    height: var(--header-height);
  }
  .site-header.sticky {
    --header-height: 90rem;
  }
  .site-header.sticky .logo--description {
    font-size: 16rem;
  }
  .site-header--wrap {
    width: 100%;
    padding: 10rem 10rem;
    align-items: flex-start;
  }
  .site-header.is-open .logo {
    width: 50rem;
  }
  .site-header.is-open .logo span {
    opacity: 0;
    translate: 100rem 0;
  }
  .site-header .logo {
    width: 100rem;
    font-size: 12rem;
    opacity: 1;
  }
  .site-header .logo--description {
    font-size: 20rem;
  }
  .site-header .logo--description em {
    font-size: 0.6em;
    display: inline-block;
    width: 160rem;
  }
  .site-header .logo * {
    transition: all 0.3s;
  }
  .site-header .logo img {
    width: 100%;
    transition: 0.2s;
  }
  .site-header .light {
    left: -5.8%;
  }
  .site-nav {
    position: absolute;
    top: 0;
    left: 10rem;
    z-index: 1;
    translate: -100% 0;
    opacity: 0;
    opacity: 1;
    transition: all 0.2s;
    background-color: var(--wp--preset--color--primary);
    top: 0;
    left: 0;
    width: 100%;
    padding: 20rem 0;
  }
  .site-nav > ul {
    flex-direction: column;
    width: 100%;
  }
  .site-nav a {
    padding-top: 10rem;
    padding-bottom: 10rem;
    font-size: 24rem;
    color: white;
    transition: padding 0.3s 0.5s;
  }
  .site-nav.is-open {
    translate: 0 0;
    opacity: 1;
    transition: all 0.5s 0s;
  }
  .hero--pic {
    height: 500rem;
  }
  .hero--content {
    left: 50%;
    top: 0;
    translate: -50% 0%;
    width: 90%;
  }
  .hero--content h1 {
    font-size: 30rem;
    margin: 20rem 0 20rem;
  }
  .hero--content p {
    font-size: 16rem;
    margin: 20rem 0 20rem;
  }
  .site-footer--adress {
    text-align: center;
  }
  .site-footer li {
    margin-bottom: 5rem;
  }
  .site-footer--wrap {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .home .hero {
    margin-bottom: 0rem;
  }
  .page-template-default .page-content {
    padding: 0 15px;
  }
  .post-template-default .page-content {
    padding: 0 15px;
  }
  .post-list {
    gap: 0;
    flex-direction: column;
  }
  .post-list .post {
    width: 100%;
  }
  .category-list {
    gap: 10rem;
    margin: 10rem 0 0rem;
    flex-wrap: wrap;
  }
  .post .wp-post-image {
    height: auto;
  }
}/*# sourceMappingURL=style.css.map */