@charset "UTF-8";
/*
Theme Name: Enerfox
Author: Maxence COLET
Author URI: 
Description: 
Tags: accessibility-ready, one-column, two-columns, custom-menu, featured-images, microformats, sticky-post, threaded-comments, translation-ready
Version: 2022
Requires at least: 5.0
Tested up to: 5.8
Requires PHP: 7.0
*/
:root {
  --black: #13100D;
  --light-grey: #F5F5F6;
  --grey: #EAEBEA;
  --orange: #F29003;
  --swiper-navigation-color: #F29003;
}

.has-black-color {
  color: #13100D;
}

.has-black-background-color {
  background-color: #13100D;
}

.has-lightgrey-color {
  color: #F5F5F6;
}

.has-lightgrey-background-color {
  background-color: #F5F5F6;
}

.has-grey-color {
  color: #EAEBEA;
}

.has-grey-background-color {
  background-color: #EAEBEA;
}

.has-orange-color {
  color: #F29003;
}

.has-orange-background-color {
  background-color: #F29003;
}

header#header .container {
  width: 100%;
  max-width: 1330px;
  padding: 20px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}
header#header .container .header-logo svg {
  width: 155px;
  height: auto;
}
header#header .container .header-nav ul {
  display: flex;
  list-style: none;
  align-items: center;
}
header#header .container .header-nav ul li {
  margin-left: 20px;
}
header#header .container .header-nav ul li.active a {
  color: var(--orange);
}
header#header .container .header-nav ul li.btn {
  margin-left: 30px;
}
header#header .container .header-nav ul li a {
  text-decoration: none;
  padding: 10px;
  color: inherit;
}
header#header .container .burger {
  margin: 0;
  display: none;
}

@media screen and (max-width: 1050px) {
  body {
    padding-top: 55px;
  }

  header#header {
    position: fixed;
    top: 0;
    background-color: white;
    width: 100%;
    z-index: 10;
  }
  header#header .container {
    align-items: center;
  }
  header#header .container .header-logo {
    position: relative;
    z-index: 2;
  }
  header#header .container .header-nav ul {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    background-color: white;
    width: 80%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translate(100%);
    transition: transform 0.5s ease-in-out;
  }
  header#header .container .header-nav ul li {
    margin: 20px auto;
    font-size: 1.1rem;
  }
  header#header .container .header-nav ul li.btn {
    margin: 20px auto;
  }
  header#header .container .header-nav.active ul {
    display: flex;
    transform: translate(0);
    transition: transform 0.5s ease-in-out;
  }
  header#header .container .burger {
    position: relative;
    margin: 0;
    display: flex;
    flex-direction: column;
    z-index: 11;
    cursor: pointer;
  }
  header#header .container .burger .bar {
    width: 50px;
    height: 4px;
    background-color: var(--orange);
    border-radius: 2px;
    margin: 5px 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
  header#header .container .burger.active .bar {
    background-color: var(--black);
  }
  header#header .container .burger.active .bar:nth-child(1) {
    transform: translateY(14px) rotate(45deg);
    transition: transform 0.3s ease-in-out;
  }
  header#header .container .burger.active .bar:nth-child(2) {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  header#header .container .burger.active .bar:nth-child(3) {
    transform: translateY(-14px) rotate(-45deg);
    transition: transform 0.3s ease-in-out;
  }
}
#backtotop {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 10;
  cursor: pointer;
  background-color: var(--orange);
  line-height: 10px;
  font-size: 30px;
  color: white;
  padding: 20px 10px 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid white;
  font-family: "myriad-pro", sans-serif;
}

.btn {
  padding: 12px 20px;
  border-radius: 5px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-weight: 600;
  display: inline-block;
}
.btn.btn--full.btn--orange {
  background: var(--orange);
  color: white !important;
}
.btn.btn--hollow.btn--grey {
  color: var(--black);
  padding: 10px 18px;
  border: 2px solid var(--black);
  box-sizing: border-box;
}
.btn.btn--external {
  background: var(--orange);
  color: white !important;
  padding: 6px 40px 6px 20px;
  margin: 5px 5px;
  position: relative;
}
.btn.btn--external:after {
  content: "";
  position: absolute;
  top: 0;
  right: 15px;
  height: 100%;
  width: 13px;
  background-image: url("./assets/img/vectors/arrow-ne.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 5px;
  transition: transform 0.3s ease-in-out;
}
.btn.btn--disabled {
  background-color: var(--light-grey) !important;
  color: var(--black) !important;
  cursor: not-allowed;
  position: relative;
}
.btn.btn--disabled:after {
  content: "Bientôt disponible";
  position: absolute;
  top: -30px;
  right: 0;
  left: 0;
  width: 100%;
  height: 20px;
  font-size: 12px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  line-height: 20px;
  height: 20px;
  background-color: var(--orange);
  color: white;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.btn.btn--disabled:hover:after {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.btn.btn--disabled:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 10px solid var(--orange);
  border-left: 10px solid transparent;
}

.rounded-bg--orange .btn.btn--full, .has-orange-background-color .btn.btn--full {
  background-color: white;
  color: var(--orange) !important;
}
.rounded-bg--orange .btn.btn--hollow, .has-orange-background-color .btn.btn--hollow {
  background-color: var(--orange);
  padding: 10px 18px;
  border: 2px solid white;
  color: white;
}

a.btn {
  text-decoration: inherit;
}

.calltoaction {
  margin-top: 20px;
}

.hero {
  margin: auto;
  border-radius: 30px;
  background-position: right 10%;
  background-size: 55%;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero__content {
  display: flex;
  align-items: center;
  padding: 180px 0;
  position: relative;
}
.hero__content .hero__text {
  z-index: 2;
}
.hero__content h1 {
  font-size: 4rem;
  font-weight: 600;
  margin: 20px 0;
  line-height: 0.95;
}
.hero__content h1 strong {
  font-weight: 600;
  color: var(--orange);
}
.hero__content p {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--black);
  margin: 40px auto;
  line-height: 1.2;
}
.hero__content--centered {
  margin: 0 auto;
  width: 70%;
}
.hero__content--centered .hero__cta {
  display: flex;
  justify-content: center;
}
.hero__content .hero__img {
  position: relative;
  width: 500px;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  margin-bottom: 40px;
  transform: translateX(10%) scale(1.7);
  z-index: 1;
}
.hero__cta {
  box-sizing: border-box;
}
.hero__cta .btn {
  margin-right: 15px;
}
.hero__figures {
  width: 100%;
  background-color: white;
  padding: 80px 40px;
  box-sizing: border-box;
  border-radius: 30px;
  display: flex;
  justify-content: space-around;
}
.hero__figures .number {
  font-size: 3.9rem;
  font-weight: 600;
  color: var(--black);
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: center;
}
.hero__figures .desc {
  color: var(--black);
  font-size: 1.1rem;
  text-align: center;
}
.hero .hero__figure--legend {
  margin-top: 20px;
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
}
.hero__intro {
  padding: 80px 0;
}
.hero__intro h2 {
  width: 50%;
  font-size: 2.5rem;
  font-weight: 600;
}
.hero__intro .hero__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.hero__intro .hero__cards .hero__card {
  width: 100%;
  margin: 0 auto;
  padding: 35px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 2px solid var(--grey);
  background-color: white;
  position: relative;
}
.hero__intro .hero__cards .hero__card img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: contain;
}
.hero__intro .hero__cards .hero__card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 10px 0 0 0;
  text-align: center;
}
.hero__intro .hero__cards .hero__card .desc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: white;
  opacity: 0;
  font-size: 1.2rem;
  margin-bottom: 10px;
  transition: opacity 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  display: flex;
  box-shadow: none;
}
.hero__intro .hero__cards .hero__card .desc p {
  padding: 20px;
  box-sizing: border-box;
  font-weight: bold;
  margin: auto;
  text-align: center;
}
.hero__intro .hero__cards .hero__card .desc:hover {
  opacity: 1;
  transition: opacity 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1050px) {
  .hero__content {
    flex-direction: column;
    padding: 50px 0;
  }
  .hero__content .hero__img {
    order: -1;
    transform: none;
    width: 100%;
  }
  .hero__content h1 {
    font-size: 2.8rem;
  }
  .hero__content p {
    font-size: 1rem;
  }
  .hero__cta .btn {
    margin-top: 20px;
  }
  .hero__figures {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .hero__figures .hero__figure .number {
    font-size: 2.4rem;
  }
  .hero__figures .hero__figure .desc {
    font-size: 1rem;
  }
  .hero__intro {
    padding: 50px 0;
  }
  .hero__intro h2 {
    font-size: 2.5rem;
  }
  .hero__intro .hero__cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
  }
  .hero__intro .hero__cards .hero__card {
    margin: 0;
  }
  .hero__intro .hero__cards .hero__card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 20px 0;
  }
}
.hero-entreprise .container {
  display: flex;
  align-items: center;
  padding: 70px 80px;
}
.hero-entreprise__content .title {
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 20px;
}
.hero-entreprise__content .description {
  color: var(--black);
  font-size: 1.2rem;
}
.hero-entreprise__content .description strong {
  color: var(--orange);
}

@media screen and (max-width: 870px) {
  .hero-entreprise .container {
    flex-direction: column;
    align-items: center;
    padding: 50px;
  }
  .hero-entreprise__content .title {
    font-size: 2.3rem;
  }
  .hero-entreprise__content .description {
    font-size: 1.1rem;
  }
}
.actus .nav-links {
  text-align: center;
  padding: 20px;
}
.actus-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.actus .actu {
  width: 100%;
  position: relative;
}
.actus .actu-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.actus .actu-category {
  font-weight: 600;
  margin: 10px 0;
}
.actus .actu-title {
  font-weight: 500;
  font-size: 1.2rem;
  margin: 10px 0;
}
.actus .actu a.actu-link {
  color: var(--orange);
  margin-top: 3px;
  text-decoration: none;
  border: none;
}
.actus .actu a.actu-link::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1050px) {
  .actus .container {
    padding: 0 20px;
  }
  .actus-content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer .newsletter {
  transform: translateY(200px);
}
.footer .newsletter #sib-form input[type=text] {
  color: var(--black);
}
.footer .newsletter .container {
  background-color: var(--orange);
  color: white;
  box-sizing: border-box;
  padding: 20px 80px 80px 80px;
  border-radius: 10px;
  display: flex;
  gap: 30px;
  align-items: stretch;
}
.footer .newsletter h2 {
  font-size: 3.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  width: 70%;
  color: rgba(255, 255, 255, 0.5);
}
.footer .newsletter h2 strong {
  color: white;
  font-weight: inherit;
}
.footer .newsletter .newsletter-form {
  background-color: white;
  display: flex;
  align-items: center;
  width: fit-content;
  border-radius: 80px;
  height: 42px;
  padding: 8px;
  margin-top: 60px;
}
.footer .newsletter .newsletter-form input {
  padding: 10px;
  margin: 0 5px;
  width: 250px;
  border: 0;
}
.footer .newsletter .newsletter-form button {
  background-color: var(--black);
  height: 100%;
  border: 0;
  padding: 0 30px;
  border-radius: 50px;
  color: white;
}
.footer .footer-nav {
  background-color: var(--black);
  width: calc(100% - 60px);
  margin: auto;
  border-radius: 30px;
  padding: 300px 0 20px 0;
  margin-bottom: 30px;
}
.footer .footer-nav .footer-up {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  padding-bottom: 80px;
}
.footer .footer-nav .footer-up .menu {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
  margin-top: 0;
  flex-grow: 1;
  list-style: none;
  padding: 0;
}
.footer .footer-nav .footer-up .menu > li > a {
  color: var(--orange);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.footer .footer-nav .footer-up .menu ul {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 0;
  margin-top: 20px;
}
.footer .footer-nav .footer-up .menu ul > li {
  margin-bottom: 10px;
}
.footer .footer-nav .footer-up .menu ul > li > a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.footer .footer-nav .footer-logo {
  align-self: flex-start;
}
.footer .footer-nav .footer-down {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-top: 20px;
  padding: 0;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
}
.footer .footer-nav .footer-down .legal {
  display: flex;
  width: 100%;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}
.footer .footer-nav .footer-down .legal li > a {
  margin-right: 40px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
}
.footer .footer-nav .footer-down .socials {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 20px;
  margin-bottom: 20px;
  list-style: none;
}
.footer .footer-nav .footer-down .socials img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

@media screen and (max-width: 950px) {
  .footer .newsletter {
    translate: none;
  }
  .footer .newsletter .container {
    width: 90%;
    padding: 30px;
    flex-direction: column;
    align-items: center;
  }
  .footer .newsletter h2 {
    width: 100%;
    font-size: 2.3rem;
    text-align: center;
  }
  .footer .newsletter .newsletter-form {
    margin: 0 auto;
  }
  .footer .newsletter .newsletter-form input {
    width: 140px;
  }
  .footer .footer-nav {
    background-color: var(--black);
    width: 100%;
    margin: auto;
    border-radius: 30px;
    padding: 250px 0 20px 0;
    margin-bottom: 0px;
  }
  .footer .footer-nav .container .footer-up {
    padding-bottom: 0;
  }
  .footer .footer-nav .container .footer-up .footer-logo {
    display: block;
    align-self: center;
    margin: 0 auto;
  }
  .footer .footer-nav .container .footer-up .menu {
    display: none;
  }
  .footer .footer-nav .container .footer-down {
    flex-direction: column;
  }
  .footer .footer-nav .container .footer-down .socials {
    padding-left: 0;
  }
  .footer .footer-nav .container .footer-down .legal {
    flex-direction: column;
    align-items: center;
  }
}
.products {
  display: flex;
  cursor: grab;
  padding-bottom: 20px;
}
.products .swipper-button-previous, .products .swipper-button-next {
  --swiper-theme-color: var(--orange);
}
.products .product-card {
  background-color: white;
  border: 2px solid var(--light-grey);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 20px;
  border-radius: 30px;
  color: black;
}
.products .product-card .btn {
  background-color: var(--orange);
  color: white;
  margin: 20px auto;
}
.products .product-img {
  display: block;
  width: 90%;
  padding: 10px;
  border-radius: 30px;
  height: 200px;
  object-fit: contain;
}
.products .product-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 20px auto;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .products .product-card {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.products-showcase {
  padding: 30px 0;
}

.offres {
  background-color: var(--orange);
  color: white;
  padding: 3rem 0;
  margin: 3rem auto;
  width: calc(100% - 60px);
  border-radius: 30px;
  box-sizing: border-box;
}
.offres h2 {
  margin: 20px 0;
}
.offres .config {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}
.offres .config .select {
  color: white;
}
.offres .config .choice {
  display: flex;
  margin: 40px 0;
  overflow: hidden;
}
.offres .config .choice select {
  background-color: var(--orange);
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  border: none;
  border-bottom: 2px solid white;
  width: fit-content;
}
.offres .selection .results {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
.offres .selection .results p {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
}
.offres .selection .results .selected .group {
  border-radius: 10px;
  background-color: var(--light-grey);
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 20px;
}
.offres .selection .results .card {
  text-align: center;
  background-color: white;
  color: black;
  border-radius: 20px;
  padding: 20px;
  margin: 20px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 50px;
}

@media screen and (max-width: 1050px) {
  .offres {
    width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
    margin: 30px 0;
  }
  .offres .config {
    margin: 0 auto;
    width: 100%;
  }
  .offres .config .choice {
    flex-direction: column;
  }
  .offres .config .choice select {
    width: 100%;
  }
  .offres .selection .results {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 700px) {
  .offres .selection .results {
    grid-template-columns: 1fr;
  }
}
.page-template header h1, .page-template-default header h1, .single header h1 {
  text-align: center;
  font-size: 4rem;
}
.page-template header img, .page-template-default header img, .single header img {
  border-radius: 20px;
}
.page-template .content, .page-template .article-body, .page-template-default .content, .page-template-default .article-body, .single .content, .single .article-body {
  line-height: 1.5;
}
.page-template .content a, .page-template .article-body a, .page-template-default .content a, .page-template-default .article-body a, .single .content a, .single .article-body a {
  text-decoration: inherit;
  color: var(--orange);
  border-bottom: 1px solid var(--orange);
}
.page-template .content .wp-block-image a, .page-template .article-body .wp-block-image a, .page-template-default .content .wp-block-image a, .page-template-default .article-body .wp-block-image a, .single .content .wp-block-image a, .single .article-body .wp-block-image a {
  border-bottom: none;
}
.page-template .content ul, .page-template .article-body ul, .page-template-default .content ul, .page-template-default .article-body ul, .single .content ul, .single .article-body ul {
  line-height: 1.5;
  padding-left: 20px;
  font-size: 1.2rem;
}
.page-template .content ul li, .page-template .article-body ul li, .page-template-default .content ul li, .page-template-default .article-body ul li, .single .content ul li, .single .article-body ul li {
  margin-top: 10px;
  list-style-type: none;
  line-height: 1.5;
}
.page-template .content ul li::before, .page-template .article-body ul li::before, .page-template-default .content ul li::before, .page-template-default .article-body ul li::before, .single .content ul li::before, .single .article-body ul li::before {
  content: "•";
  color: var(--orange);
  font-weight: 900;
  display: inline-block;
  transform: scale(1.6);
  width: 1em;
  margin-left: -1em;
}
.page-template .content p, .page-template .article-body p, .page-template-default .content p, .page-template-default .article-body p, .single .content p, .single .article-body p {
  font-size: 1.2rem;
}

@media screen and (max-width: 1050px) {
  .page-template header h1, .page-template-default header h1, .single header h1 {
    text-align: center;
    font-size: 2rem;
  }
  .page-template .content h2.has-text-align-center, .page-template-default .content h2.has-text-align-center, .single .content h2.has-text-align-center {
    font-size: 1.5rem;
    width: 100%;
  }
}
.has-background {
  padding: 40px;
  border-radius: 30px;
}

.wp-block-image img {
  width: 100%;
  border-radius: 30px;
}

.content h2.has-text-align-center {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 40px auto;
  width: 70%;
}

section.faq {
  padding: 80px 0;
  margin: 0;
  width: 100%;
}
section.faq input#search {
  width: 100%;
  padding: 10px;
  border: 2px solid var(--light-grey);
  border-radius: 30px;
  font-size: 1.2rem;
  margin-bottom: 20px;
  box-sizing: border-box;
  outline: none;
}
section.faq .faq-item {
  background-color: white;
  padding: 10px 40px;
  margin-top: 20px;
}
section.faq .faq-item h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 20px;
  user-select: none;
  cursor: pointer;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
section.faq .faq-item h3 .arrow {
  transition: transform 0.3s ease-in-out;
  transform: rotateX(0deg);
}
section.faq .faq-item .faq-content {
  display: none;
  height: 0px;
  transition: all 0.3s ease-in-out;
  margin: 20px 0;
}
section.faq .faq-item.open .faq-content {
  display: block;
  height: auto;
  transition: all 0.3s ease-in-out;
}
section.faq .faq-item.open .arrow {
  transform: rotateX(180deg);
  transition: transform 0.3s ease-in-out;
}

tabs ul {
  list-style: none !important;
  display: flex;
  padding: 0;
  border-bottom: 2px solid var(--light-grey);
  overflow: auto hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-mask: linear-gradient(to right, #0000, #0000 calc(30px / 4), #000 30px, #000 calc(100% - 30px), #0000 calc(100% - 30px / 4), #0000);
  mask: linear-gradient(to right, #0000, #0000 calc(30px / 4), #000 30px, #000 calc(100% - 30px), #0000 calc(100% - 30px / 4), #0000);
  padding: 0 20px;
}
tabs ul::-webkit-scrollbar {
  display: none;
}
tabs ul li {
  width: max-content;
  white-space: nowrap;
}
tabs ul li a {
  color: inherit;
  text-decoration: none;
  padding: 10px;
  display: inline-block;
  font-weight: bold;
}
tabs ul li a.active {
  border-bottom: 2px solid var(--orange);
  color: var(--orange);
}

.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 20px;
  margin: 0 auto;
  padding: 80px 0;
}
.team .team-member {
  width: 100%;
  height: auto;
  padding: 20px;
  border-radius: 10px;
  box-sizing: border-box;
  border: 2px solid var(--grey);
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team .team-member .team-member__picture img {
  width: 100%;
  height: auto;
  max-width: 300px;
  border-radius: 100px;
}
.team .team-member .team-member__name {
  margin-top: 20px;
  width: 100%;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 500;
}
.team .team-member .team-member__job-title {
  margin: 20px 0 25px 0;
  width: 100%;
  text-align: center;
  font-size: 1rem;
}
.team .team-member .team-member__linkedin-url a {
  border: none;
}

@media screen and (max-width: 1050px) {
  .team {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 650px) {
  .team {
    grid-template-columns: repeat(1, 1fr);
  }
}
.values {
  padding: 80px 0;
}
.values .swiper-button-prev {
  bottom: 28%;
  top: auto;
}
.values .swiper-button-next {
  bottom: 28%;
  top: auto;
}
.values-content .values-cards {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
}
.values-content .values-cards .card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  width: 260px;
  border-radius: 10px;
  border: 2px solid var(--grey);
  background-color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  user-select: none;
}
.values-content .values-cards .card .card-img {
  width: 300px;
}
.values-content .values-cards .card .card-img img {
  width: 70%;
  margin: 0 auto;
  display: block;
  aspect-ratio: 1/1;
  object-fit: contain;
}
.values-content .values-cards .card .card-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.values-content .values-cards .card .card-description {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: white;
  opacity: 0;
  font-size: 1.2rem;
  margin-bottom: 10px;
  transition: opacity 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  display: flex;
  box-shadow: none;
}
.values-content .values-cards .card .card-description p {
  padding: 20px;
  box-sizing: border-box;
  font-weight: bold;
  margin: auto;
  text-align: center;
}
.values-content .values-cards .card .card-description:hover {
  opacity: 1;
  transition: opacity 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.telechargeables {
  text-align: center;
}
.telechargeables .btn {
  margin: 30px auto;
}
.telechargeables .grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.telechargeables #form iframe {
  width: 100%;
  height: 1200px;
  border: none;
  border-radius: 20px;
}
.telechargeables .telechargeable {
  background-color: var(--light-grey);
  padding: 20px;
  width: 100%;
  border-radius: 20px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  border: 2px solid var(--light-grey);
  cursor: pointer;
}
.telechargeables .telechargeable:hover {
  border: 2px solid var(--orange);
  transition: all 0.3s ease;
}
.telechargeables .telechargeable.active {
  border: 2px solid var(--orange);
  background-color: var(--orange);
  color: white;
  transition: all 0.3s ease;
}
.telechargeables .telechargeable h2 {
  text-align: center;
}
.telechargeables .telechargeable img {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  background-color: white;
}

@media screen and (max-width: 768px) {
  .telechargeables .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .telechargeables .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.map .zone {
  cursor: pointer;
  transition: fill 0.3s;
}
.map .zone:not(:hover) path, .map .zone:not(.active) path {
  opacity: 0.5;
  transition: opacity 0.3s;
}
.map .zone:hover path, .map .zone.active path {
  opacity: 1;
  transition: opacity 0.3s;
}

.contacts h2 {
  text-align: center;
  margin: 0 auto;
}

.location {
  padding: 70px 0;
  display: flex;
  gap: 80px;
  align-items: center;
}
.location .card {
  display: flex;
  padding: 30px 20px;
  background-color: var(--light-grey);
  gap: 20px;
  margin-bottom: 20px;
  font-size: 1rem;
  position: relative;
  align-items: center;
}
.location .card:before {
  top: 0;
  left: 0;
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  margin-right: 20px;
  opacity: 0;
  background: transparent;
  transition: all 0.3s;
}
.location .card-left img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.location .card:not(.active) {
  opacity: 0.6;
}
.location .card#nordouest-bind:before {
  background: #91bd73;
  opacity: 1;
  transition: all 0.3s;
}
.location .card#pariscorse-bind:before {
  background: #dcc03d;
  opacity: 1;
  transition: all 0.3s;
}
.location .card#sudouest-bind:before {
  background: #ee724f;
  opacity: 1;
  transition: all 0.3s;
}
.location .card#nordest-bind:before {
  background: #bd88b1;
  opacity: 1;
  transition: all 0.3s;
}
.location .card#sudest-bind:before {
  background: #84a59d;
  opacity: 1;
  transition: all 0.3s;
}
.location .card .name {
  font-weight: bold;
}

.contact-form {
  display: flex;
  padding: 70px 0;
  gap: 50px;
}
.contact-form h1 {
  font-size: 4rem;
  margin: 0 auto;
  line-height: 1.1;
}
.contact-form__left {
  width: 50%;
}
.contact-form__left .social-icons a {
  text-decoration: none;
  border: none;
}
.contact-form__right {
  width: 50%;
}
.contact-form__right .sib-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: white !important;
  border: 2px solid #EFEFEF;
  border-radius: 20px;
}
.contact-form__right .sib-form .form-group {
  margin-bottom: 20px;
}
.contact-form__right .sib-form .form-group label {
  font-weight: bold;
  font-size: 1rem;
}
.contact-form__right .sib-form .form-group input {
  width: 100%;
  border-radius: 30px;
  border: 1px solid #EFEFEF;
  padding: 10px;
  font-size: 1rem;
  transition: all 0.3s;
}
.contact-form__right .sib-form .form-group textarea {
  width: 100%;
  border-radius: 30px;
  border: 1px solid #EFEFEF;
  padding: 10px;
  font-size: 1rem;
  transition: all 0.3s;
}
.contact-form__right .sib-form .form-group--submit {
  margin-top: 20px;
}
.contact-form__right .sib-form .form-group--submit button {
  width: 100%;
  border-radius: 30px;
  border: 1px solid #EFEFEF;
  padding: 10px;
  font-size: 1rem;
  transition: all 0.3s;
}

@media screen and (max-width: 950px) {
  .contact-form {
    flex-direction: column;
  }
  .contact-form__left {
    width: 100%;
  }
  .contact-form__right {
    width: 100%;
  }
  .contact-form .form-group--submit {
    margin-top: 20px;
  }
}
@media screen and (max-width: 850px) {
  .location {
    flex-direction: column;
  }
}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: myriad-pro, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  color: var(--black);
}

section .container, tabs .container {
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 80px;
  margin: 0 auto;
}

main .content {
  max-width: 1300px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 80px;
  margin: 0 auto;
}

h2.section-title {
  font-weight: 600;
  font-size: 3rem;
  width: 60%;
}

@media screen and (max-width: 1050px) {
  h2.section-title {
    font-weight: 600;
    font-size: 2rem;
    width: 100%;
  }
}
main article header {
  max-width: 1000px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 80px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
main article header h1 {
  font-size: 3rem;
  text-align: center;
}
main article header .article-img {
  width: 100%;
  height: auto;
  max-width: 1000px;
  margin: 0 auto;
  display: block;
  margin-bottom: 40px;
}
main article .article-body {
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 80px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}
main article .article-body .article-aside {
  width: 300px;
  margin-right: 40px;
  padding: 40px;
  border-radius: 20px;
  height: fit-content;
  position: sticky;
  top: 120px;
  background-color: var(--light-grey);
}
main article .article-body .article-aside .article-aside__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}
main article .article-body .article-aside .article-aside__content {
  font-size: 1rem;
  margin-bottom: 20px;
}
main article .article-body .article-content {
  width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 1050px) {
  section .container, tabs .container {
    padding: 0 20px;
  }

  main .content {
    padding: 0 20px;
  }

  main article header {
    padding: 0 20px;
  }
  main article .article-body {
    padding: 0 20px;
  }
  main article .article-body .article-aside {
    display: none;
  }
}
p {
  line-height: 1.5;
}

.rounded-bg {
  position: relative;
}
.rounded-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100vw - 60px);
  transform: translateX(-50%);
  height: 100%;
  border-radius: 30px;
  z-index: -1;
}
.rounded-bg--lightgrey::after {
  background-color: var(--light-grey);
}
.rounded-bg--orange::after {
  background-color: var(--orange);
}

@media screen and (max-width: 1050px) {
  .rounded-bg::after {
    width: 100vw;
  }
}
.tag-pills {
  display: flex;
  flex-wrap: wrap;
  margin: 50px 0;
  padding: 0;
  list-style: none;
}
.tag-pills li {
  margin: 0 10px;
  padding: 0;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  padding: 10px 20px;
  background-color: #FBFBFD;
  border: 0.2px solid #EFEFEF;
  transition: all 0.3s;
  cursor: pointer;
}
.tag-pills li:before {
  display: none !important;
}
.tag-pills li.active {
  background-color: var(--orange);
  color: white;
  transition: all 0.3s;
}
.tag-pills li.active .amount {
  background-color: #FFFFFF33;
}
.tag-pills li .amount {
  display: inline-block;
  font-size: 0.9rem;
  background-color: #F5F5F6;
  padding: 5px;
  border-radius: 5px;
  margin-left: 10px;
}

.flex-center .calltoaction {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .tag-pills {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .tag-pills li {
    margin: 5px 0;
    width: 100%;
    box-sizing: border-box;
  }
}
#main #tarteaucitronRoot #tarteaucitronAlertBig {
  font-family: "myriad-pro";
  bottom: 10px;
  background: white;
  color: var(--black);
  border: 2px solid var(--light-grey);
  border-radius: 20px;
  width: calc(95% - 120px);
  margin-left: 20px;
}
#main #tarteaucitronRoot #tarteaucitronAlertBig .tarteaucitronCheck, #main #tarteaucitronRoot #tarteaucitronAlertBig .tarteaucitronCross {
  display: none;
}
#main #tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronDisclaimerAlert {
  margin: 15px 0 15px 0;
  color: var(--black);
}
#main #tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronPrivacyUrl {
  color: var(--orange);
}
#main #tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronPersonalize2 {
  background-color: var(--orange);
}
#main #tarteaucitronRoot #tarteaucitronAlertBig .tarteaucitronDeny {
  background-color: var(--orange);
}
#main #tarteaucitronRoot #tarteaucitronAlertBig .tarteaucitronCTAButton {
  font-family: "myriad-pro";
  padding: 12px 20px;
  font-weight: bold;
  border-radius: 5px;
}
#main #tarteaucitronRoot #tarteaucitronAlertBig #tarteaucitronCloseAlert {
  color: var(--black);
  padding: 10px 18px;
  border: 2px solid var(--black);
  box-sizing: border-box;
  border-radius: 5px;
}