/*Reset Style*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f4f4f4;
}
img {
  max-width: 100%;
}
a:hover {
  text-decoration: none;
}
ul {
  list-style: none;
}
/*--------------
LandingPage
------------------*/
.landing-page {
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  height: 40vh;
  position: relative;
  background-image: url("../images/banner-bg.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}
.navbar-brand img {
  display: inline-block;
  width: 130px;
}
.navbar-light .navbar-nav .nav-link {
  color: #5dbd7e;
}
.navbar-light .navbar-nav .nav-link.active {
  color: #000;
}
.navbar-nav .btn {
  background-color: #5dbd7e;
  border-radius: 50vw;
  width: 80px;
}

/*------------
Lists Buttons
-----------------*/
.lists-buttons {
  padding-top: 20px;
  padding-bottom: 40px;
  margin-left: 30px;
  margin-right: 30px;
}
.lists-buttons a {
  display: inline-block;
  padding: 12px;
  background: #5dbd7e;
  color: #fff;
  border-radius: 50vw;
  width: 100%;
  text-align: center;
  font-weight: 500;
  font-size:large;
  margin-bottom: 20px;
}
