* {
  box-sizing: border-box;
}

/* VAR */
::-moz-selection {
  background: #8d99ae;
  color: white;
}
::selection {
  background: #8d99ae;
  color: white;
}

html {
  font-size: 16px;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: white;
  font-size: 1rem;
  font-family: "Mukta", sans-serif;
  line-height: 1.5;
  color: #2b2d42;
  position: relative;
}

h1, h2, h3, p, ul {
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  color: #2b2d42;
  margin: 0 0 2rem;
}

h1, .h1 {
  font-family: "Raleway";
  font-weight: 300;
  font-size: 1.8rem;
  color: #0A56C4;
  margin: 0;
}
h1 span, .h1 span {
  font-size: 1.3rem;
}

@media (max-width: 767px) {
  h1, .h1 {
    font-size: 1.6rem;
  }
}
h2, .h2 {
  font-family: "Raleway";
  font-weight: 300;
  font-size: 1.8rem;
  color: #0A56C4;
}

@media (max-width: 767px) {
  h2, .h2 {
    font-size: 1.6rem;
  }
}
h3, .h3 {
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #0A56C4;
}

p, ul, ol {
  margin: 0 0 2rem;
  padding: 0;
}
p:last-child, ul:last-child, ol:last-child {
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

a {
  color: #2b2d42;
  transition: color 0.5s ease;
}
a:hover {
  color: #0A56C4;
}

/* FORM */
form.hide {
  display: none;
}
form .form-group {
  width: 100%;
  margin: 0 0 1rem;
}
form .form-group label {
  display: block;
  font-weight: 700;
  margin: 0 0 0.25rem;
}
form .form-control, form .form-control-textarea {
  width: 100%;
  height: 3rem;
  line-height: 3rem;
  padding: 1rem;
  font-size: 1rem;
  font-family: Mukta, "sans-serif";
  border: solid 1px #EDEEF0;
}
form .form-control:focus, form .form-control-textarea:focus {
  outline: 0;
  border-color: #0A56C4;
}
form .form-control-textarea {
  height: 8rem;
  line-height: 1.5;
  resize: none;
}
form .required {
  font-size: 0.85rem;
  margin: 1rem 0 2rem;
}
form + .msg {
  display: none;
  font-weight: 700;
}
form + .msg.active {
  display: block;
}

@media (max-width: 991px) {
  form {
    margin: 2rem 0 0;
  }
}
/* HEADER */
header {
  position: fixed;
  z-index: 21;
  top: 0rem;
  left: 0;
  right: 0;
  height: 6rem;
  background: #EDEEF0;
}
header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .wrapper nav {
  height: 6rem;
  display: flex;
  align-items: center;
}
header .wrapper nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  list-style: none;
}
header .wrapper nav ul li.current-menu-item a {
  color: #0A56C4;
}
header .wrapper nav ul li a {
  text-decoration: none;
}
header .wrapper nav .langues {
  margin: 0 0 0 2rem;
  text-transform: uppercase;
  display: flex;
  gap: 0.5rem;
  flex-direction: row-reverse;
}
header .wrapper nav .langues a {
  text-decoration: none;
}
header .wrapper nav .langues a.active {
  color: #0A56C4;
}
header .wrapper .burger {
  display: none;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  height: 1.5rem;
  line-height: 1.5rem;
  padding-left: 2.5rem;
  background: no-repeat center left/contain url(../images/burger.svg);
}
header .wrapper .burger.active {
  background: no-repeat center left/contain url(../images/close.svg);
}
header .wrapper .logo {
  width: 22rem;
  height: 6rem;
  display: flex;
  align-items: center;
  background: no-repeat center/contain url(../images/logo.svg);
}
header .wrapper .logo a {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 991px) {
  header .wrapper nav {
    display: block;
    position: absolute;
    top: 6rem;
    left: 0;
    right: 0;
    padding: 1rem;
    height: auto;
    background: white;
    opacity: 0;
    z-index: -1;
    transform: translateY(1rem);
    pointer-events: none;
    transition: transform 0.5s ease, opacity 0.5s ease;
  }
  header .wrapper nav.active {
    z-index: 1;
    pointer-events: initial;
    opacity: 1;
    transform: translateY(0);
  }
  header .wrapper nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  header .wrapper nav .langues {
    justify-content: center;
    margin: 1.5rem 0 0 0;
  }
  header .wrapper .burger {
    display: block;
  }
  header .wrapper .logo {
    width: 3rem;
    background: no-repeat center/contain url(../images/logo-small.svg);
  }
}
/* FOOTER */
footer .wrapper {
  position: relative;
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
}
footer .wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #2b2d42;
}
footer .wrapper div {
  font-size: 0.85rem;
  display: flex;
  gap: 1rem;
}
footer .wrapper ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  font-size: 0.85rem;
}
footer .wrapper ul a {
  text-decoration: none;
}

@media (max-width: 767px) {
  footer .wrapper {
    flex-direction: column;
  }
  footer .wrapper div {
    flex-direction: column;
  }
  footer .wrapper div ul {
    margin: 0 0 1rem;
  }
}
/* IMAGE */
.image img {
  width: 100%;
  display: block;
}

/* BTN */
.btn, .btn-secondary, .btn-tertiary {
  display: inline-block;
  padding: 0.8rem 1rem 0.7rem;
  background: white;
  border: solid 2px #2b2d42;
  color: #2b2d42;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.5s ease, color 0.5s ease, border 0.5s ease;
}
.btn:hover, .btn-secondary:hover, .btn-tertiary:hover {
  background: #2b2d42;
  color: white;
}

.btn-secondary {
  color: #2b2d42;
  background: white;
  border: solid 2px #2b2d42;
}
.btn-secondary:hover {
  background: #2b2d42;
  color: white;
}

.btn-tertiary {
  background: none;
  border: 0;
  color: #2b2d42;
  padding: 0;
}
.btn-tertiary:hover {
  color: #8d99ae;
  background: none;
}

/* ALIGN */
.text-center {
  text-align: center;
}

/* CARTE */
.carte {
  margin: 0 0 4rem;
  height: 15rem;
  position: relative;
}
.carte:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, #0A56C4, #937199);
  mix-blend-mode: hue;
}
.carte iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* PITCH */
.pitch {
  margin-top: 7rem;
}
.pitch h1 {
  font-size: 2rem;
  line-height: 0.8;
  color: #2b2d42;
  margin: 0 0 1rem;
  /*text-shadow: 0 0 1rem $bleu900;*/
}

/* FEATURED */
.featured {
  height: 100vh;
  position: relative;
}
.featured.small {
  height: 15rem;
  margin: 0 0 4rem;
}
.featured.small .image {
  height: 100%;
}
.featured .image img {
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 991px) {
  .featured {
    margin: 0 0 4rem;
  }
}
@media (max-width: 767px) {
  .featured {
    height: 50vh;
  }
  .featured .image img {
    height: 50vh;
  }
}
/* OWL */
.owl-carousel .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2rem;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
.owl-carousel .owl-dots button.owl-dot {
  background: #EDEEF0;
  width: 1rem;
  aspect-ratio: 1;
  border-radius: 50%;
}
.owl-carousel .owl-dots button.owl-dot.active {
  background: #0A56C4;
}

@media (max-width: 767px) {
  .owl-carousel .owl-dots button.owl-dot {
    width: 0.75rem;
  }
}
/* A PROPOS */
.a-propos, .biographie {
  position: relative;
}
.a-propos:before, .biographie:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: calc(50% + 1rem);
  background: linear-gradient(to right, #EDEEF0, #EDEEF0);
}
.a-propos .wrapper, .biographie .wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 1;
  padding: 4rem 0;
}
.a-propos .wrapper.padding-right, .biographie .wrapper.padding-right {
  padding-right: 2rem;
}
.a-propos .wrapper.padding-left, .biographie .wrapper.padding-left {
  padding-left: 2rem;
}
.a-propos .wrapper ul, .biographie .wrapper ul {
  margin-top: -2rem;
}
.a-propos .wrapper ul li, .biographie .wrapper ul li {
  list-style: none;
  position: relative;
  padding: 0 0 0 1rem;
}
.a-propos .wrapper ul li:before, .biographie .wrapper ul li:before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 5px;
  aspect-ratio: 1;
  background: #8d99ae;
  border-radius: 50%;
}
.a-propos .wrapper .image, .biographie .wrapper .image {
  max-width: 90%;
}
.a-propos .wrapper .biseau, .biographie .wrapper .biseau {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 1rem;
  height: 100%;
}
.a-propos .wrapper .biseau:before, .biographie .wrapper .biseau:before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(var(--bs-gutter-x) * -0.5 - 3rem + 1px);
  height: 100%;
  width: 4rem;
  background: #EDEEF0;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

@media (max-width: 991px) {
  .a-propos:before, .biographie:before {
    content: none;
  }
  .a-propos .wrapper, .biographie .wrapper {
    padding: 0;
  }
  .a-propos .wrapper.padding-right, .biographie .wrapper.padding-right {
    padding-right: 0;
  }
  .a-propos .wrapper.padding-left, .biographie .wrapper.padding-left {
    padding: 4rem 0;
  }
  .a-propos .wrapper .biseau, .biographie .wrapper .biseau {
    display: none;
  }
}
.biographie {
  padding-top: 10rem;
  margin: -4rem 0 6rem;
}
.biographie .wrapper {
  justify-content: center;
  padding-bottom: 0;
}

@media (max-width: 991px) {
  .biographie {
    margin-top: 0;
  }
}
/* GENERIQUE */
.generique {
  margin: 0 0 4rem;
}
.generique.alone {
  padding-top: 10rem;
}

/* CREATIONS */
.creations {
  padding: 4rem 0;
}
.creations.margin-top {
  margin-top: 6rem;
}
.creations .header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 0 4rem;
}
.creations .header h2 {
  margin: 0 0 1rem;
}
.creations .header div:first-child {
  width: 60%;
}
.creations .header ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.creations .header ul li {
  cursor: pointer;
  transition: color 0.5s ease;
}
.creations .header ul li.active a {
  color: #0A56C4;
}
.creations .header ul li a {
  text-decoration: none;
}
.creations .header ul li a:hover {
  color: #8d99ae;
}
.creations .wrapper {
  margin: 0 0 2rem;
}
.creations .wrapper .creation {
  width: calc(33.3333333333% - 10.6666666667px);
  margin: 0 0 1rem;
  overflow: hidden;
}
.creations .wrapper .creation a {
  position: relative;
  color: #2b2d42;
}
.creations .wrapper .creation a:before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 0%;
  bottom: -5rem;
  left: -5rem;
  border-radius: 50%;
  aspect-ratio: 1;
  background: #EDEEF0;
  mix-blend-mode: lighten;
  transition: all 0.5s ease;
}
.creations .wrapper .creation a:hover:before {
  width: 100%;
  opacity: 0;
}
.creations .wrapper .creation a:hover .over {
  transform: translateX(0);
  opacity: 1;
}
.creations .wrapper .creation a img {
  max-width: none;
  max-height: none;
  width: 100%;
  height: auto;
}
.creations .wrapper .creation a .over {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.creations .wrapper .creation a .over h3 {
  font-family: "Raleway";
  font-weight: 300;
  display: inline-block;
  /*background: $bleu700;*/
  margin: 0 0 2px;
  padding: 0 0.5rem;
  color: white;
}
.creations .wrapper .creation a .over p {
  display: inline-block;
  /*background: $bleu300;*/
  color: white;
  padding: 0 0.5rem;
}

@media (max-width: 767px) {
  .creations .header {
    flex-direction: column;
    align-items: flex-start;
  }
  .creations .header div:first-child {
    width: 100%;
  }
  .creations .header .filtres {
    margin: 2rem 0 0;
  }
  .creations .wrapper .creation {
    width: 100%;
  }
}
/* ENVIE */
.envie {
  margin: 0 0 4rem;
}
.envie .wrapper {
  position: relative;
  background: linear-gradient(45deg, #EDEEF0, #EDEEF0);
  text-align: center;
  padding: 4rem 3rem;
  clip-path: polygon(4rem 0, 100% 0%, calc(100% - 4rem) 100%, 0% 100%);
}
.envie .wrapper div {
  position: relative;
  z-index: 1;
}
.envie .wrapper div h3, .envie .wrapper div .h3 {
  font-family: "Raleway";
  font-weight: 300;
}

@media (max-width: 767px) {
  .envie .wrapper {
    clip-path: polygon(1rem 0, 100% 0%, calc(100% - 1rem) 100%, 0% 100%);
  }
}
/* FRISE CHRONO */
.frise {
  padding: 4rem 0;
  position: relative;
}
.frise:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4rem;
  background: linear-gradient(to bottom, white, transparent);
}
.frise ol li {
  list-style: none;
  margin: 0 0 1rem;
}
.frise ol li:last-child {
  margin: 0;
}
.frise ul li {
  list-style: none;
  display: flex;
  align-items: center;
}
.frise ul li:first-child div:before {
  top: -4rem;
  height: calc(100% + 4rem);
}
.frise ul li:last-child {
  margin: 0;
}
.frise ul li:last-child div:before {
  height: 50%;
}
.frise ul li {
  /*&:nth-child(even){
      flex-direction: row-reverse;
  }*/
}
.frise ul li span {
  width: 5rem;
  height: 5rem;
  background: #2b2d42;
  font-size: 1.25rem;
  color: white;
  font-weight: 700;
  text-align: center;
  line-height: 5rem;
  display: block;
  position: absolute;
  border-radius: 50%;
}
.frise ul li div {
  margin: 0 0rem 0 7rem;
  position: relative;
  padding: 2rem 0;
}
.frise ul li div:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: -4.5rem;
  width: 1px;
  height: 100%;
  background-image: linear-gradient(to bottom, black 50%, transparent 50%);
  background-size: 2px 20px; /* longueur tiret / hauteur */
  background-repeat: repeat-y;
}
.frise .dates-projets {
  border: solid 1px #8d99ae;
  padding: 2rem;
}

@media (max-width: 767px) {
  .frise ul li {
    align-items: flex-start;
  }
  .frise ul li:last-child div:before {
    height: 100%;
  }
}
/* CONTACT */
.contact {
  padding: 4rem 0 0;
  margin: 6rem 0 4rem;
}
.contact p a {
  text-decoration: none;
}

/* SINGLE */
.single {
  margin: 6rem 0 4rem;
  padding-top: 4rem;
  /*.wrapper.padding-right {
      position: sticky;
      top: 10rem;
  }*/
}
.single .image {
  /*border: solid 1px $bleu400;
  padding: 0.5rem;*/
}
.single .galerie {
  display: grid;
  gap: 1rem;
  margin: 1rem 0;
  grid-template-columns: repeat(3, 1fr);
}
.single .galerie .image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  aspect-ratio: 1;
}

@media (max-width: 991px) {
  .single .wrapper.padding-left {
    margin: 2rem 0 0;
  }
  .single .galerie {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* PAGINATION */
.pagination {
  margin: 0 0 4rem;
}
.pagination ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
}
.pagination ul li a.btn {
  padding: 0.25rem 0.5rem;
}

@media (max-width: 767px) {
  .pagination ul {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}
/* VIDEO  BG */
.video-bg {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}
.video-bg:before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(45deg, #0A56C4, #937199);
  mix-blend-mode: hue;
}
.video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.77vh;
  height: 100vh;
  pointer-events: none;
}

@media (max-width: 991px) {
  .video-bg {
    height: 30vh;
  }
}
/* SCROLL TOP */
.top {
  position: fixed;
  z-index: 2;
  bottom: 3rem;
  right: 3rem;
  background: #2b2d42;
  border: solid 1px rgba(255, 255, 255, 0.7);
  width: 3rem;
  aspect-ratio: 1;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  transition: background 0.5s ease;
}
.top:hover {
  background: #0A56C4;
}
.top:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  aspect-ratio: 1;
  -webkit-mask: no-repeat center/contain url(../images/scroll-top.svg);
          mask: no-repeat center/contain url(../images/scroll-top.svg);
  background: white;
  transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
  .top {
    display: block;
  }
}/*# sourceMappingURL=styles.css.map */