body {
  background-color: black;
  color: white;
}

a {
  color: white;
}

a:hover {
  color: white;
  text-decoration: underline;
}

.underliner {
  background: white;
}

/* showcase */
#showcase-overlay {
  width: 100%;
  height: 85vh;
  position: absolute;
  background: linear-gradient(
    270deg,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 1) 100%
  );
  opacity: 1;
  z-index: 1;
}
#showcase-content {
  grid-template-columns: 1fr;
}

/* services */
.service-section {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.service-box-bg {
  min-height: 100vh;
  min-height: 100dvh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.service-box-text {
  padding: 30%;
  display: grid;
  justify-content: center;
  align-content: center;
}

.service-section h3 {
  font-weight: 800;
  font-size: 2.1em;
}

.service-box-overlay {
  background: rgb(0, 0, 0);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 45%,
    rgba(0, 0, 0, 1) 98%
  );
  position: absolute;
  width: 100%;
  height: 100%;
}
.service-box-overlay-inverse {
  background: linear-gradient(
    270deg,
    rgba(0, 0, 0, 0) 45%,
    rgba(0, 0, 0, 1) 98%
  );
}

/* ----- MEDIA QUERIES ----- */
@media (max-width: 1600px) {
  .service-box-text {
    padding: 25%;
  }
}
@media (max-width: 1200px) {
  .service-box-text {
    padding: 20%;
  }
}
@media (max-width: 992px) {
  .service-box-text {
    padding: 15%;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 5.8em;
  }
  h3 {
    font-size: 2.2em;
  }
  .slogan-container h2 {
    font-size: 3.8em;
}
  #showcase-overlay {
    background: linear-gradient(
      270deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 1) 100%
    );
  }
  .service-section {
    grid-template-columns: 1fr;
  }
  .service-box-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 45%,
      rgba(0, 0, 0, 1) 98%
    );
  }
  .grid-area-1{
    grid-row: 1;
  }
}
@media (max-width: 655px) {
  h1 {
    font-size: 4.5em;
  }
  h3 {
    font-size: 1.7em;
  }
  .slogan-container h2 {
    font-size: 3.2em;
}
}
@media (max-width: 520px) {
  h1 {
    font-size: 3.5em;
  }
  h3 {
    font-size: 1.4em;
  }
}
@media (max-width: 480px) {
  .slogan-container h2 {
    font-size: 3em;
}
}
@media (max-width: 400px) {
  h1 {
    font-size: 2.8em;
  }
  h3 {
    font-size: 1.2em;
  }
  .service-box-text {
    padding: 30px 30px 80px 30px;
  }
}
@media (max-width: 330px) {
  h1 {
    font-size: 2.3em;
  }
  h3 {
    font-size: 1em;
  }
}
