@font-face {
  font-family: "font-extrabold";
  src: url("../../fonts/OpenSans-Bold.ttf") format("opentype");
}

@font-face {
  font-family: "font-light";
  src: url("../../fonts/OpenSans-Light.ttf") format("opentype");
}

@font-face {
  font-family: "font-regular";
  src: url("../../fonts/OpenSans-Regular.ttf") format("opentype");
}

@font-face {
  font-family: "font-big";
  src: url("../../fonts/OpenSans-ExtraBold.ttf") format("opentype");
}

/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  background-color: #FFFFFF;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  text-decoration: none;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

/*===== VARIABLES CSS =====*/
:root {
  --header-height: 5vh;
  --nav-name-font-size: 1.5rem;
  --normal-font-size: .938rem;
  /*===== z index =====*/
  --z-fixed: 100;
}

@media screen and (min-width: 768px) {
  :root {
    --nav-name-font-size: 1rem;
    --normal-font-size: 1rem;
  }
}

*::-moz-selection {
  color: #FFDC1C;
  opacity: 1 !important;
  background-color: transparent;
}

*::selection {
  color: #FFDC1C;
  opacity: 1 !important;
  background-color: transparent;
}

html, body, * {
  scroll-behavior: smooth !important;
}

.barrejaune {
  height: 5px;
  background-color: #FFDC1C;
}

/*===== BASE =====*/
*, ::before, ::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 10vh 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: 600;
  font-family: font-extrabold;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

.bd-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
      grid-template-columns: 100%;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

/*===== HEADER =====*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 10vh;
  padding: 0 1rem;
  background-color: #0058a0;
  z-index: var(--z-fixed);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header__logo {
  color: #f0f0f3;
}

.header__toggle {
  font-size: 1.7rem;
  cursor: pointer;
  color: #f0f0f3;
}

.nav__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.nav__contact button {
  background-color: #FFDC1C;
  font-weight: bold;
  color: #0058a0;
  padding: 1vh 1vw;
  border-radius: 20px;
  border: none;
}

.nav__contact a {
  color: #0058a0;
}

.nav__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}

.nav__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
}

.nav__img img {
  width: 70px;
}

.nav__name {
  display: block;
  font-size: var(--nav-name-font-size);
  color: #f0f0f3;
}

.nav__item {
  margin-bottom: 2rem;
}

.nav__link {
  color: #f0f0f3;
}

.nav__link:hover {
  color: #FFDC1C;
  -webkit-transition: 0.45s;
  transition: 0.45s;
}

/*===== NAV =====*/
@media screen and (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    background-color: #0058a0;
    width: 80%;
    height: 100vh;
    padding: 2rem 0;
    z-index: var(--z-fixed);
    -webkit-transition: .75s;
    transition: .75s;
    overflow-y: auto;
    -webkit-box-shadow: 7px 1px 17px 3px rgba(0, 0, 0, 0.71);
            box-shadow: 7px 1px 17px 3px rgba(0, 0, 0, 0.71);
  }
  .nav__contact button {
    padding: 10px 15px 10px 15px;
  }
}

/*Show menu*/
.show {
  left: 0;
}

/*=== Dropdown ===*/
.dropdown__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.dropdown__icon {
  font-size: 1.3rem;
  -webkit-transition: .5s;
  transition: .5s;
}

.dropdown__menu {
  margin: 1rem 0 0 1rem;
  display: none;
}

.dropdown__item {
  margin: 1rem 0;
}

.dropdown:hover > .dropdown__menu {
  display: block;
}

.dropdown:hover .dropdown__icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: .65s;
  transition: .65s;
}

/* ===== MEDIA QUERIES=====*/
@media screen and (min-width: 576px) {
  .nav {
    width: 288px;
  }
}

@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
  .dropdown__item .nav__link {
    color: #f0f0f3;
  }
  .header {
    height: calc(6.5vh + 1rem);
  }
  .header__logo, .header__toggle {
    display: none !important;
  }
  .nav {
    width: 100%;
  }
  .nav__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav__image {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: initial;
    margin-bottom: 0;
  }
  .nav__img {
    width: 40px;
    height: 40px;
    margin-right: .5rem;
    margin-bottom: 0;
  }
  .nav__img img {
    width: 46px;
  }
  .nav__name {
    color: #f0f0f3;
  }
  .nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .nav__item {
    margin: 0 1.5rem;
    padding: 1.4rem 0;
  }
  .nav__link {
    color: #f0f0f3;
  }
  .nav__link:hover {
    color: #FFDC1C;
    -webkit-transition: 350ms;
    transition: 350ms;
  }
  /*Active link new color*/
  .active {
    color: #FFDC1C !important;
  }
  .dropdown {
    position: relative;
  }
  .dropdown__menu {
    background-color: #0058a0;
    position: fixed;
    margin: 0;
    padding: .5rem 1.5rem;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    border-radius: .5rem;
  }
  .dropdown__item {
    margin: .5rem 0;
    color: #f0f0f3;
  }
}

.header__logo span, .nav__name span {
  color: #FFDC1C;
}

footer {
  background-color: #0058a0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 5vh;
  margin-top: 15vh;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: font-extrabold;
}

.logo a {
  color: #f0f0f3;
  padding-left: 1vw;
}

.logo span {
  color: #FFDC1C;
}

.footer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
}

.footer__item nav {
  color: #f0f0f3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__item h5 {
  color: #f0f0f3;
  font-size: 18px;
  font-family: font-extrabold;
}

.footer__item a {
  color: #f0f0f3;
  font-size: 12px;
  text-decoration: none;
  font-family: font-regular;
}

.footer__item a:hover {
  color: #FFDC1C;
  -webkit-transition: 0.555s;
  transition: 0.555s;
}

@media screen and (max-width: 768px) {
  footer {
    font-size: 12px;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    text-align: left;
    padding: 2vh;
  }
  .footer__item {
    text-align: left;
  }
  .logo {
    display: none;
  }
}

html, * {
  font-family: font-regular;
}

h1 {
  margin: 15vh 0 3vh 0;
  text-align: center;
  font-family: font-big;
}

main {
  font-family: font-regular;
}

.main__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin: 5vh 8vw 5vh 10vw;
  height: 70vh;
}

.infos__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 30%;
  height: 100%;
}

.infos__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2vh;
}

.infos__container box-icon {
  fill: #0058a0;
}

.infos__container a {
  font-family: font-regular;
  color: #0058a0;
  font-size: 22px;
  padding-left: 1vw;
}

.infos__container a:hover {
  text-decoration: underline;
}

.spe__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80%;
  height: 140px;
  background-color: #0058a0;
  border-radius: 15px;
  margin-top: 2vh;
  color: #f0f0f3;
}

.spe__container img {
  height: 100px;
  border-radius: 200px;
}

.spe__name {
  color: #FFDC1C;
}

.spe__infos {
  width: 50%;
  margin: 10px;
}

.spe__detail {
  font-weight: bold;
}

.spe__num {
  color: #f0f0f3;
}

.spe__num:hover {
  color: #FFDC1C;
  -webkit-transition: .55s ease-in-out;
  transition: .55s ease-in-out;
}

.contact__map {
  width: 70%;
  background-color: #003e8567;
}

.contact__link {
  background-color: #003e85;
  height: 10%;
  width: 100%;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1281px) {
  .main__contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin: 0;
    height: auto;
  }
  .infos__main {
    width: 90%;
    font-size: 18px;
    margin-bottom: 1vh;
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: (0.25fr)[3] 1fr;
        grid-template-rows: repeat(3, 0.25fr) 1fr;
  }
  .infos__container a {
    margin-left: .5vw;
    font-size: 16px;
  }
  .contact__map {
    width: 90%;
    height: 45vh;
  }
  .spe__container {
    width: 70%;
  }
  .flex--basis {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

@media screen and (max-width: 500px) {
  .spe__container {
    width: 95%;
    font-size: calc(.6em + 0.5vw);
    height: 120px;
  }
  .infos__main {
    width: 90%;
    padding: 5px;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: (0.25fr)[3] 1fr;
        grid-template-rows: repeat(3, 0.25fr) 1fr;
  }
  .spe__container img {
    margin-left: 5px;
  }
}

@media screen and (min-width: 500px) and (max-width: 900px) {
  .spe__container {
    width: 95%;
  }
}
/*# sourceMappingURL=contact.css.map */