/* navbar */
.navbar {
  padding: 10px;
  text-transform: uppercase;
}
/* jumbotron */
.jumbotron {
  background-image: url(img/jumbotron.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 540px;
  position: relative;
}
.jumbotron::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  position: absolute;
  bottom: 0;
}
.display-4 {
  padding-top: 50px;
  text-align: center;
  text-transform: uppercase;
  font-family: oswald;
  font-size: 80px;
  font-weight: 700;
  color: black;
}
.lead {
  position: relative;
  color: white;
  z-index: 2;
  padding-left: 30px;
  text-transform: capitalize;
  padding-top: 130px;
}
/* about */
#about h2 {
  padding: 70px;
  font-size: 40px;
  font-family: oswald;
  text-align: center;
  text-transform: uppercase;
}
#about .about-p {
  font-size: 18px;
}
.borderr {
  background-color: whitesmoke;
  border: 5px solid gray;
  border-top: 20px;
  border-right: 20px;
  border-bottom: 20px;
}
.borderr p {
  padding: 10px;
  font-size: 18px;
}
#about img {
  margin-top: 30px;
  margin-left: 10%;
  width: 80%;
  height: 450px;
}
#about p {
  margin-top: 20px;
  font-size: 18px;
}
#about p span {
  font-weight: 700;
}
/* menu */
#menu h2 {
  padding: 70px;
  font-size: 40px;
  font-family: oswald;
  text-align: center;
  text-transform: uppercase;
}
#menu .menu-header {
  background-color: gray;
}
#menu .brdr {
  border-right: 3px solid white;
}
#menu .menu-header h4 {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 26px;
}
#menu .menu-list {
  font-size: 18px;
  text-transform: capitalize;
  background-color: whitesmoke;
}
#menu .list-list {
  font-size: 16px;
  list-style: none;
  color: grey;
}
/* find us */
#find-us h2 {
  padding: 70px;
  font-size: 40px;
  font-family: oswald;
  text-align: center;
  text-transform: uppercase;
}
#find-us img {
  width: 100%;
  height: 500px;
}
#find-us p {
  font-size: 18px;
  margin-top: 10px;
}
#find-us span {
  background-color: black;
  color: white;
}
#find-us .input-group {
  padding-right: 500px;
}
/* footer */
.footer {
  text-align: center;
  padding-top: 50px;
}

/* RESPONSIVE BREAKPOINT */
@media (max-width: 991px) {
  #find-us .input-group {
    padding-right: 1px;
  }
}
@media (max-width: 768px) {
  #about img {
    height: 350px;
  }
  #find-us img {
    height: 350px;
  }
  #find-us .input-group {
    padding-right: 1px;
  }
}
@media (max-width: 600px) {
  #about img {
    height: 300px;
  }
  #find-us img {
    height: 300px;
  }
}
