.map{
    overflow: hidden;
}

.map__image{
    width: 50%;
    float: left;
    /*margin-top: -80px;*/
}




.map__image svg{
    height: 800px;
}

.map__image g.EPCI>path{
    stroke: #FFF;
    stroke-width : 1px;
    transition: fill 0.3s;
}

.map__image g.EPCI.EPCI53>a>path{
    fill: #8e9aaf;
    stroke: #FFF;
    stroke-width : 1px;
    transition: fill 0.3s;
}

.map__image g.EPCI.EPCI44>a>path{
    fill: #cbc0d3;
    stroke: #FFF;
    stroke-width : 1px;
    transition: fill 0.3s;
}

.map__image g.EPCI.EPCI49>a>path{
    fill: #efd3d7;
    stroke: #FFF;
    stroke-width : 1px;
    transition: fill 0.3s;
}

.map__image g.EPCI.EPCI72>a>path{
    fill: #ffe5e4;
    stroke: #FFF;
    stroke-width : 1px;
    transition: fill 0.3s;
}

.map__image g.EPCI.EPCI85>a>path{
    fill: #c2c9ff;
    stroke: #FFF;
    stroke-width : 1px;
    transition: fill 0.3s;
}


.map__image g.EPCI>a>path:hover{
    fill: #3538d2;  
    stroke: #FFF;
    stroke-width : 1px;
    transition: fill 0.3s;
}

.map__image .is-active path{
    fill: #3538d2; 
}

.map__list a{
    display: none;
}


.map__list a.is-active{
    color : #3538d2;
    font-weight: bold;
    text-decoration : underline;
    display: block;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing:border-box;
    font-size: 12px;
  }
  html,
  body {
    font-family: Arial, sans-serif;
    fonts-size: 100%;
  }
  /* ------------------------------- */
  /* MENU */
  #navMain {
    position: relative;
    width: 100%;
    margin: 0 auto;
  }
  #navMain ul,
  #navMain li,
  #navMain a {
    position: relative;
    list-style:none;
    text-decoration: none;
    background-color: #fff;
  }
  #navMain ul li a {
    display: block;
    color: #fff;
    padding: 10px 15px;
    position: relative;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
  }
  /* --------------- */
  /* MENU : niveau 1 */
  #navMain > ul {
    position: relative;
    margin: 0 auto; /* centrage */
    max-width:1200px; /* facultatif */
  }
  #navMain > ul > li > a {
    height:100%;
    background: #a7145a;
    box-shadow: 1px 1px 0 #a7145a inset, 1px -1px 0 #a7145a inset;
  }
  /* --------------- */
  /* MENU : niveau 1 ACTIF - Sous-Menu ouvert par defaut */
  #navMain > ul > li.active > a {
    background: #a7145a; /* bleu foncé */
  }
  /* --------------- */
  /* MENU : niveau 2 et suivants */
  #navMain ul ul > li > a {
    padding-left: 20px;
    background: #333;
    box-shadow: 0 1px 0 #444 inset, 0 -1px 0 #222 inset;
  }
  #navMain ul ul ul > li > a {
    padding-left: 30px;
    background: #444;
    box-shadow: 0 1px 0 #555 inset, 0 -1px 0 #333 inset;
  }
  #navMain ul ul ul ul > li > a {
    padding-left: 40px;
    background: #555;
    box-shadow: 0 1px 0 #666 inset, 0 -1px 0 #444 inset;
  }
  /* --------------- */
  /* hover */
  #navMain li:hover > a {
    background: #a7145a;
    box-shadow: 0 1px 0 #a7145a inset, 0 -1px 0 #a7145a inset;
  }
  #navMain li > a:hover,
  #navMain li > a:focus {
    background: #a7145a !important;
  }
  /* --------------- */
  /* avec sous-menu */
  #navMain li.hasSub > ul {
    display: none;
  }
  
  /* ------------------------------- */
  /* fleche, avec rotation */
  #navMain .hasSub:after {
    position: absolute;
    content: "\25BC";
    display: block;
    font-size: 0.7em;
    color: #fff;
    top: 14px;
    right: 10px;
    cursor: pointer;
  
    transform: rotate(0deg);
    transition: transform 0.5s;
  }
  #navMain .hasSub.open:after {
    transform: rotate(180deg);
    transition: transform 0.5s;
  }
  
  /* ------------------------------- */
  /* Menu BURGER (pour PHONE/TABLET) */
  #menuBurger {
    display: none; /* checkbox masquée */
  }
  #menuBurger ~ label {
    display: none;
    z-index:2;
    position:absolute;
    right:0;
    top:0;
    cursor: pointer;
    vertical-align: top;
    background: #a7145a; /* bleu foncé */
    width: 38px;
    height: 38px;
  }
  #menuBurger ~ label::before {
    content: "";
    margin: 6px auto;
    width: 24px;
    height: 5px;
    background: #fff;
    box-shadow: 0 10px 0 0 #fff, 0 20px 0 0 #fff; /* traits */
  }
  #menuBurger ~ label::after {
    display: none;
    content: "\2716"; /* croix */
    font-weight: 900;
    margin: auto;
    font-size: 26px;
    color: #fff;
  }
  #menuBurger:checked ~ label::after {
    display: block;
  }
  #menuBurger:checked ~ label::before {
    display: none;
  }
  /* ------------------------------- */
  /* PHONE + TABLET : */
  @media screen and (max-width: 576px) {
    /* menu vertical */
    #navMain > ul {
      width: 100%;
      display:none; /* on masque */
    }
    #menuBurger ~ label {
      display: inline-flex; /* affiche le BURGER */
    }
    #menuBurger:checked ~ ul {
      display:block; /* affiche le MENU */
    }
  }
  /* ------------------------------- */
  /* TABLET : */
  @media screen and (min-width: 576px) and (max-width: 767px) {
  }
  
  /* ---------- RESPONSIVE  --------- */
  /* DESKTOP : */
  @media screen and (min-width: 576px) {
    /* menu horizontal */
    #navMain > ul {
      display: flex;
      flex-wrap:nowrap;
    }
    #navMain > ul > li {
      flex: 1 1 25%;
    }
    #navMain > ul > li > ul {
      position: absolute;
      width: 100%;
      z-index: 1;
    }
  }
  /* ------------------------------- */
  