@font-face {
  font-family: candara;
  src: url(../fonts/Candara.ttf);
}
@font-face {
  font-family: candaraBold;
  src: url(../fonts/Candara_Bold.ttf);
}
@font-face {
  font-family: calibri;
  src: url(../fonts/Calibri.ttf);
}
@keyframes closeButtonBurgerB2 {
  0% {
    top: 50%;
    visibility: visible;
  }
  50% {
    top: 50%;
    visibility: visible;
  }
  51% {
    top: 50%;
    visibility: none;
  }
  100% {
    top: 50%;
    visibility: none;
  }
}
@keyframes closeButtonBurgerB1 {
  0% {
    top: 20%;
  }
  50% {
    top: 50%;
    rotate: 0deg;
  }
  100% {
    top: 50%;
    rotate: 40deg;
  }
}
@keyframes closeButtonBurgerB3 {
  0% {
    top: 20%;
  }
  50% {
    top: 50%;
    rotate: 0deg;
  }
  100% {
    top: 50%;
    rotate: -40deg;
  }
}
header .labelBtn {
  z-index: 4;
  position: fixed;
  left: 20px;
  top: 10px;
  height: 40px;
  width: 40px;
}
header .labelBtn b {
  position: absolute;
  display: block;
  width: 40px;
  height: 2px;
  background-color: white;
}
header .labelBtn .l1 {
  top: 20%;
  left: 0;
}
header .labelBtn .l2 {
  top: 50%;
  left: 0;
}
header .labelBtn .l3 {
  top: 80%;
  left: 0;
}
header .activate .l1 {
  top: 50%;
  animation: closeButtonBurgerB1 0.5s ease-in-out;
  rotate: 40deg;
}
header .activate .l2 {
  animation: closeButtonBurgerB2 0.5s ease-in-out;
  visibility: none;
}
header .activate .l3 {
  top: 50%;
  animation: closeButtonBurgerB3 0.5s ease-in-out;
  rotate: -40deg;
}
header nav {
  background-color: #172869;
  /* .hamburger{
      position: absolute;
      left: -100vw;
  } */
}
header nav .links {
  justify-content: space-around;
  width: 80%;
  margin: auto;
  align-items: center;
  justify-self: center;
}
header nav .links a {
  display: block;
  height: auto;
  color: white;
  text-decoration: none;
}
header nav .links a:visited {
  color: white;
}
header nav .links a {
  flex-grow: 4;
  text-align: center;
  height: 100%;
  line-height: 50px;
}

#mainTitle {
  display: flex;
  background-color: transparent;
  width: 100%;
  flex-direction: column;
  position: relative;
  text-align: center;
  height: 500px;
  color: white;
}
#mainTitle .logoBinbin {
  width: 20%;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(50%, -50%);
}
#mainTitle .textBloc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#mainTitle .intro,
#mainTitle .subTitle {
  font-family: candara;
}
#mainTitle .intro {
  text-transform: uppercase;
}
#mainTitle .assoName {
  font-family: candaraBold;
}

@media screen and (min-width: 1000px) {
  .labelBtn {
    display: none;
  }
  nav {
    z-index: 50;
    flex-direction: row;
    height: 180px;
    clip-path: polygon(0% 0%, 100% 0, 100% 100%, 0% 67%);
  }
  nav .links {
    display: flex;
    padding-top: 10px;
  }
  nav .links a {
    font-size: 13pt;
  }
  nav .links #separator {
    height: 50px;
    width: 1px;
    background-color: white;
  }
  nav button {
    display: none;
  }
  nav #separator {
    display: block;
  }
  nav .hamburger, nav .labelBtn {
    display: none;
  }
}
@media screen and (max-width: 999px) {
  #mainTitle {
    padding-top: 100px;
  }
  .noScroll {
    height: 100vh;
    overflow: hidden;
  }
  nav {
    position: fixed;
    z-index: 3;
    width: 100vw;
    height: 90px;
    clip-path: polygon(0% 0%, 100% 0, 100% 100%, 0% 67%);
    /* clip-path:
    polygon(0 0,
        100% 0,
        100% 100%,
        0 calc(100% - min((calc(100cqw * 150px) / $columnWidth), (calc($columnWidth * 150px) / $columnWidth)))); */
    transition: all 0.5s;
  }
  .links {
    display: none;
    flex-direction: row;
    padding-top: 40px;
  }
  .links a {
    font-size: 20pt;
    text-transform: uppercase;
  }
  .links a:hover {
    font-weight: bolder;
  }
  .links #separator {
    height: 1px;
    width: 50px;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: white;
  }
  .activate {
    z-index: 3;
    display: block;
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    clip-path: polygon(0% 0%, 100% 0, 100% 100%, 0% 100%);
    transition: all 0.5s;
  }
  .activate .links {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (min-width: 800px) {
  .intro,
  .subTitle {
    font-size: 30pt;
  }
  .assoName {
    font-size: 80pt;
  }
}
@media screen and (max-width: 799px) {
  .intro,
  .subTitle {
    font-size: 25pt;
  }
  .assoName {
    font-size: 40pt;
  }
}/*# sourceMappingURL=styleHeader.css.map */