* {
  margin: 0;
  padding: 0;
}

/* Font Families
font-family: 'Orelega One', cursive;
font-family: 'Poppins', sans-serif; 
*/

/* Colors
Orange - #ff671b
*/

/* Navbar */
.navbar {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  justify-content: right;
  border-bottom: 1.25px solid #ff671b;
  background-color: rgba(0, 0, 0, 0);
}

.auto-left {
  margin-left: auto;
  padding-right: 15px;
}
.nav-link {
  color: #fff !important;
  font-family: "Poppins", sans-serif;
}
.link-underline {
  width: 0%;
  height: 1.25px;
  background-color: #ff671b;
  display: block;
  transition: ease 750ms;
  margin-top: 2.5px;
}
.nav-link:hover .link-underline {
  width: 100%;
}
/* Navbar BG and Link Color after passing 50px from top */
.bg-banner {
  transition: ease-in-out 500ms;
  background-color: #fff;
}
.link-banner-color {
  transition: ease-in-out 500ms;
  color: #000 !important;
}
/* Banner */
#jumbotron-banner {
  width: 100%;
  height: 700px;
  background-image: url("../img/filler-banner-img.jpg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
#jumbotron-banner-filler {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
#banner-jumbo-title {
  color: white;
  padding-top: 200px;
  font-size: 80px;
  font-family: "Orelega One", cursive;
}
#banner-jumbo-sub-title {
  color: white;
  font-size: 15px;
  margin-top: 25px;
  font-family: "Poppins", sans-serif;
}
#banner-store-picker {
  margin: 0;
  border: none;
  outline: none;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 5px;
  padding-left: 10px;
  font-family: "Poppins", sans-serif;
}
#banner-job-picker {
  margin: 0;
  border: none;
  outline: none;
  padding: 5px;
  padding-left: 10px;
  font-family: "Poppins", sans-serif;
}
#banner-apply-form {
  width: max-content;
  background-color: #fff;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  margin-top: 25px;
  height: min-content;
}
#banner-apply-name {
  outline: none;
  border: none;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
}
#banner-apply-submit {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 5px;
  padding-left: 20px;
  padding-right: 20px;
  border: none;
  outline: none;
  background-color: #ff671b;
  color: #fff;
  font-family: "Poppins", sans-serif;
  height: 100%;
  border: 1px solid #ff671b;
}

/* Get Status */
#get_status {
  display: flex;
  justify-content: space-evenly;
  text-align: center;
  color: #fff;
  background-color: #ff671b;
  padding-top: 50px;
  padding-bottom: 50px;
}
#get_status_title {
  font-family: "Orelega One", cursive;
}
#get_status_hr {
  width: 150px;
  height: 2px;
  background-color: #fff;
  margin:0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
#get_status_desc {
  font-family: "Poppins", sans-serif;
  max-width: 40%;
  margin:0 auto;
}
#get_status_btn {
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff;
  outline: none;
  padding: 10px 20px;
  font-family: "Poppins", sans-serif;
  border-radius: 10px;
  margin-top: 20px;
}
#get_status_btn:hover {
  background-color: #fff;
  color: #000;
  transition: 500ms ease-in-out;
}
/* Information Blocks */
#block-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.info-block {
  width: 368.27px;
  text-align: center;
  height: 400px;
  font-family: "Poppins", sans-serif;
}
#info-block-middle {
  box-shadow: 0px 0px 11px 1px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 0px 11px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 11px 1px rgba(0, 0, 0, 0.25);
}
.info-block-img {
  margin-top: 15px;
}
.info-block-desc {
  width: 80%;
  margin: 0 auto;
  margin-top: 30px;
}
.info-block-title {
  margin-top: 15px;
  font-family: "Orelega One", cursive;
}
/* Job Description */
#job-desc-container {
  width: 100%;
  margin-top: 100px;
}
#job-desc-title {
  text-align: center;
  font-family: "Orelega One", cursive;
  width: max-content;
  margin: 0 auto;
  font-size: 55px;
}
#job-desc-hr {
  width: 150px;
  margin: 0 auto;
  background-color: #ff671b;
  height: 2px;
  margin-bottom: 25px;
  margin-top: 15px;
}
#job-desc-cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-top: 100px;
}
.job-desc {
  font-family: "Poppins", sans-serif;
  width: 502px;
}
.desc-title {
  font-family: "Orelega One", cursive;
  font-size: 25px;
  border-bottom: 1px solid #ff671b;
  width: max-content;
  margin-bottom: 20px;
}
/* Footer */
#footer {
  height: 250px;
  background-color: #ff671b;
  margin-top: 200px;
}
#footer-title {
  color: #fff;
  font-family: "Orelega One", cursive;
  border-bottom: 1.5px solid #fff;
  width: max-content;
  font-size: 45px;
  height: min-content;
  padding-top: 25px;
  margin-bottom: 10px;
}
.contact-info {
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Mobile UX */
@media screen and (max-width: 600px) {
  .job-desc {
    width: 300px;
  }
  #second-job-desc {
    margin-top: 50px;
  }
  #job-desc-title {
    font-size: 35px;
  }
  #job-desc-cont {
    margin-top: 50px;
  }
  #jumbotron-banner {
    background-attachment: initial;
  }
  #banner-jumbo-title {
    padding-top: 100px;
  }
  #banner-store-picker {
    font-size: 10px;
    margin-left: 5px;
    width: 87px;
  }
  #banner-job-picker {
    font-size: 10px;
    width: 100px;
  }
  #banner-apply-name {
    font-size: 10px;
    width: 70px;
  }
  #banner-apply-submit {
    font-size: 10px;
    border: 3px solid #ff671b;
  }
}
/* Animation durations */
.animate__animated.animate__fadeInUp {
  animation-duration: .90s;
}
.animate__animated.animate__delay-1s {
  animation-delay: .5s;
}
.animate__animated.animate__delay-2s {
  animation-delay: 1s;
}