/* -------------------------- GÉNÉRAL -------------------------- */

:root {
  --primary: #001DFD;
  --secondary: #01FEAA;
  --grey-1: #F7F7F7;
  --grey-2: #CBCBCB;
  --menu-primary: #001DFD;
  --menu-secondary: #FFFFFF;
  --breadcrumb-primary: #CBCBCB;
  --breadcrumb-secondary: #000000;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

*::-moz-selection {
  color: black;
  background-color: var(--secondary);
  -webkit-text-stroke: 0;
}
*::selection {
  color: black;
  background-color: var(--secondary);
  -webkit-text-stroke: 0;
}

body {
  margin: 0;
  font-family: 'Visby CF', sans-serif;
}

body.no-scroll {
  overflow: hidden;
}

main {
  background-color: white;
}

address {
  font-style: normal;
}

img {
  max-width: 100%;
}

.bigger {
  font-size: larger;
}

.grecaptcha-badge { visibility: hidden; }

.footerfix {
  height: 1px;
}

.header {
  display: grid;
  grid-template-columns: 150px 1fr 200px;
  align-items: center;
  column-gap: 30px;
  row-gap: 60px;
  width: 100%;
  max-width: 1420px;
  padding: 20px 15px 0 15px;
  position: relative;
  margin: 0 auto;
  opacity: 0;
  translate: 0 -50px;
  transition: opacity .5s linear, translate .7s cubic-bezier(0.23, 0.6, 0.34, 1);
  z-index: 2;
}

.header.page-loaded {
  opacity: 1;
  translate: 0 0;
}

.header .logo {
  width: 100%;
  height: auto;
}

.header .logo path,
.header .logo rect {
  fill: var(--menu-primary);
}

.header .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header .menu .item {
  padding: 60px 0;
}

.header .menu .item .link {
  padding: 10px 20px;
  text-decoration: none;
  color: var(--menu-primary);
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: color .3s linear;
  cursor: pointer;
}

.header .menu .item .link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 1px solid;
  border-radius: 50px;
  opacity: 0;
  scale: .8;
  translate: -50% -50%;
  transition: opacity .3s cubic-bezier(0.23, 0.6, 0.34, 1), scale .3s cubic-bezier(0.23, 0.6, 0.34, 1), border-color .3s linear;
}

.header .menu .item .link:hover,
.header .menu .item .link.active {
  color: var(--secondary);
}

.header .menu .item .link:hover::before,
.header .menu .item .link.active::before {
  opacity: 1;
  scale: 1;
}

.header .menu .item .sub {
  position: absolute;
  bottom: 75px;
  left: 15px;
  width: calc(100% - 30px);
  translate: 0 calc(100% + 50px);
  opacity: 0;
  visibility: hidden;
  padding: 35px 50px 40px 50px;
  background-color: white;
  border-radius: 25px;
  transition: all .6s cubic-bezier(0.23, 0.6, 0.34, 1);
  box-shadow: 0 30px 30px rgba(0 0 0 / .1);
}

.header .menu .item .sub:not(.active) {
  transition-delay: .3s;
}

.header .menu .item .sub.active {
  translate: 0 100%;
  opacity: 1;
  visibility: visible;
}

.header .menu .item .sub a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

.header .menu .item .sub .all {
  font-family: 'Neue Helvena', sans-serif;
  font-weight: 400;
  padding-left: 25px;
  margin-bottom: 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: padding .3s cubic-bezier(0.23, 0.6, 0.34, 1), color .4s linear;
}

.header .menu .item .sub .all:hover {
  color: var(--primary);
  padding-left: 35px;
}

.header .menu .item .sub .all svg {
  line-height: 0;
}

.header .menu .item .sub .all svg rect {
  transition: fill .4s linear, stroke-width .3s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.header .menu .item .sub .all:not(:hover) svg rect {
  fill: black;
  stroke-width: 0;
}

.header .menu .item .sub .service-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

@keyframes subMenuService-in {
  from {
    opacity: 0;
    translate: 0 30px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes subMenuService-out {
  from {
    opacity: 1;
    translate: 0 0;
  }

  to {
    opacity: 0;
    translate: 0 30px;
  }
}

.header .menu .item .sub .service-wrapper .service {
  padding: 40px 25px;
  border: 1px solid black;
  border-radius: 25px;
  background-color: white;
}

.header .menu .item .sub .service-wrapper .service .title {
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 25px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  max-width: 180px;
  transition: color .3s linear, padding .4s cubic-bezier(0.23, 0.6, 0.34, 1), max-width .4s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.header .menu .item .sub .service-wrapper .service .title:hover {
  color: var(--primary);
  padding-left: 10px;
  max-width: 190px;
}

.header .menu .item .sub .service-wrapper .service .title svg {
  transition: transform .5s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.header .menu .item .sub .service-wrapper .service .title:hover svg {
  transform: rotate(45deg);
}

.header .menu .item .sub .service-wrapper .service .title svg path,
.header .menu .item .sub .service-wrapper .service .title svg rect {
  transition: stroke .3s linear;
}

.header .menu .item .sub .service-wrapper .service .title:hover svg path,
.header .menu .item .sub .service-wrapper .service .title:hover svg rect {
  stroke: var(--primary);
}

.header .menu .item .sub .service-wrapper .service .list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.header .menu .item .sub .service-wrapper .service .list a {
  font-family: 'Neue Helvena', sans-serif;
  font-weight: 400;
  font-size: 16px;
  transition: padding .3s cubic-bezier(0.23, 0.6, 0.34, 1), color .4s linear;
}

.header .menu .item .sub .service-wrapper .service .list a:hover {
  color: var(--primary);
  padding-left: 10px;
}

.header .menu .item .sub .service-wrapper .service .list a .arrow {
  margin-left: 8px;
}

.header .menu .item .sub .service-wrapper .service .list a svg {
  line-height: 0;
}

.header .menu .item .sub .service-wrapper .service .list a svg rect {
  transition: fill .4s linear, stroke-width .3s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.header .menu .item .sub .service-wrapper .service .list a:not(:hover) svg rect {
  fill: black;
  stroke-width: 0;
}

.header .menu .item .sub .cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.header .menu .item .sub .cta .title {
  font-size: 25px;
  font-weight: 700;
  white-space: nowrap;
}

.header .menu .item .sub .cta .button {
  font-family: 'Neue Helvena', sans-serif;
  padding: 10px 30px;
  background-color: black;
  font-weight: 700;
  color: white;
  border: 0;
}

.header .menu .item .sub .cta .button:hover {
  padding-left: 50px;
}

.header .menu .item .sub .cta .button svg rect {
  fill: white;
  stroke: white;
}

.header .button {
  font-family: 'Neue Helvena', sans-serif;
  color: var(--menu-secondary);
  background-color: var(--menu-primary);
  padding: 10px 20px;
  border: 1px solid var(--menu-primary);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  width: 100%;
  text-align: center;
  position: relative;
  transition: color .3s linear, background-color .3s cubic-bezier(0.23, 0.6, 0.34, 1), padding .3s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.header .button:hover {
  color: var(--menu-secondary);
  background-color: var(--menu-primary);
  padding-left: 40px;
}

.header .button svg {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  opacity: 0;
  transition: opacity .4s linear, left .4s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.header .button:hover svg {
  left: 20px;
  opacity: 1;
}

.header .button svg rect {
  fill: var(--menu-secondary);
  stroke: var(--menu-secondary);
}

.header .breadcrumb {
  grid-column: 1/4;
  font-size: 14px;
  position: relative;
  z-index: -2;
}

.header .breadcrumb ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 15px;
  align-items: center;
}

.header .breadcrumb ul li:not(:last-child)::after {
  content: '';
  width: 20px;
  height: 1px;
  background-color: var(--breadcrumb-primary);
  display: inline-block;
  margin-left: 15px;
  margin-bottom: 4px;
}

.header .breadcrumb ul li a {
  color: var(--breadcrumb-primary);
  text-decoration: none;
}

.header .breadcrumb ul li a:hover {
  color: var(--secondary);
}

.header .breadcrumb ul li span {
  font-family: 'Neue Helvena', sans-serif;
  font-weight: 300;
  color: var(--breadcrumb-secondary);
}

header.header-blue {
  --breadcrumb-secondary: #01FEAA;
}

@media (min-width: 1420px) {
  header.header-blue {
    --menu-primary: #FFFFFF;
    --menu-secondary: #001DFD;
    --breadcrumb-primary: #FFFFFF;
  }

  .header .mobile-contact,
  .header .menu-toggle,
  .header .menu .item .sub .back {
    display: none;
  }

  .header .menu .item .sub .service-wrapper .service {
    animation: subMenuService-out .6s cubic-bezier(0.23, 0.6, 0.34, 1) forwards;
  }

  .header .menu .item .sub.active .service-wrapper .service {
    opacity: 0;
    translate: 0 30px;
    animation: subMenuService-in .6s cubic-bezier(0.23, 0.6, 0.34, 1) forwards;
  }

  .header .menu .item .sub .service-wrapper .service:first-child {
    animation-delay: .1s;
  }

  .header .menu .item .sub .service-wrapper .service:nth-child(2) {
    animation-delay: .2s;
  }

  .header .menu .item .sub .service-wrapper .service:nth-child(3) {
    animation-delay: .3s;
  }

  .header .menu .item .sub .service-wrapper .service:nth-child(4) {
    animation-delay: .4s;
  }

  .header .menu .item .sub .service-wrapper .service:nth-child(5) {
    animation-delay: .5s;
  }

  .header .menu .item .sub .service-wrapper .service .list .all {
    display: none;
  }
}

@media (max-width: 1419px) {
  .header {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    column-gap: 15px;
    row-gap: 30px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    translate: unset !important;
    padding: 20px 30px 0 30px;
  }

  .header.active {
    position: fixed;
  }

  @keyframes mobileHeaderFixed {
    from {
      translate: 0 -80px;
      opacity: 0;
    }

    to {
      translate: 0 0;
      opacity: 1;
    }
  }

  .header.active .logo,
  .header.active .mobile-contact {
    translate: 0 -80px;
    opacity: 0;
    animation: mobileHeaderFixed .4s .4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  }

  .header .logo {
    width: 120px;
  }

  .header.active .logo path,
  .header.active .logo rect {
    fill: var(--primary);
  }

  .header .nav {
    position: fixed;
    bottom: 30px;
    left: 50%;
    z-index: -1;
    translate: -50% 0;
    width: 170px;
    height: 55px;
    padding: 0;
    border-radius: 50px;
    /* visibility: hidden; */
    background-color: white;
    overflow: hidden;
    transition: all .6s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .header .nav:not(.active) {
    transition-delay: .3s;
    transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  }

  .header .nav.active {
    width: 100vw;
    height: 100%;
    bottom: 0;
    left: 50%;
    padding: 140px 30px;
    border-radius: 0;
    visibility: visible;
  }

  .header .menu {
    margin: 100px auto 0 auto;
    flex-direction: column;
    gap: 45px;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    max-width: 315px;
  }

  @keyframes mobileMenuItem-in {
    from {
      opacity: 0;
      translate: 0 30px;
    }

    to {
      opacity: 1;
      translate: 0 0;
    }
  }

  @keyframes mobileMenuItem-out {
    from {
      opacity: 1;
      translate: 0 0;
    }

    to {
      opacity: 0;
      translate: 0 30px;
    }
  }

  .header .menu .item {
    padding: 0;
    width: 100%;
  }

  .header .menu .item .link {
    color: var(--primary);
    padding: 0;
    font-size: 30px;
    line-height: 30px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    animation: mobileMenuItem-out .6s cubic-bezier(0.23, 0.6, 0.34, 1) forwards;
  }

  .header .menu .item .link:hover,
  .header .menu .item .link.active {
    color: var(--primary);
  }

  .header .menu .item .link::before {
    display: none;
  }

  .header .menu .item .link::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="21.964" height="15.496" viewBox="0 0 21.964 15.496"><g id="Groupe_500" data-name="Groupe 500" transform="translate(10.679 -2.829) rotate(45)"><rect id="Rectangle_614" data-name="Rectangle 614" width="20.114" height="0.795" transform="translate(0 14.396) rotate(-45)" fill="%23001dfd" stroke="%23001dfd" stroke-width="1"/><rect id="Rectangle_615" data-name="Rectangle 615" width="9.957" height="0.795" transform="translate(5.001 0)" fill="%23001dfd" stroke="%23001dfd" stroke-width="1"/><rect id="Rectangle_616" data-name="Rectangle 616" width="0.795" height="9.957" transform="translate(14.163 0)" fill="%23001dfd" stroke="%23001dfd" stroke-width="1"/></g></svg>');
    line-height: 0;
  }

  .header .nav.active .menu .item .link {
    opacity: 0;
    translate: 0 30px;
    animation: mobileMenuItem-in .6s cubic-bezier(0.23, 0.6, 0.34, 1) forwards;
  }

  .header .nav.active .menu .item:first-child .link {
    animation-delay: .3s;
  }

  .header .nav.active .menu .item:nth-child(2) .link {
    animation-delay: .4s;
  }

  .header .nav.active .menu .item:nth-child(3) .link {
    animation-delay: .5s;
  }

  .header .nav.active .menu .item:nth-child(4) .link {
    animation-delay: .6s;
  }

  .header .nav .menu .item:first-child .link {
    animation-delay: 0s;
  }

  .header .nav .menu .item:nth-child(2) .link {
    animation-delay: .1s;
  }

  .header .nav .menu .item:nth-child(3) .link {
    animation-delay: .2s;
  }

  .header .nav .menu .item:nth-child(4) .link {
    animation-delay: .3s;
  }

  .header .nav.step-2 .menu .item .link {
    opacity: 1;
    translate: 0 0;
    animation: mobileMenuItem-out .6s cubic-bezier(0.075, 0.82, 0.165, 1) forwards;
  }

  .header .menu .item .sub {
    bottom: unset;
    top: 0;
    left: calc((100vw - 375px) / 2);
    z-index: 2;
    width: 100vw;
    max-width: 375px;
    height: 100%;
    padding: 0;
    translate: 0 0;
    padding: 140px 30px;
    background-color: transparent;
  }

  .header .menu .item .sub.active {
    translate: 0 0;
  }

  .header .menu .item .sub .back {
    font-weight: 700;
    margin-bottom: 30px;
    opacity: 0;
    translate: 0 30px;
    animation: subMenuService-in .6s cubic-bezier(0.23, 0.6, 0.34, 1) forwards;
    animation-delay: .3s;
  }

  .header nav:not(.step-2) .menu .item .sub .back.step-1,
  .header nav.step-3 .menu .item .sub .back.step-1 {
    opacity: 1;
    translate: 0 0;
    animation: subMenuService-out .6s cubic-bezier(0.23, 0.6, 0.34, 1) forwards;
  }

  .header .menu .item .sub .back::before {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="15.81" height="11.321" viewBox="0 0 15.81 11.321"><g id="Groupe_500" data-name="Groupe 500" transform="translate(52.889 1195.37) rotate(-135)"><rect id="Rectangle_614" data-name="Rectangle 614" width="14.15" height="0.56" transform="translate(867.627 814.481) rotate(-45)" stroke="%23000" stroke-width="1"/><rect id="Rectangle_615" data-name="Rectangle 615" width="7.005" height="0.56" transform="translate(871.145 804.354)" stroke="%23000" stroke-width="1"/><rect id="Rectangle_616" data-name="Rectangle 616" width="0.56" height="7.005" transform="translate(877.591 804.354)" stroke="%23000" stroke-width="1"/></g></svg>');
    margin-right: 10px;
  }

  .header .menu .item .sub > .all {
    padding-left: 0;
    opacity: 0;
    translate: 0 30px;
    animation: subMenuService-in .6s cubic-bezier(0.23, 0.6, 0.34, 1) forwards;
    animation-delay: .4s;
  }

  .header nav:not(.step-2) .menu .item .sub > .all,
  .header nav.step-3 .menu .item .sub > .all {
    opacity: 1;
    translate: 0 0;
    animation: subMenuService-out .6s cubic-bezier(0.23, 0.6, 0.34, 1) forwards;
  }

  .header .menu .item .sub .service-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
  }

  .header .menu .item .sub .service-wrapper .service {
    padding: 0;
    border: 0;
    background-color: transparent;
    width: 100%;
  }

  .header nav .menu .item .sub .service-wrapper .service .title {
    opacity: 0;
    translate: 0 30px;
    animation: subMenuService-in .6s cubic-bezier(0.23, 0.6, 0.34, 1) forwards;
  }

  .header .menu .item .sub .service-wrapper .service:first-child .title {
    animation-delay: .6s;
  }

  .header .menu .item .sub .service-wrapper .service:nth-child(2) .title {
    animation-delay: .7s;
  }

  .header .menu .item .sub .service-wrapper .service:nth-child(3) .title {
    animation-delay: .8s;
  }

  .header .menu .item .sub .service-wrapper .service:nth-child(4) .title {
    animation-delay: .9s;
  }

  .header .menu .item .sub .service-wrapper .service:nth-child(5) .title {
    animation-delay: 1s;
  }

  .header nav:not(.step-2) .menu .item .sub .service-wrapper .service .title,
  .header nav.step-3 .menu .item .sub .service-wrapper .service .title {
    opacity: 1;
    translate: 0 0;
    animation: subMenuService-out .6s cubic-bezier(0.23, 0.6, 0.34, 1) forwards;
  }

  .header nav.step-3 .menu .item .sub .service-wrapper .service:first-child .title {
    animation-delay: .1s;
  }

  .header nav.step-3 .menu .item .sub .service-wrapper .service:nth-child(2) .title {
    animation-delay: .2s;
  }

  .header nav.step-3 .menu .item .sub .service-wrapper .service:nth-child(3) .title {
    animation-delay: .3s;
  }

  .header nav.step-3 .menu .item .sub .service-wrapper .service:nth-child(4) .title {
    animation-delay: .4s;
  }

  .header nav.step-2:not(.step-3) .menu .item .sub .service-wrapper .service .title {
    animation: subMenuService-in .6s cubic-bezier(0.23, 0.6, 0.34, 1) forwards;
  }

  .header nav.step-2:not(.step-3) .menu .item .sub .service-wrapper .service:first-child .title {
    animation-delay: .6s;
  }

  .header nav.step-2:not(.step-3) .menu .item .sub .service-wrapper .service:nth-child(2) .title {
    animation-delay: .7s;
  }

  .header nav.step-2:not(.step-3) .menu .item .sub .service-wrapper .service:nth-child(3) .title {
    animation-delay: .8s;
  }

  .header nav.step-2:not(.step-3) .menu .item .sub .service-wrapper .service:nth-child(4) .title {
    animation-delay: .9s;
  }

  .header nav.step-2:not(.step-3) .menu .item .sub .service-wrapper .service:nth-child(5) .title {
    animation-delay: 1s;
  }

  .header nav:not(.step-2) .menu .item .sub .service-wrapper .service:first-child .title {
    animation-delay: .1s;
  }

  .header nav:not(.step-2) .menu .item .sub .service-wrapper .service:nth-child(2) .title {
    animation-delay: .2s;
  }

  .header nav:not(.step-2) .menu .item .sub .service-wrapper .service:nth-child(3) .title {
    animation-delay: .3s;
  }

  .header nav:not(.step-2) .menu .item .sub .service-wrapper .service:nth-child(4) .title {
    animation-delay: .4s;
  }

  .header nav:not(.step-2) .menu .item .sub .service-wrapper .service:nth-child(5) .title {
    animation-delay: .5s;
  }

  .header .menu .item .sub .service-wrapper .service .title,
  .header .menu .item .sub .service-wrapper .service .title:hover {
    display: flex;
    justify-content: space-between;
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 0;
    max-width: 100%;
    padding-left: 0;
  }

  .header .menu .item .sub .service-wrapper .service .title::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="21.964" height="15.496" viewBox="0 0 21.964 15.496"><g id="Groupe_500" data-name="Groupe 500" transform="translate(10.679 -2.829) rotate(45)"><rect id="Rectangle_614" data-name="Rectangle 614" width="20.114" height="0.795" transform="translate(0 14.396) rotate(-45)" fill="%23000000" stroke="%23000000" stroke-width="1"/><rect id="Rectangle_615" data-name="Rectangle 615" width="9.957" height="0.795" transform="translate(5.001 0)" fill="%23001dfd" stroke="%23000000" stroke-width="1"/><rect id="Rectangle_616" data-name="Rectangle 616" width="0.795" height="9.957" transform="translate(14.163 0)" fill="%23001dfd" stroke="%23000000" stroke-width="1"/></g></svg>');
    line-height: 0;
  }

  .header .menu .item .sub .service-wrapper .service .title .arrow {
    display: none;
  }

  @keyframes subMenuList-in {
    from {
      opacity: 0;
      translate: 0 30px;
    }

    to {
      opacity: 1;
      translate: 0 0;
    }
  }

  .header .menu .item .sub .service-wrapper .service .list {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    max-width: 375px;
    height: 100%;
    padding: 140px 30px;
    opacity: 0;
    visibility: hidden;
    gap: 25px;
    transition: all .6s cubic-bezier(0.23, 0.6, 0.34, 1);
  }

  .header .menu .item .sub .service-wrapper .service .list.active {
    opacity: 1;
    visibility: visible;
  }

  .header .menu .item .sub .service-wrapper .service .list .back {
    margin-bottom: 5px;
  }

  .header .nav:not(.step-3) .menu .item .sub .service-wrapper .service .list .back {
    opacity: 1;
    translate: 0 0;
    animation: subMenuService-out .6s cubic-bezier(0.23, 0.6, 0.34, 1) forwards;
  }

  .header .menu .item .sub .service-wrapper .service .list a.all {
    margin-bottom: 0;
    padding-left: 0;
    opacity: 0;
    translate: 0 30px;
    animation: subMenuService-in .6s cubic-bezier(0.23, 0.6, 0.34, 1) forwards;
    animation-delay: .4s;
  }

  .header .nav:not(.step-3) .menu .item .sub .service-wrapper .service .list a.all {
    opacity: 1;
    translate: 0 0;
    animation: subMenuService-out .6s cubic-bezier(0.23, 0.6, 0.34, 1) forwards;
  }

  .header .menu .item .sub .service-wrapper .service .list a:not(.all) {
    display: flex;
    justify-content: space-between;
    font-size: 28px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 0;
    max-width: 100%;
    padding-left: 0;
    opacity: 0;
    translate: 0 30px;
    animation: subMenuService-in .6s cubic-bezier(0.23, 0.6, 0.34, 1) forwards;
  }

  .header nav:not(.step-3) .menu .item .sub .service-wrapper .service .list a:not(.all) {
    opacity: 1;
    translate: 0 0;
    animation: subMenuService-out .6s cubic-bezier(0.23, 0.6, 0.34, 1) forwards;
  }

  .header nav .menu .item .sub .service-wrapper .service .list a:nth-child(3) {
    animation-delay: .6s;
  }

  .header nav .menu .item .sub .service-wrapper .service .list a:nth-child(4) {
    animation-delay: .7s;
  }

  .header nav .menu .item .sub .service-wrapper .service .list a:nth-child(5) {
    animation-delay: .8s;
  }

  .header nav .menu .item .sub .service-wrapper .service .list a:nth-child(6) {
    animation-delay: .9s;
  }

  .header nav:not(.step-3) .menu .item .sub .service-wrapper .service .list a:nth-child(3) {
    animation-delay: .1s;
  }

  .header nav:not(.step-3) .menu .item .sub .service-wrapper .service .list a:nth-child(4) {
    animation-delay: .2s;
  }

  .header nav:not(.step-3) .menu .item .sub .service-wrapper .service .list a:nth-child(5) {
    animation-delay: .3s;
  }

  .header nav:not(.step-3) .menu .item .sub .service-wrapper .service .list a:nth-child(6) {
    animation-delay: .4s;
  }

  .header .menu .item .sub .service-wrapper .service .list a:not(.all) .arrow {
    display: none;
  }

  .header .menu .item .sub .service-wrapper .service .list a:not(.all)::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="21.964" height="15.496" viewBox="0 0 21.964 15.496"><g id="Groupe_500" data-name="Groupe 500" transform="translate(10.679 -2.829) rotate(45)"><rect id="Rectangle_614" data-name="Rectangle 614" width="20.114" height="0.795" transform="translate(0 14.396) rotate(-45)" fill="%23000000" stroke="%23000000" stroke-width="1"/><rect id="Rectangle_615" data-name="Rectangle 615" width="9.957" height="0.795" transform="translate(5.001 0)" fill="%23001dfd" stroke="%23000000" stroke-width="1"/><rect id="Rectangle_616" data-name="Rectangle 616" width="0.795" height="9.957" transform="translate(14.163 0)" fill="%23001dfd" stroke="%23000000" stroke-width="1"/></g></svg>');
    line-height: 0;
  }

  .header .menu .item .sub .cta {
    display: none;
  }

  .header>.button {
    display: none;
  }

  .header .mobile-contact {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 15px;
  }

  .header .mobile-contact .phone,
  .header .mobile-contact .email {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: var(--menu-primary);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
  }

  .header.active .mobile-contact .phone,
  .header.active .mobile-contact .email {
    color: var(--primary);
  }

  .header .mobile-contact svg .circle {
    stroke: var(--menu-primary);
  }

  .header.active .mobile-contact svg .circle {
    stroke: var(--primary);
  }

  .header .mobile-contact svg path {
    fill: var(--menu-primary);
  }

  .header.active .mobile-contact svg path {
    fill: var(--primary);
  }

  .header .menu-toggle {
    position: fixed;
    bottom: 30px;
    left: 50%;
    translate: -50% 0;
    padding: 15px;
    border-radius: 50px;
    background-color: var(--menu-primary);
    color: var(--menu-secondary);
    font-weight: 700;
    white-space: nowrap;
    width: 170px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }


  .header .menu-toggle.active {
    color: white;
    background-color: var(--primary);
    width: 190px;
  }

  .header .menu-toggle .icon {
    width: 25px;
  }

  .header .menu-toggle .icon span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--menu-secondary);
    transform-origin: center center;
    transition: all .6s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .header .menu-toggle .icon span+span {
    margin-top: 4px;
  }

  .header .menu-toggle .icon span:last-child {
    width: 15px;
  }

  .header .menu-toggle.active .icon span {
    background-color: white;
  }

  .header .menu-toggle.active .icon span:first-child {
    rotate: 135deg;
    translate: 0 6px;
  }

  .header .menu-toggle.active .icon span:nth-child(2) {
    rotate: 225deg;
  }

  .header .menu-toggle.active .icon span:last-child {
    opacity: 0;
    translate: 0 -6px;
  }
}

@media (max-width: 767px) {
  .header .logo {
    width: 100px;
  }

  .header .breadcrumb {
    font-size: 12px;
  }

  .header .breadcrumb ul {
    overflow: auto;
    padding-bottom: 10px;
  }

  .header .breadcrumb ul li {
    flex-shrink: 0;
  }

  .header .breadcrumb ul li:nth-last-child(n+3) {
      display: none; /* Masquez les éléments supplémentaires sur mobile */
  }
}

/* ============================================================
  Page header
============================================================ */

.page-header {
  margin-top: -242px !important;
}

.page-header .service {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
}

.page-header .service .wrapper {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  overflow-y: hidden;
  overflow-x: auto;
}

.page-header .service .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  text-decoration: none;
  color: black;
  transition: translate .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.page-header .service .item:hover,
.page-header .service .item.active {
  translate: 10px 0;
}

.page-header .service .item .title {
  font-size: 19px;
  font-weight: 700;
  line-height: 22px;
  margin: 0;
  white-space: nowrap;
}

.page-header .service .item:hover .title,
.page-header .service .item.active .title {
  color: var(--primary);
}

.page-header .service .item svg {
  transition: rotate .4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.page-header .service .item:hover svg,
.page-header .service .item.active svg {
  rotate: 45deg;
}

.page-header .service .item:hover svg path,
.page-header .service .item:hover svg rect,
.page-header .service .item.active svg path,
.page-header .service .item.active svg rect {
  stroke: var(--primary);
}

@media (max-width: 1419px) {
  .page-header {
    margin-top: 0 !important;
  }

  .page-header .service {
    display: none;
  }
}

.bg-blue {
  background-color: var(--primary);
}

/* ============================================================
  Home
============================================================ */

.home-header {
  padding: 200px 0;
  margin-top: -225px;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.home-header .wrapper {
  width: 1230px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  z-index: 1;
}

@keyframes titleLeft {
  from {
    opacity: 0;
    translate: -200px 0;
  }
  to {
    opacity: 1;
    translate: 0 0;
  } 
}

@keyframes titleRight {
  from {
    opacity: 0;
    translate: 200px 0;
  }
  to {
    opacity: 1;
    translate: 0 0;
  } 
}

.home-header h1 {
  font-size: 200px;
  font-weight: 800;
  line-height: 160px;
  color: white;
  margin: 0;
}

.home-header h1 span {
  display: block;
  opacity: 0;
  translate: -200px 0;
  animation: titleLeft 1.2s .4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.home-header h1 span.outline {
  font-size: 125px;
  opacity: 0;
  translate: 200px 0;
  animation: titleRight 1.2s .4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@supports (-webkit-text-stroke: 1px white) {
  .home-header h1 span.outline {
    -webkit-text-stroke: 1px white;
    color: transparent;
  }
}

.home-header p {
  font-family: 'Neue Helvena', sans-serif;
  line-height: 1.55em;
  margin: 0;
  color: white;
  font-size: 20px;
  font-weight: 700;
  width: 480px;
  max-width: 100%;
}

@keyframes rotate360 {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 359deg;
  }
}

.home-header .content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.home-header svg #text {
  animation: rotate360 6s linear infinite;
  transform-origin: center;
}

.home-header svg #arrow {
  transition: all .5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transform-origin: center;
}

.home-header svg:hover #arrow {
  rotate: 45deg;
}

@media (max-width: 1419px) {
  .home-header {
    padding: 130px 0;
    margin-top: 0;
  }

  .home-header h1 {
    font-size: 150px;
    line-height: 120px;
  }

  .home-header h1 span.outline {
    font-size: 95px;
  }

  .home-header .content {
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .home-header h1 {
    font-size: 120px;
    line-height: 80px;
  }

  .home-header h1 span.outline {
    font-size: 75px;
  }
}

@media (max-width: 767px) {
  .home-header h1 {
    font-size: 65px;
    line-height: 60px;
  }

  .home-header h1 span.outline {
    font-size: 45px;
    line-height: 50px;
  }

  .home-header .content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .home-header p {
    font-size: 16px;
    line-height: 20px;
  }
}

/* ============================================================
  Texture dots
============================================================ */

.texture-dot,
.texture-arrow,
.texture-ring {
  position: relative;
  width: 100%;
  background-color: var(--primary);
  height: 100%;
  overflow: hidden;
}

.dot-canvas,
.ring-canvas,
.arrow-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ============================================================
  Home service
============================================================ */

.home-service {
  margin-top: 145px;
  margin-bottom: 240px;
  overflow: hidden;
}

.home-service .wrapper {
  width: 1410px;
  max-width: 100%;
  margin: 0 auto;
}

.home-service .head {
  width: 33%;
  margin-left: auto;
  padding: 0 30px;
  position: relative;
}

.home-service .head .number {
  position: absolute;
  top: 0;
  left: -30px;
  font-size: 30px;
}

.home-service .head h2 {
  font-size: 75px;
  font-weight: 800;
  line-height: 1em;
  margin-top: 0;
  margin-bottom: 15px;
}

.home-service .head .button {
  display: inline-block;
  color: var(--primary);
  background-color: transparent;
  padding: 10px 30px;
  border: 1px solid var(--primary);
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  position: relative;
  transition: padding .3s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.home-service .head .button:hover {
  padding-left: 60px;
}

.home-service .head .button svg {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  opacity: 0;
  transition: opacity .4s linear, left .4s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.home-service .head .button:hover svg {
  left: 30px;
  opacity: 1;
}

.home-service .head p {
  font-family: 'Neue Helvena', sans-serif;
  font-weight: 300;
  line-height: 25px;
}

.home-service .list {
  display: grid;
  grid-template-columns: 5fr 3fr 4fr;
  column-gap: 30px;
  padding: 0 30px;
  margin-top: -180px;
}

.home-service .wrapper .item:nth-child(2n) {
  grid-column: 2/4;
  margin-left: -80px;
}

.home-service .wrapper .item:nth-child(2n+1) {
  grid-column: 1/3;
  margin-left: -80px;
}

.home-service .wrapper .item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
  position: relative;
  color: inherit;
  text-decoration: none;
}

.home-service .wrapper .item .image {
  width: 450px;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.home-service .wrapper .item .image::before {
  content: '';
  position: absolute;
  top: -25%;
  left: -25%;
  width: 150%;
  height: 150%;
  background-color: var(--primary);
  mix-blend-mode: screen;
  opacity: 0;
  scale: 0;
  border-radius: 50%;
  transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.home-service .wrapper .item:hover .image::before {
  opacity: 1;
  scale: 1;
}

.home-service .wrapper .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-service .wrapper .item .title {
  font-size: 60px;
  font-weight: 800;
  line-height: 55px;
  position: relative;
  margin-top: 0;
}

.home-service .wrapper .item .title::before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="21" height="21" viewBox="0 0 21 21"><g transform="translate(-1249.75 -1314.5)"><line y2="21" transform="translate(1261 1314.5)" fill="none" stroke="%23fff" stroke-width="2"/><line x2="21" transform="translate(1249.75 1325)" fill="none" stroke="%23fff" stroke-width="2"/></g></svg>');
  position: absolute;
  top: 50%;
  left: 0;
  translate: calc(-50% - 60px) -50%;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transition: width .3s cubic-bezier(0.165, 0.84, 0.44, 1), height .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.home-service .wrapper .item:hover .title::before {
  width: 60px;
  height: 60px;
}

.home-service .wrapper .item .banner {
  position: absolute;
  bottom: 125px;
  left: 0;
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.home-service .wrapper .item:nth-child(2n) .banner {
  translate: -50vw 0;
}

.home-service .wrapper .item:nth-child(2n+1) .banner {
  translate: calc((-100vw + 1410px) / 2) 0;
}

.home-service .wrapper .item:hover .banner {
  opacity: 1;
}

@keyframes homeServiceBanner {
  from {
    translate: 0 0;
  }
  to {
    translate: -100% 0;
  }
}

.home-service .wrapper .item .banner .line {
  display: flex;
  flex-shrink: 0;
  animation: homeServiceBanner 8s linear infinite;
}

.home-service .wrapper .item .banner .line span {
  flex-shrink: 0;
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
}

.home-service .wrapper .item .banner .line span::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: black;
  border-radius: 15px;
  margin: 0 15px;
}

@media (max-width: 1629px) {
  .home-service .wrapper .item:nth-child(2n),
  .home-service .wrapper .item:nth-child(2n+1) {
    margin-left: 0;
  }

  .home-service .wrapper .item .image {
    width: 400px;
    height: 400px;
  }

  .home-service .wrapper .item .title {
    font-size: 50px;
    line-height: 45px;
  }
}

@media (max-width: 1350px) {
  .home-service .head {
    margin-left: 0;
    width: 350px;
    max-width: 100%;
    padding: 0 30px 0 60px;
  }

  .home-service .head .number {
    left: 30px;
    font-size: 16px;
  }

  .home-service .list {
    display: flex;
    flex-wrap: nowrap;
    gap: 60px;
    overflow-x: auto;
    margin-top: 0;
  }

  .home-service .wrapper .item {
    gap: 30px;
  }

  .home-service .wrapper .item .image {
    overflow: visible;
  }

  .home-service .wrapper .item .image::before {
    display: none;
  }

  .home-service .wrapper .item .image::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="21" height="21" viewBox="0 0 21 21"><g transform="translate(-1249.75 -1314.5)"><line y2="21" transform="translate(1261 1314.5)" fill="none" stroke="%23fff" stroke-width="2"/><line x2="21" transform="translate(1249.75 1325)" fill="none" stroke="%23fff" stroke-width="2"/></g></svg>');
    position: absolute;
    top: 50%;
    right: 0;
    translate: 50% -50%;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    transition: width .3s cubic-bezier(0.165, 0.84, 0.44, 1), height .3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .home-service .wrapper .item:hover .image::after {
    width: 60px;
    height: 60px;
  }

  .home-service .wrapper .item .title::before {
    display: none;
  }

  .home-service .wrapper .item .banner {
    display: none;
  }
}

@media (max-width: 991px) {
  .home-service {
    margin-top: 60px;
    margin-bottom: 70px;
  }

  .home-service .head h2 {
    font-size: 60px;
    line-height: 60px;
  }

  .home-service .wrapper .item {
    gap: 10px;
  }

  .home-service .wrapper .item .image {
    width: 250px;
    height: 250px;
  }

  .home-service .wrapper .item .title {
    font-size: 25px;
    line-height: 30px;
  }
}

@media (max-width: 767px) {
  .home-service .head h2 {
    font-size: 40px;
    line-height: 40px;
  }

  .home-service .head .button,
  .home-service .head .button:hover {
    padding: 10px 15px;
  }

  .home-service .head .button svg {
    display: none;
  }
}

/* ============================================================
  home project
============================================================ */

.project {
  padding-top: 180px;
  margin-bottom: 90px;
}

.project .wrapper {
  width: 1610px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.project .head {
  width: 1170px;
  max-width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 4.5fr 4fr 1.5fr;
  align-items: flex-end;
  column-gap: 30px;
  row-gap: 15px;
  margin-bottom: 70px;
}

.project .head .title {
  font-size: 73px;
  font-weight: 800;
  line-height: 1em;
  margin-top: 0;
  margin-bottom: 0;
}

.project .head .title span {
  display: block;
}

@supports (-webkit-text-stroke: 1px black) {
  .project .head .title span.outline {
    -webkit-text-stroke: 1px black;
    color: transparent;
  }
}

.project .head p {
  font-family: 'Neue Helvena', sans-serif;
  font-weight: 300;
  line-height: 25px;
  margin-top: 0;
  margin-bottom: 0;
}

.project .head .button {
  font-family: 'Neue Helvena', sans-serif;
  display: inline-block;
  width: fit-content;
  grid-column: 1;
  color: var(--primary);
  background-color: white;
  padding: 10px 30px;
  border: 1px solid var(--primary);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  position: relative;
  transition: color .3s linear, background-color .3s cubic-bezier(0.23, 0.6, 0.34, 1), padding .3s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.project .head .button:hover {
  padding-left: 60px;
}

.project .head .button svg {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  opacity: 0;
  transition: opacity .4s linear, left .4s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.project .head .button:hover svg {
  left: 30px;
  opacity: 1;
}

.home-project .head {
  width: 930px;
  grid-template-columns: 5fr 3fr;
  position: relative;
}

.home-project .head .number {
  position: absolute;
  top: 0;
  left: -60px;
  font-size: 30px;
}

.home-project .head .title {
  margin-bottom: 15px;
}

.home-project .head .button {
  font-family: 'Neue Helvena', sans-serif;
  display: inline-block;
  color: var(--primary);
  background-color: transparent;
  padding: 10px 30px;
  border: 1px solid var(--primary);
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  position: relative;
  transition: padding .3s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.home-project .head .button:hover {
  padding-left: 60px;
}

.home-project .head .button svg {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  opacity: 0;
  transition: opacity .4s linear, left .4s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.home-project .head .button:hover svg {
  left: 30px;
  opacity: 1;
}

@media (max-width: 1199px) {
  .project .head .title {
    font-size: 60px;
  }
}

@media (max-width: 991px) {
  .home-project {
    margin-top: 50px;
  }

  .home-project .head .number {
    left: -30px;
    font-size: 16px;
  }

  .project .head {
    grid-template-columns: 5fr 4fr 1fr;
  }
}

@media (max-width: 767px) {
  .project {
    padding-top: 50px;
  }

  .project .head {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 40px;
  }

  .project .head .title {
    font-size: 40px;
  }

  .project .head .button,
  .project .head .button:hover {
    padding: 10px 15px;
  }

  .home-project .head .button svg {
    display: none;
  }
}

@media (max-width: 575px) {
  .project .wrapper {
    max-width: 350px;
  }
}

/* ============================================================
  project grid
============================================================ */

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 125px;
}

.project-grid .project-miniature:nth-child(3n + 2 of :not([hidden])) {
  margin-top: 80px;
}

.project-grid .project-miniature:nth-child(3n of :not([hidden])) {
  margin-top: 160px;
}

.project-miniature {
  color: black;
  text-decoration: none;
}

.project-miniature .title {
  font-size: 45px;
  font-weight: 800;
  line-height: 40px;
  margin-top: 0;
  margin-bottom: 25px;
}

.project-miniature .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.project-miniature .tag {
  font-family: 'Neue Helvena', sans-serif;
  font-weight: 300;
  padding: 8px 15px;
  border: 1px solid;
  border-radius: 30px;
  font-size: 14px;
}

.project-miniature .tag::before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="11" height="11" viewBox="0 0 11 11"><g transform="translate(-485.654 -2365.654)"><rect width="1" height="11" transform="translate(490.654 2365.654)"/><rect width="1" height="11" transform="translate(485.654 2371.654) rotate(-90)"/></g></svg>');
  display: inline-block;
  margin-right: 10px;
  line-height: 0;
  transition: rotate .6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-miniature .tag:hover::before {
  rotate: 180deg;
}

.project-miniature .image-wrapper {
  position: relative;
}

.project-miniature .image {
  width: 100%;
  aspect-ratio: 1/1.28;
  position: relative;
  overflow: hidden;
}

.project-miniature .image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  height: 150%;
  aspect-ratio: 1;
  background-color: var(--primary);
  mix-blend-mode: screen;
  opacity: 0;
  scale: 0;
  border-radius: 50%;
  transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-miniature:hover .image::before {
  opacity: 1;
  scale: 1;
}

.project-miniature .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-miniature .image-wrapper .button {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: max-content;
  padding: 12px 40px;
  border-radius: 50px;
  background-color: white;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transition: opacity .4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-miniature .image-wrapper .button::after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="18.092" height="18.091" viewBox="0 0 18.092 18.091"><g><rect width="24.328" height="0.962" transform="translate(0 17.411) rotate(-45)"/><rect width="12.043" height="0.962" transform="translate(6.049)"/><rect width="0.962" height="12.043" transform="translate(17.13)"/></g></svg>');
  line-height: 0;
}

.project-miniature:hover .image-wrapper .button {
  opacity: 1;
}

.project-miniature:hover .image-wrapper .button::after {
  transition: rotate .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-miniature:hover .image-wrapper .button:hover::after {
  rotate: 45deg;
}

@media (max-width: 1610px) {
  .project-grid {
    column-gap: 80px;
  }
}

@media (max-width: 1199px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 130px;
    row-gap: 60px;
  }

  .project-grid .project-miniature:nth-child(3n + 2 of :not([hidden])),
  .project-grid .project-miniature:nth-child(3n of :not([hidden])) {
    margin-top: 0;
  }
}

@media (max-width: 991px) {
  .project-grid {
    column-gap: 80px;
  }
}

@media (max-width: 767px) {
  .project-grid {
    column-gap: 30px;
    row-gap: 45px;
  }

  .project-miniature .title {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 15px;
  }

  .project-miniature .tags {
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-miniature .image::before {
    display: none;
  }

  .project-miniature .image-wrapper .button {
    position: unset;
    opacity: 1;
    margin-top: 15px;
    background-color: var(--primary);
    color: white;
    translate: none;
  }

  .project-miniature .image-wrapper .button::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="18.092" height="18.091" viewBox="0 0 18.092 18.091"><g transform="translate(0)"><rect width="24.328" height="0.962" transform="translate(0 17.411) rotate(-45)" fill="%23fff"/><rect width="12.043" height="0.962" transform="translate(6.049)" fill="%23fff"/><rect width="0.962" height="12.043" transform="translate(17.13)" fill="%23fff"/></g></svg>');
  }
}

/* ============================================================
  Testimonial
============================================================ */

.testimonial {
  color: white;
  background-color: var(--primary);
  padding-top: 75px;
  padding-bottom: 240px;
  position: relative;
}

.testimonial .head {
  width: 510px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
}

.testimonial .head .number {
  position: absolute;
  top: 0;
  left: -30px;
  font-size: 30px;
}

.testimonial .head .title {
  font-size: 75px;
  font-weight: 800;
  line-height: 75px;
  margin-top: 0;
  margin-bottom: 25px;
}

.testimonial .head .title span {
  display: block;
}

@supports (-webkit-text-stroke: 1px white) {
  .testimonial .head .title span.outline {
    -webkit-text-stroke: 1px white;
    color: transparent;
  }
}

.testimonial .head p {
  font-family: 'Neue Helvena', sans-serif;
  font-weight: 300;
  max-width: 320px;
  line-height: 25px;
}

.testimonial .list {
  width: 1560px;
  max-width: 100%;
  margin: 50px auto 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial .list .item {
  transition: opacity .15s linear, translate .6s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.testimonial .list .item:not(.active) {
  opacity: .6;
  z-index: 1;
}

.testimonial .list .item.active {
  z-index: 2;
}

.testimonial .list .item .image {
  width: 100%;
  aspect-ratio: 1 / 1.75;
  position: relative;
}

.testimonial .list .item .image::before {
  content: '';  
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100px;
  max-width: 33%;
  aspect-ratio: 1;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><g id="Groupe_3311" data-name="Groupe 3311" transform="translate(-909.066 -4414.066)"><path id="Polygone_1" data-name="Polygone 1" d="M26,0,52,45H0Z" transform="translate(987.066 4438.066) rotate(90)" fill="%23fff"/><g id="Ellipse_68" data-name="Ellipse 68" transform="translate(909.066 4414.066)" fill="none" stroke="%23fff" stroke-width="3"><circle cx="50" cy="50" r="50" stroke="none"/><circle cx="50" cy="50" r="48.5" fill="none"/></g></g></svg>');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.testimonial .list .item.playing .image::before {
  display: none;
}

.testimonial .list .item .image video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial .name {
  position: absolute;
  bottom: 80px;
  left: 50%;
  translate: -50% 0;
  z-index: 3;
  font-size: 150px;
  font-weight: 800;
  line-height: 1em;
  color: white;
  pointer-events: none;
  width: 1300px;
  max-width: 100%;
  padding: 0 30px;
  text-align: center;
}

@supports (-webkit-text-stroke: 1px white) {
  .testimonial .name {
    -webkit-text-stroke: 1px white;
    color: transparent;
  }
}

@media (min-width: 768px) {
  .testimonial .list .item.active:first-child {
    translate: calc(100% + 30px) 0;
  }
  
  .testimonial .list .item.active:first-child + .item {
    translate: calc(-100% - 30px) 0;
  }
  
  .testimonial .list .item.active:nth-child(2) {
    translate: 0 0;
  }
  
  .testimonial .list .item:has(+ .item.active:nth-child(3)) {
    translate: calc(100% + 30px) 0;
  }
  
  .testimonial .list .item.active:nth-child(3) {
    translate: calc(-100% - 30px) 0;
  }
}

@media (max-width: 1360px) {
  .testimonial {
    padding-bottom: 180px;
  }

  .testimonial .name {
    font-size: 180px;
  }
}

@media (max-width: 991px) {
  .testimonial {
    padding-bottom: 150px;
  }
  
  .testimonial .name {
    font-size: 120px;
  }
}

@media (max-width: 767px) {
  .testimonial .head {
    padding-left: 60px;
  }
  .testimonial .head .number {
    left: 30px;
    font-size: 16px;
  }

  .testimonial .head .title {
    font-size: 40px;
    line-height: 40px;
  }

  .testimonial .list {
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .testimonial .list .item {
    width: 250px;
  }

  .testimonial {
    padding-bottom: 100px;
  }
  
  .testimonial .name {
    font-size: 70px;
    bottom: 50px;
  }
}

/* ============================================================
  CTA
============================================================ */

.cta-block {
  margin-top: 120px;
  margin-bottom: 100px;
}

.cta-block .wrapper {
  width: 1470px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding: 0 30px;
}

.cta-block .content {
  background: black;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 120px;
}

.cta-block .title {
  font-size: 75px;
  font-weight: 800;
  line-height: 75px;
  color: white;
  margin-top: 0;
  margin-bottom: 30px;
}

.cta-block .title span {
  display: block;
}

.partner + .cta-block {
  margin-top: 0;
}

@supports (-webkit-text-stroke: 1px white) {
  .cta-block .title span.outline {
    -webkit-text-stroke: 1px white;
    color: transparent;
  }
}

.cta-block .button {
  font-family: 'Neue Helvena';
  color: white;
  background-color: transparent;
  padding: 10px 30px;
  border: 1px solid white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  width: 200px;
  position: relative;
  transition: color .3s linear, background-color .3s cubic-bezier(0.23, 0.6, 0.34, 1), padding .3s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.cta-block .button:hover {
  color: black;
  background-color: white;
  padding-left: 40px;
}

.cta-block .button svg {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  opacity: 0;
  transition: opacity .4s linear, left .4s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.cta-block .button:hover svg {
  left: 30px;
  opacity: 1;
}

.cta-block .image {
  width: 100%;
  aspect-ratio: 1;
}

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

@media (max-width: 1199px) {
  .cta-block .content {
    padding-left: 80px;
  }

  .cta-block .title {
    font-size: 35px;
    line-height: 35px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .cta-block {
    margin-top: 70px;
    margin-bottom: 70px;
  }

  .cta-block .wrapper {
    grid-template-columns: 1fr;
  }

  .cta-block .content {
    padding: 40px 30px 30px 30px;
  }

  .cta-block .button,
  .cta-block .button:hover {
    padding: 10px 15px;
  }

  .cta-block .button svg {
    display: none;
  }
}

/* ============================================================
  Footer
============================================================ */

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  color: #fff;
  overflow: hidden;
  z-index: -1;
}

.footer.not-fixed {
  position: unset;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer .marquee {
  position: relative;
  margin-top: 35px;
  margin-bottom: 75px;
}

.footer .marquee .title,
.footer .marquee .clone {
  display: inline-block;
  padding-right: 60px;
  font-size: 80px;
  font-weight: 800;
  line-height: 100px;
  white-space: nowrap;
  margin: 0;
}

@supports (-webkit-text-stroke: 1px white) {
  .footer .marquee .title span,
  .footer .marquee .clone span {
    -webkit-text-stroke: 1px white;
    color: transparent;
  }
}

.footer .marquee .clone {
  position: absolute;
  top: 0;
  left: 0;
}

.footer .wrapper {
  width: 1230px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.footer .nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-start;
  justify-content: space-between;
  gap: 75px;
}

.footer .list .title {
  font-size: 14px;
  font-weight: 800;
  line-height: 20px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 30px;
}

.footer .list,
.footer .list a {
  line-height: 28px;
}

.footer .list a {
  font-family: 'Neue Helvena', sans-serif;
  font-weight: 300;
  display: block;
  transition: padding-left 0.3s ease;
}

.footer .list a:hover,
.footer .list a:active,
.footer .list a:focus {
  font-weight: 600;
  padding-left: 5px;
}

.footer .social {
  margin-top: 60px;
  margin-bottom: 40px;
}

.footer .social .title {
  font-family: 'Neue Helvena', sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 0;
  margin-bottom: 20px;
}

.footer .social .link {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 100px;
  row-gap: 20px;
}

.footer .social .link a {
  font-size: 14px;
  font-weight: 800;
  line-height: 30px;
  text-transform: uppercase;
}

.footer .seo {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  text-align: center;
}

.footer .seo .wrapper {
  width: 1650px;
}

.footer .seo a {
  line-height: 30px;
  font-family: 'Neue Helvena', sans-serif;
  font-weight: 300;
}

.footer .seo a:not(:first-child)::before {
  content: '- ';
}

.footer .bottom {
  font-family: 'Neue Helvena', sans-serif;
  font-weight: 300;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  width: 1710px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  font-size: 12px;
  line-height: 13px;
  padding-top: 40px;
  padding-bottom: 35px;
}

.footer .bottom .copyright strong:after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: #fff;
  margin: 0 8px 4px 8px;
  pointer-events: none;
}

@media (max-width: 1199px) {
  .footer .nav {
    gap: 60px;
  }
}

@media (max-width: 767px) {
  .footer .marquee .title,
  .footer .marquee .clone {
    font-size: 40px;
    line-height: 40px;
  }

  .footer .nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    row-gap: 50px;
  }

  .footer .social .link {
    column-gap: 30px;
  }

  .footer .bottom {
    padding-bottom: 130px;
  }
}

/* ============================================================
  Service header
============================================================ */

.service-header {
  padding: 300px 0;
  display: flex;
  align-items: center;
  min-height: 100vh;
  position: relative;
}

.service-header .wrapper {
  width: 1230px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.service-header .title {
  margin-top: 0;
  margin-bottom: 35px;
}

.service-header .title span {
  display: block;
  font-size: 200px;
  font-weight: 800;
  line-height: 130px;
  color: var(--primary);
}

.service-header .title span.outline {
  font-size: 100px;
}

@supports (-webkit-text-stroke: 1px var(--primary)) {
  .service-header .title span.outline {
    -webkit-text-stroke: 1px var(--primary);
    color: transparent;
  }
}

.service-header p {
  font-family: 'Neue Helvena', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  margin-top: 0;
  margin-bottom: 50px;
  max-width: 750px;
}

.service-header .button {
  font-family: 'Neue Helvena', sans-serif;
  display: inline-block;
  color: var(--primary);
  background-color: transparent;
  padding: 10px 30px;
  border: 1px solid var(--primary);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  position: relative;
  transition: color .3s linear, background-color .3s cubic-bezier(0.23, 0.6, 0.34, 1), padding .3s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.service-header .button:hover {
  color: white;
  background-color: var(--primary);
  padding-left: 60px;
}

.service-header .button svg {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  opacity: 0;
  transition: opacity .4s linear, left .4s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.service-header .button:hover svg {
  left: 30px;
  opacity: 1;
}

.service-header .blog-categories {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
  row-gap: 15px;
}

.service-header .blog-categories .item {
  font-family: 'Neue Helvena', sans-serif;
  font-weight: 300;
  font-size: 14px;
  display: inline-block;
  flex-shrink: 0;
  padding: 8px 25px;
  border: 1px solid ;
  border-radius: 20px;
  text-decoration: none;
  color: black;
}

.service-header .blog-categories .item:hover {
  color: var(--primary);
}

.service-header .scroll {
  display: block;
  margin-top: 50px;
}

@media (max-width: 1419px) {
  .service-header .title {
    margin-bottom: 15px;
  }

  .service-header .title span {
    font-size: 150px;
    line-height: 100px;
  }

  .service-header .title span.outline {
    font-size: 75px;
  }
}

@media (max-width: 991px) {
  .service-header .title span {
    font-size: 100px;
    line-height: 70px;
  }

  .service-header .title span.outline {
    font-size: 50px;
  }

  .service-header p {
    font-size: 18px;
    line-height: 25px;
  }

  .service-header .blog-categories {
    margin-top: 40px;
    flex-wrap: nowrap;
    overflow: scroll;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    padding-bottom: 15px;
  }


  .service-header .blog-categories::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 575px) {
  .service-header {
    padding: 180px 0;
    align-items: flex-start;
  }

  .service-header .title span {
    font-size: 65px;
    line-height: 55px;
  }

  .service-header .title span.outline {
    font-size: 45px;
    line-height: 45px;
  }

  .service-header p {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 30px;
  }

  .service-header .button,
  .service-header .button:hover {
    padding: 10px 15px;
  }

  .service-header .button svg {
    display: none;
  }

  .service-header .scroll {
    margin-top: 30px;
    display: none;
  }
}

/* ============================================================
  Customer carousel
============================================================ */

.customer-carousel {
  padding: 50px 30px;
  overflow: hidden;
  background-color: var(--grey-1);
}

.customer-carousel .title {
  margin-bottom: 20px;
  white-space: nowrap;
}

.customer-carousel .title h2 {
  font-size: 50px;
  font-weight: 900;
  margin-top: 0;
  margin-bottom: 10px;
}

.customer-carousel .title p {
  margin: 0;
  font-family: 'Neue Helvena', sans-serif;
  font-weight: 300;
}

.customer-carousel .inner,
.customer-carousel .inner .dupes {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  width: fit-content;
  margin-bottom: 12px;
}

.customer-carousel .inner {
  animation: marquee 16s linear infinite;
  padding-right: 12px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.customer-carousel .inner .dupes {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
}

.customer-carousel .item {
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
}

.customer-carousel .item img {
  max-width: 50%;
  max-height: 50%;
}

@media (min-width: 1440px) {
  .customer-carousel {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 150px 0 130px 0;
    margin-top: 150px;
    margin-bottom: 150px;
    padding-left: calc((100vw - 1410px) / 2);
    position: relative;
    z-index: 1;
  }

  .customer-carousel::before,
  .customer-carousel::after {
    content: '';
    width: 40px;
    height: 100%;
    background-color: white;
    position: absolute;
    top: 0;
    z-index: -1;
  }

  .customer-carousel::before {
    left: 0;
  }

  .customer-carousel::after {
    right: 0;
  }

  .customer-carousel .carousel {
    margin-top: 70px;
  }

  .customer-carousel .wrapper {
    overflow: hidden;
  }

  .customer-carousel .wrapper:nth-child(3n + 2) {
    margin-left: -140px;
  }

  .customer-carousel .inner,
  .customer-carousel .inner .dupes {
    gap: 16px;
    margin-bottom: 16px;
  }

  .customer-carousel .inner {
    padding-right: 16px;
  }

  .customer-carousel .item {
    width: 285px;
    height: 150px;
  }
}

/* ============================================================
  service parent header
============================================================ */

.service-parent-header {
  padding-top: 300px;
  padding-bottom: 100px;
  min-height: 100vh;
}

.service-parent-header .wrapper {
  width: 1230px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.service-parent-header .top {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 15px;
}

.service-parent-header .top .title {
  margin: 0;
  font-size: 25px;
  font-weight: 800;
  line-height: 20px;
  color: var(--primary);
}

.service-parent-header .top .button {
  font-family: 'Neue Helvena', sans-serif;
  font-weight: 300;
  color: var(--primary);
  background-color: transparent;
  padding: 10px 30px;
  border: 1px solid var(--primary);
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  position: relative;
  transition: color .3s linear, background-color .3s cubic-bezier(0.23, 0.6, 0.34, 1), padding .3s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.service-parent-header .top .button:hover {
  color: white;
  background-color: var(--primary);
  padding-left: 60px;
}

.service-parent-header .top .button svg {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  opacity: 0;
  transition: opacity .4s linear, left .4s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.service-parent-header .top .button:hover svg {
  left: 30px;
  opacity: 1;
}

.service-parent-header .big-title {
  margin: 0;
  font-size: 95px;
  font-weight: 800;
  line-height: 95px;
  color: black;
}

.service-parent-header .big-title span {
  display: block;
  width: fit-content;
  position: relative;
  z-index: 1;
  transition: color .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-parent-header .big-title span:first-child::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 0;
  height: 100%;
  background-color: var(--primary);
  transition: width .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-parent-header .big-title span:first-child:hover {
  color: white;
}

.service-parent-header .big-title span:first-child:hover::before {
  width: 100%;
}

@supports (-webkit-text-stroke: 1px black) {
  .service-parent-header .big-title span.outline {
    -webkit-text-stroke: 1px black;
    color: transparent;
  }
}

.service-parent-header .list {
  margin-top: 25px;
  max-width: 350px;
}

.service-parent-header .list .item {
  padding: 25px 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 19px;
  font-weight: 700;
  color: black;
  text-decoration: none;
  transition: translate .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-parent-header .list .item:not(:first-child)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;background-color: var(--grey-2);
  transition: translate .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-parent-header .list .item:hover {
  translate: 10px 0;
  color: var(--primary);
}

.service-parent-header .list .item:hover::before {
  translate: -10px 0;
}

.service-parent-header .list .item svg {
  transition: rotate .4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-parent-header .list .item:hover svg {
  rotate: 45deg;
}

.service-parent-header .list .item:hover svg path,
.service-parent-header .list .item:hover svg rect {
  stroke: var(--primary);
}

@media (max-width: 1419px) {
  .service-parent-header {
    padding-top: 180px;
    padding-bottom: 0;
    margin-bottom: 60px;
    min-height: 0;
  }
}

@media (max-width: 1199px) {
  .service-parent-header .big-title {
    font-size: 80px;
    line-height: 80px;
  }
}

@media (max-width: 992px) {
  .service-parent-header .big-title {
    font-size: 60px;
    line-height: 60px;
  }
}

@media (max-width: 767px) {
  .service-parent-header .top {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .service-parent-header .top .title {
    font-size: 16px;
  }

  .service-parent-header .big-title {
    font-size: 35px;
    line-height: 35px;
  }

  .service-parent-header .list .item {
    padding: 15px 0;
  }

  .service-parent-header .top .button,
  .service-parent-header .top .button:hover {
    padding: 10px 15px;
  }

  .service-parent-header .top .button svg {
    display: none;
  }
}

/* ============================================================
  key info
============================================================ */

.key-info {
  width: 1470px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
}

.key-info .wrapper {
  padding: 120px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}

.key-info .wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  translate: 50% -50%;
  width: 220%;
  aspect-ratio: 1;
  background-color: var(--primary);
  mix-blend-mode: screen;
  border-radius: 50%;
  scale: 0;
  opacity: 0;
  transition: all .6s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.key-info.active .wrapper::before {
  opacity: 1;
  scale: 1;
}

.key-info .content {
  background-color: white;
  padding: 100px;
  position: relative;
  z-index: 1;
  opacity: 0;
  translate: calc(100% + 120px) 0;
  transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.key-info.active .content {
  opacity: 1;
  translate: 0 0;
}

.key-info .content .title {
  font-size: 35px;
  font-weight: 800;
  line-height: 40px;
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--primary);
}

.key-info .content .text {
  font-size: 65px;
  font-weight: 800;
  line-height: 65px;
  margin: 0;
}

.key-info .content .key {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: -1;
  font-size: 150px;
  font-weight: 800;
  line-height: 150px;
}

@supports (-webkit-text-stroke: 1px var(--grey-2)) {
  .key-info .content .key {
    -webkit-text-stroke: 1px var(--grey-2);
    color: transparent;
  }
}

.key-info .plus {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 200px;
  background-color: white;
  position: absolute;
  top: calc(50% - 100px);
  right: -70px;
  transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
}

.key-info.active .plus {
  background-color: var(--primary);
}

.key-info .plus svg line {
  stroke: black;
  transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.key-info.active .plus svg line {
  stroke: white;
}

@media (max-width: 1650px) {
  .key-info .plus {
    width: 100px;
    height: 100px;
    top: calc(50% - 50px);
    right: -20px;
  }

  .key-info .plus svg {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 1550px) {
  .key-info .plus {
    display: none;
  }
}

@media (max-width: 1399px) {
  .key-info .wrapper {
    padding: 100px;
  }

  .key-info .content {
    padding: 80px;
  }

  .key-info .content .title {
    font-size: 30px;
    line-height: 35px;
  }

  .key-info .content .text {
    font-size: 50px;
    line-height: 50px;
  }
}

@media (max-width: 1199px) {
  .key-info .content .key {
    font-size: 200px;
    line-height: 200px;
  }

  .key-info .content .title {
    font-size: 20px;
    line-height: 25px;
  }

  .key-info .content .text {
    font-size: 40px;
    line-height: 40px;
  }
}

@media (max-width: 992px) {
  .key-info .wrapper {
    padding: 0;
    aspect-ratio: 1 / 0.6;
  }

  .key-info .wrapper::before,
  .key-info .content {
    display: none;
  }

  .service-parent-header + .key-info,
  .career-header + .key-info {
    display: none;
  }
}

/* ============================================================
  Text grid
============================================================ */

.text-grid {
  margin-top: 70px;
  margin-bottom: 120px;
  overflow: hidden;
}

.text-grid .wrapper {
  width: 1230px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  gap: 100px;
}

.text-grid .item .title {
  font-size: 35px;
  line-height: 40px;
  margin-top: 0;
  margin-bottom: 10px;
}

.text-grid .item .title::before {
  content: '';
  display: block;
  width: 39px;
  height: 39px;
  border: 1px solid var(--primary);
  border-radius: 20px;
  background: radial-gradient(var(--primary) 0%, var(--primary) 45%, transparent 45%, transparent 100%);
  margin-bottom: 10px;
}

.text-grid .item p {
  font-family: 'Neue Helvena', sans-serif;
  font-weight: 300;
  line-height: 30px;
  margin: 0;
}

@media (max-width: 1199px) {
  .text-grid .wrapper {
    column-gap: 0;
  }

  .text-grid .item {
    padding-right: 30px;
  }
}

@media (max-width: 992px) {
  .text-grid .wrapper {
    grid-template-columns: 1fr;
    row-gap: 60px;
  }

  .text-grid .item .image {
    max-width: 350px;
  }
}

@media (max-width: 767px) {
  .text-grid .item {
    padding-left: 0;
  }

  .text-grid .item .title {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 15px;
  }

  .text-grid .item p {
    line-height: 25px;
  }

  .text-grid .item .image {
    margin-top: 25px;
  }
}

/* ============================================================
  Text grid alt
============================================================ */

.text-grid-alt {
  overflow: hidden;
}

.text-grid-alt .wrapper {
  width: 1470px;
  max-width: 100%;
  margin: 0 auto;
  background-image: linear-gradient(to right, #EEE 1px, transparent 1px);
  background-size: calc((100% / 8) - 7.7px) 1px;
  background-position: 30px;
  padding-top: 130px;
  padding-bottom: 230px;
  padding-left: 30px;
  padding-right: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  column-gap: 25%;
  row-gap: 130px;
}

.text-grid-alt .item {
  padding-left: 40px;
  padding-right: 10px;
  position: relative;
}

.text-grid-alt .item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20px;
  width: 39px;
  height: 39px;
  border: 1px solid var(--primary);
  border-radius: 20px;
  background: radial-gradient(var(--primary) 0%, var(--primary) 45%, transparent 45%, transparent 100%);
  margin-bottom: 10px;
}

.text-grid-alt .item .title {
  font-size: 35px;
  font-weight: 800;
  line-height: 40px;
  margin-top: 0;
  margin-bottom: 30px;
}

.text-grid-alt .item p {
  font-family: 'Neue Helvena', sans-serif;
  font-weight: 300;
  margin: 0;
  line-height: 30px;
}

.text-grid-alt .item .image {
  width: 100%;
  aspect-ratio: 1;
  margin-top: 30px;
}

.text-grid-alt .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-grid-alt .expert .texture {
  left: -100px;
}

.text-grid-alt .expert {
  padding-left: 0;
}

@media (max-width: 1199px) {
  .text-grid-alt .wrapper {
    column-gap: 0;
  }

  .text-grid-alt .item {
    padding-right: 30px;
  }

  .text-grid-alt .expert {
    padding-left: 60px;
  }

  .text-grid-alt .expert p {
    font-size: 18px;
    line-height: 30px;
  }

  .text-grid-alt .expert .texture {
    left: 0;
  }
}

@media (max-width: 992px) {
  .text-grid-alt .wrapper {
    grid-template-columns: 1fr;
    row-gap: 60px;
    background-image: none;
    padding-top: 40px;
    padding-bottom: 0;
  }

  .text-grid-alt .item .image {
    max-width: 350px;
  }

  .text-grid-alt .expert {
    padding: 35px 0;
  }

  .text-grid-alt .expert .texture {
    width: calc(100% + 60px);
    left: -30px;
  }
}

@media (max-width: 767px) {
  .text-grid-alt .item::before {
    position: relative;
    display: block;
    left: 0;
    margin-bottom: 15px;
  }

  .text-grid-alt .item {
    padding-right: 0;
    padding-left: 0;
  }

  .text-grid-alt .item .title {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 15px;
  }

  .text-grid-alt .item p {
    line-height: 25px;
  }

  .text-grid-alt .item .image {
    margin-top: 25px;
  }
}

/* ============================================================
  Expert
============================================================ */

.expert {
  padding: 60px 0 60px 90px;
  position: relative;
  z-index: 1;
  color: white;
}
.expert .title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 30px;
}

.expert p {
  font-family: 'Neue Helvena', sans-serif;
  font-weight: 300;
  font-size: 22px;
  line-height: 32px;
  margin-top: 0;
  margin-bottom: 30px;
}

.expert .card {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.expert .card .image {
  width: 170px;
  height: 220px;
  border: 8px solid white;
}

.expert .card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert .card .title {
  font-size: 45px;
  line-height: 45px;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 8px;
}

.expert .tag {
  font-family: 'Neue Helvena', sans-serif;
  font-weight: 300;
  display: inline-block;
  padding: 8px 15px;
  border: 1px solid;
  border-radius: 30px;
  font-size: 14px;
}

.expert .tag::before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="11" height="11" viewBox="0 0 11 11"><g transform="translate(-485.654 -2365.654)"><rect fill="white" width="1" height="11" transform="translate(490.654 2365.654)"/><rect fill="white" width="1" height="11" transform="translate(485.654 2371.654) rotate(-90)"/></g></svg>');
  display: inline-block;
  margin-right: 10px;
  line-height: 0;
  transition: rotate .6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.expert .tag:hover::before {
  rotate: 180deg;
}

.expert .texture {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50vw;
  background-color: var(--primary);
  background-image: url('../img/texture/dot.png');
  z-index: -1;
}

@media (max-width: 1199px) {
  .expert {
    padding-left: 60px;
  }

  .expert p {
    font-size: 18px;
    line-height: 30px;
  }

  .expert .texture {
    left: 0;
  }
}

@media (max-width: 992px) {
  .expert {
    padding: 40px 0;
  }

  .expert .texture {
    width: calc(100% + 60px);
    left: -30px;
  }
}

@media (max-width: 767px) {
  .expert .title {
    margin-bottom: 20px;
  }

  .expert .card {
    flex-direction: column;
    gap: 10px;
  }

  .expert .card .title {
    font-size: 40px;
    line-height: 35px;
  }
}

/* ============================================================
  Service single header
============================================================ */

.service-single-header {
  background-color: var(--primary);
  min-height: 100vh;
  padding-top: 300px;
  padding-bottom: 300px;
  color: white;
  display: flex;
  align-items: center;
}

.service-single-header .wrapper {
  width: 1230px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 30px;
}

.service-single-header .title {
  font-size: 95px;
  font-weight: 800;
  line-height: 75px;
  margin-top: 0;
  margin-bottom: 25px;
  hyphens: auto;
  word-break: break-word;
}

.service-single-header .title span {
  display: block;
}

@supports (-webkit-text-stroke: 1px white) {
  .service-single-header .title span.outline {
    -webkit-text-stroke: 1px white;
    color: transparent;
  }
}

.service-single-header p {
  font-family: 'Neue Helvena', sans-serif;
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  max-width: 475px;
  position: relative;
  z-index: 1;
}

.service-single-header p a {
  color: var(--secondary);
}

.service-single-header .button {
  font-family: 'Neue Helvena', sans-serif;
  display: inline-block;
  color: var(--primary);
  background-color: white;
  margin-top: 30px;
  padding: 10px 30px;
  border: 1px solid white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  position: relative;
  transition: color .3s linear, background-color .3s cubic-bezier(0.23, 0.6, 0.34, 1), padding .3s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.service-single-header .button:hover {
  color: black;
  background-color: white;
  padding-left: 60px;
}

.service-single-header .button svg {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  opacity: 0;
  transition: opacity .4s linear, left .4s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.service-single-header .button:hover svg {
  left: 30px;
  opacity: 1;
}

.service-single-header .animation {
  width: 100%;
}

.service-single-header .animation img,
.service-single-header .animation video {
  max-width: 100%;
}

@media (max-width: 1419px) {
  .service-single-header {
    padding-top: 180px;
    padding-bottom: 80px;
    min-height: 0;
  }

  .service-single-header .wrapper {
    grid-template-columns: 1fr;
  }

  .service-single-header .title {
    font-size: 60px;
    line-height: 55px;
  }

  .service-single-header p {
    font-size: 16px;
    line-height: 25px;
  }
}

@media (max-width: 767px) {
  .service-single-header {
    min-height: 100vh;
  }

  .service-single-header .button,
  .service-single-header .button:hover {
    padding: 10px 15px;
  }

  .service-single-header .button svg {
    display: none;
  }

  .service-single-header .content {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-single-header .content .title {
    grid-row: 1;
    grid-column: 1;
  }

  .service-single-header .content p {
    grid-row: 3;
    grid-column: 1;
  }

  .service-single-header .content .button {
    grid-row: 2;
    grid-column: 1;
    margin-top: 0;
    margin-bottom: 30px;
  }
}

/* ============================================================
  Switch box
============================================================ */

.switch-box {
  padding: 40px 30px 65px 30px;
  background-color: var(--primary)
}

.switch-box h2 {
  font-size: 30px;
  font-weight: 900;
  color: var(--secondary);
  margin-top: 0;
  margin-bottom: 30px;
}

.switch-box .wrapper {
  width: 1470px;
  max-width: 100%;
  margin: 0 auto;
}

.switch-box .wrapper .title a {
  display: none;
}

.switch-box p {
  font-family: 'Neue Helvena', sans-serif;
  font-weight: 300;
  margin-top: 0;
  margin-bottom: 30px;
  line-height: 25px;
  color: white;
}

.switch-box > p:last-of-type {
  margin-bottom: 45px;
}

.switch-box a {
  color: var(--secondary);
}

.switch {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4 / 1;
  border: 1px solid var(--secondary);
  border-radius: 100px;
  cursor: pointer;
}

.switch-btn {
  position: absolute;
  left: 0%;
  top: 0;
  height: 100%;
  aspect-ratio: 1;
  background-color: var(--secondary);
  border-radius: 100px;
  display: block;
  transition: all .3s ease-in;
}

.switch.active .switch-btn {
  left: 100%;
  transform: translateX(-100%);
}

.switch-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  transition: all .3s ease-in;
}

.switch.active .switch-content {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.switch-content p {
  font-weight: 700;
  line-height: 18px;
  color: var(--secondary);
  margin: 0;
  padding-left: 30px;
  padding-right: 25%;
}

.switch-canvas {
  display: none;
}

@media (min-width: 768px) {
  .switch-box {
    padding-top: 70px;
    padding-bottom: 60px;
    overflow: hidden;
  }

  .switch-box .wrapper {
    display: grid;
    grid-template-columns: 1fr 3.5fr 5fr 3fr;
    gap: 30px;
    position: relative;
    min-height: 600px;
  }

  .switch-box .wrapper > .title {
    grid-column: 2;
  }

  .switch-box .wrapper > .content {
    grid-column: 3;
  }

  .switch-box .wrapper > .content .switch {
    margin-left: 160px;
  }

  .switch-box h2 {
    font-size: 37px;
    margin-bottom: 40px;
  }

  .switch-box .wrapper .title .btn-primary {
    display: flex;
    font-size: 14px;
    font-weight: 900;
    color: white;
    text-decoration: none;
  }

  .switch-box .wrapper .title .btn-primary:after {
    content: url('../img/icon/btn-arrow-white.svg');
  }

  .switch-box .content > p {
    line-height: 30px;
  }

  .switch-box .content > p:last-of-type {
    margin-bottom: 75px;
  }

  .switch-canvas {
    display: block;
  }

  .switch-canvas .switch:first-child {
    position: absolute;
    top: 0;
    left: 30px;
    transform: translateX(-100%);
  }

  .switch-canvas .switch:nth-child(2) {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateX(-50%);
  }

  .switch-canvas .switch:nth-child(3) {
    position: absolute;
    bottom: 15px;
    left: 30px;
  }

  .switch-canvas .switch:nth-child(4) {
    position: absolute;
    bottom: 50%;
    right: 30px;
    transform: translateX(50%);
  }

  .switch-canvas .switch:last-child {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translate(100%, 50%);
  }
}

@media (max-width: 767px) {
  .switch-box {
    margin-top: 60px;
  }
}

/* ============================================================
  Service nav
============================================================ */

.service-nav {
  margin-top: 150px;
  margin-bottom: 180px;
}

.service-nav .wrapper {
  width: 1410px;
  max-width: 100%;
  margin: 0 auto;
}

.service-nav .title {
  text-align: center;
  font-size: 30px;
  line-height: 35px;
  margin-top: 0;
  margin-bottom: 70px;
  padding: 0 30px;
}

.service-nav .list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 100px;
  overflow-y: hidden;
  overflow-x: auto;
  margin: 0 auto;
  width: fit-content;
  max-width: 100%;
  padding: 0 30px 10px 30px;
}

.service-nav .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  text-decoration: none;
  color: black;
  transition: translate .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-nav .item:hover {
  translate: 10px 0;
}

.service-nav .item .title {
  font-size: 19px;
  line-height: 22px;
  text-align: left;
  margin: 0;
  white-space: nowrap;
  padding: 0;
}

.service-nav .item:hover .title {
  color: var(--primary);
}

.service-nav .item svg {
  transition: rotate .4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-nav .item:hover svg {
  rotate: 45deg;
}

.service-nav .item:hover svg path,
.service-nav .item:hover svg rect {
  stroke: var(--primary);
}

@media (max-width: 767px) {
  .service-nav {
    margin-top: 70px;
    margin-bottom: 70px;
  }

  .service-nav .title {
    margin-bottom: 40px;
  }

  .service-nav .list {
    gap: 45px;
  }
}

/* ============================================================
  Realisation header
============================================================ */

.realisation-header {
  padding: 200px 0;
  display: flex;
  align-items: center;
  min-height: 100vh;
  position: relative;
}

.realisation-header .wrapper {
  width: 1230px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.realisation-header .title {
  margin-top: 0;
  margin-bottom: 35px;
}

.realisation-header .title span {
  display: block;
  font-size: 150px;
  font-weight: 800;
  line-height: 130px;
  color: var(--primary);
}

.realisation-header .title span.outline {
  font-size: 100px;
}

@supports (-webkit-text-stroke: 1px var(--primary)) {
  .realisation-header .title span.outline {
    -webkit-text-stroke: 1px var(--primary);
    color: transparent;
  }
}

.realisation-header p {
  font-family: 'Neue Helvena', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin-top: 0;
  margin-bottom: 50px;
  max-width: 750px;
}

.realisation-header .button {
  display: inline-block;
  color: var(--primary);
  background-color: transparent;
  padding: 10px 30px;
  border: 1px solid var(--primary);
  border-radius: 50px;
  font-family: 'Neue Helvena', sans-serif;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  position: relative;
  transition: color .3s linear, background-color .3s cubic-bezier(0.23, 0.6, 0.34, 1), padding .3s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.realisation-header .button:hover {
  color: white;
  background-color: var(--primary);
  padding-left: 60px;
}

.realisation-header .button svg {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  opacity: 0;
  transition: opacity .4s linear, left .4s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.realisation-header .button:hover svg {
  left: 30px;
  opacity: 1;
}

@media (max-width: 1439px) {
  .realisation-header .wrapper {
    padding: 0 30px;
  }
}

@media (max-width: 1199px) {
  .realisation-header .title {
    margin-bottom: 20px;
  }

  .realisation-header .title span {
    font-size: 80px;
    line-height: 70px;
  }

  .realisation-header .title span.outline {
    font-size: 60px;
  }

  .realisation-header p {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .realisation-header {
    padding-top: 120px;
  }

  .realisation-header .title {
    margin-bottom: 10px;
  }

  .realisation-header .title span {
    font-size: 60px;
    line-height: 55px;
  }

  .realisation-header .title span.outline {
    font-size: 45px;
    line-height: 45px;
  }

  .realisation-header p {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
  }

  .realisation-header .button,
  .realisation-header .button:hover {
    padding: 10px 15px;
  }

  .realisation-header .button svg {
    display: none;
  }
}

/* ============================================================
  Project header
============================================================ */

.project-header {
  padding-top: 300px;
  padding-bottom: 130px;
  background-color: var(--primary);
  color: white;
  min-height: 100vh;
  margin-bottom: 80px;
}

.project-header .wrapper {
  width: 1230px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 30px;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

.project-header .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.project-header .title {
  font-size: 120px;
  font-weight: 800;
  line-height: 120px;
  margin-top: 0;
  margin-bottom: 30px;
  hyphens: auto;
  word-break: break-word;
}

.project-header .title span {
  display: block;
}

.project-header .title .outline {
  font-size: 70px;
  line-height: 70px;
}

@supports (-webkit-text-stroke: 1px white) {
  .project-header .title .outline {
    -webkit-text-stroke: 1px white;
    color: transparent;
  }
}

.project-header .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.project-header .tag {
  font-family: 'Neue Helvena', sans-serif;
  font-weight: 300;
  padding: 8px 15px;
  border: 1px solid;
  border-radius: 30px;
  font-size: 14px;
}

.project-header .tag::before {
  content: url('data:image/svg+xml,<svg fill="white" xmlns="http://www.w3.org/2000/svg" width="11" height="11" viewBox="0 0 11 11"><g transform="translate(-485.654 -2365.654)"><rect width="1" height="11" transform="translate(490.654 2365.654)"/><rect width="1" height="11" transform="translate(485.654 2371.654) rotate(-90)"/></g></svg>');
  display: inline-block;
  margin-right: 10px;
  line-height: 0;
  transition: rotate .6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-header .tag:hover::before {
  rotate: 180deg;
}

.project-header .scroll {
  position: absolute;
  bottom: 0;
  left: 0;
  translate: 0 100%;
}

@keyframes projectHeaderArrow {
  0% {
    translate: 0 -22px;
    rotate: x -90deg;
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  66% {
    opacity: 1;
  }

  100% {
    translate: 0 22px;
    rotate: x 90deg;
    opacity: 0;
  }
}

.project-header .scroll .arrow {
  animation: projectHeaderArrow 1.5s linear infinite;
  transform-origin: center;
}

.project-header .image,
.project-header img {
  width: 100%;
}

@media (max-width: 1199px) {
  .project-header .title {
    font-size: 80px;
    line-height: 80px;
  }

  .project-header .title .outline {
    font-size: 50px;
    line-height: 50px;
  }
}

@media (max-width: 991px) {
  .project-header {
    padding-top: 170px;
    padding-bottom: 50px;
    min-height: unset;
    margin-bottom: 50px;
  }

  .project-header .scroll {
    display: none;
  }
}

@media (max-width: 767px) {
  .project-header .title {
    font-size: 70px;
    line-height: 70px;
  }

  .project-header .title .outline {
    font-size: 45px;
    line-height: 45px;
  }
}

@media (max-width: 575px) {
  .project-header .wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .project-header .image {
    max-width: 250px;
    margin: 0 auto;
  } 
}

/* ============================================================
  Project text
============================================================ */

.project-text {
  margin-top: 100px;
}

.project-text.bg-blue {
  color: white;
  padding-top: 120px;
  padding-bottom: 100px;
}

.project-text .wrapper {
  width: 1230px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.project-text.two-col .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.project-text.two-third .wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.project-text.three-col .wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.project-text.va-center .wrapper {
  align-items: center;
}

.project-text .item {
  padding-left: 60px;
}

.project-text .title {
  font-size: 36px;
  font-weight: 800;
  line-height: 40px;
  margin-top: 0;
  margin-bottom: 30px;
  position: relative;
}

.project-text .title .number {
  position: absolute;
  top: 0;
  left: 0;
  translate: -60px 0;
  font-size: 25px;
  font-weight: 500;
  line-height: 30px;
}

.project-text p {
  font-family: 'Neue Helvena', sans-serif;
  font-weight: 300;
  line-height: 25px;
}

.project-text .button {
  display: inline-block;
  color: var(--primary);
  background-color: transparent;
  padding: 10px 30px;
  margin-top: 15px;
  border: 1px solid var(--primary);
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  position: relative;
  transition: color .3s linear, background-color .3s cubic-bezier(0.23, 0.6, 0.34, 1), padding .3s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.project-text.bg-blue .button {
  color: white;
  border-color: white;
}

.project-text .button:hover {
  color: white;
  background-color: var(--primary);
  padding-left: 60px;
}

.project-text.bg-blue .button:hover {
  color: var(--primary);
  background-color: white;
}

.project-text .button svg {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  opacity: 0;
  transition: opacity .4s linear, left .4s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.project-text .button:hover svg {
  left: 30px;
  opacity: 1;
}

.project-text .button svg rect {
  fill: white;
  stroke: white;
}

.project-text.bg-blue .button svg rect {
  fill: var(--primary);
  stroke: var(--primary);
}

.project-text img {
  max-width: 100%;
}

@media (max-width: 900px) {
  .project-text {
    margin-top: 50px;
  }

  .project-text.bg-blue {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .project-text.two-col .wrapper,
  .project-text.two-third .wrapper,
  .project-text.three-col .wrapper {
    grid-template-columns: 1fr;
  }

  .project-text .item {
    padding-left: 0;
  }

  .project-text .title {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 15px;
  }

  .project-text .title .number {
    position: unset;
    display: block;
    margin-bottom: 15px;
    translate: 0;
  }

  .project-text .button,
  .project-text .button:hover {
    padding: 10px 15px;
  }

  .project-text .button svg {
    display: none;
  }
}

/* ============================================================
  Project video
============================================================ */

.project-video {
  margin-top: 100px;
}

.project-video .wrapper {
  width: 1470px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.project-video.two-col .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.project-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

@media (max-width: 900px) {
  .project-video {
    margin-top: 50px;
  }

  .project-video.two-col .wrapper {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
  image full
============================================================ */

.image-full {
  display: block;
  width: 1410px;
  max-width: 100%;
  margin: 50px auto 100px auto;
}

@media (max-width: 900px) {
  .image-full {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

/* ============================================================
  Two third
============================================================ */

.project-image-grid.two-third picture:first-child {
  grid-column: 1/9;
}

.project-image-grid.two-third picture:nth-child(2) {
  grid-column: 9/13;
}

@media (max-width: 767px) {
  .project-image-grid.two-third picture {
    grid-column: auto !important;
  }
}

/* ===========================================================
  Two col
============================================================ */

.project-image-grid.two-col picture:first-child {
  grid-column: 1/7;
}

.project-image-grid.two-col picture:nth-child(2) {
  grid-column: 7/13;
}

@media (max-width: 767px) {
  .project-image-grid.two-col picture {
    grid-column: auto !important;
  }
}

/* ===========================================================
  Three col
============================================================ */

.project-image-grid.three-col picture:first-child {
  grid-column: 1/5;
}

.project-image-grid.three-col picture:nth-child(2) {
  grid-column: 5/9;
}

.project-image-grid.three-col picture:nth-child(3) {
  grid-column: 9/13;
}

@media (max-width: 767px) {
  .project-image-grid.three-col picture {
    grid-column: auto !important;
  }
}

/* ============================================================
  Review
============================================================ */

.review {
  margin-top: 120px;
  margin-bottom: 150px;
}

.review .wrapper {
  width: 1170px;
  max-width: 100%;
  margin: 0 auto;
  padding: 60px 100px 40px 100px;
  background-color: var(--primary);
  color: white;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
}

.review .card .image {
  width: 100%;
  border: 10px solid white;
}

.review .card img {
  width: 100%;
  display: block;
}

.review .card .title {
  font-size: 45px;
  font-weight: 800;
  line-height: 35px;
  margin: 15px 0;
}

.review .card .tag {
  padding: 8px 15px;
  border: 1px solid;
  border-radius: 30px;
  font-size: 14px;
  display: inline-block;
}

.review .card .tag::before {
  content: url('data:image/svg+xml,<svg fill="white" xmlns="http://www.w3.org/2000/svg" width="11" height="11" viewBox="0 0 11 11"><g transform="translate(-485.654 -2365.654)"><rect width="1" height="11" transform="translate(490.654 2365.654)"/><rect width="1" height="11" transform="translate(485.654 2371.654) rotate(-90)"/></g></svg>');
  display: inline-block;
  margin-right: 10px;
}

.review .content {
  padding-left: 60px;
}

.review .content .title {
  font-size: 35px;
  font-weight: 800;
  line-height: 40px;
  margin-top: 0;
  margin-bottom: 30px;
  position: relative;
}

.review .content .title::before {
  content: '01';
  position: absolute;
  top: 0;
  left: 0;
  translate: -60px 0;
  font-size: 25px;
  font-weight: 500;
  line-height: 30px;
}

.review .content p {
  font-size: 20px;
  line-height: 35px;
}

@media (max-width: 991px) {
  .review .wrapper {
    grid-template-columns: 250px 1fr;
    padding: 40px 30px;
  }

  .review .card .image {
    border-width: 5px;
  }

  .review .card .title {
    font-size: 40px;
    line-height: 35px;
    margin: 10px 0;
  }

  .review .content {
    padding-left: 0;
  }

  .review .content .title {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 15px;
  }

  .review .content .title::before {
    position: unset;
    display: block;
    font-size: 25px;
    margin-bottom: 15px;
    translate: 0;
  }

  .review .content p {
    font-size: 16px;
    line-height: 25px;
  }
}

@media (max-width: 767px) {
  .review {
    margin-top: 90px;
    margin-bottom: 70px;
  }

  .review .wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }

  .review .card .image {
    max-width: 250px;
  }
}

/* ============================================================
  Project nav
============================================================ */

.project-nav {
  margin-top: 80px;
  margin-bottom: 60px;
}

.project-nav .wrapper {
  width: 990px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.project-nav .title {
  text-align: center;
  font-size: 35px;
  line-height: 40px;
  margin-top: 0;
  margin-bottom: 70px;
}

.project-nav .list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.project-nav .list .prev,
.project-nav .list .next {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: translate .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-nav .list .prev:hover {
  translate: -10px 0;
}

.project-nav .list .next:hover {
  translate: 10px 0;
}

.project-nav .list .title {
  font-size: 20px;
  line-height: 20px;
  margin: 0;
  color: black;
}

.project-nav .list .prev:hover .title,
.project-nav .list .next:hover .title {
  color: var(--primary);
}

.project-nav .list .prev:hover svg path,
.project-nav .list .prev:hover svg rect,
.project-nav .list .next:hover svg path,
.project-nav .list .next:hover svg rect {
  stroke: var(--primary);
}

@media (max-width: 767px) {
  .project-nav {
    margin-top: 70px;
    margin-bottom: 45px;
  }

  .project-nav .title {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 20px;
  }

  .project-nav .list {
    flex-direction: column;
    gap: 10px;
  }
}

/* ============================================================
  Project image grid
============================================================ */

.project-image-grid {
  margin-top: 75px;
  margin-bottom: 150px;
}

.project-image-grid .wrapper {
  width: 1470px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 30px;
  row-gap: 20px;
}

.project-image-grid img {
  width: 100%;
  max-width: 100%;
}

.project-image-grid.voshuiles .wrapper picture:first-child {
  grid-column: 1/7;
}

.project-image-grid.voshuiles .wrapper picture:nth-child(2) {
  grid-column: 7/13;
}

.project-image-grid.voshuiles .wrapper picture:nth-child(3) {
  grid-column: 1/13;
}

.project-image-grid.nutrisport .wrapper picture:first-child {
  grid-column: 1/9;
}

.project-image-grid.nutrisport .wrapper picture:nth-child(2) {
  grid-column: 9/13;
}

.project-image-grid.nutrisport .wrapper picture:nth-child(3) {
  grid-column: 1/13;
}

.project-image-grid.nutrisport .wrapper picture:nth-child(4) {
  grid-column: 1/13;
}

.project-image-grid.hardy .wrapper picture:first-child {
  grid-column: 1/13;
}

.project-image-grid.hardy .wrapper video:nth-child(2) {
  grid-column: 1/7;
  width: 100%;
  height: auto;
}

.project-image-grid.hardy .wrapper picture:nth-child(3) {
  grid-column: 7/13;
}

.project-image-grid.hardy .wrapper picture:nth-child(4) {
  grid-column: 1/13;
}

.project-image-grid.hardy .wrapper picture:nth-child(5) {
  grid-column: 1/13;
}

.project-image-grid.identite-visuelle .wrapper picture:first-child {
  grid-column: 1/13;
}

.project-image-grid.identite-visuelle .wrapper picture:nth-child(2) {
  grid-column: 1/7;
}

.project-image-grid.identite-visuelle .wrapper picture:nth-child(3) {
  grid-column: 7/13;
}

.project-image-grid.identite-visuelle .wrapper picture:nth-child(4) {
  grid-column: 1/13;
}

.project-image-grid.identite-visuelle .wrapper picture:nth-child(5) {
  grid-column: 1/7;
}

.project-image-grid.identite-visuelle .wrapper picture:nth-child(6) {
  grid-column: 7/13;
}

.project-image-grid.identite-visuelle .wrapper picture:nth-child(7) {
  grid-column: 1/13;
}

.project-image-grid.site-web .wrapper picture:first-child {
  grid-column: 1/13;
}

.project-image-grid.site-web .wrapper picture:nth-child(2) {
  grid-column: 1/9;
}

.project-image-grid.site-web .wrapper picture:nth-child(3) {
  grid-column: 9/13;
}

.project-image-grid.site-web .wrapper picture:nth-child(4) {
  grid-column: 1/7;
}

.project-image-grid.site-web .wrapper picture:nth-child(5) {
  grid-column: 7/13;
}

.project-image-grid.site-web .wrapper picture:nth-child(6) {
  grid-column: 1/13;
}

.project-image-grid.site-web .wrapper picture:nth-child(7) {
  grid-column: 1/13;
}

.project-image-grid.photo .wrapper picture:first-child {
  grid-column: 1/13;
}

.project-image-grid.photo .wrapper picture:nth-child(2) {
  grid-column: 1/7;
}

.project-image-grid.photo .wrapper picture:nth-child(3) {
  grid-column: 7/13;
}

.project-image-grid.photo .wrapper picture:nth-child(4) {
  grid-column: 1/13;
}

.project-image-grid.photo .wrapper picture:nth-child(5) {
  grid-column: 1/7;
}

.project-image-grid.photo .wrapper picture:nth-child(6) {
  grid-column: 7/13;
}

.project-image-grid.boulangerie .wrapper picture:first-child,
.project-image-grid.boulangerie .wrapper picture:nth-child(3),
.project-image-grid.boulangerie .wrapper picture:nth-child(5),
.project-image-grid.boulangerie .wrapper picture:nth-child(7) {
  grid-column: 1/7;
}

.project-image-grid.boulangerie .wrapper picture:nth-child(2),
.project-image-grid.boulangerie .wrapper picture:nth-child(4),
.project-image-grid.boulangerie .wrapper picture:nth-child(6),
.project-image-grid.boulangerie .wrapper picture:nth-child(8) {
  grid-column: 7/13;
}

.project-image-grid.video .wrapper iframe {
  grid-column: 3/11;
  width: 100%;
  aspect-ratio: 16/9;
}

.project-image-grid.packshot .wrapper picture:first-child,
.project-image-grid.packshot .wrapper picture:nth-child(4),
.project-image-grid.packshot .wrapper picture:nth-child(7),
.project-image-grid.packshot .wrapper picture:nth-child(10) {
  grid-column: 1/5;
}

.project-image-grid.packshot .wrapper picture:nth-child(2),
.project-image-grid.packshot .wrapper picture:nth-child(5),
.project-image-grid.packshot .wrapper picture:nth-child(8),
.project-image-grid.packshot .wrapper picture:nth-child(11) {
  grid-column: 5/9;
}

.project-image-grid.packshot .wrapper picture:nth-child(3),
.project-image-grid.packshot .wrapper picture:nth-child(6),
.project-image-grid.packshot .wrapper picture:nth-child(9),
.project-image-grid.packshot .wrapper picture:nth-child(12) {
  grid-column: 9/13;
}

.project-image-grid.social-media .wrapper picture:first-child {
  grid-column: 1/9;
}

.project-image-grid.social-media .wrapper picture:nth-child(2) {
  grid-column: 9/13;
}

.project-image-grid.social-media .wrapper picture:nth-child(3) {
  grid-column: 1/13;
}

.project-image-grid.social-media .wrapper picture:nth-child(4) {
  grid-column: 1/5;
}

.project-image-grid.social-media .wrapper picture:nth-child(5) {
  grid-column: 5/9;
}

.project-image-grid.social-media .wrapper picture:nth-child(6) {
  grid-column: 9/13;
}

@media (max-width: 767px) {
  .project-image-grid {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .project-image-grid .wrapper {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .project-image-grid.voshuiles .wrapper picture,
  .project-image-grid.nutrisport .wrapper picture,
  .project-image-grid.hardy .wrapper picture,
  .project-image-grid.identite-visuelle .wrapper picture,
  .project-image-grid.site-web .wrapper picture,
  .project-image-grid.photo .wrapper picture,
  .project-image-grid.boulangerie .wrapper picture,
  .project-image-grid.packshot .wrapper picture,
  .project-image-grid.social-media .wrapper picture,
  .project-image-grid.video .wrapper iframe {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

/* ============================================================
  About team
============================================================ */

.about-team {
  padding-top: 100px;
  padding-bottom: 50px;
  color: white;
  background-image: url('../img/texture/plus.png');
}

.about-team .wrapper {
  width: 1470px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 5fr 6fr;
  align-items: flex-end;
  gap: 180px;
}

.about-team .content {
  padding-left: 100px;
}

.about-team .content .title {
  font-size: 80px;
  font-weight: 800;
  line-height: 80px;
  margin-top: 0;
  margin-bottom: 30px;
}

.about-team .content .title span {
  display: block;
}

@supports (-webkit-text-stroke: 1px white) {
  .about-team .title .outline {
    -webkit-text-stroke: 1px white;
    color: transparent;
  }
}

.about-team .content p {
  font-family: 'Neue Helvena', sans-serif;
  font-weight: 300;
  line-height: 25px;
  margin: 30px 0;
  max-width: 400px;
}

.about-team .button {
  display: inline-block;
  color: var(--primary);
  background-color: white;
  padding: 10px 30px;
  border: 1px solid white;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  position: relative;
  transition: color .3s linear, background-color .3s cubic-bezier(0.23, 0.6, 0.34, 1), padding .3s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.about-team .button:hover {
  color: black;
  padding-left: 60px;
}

.about-team .button svg {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  opacity: 0;
  transition: opacity .4s linear, left .4s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.about-team .button:hover svg {
  left: 30px;
  opacity: 1;
}

.about-team .image {
  position: relative;
}

.about-team .image::before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="59.896" height="59.896" viewBox="0 0 59.896 59.896"><g><circle cx="29.948" cy="29.948" r="29.948" fill="%23fff"/><g transform="translate(16.846 16.846)"><line y2="26.205" transform="translate(14.038)" fill="none" stroke="%23000" stroke-width="2"/><line x2="26.205" transform="translate(0 13.102)" fill="none" stroke="%23000" stroke-width="2"/></g></g></svg>');
  position: absolute;
  top: 0;
  left: 0;
  translate: -50% -50%;
}

.about-team img {
  max-width: 100%;
}

.about-team .image + a {
  display: block;
  text-align: right;
  margin-top: 30px;
  width: fit-content;
  margin-left: auto;
}

.about-team .image + a svg #text {
  animation: rotate360 6s linear infinite;
  transform-origin: center;
}

.about-team .image + a svg #arrow {
  transition: all .5s cubic-bezier(0.075, 0.82, 0.165, 1);
  transform-origin: center;
}

.about-team .image + a svg:hover #arrow {
  rotate: 45deg;
}

@media (max-width: 1399px) {
  .about-team .wrapper {
    gap: 100px;
  }

  .about-team .content {
    padding-left: 0;
  }
}

@media (max-width: 1199px) {
  .about-team .wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }

  .about-team .content p {
    max-width: unset;
  }
}

@media (max-width: 991px) {
  .about-team {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about-team .content .title {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 20px;
  }

  .about-team .content p {
    margin: 20px 0;
  }
}

@media (max-width: 850px) {
  .about-team .wrapper {
    display: flex;
    flex-direction: column;
  }

  .about-team .image {
    margin-left: 30px;
  }

  .about-team .button,
  .about-team .button:hover {
    padding: 10px 15px;
  }

  .about-team .button svg {
    display: none;
  }
}

/* ============================================================
  16h33
============================================================ */

.shtt {
  margin-top: 80px;
  margin-bottom: 150px;
}

.shtt .wrapper {
  width: 1470px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 4fr 8fr;
}

.shtt .title {
  font-size: 70px;
  font-weight: 800;
  line-height: 70px;
  margin: 0;
}

.shtt .title span {
  display: block;
}

@supports (-webkit-text-stroke: 1px black) {
  .shtt .title .outline {
    -webkit-text-stroke: 1px black;
    color: transparent;
  }
}

.shtt .content {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.shtt .seize,
.shtt .trente-trois {
  position: relative;
}

.shtt .text {
  font-size: 25px;
  font-weight: 700;
  line-height: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  margin: 0;
  transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

.shtt .seize .text {
  width: 420px;
}

.shtt .seize.active .text {
  left: 100%;
  translate: 50px -50%;
  opacity: 1;
}

.shtt .trente-trois .text {
  width: 360px;
  text-align: right;
  left: unset;
  right: 50%;
  translate: 50% -50%;
}

.shtt .trente-trois.active .text {
  left: unset;
  right: 100%;
  translate: -50px -50%;
  opacity: 1;
}

@media (max-width: 1699px) {
  .shtt .text {
    font-size: 20px;
    line-height: 30px;
  }

  .shtt .seize .text,
  .shtt .trente-trois .text {
    width: 300px;
  }
}

@media (max-width: 1399px) {
  .shtt .text {
    font-size: 16px;
    line-height: 25px;
  }

  .shtt .seize .text,
  .shtt .trente-trois .text {
    width: 200px;
  }
}

@media (max-width: 1199px) {
  .shtt .wrapper {
    grid-template-columns: 1fr;
    width: 700px;
    max-width: 100%;
  }

  .shtt .title {
    font-size: 55px;
    line-height: 55px;
  }

  .shtt .seize svg,
  .shtt .trente-trois svg {
    margin: 0 auto;
    display: block;
  }

  .shtt .seize .text,
  .shtt .trente-trois .text {
    position: relative;
    top: 0;
    left: 0;
    translate: none;
    opacity: 1;
    width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .shtt .seize svg,
  .shtt .trente-trois svg {
    width: 150px;
    height: auto;
  }
}

/* ============================================================
  Team
============================================================ */

.team {
  padding-top: 300px;
  margin-bottom: 100px;
}

.team .wrapper {
  width: 1230px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.team .top {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.team .top .title {
  font-size: 25px;
  font-weight: 800;
  line-height: 20px;
  color: var(--primary);
  margin: 0;
}

.team .top .button {
  display: inline-block;
  color: var(--primary);
  background-color: transparent;
  padding: 10px 30px;
  border: 1px solid var(--primary);
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  position: relative;
  transition: padding .3s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.team .top .button:hover {
  padding-left: 60px;
  background-color: var(--primary);
  color: white;
}

.team .top .button svg {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  opacity: 0;
  transition: opacity .4s linear, left .4s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.team .top .button:hover svg {
  left: 30px;
  opacity: 1;
}

.team .title {
  margin: 0;
  font-size: 95px;
  font-weight: 800;
  line-height: 95px;
}

.team .title span {
  display: block;
}

.team .title span:first-child {
  position: relative;
  z-index: 1;
  width: fit-content;
  transition: color .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team .title span:first-child::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 0;
  height: 100%;
  background-color: var(--primary);
  transition: width .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team .title span:first-child:hover {
  color: white;
}

.team .title span:first-child:hover::before {
  width: 100%;
}

.team .title .outline {
  font-size: 65px;
  line-height: 65px;
}

@supports (-webkit-text-stroke: 1px black) {
  .team .title .outline {
    -webkit-text-stroke: 1px black;
    color: transparent;
  }
}

.team .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 90px;
  row-gap: 70px;
  margin-top: 50px;
}

.team .item {
  cursor: pointer;
}

.team .item > .image {
  width: 100%;
  aspect-ratio: 1 / 1.4;
  position: relative;
  margin-bottom: 20px;
}

.team .item > .image::after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="59.896" height="59.896" viewBox="0 0 59.896 59.896"><circle cx="29.948" cy="29.948" r="29.948" transform="translate(0 0)" fill="%23001dfd"/><g transform="translate(16.846 16.846)"><line y2="26.205" transform="translate(14.038)" fill="none" stroke="%23fff" stroke-width="2"/><line x2="26.205" transform="translate(0 13.102)" fill="none" stroke="%23fff" stroke-width="2"/></g></svg>');
  position: absolute;
  top: 50%;
  right: 0;
  line-height: 0;
  translate: calc(50% - 10px) -50%;
  opacity: 0;
  rotate: -90deg;
  transition: translate .4s cubic-bezier(0.165, 0.84, 0.44, 1),
              opacity .3s cubic-bezier(0.165, 0.84, 0.44, 1),
              rotate .4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team .item:hover > .image::after {
  translate: 50% -50%;
  opacity: 1;
  rotate: 0deg;
}

.team .item > .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team .item > .image img.hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.team .item:hover > .image img.hover {
  opacity: 1;
}

.team .item .tag {
  font-family: "Neue Helvena", sans-serif;
  font-weight: 300;
  display: inline-block;
  font-size: 14px;
  padding: 8px 15px;
  border: 1px solid black;
  border-radius: 30px;
}

.team .item .tag::before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="11" height="11" viewBox="0 0 11 11"><g transform="translate(-485.654 -2365.654)"><rect width="1" height="11" transform="translate(490.654 2365.654)"/><rect width="1" height="11" transform="translate(485.654 2371.654) rotate(-90)"/></g></svg>');
  display: inline-block;
  margin-right: 10px;
  line-height: 0;
  transition: rotate .6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team .item .tag:hover::before {
  rotate: 180deg;
}

.team .item > .title {
  font-size: 40px;
  font-weight: 800;
  line-height: 40px;
  margin-top: 15px;
  margin-bottom: 0;
}

.team-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  background-color: rgba(255 255 255 / .7);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 20;
}

.team-popup .item {
  width: 1470px;
  max-width: 100%;
  padding: 0 30px;
  position: absolute;
  top: 50dvh;
  left: 50%;
  translate: -50% calc(-50% + 40px);
  transform-origin: 25% 25%;
  display: grid;
  grid-template-columns: 4fr 8fr;
  color: white;
  opacity: 0;
  pointer-events: none;
  transition: translate .6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity .4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-popup .item.active {
  translate: -50% -50%;
}

.team-popup.active,
.team-popup.active .item.active {
  opacity: 1;
  pointer-events: initial;
}

.team-popup .item .image {
  width: 100%;
  aspect-ratio: 1 / 1.4;
  margin: 0;
}

.team-popup .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-popup .item .content {
  padding: 0 120px;
  background-color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.team-popup .item .tag {
  font-family: "Neue Helvena", sans-serif;
  font-weight: 300;
  display: inline-block;
  font-size: 14px;
  padding: 8px 15px;
  border: 1px solid white;
  border-radius: 30px;
}

.team-popup .item .tag::before {
  content: url('data:image/svg+xml,<svg fill="white" xmlns="http://www.w3.org/2000/svg" width="11" height="11" viewBox="0 0 11 11"><g transform="translate(-485.654 -2365.654)"><rect width="1" height="11" transform="translate(490.654 2365.654)"/><rect width="1" height="11" transform="translate(485.654 2371.654) rotate(-90)"/></g></svg>');
  display: inline-block;
  margin-right: 10px;
  line-height: 0;
  transition: rotate .6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-popup .item .tag:hover::before {
  rotate: 180deg;
}

.team-popup .item .title {
  font-size: 40px;
  font-weight: 800;
  line-height: 40px;
  margin-top: 25px;
  margin-bottom: 0;
}

.team-popup .item p {
  font-family: "Neue Helvena", sans-serif;
  font-weight: 300;
  margin-top: 25px;
  font-size: 18px;
  line-height: 35px;
}

.team-popup .item .close {
  position: absolute;
  top: 0;
  right: 30px;
  padding: 20px;
  cursor: pointer;
}

@media (max-width: 1419px) {
  .team {
    padding-top: 180px;
  }
}

@media (max-width: 1299px) {
  .team-popup .item .title {
    font-size: 35px;
    line-height: 35px;
    margin-top: 15px;
  }

  .team-popup .item p {
    margin-top: 15px;
    font-size: 15px;
    line-height: 20px;
  }
}

@media (max-width: 1199px) {
  .team .title {
    font-size: 55px;
    line-height: 55px;
  }

  .team .title .outline {
    font-size: 45px;
    line-height: 45px;
  }

  .team .grid {
    column-gap: 60px;
    row-gap: 40px;
  }
}

@media (max-width: 991px) {
  .team-popup .item {
    rotate: 0deg;
    translate: -50% -50%;
    transition: opacity .4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .team-popup .item .content {
    padding: 25px 30px;
  }

  .team .item > .image img.hover {
    display: none;
  }

  .team .item > .image::after {
    opacity: 1;
  }
}

@media (max-width: 850px) {
  .team .grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    margin-top: 30px;
  }

  .team-popup .item {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    width: 100%;
    max-width: 400px;
    max-height: calc(100dvh - 80px);
  }

  .team-popup .item .image {
    aspect-ratio: 1;
  }

  .team-popup .item .image img {
    object-position: center top;
  }

  .team-popup .item .content {
    overflow: scroll;
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .team .title,
  .team .title .outline {
    font-size: 35px;
    line-height: 35px;
  }

  .team .top .button,
  .team .top .button:hover {
    padding: 10px 15px;
  }

  .team .top .button svg {
    display: none;
  }
}

@media (max-width: 575px) {
  .team .top {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 25px;
  }

  .team .grid {
    grid-template-columns: 1fr;
  }

  .team .grid .item {
    max-width: 250px;
  }
}

/* ============================================================
  Valor header
============================================================ */

.valor-header {
  padding-top: 300px;
  padding-bottom: 80px;
}

.valor-header .wrapper {
  width: 1230px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.valor-header .top {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.valor-header .top .title {
  font-size: 25px;
  font-weight: 800;
  line-height: 20px;
  color: var(--primary);
  margin: 0;
}

.valor-header .top .button {
  font-family: "Neue Helvena", sans-serif;
  display: inline-block;
  color: var(--primary);
  background-color: transparent;
  padding: 10px 30px;
  border: 1px solid var(--primary);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  position: relative;
  transition: padding .3s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.valor-header .top .button:hover {
  padding-left: 60px;
  background-color: var(--primary);
  color: white;
}

.valor-header .top .button svg {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  opacity: 0;
  transition: opacity .4s linear, left .4s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.valor-header .top .button:hover svg {
  left: 30px;
  opacity: 1;
}

.valor-header .title {
  margin: 0;
  font-size: 95px;
  font-weight: 800;
  line-height: 95px;
}

.valor-header .title span {
  display: block;
}

.valor-header .title span:first-child {
  position: relative;
  z-index: 1;
  width: fit-content;
  transition: color .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.valor-header .title span:first-child::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 0;
  height: 100%;
  background-color: var(--primary);
  transition: width .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.valor-header .title span:first-child:hover {
  color: white;
}

.valor-header .title span:first-child:hover::before {
  width: 100%;
}

.valor-header .title .outline {
  font-size: 65px;
  line-height: 65px;
}

@supports (-webkit-text-stroke: 1px black) {
  .valor-header .title .outline {
    -webkit-text-stroke: 1px black;
    color: transparent;
  }
}

.valor-header p {
  font-family: "Neue Helvena", sans-serif;
  margin-top: 30px;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  max-width: 930px;
}

@media (max-width: 1419px) {
  .valor-header {
    padding-top: 180px;
  }
}

@media (max-width: 1199px) {
  .valor-header .title {
    font-size: 55px;
    line-height: 55px;
  }

  .valor-header .title .outline {
    font-size: 45px;
    line-height: 45px;
  }
}

@media (max-width: 767px) {
  .valor-header {
    padding-bottom: 30px;
  }

  .valor-header .title,
  .valor-header .title .outline {
    font-size: 35px;
    line-height: 35px;
  }

  .valor-header p {
    line-height: 20px;
    font-size: 16px;
    margin-top: 15px;
  }

  .valor-header .top .button,
  .valor-header .top .button:hover {
    padding: 10px 15px;
  }

  .valor-header .top .button svg {
    display: none;
  }
}

@media (max-width: 575px) {
  .valor-header .top {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 25px;
  }
}

/* ============================================================
  Valor slider
============================================================ */

.valor-slider {
  display: flex;
  flex-wrap: nowrap;
  background-color: var(--primary);
  background-image: url('../img/texture/plus.png');
  margin: 100px 0;
  padding: 130px 0;
  position: relative;
  overflow-x: hidden;
}

.valor-slider .scroll {
  position: absolute;
  top: 25px;
  left: 50%;
  translate: -50% 0;
}

.valor-slider .scroll svg path {
  transform-origin: center;
  scale: .9;
  animation: sliderScrollHand 3s infinite cubic-bezier(0.165, 0.84, 0.44, 1);
}

.valor-slider .item {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.valor-slider .item .wrapper {
  width: 1350px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 4fr 1fr 6fr;
  gap: 30px;
  align-items: center;
}

.valor-slider .item.last .wrapper {
  grid-template-columns: 6fr 1fr 4fr;
}

.valor-slider .item .content {
  color: white;
  position: relative;
}

.valor-slider .item .content .number {
  position: absolute;
  top: 0;
  left: -30px;
  font-size: 30px;
  font-weight: 500;
  translate: -30px 0;
}

.valor-slider .item .content .title {
  font-size: 80px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 15px;
}

.valor-slider .item .content p {
  font-family: "Neue Helvena", sans-serif;
  font-weight: 300;
  line-height: 1.5em;
}

.valor-slider .item.last .content p {
  font-family: "Neue Helvena", sans-serif;
  font-size: 30px;
  font-weight: 600;
}

.valor-slider .item .image {
  grid-column: 3;
  width: 100%;
  aspect-ratio: 1;
  position: relative;
}

.valor-slider .item:not(.last) .image::after {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background-color: white;
  background-image: url('data:image/svg+xml,<svg id="Groupe_2393" data-name="Groupe 2393" xmlns="http://www.w3.org/2000/svg" width="20.422" height="20.422" viewBox="0 0 20.422 20.422"><line id="Ligne_3540" data-name="Ligne 3540" y2="20.422" transform="translate(10.94)" fill="none" stroke="%23000" stroke-width="2"/><line id="Ligne_3541" data-name="Ligne 3541" x2="20.422" transform="translate(0 10.211)" fill="none" stroke="%23000" stroke-width="2"/></svg>');
  background-repeat: no-repeat;
  background-position: center center;
}

.valor-slider .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1349px) {

  .valor-slider .item .wrapper,
  .valor-slider .item.last .wrapper {
    grid-template-columns: 0.5fr 5fr 0.5fr 5fr 0.5fr;
  }

  .valor-slider .item .content {
    grid-column: 2;
  }

  .valor-slider .item .content .number {
    position: unset;
    translate: 0;
    margin-bottom: 8px;
    font-size: 25px;
  }

  .valor-slider .item .content .title {
    font-size: 40px;
  }

  .valor-slider .item.last .content p {
    font-size: 20px;
  }

  .valor-slider .item .image {
    grid-column: 4;
  }
}

@media (min-width: 992px) {
  .valor-slider .scroll {
    display: none;
  }
}

@media (max-width: 991px) {
  .valor-slider {
    overflow: auto;
    padding-top: 100px;
    padding-bottom: 70px;
  }

  .valor-slider .item {
    display: block;
  }

  .valor-slider .item .wrapper,
  .valor-slider .item.last .wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .valor-slider .item .content,
  .valor-slider .item .image {
    grid-column: unset;
  }

  .valor-slider .item .image {
    max-width: 350px;
  }
}

/* ============================================================
  Partner header
============================================================ */

.partner-header .wrapper {
  width: 1470px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 8fr 3fr;
  gap: 100px;
  align-items: center;
  padding-top: 300px;
  padding-bottom: 80px;
  background-image: linear-gradient(to right, #EEE 1px, transparent 1px);
  background-size: calc((100% / 8) - 7.7px) 1px;
  background-position: 30px;
}

.partner-header .content {
  padding-left: 100px;
}

.partner-header .top {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.partner-header .top .title {
  font-size: 25px;
  font-weight: 800;
  line-height: 20px;
  color: var(--primary);
  margin: 0;
}

.partner-header .top .button {
  font-family: "Neue Helvena", sans-serif;
  display: inline-block;
  color: var(--primary);
  background-color: transparent;
  padding: 10px 30px;
  border: 1px solid var(--primary);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  position: relative;
  transition: padding .3s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.partner-header .top .button:hover {
  padding-left: 60px;
  background-color: var(--primary);
  color: white;
}

.partner-header .top .button svg {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  opacity: 0;
  transition: opacity .4s linear, left .4s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.partner-header .top .button:hover svg {
  left: 30px;
  opacity: 1;
}

.partner-header .title {
  margin: 0;
  font-size: 95px;
  font-weight: 800;
  line-height: 95px;
}

.partner-header .title span {
  display: block;
}

.partner-header .title span:first-child {
  position: relative;
  z-index: 1;
  width: fit-content;
  transition: color .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.partner-header .title span:first-child::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 0;
  height: 100%;
  background-color: var(--primary);
  transition: width .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.partner-header .title span:first-child:hover {
  color: white;
}

.partner-header .title span:first-child:hover::before {
  width: 100%;
}

@supports (-webkit-text-stroke: 1px black) {
  .partner-header .title .outline {
    -webkit-text-stroke: 1px black;
    color: transparent;
  }
}

.partner-header p {
  font-family: "Neue Helvena", sans-serif;
  font-weight: 300;
  margin-top: 30px;
  font-size: 18px;
  line-height: 25px;
  max-width: 930px;
}

.partner-header .image,
.partner-header .image img {
  width: 100%;
}

@media (max-width: 1419px) {
  .partner-header .wrapper {
    padding-top: 180px;
  }
}

@media (max-width: 1299px) {
  .partner-header .wrapper {
    gap: 60px;
  }

  .partner-header .content {
    padding-left: 0;
  }

  .partner-header .title {
    font-size: 70px;
    line-height: 70px;
  }

  .partner-header p {
    font-size: 16px;
    margin-top: 15px;
  }
}

@media (max-width: 1199px) {
  .partner-header .wrapper {
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .partner-header .wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    background-image: none;
  }

  .partner-header .top {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .partner-header .top .title {
    font-size: 16px;
  }

  .partner-header .title {
    font-size: 35px;
    line-height: 35px;
  }

  .partner-header .image {
    max-width: 300px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .partner-header .top .button,
  .partner-header .top .button:hover {
    padding: 10px 15px;
  }

  .partner-header .top .button svg {
    display: none;
  }
}

/* ============================================================
  Partner
============================================================ */

.partner .wrapper {
  width: 1470px;
  max-width: 100%;
  margin: 0 auto;
  background-image: linear-gradient(to right, #EEE 1px, transparent 1px);
  background-size: calc((100% / 8) - 7.7px) 1px;
  background-position: 30px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  row-gap: 70px;
  padding-top: 130px;
  padding-bottom: 100px;
  padding-left: 30px;
  padding-right: 30px;
}

.partner .wrapper .item {
  position: relative;
  color: inherit;
  text-decoration: none;
}

.partner .wrapper .item:nth-child(3n + 1) {
  grid-column: 1 / 4;
  padding-right: 140px;
  padding-left: 40px;
}

.partner .wrapper .item:nth-child(3n + 2) {
  grid-column: 4 / 7;
  padding-right: 140px;
  padding-left: 40px;
  margin-top: 70px;
}

.partner .wrapper .item:nth-child(3n + 3) {
  grid-column: 7 / 9;
  padding-left: 40px;
  margin-top: 140px;
}

.partner .wrapper .item .plus {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  border-radius: 50px;
  position: absolute;
  left: 0;
  top: 20px;
  translate: -50% -50%;
  transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.partner .wrapper .item:hover .plus {
  width: 40px;
  height: 40px;
}

.partner .wrapper .item .plus::before {
  content: '';
  width: 50px;
  height: 50px;
  border: 1px solid var(--primary);
  border-radius: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.partner .wrapper .item:hover .plus::before {
  width: 60px;
  height: 60px;
}

.partner .wrapper .item .plus::after {
  content: 'En savoir plus';
  position: absolute;
  top: 50%;
  left: -15px;
  translate: 0 -50%;
  opacity: 0;
  transition: all .4s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  width: max-content;
}

.partner .wrapper .item:hover .plus::after {
  translate: -100% -50%;
  opacity: 1;
}

.partner .wrapper .item .plus svg {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.partner .wrapper .item .title {
  font-size: 35px;
  font-weight: 800;
  line-height: 40px;
  margin-top: 0;
  margin-bottom: 20px;
}

.partner .wrapper .item p {
  font-family: "Neue Helvena", sans-serif;
  font-weight: 300;
  line-height: 30px;
  margin-bottom: 20px;
}

.partner .wrapper .item img {
  max-width: 100%;
}

@media (max-width: 1675px) {
  .partner .wrapper .item .plus::after {
    display: none;
  }

  .partner .wrapper .item .plus {
    width: 40px;
    height: 40px;
  }

  .partner .wrapper .item:hover .plus {
    width: 30px;
    height: 30px;
  }

  .partner .wrapper .item .plus::before {
    width: 40px;
    height: 40px;
  }

  .partner .wrapper .item:hover .plus::before {
    width: 45px;
    height: 45px;
  }

  .partner .wrapper .item .plus svg {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 1299px) {
  .partner .wrapper .item:nth-child(3n + 1),
  .partner .wrapper .item:nth-child(3n + 2) {
    padding-right: 80px;
  }
}

@media (max-width: 1024px) {
  .partner .wrapper .item:nth-child(2n + 1) {
    grid-column: 1 / 5;
  }

  .partner .wrapper .item:nth-child(2n + 2) {
    grid-column: 5 / 9;
    margin-top: 0;
  }

  .partner .wrapper .item:nth-child(2n + 1),
  .partner .wrapper .item:nth-child(2n + 2) {
    padding-right: 60px;
  }

  .partner .wrapper .item:nth-child(3n + 3) {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .partner .wrapper {
    background-image: none;
    grid-template-columns: 1fr;
    row-gap: 100px;
    padding-top: 60px;
    padding-bottom: 120px;
  }

  .partner .wrapper .item:nth-child(3n + 1),
  .partner .wrapper .item:nth-child(3n + 2),
  .partner .wrapper .item:nth-child(3n + 3) {
    grid-column: 1;
    padding-left: 0;
    padding-right: 0;
  }

  .partner .wrapper .item .title {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 15px;
  }

  .partner .wrapper .item img {
    max-width: 250px;
  }

  .partner .wrapper .item .plus,
  .partner .wrapper .item:hover .plus {
    position: relative;
    top: 0;
    translate: 0;
    margin-top: 20px;
    width: 22px;
    height: 22px;
  }

  .partner .wrapper .item .plus::before,
  .partner .wrapper .item:hover .plus::before {
    width: 30px;
    height: 30px;
  }

  .partner .wrapper .item .plus svg {
    width: 10px;
    height: 10px;
  }

  .partner .wrapper .item .plus::after,
  .partner .wrapper .item:hover .plus::after {
    display: block;
    left: 100%;
    translate: 15px -50%;
    opacity: 1;
  }
}

/* ============================================================
  Partner single
============================================================ */

.partner-single {
  padding-top: 320px;
  margin-bottom: 80px;
}

.partner-single .wrapper {
  width: 990px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.partner-single .title {
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  margin-top: 0;
  margin-bottom: 30px;
}

.partner-single .content {
  line-height: 30px;
}

.partner-single .content p {
  margin: 30px 0;
}

.partner-single .button {
  display: inline-block;
  color: var(--primary);
  background-color: transparent;
  padding: 10px 30px;
  border: 1px solid var(--primary);
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  position: relative;
  transition: padding .3s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.partner-single .button:hover {
  padding-left: 60px;
  background-color: var(--primary);
  color: white;
}

.partner-single .button svg {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  opacity: 0;
  transition: opacity .4s linear, left .4s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.partner-single .button:hover svg {
  left: 30px;
  opacity: 1;
}

@media (max-width: 1419px) {
  .partner-single {
    padding-top: 175px;
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .partner-single .title {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 15px;
  }

  .partner-single .image {
    max-width: 250px;
  }

  .partner-single .content {
    line-height: 25px;
  }

  .partner-single .content p {
    margin: 25px 0;
  }

  .partner-single .button,
  .partner-single .button:hover {
    padding: 10px 15px;
  }

  .partner-single .button svg {
    display: none;
  }
}

/* ============================================================
  Career header
============================================================ */

.career-header {
  padding-top: 300px;
  padding-bottom: 80px;
}

.career-header .wrapper {
  width: 1230px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.career-header .top {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.career-header .top .title {
  font-size: 25px;
  font-weight: 800;
  line-height: 20px;
  color: var(--primary);
  margin: 0;
}

.career-header .title {
  margin: 0;
  font-size: 95px;
  font-weight: 800;
  line-height: 95px;
}

.career-header .title span {
  display: block;
}

.career-header .title span:first-child {
  position: relative;
  z-index: 1;
  width: fit-content;
  transition: color .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.career-header .title span:first-child::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 0;
  height: 100%;
  background-color: var(--primary);
  transition: width .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.career-header .title span:first-child:hover {
  color: white;
}

.career-header .title span:first-child:hover::before {
  width: 100%;
}

@supports (-webkit-text-stroke: 1px black) {
  .career-header .title .outline {
    -webkit-text-stroke: 1px black;
    color: transparent;
  }
}

.career-header p {
  font-family: "Neue Helvena", sans-serif;
  font-weight: 300;
  margin-top: 30px;
  font-size: 18px;
  line-height: 30px;
  max-width: 930px;
}

.career-header .button {
  font-family: "Neue Helvena", sans-serif;
  font-weight: 600;
  display: inline-block;
  color: var(--primary);
  background-color: transparent;
  padding: 10px 30px;
  border: 1px solid var(--primary);
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  position: relative;
  transition: padding .3s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.career-header .button:hover {
  padding-left: 60px;
  background-color: var(--primary);
  color: white;
}

.career-header .button svg {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  opacity: 0;
  transition: opacity .4s linear, left .4s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.career-header .button:hover svg {
  left: 30px;
  opacity: 1;
}

@media (max-width: 1419px) {
  .career-header {
    padding-top: 180px;
  }
}

@media (max-width: 1299px) {
  .career-header .content {
    padding-left: 0;
  }

  .career-header .title {
    font-size: 70px;
    line-height: 70px;
  }

  .career-header p {
    font-size: 16px;
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .career-header .top {
    margin-bottom: 20px;
  }

  .career-header .top .title {
    font-size: 16px;
  }

  .career-header .title {
    font-size: 35px;
    line-height: 35px;
  }

  .career-header .button,
  .career-header .button:hover {
    padding: 10px 15px;
  }

  .career-header .button svg {
    display: none;
  }
}

/* ============================================================
  Contact
============================================================ */

.contact {
  padding-top: 300px;
  padding-bottom: 100px;
  min-height: 100vh;
}

.contact .wrapper {
  width: 1410px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 30px;
}

.contact .content {
  padding-left: 100px;
}

.contact .title {
  font-size: 95px;
  font-weight: 800;
  line-height: 95px;
  margin-top: 0;
  margin-bottom: 30px;
}

.contact .title span {
  display: block;
}

.contact .title .outline {
  font-size: 75px;
  line-height: 75px;
}

@supports (-webkit-text-stroke: 1px black) {
  .contact .title .outline {
    -webkit-text-stroke: 1px black;
    color: transparent;
  }
}

.contact .content p {
  font-family: 'Neue Helvena', sans-serif;
  font-weight: 300;
  line-height: 30px;
  max-width: 330px;
}

.contact .content small {
  font-size: 12px;
  font-style: italic;
}

@media (max-width: 1439px) {
  .contact .wrapper {
    padding: 0 30px;
  }

  .contact .content {
    padding-left: 0;
  }
}

@media (max-width: 1419px) {
  .contact {
    padding-top: 180px;
  }
}

@media (max-width: 1199px) {
  .contact .wrapper {
    grid-template-columns: 1.5fr 1fr;
  }

  .contact .title {
    font-size: 60px;
    line-height: 60px;
  }

  .contact .title .outline {
    font-size: 50px;
    line-height: 50px;
  }
}

@media (max-width: 991px) {
  .contact .wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 575px) {
  .contact .title,
  .contact .title .outline {
    font-size: 35px;
    line-height: 35px;
  }
}

/* ============================================================
  Contact popup
============================================================ */

.contact-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0 0 0 / .7);
  display: flex;
  justify-content: center;
  z-index: 20;
  padding: 30px 15px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-popup.active {
  opacity: 1;
  visibility: visible;
}

.contact-popup .wrapper {
  width: 590px;
  height: fit-content;
  max-width: 100%;
  padding: 0 30px;
  border-radius: 25px;
  background-color: white;
  padding: 30px 70px 50px 70px;
  position: relative;
}

.contact-popup .title {
  font-size: 50px;
  font-weight: 800;
  line-height: 50px;
  margin-top: 0;
  margin-bottom: 30px;
}

.contact-popup .title .outline {
  font-size: 40px;
  line-height: 40px;
}

.contact-popup .close {
  width: 40px;
  height: 40px;
  border: 1px solid black;
  border-radius: 40px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="19.594" height="19.094" viewBox="0 0 19.594 19.094"><rect width="25" height="2" transform="translate(1.916) rotate(45)"/><rect width="25" height="2" transform="translate(19.092 1.416) rotate(135)"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

@supports (-webkit-text-stroke: 1px black) {
  .contact-popup .title .outline {
    -webkit-text-stroke: 1px black;
    color: transparent;
  }
}

@media (max-width: 767px) {
  .contact-popup {
    display: block;
  }

  .contact-popup .wrapper {
    padding: 30px 15px;
    border-radius: 15px;
  }

  .contact-popup .title,
  .contact-popup .title .outline {
    font-size: 30px;
    line-height: 30px;
  }
}

/* ============================================================
  Form
============================================================ */

.form {
  max-width: 600px;
}

.form label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--grey-2);
  border-radius: 8px;
  margin-bottom: 25px;
  font-family: 'Visby CF', sans-serif;
  font-size: 16px;
  padding: 10px 15px;
}

.form .checkbox {
  font-size: 14px;
  font-weight: 400;
}

.form .checkbox input {
  width: auto;
}

.form .submit {
  font-family: 'Neue Helvena', sans-serif;
  width: 100%;
  padding: 15px;
  border: 1px solid var(--primary);
  border-radius: 50px;
  background-color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  cursor: pointer;
  transition: all .4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.form .submit:hover {
  background-color: white;
  color: var(--primary);
}

.form .submit:hover svg rect {
  transition: all .4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.form .submit:hover svg rect {
  fill: var(--primary);
  stroke: var(--primary);
}

.form-message {
  margin-top: 15px;
}

/* ============================================================
  Service slider
============================================================ */

.service-slider {
  position: relative;
}

.service-slider .slider {
  max-height: 800px;
  height: 80vh;
  background: var(--primary);
  background-image: url('../img/texture/plus.png');
  overflow: hidden;
}

.service-slider .slider > .item {
  padding: 130px 0;
  color: white;
  height: 100%;
}

.service-slider .wrapper {
  width: 1230px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 2fr 3fr;
}

.service-slider .title {
  font-size: 80px;
  line-height: 80px;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 15px;
}

@supports (-webkit-text-stroke: 1px white) {
  .service-slider .title .outline {
    -webkit-text-stroke: 1px white;
    color: transparent;
  }
}

.service-slider p {
  line-height: 25px;
  margin-top: 15px;
  margin-bottom: 30px;
  font-family: 'Neue Helvena', sans-serif;
  font-weight: 300;
}

.service-slider p a {
  color: inherit;
}

.service-slider .button {
  font-family: 'Neue Helvena', sans-serif;
  font-weight: 600;
  display: inline-block;
  color: var(--primary);
  background-color: white;
  margin-bottom: 30px;
  padding: 10px 30px;
  border: 1px solid white;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  position: relative;
  transition: padding .3s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.service-slider .button:hover {
  padding-left: 60px;
}

.service-slider .button svg {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  opacity: 0;
  transition: opacity .4s linear, left .4s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.service-slider .button:hover svg {
  left: 30px;
  opacity: 1;
}

.service-slider .list {
  max-width: 350px;
}

.service-slider .list .item {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 19px;
  font-weight: 700;
  color: inherit;
  text-decoration: none;
  transition: translate .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-slider .list .item::after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24.741" height="24.741" viewBox="0 0 24.741 24.741"><g id="Groupe_614" data-name="Groupe 614" transform="translate(-551.024 -1917.914)"><path id="Tracé_850" data-name="Tracé 850" d="M27.795,37.637a11.87,11.87,0,1,1,11.87-11.87,11.884,11.884,0,0,1-11.87,11.87m0-23.283A11.413,11.413,0,1,0,39.208,25.767,11.426,11.426,0,0,0,27.795,14.354" transform="translate(535.6 1904.518)" fill="%23fff" stroke="%23fff" stroke-width="1"/><g id="Groupe_504" data-name="Groupe 504" transform="translate(558.109 1925.794)"><rect id="Rectangle_638" data-name="Rectangle 638" width="0.508" height="6.362" transform="translate(9.048)" fill="%23fff" stroke="%23fff" stroke-width="1"/><rect id="Rectangle_636" data-name="Rectangle 636" width="12.851" height="0.508" transform="translate(0 9.198) rotate(-45)" fill="%23fff" stroke="%23fff" stroke-width="1"/><rect id="Rectangle_637" data-name="Rectangle 637" width="6.362" height="0.508" transform="translate(3.195)" fill="%23fff" stroke="%23fff" stroke-width="1"/></g></g></svg>');
  transition: rotate .4s cubic-bezier(0.165, 0.84, 0.44, 1);
  line-height: 0;
}

.service-slider .list .item:hover {
  translate: 10px 0;
}

.service-slider .list .item:hover::after {
  rotate: 45deg;
}

.service-slider .image-slider {
  position: absolute;
  top: 200px;
  right: calc((100vw - 1170px) / 2);
  width: 690px;
  height: 656px;
}

.service-slider .image-slider::before {
  content: '';
  width: 60px;
  height: 60px;
  background-color: white;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="26.205" height="26.205" viewBox="0 0 26.205 26.205"><line y2="26.205" transform="translate(14.038)" fill="none" stroke="%23000" stroke-width="2"/><line x2="26.205" transform="translate(0 13.102)" fill="none" stroke="%23000" stroke-width="2"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  position: absolute;
  top: -30px;
  left: -30px;
  z-index: 1;
}

.service-slider .image-slider .slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
}

.service-slider .image-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* @media (min-width: 1230px) {
  .service-slider .image-slider {
    right: 250px;
  }
} */

@media (min-width: 1025px) {
  .service-slider .scroll {
    display: none;
  }

  .service-slider .slider .image {
    display: none;
  }
}

@media (max-width: 1024px) {
  .service-slider {
    position: relative;
  }

  .service-slider .scroll {
    position: absolute;
    top: 25px;
    left: 50%;
    translate: -50% 0;
  }

  @keyframes sliderScrollHand {
    0% {
      translate: -15px 0;
      rotate: -15deg;
    }
    50% {
      translate: 15px 0;
      rotate: 15deg;
    }

    100% {
      translate: -15px 0;
      rotate: -15deg;
    }
  }

  .service-slider .scroll svg path {
    transform-origin: center;
    scale: .9;
    animation: sliderScrollHand 3s infinite cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .service-slider .image-slider {
    display: none;
  }

  .service-slider .slider {
    overflow-x: auto;
    overflow-y: visible;
    display: flex;
    flex-wrap: nowrap;
    height: auto;
    max-height: initial;
  }

  .service-slider .slider > .item {
    padding-top: 90px;
    padding-bottom: 30px;
    width: 100vw;
    flex-shrink: 0;
  }

  .service-slider .slider .image {
    position: relative;
    width: 100%;
    margin-top: 60px;
    /* translate: 0 60px; */
  }

  .service-slider .slider .image::before {
    content: '';
    width: 45px;
    height: 45px;
    background-color: white;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20.422" height="20.422" viewBox="0 0 20.422 20.422"><line y2="20.422" transform="translate(10.94)" fill="none" stroke="%23000" stroke-width="2"/><line x2="20.422" transform="translate(0 10.211)" fill="none" stroke="%23000" stroke-width="2"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    position: absolute;
    top: -22.5px;
    left: -22.5px;
  }

  .service-slider .slider .image img {
    width: 100%;
    height: auto;
  }

  .service-slider .wrapper {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .service-slider .title {
    font-size: 40px;
    line-height: 40px;
  }
}

@media (max-width: 767px) {
  .service-slider .button,
  .service-slider .button:hover {
    padding: 10px 15px;
  }

  .service-slider .button svg {
    display: none;
  }
}

/* ============================================================
  404
============================================================ */

.error404__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  padding: 50px 30px;
  text-align: center;
  color: #fff;
  background: var(--primary);
  overflow: hidden;
}

.error404__time {
  position: absolute;
  top: 20vh;
  left: 50%;
  font-size: 25px;
  font-weight: 800;
  line-height: 30px;
  letter-spacing: 0.1em;
  color: var(--green-1);
  transform: translateX(-50%);
}

.error404__title {
  font-size: 120px;
  font-weight: 800;
  line-height: 100px;
  margin-bottom: 50px;
}

.error404__title span {
  display: block;
  font-size: 80px;
  color: white;
}

@supports (-webkit-text-stroke: 1px white) {
  .error404__title span {
    -webkit-text-stroke: 1px white;
    color: transparent;
  }
}

.error404 .button {
  display: inline-block;
  color: var(--primary);
  background-color: white;
  padding: 10px 30px;
  border: 1px solid white;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  position: relative;
  transition: padding .3s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.error404 .button:hover {
  padding-left: 60px;
}

.error404 .button svg {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  opacity: 0;
  transition: opacity .4s linear, left .4s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.error404 .button:hover svg {
  left: 30px;
  opacity: 1;
}

.error404__clock {
  position: absolute;
  top: 50%;
  left: auto;
  right: auto;
  z-index: -1;
  height: calc(80% - 100px);
  translate: 0 -50%;
}

.error404__hour {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  height: calc(80% - 100px);
  transform-origin: center center;
  animation: hourClock 1800s linear infinite;
}

.error404__minute {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  height: calc(80% - 100px);
  transform-origin: center center;
  animation: minuteClock 30s linear infinite;
}

@keyframes hourClock {
  0% {
    transform: translate(-50%, -50%) rotate(120deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(479deg);
  }
}

@keyframes minuteClock {
  0% {
    transform: translate(-50%, -50%) rotate(150deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(509deg);
  }
}

@media (max-width: 1024px) {
  .error404__title {
    font-size: 40px;
    line-height: 50px;
  }
  .error404__title span {
    font-size: 35px;
    line-height: 45px;
  }
}

@media (max-width: 767px) {
  .error404 .button,
  .error404 .button:hover {
    padding: 10px 15px;
  }

  .error404 .button svg {
    display: none;
  }
}

/* ============================================================
  Blog highlight
============================================================ */

.blog-highlight {
  margin-bottom: 180px;
}

.blog-highlight .wrapper {
  width: 1230px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.blog-highlight .item {
  color: black;
  text-decoration: none;
}

.blog-highlight .item .image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.blog-highlight .item .image::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  mix-blend-mode: screen;
  translate: -50% -50%;
  scale: 0;
  transition: scale .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-highlight .item .image:hover::before {
  scale: 1;
}

.blog-highlight .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1.2;
  transition: translate .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-highlight .item .image:hover img {
  translate: 30px 0;
}

.blog-highlight .item .image .button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 25%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 60px;
  border-radius: 40px;
  background-color: white;
  font-size: 18px;
  font-weight: 700;
  translate: -50% -50%;
  opacity: 0;
  transition:
    left .5s cubic-bezier(0.165, 0.84, 0.44, 1),
    opacity .4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-highlight .item .image .button::after {
  content: url('data:image/svg+xml,<svg id="Groupe_470" data-name="Groupe 470" xmlns="http://www.w3.org/2000/svg" width="18.092" height="18.091" viewBox="0 0 18.092 18.091"><g id="Groupe_525" data-name="Groupe 525"><rect id="Rectangle_614" data-name="Rectangle 614" width="24.328" height="0.962" transform="translate(0 17.411) rotate(-45)"/><rect id="Rectangle_615" data-name="Rectangle 615" width="12.043" height="0.962" transform="translate(6.049)"/><rect id="Rectangle_616" data-name="Rectangle 616" width="0.962" height="12.043" transform="translate(17.13)"/></g></svg>');
  transition: rotate .3s cubic-bezier(0.165, 0.84, 0.44, 1);
  line-height: 0;
}

.blog-highlight .item .image:hover .button {
  left: 50%;
  opacity: 1;
}

.blog-highlight .item .image .button:hover::after {
  rotate: 45deg;
}

.blog-highlight .item .tags {
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
  row-gap: 15px;
}

.blog-highlight .item .tag {
  font-family: "Neue Helvena", sans-serif;
  font-weight: 300;
  font-size: 14px;
  display: inline-block;
  padding: 8px 25px;
  border: 1px solid;
  border-radius: 20px;
}

.blog-highlight .item .title {
  font-size: 30px;
  font-weight: 800;
  margin-top: 20px;
  margin-bottom: 0;
}

.blog-highlight .item .mobile-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 60px;
  border: 1px solid;
  border-radius: 40px;
  background-color: white;
  font-size: 18px;
  font-weight: 700;
  margin-top: 20px;
}

.blog-highlight .item .mobile-button::after {
  content: url('data:image/svg+xml,<svg id="Groupe_470" data-name="Groupe 470" xmlns="http://www.w3.org/2000/svg" width="18.092" height="18.091" viewBox="0 0 18.092 18.091"><g id="Groupe_525" data-name="Groupe 525"><rect id="Rectangle_614" data-name="Rectangle 614" width="24.328" height="0.962" transform="translate(0 17.411) rotate(-45)"/><rect id="Rectangle_615" data-name="Rectangle 615" width="12.043" height="0.962" transform="translate(6.049)"/><rect id="Rectangle_616" data-name="Rectangle 616" width="0.962" height="12.043" transform="translate(17.13)"/></g></svg>');
  transition: rotate .3s cubic-bezier(0.165, 0.84, 0.44, 1);
  line-height: 0;
}

@media (min-width: 768px) {
  .blog-highlight .item .mobile-button {
    display: none;
  }
}

@media (max-width: 767px) {
  .blog-highlight .wrapper {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .blog-highlight .item .image::before,
  .blog-highlight .item .image .button {
    display: none;
  }

  .blog-highlight .item .image:hover img {
    translate: none;
  }

  .blog-highlight .item .title {
    font-size: 20px;
  }
}

/* ============================================================
  Blog category highlight
============================================================ */

.blog-category-highlight {
  margin: 180px 0;
}

.blog-category-highlight.page-header {
  margin: 0;
  padding-top: 300px;
  padding-bottom: 100px;
}

.blog-category-highlight .wrapper {
  width: 1470px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.blog-category-highlight .head {
  width: 1170px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  column-gap: 60px;
  row-gap: 15px;
  margin-bottom: 50px;
}

.blog-category-highlight .head .title {
  font-size: 80px;
  font-weight: 800;
  margin: 0;
}

.blog-category-highlight .head .button {
  color: var(--primary);
  padding: 10px 30px;
  border: 1px solid;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  position: relative;
  transition: padding .3s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.blog-category-highlight .head .button:hover {
  padding-left: 50px;
}

.blog-category-highlight .head .button svg {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  opacity: 0;
  transition: opacity .4s linear, left .4s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.blog-category-highlight .head .button:hover svg {
  left: 20px;
  opacity: 1;
}

.blog-category-highlight .head .button svg rect {
  fill: var(--primary);
  stroke: var(--primary);
}

.blog-category-highlight .head p {
  font-size: 20px;
  font-weight: 700;
  flex: 0 1 100%;
  margin: 0;
}

.blog-category-highlight .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.blog-category-highlight .item {
  color: black;
  text-decoration: none;
}

.blog-category-highlight .item .image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.blog-category-highlight .item .image::before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  mix-blend-mode: screen;
  translate: -50% -50%;
  scale: 0;
  transition: scale .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-category-highlight .item .image:hover::before {
  scale: 1;
}

.blog-category-highlight .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1.2;
  transition: translate .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-category-highlight .item .image:hover img {
  translate: 30px 0;
}

.blog-category-highlight .item .image .button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 25%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 60px;
  border-radius: 40px;
  background-color: white;
  font-size: 18px;
  font-weight: 700;
  translate: -50% -50%;
  opacity: 0;
  width: max-content;
  transition:
    left .5s cubic-bezier(0.165, 0.84, 0.44, 1),
    opacity .4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-category-highlight .item .image .button::after {
  content: url('data:image/svg+xml,<svg id="Groupe_470" data-name="Groupe 470" xmlns="http://www.w3.org/2000/svg" width="18.092" height="18.091" viewBox="0 0 18.092 18.091"><g id="Groupe_525" data-name="Groupe 525"><rect id="Rectangle_614" data-name="Rectangle 614" width="24.328" height="0.962" transform="translate(0 17.411) rotate(-45)"/><rect id="Rectangle_615" data-name="Rectangle 615" width="12.043" height="0.962" transform="translate(6.049)"/><rect id="Rectangle_616" data-name="Rectangle 616" width="0.962" height="12.043" transform="translate(17.13)"/></g></svg>');
  transition: rotate .3s cubic-bezier(0.165, 0.84, 0.44, 1);
  line-height: 0;
}

.blog-category-highlight .item .image:hover .button {
  left: 50%;
  opacity: 1;
}

.blog-category-highlight .item .image .button:hover::after {
  rotate: 45deg;
}

.blog-category-highlight .item .tags {
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
  row-gap: 15px;
}

.blog-category-highlight .item .tag {
  font-family: "Neue Helvena", sans-serif;
  font-weight: 300;
  font-size: 14px;
  display: inline-block;
  padding: 8px 25px;
  border: 1px solid;
  border-radius: 20px;
}

.blog-category-highlight .item .title {
  font-size: 30px;
  font-weight: 800;
  margin-top: 20px;
  margin-bottom: 0;
}

.blog-category-highlight .item .mobile-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 60px;
  border: 1px solid;
  border-radius: 40px;
  background-color: white;
  font-size: 18px;
  font-weight: 700;
  margin-top: 20px;
}

.blog-category-highlight .item .mobile-button::after {
  content: url('data:image/svg+xml,<svg id="Groupe_470" data-name="Groupe 470" xmlns="http://www.w3.org/2000/svg" width="18.092" height="18.091" viewBox="0 0 18.092 18.091"><g id="Groupe_525" data-name="Groupe 525"><rect id="Rectangle_614" data-name="Rectangle 614" width="24.328" height="0.962" transform="translate(0 17.411) rotate(-45)"/><rect id="Rectangle_615" data-name="Rectangle 615" width="12.043" height="0.962" transform="translate(6.049)"/><rect id="Rectangle_616" data-name="Rectangle 616" width="0.962" height="12.043" transform="translate(17.13)"/></g></svg>');
  transition: rotate .3s cubic-bezier(0.165, 0.84, 0.44, 1);
  line-height: 0;
}

@media (min-width: 768px) {
  .blog-category-highlight .item .mobile-button {
    display: none;
  }
}

@media (max-width: 767px) {
  .blog-category-highlight.page-header {
    padding-top: 180px;
    padding-bottom: 70px;
  }

  .blog-category-highlight .head .title {
    font-size: 45px;
  }

  .blog-category-highlight .grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .blog-category-highlight .item .image::before,
  .blog-category-highlight .item .image .button {
    display: none;
  }

  .blog-category-highlight .item .title {
    font-size: 20px;
  }

  .blog-category-highlight .head .button,
  .blog-category-highlight .head .button:hover {
    padding: 10px 15px;
  }

  .blog-category-highlight .head .button svg {
    display: none;
  }
}

/* ============================================================
  Blog single
============================================================ */

.blog-single {
  padding-top: 300px;
}

.blog-single .head {
  margin-top: 0;
  margin-bottom: 30px;
}

.blog-single .head .wrapper {
  width: 990px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.blog-single .head .title {
  font-size: 40px;
  margin-top: 0;
  margin-bottom: 30px;
  line-height: 1.2em;
}

.blog-single .head .chapo {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2em;
}

.blog-single .cover {
  width: 1230px;
  max-width: 100%;
  margin: 30px auto 40px auto;
  padding: 0 30px;
  aspect-ratio: 1/ 0.6;
}

.blog-single .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-single .content {
  line-height: 2em;
}

.blog-single .content .wrapper {
  width: 990px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.blog-single .content h2 {
  font-size: 24px;
  line-height: 1.2em;
  margin-top: 70px;
  margin-bottom: 35px;
}

.blog-single .content .image {
  width: 100%;
  margin: 35px 0;
  aspect-ratio: 1/ 0.6;
}

.blog-single .content img {
  max-width: 100%;
  margin: 35px 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-single blockquote {
  margin: 70px 0px 70px 0px;
  padding: 0px 0px 0px 50px;
  border-left: 2px solid var(--primary);
  color: var(--primary);
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2em;
  max-width: 75%;
}

.blog-single .bottom {
  margin-top: 100px;
  margin-bottom: 70px;
  padding-top: 130px;
  padding-bottom: 115px;
  background-color: var(--primary);
  background-image: url('../img/texture/plus.png');
  text-align: center;
}

.blog-single .bottom .wrapper {
  width: 1230px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.blog-single .bottom .title {
  font-size: 80px;
  font-weight: 800;
  line-height: 1em;
  margin-top: 0;
  margin-bottom: 30px;
  color: white;
}

.blog-single .bottom .title span {
  display: block;
}

@supports (-webkit-text-stroke: 1px white) {
  .blog-single .bottom .title .outline {
    -webkit-text-stroke: 1px white;
    color: transparent;
  }
}

.blog-single .bottom .button {
  color: var(--primary);
  background-color: white;
  padding: 10px 30px;
  border: 1px solid;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  position: relative;
  transition: padding .3s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.blog-single .bottom .button:hover {
  padding-left: 50px;
}

.blog-single .bottom .button svg {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  opacity: 0;
  transition: opacity .4s linear, left .4s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.blog-single .bottom .button:hover svg {
  left: 20px;
  opacity: 1;
}

.blog-single .bottom .button svg rect {
  fill: var(--primary);
  stroke: var(--primary);
}

@media (max-width: 1419px) {
  .blog-single {
    padding-top: 180px;
  }
}

@media (max-width: 767px) {
  .blog-single .head .title {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .blog-single .head .chapo {
    font-size: 16px;
  }

  .blog-single .content {
    line-height: 1.4em;
  }

  .blog-single .content h2 {
    margin-top: 50px;
    margin-bottom: 30px;
  }

  .blog-single blockquote {
    margin-top: 30px;
    margin-bottom: 30px;
    padding-left: 30px;
    font-size: 25px;
    max-width: 100%;
  }

  .blog-single .bottom {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .blog-single .bottom .title {
    font-size: 40px;
  }

  .blog-single .bottom .button,
  .blog-single .bottom .button:hover {
    padding: 10px 15px;
  }

  .blog-single .bottom .button svg {
    display: none;
  }
}

/* ============================================================
  SEO
============================================================ */

.seo {
  padding-top: 300px;
}

.seo .wrapper {
  width: 1230px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.seo .head {
  margin-bottom: 75px;
}

.seo .head .button {
  display: inline-block;
  color: var(--primary);
  background-color: transparent;
  padding: 10px 30px;
  border: 1px solid var(--primary);
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  position: relative;
  transition: padding .3s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.seo .head .button:hover {
  padding-left: 60px;
}

.seo .head .button svg {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  opacity: 0;
  transition: opacity .4s linear, left .4s cubic-bezier(0.23, 0.6, 0.34, 1);
}

.seo .head .button:hover svg {
  left: 30px;
  opacity: 1;
}

.seo .head .button svg rect {
  fill: var(--primary);
  stroke: var(--primary);
}

.seo .head .title {
  font-size: 90px;
  font-weight: 800;
  line-height: 1em;
  margin-top: 10px;
  margin-bottom: 0;
}

.seo .head .title span {
  display: block;
}

@supports (-webkit-text-stroke: 1px black) {
  .seo .head .title span.outline {
    -webkit-text-stroke: 1px black;
    color: transparent;
  }
}

.seo .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 100px;
  margin-bottom: 100px;
}

.seo .grid .item {
  line-height: 1.5em;
}

.seo .grid .item .title {
  font-size: 35px;
  font-weight: 800;
  line-height: 40px;
  margin-top: 0;
  margin-bottom: 45px;
}

.seo .grid .item .title::before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary);
  border-radius: 20px;
  background: radial-gradient(var(--primary) 0%, var(--primary) 50%, white 50%, white 100%);
  margin-bottom: 10px;
}

.seo .grid .item figure {
  margin: 30px 0 0 0;
  max-width: 100%;
  position: relative;
}

.seo .grid .item img {
  max-width: 100%;
}

.seo .grid .item figcaption {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 12px;
}

@media (max-width: 767px) {
  .seo {
    padding-top: 180px;
  }

  .seo .head {
    margin-bottom: 30px;
  }

  .seo .head .button,
  .seo .head .button:hover {
    padding: 10px 15px;
  }

  .seo .head .button svg {
    display: none;
  }

  .seo .head .title {
    font-size: 35px;
    margin-top: 20px;
  }

  .seo .grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .seo .grid .item .title {
    font-size: 25px;
    margin-bottom: 15px;
    line-height: 30px;
  }

  .seo .grid .item .title::before {
    width: 30px;
    height: 30px;
  }
}

/* ============================================================
  Livre blanc
============================================================ */

.livre-blanc {
  padding-top: 270px;
}

.livre-blanc .head {
  margin-bottom: 100px;
}

.livre-blanc .head .wrapper {
  width: 1230px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.livre-blanc .head .title {
  font-size: 90px;
  font-weight: 800;
  line-height: 1em;
  margin-top: 0;
  margin-bottom: 30px;
}

.livre-blanc .head p {
  font-size: 20px;
  font-weight: 700;
}

.livre-blanc .head img {
  display: block;
  width: 100%;
  margin-top: 60px;
}

.livre-blanc .grid .wrapper {
  width: 1470px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  margin-top: 100px;
  margin-bottom: 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 60px;
  row-gap: 90px;
}

.livre-blanc .grid .item {
  position: relative;
  z-index: 1;
  text-decoration: none;
}

.livre-blanc .grid .item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(0 0 0 / .4);
  scale: 0;
  translate: -50% -50%;
  transition: scale .4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.livre-blanc .grid .item:hover::before {
  scale: 1;
}

.livre-blanc .grid .item img {
  width: 100%;
}

.livre-blanc .grid .item .button {
  position: absolute;
  top: 50%;
  left: 25%;
  z-index: 3;
  width: max-content;
  padding: 12px 30px;
  background: white;
  border-radius: 30px;
  color: black;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 20px;
  translate: -50% -50%;
  opacity: 0;
  transition:
    left .6s cubic-bezier(0.165, 0.84, 0.44, 1),
    opacity .4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.livre-blanc .grid .item:hover .button {
  left: 50%;
  opacity: 1;
}

.livre-blanc .grid .item .button::after {
  content: url('data:image/svg+xml,<svg id="Groupe_470" data-name="Groupe 470" xmlns="http://www.w3.org/2000/svg" width="18.092" height="18.091" viewBox="0 0 18.092 18.091"><g id="Groupe_525" data-name="Groupe 525"><rect id="Rectangle_614" data-name="Rectangle 614" width="24.328" height="0.962" transform="translate(0 17.411) rotate(-45)"/><rect id="Rectangle_615" data-name="Rectangle 615" width="12.043" height="0.962" transform="translate(6.049)"/><rect id="Rectangle_616" data-name="Rectangle 616" width="0.962" height="12.043" transform="translate(17.13)"/></g></svg>');
  line-height: 0;
  transition: rotate .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.livre-blanc .grid .item .button:hover::after {
  rotate: 45deg;
}

@media (max-width: 1419px) {
  .livre-blanc {
    padding-top: 180px;
  }
}

@media (max-width: 767px) {
  .livre-blanc .head {
    margin-bottom: 35px;
  }

  .livre-blanc .head .title {
    font-size: 35px;
    margin-bottom: 15px;
  }

  .livre-blanc .head p {
    font-size: 16px;
  }

  .livre-blanc .head img {
    display: none;
  }

  .livre-blanc .grid .wrapper {
    grid-template-columns: 1fr;
    row-gap: 60px;
    margin-top: 40px;
  }

  .livre-blanc .grid .item {
    max-width: 260px;
  }

  .livre-blanc .grid .item::before {
    display: none;
  }

  .livre-blanc .grid .item .button {
    position: unset;
    opacity: 1;
    translate: 0;
    color: var(--primary);
    border: 1px solid;
    margin-top: 15px;
    font-size: 16px;
  }

  .livre-blanc .grid .item .button::after {
    content: url('data:image/svg+xml,<svg id="Groupe_470" data-name="Groupe 470" xmlns="http://www.w3.org/2000/svg" width="18.092" height="18.091" viewBox="0 0 18.092 18.091"><g id="Groupe_525" data-name="Groupe 525"><rect id="Rectangle_614" data-name="Rectangle 614" width="24.328" height="0.962" transform="translate(0 17.411) rotate(-45)" fill="%23001dfd"/><rect id="Rectangle_615" data-name="Rectangle 615" width="12.043" height="0.962" transform="translate(6.049)" fill="%23001dfd"/><rect id="Rectangle_616" data-name="Rectangle 616" width="0.962" height="12.043" transform="translate(17.13)" fill="%23001dfd"/></g></svg>');
  }
}

/* ============================================================
  livre blanc single
============================================================ */

.livre-blanc-single {
  padding-top: 300px;
  padding-bottom: 75px;
}

.livre-blanc-single .wrapper {
  width: 1330px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 6fr 1fr 4fr;
  column-gap: 30px;
  row-gap: 70px;
}

.livre-blanc-single .wrapper > img {
  grid-column: 1/4;
  width: 100%;
}

.livre-blanc-single .content {
  grid-column: 1;
}

.livre-blanc-single .content .title {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 40px;
  line-height: 1em;
}

.livre-blanc-single .content .chapo {
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 60px;
}

.livre-blanc-single .content .subtitle {
  font-size: 25px;
  line-height: 1em;
  margin-top: 60px;
  margin-bottom: 25px;
}

.livre-blanc-single .content p {
  line-height: 1.5em;
}

.livre-blanc-single .form {
  grid-column: 3;
}

.livre-blanc-single .form .title {
  font-size: 20px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 15px;
}

@media (max-width: 1419px) {
  .livre-blanc-single {
    padding-top: 180px;
  }
}

@media (max-width: 767px) {
  .livre-blanc-single .wrapper {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  .livre-blanc-single .wrapper > img,
  .livre-blanc-single .content,
  .livre-blanc-single .form {
    grid-column: 1;
  }

  .livre-blanc-single .content .title {
    font-size: 25px;
    margin-bottom: 15px;
  }

  .livre-blanc-single .content .chapo {
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 40px;
  }

  .livre-blanc-single .content .subtitle {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
}

/* ============================================================
  Candidate
============================================================ */

.candidate {
  padding-top: 300px;
  padding-bottom: 100px;
  min-height: 100vh;
}

.candidate .wrapper {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.candidate .title {
  font-size: 95px;
  font-weight: 800;
  line-height: 95px;
  margin-top: 0;
  margin-bottom: 30px;
}

.candidate .title span {
  display: block;
}

.candidate .title .outline {
  font-size: 75px;
  line-height: 75px;
}

@supports (-webkit-text-stroke: 1px black) {
  .candidate .title .outline {
    -webkit-text-stroke: 1px black;
    color: transparent;
  }
}

.candidate .form .title {
  font-size: 25px;
  line-height: 1em;
  margin-top: 60px;
  margin-bottom: 30px;
}

@media (max-width: 1419px) {
  .candidate {
    padding-top: 180px;
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .candidate .title,
  .candidate .title .outline {
    font-size: 35px;
    line-height: 35px;
  }
}

/* ============================================================
  Glossaire
============================================================ */

.glossaire {
  padding-top: 300px;
  padding-bottom: 100px;
}

.glossaire .wrapper {
  width: 1230px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.glossaire .head {
  margin-bottom: 45px;
}

.glossaire .head .title {
  font-size: 90px;
  font-weight: 800;
  line-height: 1em;
  margin-top: 0;
  margin-bottom: 30px;
}

.glossaire .head p {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5em;
  margin: 0;
  max-width: 600px;
}

.glossaire .nav {
  margin-top: 45px;
  margin-bottom: 45px;
}

.glossaire .nav .title {
  font-size: 30px;
  line-height: 1em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
}

.glossaire .nav .search {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.glossaire .nav .search input {
  width: 600px;
  max-width: calc(100% - 40px);
  padding: 12px 30px;
  border-width: 1px 0 1px 1px;
  border-style: solid;
  border-color: var(--grey-2);
  border-radius: 8px 0 0 8px;
  font-family: 'Visby CF', sans-serif;
}

.glossaire .nav .search button {
  height: 42px;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 0 8px 8px 0;
  padding: 5px 15px;
  cursor: pointer;
}

.glossaire .nav .filter {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.glossaire .nav .filter a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: 1px solid var(--grey-2);
  border-radius: 4px;
  font-family: 'Visby CF', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  color: black;
  text-decoration: none;
}

.glossaire .nav .filter a:hover {
  background-color: black;
  color: white;
  border-color: black;
}

.glossaire .content .item {
  padding-bottom: 40px;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--grey-2);
}

.glossaire .content .item.not-found {
  display: none;
}

.glossaire .content .item .title {
  font-size: 45px;
  line-height: 1em;
  margin-top: 0;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.glossaire .content .item .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 60px;
  row-gap: 20px;
}

.glossaire .content .item .grid .link {
  color: black;
  text-decoration: none;
}

.glossaire .content .item .grid .link span {
  display: inline-block;
  margin-right: 20px;
}

.glossaire .content .item .grid .link::after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="21.12" height="14.626" viewBox="0 0 21.12 14.626"><g id="Groupe_435" data-name="Groupe 435" transform="translate(10.312 -3.142) rotate(45)"><rect id="Rectangle_611" data-name="Rectangle 611" width="19.882" height="0.786" transform="translate(0 14.229) rotate(-45)" stroke="%23000" stroke-width="0.5"/><rect id="Rectangle_612" data-name="Rectangle 612" width="9.842" height="0.786" transform="translate(4.943 0)" stroke="%23000" stroke-width="0.5"/><rect id="Rectangle_613" data-name="Rectangle 613" width="0.786" height="9.842" transform="translate(13.999 0)" stroke="%23000" stroke-width="0.5"/></g></svg>');
}

@media (max-width: 1419px) {
  .glossaire {
    padding-top: 180px;
    padding-bottom: 75px;
  }
}

@media (max-width: 767px) {
  .glossaire .head .title {
    font-size: 35px;
    margin-bottom: 15px;
  }

  .glossaire .nav {
    margin-bottom: 30px;
  }

  .glossaire .nav .title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .glossaire .content .item {
    padding-bottom: 30px;
    margin-bottom: 40px;
  }

  .glossaire .content .item .grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
  Glossaire single
============================================================ */

.glossaire-single {
  padding-top: 300px;
  margin-bottom: 100px;
}

.glossaire-single .head {
  width: 990px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.glossaire-single .head .title {
  font-size: 40px;
  line-height: 1.2em;
  margin-top: 0;
  margin-bottom: 30px;
} 

.glossaire-single .head p {
  font-size: 20px;
  font-weight: 700;
}

.glossaire-single .cover {
  display: block;
  width: 1220px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  margin-top: 30px;
  margin-bottom: 70px;
}

.glossaire-single .content {
  width: 990px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  line-height: 1.5em;
}

.glossaire-single .content .title {
  font-size: 25px;
  line-height: 1em;
  margin-top: 60px;
  margin-bottom: 25px;
}

.glossaire-single .content ul li + li,
.glossaire-single .content ol li + li {
  margin-top: 15px;
}

@media (max-width: 1419px) {
  .glossaire-single {
    padding-top: 180px;
    margin-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .glossaire-single .head .title {
    font-size: 25px;
    margin-bottom: 15px;
  }

  .glossaire-single .head p {
    font-size: 16px;
  }

  .glossaire-single .cover {
    display: none;
  }

  .glossaire-single .content .title {
    font-size: 20px;
    margin-top: 45px;
    margin-bottom: 20px;
  }
}