/* site.css */
body, html {
    height: 100%;
}

.parallax {
    /* The image used */
    background-image: url('http://cellbotics.com/wp-content/uploads/2017/04/computer-repair-489081568-5783c94e3df78c1e1f3e8664.jpg');

    /* Full height */
    height: 60%;

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Turn off parallax scrolling for tablets and phones. Increase the pixels if needed */
@media only screen and (max-device-width: 1366px) {
    .parallax {
        background-attachment: scroll;
    }
}

#logoMain {
  width: 30%;
}

.headerBar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  background-color: white;
}

.navBar {
  background-color: #1e1e46;
  padding: 10px;
}

nav a {
  color: white;
  font-family: 'Segoe UI', 'Segoe UI light', sans-serif;
  padding: 10px;
  font-size: 24px;
  display: inline;
  background-color: #1e1e46;
}

nav a:hover {
  background-color: orange;
  color: #1e1e46;
}

.parallaxContent {
  height: 525px;
  background-color: #1e1e46;
  color: white;
  font-family: sans-serif;
  padding: 10px;
  padding-top: 10px;
}

.parallax2 {
  /* The image used */
  background-image: url('http://computerwrestlers.com/wp-content/uploads/2018/02/computer-repair-800.jpg');

  /* Full height */
  height: 60%;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Turn off parallax scrolling for tablets and phones. Increase the pixels if needed */
@media only screen and (max-device-width: 1366px) {
  .parallax2 {
      background-attachment: scroll;
  }
}

.centeredText {
  text-align: center;
}

.serviceLinks img {
  min-width: 200px;
}

.imageWrap_1 {
  position: relative;
  width: 300px;
  margin: 0 auto;
  padding: 40px;
}

.imageDescription {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e1e46;
  color: white;
  visibility: hidden;
  opacity: 0;
  transition: opacity .2s, visibility .2s;
  text-align: center;
  vertical-align: center;
  line-height: 225px;
  font-size: 36px;
}

.imageWrap_1:hover .imageDescription {
  visibility: visible;
  opacity: .9;
}

.imageWrap_2 {
  position: relative;
  width: 300px;
  margin: 0 auto;
  padding: 40px;
}

.imageWrap_3 {
  position: relative;
  width: 300px;
  margin: 0 auto;
  padding: 40px;
}

.imageWrap_2:hover .imageDescription {
  visibility: visible;
  opacity: .9;
}

.imageWrap_3:hover .imageDescription {
  visibility: visible;
  opacity: .9;
}

footer {
  background-color: #1e1e46;
  color: white;
  text-align: center;
  padding: 10px;
}

.serviceLinks {
  display: inline-flex;
  margin: auto;
  width: 100%;
}

.serviceLinks img {
  border: solid lightslategray 5px;
}

.active {
  background-color: lightslategray;
  color: #1e1e46;
}

a:link {
  text-decoration: none;
}

.businessHours {
  float: right; 
}