@font-face {
  font-family: "Beautiful People";
  src: url("../fonts/BeautifulPeoplePersonalUse-dE0g.ttf");
}
@font-face {
  font-family: Lato;
  src: url("../fonts/Lato-Regular.ttf");
}
@font-face {
  font-family: Nunito;
  src: url("../fonts/Nunito-Regular.ttf");
}
@font-face {
  font-family: Ubuntu;
  src: url("../fonts/Ubuntu-Regular.ttf");
}
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: auto;
}

.container .header .mobile-menu {
  display: flex;
  padding: 20px;
  flex-flow: row nowrap;
  justify-content: space-between;
}
.container .header .mobile-menu #logo a {
  color: #000130;
  text-decoration: none;
  display: inline-block;
  font-family: "Beautiful People", Lato, sans-serif;
  font-weight: bold;
  font-size: 1.2em;
}
.container .header .mobile-menu .menu .ham [class|=line] {
  height: 0.3125em;
  width: 1.5625em;
  margin: 0.25em;
  border-radius: 10px;
  background-color: #EF0EAB;
}
.container .header #mobile-menu {
  z-index: 5;
  padding: 1.25em;
  position: fixed;
  top: 0;
  left: -110%;
  height: 100vh;
  width: 100%;
  background-color: #F5F5F5;
  transition: left 0.2s ease-in-out;
  overflow: auto;
}
.container .header #mobile-menu .menu {
  position: absolute;
  right: 1.25em;
  display: inline-block;
  height: 2.2097em;
}
.container .header #mobile-menu .menu .ham {
  height: 0.3125em;
  width: 2em;
  transform: translateY(0.84em);
}
.container .header #mobile-menu .menu .ham .line-1 {
  position: absolute;
  height: 0.3125em;
  width: 2em;
  border-radius: 10px;
  background-color: #EF0EAB;
  transform: rotateZ(225deg);
  transform-origin: center;
}
.container .header #mobile-menu .menu .ham .line-2 {
  position: absolute;
  height: 0.3125em;
  width: 2em;
  border-radius: 10px;
  background-color: #EF0EAB;
  transform: rotateZ(-45deg);
  transform-origin: center;
}
.container .header #mobile-menu ul {
  amrgin: 0;
  padding: 0;
  margin-top: 2.5em;
  list-style-type: none;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}
.container .header #mobile-menu ul li {
  width: 100%;
  border-bottom: 1px solid rgba(132, 63, 210, 0.267);
}
.container .header #mobile-menu ul li a {
  display: block;
  width: 100%;
  padding: 1.25em 0;
  text-align: center;
  text-decoration: none;
  color: #000000;
  font-size: 1.2em;
  font-family: Lato;
}
.container .header #mobile-menu ul li a.active-now {
  color: #73ff00;
}
.container .header #mobile-menu ul li .colored-text {
  color: #008ecf;
}
.container .header #mobile-menu ul li:last-child {
  border: none;
}
.container .header #mobile-menu .cstm-color-mode {
  flex-flow: row nowrap;
  justify-content: space-between;
  position: fixed;
  bottom: 1.5625em;
  right: 1.5625em;
  height: 20px;
  width: 50px;
  background: transparent;
  z-index: 10;
}
.container .header #mobile-menu .cstm-color-mode .day, .container .header #mobile-menu .cstm-color-mode .night {
  height: 20px;
  width: 20px;
  cursor: pointer;
}
.container .header #mobile-menu .cstm-color-mode .day {
  background-color: white;
  border-radius: 50%;
  border: 3px solid black;
}
.container .header #mobile-menu .cstm-color-mode .night {
  background-color: black;
  border-radius: 50%;
}
.container .header .desktop-menu {
  padding: 1.25em 5%;
  display: none;
  width: 100%;
  flex-flow: row nowrap;
}
.container .header .desktop-menu .logo a {
  color: #000130;
  text-decoration: none;
  display: inline-block;
  font-family: "Beautiful People", Lato, sans-serif;
  font-weight: bold;
  font-size: 1.2em;
}
.container .header .desktop-menu ul {
  flex-grow: 1;
  list-style-type: none;
  text-align: right;
}
.container .header .desktop-menu ul li {
  display: inline-block;
  margin: 0 1em;
  top: 50%;
  position: relative;
  transform: translateY(-50%);
}
.container .header .desktop-menu ul li a {
  text-decoration: none;
  display: block;
  width: 100%;
  color: black;
  font-size: 1.2em;
  font-family: Lato;
  font-weight: 700;
}
.container .header .desktop-menu ul li a + span {
  position: absolute;
  background-color: #73ff00;
  width: 0;
  height: 0.25em;
  bottom: -0.5em;
  left: 0;
  border-radius: 0.5em;
  transition: width 0.3s ease-in-out;
}
.container .header .desktop-menu ul li a + span + span {
  display: none;
  position: absolute;
  background-color: #73ff00;
  width: 1em;
  height: 0.25em;
  bottom: -0.5em;
  left: 0;
  border-radius: 0.5em;
}
.container .header .desktop-menu ul li a:hover + span {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .container .header .mobile-menu, #mobile-menu {
    display: none;
  }
  .container .header .desktop-menu {
    display: flex;
  }
}

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