.defaultPolice {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 200;
}
@keyframes oscillate {
  0% {
    color: #e6007e;
  }
  50% {
    color: #0095db;
  }
  100% {
    color: #e6007e;
  }
}
@keyframes bgOscillate {
  0% {
    background-color: #e6007e;
  }
  50% {
    background-color: #0095db;
  }
  100% {
    background-color: #e6007e;
  }
}
* {
  font-family: proxima-nova, sans-serif;
  font-style: normal;
  font-weight: 200;
}
html {
  height: 100%;
}
body {
  margin: 0;
  padding-bottom: 200px;
  min-height: 100%;
  position: relative;
  box-sizing: border-box;
}
body header {
  width: 100%;
  display: flex;
  box-sizing: border-box;
}
body header #menu_toggle {
  display: none;
  cursor: pointer;
  top: 22px;
  right: 20px;
  z-index: 10;
  width: 32px;
  height: 32px;
  appearance: none;
  position: absolute;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 48%, #000000 48%, #000000 51%, rgba(0, 0, 0, 0) 51%);
}
body header #menu_toggle::before,
body header #menu_toggle::after {
  content: '';
  width: 32px;
  height: 1px;
  position: absolute;
  transition: 0.2s ease;
  background: #000000;
}
body header #menu_toggle::before {
  top: 4px;
}
body header #menu_toggle::after {
  bottom: 4px;
}
body header #menu_toggle:checked {
  background: none;
}
body header #menu_toggle:checked::before {
  transform: translateY(12px) rotate(495deg);
  background-color: #ffffff;
}
body header #menu_toggle:checked::after {
  transform: translateY(-12px) rotate(-135deg);
  background-color: #ffffff;
}
body header ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  padding: 0;
  text-align: center;
}
body header ul li {
  list-style: none;
  font-size: 20px;
}
body header ul li a {
  color: #000000;
  text-decoration: none;
  transition: 0.2s ease;
}
body header ul li a:hover {
  animation: oscillate 4s infinite;
}
body header ul li.selected a {
  font-weight: 600;
}
body header ul li #recherche {
  width: 20px;
  height: 20px;
  display: flex;
  cursor: pointer;
}
body header ul li #recherche:hover::before {
  animation: bgOscillate 4s infinite;
}
body header ul li #recherche::before {
  content: "";
  width: 30px;
  height: 30px;
  display: block;
  background-color: #000000;
  transition: 0.2s ease;
  mask: url(/media/img/loupe.svg) no-repeat center / contain;
  -webkit-mask: url(/media/img/loupe.svg) no-repeat center / contain;
}
body header ul li #recherche .inputRech {
  height: 20px;
  width: 0;
  padding: 0;
  transition: 0.2s ease;
  outline: none;
  border: transparent;
  border-radius: 3px;
  font-size: 16px;
}
body header ul li #recherche.selected {
  background: none;
}
body header ul li #recherche.selected .inputRech {
  width: 170px;
  border: 1px solid #000000;
  padding: 3px;
  background-color: #ffffff;
  z-index: 3;
}
body header .logo_contact {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
body header .logo_contact .contact {
  text-decoration: none;
  color: #000000;
  font-size: 20px;
  padding-right: 40px;
  position: relative;
  transition: 0.2s ease;
}
body header .logo_contact .contact:hover {
  animation: oscillate 4s infinite;
}
body header .logo_contact .contact:hover::after {
  animation: bgOscillate 4s infinite;
}
body header .logo_contact .contact::after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  background-color: #000000;
  transition: 0.2s ease;
  mask: url(/media/img/enveloppe.svg) no-repeat center / contain;
  -webkit-mask: url(/media/img/enveloppe.svg) no-repeat center / contain;
  right: 0;
}
body header .logo_contact .logo {
  width: 200px;
  min-height: 110px;
  align-self: flex-start;
  background: url("/media/img/logo_couleur.png") no-repeat center center;
  background-size: contain;
}
body header.wrapper1 {
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 30px 30px 0px 30px;
}
body header.wrapper2 {
  justify-content: space-between;
  align-items: center;
  padding: 30px;
}
body header.wrapper2 .logo_contact {
  display: contents;
}
body header.wrapper2 .logo_contact .contact {
  order: 3;
  align-self: auto;
}
body header.wrapper2 .logo_contact .logo {
  order: 1;
  align-self: auto;
  margin: 0;
}
body header.wrapper2 .logo_contact .logo img {
  width: 150px;
}
body header.wrapper2 ul {
  order: 2;
}
body main {
  margin: 0;
}
body main .pageContent {
  width: 100%;
  padding: 0 30px;
  box-sizing: border-box;
  text-align: justify;
}
body main .pageContent h1 {
  width: 100%;
  text-align: center;
}
body main .fullBlock {
  width: 100%;
  display: inline-block;
  position: relative;
}
body main .fullBlock.center {
  text-align: center;
}
body main input[type="submit"] {
  width: auto;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  color: #ffffff;
  background: linear-gradient(90deg, #0095db 0%, #e6007e 100%);
  cursor: pointer;
  border-radius: 5px;
  border: none;
  margin: 20px auto;
  font-size: 20px;
}
body footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0;
  margin-bottom: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
body footer p {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
}
body footer p .logo {
  width: 100px;
  height: auto;
}
body footer a {
  text-decoration: none;
  color: #000000;
  transition: 0.2s ease;
}
body footer a:hover {
  animation: oscillate 4s infinite;
}
body footer .liens {
  position: absolute;
  text-align: center;
  right: 20px;
  bottom: 14px;
}
.tac_float {
  display: table-cell !important;
}
.tac_float h1 {
  font-size: 30px !important;
  line-height: 30px;
  font-family: "proxima-nova-extra-condensed", "Open Sans Condensed", sans-serif;
  font-style: normal;
  font-weight: 700;
}
.tac_activate {
  position: fixed;
  left: 0;
  right: 0;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
}
.video {
  width: 100%;
  height: 100%;
  background: transparent !important;
}
.video #bloc_video,
.video .bloc_video {
  width: 80%;
  height: 80%;
  position: fixed;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
}
.video #bloc_video iframe,
.video .bloc_video iframe,
.video #bloc_video object,
.video .bloc_video object {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1300px) {
  body header.wrapper1,
  body header.wrapper2 {
    height: 160px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  body header.wrapper1 #menu_toggle,
  body header.wrapper2 #menu_toggle {
    display: block;
  }
  body header.wrapper1 .contact,
  body header.wrapper2 .contact,
  body header.wrapper1 ul,
  body header.wrapper2 ul {
    display: none;
  }
  body header.wrapper1 .logo,
  body header.wrapper2 .logo {
    align-self: auto;
    margin-left: 0;
  }
  body header.wrapper1:has(:checked),
  body header.wrapper2:has(:checked) {
    position: relative;
    z-index: 10;
    min-height: 540px;
    margin-bottom: -380px;
    background: linear-gradient(90deg, #0095db 0%, #e6007e 100%);
  }
  body header.wrapper1:has(:checked) .contact,
  body header.wrapper2:has(:checked) .contact,
  body header.wrapper1:has(:checked) ul,
  body header.wrapper2:has(:checked) ul {
    display: flex;
    color: #ffffff;
  }
  body header.wrapper1:has(:checked) ul,
  body header.wrapper2:has(:checked) ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0px;
  }
  body header.wrapper1:has(:checked) ul li,
  body header.wrapper2:has(:checked) ul li {
    text-align: center;
    padding: 5px 0;
  }
  body header.wrapper1:has(:checked) ul li a,
  body header.wrapper2:has(:checked) ul li a {
    color: #ffffff;
  }
  body header.wrapper1:has(:checked) ul li.selected:not(#recherche),
  body header.wrapper2:has(:checked) ul li.selected:not(#recherche) {
    border-top: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
  }
  body header.wrapper1:has(:checked) ul li #recherche,
  body header.wrapper2:has(:checked) ul li #recherche {
    width: auto;
    height: auto;
    justify-content: center;
    align-items: center;
    gap: 5px;
    position: relative;
    padding: 10px 20px;
    border-right: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
  }
  body header.wrapper1:has(:checked) ul li #recherche::before,
  body header.wrapper2:has(:checked) ul li #recherche::before {
    width: 22px;
    height: 22px;
    background-color: rgba(255, 255, 255, 0.3);
    left: 0;
  }
  body header.wrapper1:has(:checked) ul li #recherche .inputRech,
  body header.wrapper2:has(:checked) ul li #recherche .inputRech {
    width: 100px;
    height: 30px;
    padding: 3px;
    border: 1px solid transparent;
    box-sizing: border-box;
    background-color: transparent;
    color: #ffffff;
  }
  body header.wrapper1:has(:checked) .contact,
  body header.wrapper2:has(:checked) .contact {
    order: 3;
    align-self: auto;
    text-align: center;
  }
  body header.wrapper1:has(:checked) .contact::after,
  body header.wrapper2:has(:checked) .contact::after {
    background-color: #ffffff;
  }
  body header.wrapper1:has(:checked) .logo,
  body header.wrapper2:has(:checked) .logo {
    background: url("/media/img/logo_b.png") no-repeat center center;
    background-size: contain;
  }
}
@media screen and (max-width: 1460px) {
  body footer .liens {
    position: static;
  }
}
@media screen and (max-width: 630px) {
  body header .logo {
    align-self: center;
  }
  body header ul {
    flex-direction: column;
  }
  body footer p {
    flex-direction: column;
  }
  body footer p span {
    display: none;
  }
}
