/* Text Elements */

html {
  --gc-dark-color: #150c0d;
}

h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;

}

h2.title-message {
  margin-top: 0;
  margin-bottom: 30px;
  max-width: 800px;
  text-align: center;
  font-size: 36px;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 800;
  color: var(--gc-dark-color);
}

h6.tagline {
  display: block;
  margin-top: 0;
  margin-bottom: 24px;
  font-weight: 600;
}

h6 {
  text-transform: capitalize;
  font-size: 24px;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

a.link-text {
  color: var(--gc-dark-color);
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 16px;
}

a.link-text.footer-info {
  display: block;
  margin-bottom: 0;
  padding-bottom: 10px;
  color:var(--gc-dark-color);
  text-align: right;
  text-decoration: none;
  text-transform: none;
  font-size: 14px;
}

a.link-text.footer-info:hover {
  color:var(--gc-dark-color);
  font-weight: bold;
}

a.link-text.nav-link {
  visibility: visible;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  line-height: 18px;
}

a.link-text.nav-link:hover {
  color:var(--gc-dark-color);
  font-weight: bold;
}

a.link-text.contact-btn.nav-link {
  border-radius: 10px;
  background-color: #fff;
  color:var(--gc-dark-color);
  text-align: center;
  font-weight: 300;
}

a.link-text.contact-btn.nav-link:hover {
  color:var(--gc-dark-color);
  font-weight: bold;
}

ul {
  margin-top: 0;
  margin-bottom: 30px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  border-left: 15px solid;
  border-left-color: var(--gc-dark-color);
  padding-right: 20px;
  background-color: #fff;
  list-style-type: none;
  line-height: 40px;
}

li {
  line-height: 1.5;
  padding: 10px 0;
}

p.paragraph {
  color: var(--gc-dark-color);
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: lighter;
  padding-left: 60px;
  padding-right: 30px;
  line-height: 26px;
}

p.paragraph a {
  color: var(--gc-dark-color);
  text-decoration: none;
  font-weight: bold;
}

p.copyrite {
  color: var(--gc-dark-color);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-align: center;
  padding-top: 40px;
}

/* Layout Elements */

.container.hero-section {
  display: -webkit-box;
  display: -webkit-flex;
  display:    -moz-box;
  display: -ms-flexbox;
  display:         flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  padding: 48px 24px;
  min-height: 80vh;
  background-color: var(--gc-dark-color);
  background-image: url('../images/ridgeline.jpg');
  background-attachment: scroll;
  background-position: center center;
  background-clip: border-box;
  background-origin: padding-box;
  background-size: cover;
  background-repeat: repeat;

  background-blend-mode: normal;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.container.nav-bar {
  position: absolute;
  right: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display:    -moz-box;
  display: -ms-flexbox;
  display:         flex;
  -ms-flex-pack: justify;
  -ms-flex-align: center;
  margin-right: auto;
  margin-left: auto;
  padding-top: 24px;
  padding-right: 24px;
  padding-left: 24px;

  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
}

.container.footer-region {
  padding: 96px 24px;
}

.container.nav-link-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display:    -moz-box;
  display: -ms-flexbox;
  display:         flex;
  visibility: hidden;
}

.container.highlight-section {
  display: -webkit-box;
  display: -webkit-flex;
  display:    -moz-box;
  display: -ms-flexbox;
  display:         flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  padding: 48px 24px;
  min-height: 40vh;
  background-color: #ececec;

  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
}

div.responsive-picture.picture-2 {
  width: 277px;
}

@media screen and (max-width: 48rem) {
  /* Layout Elements */

  .container.nav-bar {
    -ms-flex-pack: justify;
    padding-bottom: 0;

    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (max-width: 35rem) {
  /* Layout Elements */

  .container.nav-bar {
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: center;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
  }

  .container.nav-link-wrapper {
    margin-top: 26px;
  }
}