h1, h2, p {
  color: #505050;
}

.d-none{
  display: none;
}

.jumbotron {
    margin-bottom: 0px;
    height: 100vh;
    background-image: url("images/hero-main.jpg");
    background-size: cover;
    background-position: 40% 90%;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
}

/*NAVIGATION STYLE*/

.nav-item {
   padding-right: 35px;
}

/*WELCOME SECTION*/
.container .welcome-header {
  margin: 5px 0px;
}

.welcome-header {
    text-align: center;
    padding-bottom: 50px;
    padding-top: 100px;
    max-width: 100%;
    height: 165px;
}


/*IMAGE GALLERY EFFECTS*/

.col-md-4 {
  margin-bottom: 8px;
  margin-top: 8px;
}

.col-md-4 .image-container {
    margin-top: 25px;
}

.hovereffect {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: pointer;
  background: black;
}

.hovereffect .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  padding: 50px 20px;
}

.hovereffect img {
  display: block;
  position: relative;
  max-width: none;
  width: calc(100% + 20px);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-10px,0,0);
  transform: translate3d(-10px,0,0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hovereffect:hover img {
  opacity: 0.4;
  filter: alpha(opacity=40);
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.hovereffect h2 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 17px;
  overflow: hidden;
  padding: 0.5em 0;
  background-color: transparent;
}

.hovereffect h2:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  content: '';
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(-100%,0,0);
  transform: translate3d(-100%,0,0);
}

.hovereffect:hover h2:after {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.hovereffect a, .hovereffect p, .hovereffect h2 {
  color: #FFF;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(100%,0,0);
  transform: translate3d(100%,0,0);
}

.hovereffect:hover a, .hovereffect:hover p, .hovereffect:hover h2 {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

/*ABOUT PAGE*/

/*PROJECTS PAGE*/

@media only screen and (max-width: 768px) {
  div.col-md-4.project-container {
    text-align: center;
  }
}

.hrstyle {
  border: 2px solid #d21010;
  border-radius: 2px;
  width: 10%;
  max-width: 100px;
  margin: 2rem auto;
}

.hrstyleprojects {
  border: 2px solid #d21010;
  border-radius: 2px;
  width: 10%;
  max-width: 100px;
  margin-top: 30px;
}

.container .application-header {
  margin: 5px 0px;
}

.application-header {
    text-align: center;
    color: black;
    padding-bottom: 150px;
    padding-top: 100px;
    max-width: 100%;
    height: 165px;
}

.col-sm-4 {
  margin-bottom: 15px;
}

.btn-outline-secondary:hover {
    background-color: #d21010;
  }

/*CONTACT FORM*/

.form-container {
  width: 85%;
  margin-bottom: 100px;
  margin-top: 25px;
}

/*FOOTER*/

footer {
    padding: 25px 25px;
    margin-top: 25px;
    background-color: #343a40;
    min-width: 100%;
    color: rgba(255,255,255,.5);
}
