/* Text Elements */

h2.heading-2 {
  margin-top: 0;
  margin-bottom: 0;
  color: #000;
  text-align: center;
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
  font-family: 'Inter', sans-serif;
  line-height: .8;
}

h3.heading-3 {
  font-weight: 500;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}

/* Layout Elements */

.container.hero-section {
  display: -webkit-box;
  display: -webkit-flex;
  display:    -moz-box;
  display: -ms-flexbox;
  display:         flex;
  -ms-flex-pack: start;
  -ms-flex-align: end;
  min-height: 0vh;
  width: auto;
  height: auto;
  background-color: #1b1b1b;
  background-image: -webkit-linear-gradient(top, rgba(255, 185, 0, 1) 33%, rgba(255, 95, 40, 1) 66%);
  background-image:    -moz-linear-gradient(top, rgba(255, 185, 0, 1) 33%, rgba(255, 95, 40, 1) 66%);
  background-image:      -o-linear-gradient(top, rgba(255, 185, 0, 1) 33%, rgba(255, 95, 40, 1) 66%);
  background-image:         linear-gradient(180deg, rgba(255, 185, 0, 1) 33%, rgba(255, 95, 40, 1) 66%);
  background-attachment: scroll;
  background-position: left top;
  background-clip: border-box;
  background-origin: padding-box;
  background-size: auto auto;
  background-repeat: repeat;
  -webkit-transition-delay: 0s;
     -moz-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
  -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: none;
     -moz-transition-property: none;
       -o-transition-property: none;
          transition-property: none;

  background-blend-mode: normal;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
          justify-content: flex-start;
}

.container.projects-section {
  padding: 96px 24px 48px;
}

.container.container-projects-title {
  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-align: start;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
  max-width: 1280px;

  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
          align-items: flex-start;
}

.container.container-center-picture {
  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;

  -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-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
}

.container.two-column-pictures {
  margin: 48px auto;
  padding-right: 0;
  padding-left: 0;
  max-width: 1280px;

  grid-column-gap: 48px;
  grid-template-columns: repeat(2 , auto);
  grid-template-rows: auto;
}

.container.three-column-pictures {
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
  padding-left: 0;
  max-width: 1280px;

  grid-column-gap: 48px;
  grid-template-columns: repeat(3 , auto);
  grid-template-rows: auto;
}

.container.footer {
  display: -webkit-box;
  display: -webkit-flex;
  display:    -moz-box;
  display: -ms-flexbox;
  display:         flex;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  padding: 96px 24px;
  background-color: #fff;

  -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;
}

div.responsive-picture.picture-project {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  max-width: none;
  -webkit-transition-timing-function: ease-in-out;
     -moz-transition-timing-function: ease-in-out;
       -o-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  -webkit-transition-duration: .25s;
     -moz-transition-duration: .25s;
       -o-transition-duration: .25s;
          transition-duration: .25s;
}

div.responsive-picture#picture-1 {
  padding-top: 27px;
}

div.responsive-picture.picture-2 {
  min-height: 0vh;
  height: auto;
}

div.responsive-picture.picture-2 > picture {
  height: auto;
}

@media screen and (max-width: 121.75rem) {
  /* Layout Elements */

  body.body-1 {
    background-image: none;
    background-attachment: scroll;
    background-position: left top;
    background-clip: border-box;
    background-origin: padding-box;
    background-size: 0 0;
    background-repeat: no-repeat;

    background-blend-mode: normal;
  }

  .container.hero-section {
    background-color: #1b1b1b;
    background-image: none;
    background-attachment: scroll;
    background-position: left top;
    background-clip: border-box;
    background-origin: padding-box;
    background-size: 0 0;
    background-repeat: no-repeat;

    background-blend-mode: normal;
  }
}

@media screen and (max-width: 110.375rem) {
  /* Layout Elements */

  .container.hero-section {
    min-height: auto;
  }
}

@media screen and (max-width: 80.9375rem) {
  /* Layout Elements */

  .container.container-projects-title {
    padding-right: 0;
    padding-left: 0;
  }

  .container.hero-section {
    min-height: auto;
  }
}

@media screen and (max-width: 61.0625rem) {
  /* Layout Elements */

  .container.hero-section {
    min-height: auto;
    background-attachment: scroll;
  }

  .container.projects-section {
    padding-top: 72px;
  }

  .container.container-projects-title {
    padding-left: 48px;
  }
}

@media screen and (max-width: 49.4375rem) {
  /* Layout Elements */

  .container.projects-section {
    padding-top: 48px;
  }

  .container.container-projects-title {
    margin-top: 24px;
    padding-left: 0;
  }

  .container.two-column-pictures {
    grid-template-columns: auto;
    grid-template-rows: repeat(2 , auto);
    grid-row-gap: 48px;
  }

  .container.three-column-pictures {
    grid-row-gap: 48px;
    grid-template-columns: auto;
    grid-template-rows: repeat(3 , auto);
  }

  .container.hero-section {
    min-height: auto;
  }
}

@media screen and (max-width: 41.0625rem) {
  /* Layout Elements */

  .container.hero-section {
    min-height: auto;
  }
}

@media screen and (max-width: 36.9375rem) {
  /* Layout Elements */

  .container.hero-section {
    min-height: auto;
  }
}

@media screen and (max-width: 35.375rem) {
  /* Layout Elements */

  .container.footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .container.hero-section {
    min-height: auto;
  }

  div.responsive-picture.picture-2 {
    min-height: auto;
  }
}

@media screen and (max-width: 21.6875rem) {
  /* Layout Elements */

  .container.hero-section {
    min-height: auto;
  }
}