* {
  margin: 0;
  font-family: "Roboto", sans-serif;
}

.disableScroll {
  overflow: hidden;
}

body {
  background-color: white;
}

canvas {
  height: 100%;
  position: fixed;
  z-index: -1;
}

#navBar {
  background-color: white;
  position: fixed;
  width: calc(100% - 40px);
  margin-left: 20px;
  margin-top: 20px;
  height: 50px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  transition: 300ms;
  z-index: 101;
  border-radius: 20px;
}
#navBar #navBarTitle {
  background-color: aqua;
}
#navBar h1 {
  font-size: 23px;
  font-weight: 500;
  margin-top: 10px;
  margin-left: 30px;
  width: 150px;
}
#navBar img {
  height: 22px;
}
#navBar ul {
  float: right;
  margin-top: -30px;
  margin-right: -40px;
}
#navBar .menuItemLi {
  display: block;
}
#navBar li {
  float: left;
  list-style: none;
  margin-top: 10px;
}
#navBar li .dropDown {
  margin-top: -10px;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
}
#navBar li .dropDown:hover {
  background-color: #B8285F;
  color: white;
}
#navBar li .dropDown img {
  height: 8px;
  position: relative;
  top: -2px;
}
#navBar .dropDownMenu {
  right: 80px;
  position: absolute;
  background-color: #FCFBF6;
  margin-top: 5px;
}
@media (max-width: 600px) {
  #navBar .dropDownMenu {
    visibility: hidden;
  }
}
#navBar .horizLine {
  width: 100%;
  height: 1px;
  background-color: #e2e0cd;
  margin-top: 15px;
}
#navBar a {
  text-decoration: none;
  color: black;
}
#navBar .menuItem {
  padding-top: 10px;
  padding-bottom: 10px;
  padding: 10px;
  border-radius: 10px;
  transition: 300ms;
}
#navBar .menuItem:hover {
  background-color: #B8285F;
  color: white;
}

#subTitleNavBar {
  font-size: 15px;
  position: absolute;
  margin-top: 5px;
  margin-left: 10px;
  font-weight: 100;
}

#searchIcon {
  width: 45px;
  padding-top: 15px;
  height: 37px;
  float: right;
  margin-top: -37px;
  margin-left: 10px;
  padding-left: 15px;
  visibility: hidden;
}
#searchIcon:hover {
  cursor: pointer;
}
.searchVisible #searchIcon {
  visibility: visible;
}

.searchVisible#navBar ul {
  margin-right: 10px !important;
}

input {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.button {
  width: 130px;
  background-color: #FCFBF6;
  height: 30px;
  margin-right: 10px;
  border-radius: 100px;
  text-align: center;
  font-size: 15px;
  padding-top: 10px;
  margin-bottom: 10px;
  transition: 300ms;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.firstButton {
  border: 3px #E07A5F solid;
}

.firstButton:Hover {
  background-color: #E07A5F;
  color: white;
  cursor: pointer;
}

.secondButton {
  border: 3px #3D405B solid;
}

.secondButton:Hover {
  background-color: #3D405B;
  color: white;
  cursor: pointer;
}

.thirdButton {
  border: 3px #81B29A solid;
}

.thirdButton:Hover {
  background-color: #81B29A;
  color: white;
  cursor: pointer;
}

.newButton {
  background-color: #3D405B;
  color: white;
  border: #3D405B 3px solid;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}
.newButton:hover {
  background-color: rgba(0, 0, 0, 0);
  border: #3D405B 3px solid;
  color: #3D405B;
}

.newButtonRed {
  background-color: #B8285F;
  border: #B8285F 3px solid;
}
.newButtonRed:hover {
  border: #B8285F 3px solid;
  color: #B8285F;
}

.newButtonGreen {
  background-color: #3E5C41;
  border: #3E5C41 3px solid;
}
.newButtonGreen:hover {
  border: #3E5C41 3px solid;
  color: #3E5C41;
}

#footer {
  width: calc(100% - 40px);
  height: 50px;
  margin-left: 20px;
  background-color: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding-top: 10px;
  margin-top: -5px;
  margin-bottom: 30px;
}
#footer #mail {
  color: black;
  text-decoration: none;
}

#footerLine {
  width: 100%;
  height: 3px;
  background-color: #e2e0cd;
}

#footerContent {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px 0 20px;
}

#content {
  min-height: calc(100vh - 120px);
}

#mobileMenu {
  visibility: hidden;
  float: left;
  width: 100%;
  margin-top: 50px;
}
#mobileMenu .mobileMenuItem {
  width: 100%;
  font-size: 22px;
  text-align: center;
  margin-top: 10px;
}

#mobileMenuButton {
  position: absolute;
  right: 60px;
  top: 0px;
  height: 35px;
  padding-top: 15px;
  text-align: center;
  width: 50px;
  visibility: hidden;
}
#mobileMenuButton:hover {
  cursor: pointer;
}

.stop-scrolling {
  overflow: hidden;
}

@media only screen and (max-width: 600px) {
  #searchIcon {
    position: absolute;
    right: 5px;
  }

  #subTitleNavBar {
    visibility: hidden;
  }

  #navBar {
    height: 50px;
  }

  #navBar ul {
    visibility: hidden;
  }

  #mobileMenuButton {
    visibility: visible;
  }

  #footerContent {
    display: inherit;
    margin-bottom: 10px;
  }

  #footerContent p {
    margin-bottom: 5px;
  }

  #footer {
    height: 100px;
  }
}
.scrollIndicator {
  width: 100%;
  height: 3px;
  position: fixed;
  z-index: 100;
  top: 50px;
}
.scrollIndicator .scrollIndicatorFill {
  background-color: #3D405B;
  width: 0%;
  height: 100%;
}

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