header {
  padding: 0 20px;
  background-color: #F3EEE4;
  display: flex;
  height: 100px;
  align-items: center;
  justify-content: space-between;
}
header a {
  text-decoration: none;
  font-size: 14px;
}
header a.active {
  font-weight: bolder;
  color: #c28788;
}
header ul {
  list-style: none;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
header ul a {
  color: #4A4453;
}
header ul li {
  margin: 0px 10px;
}
header ul li:hover {
  transform: scale(1.1);
  transition: 0.3s;
}

.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: black;
}

.hover-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #c28788;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: 60%;
}

.mathildePhilemon {
  display: none;
}

#brand {
  display: flex;
  align-items: center;
  position: relative;
}
#brand a {
  position: absolute;
  top: 50%;
  left: 100px;
}

#hamburger-icon {
  margin: auto 0;
  display: none;
  cursor: pointer;
  padding: 0.25rem 0.75rem;
  border: 1px solid grey;
  border-radius: 0.25rem;
}
#hamburger-icon div {
  width: 20px;
  height: 2px;
  background-color: grey;
  margin: 6px 0;
  transition: 0.4s;
}

.open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}
.open .bar2 {
  opacity: 0;
}
.open .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}
.open .mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: #f8f9fa;
  top: 60px;
  padding-left: 0px;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  height: calc(100vh - 50px);
  width: 100%;
}
.mobile-menu li {
  margin-bottom: 10px;
  padding: 2% 0;
}

@media only screen and (max-width: 1100px) {
  header {
    flex-direction: row-reverse;
    height: 60px;
  }
  header nav {
    display: none;
  }
  header ul a {
    margin: 100px;
  }

  .mathildePhilemon {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    padding: 0 20%;
  }

  #brand a {
    left: -215%;
    z-index: 9;
  }
  #brand a img {
    width: 60px;
    height: 55px;
  }

  #brand a.headerMathildeLinks:nth-child(2) {
    margin-left: 60px;
  }

  #hamburger-icon {
    display: block;
  }
}

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