/*** Shared styles for all home.html pages ***/

.landing-page {
  height: 100%;
  text-align: center;
}

#hero-container {
  margin-left: auto;
  margin-right: auto;
  padding-top: 5%;
  padding-bottom: 30px;
  max-width: 95vw;
}

#hero-container > * {
  max-width: 520px;
  width: 100%;
}

/* Remove separator lines between navbar menu items on home page. */
#top-navbar .item:before {
  background: none;
}

/* Remove borders and shadows on navbar on home page. */
#top-navbar,
#top-navbar * {
  border: 0 !important;
  box-shadow: none !important;
}

/* Make icon SVGs on navbar inherit background color (otherwise it's ugly on mouse hover). */
#top-navbar .icon {
  background-color: inherit;
}

/* Give drodown menu a rounded top right corner on home page. */
#top-navbar-dropdown-menu {
  border-top-right-radius: 0.28571429rem;
}

/* Ensure first and last child of dropdown menu don't lose rounded corners on mouse hover. */
#top-navbar-dropdown-menu > *:first-child {
  border-top-right-radius: 0.28571429rem !important;
}
#top-navbar-dropdown-menu > *:last-child {
  border-bottom-left-radius: 0.28571429rem !important;
  border-bottom-right-radius: 0.28571429rem !important;
}
