body {
  margin: 0;
}

body header #nouvelles_regles {
  width: 100%;
  height: 50px;
  background-color: black;
  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;
  color: white;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 18px;
}

@media screen and (max-width: 375px) {
  body header #nouvelles_regles {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    text-align: center;
  }
}

body header #nouvelles_regles strong {
  color: red;
}

body header #nouvelles_regles a {
  color: blue;
}

body header #nouvelles_regles span {
  margin-left: 10px;
}

body header #nouvelles_regles img {
  width: 145px;
  height: 50px;
}

body header nav {
  width: 100%;
  height: 100px;
  background-color: #3c6997;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

@media screen and (max-width: 375px) {
  body header nav {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

body header nav #nav-links {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
}

body header nav #nav-links a:hover {
  color: #ff6666;
}

@media screen and (max-width: 375px) {
  body header nav #nav-links {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
}

body header nav #nav-links .dropdown-menu .dropdown:hover .dropdown-content {
  display: block;
}

body header nav #nav-links .dropdown-menu .dropdown {
  position: relative;
  display: inline-block;
}

body header nav #nav-links .dropdown-menu .dropdown .dropbtn {
  background-color: inherit;
  outline: none;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

body header nav #nav-links .dropdown-menu .dropdown .dropbtn:hover {
  color: #ff6666;
}

body header nav #nav-links .dropdown-menu .dropdown .dropbtn a {
  font-weight: 600;
}

body header nav #nav-links .dropdown-menu .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  font-family: 'Lato', sans-serif;
}

body header nav #nav-links .dropdown-menu .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-family: 'Lato', sans-serif;
}

body header nav #nav-links .dropdown-menu .dropdown-content a:hover {
  background-color: #f1f1f1;
  color: #ff6666;
}

body header nav #nav-links li {
  display: inline;
  list-style-type: none;
  color: white;
  margin-left: 25px;
  margin-right: 25px;
}

body header nav #nav-links li a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}

@media screen and (max-width: 375px) {
  body header nav #nav-links .link {
    display: none;
  }
}

body header nav .burger_menu {
  width: auto;
  height: auto;
  margin: auto 50px;
  padding-bottom: 10px;
  display: none;
}

@media screen and (max-width: 375px) {
  body header nav .burger_menu {
    display: initial;
  }
}

body header nav .burger_menu .menu-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0px;
  width: 20px;
  height: 28px;
}

body header nav .burger_menu .menu-btn .menu_btn_burger {
  position: relative;
  border-radius: 10px;
  width: 20px;
  height: 4px;
  background-color: white;
}

body header nav .burger_menu .menu-btn .menu_btn_burger::after, body header nav .burger_menu .menu-btn .menu_btn_burger::before {
  content: '';
  position: absolute;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background-color: white;
}

body header nav .burger_menu .menu-btn .menu_btn_burger::before {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}

body header nav .burger_menu .menu-btn .menu_btn_burger::after {
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
}

body header nav .burger_menu .menu-btn.open .menu_btn_burger {
  background: transparent;
}

body header nav .burger_menu .menu-btn.open ::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

body header nav .burger_menu .menu-btn.open ::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

body header .navOpen a {
  font-family: 'Lato', sans-serif;
}

body header .menu {
  width: 100%;
  background-color: whitesmoke;
  z-index: 9999;
}

body header .menu a {
  font-family: "Revalia";
  text-decoration: none;
  display: block;
  padding: 30px;
  text-align: center;
}

body header .menu a:hover {
  color: #ff6666;
}

body header .nav {
  height: 0;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

body header .nav a {
  color: transparent;
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
}

body header .navOpen {
  height: auto;
  display: initial;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

body header .navOpen a {
  color: black;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}

body header .navOpen a {
  font-family: 'Lato', sans-serif;
}

body #prevention {
  width: 100%;
  height: auto;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background-color: #ff6666;
  color: white;
  font-family: 'Lato', sans-serif;
}

body #prevention h1 {
  font-size: 30px;
}

@media screen and (max-width: 375px) {
  body #prevention h1 {
    font-size: 20px;
  }
}

body #prevention p {
  width: 40%;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -webkit-margin-after: 50px;
          margin-block-end: 50px;
}

@media screen and (max-width: 375px) {
  body #prevention p {
    width: 80%;
  }
}

body #chiots {
  width: 100%;
  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;
  background-color: #db9d47;
  color: white;
}

body #chiots h2 {
  font-size: 30px;
  font-family: 'Lato', sans-serif;
}

@media screen and (max-width: 375px) {
  body #chiots h2 {
    font-size: 20px;
  }
}

body #chiots p {
  width: 85%;
  font-family: 'Lato', sans-serif;
}

body #chiots #container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 375px) {
  body #chiots #container {
    -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;
  }
}

body #chiots #container .container-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 33%;
}

@media screen and (max-width: 375px) {
  body #chiots #container .container-items {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

body #chiots #container .container-items a {
  -webkit-margin-after: 25px;
          margin-block-end: 25px;
  color: white;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
}

body #chiots #container .container-items a:hover {
  color: #ff6666;
}

body footer {
  width: 100%;
  height: auto;
  background-color: black;
  color: white;
  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;
  font-family: 'Lato', sans-serif;
}

body footer li a {
  color: inherit;
}

@media screen and (max-width: 375px) {
  body footer {
    -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;
  }
}

body footer #contact {
  -webkit-margin-before: 25px;
          margin-block-start: 25px;
}

body footer #contact p {
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

body footer li {
  list-style-type: none;
}

body footer #reseaux {
  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;
  -webkit-margin-before: 25px;
          margin-block-start: 25px;
}

body footer #reseaux span {
  text-align: center;
}

body footer #reseaux ul {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}

body footer #reseaux ul li {
  display: inline;
  margin-left: 20px;
  margin-right: 20px;
}

body footer #reseaux ul #fb i {
  color: #1976d2;
}

body footer #reseaux ul #insta i {
  color: #ff1400;
}

body footer #reseaux ul #snap {
  color: yellow;
}

body footer #liens {
  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;
  -webkit-margin-before: 25px;
          margin-block-start: 25px;
}

body footer #liens ul {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}

body footer #liens ul li a {
  text-decoration: none;
}
/*# sourceMappingURL=style_chiots.css.map */