@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-Bold.woff2") format("woff2"), url("../fonts/Mont-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-Regular.woff2") format("woff2"), url("../fonts/Mont-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont-Light.woff2") format("woff2"), url("../fonts/Mont-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
.fade-in, .button {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.fade-in.visible, .button.visible {
  opacity: 1;
  transform: translateY(0);
}

body {
  font-family: "Mont", sans-serif;
  text-align: justify;
}

a.button {
  cursor: pointer;
  padding: 10px 20px;
  color: #ffffff;
  font-size: 16px;
  border-radius: 500px;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}
a.button:hover {
  background-color: #ffffff;
}
a.button-blue {
  background-color: #004f8f;
}
a.button-blue:hover {
  background-color: #ffffff;
  color: #273f52;
}
a.button-green {
  background-color: #47877f;
}
a.button-green:hover {
  background-color: #ffffff;
  color: #273f52;
}
a.button-pink {
  background-color: #d81e5c;
}
a.button-pink:hover {
  color: #d81e5c;
}
a.button-white {
  background-color: #e8f0fa;
  color: #273f52;
}
a.button-white:hover {
  background-color: #004f8f;
  color: #ffffff;
}

.site-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: transparent;
  transition: background-color 0.3s ease;
  z-index: 9;
}
.site-header .site-logo img {
  max-height: 60px;
}
.site-header .menu-toggle {
  cursor: pointer;
  font-size: 28px;
  color: #ffffff;
  z-index: 9;
}
.site-header.scrolled {
  background-color: #004f8f;
}
.site-header.scrolled .site-nav {
  border: none;
}
.site-header .site-nav {
  border-bottom: 1px solid #ffffff;
  padding: 10px 0;
}
.site-header .site-nav .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
}
.site-header .site-nav .menu > li {
  position: relative;
  text-align: center;
}
.site-header .site-nav .menu > li a,
.site-header .site-nav .menu > li span {
  font-size: 15px;
  text-decoration: none;
  color: #ffffff;
  padding: 5px 10px;
}
.site-header .site-nav .menu > li a:hover,
.site-header .site-nav .menu > li span:hover {
  background-color: #d81e5c;
  border-radius: 500px;
}
.site-header .site-nav .menu > li.menu-item-has-children span {
  cursor: default;
  border-radius: 500px;
  position: relative;
  z-index: 1;
}
.site-header .site-nav .menu > li.menu-item-has-children span:hover {
  background-color: #004f8f;
}
.site-header .site-nav .menu > li.menu-item-has-children:hover > span {
  background-color: #004f8f;
}
.site-header .site-nav .menu > li.menu-item-has-children .submenu {
  display: none;
  position: absolute;
  list-style: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #004f8f;
  width: 100%;
  left: -24px;
  top: 10px;
  z-index: 0;
  padding: 30px 5px 10px 5px;
  border-radius: 0 0 20px 20px;
}
.site-header .site-nav .menu > li.menu-item-has-children .submenu li {
  padding: 10px 0;
}
.site-header .site-nav .menu > li.menu-item-has-children .submenu li a {
  color: #ffffff;
  font-weight: 300;
}
.site-header .site-nav .menu > li.menu-item-has-children .submenu li a:hover {
  background-color: transparent;
}
.site-header .site-nav .menu > li.menu-item-has-children:hover .submenu {
  display: flex;
}

@media screen and (max-width: 1000px) {
  .site-header {
    flex-direction: column;
    background-color: #004f8f;
  }
  .site-header .container-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .site-header .site-nav {
    border-bottom: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s ease;
    padding: 0;
  }
  .site-header .site-nav.active {
    max-height: 800px;
    opacity: 1;
    transform: translateY(0);
  }
  .site-header .site-nav .menu {
    flex-direction: column;
    padding-bottom: 20px;
    gap: 20px;
  }
  .site-header .site-nav .menu > li {
    width: 100%;
  }
  .site-header .site-nav .menu > li:last-child:not(.has-children) {
    margin-bottom: 60px;
  }
  .site-header .site-nav .menu > li span,
  .site-header .site-nav .menu > li a {
    display: block;
    padding: 10px 20px;
  }
  .site-header .site-nav .menu > li.menu-item-has-children .submenu {
    display: flex;
    padding-left: 20px;
    position: static;
    padding: 0;
    margin: 0;
  }
  .site-header .site-nav .menu > li.menu-item-has-children .submenu li {
    padding: 0;
  }
  .site-header .site-nav .menu > li.menu-item-has-children .submenu li a {
    padding: 20px;
  }
}
#introduction {
  background-size: cover;
  background-position: center;
  margin-top: -25px;
  height: 93vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  color: #ffffff;
  text-align: left;
}
@media screen and (max-width: 1000px) {
  #introduction {
    justify-content: flex-end;
  }
}
#introduction .introduction-txt {
  padding: 5%;
  width: 60%;
  line-height: 4em;
}
@media screen and (max-width: 1000px) {
  #introduction .introduction-txt {
    width: 100%;
    text-align: center;
    padding-bottom: 75px;
  }
}
#introduction .introduction-txt h1 {
  font-size: 4em;
  font-weight: bold;
  margin: 0;
  text-shadow: rgba(39, 63, 82, 0.5568627451) 0px 0px 2px;
  line-height: 1.1em;
}
#introduction .introduction-txt h2 {
  font-size: 2em;
  font-weight: 400;
  margin: 20px 0 5% 0;
  line-height: 1.1em;
  text-shadow: rgba(39, 63, 82, 0.5568627451) 0px 0px 2px;
}
@media screen and (max-width: 1000px) {
  #introduction .introduction-txt h2 {
    margin: 20px 0;
  }
}
#introduction .introduction-txt p {
  line-height: 1.2em;
  font-size: 16px;
  text-shadow: rgba(39, 63, 82, 0.5568627451) 0px 0px 2px;
}

#services-bar {
  background-color: #004f8f;
}
#services-bar ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  flex-wrap: wrap;
  padding: 30px;
}
@media screen and (max-width: 1000px) {
  #services-bar ul {
    gap: 20px;
  }
}
#services-bar li {
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  padding: 0 8px;
}
@media screen and (max-width: 1000px) {
  #services-bar li {
    border: none !important;
  }
}
#services-bar li:last-child {
  border-right: none;
}
#services-bar li:first-child {
  border-left: none;
}
#services-bar li a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  padding: 8px 15px;
  border: 1px solid transparent;
  border-radius: 500px;
  transition: all 0.2s ease;
  background-color: transparent;
}
#services-bar li a:hover {
  border-color: #e8f0fa;
  background-color: #ffffff;
  color: #273f52;
}

section#flex-light-blue {
  position: relative;
  padding: 5%;
  background-color: #e8f0fa;
  background-size: 50% auto;
  background-position: right -10% center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
}
@media screen and (max-width: 1000px) {
  section#flex-light-blue {
    padding: 80px 5%;
  }
}
section#flex-light-blue .services-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 1000px) {
  section#flex-light-blue .services-list {
    gap: 50px;
  }
}
section#flex-light-blue .services-list .service-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10%;
}
@media screen and (max-width: 1000px) {
  section#flex-light-blue .services-list .service-item {
    flex-direction: column-reverse;
    gap: 30px;
  }
}
section#flex-light-blue .services-list .service-item-no-img {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px;
}
section#flex-light-blue .services-list .service-item .service-image {
  flex: 1;
}
@media screen and (max-width: 1000px) {
  section#flex-light-blue .services-list .service-item .service-image {
    width: 100%;
  }
}
section#flex-light-blue .services-list .service-item .service-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
section#flex-light-blue .services-list .service-item .service-description {
  flex: 1;
  color: #273f52;
}
section#flex-light-blue .services-list .service-item .service-description h3 {
  margin: 0 0 10px 0;
  font-size: 32px;
  line-height: 1.2em;
  text-align: left;
}
section#flex-light-blue .services-list .service-item .service-description p {
  font-size: 15px;
  margin-bottom: 20px;
}
section#flex-light-blue .services-list .service-item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1000px) {
  section#flex-light-blue .services-list .service-item:nth-child(even) {
    flex-direction: column;
  }
}

.encart {
  display: flex;
  padding: 120px 5%;
  gap: 10%;
}
@media screen and (max-width: 1000px) {
  .encart {
    flex-direction: column;
    padding: 80px 5%;
    gap: 50px;
  }
}
.encart-image {
  background-size: cover;
  width: 100%;
  border-radius: 10px;
  flex: 1;
  min-height: 350px;
}
@media screen and (max-width: 1000px) {
  .encart-image {
    height: 300px;
    flex: unset;
  }
}
.encart-texte {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.encart-texte h3 {
  margin: 0;
  text-align: left;
}
.encart-texte p {
  font-size: 15px;
}
.encart-recrutement {
  background-position: left -50% center;
  background-color: #47877f;
  color: #ffffff;
  background-size: 50%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1000px) {
  .encart-recrutement {
    background-position: 700px -70px;
  }
}
.encart-contact {
  background-color: #e8f0fa;
  color: #273f52;
}

section#pourquoi-choisir-o2 {
  color: #273f52;
  background-color: #ffffff;
  padding: 120px 1%;
  background-size: cover;
  background-position: bottom 10% center;
}
section#pourquoi-choisir-o2 h2 {
  font-size: 36px;
  text-align: center;
  margin: 0 0 80px 0;
  color: #ffffff;
  text-shadow: rgba(39, 63, 82, 0.5568627451) 0px 0px 2px;
}
section#pourquoi-choisir-o2 .grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 50px;
}
@media screen and (max-width: 1000px) {
  section#pourquoi-choisir-o2 .grid-container {
    grid-template-columns: 1fr;
  }
}
section#pourquoi-choisir-o2 .grid-container .grid-item {
  color: #ffffff;
  overflow: hidden;
  text-align: center;
  padding: 20px;
  background-size: cover;
  background-position: center;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 330px;
  margin: auto;
}
section#pourquoi-choisir-o2 .grid-container .grid-item .grid-picto img {
  max-width: 60px;
  height: auto;
}
section#pourquoi-choisir-o2 .grid-container .grid-item h3 {
  margin: 0;
}
section#pourquoi-choisir-o2 .grid-container .grid-item p {
  font-size: 14px;
}

main.service #introduction, main.nous-choisir #introduction {
  height: 99vh;
}
main.service #introduction .introduction-txt h1, main.nous-choisir #introduction .introduction-txt h1 {
  font-size: 3em;
}
@media screen and (max-width: 1000px) {
  main.service #introduction .introduction-txt h1, main.nous-choisir #introduction .introduction-txt h1 {
    font-size: 2.5em;
  }
}
main.service #introduction .introduction-txt p, main.nous-choisir #introduction .introduction-txt p {
  line-height: 1.4em;
}

footer {
  background-color: #004f8f;
  color: #ffffff;
  padding: 50px 0;
  font-size: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
footer .logo img {
  max-height: 100px;
}
footer div.menus {
  display: flex;
  justify-content: space-around;
  align-items: start;
}
@media screen and (max-width: 1000px) {
  footer div.menus {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }
}
footer div.menus div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1;
}
footer p {
  margin: 0;
}
footer a {
  color: #ffffff;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
  color: #e8f0fa;
}
footer a:visited {
  color: #ffffff;
}
footer .socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
footer .socials img {
  max-width: 35px;
}

.mentions h1,
.contact-page h1,
.recrutement-page h1 {
  padding: 10%;
  text-align: center;
  background-color: #004f8f;
  margin: 0;
  color: #ffffff;
}
@media screen and (max-width: 1000px) {
  .mentions h1,
  .contact-page h1,
  .recrutement-page h1 {
    padding: 100px 30px;
  }
}
.mentions .page-content,
.contact-page .page-content,
.recrutement-page .page-content {
  padding: 5% 10%;
}
.mentions .page-content a,
.contact-page .page-content a,
.recrutement-page .page-content a {
  color: #47877f;
}

.contact-page h1 {
  background-color: unset !important;
}
.contact-page {
  background-color: #004f8f;
  color: #ffffff;
  background-size: cover;
  background-position: bottom 10% center;
}
.contact-page a {
  color: #273f52;
  text-decoration: none;
}
.contact-page .contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  font-size: 15px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1000px) {
  .contact-page .contact-container {
    flex-direction: column;
  }
}
.contact-page .contact-container .coordonnees,
.contact-page .contact-container form {
  background-color: #e8f0fa;
  color: #273f52;
  padding: 50px;
  border-radius: 20px;
}
.contact-page .contact-container .coordonnees {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact-page .contact-container .coordonnees .adresse p {
  margin: 0;
}
.contact-page .contact-container .coordonnees img {
  max-height: 35px;
  margin-bottom: 30px;
}

.recrutement-page {
  background-color: #e8f0fa;
}
.recrutement-page .recrutement-container {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 10%;
  padding: 5%;
  font-size: 15px;
  padding-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  .recrutement-page .recrutement-container {
    flex-direction: column;
  }
}
.recrutement-page .recrutement-container .texte,
.recrutement-page .recrutement-container .offres {
  flex: 1;
}
.recrutement-page .recrutement-container .texte {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.recrutement-page .recrutement-container .offres {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  .recrutement-page .recrutement-container .offres {
    width: 100%;
    padding-top: 50px;
  }
}
.recrutement-page .recrutement-container .offres a {
  color: #273f52;
  text-decoration: none;
}
.recrutement-page .recrutement-container .offres .offre-item {
  background-color: #ffffff;
  color: #273f52;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #ffffff;
  transition: all 0.3s ease;
}
.recrutement-page .recrutement-container .offres .offre-item:hover {
  background-color: #e8f0fa;
  border: 1px solid #004f8f;
}

form input {
  width: 100%;
}
form input[type=submit] {
  width: unset;
  cursor: pointer;
  padding: 10px 20px;
  color: #ffffff;
  font-size: 16px;
  border-radius: 500px;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  background-color: #d81e5c;
  border: #d81e5c 1px solid;
}
form input[type=submit]:hover {
  background-color: #ffffff;
  color: #d81e5c;
  border: #d81e5c 1px solid;
}

#candidature {
  padding: 5%;
  width: 75%;
  max-width: 700px;
  margin: auto;
}
@media screen and (max-width: 1000px) {
  #candidature {
    width: 100%;
  }
}
#candidature h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
}

main.offre {
  background-color: #004f8f;
  padding-top: 120px;
}
main.offre .offre-container {
  background-color: #e8f0fa;
  padding: 5%;
}
main.offre .offre-container h1 {
  margin-top: 50px;
}
main.offre .offre-container .offre-description-details {
  display: flex;
  justify-content: start;
  align-items: start;
}
main.offre .offre-container .offre-description-details p {
  color: #004f8f;
  font-weight: bold;
  text-align: left;
}
main.offre .offre-container .offre-description-details p:first-child {
  border-right: 2px solid #d81e5c;
  padding-right: 20px;
  margin-right: 20px;
}

main.nous-choisir #introduction {
  background-position: top center;
}

/*# sourceMappingURL=custom-style.css.map */
