*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
/* Hero Section */
.hero-section{
    background-image: url('../img/bg.jpg');
    background-repeat: no-repeat;
    min-height: 400px;
    color: #fff;
}
.hero-content{
    margin-top: 150px;
}
.logo{
    width: 120px;
}
.career{
    font-weight: light;
    text-shadow: 2px 0px 10px rgba(150, 150, 154, 0.47);
}
.apply-heading{
    font-weight: light;
    text-shadow: 2px 0px 10px rgba(150, 150, 154, 0.21);
}
label{
    font-weight: light;
}
.btn{
    border-radius: 0px;
}
.form-control{
    border-radius: 0px;
}
.form-control:focus{
    box-shadow: none;
    border: 1.5px solid  #ff7300;
    color: #ff7300;
}
.bg-rooah-green{
    background-color: #ff7300;
    color: #fff;
    border: none;
}
.text{
    font-size: 20px;
   
}
a{
    color: #ff7300;
}
li{
    list-style-type: none;
}
.alert-danger{
    background-color: #BF1E2D;
    color: #fff;
    border: none;
}

.alert-success{
    background-color: #8BC63F;
    color: #fff;
    border: none;
}

/* Media Queries */
@media screen and (max-width: 600px) {
    .hero-section {
      background-position: right;
    }
    .career{
        text-align: center;
    }
  }