/* Text Elements */

h1 {
  font-family: 'Inter', sans-serif;
}

h1.hero-heading {
  margin-top: 0;
  margin-bottom: 24px;
  color: #360000;
  text-align: center;
  font-style: italic;
  font-size: 62px;
  font-family: 'Permanent Marker', cursive;
  line-height: 1;
}

p.paragraph.hero-action-message {
  display: block;
  margin-right: auto;
  margin-left: auto;
  color: #360000;
  text-align: center;
  font-style: italic;
  line-height: 24px;
  -webkit-transition-delay: .02s;
     -moz-transition-delay: .02s;
       -o-transition-delay: .02s;
          transition-delay: .02s;
  -webkit-transition-timing-function: ease;
     -moz-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0s;
     -moz-transition-duration: 0s;
       -o-transition-duration: 0s;
          transition-duration: 0s;
  -webkit-transition-property: all;
     -moz-transition-property: all;
       -o-transition-property: all;
          transition-property: all;
  -webkit-transform: scaleX(1.02) scaleY(1.02) scaleZ(1.02);
     -moz-transform: scaleX(1.02) scaleY(1.02) scaleZ(1.02);
          transform: scaleX(1.02) scaleY(1.02) scaleZ(1.02);
}

p.paragraph {
  max-width: 800px;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

p.paragraph a.paragraph-text-1 {
  font-weight: 400;
}

p.paragraph.hero-action-message:hover {
  text-shadow: #78828c 2px 2px 9px;
}

p.paragraph a.paragraph-text-1:hover {
  text-transform: none;
  font-weight: 600;
}

a.link-text.logo-nav-link {
  color: #87daf9;
  text-decoration: none;
  font-size: 35px;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  -webkit-text-stroke-color: #c6ac05;
  -webkit-text-stroke-width: 1px;
}

a.link-text {
  color: #010101;
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 16px;
}

a.link-text.logo-nav-link:hover {
  color: #d4d4d4;
}

/* 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: start;
  padding: 48px 24px;
  min-height: 80vh;
  background-color: #000;
  background-image: url('../images/Egg_Div_Portfolio.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: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
          align-items: flex-start;
  -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.hero-content-region {
  padding-top: 48px;
  padding-bottom: 48px;
  max-width: 800px;
}

@media screen and (max-width: 60rem) {
  /* Text Elements */

  h1.hero-heading {
    font-size: 48px;
  }
}

@media screen and (max-width: 48rem) {
  /* Text Elements */

  a.link-text.logo-nav-link {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  /* 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;
  }
}