.container-fluid {
  text-align: center;
}

.container-fluid .top {
  /*background-image: url(../img/wallpaper.jpg);*/
  background-image: url(../img-all-hero/window-signs-graphics.jpg);
  background-position: center;
  background-repeat: no-repeat;
  /*this might not be neccessary*/
  background-size: cover;
  min-height: 200px;
  text-align: center;
  color: white;
  position: relative;
  /*for color overlay*/
}

.container-fluid .top .color-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.container-fluid .top .intro-text {
  padding: 4rem 0 3rem 0;
  /*background-color: rgba(128, 128, 128, 0.55);*/
  /*for color overlay*/
  max-width: 50rem;
  /*set 30rem in media query*/
  margin: auto;
  position: relative;
  /*for color overlay*/
  z-index: 2;
  /*for color overlay*/
}

.container-fluid .top .intro-text h1 {
  padding-top: 30px;
  /*move the heading down by 50px which is the header nav and 10px more to adjust for the showcase push down*/
  padding-bottom: 20px;
  text-align: center;
  font-size: 2.5rem;
  color: #e74c3c;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  font-family: 'Roboto', sans-serif;
}

.container-fluid .top .intro-text p {
  font-family: 'Lato', sans-serif;
  font-style: normal;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.5px;
}

.container-fluid .gallery {
  padding: 10px 0;
  /*adjust this in media query for resoulutions less than 991px*/
  max-width: 1280px;
  margin: 0 auto;
}

.container-fluid .gallery .row {
  margin: 1rem;
}

.container-fluid .gallery .row .container {
  position: relative;
  max-width: 100%;
  /*this controls the correct horizontal position when viewed on mobile*/
}

.container-fluid .gallery .row .container a img {
  border: 3px solid #2196f3;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.container-fluid .gallery .row .container a p {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 600;
  /*transition: font-size 0.6s;*/
  display: none;
  /*keep this until the gallery turns back to portfolio again*/
}

.container-fluid .gallery .row .container a:hover img {
  border: 3px solid #e74c3c;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  opacity: 0.4;
}

.container-fluid .gallery .row .container a:hover p {
  color: #e74c3c;
  font-size: 1.1rem;
  /*transition: font-size 0.6s;*/
}

footer {
  position: relative;
  /*revert to absolute if the number of picture columns gets lower*/
}

@media (max-width: 767px) {
  .intro-text p {
    max-width: 300px;
    margin: 0 auto;
  }
  .gallery .row {
    margin: 0;
    /*this does not work, I don't know why*/
  }
  .gallery .row .container {
    margin: 0.5rem;
  }
  footer {
    position: relative;
  }
}
/*# sourceMappingURL=portfolio.css.map */