@charset "UTF-8";

.new-page {
  font-family: sans-serif;
  margin: 0;
  background-color: #00aaa9;
}

#new-intro {
  background-image: url("images/pattern-intro.png");
}

#new-gap-1 {
  background-color: #ff7838;
}

#new-bio {
  background-image: url("images/pattern-bio.png");
}

#new-gap-2 {
  background-color: #ff6dc2;
}

#new-values {
  background-image: url("images/pattern-values.png");
}

#new-gap-3 {
  background-color: #da7dbf;
}

#new-services {
  background-image: url("images/pattern-services.png");
}

#new-gap-4 {
  background-color: #00aaa9;
}

#new-contact {
  background-image: url("images/pattern-contact.png");
  /*
  height: 60vh;
  */
}


.name {
  font-family: sans-serif;
  color: white;
  position: fixed;
  z-index: 3;
  top: 20px;
  right: -180px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  width: 200px;
  font-weight: 800;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#new-logo-section {
  height: 100vh;
  margin: auto;
  display: flex;
  align-items; center;
  justify-content: center;
}

.new-logo {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 15vw;
}

.new-quote-text {
  margin: 0 auto;
  padding: 100px 100px;
  max-width: 1200px;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: #111;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
}

.new-quote-attribution {
  display: block;
  margin: 1.5em 0 0 0;
  font-size: 1.875rem;
  font-weight: 500;
}


.new-section-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 90px 70px;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.new-section-content h1 {
  font-size: 3rem;
  color: white;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.new-section-content p {
  margin: 0 0 0.5em 0;
}

.new-section-content a {
  color: #fff;
}

.new-section-content a:hover {
  color: #000;
  text-decoration: underline;
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
}

.column {
  flex-basis: 0;
  flex-grow: 1;
  text-align: left;
  padding-left: 20px;
  padding-right: 20px;
  min-width: 320px;
}

.new-section-content .row .column p {
  font-size: 2rem;
  padding: 20px 0px;
}

.column p {
  font-size: 1.25rem;
}

.new-email {
  font-size: 1.5rem;
  text-align: center;
}

.new-email a {
  text-decoration: none;
}

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

.new-footer {
  padding-top: 10vh;
  text-align: center;
  color: #666666;
}

.scroll-arrow {
  position: absolute;
  left: 50%;
  bottom: 30px;
  margin: 0 0 0 -27px;
  width: 54px;
}


@media screen and (max-height: 600px) {
  .scroll-arrow {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .name {
    position: absolute;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    top: 10px;
    right: auto;
    left: 0;
    width: 100%;
    text-align: center;
  }

  h1, .new-quote-text {
    font-size: 1.5rem;
  }

  .new-quote-text {
    max-width: 600px;
  }

  .new-quote-attribution {
    font-size: 1.5rem;
  }

  .new-section-content {
    padding: 50px 0 150px;
  }

  .new-section-content h1 {
    font-size: 2rem;
  }

  .new-email {
    font-size: 1.5rem;
  }

  .new-section-content .row .column p {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 568px) {
  .new-section-content {
    padding-bottom: 50px;
  }
}


