html {
  overflow-x: hidden;
}
body {
  margin: 0px;
  font-family: "Myriad pro", sans-serif;
  overflow-x: hidden;
}
section {
  padding: 15px 5%;
}
h1 {
  text-transform: uppercase;
  margin: 5px 0px 20px;
  font-size: 1.8em;
  font-weight: bold;
  font-family: "Tomorrow", sans-serif;
  color: #003764;
}
h2 {
  text-transform: uppercase;
  color: #003764;
  margin-bottom: 30px;
  font-family: "Tomorrow", sans-serif;
}
h3 {
  text-transform: uppercase;
  color: #003764;
  font-family: "Tomorrow", sans-serif;
}
img {
  max-width: 100%;
}
a,
.btn-white,
.btn-blue {
  transition: background-color 0.3s ease-in, color 0.2s ease-in;
  text-decoration: unset;
}
.btn-white {
  color: #003764;
  padding: 10px 30px;
  border: 1px solid #003764;
  text-decoration: none;
  background-color: white;
  text-transform: uppercase;
  display: inline-block;
  cursor: pointer;
}
.btn-white:hover {
  background-color: #003764;
  border: 1px solid #ffffff;
  color: white;
}
.btn-blue {
  color: white;
  padding: 10px 30px;
  border: 1px solid white;
  text-decoration: none;
  background-color: #003764;
  text-transform: uppercase;
  display: inline-block;
}
.btn-blue:hover {
  background-color: white;
  color: #003764;
}
.img-desktop {
  display: none;
}
input,
textarea {
  display: block;
  margin-bottom: 5px;
  border: 0px;
  padding: 15px;
}
input::placeholder,
textarea::placeholder {
  color: black;
  font-weight: bold;
  font-family: monospace;
  opacity: 1;
}
input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
textarea {
  width: 92%;
  background-color: #f0f0f0;
}
input[type="submit"] {
  margin-top: 30px;
}
input[name="name"] {
  display: none;
}
.input-error {
  border: 2px solid red;
}
.fields-error {
  color: red;
  font-weight: bold;
}
.message-success {
  display: block;
  padding: 10px 12px;
  background-color: #ddfad9;
  border: 1px solid #288d1b;
  color: #288d1b;
}
.message-error {
  display: block;
  padding: 10px 12px;
  background-color: #f8d7da;
  border: 1px solid #8d1b1b;
  color: #8d1b1b;
}
.file-upload-wrapper {
  position: relative;
  width: 100%;
  height: 60px;
  margin-bottom: 5px;
}
.file-upload-wrapper:after {
  background-color: #f0f0f0;
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 15px;
  display: block;
  width: calc(100% - 40px);
  pointer-events: none;
  z-index: 20;
  height: 40px;
  line-height: 40px;
  border-radius: 5px 10px 10px 5px;
  font-weight: 300;
  color: black;
  font-weight: bold;
  font-family: monospace;
  opacity: 1;
}
.file-upload-wrapper:before {
  content: "Upload";
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  height: 60px;
  background: #003764;
  color: #fff;
  font-weight: 700;
  z-index: 25;
  font-size: 16px;
  line-height: 60px;
  padding: 0 15px;
  text-transform: uppercase;
  pointer-events: none;
  border-radius: 0 5px 5px 0;
}
.file-upload-wrapper:hover:before {
  background: #001b31;
}
.file-upload-wrapper.resume:before {
  content: "Upload your resume";
}
.display_50_50image,
.display_50image_50 {
  display: flex;
  flex-direction: column;
  padding: 0px 5%;
}
.display_50_50image h1,
.display_50image_50 h1 {
  padding: 45px 0px 15px;
}
.display_50image_50 {
  flex-direction: column-reverse;
}
.display_50_50image > div:last-of-type > img,
.display_50image_50 > div:first-of-type > img {
  max-width: 100%;
}
.btn_contact_container {
  padding: 30px 0px;
}
ul.dashed {
  list-style-type: none;
  padding-left: 0px;
}
ul.dashed > li:before {
  content: "\2014\00a0";
  font-weight: bold;
  color: #003764;
}
@media only screen and (min-width: 992px) {
  h1 {
    font-size: 3em;
  }
  .img-mb {
    display: none;
  }
  .img-desktop {
    display: inline-block;
  }
  .display_100 {
    padding: 45px 10% 45px 10%;
  }
  .display_50_50image {
    padding: 45px 0px 45px 10%;
  }
  .display_50_50image > div:last-of-type > img,
  .display_50_50image > div:last-of-type > picture > img {
    width: 100%;
  }
  .display_50image_50 {
    padding: 45px 10% 45px 0px;
  }
  .display_50image_50 > div:first-of-type > img {
    width: 100%;
  }
  .display_50_50image,
  .display_50image_50 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 5%;
  }
  .display_50_50image > *,
  .display_50image_50 > * {
    width: 50%;
    position: relative;
  }
  .display_50image_50_no_align {
    align-items: normal;
  }
  .display_50_50image > div:last-of-type > img,
  .display_50image_50 > div:first-of-type > img {
    max-width: none;
  }
  .btn_contact_container {
    padding: 90px 0px 90px 10%;
  }
  input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
  textarea {
    width: 96%;
  }
}
.header {
  width: 90%;
  top: 0px;
  background-color: #003764;
  z-index: 99;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header > .menu_mobile {
  display: block;
}
.header > .menu_desktop {
  display: none;
}
.header .header__logo {
  min-width: 140px;
}
.header a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}
.header a:hover {
  color: #a7afb5;
}
.header ul {
  display: flex;
  justify-content: right;
  padding: 0px;
  list-style: none;
}
.header ul > li {
  padding: 15px;
  position: relative;
}
.header ul > li > .invisible-div {
  position: absolute;
  padding-bottom: 32px;
  bottom: -16px;
  width: 85%;
}
.header ul > li > ul {
  flex-direction: column;
  display: none;
  position: absolute;
  top: 50px;
  left: 0px;
}
.header ul > li > ul > li {
  /* padding: 0px; */
  background-color: #003764;
  text-align: center;
  padding: 10px 15px;
}
.header ul > li > ul > li:not(:first-of-type) {
  border-top: 2px solid #00182c;
}
.header ul > li > ul > li a {
  text-transform: none;
  font-weight: 600;
}
.header ul > li:hover > ul {
  display: flex;
  width: 100%;
}
.header__logo img {
  height: 100%;
}
@media only screen and (min-width: 992px) {
  .header {
    width: 90%;
    align-items: unset;
  }
  .header .menu_mobile {
    display: none;
  }
  .header > .menu_desktop {
    display: block;
    width: 90%;
  }
  .header > .menu_desktop ul.actif {
    display: block;
  }
  .header > .menu_desktop ul > li {
    padding: 15px 8px;
  }
  .header > .home {
    position: absolute;
    top: 0px;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .header .header__logo img {
    width: 100%;
  }
}
@media only screen and (min-width: 1500px) {
  .header .header__logo img {
    width: 200px;
  }
  .header > .menu_desktop {
    width: auto;
  }
  .header > .menu_desktop ul > li {
    padding: 15px;
  }
}
#icon-hamburgler {
  width: 20px;
  height: 15px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
#icon-hamburgler > span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
#icon-hamburgler > span:nth-child(1) {
  top: 0px;
}
#icon-hamburgler > span:nth-child(2),
#icon-hamburgler > span:nth-child(3) {
  top: 6px;
}
#icon-hamburgler > span:nth-child(4) {
  top: 12px;
}
#icon-hamburgler.open > span:nth-child(1),
#icon-hamburgler.open > span:nth-child(4) {
  top: 6px;
  width: 0%;
  left: 50%;
}
#icon-hamburgler.open > span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#icon-hamburgler.open > span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menu_mobile__nav {
  display: flex;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transition: 0.45s;
  transform: translateY(-200%);
  z-index: 98;
  position: absolute;
}
.menu_mobile__nav.toggled {
  transform: translateY(0);
}
.menu_mobile__nav a {
  text-decoration: none;
  text-transform: uppercase;
}
.menu_mobile__nav ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.menu_mobile__nav > ul {
  flex: 0 0 100%;
  background-color: white;
}
.menu_mobile__nav > ul > li:not(:last-child) {
  border-bottom: solid 1px black;
}
.menu_mobile__nav > ul > li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu_mobile__nav > ul > li a:hover > div {
  color: #003764;
}
.menu_mobile__nav > ul > li a > div {
  padding: 15px;
  background-color: white;
  color: #003764;
  font-size: 1rem;
  line-height: 1.5em;
  font-weight: 300;
}
.menu_mobile__nav > ul > li a > div.link-arrow {
  background-color: #003764;
  color: white;
  font-size: 24px;
  padding: 9px 15px;
}
.menu_mobile__nav > ul > li a > div.link-arrow:hover {
  background-color: #003764;
}
.menu_mobile__nav > ul > li a.nav-back-link > div.link-arrow {
  flex-grow: 1;
}
.expandable__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  background-color: white;
  transition: 0.3s;
  visibility: hidden;
}
.expandable__content > li:not(:last-child) {
  border-bottom: solid 1px black;
}
.expandable__content > li > a {
  background-color: white;
}
.expandable__content > li > a.nav-back-link {
  background-color: #003764;
  color: white;
}
.expandable__content > li > a.nav-back-link:hover {
  background-color: #003764;
}
.expandable.expanded .expandable__content {
  transform: translateX(0);
  visibility: visible;
}
footer > div:first-of-type {
  padding: 45px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
footer > div:first-of-type > img {
  width: 300px;
  max-width: 100%;
}
footer > div:first-of-type > img.bg-img {
  width: auto;
}
footer > div:last-of-type {
  background-color: #003764;
  color: white;
  padding: 45px;
  position: relative;
}
footer > div:last-of-type > div {
  margin-bottom: 45px;
}
footer > div:last-of-type > div > div {
  margin-bottom: 30px;
}
footer > div:last-of-type a {
  color: white;
  text-decoration: none;
}
footer > div:last-of-type a:hover {
  color: #a7afb5;
}
footer i {
  font-size: 1.4em;
}
footer .privacy {
  font-size: 0.75em;
}
footer .follow_us a {
  vertical-align: middle;
}
@media only screen and (min-width: 992px) {
  footer {
    display: flex;
    gap: 45px;
  }
  footer > div:first-of-type {
    padding: 45px 5%;
    width: 40%;
    display: flex;
    justify-content: center;
  }
  footer > div:first-of-type > img.bg-img {
    position: absolute;
    bottom: -500px;
    left: -100px;
    width: 110%;
  }
  footer > div:last-of-type {
    width: 60%;
  }
}
.anim-opacity {
  opacity: 0;
  transform: translateY(-50px);
  transition: all 0.4s ease-in;
}
.anim-opacity.actif {
  opacity: 1;
  transform: translateY(0);
}
.anim-translate img {
  opacity: 0;
  transform: translateX(150px);
  transition: all 0.3s ease-in;
  transition-delay: 0.1s;
}
.anim-translate.actif img {
  opacity: 1;
  transform: translateX(0);
}
.anim-only-opacity {
  opacity: 0;
  transition: all 0.4s ease-in;
}
.anim-only-opacity.actif {
  opacity: 1;
}
body.home .home__hero {
  position: relative;
}
body.home .home__hero .background {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: #0000008c;
  z-index: 1;
}
body.home .home__hero iframe {
  background-color: black;
}
body.home .slick-dots {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
body.home .slick-dots li button {
  font-size: 0;
  height: 30px;
  width: 10px;
  border: 1px solid white;
  background-color: #003764;
  margin-bottom: 10px;
}
body.home .slick-dots li.slick-active button {
  background-color: white;
}
body.home .home__hero__infos {
  left: 10%;
  color: white;
  max-width: 700px;
  z-index: 2;
  background-color: #003662;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 10px;
  padding-bottom: 10px;
}
body.home .home__hero__infos h1 {
  color: white;
  margin: 5px 0px 20px;
  font-size: 1.2em;
}
body.home .home__hero__infos_camnor_mention {
  text-transform: uppercase;
  font-size: 0.8em;
}
body.home .home__hero__infos_camnor_mention:before {
  content: "";
  display: inline-block;
  height: 0.5em;
  vertical-align: bottom;
  border-top: 2px solid white;
  width: 60px;
  margin-right: 10px;
}
body.home .home__hero__slide1 {
  background-image: url("/public/assets/images/home/index-header-highland.jpg");
  width: 100%;
  max-height: 965px;
  position: relative;
}
body.home .home__hero__slide1 {
  padding-right: 10%;
}
@media only screen and (min-width: 600px) {
  body.home .home__hero__infos {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background-color: unset;
    padding-left: 0;
    padding-right: 0;
  }
  body.home .home__hero__infos h1 {
    font-size: 2em;
  }
  body.home .home__hero__infos_camnor_mention:before {
    border-top: 2px solid #003764;
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) {
  body.home .home__hero__infos_camnor_mention:before {
    width: 150px;
  }
  body.home .slick-dots {
    right: 100px;
  }
  body.home .home__hero__slide1 {
    padding-right: 0px;
  }
}
body.home ul.home__list {
  width: 100%;
  margin: 0px;
  position: relative;
  list-style: none;
  padding: 0px;
  color: white;
}
body.home ul.home__list > li {
  background-image: linear-gradient(to right, #003764, #00182c);
}
body.home ul.home__list > li:first-of-type,
body.home ul.home__list > li:last-of-type {
  background-image: linear-gradient(to right, #00182c, #003764);
}
body.home ul.home__list > li > div {
  padding: 15px 30px;
  text-align: right;
}
body.home .home__list__number {
  font-size: 3em;
  font-weight: bold;
  text-align: center;
}
body.home .home__list__title {
  font-size: 1.2em;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}
body.home .home__list__text {
  text-align: center;
  margin-bottom: 15px;
}
body.home .home__list__btn {
  color: white;
  padding: 2px 3px;
  font-weight: bold;
  border: 1px solid white;
  text-decoration: none;
  background-color: #003764;
}
@media only screen and (min-width: 992px) {
  body.home ul.home__list {
    width: 915px;
    margin: -100px auto 0px auto;
    z-index: 2;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    border: 5px solid white;
    padding: 0px;
    color: white;
    background-image: linear-gradient(to right, #00182c, #003764, #003764, #003764, #00182c);
  }
  body.home ul.home__list > li {
    background-image: none !important;
  }
}
body.home .about {
  z-index: 1;
  display: flex;
  flex-direction: column-reverse;
  color: black;
  position: relative;
}
body.home .about h2 {
  margin: 5px 0px 20px;
  font-size: revert;
}
body.home .about > div:first-of-type {
  padding: 0px 5%;
}
body.home .about > div:last-of-type img {
  width: 100%;
}
body.home .about .career__infos img {
  max-width: 300px;
}
body.home .about .career__infos .logo-container {
  padding: 10px 0;
}
body.home .about .career__infos .btn-white {
  position: relative;
  z-index: 1;
}
body.home .about .career__infos p {
  margin-bottom: 60px;
}
@media only screen and (min-width: 992px) {
  body.home .about {
    flex-direction: row;
    padding: 45px 0px 45px 10%;
    align-items: center;
    justify-content: space-between;
    gap: 5%;
  }
  body.home .about > * {
    width: 50%;
    z-index: -1;
  }
  body.home .about > div:first-of-type {
    padding: 0px;
  }
  body.home .about .career__infos img {
    max-width: unset;
  }
  body.home .about h2 {
    font-size: revert;
  }
}
body.home .career {
  display: flex;
  flex-direction: column;
  padding: 45px 5%;
  background-image: url("/public/assets/images/home/index-mb-diverse-opportunities.jpg");
  background-size: cover;
  color: white;
  position: relative;
}
@supports (background-image: url("/public/assets/images/webp/home/index-mb-diverse-opportunities.webp")) {
  .career {
    background-image: url("/public/assets/images/webp/home/index-mb-diverse-opportunities.webp") !important;
  }
}
body.home .career h2 {
  color: white;
  margin: 5px 0px 20px;
  font-size: 2em;
}
body.home .career.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
body.home .career__infos {
  max-width: 700px;
}
body.home .career a {
  margin-bottom: 30px;
}
body.home .career > div:first-of-type {
  display: flex;
  align-items: center;
}
body.home .career > div:last-of-type {
  text-align: center;
}
body.home .career img {
  max-height: 619px;
  max-width: 100%;
}
body.home .career p {
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) {
  body.home .career {
    padding: 45px 10%;
    flex-direction: row;
    background-image: url("/public/assets/images/home/index-diverse-opportunities.jpg");
    /* Fallback */
  }
  @supports (background-image: url("/public/assets/images/webp/home/index-diverse-opportunities.webp")) {
    .career {
      background-image: url("/public/assets/images/webp/home/index-diverse-opportunities.webp") !important;
      /* WebP version */
    }
  }
  body.home .career > * {
    width: 50%;
  }
  body.home .career h2 {
    font-size: 3em;
  }
  body.home .career__infos {
    padding-right: 15px;
  }
}
body.home .features {
  padding-top: 45px;
  position: relative;
  width: 100%;
  margin-bottom: 120px;
}
body.home .features > img {
  display: none;
}
body.home .features > * {
  position: relative;
}
body.home .features > div:last-of-type {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 5%;
  text-align: center;
}
body.home .features > div:first-of-type img {
  width: 100%;
}
body.home .features > div:last-of-type img {
  max-height: 125px;
}
body.home .features > div:last-of-type > div:first-of-type {
  margin-bottom: 30px;
}
body.home .features__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  column-gap: 30px;
}
body.home .features__list p {
  max-width: 225px;
  margin-left: auto;
  margin-right: auto;
}
body.home .projects_gallery {
  margin-bottom: 120px;
}
body.home .projects_gallery h2 {
  padding-left: 5%;
  padding-right: 5%;
}
body.home .projects_gallery a {
  display: inline-block;
  color: #003764;
  padding: 10px 30px;
  font-weight: bold;
  border: 1px solid #003764;
  text-decoration: none;
  text-transform: uppercase;
  margin-left: 5%;
}
body.home .projects_gallery a:hover {
  background-color: #003764;
  color: white;
}
body.home .projects_gallery__imgs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 30px;
}
body.home .projects_gallery__imgs > div {
  width: 100%;
  overflow: hidden;
  position: relative;
}
body.home .projects_gallery__imgs > div > picture > img {
  width: 100%;
  transition: all 1s;
}
body.home .projects_gallery__imgs > div > picture > img:hover {
  transform: scale(1.1);
}
@media only screen and (min-width: 600px) {
  body.home .projects_gallery__imgs > div {
    width: 49%;
  }
}
@media only screen and (min-width: 992px) {
  body.home .features {
    z-index: 0;
    display: flex;
    gap: 5%;
  }
  body.home .features > * {
    width: 50%;
  }
  body.home .features > img {
    z-index: 0;
    position: absolute;
    top: -20%;
    left: 15px;
    max-width: 48%;
    display: block;
  }
  body.home .features > div:last-of-type {
    padding: 0px;
    text-align: left;
  }
  body.home .home__hero__infos h1,
  body.home .career h2 {
    font-size: 3em;
  }
  body.home .projects_gallery h2 {
    padding-left: 10%;
  }
  body.home .features__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 60px;
    column-gap: 0;
  }
  body.home .features__list > * {
    width: 50%;
  }
  body.home .features__list p {
    margin-left: 0;
    margin-right: 0;
  }
  body.home body.home .projects_gallery a {
    margin-left: 10%;
  }
  body.home .projects_gallery__imgs > div {
    width: calc(25% - 3.75px);
    overflow: hidden;
    position: relative;
  }
}
body.our-projects h1 {
  padding: 45px 0px 15px;
}
body.our-projects h1,
body.our-projects h2,
body.our-projects h3,
body.our-projects h4 {
  margin: 0px;
}
body.our-projects input[type="checkbox"] {
  width: auto !important;
}
body.our-projects .header_projects {
  padding: 45px 5% 15px;
}
body.our-projects .subheader_projects {
  padding: 0px 5% 30px 5%;
}
body.our-projects .project_filters {
  padding: 0px 5% 30px 5%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
body.our-projects .project_filters > div {
  display: flex;
  align-items: center;
  gap: 5px;
}
body.our-projects .project_filters > div > label {
  text-transform: uppercase;
}
body.our-projects .project {
  margin: 5px 0px 30px 5%;
  position: relative;
  display: flex;
  flex-direction: column-reverse;
}
body.our-projects .project.hidden {
  display: none;
}
body.our-projects .project > div {
  width: 90%;
  position: relative;
  padding-top: 5px;
}
body.our-projects .project > div.project_img,
body.our-projects .project > div.project_img_no_slider {
  position: relative;
  margin-bottom: 5px;
}
body.our-projects .project > div.project_img img,
body.our-projects .project > div.project_img_no_slider img {
  width: 100%;
  max-height: 100%;
}
body.our-projects .project > div.project_img .project_img_next_btn,
body.our-projects .project > div.project_img_no_slider .project_img_next_btn {
  position: absolute;
  bottom: 15px;
  left: 15px;
  cursor: pointer;
}
body.our-projects .project > div.project_img_no_slider > div {
  height: 100%;
}
body.our-projects .project > div > div.border-container {
  border-top: 3px solid #003764;
  position: absolute;
  top: 0px;
  width: 100%;
  z-index: 99;
}
body.our-projects .project table {
  border-spacing: 0 10px;
}
body.our-projects .project table tr td:nth-child(1) {
  padding-right: 18px;
}
body.our-projects .project table tr td:nth-child(2) {
  font-weight: bold;
  color: #090808;
}
body.our-projects .btn_contact_container {
  margin: 0px 5%;
}
@media only screen and (min-width: 992px) {
  body.our-projects .header_projects {
    padding: 45px 0% 60px 10%;
  }
  body.our-projects .subheader_projects {
    padding: 0px 0px 30px 10%;
  }
  body.our-projects .project_filters {
    padding: 0px 0% 30px 10%;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  body.our-projects .project {
    margin: 5px 0px 0px 10%;
    flex-direction: row;
    gap: 5%;
  }
  body.our-projects .project > div {
    width: 57.5%;
  }
  body.our-projects .project > div > h3 {
    margin-top: 45px;
  }
  body.our-projects .project > div:first-of-type {
    margin-top: 30px;
    width: 37.5%;
  }
  body.our-projects .project > div.project_img,
  body.our-projects .project > div.project_img_no_slider {
    margin-bottom: 0px;
    height: auto;
  }
  body.our-projects .project > div.project_img .project_img_next_btn,
  body.our-projects .project > div.project_img_no_slider .project_img_next_btn {
    bottom: 45px;
    left: 45px;
  }
  body.our-projects .project table {
    padding: 15px 0px 0px 0px;
  }
  body.our-projects .project > div > div.border-container {
    width: 140%;
  }
  body.our-projects .btn_contact_container {
    margin: 0px;
  }
}
@media only screen and (min-width: 1536px) {
  body.our-projects .project_filters {
    padding: 0px 10% 30px 10%;
    gap: 30px;
  }
  body.our-projects .project > div:first-of-type {
    margin-top: 60px;
  }
  body.our-projects .project table {
    padding: 15px 0px 30px 0px;
  }
}
body.careers .careers_accordion {
  max-width: 100%;
  text-align: left;
}
body.careers .careers_accordion__career {
  margin: 5px auto;
}
body.careers .careers_accordion__career__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0f0f0;
  padding: 10px;
  cursor: pointer;
}
body.careers .careers_accordion__career__header > h3 {
  margin: 0px;
}
body.careers .careers_accordion__career__header > span.icone {
  display: inline-block;
  width: 25px;
  height: 5px;
  background: #003764;
  position: relative;
  transition: 0.25s all cubic-bezier(0.17, 0.67, 0.09, 0.97);
  transform: rotate(90deg);
}
body.careers .careers_accordion__career__header > span.icone::after {
  content: "";
  width: 25px;
  transition: 0.25s all cubic-bezier(0.17, 0.67, 0.09, 0.97);
  transition-delay: 0.1s;
  height: 5px;
  position: absolute;
  opacity: 1;
  transform: rotate(90deg);
  background: #003764;
}
body.careers .careers_accordion__career input[type="checkbox"] {
  appearance: none;
  position: fixed;
  display: none;
}
body.careers .careers_accordion__career input[type="checkbox"] ~ div {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s, opacity 0.3s ease-in, transform 0.3s ease-in;
  opacity: 0;
  transform: translateX(-60px);
}
body.careers .careers_accordion__career input[type="checkbox"] ~ div > p {
  margin: 0px;
}
body.careers .careers_accordion__career input[type="checkbox"]:checked ~ div {
  max-height: none;
  padding: 30px;
  opacity: 1;
  transform: translateX(0);
}
body.careers .careers_accordion__career input[type="checkbox"]:checked ~ label > span.icone {
  transform: rotate(0deg);
}
body.careers .careers_accordion__career input[type="checkbox"]:checked ~ label > span.icone::after {
  transform: rotate(0deg);
  opacity: 0;
}
body.careers .display_50_50image .img-mb {
  text-align: right;
  margin-right: -6%;
}
body.careers .display_50_50image .img-mb img {
  width: 100%;
  max-width: 540px;
  margin-top: -15px;
}
body.careers .display_50_50image .col-2 {
  margin-top: 30px;
  max-width: 470px;
  align-self: flex-end;
}
body.careers .display_50image_50 .col-1 {
  margin-top: 20px;
  max-width: 600px;
}
body.careers .display_50image_50 .col-2 {
  margin-top: 20px;
}
body.careers #form_career__title {
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) {
  body.careers .display_50_50image .col-2 {
    margin-top: 0;
    max-width: fit-content;
  }
  body.careers .display_50image_50 .col-1 {
    max-width: max-content;
  }
  body.careers .display_50image_50 .col-2 {
    margin-top: 0;
  }
}
body.contact .display_50_50image .img-mb {
  text-align: right;
  margin-right: -6%;
}
body.contact .display_50_50image .img-mb img {
  width: 100%;
  max-width: 540px;
}
body.contact .infos_contact > div {
  padding-bottom: 30px;
}
body.contact .infos_contact > div a:hover {
  color: #003764;
}
body.contact .infos_contact > div div a:hover {
  color: #003764;
}
body.contact .infos_contact > div:nth-child(3) a,
body.contact .infos_contact > div:nth-child(4) a {
  color: black;
}
body.contact .col-2 {
  max-width: 500px;
  align-self: flex-end;
}
@media only screen and (min-width: 992px) {
  body.contact .col-2 {
    max-width: max-content;
  }
}
body.about .img-mb {
  text-align: right;
  margin-right: -6%;
}
body.about .img-mb img {
  width: 100%;
  max-width: 540px;
  margin-top: -16px;
}
body.about .companies {
  padding-top: 60px;
  display: flex;
  gap: 60px;
  flex-direction: column;
  align-items: center;
}
body.about .companies img {
  max-width: 100%;
  padding: 0px 5%;
}
body.about .display_50_50image .col-2 {
  margin-top: 30px;
}
body.about .display_100 {
  padding: 60px 5% 0 5%;
}
body.about .values {
  display: flex;
  gap: 30px;
  flex-direction: column;
  text-align: center;
}
body.about .values div {
  max-width: 100%;
}
body.about .values div img {
  max-height: 75px;
}
body.about .camnor_logo {
  margin-bottom: 30px;
}
body.about .btn_contact_container {
  padding: 30px 5%;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  body.about .companies {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
  }
  body.about .companies img {
    max-width: calc(33.333% - 20px);
    padding: 0px;
  }
  body.about .display_50_50image .col-2 {
    margin-top: 0;
  }
  body.about .display_100 {
    padding: 45px 10%;
  }
  body.about .values {
    flex-direction: row;
    flex-wrap: wrap;
    text-align: left;
  }
  body.about .values div {
    max-width: calc(20% - 24px);
    min-width: 280px;
    padding: 0px;
  }
  body.about .btn_contact_container {
    padding: 90px 10%;
    text-align: left;
  }
}
body.engineering .display_50_50image .img-mb {
  text-align: right;
  margin-right: -6%;
}
body.engineering .display_50_50image .img-mb img {
  width: 100%;
  max-width: 540px;
}
body.engineering .display_50_50image .col-2 {
  margin-top: 60px;
}
body.engineering .display_50_50image img {
  max-width: 100%;
}
body.engineering .btn_contact_container {
  padding: 30px 5%;
}
@media only screen and (min-width: 992px) {
  body.engineering .display_50_50image .col-2 {
    margin-top: 0;
  }
  body.engineering .display_50_50image img {
    max-width: none;
  }
  body.engineering .btn_contact_container {
    padding: 90px 10%;
  }
}
body.erection .display_50_50image .img-mb {
  margin-top: -60px;
  text-align: right;
  margin-right: -6%;
}
body.erection .display_50_50image .img-mb img {
  width: 100%;
  max-width: 540px;
}
body.erection .linear_display {
  display: flex;
  flex-direction: column;
}
body.erection .btn_contact_container {
  padding: 30px 5%;
}
@media only screen and (min-width: 992px) {
  body.erection .linear_display {
    flex-direction: row;
  }
  body.erection .btn_contact_container {
    padding: 90px 10%;
  }
}
#politique-confidentialite {
  padding-top: 30px;
  padding-bottom: 84px;
}
#politique-confidentialite section {
  padding-bottom: 23px;
}
#politique-confidentialite h1 {
  text-transform: uppercase;
  font-size: 1.3em;
}
#politique-confidentialite h2 {
  font-size: 1.2em;
}
#politique-confidentialite h2,
#politique-confidentialite h1 {
  padding-bottom: 0;
  margin-bottom: 0;
}
#politique-confidentialite .responsable {
  margin-top: 60px;
}
#politique-confidentialite .responsable h3 {
  font-size: 1.2em;
  margin-top: 10px;
}
#politique-confidentialite .responsable a {
  text-decoration: none;
  color: black;
}
@media only screen and (min-width: 1024px) {
  #politique-confidentialite {
    padding-top: 80px;
  }
  #politique-confidentialite h1 {
    font-size: 2em;
  }
  #politique-confidentialite h2 {
    font-size: 1.5em;
  }
  #politique-confidentialite .responsable {
    padding-bottom: 76px;
  }
}
#page-404 {
  padding-top: 10px;
  padding-bottom: 100px;
}
#page-404 p {
  color: black;
  text-transform: uppercase;
  font-size: 1.3em;
  font-weight: bold;
}
@media only screen and (min-width: 1024px) {
  #page-404 {
    padding-top: 60px;
    padding-bottom: 378px;
  }
  #page-404 p {
    font-size: 2em;
  }
}
#popup {
  margin: auto auto;
  background-color: #003764;
  /* Couleur du background principal */
  position: fixed;
  bottom: 0;
  z-index: 5000 /*Mets le div en avant plan */;
  height: 150px;
  display: block;
  transition: all ease 2s;
  width: 100%;
}
#popup > div {
  width: 95%;
  margin: auto;
}
#popup.remove-popup {
  bottom: -100%;
}
p.text-cookies {
  padding: 15px 0;
  color: white !important;
  /* Couleur du texte */
  font-size: 0.7em;
  /* en mobile */
  margin-top: 0;
}
p.text-cookies a {
  color: #A5A6A8;
  text-decoration: unset;
}
button#buttonCookie {
  background-color: #003764;
  text-transform: uppercase;
  color: white;
  border: 1px solid white;
  padding: 0.25em 0.75em;
  margin-left: auto;
  display: block;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  p.text-cookies {
    font-size: 1em;
  }
}
