body{
  margin:0;
  padding:0;
  height: 100%;
}

a {
  font-weight: bold;
}

.jumbotron {
  background: transparent !important;
}

.link {
  cursor: pointer;
}

/*--------------------------------------------------------------
  Views
--------------------------------------------------------------*/
.view {
  height: 100% !important;
}

#confirmationView {
  /* margin: 5em 5em; */
  margin-top: 5em;
  height: 100vh;
  position: relative;
}

#formView {
  /* margin: 5em 10em 0; */
  margin-top: 5em;
  height: 100vh;
  position: relative;
}

#loginView {
  /* margin: 5em 5em 0; */
  margin-top: 5em;
  height: 100vh;
  position: relative;
}

#registerView {
  margin-top: 5em;
  height: 100vh;
  position: relative;
}

#searchView {
  /* margin: 0 5em; */
  margin-top: 5em;
  height: 100%;
  position: relative;
}

#userHomeView {
  margin-top: 5em;
  /* margin: 0 5em; */
  height: 100vh;
  position: relative;
}

.reportsView {
  margin-top: 5em;
  height: 100vh;
  position: relative;
}

/*--------------------------------------------------------------
# Elements by Id
--------------------------------------------------------------*/

#greeting {
  font-size: 0.8em;
}

#admin {
  font-size: 1em;
  color: red;
  font-weight: bold;
  margin-top: 1em;
  margin-bottom: 3em;
}

#footer {
  padding: 1rem 1rem;
  text-align: center;
  margin-bottom: 0;
  background-color: #333 !important;
  width: 100% !important;
  color: #f2f2f2;
  font-size: 0.75em;
}

/*--------------------------------------------------------------
  Navigation bar
--------------------------------------------------------------*/
.topnav {
  width: 100%;
  background-color: #333;;
  overflow: auto;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  text-decoration: none;
  font-size: 17px;
  width: 20%;
  padding: 12px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }

}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url(/images/curb-cropped.png) top center;
  background-size: cover;
}

#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: 80px;
}

#hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 72px;
  color: #124265;
  font-family: "Poppins", sans-serif;
}

#hero h2 {
  color: #5e5e5e;
  margin: 10px 0 0 0;
  font-size: 22px;
}


#hero .btn-get-started:hover {
  background: #3194db;
}

#hero .icon-boxes {
  margin-top: 100px;
}



#hero .icon-box {
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  width: 20em;
}

#hero .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#hero .icon-box .title a {
  color: #124265;
  transition: 0.3s;
}

#hero .icon-box .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

#hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: #2487ce;
}

#hero .icon-box:hover {
  transform: scale(1.08);
}

#hero .icon-box:hover .title a {
  color: #2487ce;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-height: 800px) {
  #hero {
    height: auto;
  }
}

@media (max-width: 992px) {
  #hero {
    height: auto;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 767px) {

  #boxesbox {
    width: 80%;
    height: 100%;
    overflow: hidden;
    margin-top: 80px;
    margin: auto;
    padding: 2em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}