.bgmain {
  background: #f42b3d; }

.bgwhite {
  background: #fff; }

.bglight {
  background: #f5f5f5; }

.bggrey {
  background: #666; }

.bgdark {
  background: #343a40; }

.text-main {
  color: #f42b3d; }

.text-white {
  color: #fff; }

a {
  color: #f42b3d;
  text-decoration: none; }

.shadow {
  box-shadow: 0px 0px 10px gainsboro; }

/*** BUTTON ** */
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0; }

.btn {
  border: 2px solid;
  background: #f42b3d;
  color: #fff;
  padding: 10px;
  text-transform: uppercase; }
  .btn:hover {
    background: #e00c1f; }

/*** TYPO ** */
a.underline {
  font-size: 0.9rem;
  color: #000; }

.text-muted {
  color: #666; }

.lnr-arrow-right-circle {
  color: #F42B3D; }

h1, h2, h3, h4, h5 {
  font-family: "Luciole", sans-serif;
  font-weight: bold; }

h1 {
  font-size: 1.7rem; }

h2 {
  text-align: center;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 20px; }

h3 {
  font-size: 1.5rem;
  color: #feb217; }

h2::before {
  height: 5px;
  position: absolute;
  content: "";
  transition: all 0.35s ease;
  background: linear-gradient(135deg, #F42B3D, #E89A12);
  width: 0; }
h2.center::before {
  bottom: 0;
  left: 0;
  right: 0;
  width: 8%;
  margin: auto; }
h2.right::before {
  bottom: 0;
  right: 0;
  width: 8%;
  margin: auto; }
h2.left::before {
  bottom: 0;
  left: 0;
  width: 8%;
  margin: auto; }

strong {
  font-weight: 600; }

p, li {
  line-height: 1.7; }

.bord-bottom {
  border-bottom: 1px solid #ccc; }

.bord-left {
  border-left: 1px solid #ccc; }

.bord-top {
  border-top: 1px solid #ccc; }

.bord-right {
  border-right: 1px solid #ccc; }

.breadcrumb {
  font-size: 0.8rem; }

/**** NAVIGATION *** */
.hamburger {
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  cursor: pointer;
  background: #fff;
  font: inherit;
  line-height: inherit;
  color: inherit;
  line-height: 0;
  text-align: left;
  text-transform: none;
  border: 0;
  margin: 0;
  overflow: visible; }

.hamburger-label {
  position: relative;
  display: inline-block;
  margin-right: 15px;
  font-size: 25px;
  line-height: 18px;
  color: #434242;
  vertical-align: middle;
  letter-spacing: 1px; }
  .hamburger-label span {
    position: absolute;
    right: 0;
    top: 0;
    background: #fff;
    opacity: 0;
    transition: opacity 300ms; }

.hamburger-box {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 18px; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #f42b3d;
  border-radius: 0px; }
  .hamburger-inner:before, .hamburger-inner:after {
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #f42b3d;
    border-radius: 0px; }
  .hamburger-inner:before, .hamburger-inner:after {
    content: "";
    display: block; }
  .hamburger-inner:before {
    top: -8px; }
  .hamburger-inner:after {
    bottom: -8px; }

.hamburger-spin, .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger-spin, .hamburger-inner:after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .is-active .hamburger-inner:before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .is-active .hamburger-inner:after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

#menu-nav {
  position: fixed;
  top: 21%;
  right: -150%;
  bottom: 0;
  width: 40%;
  z-index: 250;
  overflow-x: hidden;
  transition: right 650ms cubic-bezier(0.215, 0.61, 0.355, 1); }
  @media screen and (max-width: 991px) {
    #menu-nav {
      width: 100%; } }
  #menu-nav .menu-item {
    list-style-type: none;
    padding: 20px 12px; }
  #menu-nav .menu-link, #menu-nav .menu-item span {
    color: #424242; }
  #menu-nav .has-children span:hover {
    color: #c80a1b;
    cursor: pointer; }
  #menu-nav .sub-menu {
    font-size: 0.9rem;
    padding: 5px 15px;
    margin-bottom: 20px;
    display: none; }
  #menu-nav .open .sub-menu {
    display: block; }
  #menu-nav .sub-menu ul li {
    list-style-type: none;
    padding-top: 7px;
    text-transform: capitalize; }
  #menu-nav .open span {
    color: #c80a1b; }

/*** FORMS ** */
input, textarea, select {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  width: 100%; }

input[type=checkbox] {
  margin-top: 10px;
  display: none; }

.form-check-label {
  position: relative;
  margin-left: 25px;
  font-size: 15px; }
  .form-check-label::before {
    content: "";
    height: 20px;
    border: #f42b3d 1px solid;
    position: absolute;
    top: -4px;
    left: -25px;
    width: 20px; }
  .form-check-label.check::after {
    content: "";
    position: absolute;
    top: 1px;
    left: -20px;
    width: 10px;
    height: 10px;
    background: #f42b3d; }

.search-hide {
  display: none; }

.w-100 {
  max-width: 100%; }

.w-50 {
  max-width: 50%; }

.text-center {
  text-align: center; }

.text-right {
  text-align: right; }

.text-left {
  text-align: left; }

.object-fit {
  object-fit: cover;
  width: 100%;
  height: 100%; }

.breadcrumb {
  padding: 0; }
  .breadcrumb li {
    display: inline-block;
    text-transform: uppercase; }
    .breadcrumb li a {
      color: #666; }
    .breadcrumb li::after {
      content: ">";
      margin-left: 5px;
      margin-right: 5px; }
    .breadcrumb li:last-child::after {
      content: none; }

@media (min-width: 1200px) {
  .container {
    max-width: 1140px !important; } }
@media (min-width: 1399px) {
  .container {
    max-width: 1200px !important; } }
@media (min-width: 1599px) {
  .container {
    max-width: 1300px !important; } }
html {
  margin: 0; }

@font-face {
  font-family: "Luciole";
  src: url("../font/Luciole-Regular.eot");
  src: url("../font/Luciole-Regular.eot?#iefix") format("embedded-opentype"), url("../font/Luciole-Regular.woff") format("woff"), url("../font/Luciole-Regular.ttf") format("truetype");
  font-weight: 300;
  font-style: normal; }
body {
  margin: 0;
  font-family: "Luciole", sans-serif;
  font-size: 1.1rem;
  font-weight: lighter;
  font-style: normal; }

/*** ELEMENT ** */
#home .left_home {
  background: #f42b3d; }
  #home .left_home .welcome {
    margin-left: 15%; }
    #home .left_home .welcome h1 {
      font-size: 40px;
      margin-top: 25px;
      padding-top: 100px;
      margin-bottom: 15px;
      color: #fff; }
    #home .left_home .welcome hr {
      max-width: 150px;
      height: 6px;
      background: #fff;
      margin: 0;
      border: none;
      margin-bottom: 40px; }
#home .home_right {
  background: #f5f5f5;
  background: url("../images/groupe.jpg");
  background-repeat: no-repeat;
  padding-bottom: 90px;
  padding-top: 100px; }
  #home .home_right .carousel-actu img {
    height: 350px; }
  #home .home_right .carousel-actu .owl-nav {
    position: absolute;
    bottom: 21px;
    background: #fff;
    font-size: 30px;
    padding: 5px 19px 0px;
    display: flex;
    align-items: center; }
    #home .home_right .carousel-actu .owl-nav button {
      color: #f42b3d; }
      #home .home_right .carousel-actu .owl-nav button:hover {
        color: #666; }

body {
  position: relative; }

#site-content {
  min-height: 100vh;
  padding-bottom: 350px; }

footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  background: darkgray; }

.ray-right {
  position: absolute;
  right: 0;
  width: 300px;
  top: 350px;
  height: 50px;
  background: url("../images/trait.png");
  background-repeat: repeat; }
  @media screen and (max-width: 991px) {
    .ray-right {
      display: none; } }

.ray-left {
  position: absolute;
  left: 0;
  width: 300px;
  top: 350px;
  height: 50px;
  background: url("../images/trait.png");
  background-repeat: repeat; }
  @media screen and (max-width: 991px) {
    .ray-left {
      display: none; } }

.minus-top {
  top: 20%; }

.textBox {
  margin-left: -25px;
  margin-top: 80px; }
  @media screen and (max-width: 991px) {
    .textBox {
      margin-left: 0;
      margin-top: 10px; } }

@media screen and (max-width: 991px) {
  .homeBox {
    margin-left: 0; } }

.menu_footer li {
  list-style-type: none;
  text-align: right; }

.entry-title {
  font-size: 1.5rem; }

#entry-btn {
  position: absolute;
  bottom: -20px; }
  @media screen and (max-width: 991px) {
    #entry-btn {
      position: relative;
      float: right;
      bottom: 12px; } }

#mobileHome {
  display: none; }

#navBottom, #about {
  position: relative;
  margin-top: -20px; }

.nav-item-bottom {
  color: #fff; }
  .nav-item-bottom:hover {
    color: #fff; }

.nav-bottom:hover {
  background: #696f75; }

/**** HEADER ** */
header {
  position: relative;
  z-index: 99999;
  box-shadow: 0px 0px 2px #ccc; }

/*** ACTU ** */
.img-actu {
  height: 100%;
  width: 100%;
  object-fit: cover; }

#partenaires .partenaire {
  min-height: 140px; }

/*** CARTE SVG ** */
#cdca_home .departement {
  fill: #d2d2d2;
  transition: all 0.2s; }
  #cdca_home .departement:hover {
    fill: #f42b3d;
    cursor: pointer; }
#cdca_home .departement_detail {
  display: none; }
  #cdca_home .departement_detail h3 span {
    color: #f42b3d; }

#actu_cdca h2 {
  color: #fc9321;
  text-align: left; }

@media screen and (max-width: 991px) {
  #about h2 {
    text-align: left !important;
    margin-top: 50px; }
    #about h2::before {
      left: 0;
      right: auto; } }

/*# sourceMappingURL=main.css.map */
