@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300|Roboto:400,700&display=swap");

:root {
  --d: 700ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1);
  --font-sans: 'Roboto', sans-serif;
  --font-serif: 'Roboto', sans-serif;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  font-family: var(--font-sans);
}

body {
  background-color: transparent;
}

.navBar {
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  padding-top: 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  align-content: center;
}

.navList {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.navList>li {
  display: inline;
  margin-right: 1rem;
}

.navList.open>li {
  display: block;
  margin-top: 10px;
}

.menuIcon {
  display: none;
  color: white;
}

.br {
  display: none;
}

#lpsContainer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media screen and (max-width: 1190px) {
  .navList {
    display: none;
  }

  .menuIcon {
    display: block;
  }

  .navList.open {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
  }

  .navList .navigationItem {
    padding-top: 12px;
  }

  .navBar.open {
    flex-direction: column;
    align-content: flex-end;
    align-items: flex-end;
  }

  #lpsContainer {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
}

.navigationItem {
  text-decoration: none;
  color: #ffffff;
  animation: all 0.3s ease-in-out;
}

.navigationItem:hover {
  color: white;
  text-decoration: underline white;
  text-decoration-thickness: 3px;
}

.title {
  color: white;
}

.navList a.active {
  color: white;
  text-decoration: underline white;
  text-decoration-thickness: 3px;
}

.navList .icon {
  display: none;
}

@media screen and (max-width: 1110px) {
  .navList a:not(:first-child) {
    display: none;
  }

  .navList a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 1110px) {
  .navList.responsive {
    position: relative;
  }

  .navList.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }

  .navList.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}