body {
  margin-bottom: 60px;
  /* Margin bottom by footer height */
}

.footer {
  position: fixed;
  height: 60px;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  line-height: 60px;
  /* Vertically center the text there */
  background-color: #473a78;
}

.white {
  color: rgba(255, 255, 255, 0.55);
}

.purple-bg {
  background-color: #473a78;
}

.form-control.is-valid,
.was-validated .form-control:valid {
  background-image: none;
  border-color: var(--bs-border-color) !important;
}

label {
  font-weight: bold;
}

#menuToggle {
  display: block;
  position: relative;
  top: 20px;
  left: 20px;

  z-index: 1;

  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a {
  text-decoration: none;
  color: #ffffff;

  transition: color 0.3s ease;
}

#menuToggle a:hover {
  color: #473a78;
}

#menuToggle a.active {
  text-decoration: underline;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;

  cursor: pointer;

  opacity: 0;
  z-index: 2;

  -webkit-touch-callout: none;
}

#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;

  background: #ffffff;
  border-radius: 3px;

  z-index: 1;

  transform-origin: 4px 0px;

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
    opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

#menuToggle input:checked~span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #ffffff;
}

#menuToggle input:checked~span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked~span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

#menu {
  position: absolute;
  width: 300px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;

  background: #473a78;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;

  transform-origin: 0% 0%;
  transform: translate(-100%, 0);

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

#menu li {
  padding: 10px 0;
  font-size: 22px;
}

#menuToggle input:checked~ul {
  transform: none;
}

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

@media screen {

  /* hide burger menu: */
  [class*="burgermenu"] {
    display: none;
  }
}

@media only screen and (max-width: 768px) {

  /* for mobile, remove newsletter column: */
  [class*="col-3"] {
    display: none;
  }
}

@media only screen and (max-width: 768px) {

  /* mobile burger menu shows up: */
  [class*="burgermenu"] {
    display: block;
    height: 60px;
  }
}

@media only screen and (max-width: 768px) {

  /* remove old navbar for mobile */
  [class*="navbar navbar-expand-md navbar-dark purple-bg"] {
    display: none;
  }
}