/* Global Colors */
/* Global Fonts */
.wow {
  visibility: hidden;
}

section#innerHeader {
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  display: flex;
  align-items: center;
}
section#innerHeader h1 {
  font-size: 89px;
  font-weight: 900;
  display: block;
  width: 100%;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  section#innerHeader h1 {
    font-size: 60px;
  }
}
section#mainContent {
  margin: 100px 0;
}
@media (max-width: 768px) {
  section#mainContent {
    margin: 0;
  }
}
section#mainContent .service {
  display: flex;
  align-items: center;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  section#mainContent .service {
    margin: 0 0 6rem 0;
    padding: 0;
    flex-direction: column-reverse;
  }
}
section#mainContent .service:nth-child(odd) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  section#mainContent .service:nth-child(odd) {
    flex-direction: column-reverse;
  }
}
section#mainContent .service:nth-child(odd) .service-left {
  padding-left: 40px;
}
@media (max-width: 768px) {
  section#mainContent .service:nth-child(odd) .service-left {
    padding-left: 15px;
  }
}
section#mainContent .service-left {
  transition: all 0.25s linear;
}
section#mainContent .service-left h2 {
  font-weight: 100;
  font-size: 38px;
  position: relative;
  padding: 0 0 35px 0;
  font-family: "Open Sans Condensed", sans-serif;
}
section#mainContent .service-left h2::before {
  display: none;
}
section#mainContent .service-left h3 {
  font-size: 18px;
  font-weight: 100;
  line-height: 25px;
}
section#mainContent .service-right {
  background-size: cover;
  height: 360px;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.25s linear;
}
@media (max-width: 768px) {
  section#mainContent .service-right {
    margin-bottom: 1rem;
    width: 100%;
    height: 250px;
  }
}
