[data-scroll] {
  opacity: 0;
  will-change: transform, opacity;
  transform: translateY(6rem);
  transition: all 1.5s;
}

[data-scroll="in"] {
  opacity: 1;
  transform: translateY(0);
}

[data-scroll="out"] {
  opacity: 0;
  transform: translateY(6rem);
}


@font-face {
    font-family: "BL Melody";
    src: url("src/fonts/BLMelody-Light.woff") format("woff"),
         url("src/fonts/BLMelody-Light.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "BL Melody";
    src: url("src/fonts/BLMelody-SemiBold.woff") format("woff"),
         url("src/fonts/BLMelody-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "BL Melody";
    src: url("src/fonts/BLMelody-Bold.woff") format("woff"),
         url("src/fonts/BLMelody-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
}

/*Animations*/

@keyframes navLinkFade {
    from {
      opacity: 0;
      transform: translate(50px);
    }
    to {
      opacity: 1;
      transform: translate(0);
    }
  }

  @keyframes fadeInAnimation {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
     }
  }
  
  .toggle .line1 {
    transform: rotate(-45deg) translate(-4px, 6px);
  }
  .toggle .line2 {
    opacity: 0;
  }
  .toggle .line3 {
    transform: rotate(45deg) translate(-4px, -6px);
  }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

.lock-scroll {
  overflow: hidden;
}

a, a:hover, a:active, a:visited, a:focus {
  text-decoration:none;
}

a:-webkit-any-link { text-decoration: none !important; }

body {
    background-color: rgb(0, 0, 0);
    font-family: "BL Melody", Arial, Helvetica, sans-serif;
    color: rgb(255,255,255);
}

h1, h2 {
  font-family: "BL Melody", Arial, Helvetica, sans-serif;
  font-weight: 700;
}

h3, h4 {
    font-family: "BL Melody", Arial, Helvetica, sans-serif;
    font-weight: 300;
  }


p {
    font-family: "BL Melody", Arial, Helvetica, sans-serif;
    font-weight: 300;
    font-size: 1.125rem;
    margin-bottom: 1.75rem;
    line-height: 1.75rem;
    letter-spacing: -0.02em;
    text-align: left;
}

p:last-child {
    margin-bottom: 0 !important;
}

p a {
    text-decoration: none;
    font-weight: 600;
    color: rgb(255, 255, 255);
    border-bottom: 0px solid rgb(255, 255, 255, 0);
    transition: all 0.2s;
}

p a:hover {
    border-bottom: 1px solid rgb(255, 255, 255, 1);
}

header {
    width:100%;
    padding: 20px 0;
    max-width: 1440px;
    font-size: 1.125rem;
}

nav {
    width:100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    z-index: 99;
    background-color: rgb(0, 0, 0);
    font-size: 1.125rem;
  }

video {
  /* override other styles to make responsive */
  width: 100%    !important;
  height: auto   !important;
  border: 0;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

  .page-container {
    margin: 0 40px;
  }
  
  .logo {
    margin-top: 5px;
    font-weight: 700;
  }

  .logo a:hover{
    text-decoration: none;
  }

  .logo a:active {
    text-decoration: none;
  }

  .logo img {
    width:94px;
    height:auto;
  }
  
  .nav-links {
    text-decoration: none;
    list-style: none;
    display: flex;
    justify-content: flex-end;
  }
  
  .nav-links li {
    padding: 0 32px;
  }
  
  .nav-links li:last-child {
    padding: 0 0 0 32px;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    border-bottom: 0px solid rgb(255, 255, 255, 0);
    transition: all 0.2s;
  }
  
  .nav-links li a:hover {
    border-bottom: 1px solid rgb(255, 255, 255, 1);
  }
  
  .burger div {
    width: 25px;
    height: 2px;
    background-color: rgb(255, 255, 255);
    margin: 5px;
    transition: all 0.3s ease;
  }
  
  .burger {
    display: none;
    cursor: pointer;
  }

  /*NAV MOBILE STYLES*/
@media screen and (max-width: 768px) {
    nav {
      position: fixed;
      top: 0;
    }
  
    .nav-links {
      position: absolute;
      right: 0px;
      height: 100vh;
      top: 60px;
      background-color: rgb(0, 0, 0);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-evenly;
      width: 100%;
      transform: translate(100%);
      transition: transform 0.5s ease-in;
      z-index: 99;
      font-size: 2rem;
      padding-bottom: 120px;
      opacity: 1;
    }
  
    .nav-links li {
      opacity: 0;
    }
  
    .nav-links li:last-child {
      padding: 0 32px;
    }
  
    .burger {
      display: block;
    }
  
  }

.nav-active {
  transform: translate(0%);
  }

footer {
  margin: 100px 0 40px 0;
}

.hero-title {
    margin:160px 0;
}

.hero-title h1 {
    font-size: 9.375rem;
    line-height: 14.188rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.hero-title h2 {
    font-size: 9.375rem;
    line-height: 14.188rem;
    font-weight: 300;
    letter-spacing: -0.03em;
    margin-top:-4rem;
}

.showreel {
    position: relative;
}

.animate_element__1 {
    animation: fadeInAnimation ease 1.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.animate_element__2 {
  animation: fadeInAnimation ease 1.5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0.25s;
  opacity: 0;
}

.animate_element__3 {
  animation: fadeInAnimation ease 1.5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.showreel img {
    width: 100%;
    height: auto;
}

.showreel__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    flex-direction: column;
}

.showreel__play-btn img {
  height:50px;
  width:auto;
  margin-bottom: 8px;
  transition: transform 0.5s; /* Animation */
}

.showreel__play-btn p {
  font-weight: 600;
  font-size: 1.25rem;
}


.video-block {
  position: relative;
  max-width: 100%;
  margin-bottom: 20px;
  margin-top:10px;
}
.video-block.video-iframe-container{
  height: 500px;
  margin-bottom: inherit;;
  margin-top:inherit;
}
.responsive-iframe, .video-block-pos {
  width: 100%;
  height: 100%;
  border: none;
  position: relative;
}

.video-block.video-iframe-container{
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
iframe.responsive-iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-play {
  cursor: pointer;
}

.showreel__play-btn img:hover {
  transform: scale(1.1);
}

.intro {
    margin:100px auto;
    max-width:1010px;
}

.intro__copy {
  margin-bottom:60px;  
}

.intro__copy p {
    font-size: 3.125rem;
    font-weight: 300;
    line-height: 4.125rem;
    letter-spacing: -0.05em;
}

.intro__btn {
    display: inline-block;
    border-radius: 50px;
    padding: 20px 40px;
    background-color: rgb(255,255,255);
    color: rgb(0,0,0);
    font-size: 1.25rem;
    font-weight: 600;
    transition: all 0.3s ease-out;
    border: 1px solid rgb(255, 255, 255);
}

.intro a {
  text-decoration: none;
}

.intro__btn:hover {
    background-color: rgb(0,0,0);
    color: rgb(255,255,255);
}

.divider {
    width:100%;
    border-bottom: 1px solid rgb(137, 137, 137);
}

.featured-work {
    width:100%;
    margin-top:20px;
}

.featured-work h3 {
    font-size: 1rem;
    text-transform: uppercase;
}

.featured-work__grid { 
  margin-top:100px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto auto auto 70px auto;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "featured-work__primary featured-work__primary featured-work__primary . . . . ."
    "featured-work__primary featured-work__primary featured-work__primary . featured-work__secondary featured-work__secondary featured-work__secondary featured-work__secondary"
    ". . . . featured-work__secondary featured-work__secondary featured-work__secondary featured-work__secondary"
    ". . . . featured-work__secondary featured-work__secondary featured-work__secondary featured-work__secondary"
    ". . . . . . . ."
    ". featured-work__tertiary featured-work__tertiary featured-work__tertiary featured-work__tertiary featured-work__tertiary featured-work__tertiary .";
}

.featured-work__primary {
  grid-area: featured-work__primary;
}

.featured-work__secondary {
  grid-area: featured-work__secondary;
}

.featured-work__tertiary {
  grid-area: featured-work__tertiary;
}

.featured-work__image {
  width: 100%;
  overflow: hidden;
}

.featured-work__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s; /* Animation */
}

.featured-work__image img:hover {
  transform: scale(1.1);
}

.featured-work__title {
    display: flex;
    margin-top:16px;
    justify-content: space-between;
}

.featured-work__title h4 {
    font-size: 1.125rem;
    letter-spacing: -0.05em;
}

.footer-content {
    width:100%;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size:1rem;
}

.footer-content__text {
  flex-basis: 40%;
  text-align: left;
}

.footer-content__social {
  flex-basis: 20%;
  text-align: center;
}

.footer-content__contact {
  flex-basis: 40%;
  text-align: right;
}

.footer-content__contact a {
    font-weight: 600;
    color: rgb(255, 255, 255);
    text-decoration: none;
    border-bottom: 1px solid rgb(255, 255, 255, 0);
    transition: all 0.3s ease-out;
}

.footer-content__contact a:hover {
    border-bottom: 1px solid rgb(255, 255, 255, 1);
}

.grid-container {
  width: 100%;
  padding: 20px 0;
}

.grid-container-1 {
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-areas: "Item1 Item2 Item3" "Item1 Item2 Item3" "Item1 Item2 Item3" "Item1 Item5 Item5" "Item4 Item5 Item5" "Item4 Item5 Item5" "Item4 Item5 Item5" "Item4 Item5 Item5";
  column-gap: 40px;
  row-gap: 40px;
}

.grid-container-2 {
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-areas: "item6 item7 item8" "item6 item7 item8" "item6 item7 item8" "item9 item9 item8" "item9 item9 item10" "item9 item9 item10" "item9 item9 item10" "item9 item9 item10";
  column-gap: 40px;
  row-gap: 40px;
}

.grid-item1 {
  grid-area: Item1;
}

.grid-item2 {
  grid-area: Item2;
}

.grid-item3 {
  grid-area: Item3;
}

.grid-item4 {
  grid-area: Item4;
}

.grid-item5 {
  grid-area: Item5;
}

.grid-item6 {
  grid-area: item6;
}

.grid-item7 {
  grid-area: item7;
}

.grid-item8 {
  grid-area: item8;
}

.grid-item9 {
  grid-area: item9;
}

.grid-item10 {
  grid-area: item10;
}

.portfolio-click {
  width: 100%;
  height: 100%;
}

.portfolio-click:hover {
  background-color: sienna;
}

.portfolio-item {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s; /* Animation */
}

.portfolio-item img:hover {
  transform: scale(1.1);
}

.pf-hero {
  height: calc(100vh - 100px);
  margin: 0;
  background-color: rgb(0, 0, 0);
  overflow: hidden;
}

.pf-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pf-copy-container {
  margin: 100px auto 80px auto;
  display: flex;
  justify-content: space-between;
}

.pf-copy-intro {
  display: flex;
  flex-direction: column;
  width: 45%;
}

.pf-copy-intro h2 {
  font-size: 3.125rem;
  font-weight: 700;
  margin-bottom: 0rem;
}

.pf-copy-intro h3 {
  font-size: 2.75rem;
  letter-spacing: -0.05em;
}

.pf-copy-intro p {
  font-size: 0.875rem;
  margin-top: 1rem;
}

.pf-copy-detail {
  width: 45%;
}

.pf-work-container {
  display: flex;
  flex-direction: column;
}

.pf-work-container img {
  width: 100%;
  display: block;
}

.pf-work-100 {
  margin: 20px 0;
  width: 100%;
}

.pf-work-100:last-child {
  margin-bottom: 0px !important;
}

.pf-work-half-container {
  width: 100%;
  margin: 20px 0;
  display: flex;
  justify-content: space-between;
}

.pf-work-50 {
  width: calc(50% - 20px);
}

.about-container {
  display: flex;
  flex-direction: column;
  height:calc(100vh - 100px);
}

.about-container__hero {
  background-image:url("img/about/nick2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height:100%;
}

.about-container__title {
  margin: 0 auto;
  padding:0 10%;
  text-align: center;
}

.about-container__title h1 {
  font-size: 9.375rem;
  line-height: 14.188rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.about-container__intro {
  margin:100px auto 2rem auto;
  max-width:1010px;
}

.about-container__intro h2 {
  font-size: 4rem;
  line-height: 7.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.about-container__intro p {
  font-size: 3.125rem;
  font-weight: 300;
  line-height: 4.125rem;
  letter-spacing: -0.05em; 
}

.about-container__body {
  margin:2rem auto;
  max-width:1010px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.blockquote-copy {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 3.775rem;
  letter-spacing: -0.05em;
  margin:3rem 4rem 4.75rem 4rem;
}

.about-btn {
  margin:2rem 0;
  width:100%;
}

.about-keyimage {
  margin:2rem auto;
  max-width:1010px;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.about-keyimage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s; /* Animation */
}

.contact-title {
  margin:0 auto 0 auto;
  max-width:1010px;
  text-align: center;
}

.contact-title h1 {
  font-size: 9.375rem;
  line-height: 14.188rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.contact-container {
  margin:20px auto 0 auto;
  max-width:800px;
  text-align: center;
}

.contact-container p {
  font-size: 3.125rem;
  font-weight: 300;
  line-height: 4.125rem;
  letter-spacing: -0.05em;
  text-align: center; 
}

.contact-container__form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.form-group__field {
  display: flex;
  flex-direction: column;
  margin: 40px 0;
  width:100%;
  text-align: left;
}

.form-group__field__element {
  width:100%;
}

.form-group__field__input {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 2.5rem;
  color: rgb(255,255,255);
  background-color: rgb(18, 18, 18);
  background-clip: padding-box;
  border: 1px solid rgb(126, 126, 126);
  outline: none;
  border-radius: 0rem;
  font-family: "BL Melody", Arial, Helvetica, sans-serif;
  font-weight: 300;
}

.form-group__field__input:focus {
  border: 1px solid rgb(255,255,255);
}

label.form-group__label {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.form-group__field textarea {
  resize:none;
  line-height: 1.5rem;
  font-family: "BL Melody", Arial, Helvetica, sans-serif;
  font-weight: 300;
  text-align: left;
}

.form-group__btn {
  margin: 40px auto 0 auto;
}

.pf-more-work {
  margin-top:100px;
  text-align: center;
}

/* Tablet Landscape size - Below 1024px down to 768px */
@media screen and (max-width: 1024px) {

.hero-title {
    margin:100px 0;
}

.hero-title h1 {
    font-size: 5rem;
    line-height: 6.5rem;
    letter-spacing: -0.03em;
}

.hero-title h2 {
    font-size: 5rem;
    line-height: 6.5rem;
    letter-spacing: -0.03em;
    margin-top:-1rem
}

.about-container__title {
  margin: 0;
  padding:100px 0 120px 0;
  text-align: left;
}

.about-container__title h1 {
  font-size: 5rem;
  line-height: 6.5rem;
}

.about-container__intro {
  margin:50px auto 2rem auto;
  max-width:1010px;
}

.about-container__intro h2 {
  font-size: 3.5rem;
  line-height: 4rem;
}

.about-container__intro p {
  font-size: 2.5rem;
  line-height: 3.125rem;
  letter-spacing: -0.03em; 
}

.blockquote-copy {
  font-size: 2.5rem;
  line-height: 3rem;
  letter-spacing: -0.05em;
  margin:3.125rem 3rem 4.5rem 3rem;
}

footer {
  margin: 50px 0 40px 0;
}

.footer-content__text {
  flex-basis: 45%;
}

.footer-content__social {
  flex-basis: 10%;
}

.footer-content__contact {
  flex-basis: 45%;
}
  
  .grid-container-1 {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1.5fr;
    grid-template-areas: "Item1 Item2" "Item3 Item4" "Item5 Item5";
  }

  .grid-container-2 {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1.5fr;
    grid-template-areas: "item6 item7" "item8 item9" "item10 item10";
  }

  .pf-copy-container {
    margin: 50px auto 30px auto;
  }

  .pf-copy-intro h2 {
    font-size: 1.8rem;
  }
    
  .pf-copy-intro h3 {
    font-size: 1.5rem;
    line-height: 1.875rem;
    letter-spacing: -0.02em;
    margin-bottom: 0;
  }

  .contact-title {
    margin:100px 0;
  }
  
  .contact-title h1 {
    font-size: 5rem;
    line-height: 6.5rem;
    letter-spacing: -0.03em;
  }
  
  .contact-container {
    margin:50px auto;
  }  
  
  .contact-container p {
  font-size: 2.5rem;
  line-height: 3.125rem;
  letter-spacing: -0.03em;
  }  

  .pf-more-work {
    margin-top:50px;
  }

}

/* Tablet size - Below 768px down to 600px (NAV BREAKPOINT)*/
@media screen and (max-width: 768px) {

  .hero-title {
    margin:120px 0 50px 0;
  }

  .about-container__title {
    margin:120px 0 50px 0;
    padding:0;
    text-align: left;
  }

  .pf-hero {
    margin-top: 60px;
    height: calc(60vh - 100px);
  }

  .about-hero {
    margin-top: 70px;
  }

  .about-container {
    height:calc(100vh - 40px);
  }

  .contact-title {
    margin:120px 0 50px 0;
  }

  .featured-work__grid { 
    display: grid;
    margin-top:50px;
    height:auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 50px 0px;
    grid-auto-flow: row;
    grid-template-areas:
      "featured-work__primary"
      "featured-work__secondary"
      "featured-work__tertiary";
  }
  
  .featured-work__primary {
    grid-area: featured-work__primary;
  }
  
  .featured-work__secondary {
    grid-area: featured-work__secondary;
  }
  
  .featured-work__tertiary {
    grid-area: featured-work__tertiary;
  }
  
  .pf-more-work {
    margin-top:50px;
  }

}

/* Mobile size - Below 600px */
@media screen and (max-width: 600px) {
  [data-scroll] {
    opacity: 0;
    will-change: transform, opacity;
    transform: translateY(0rem);
    transition: all 1.5s;
  }
  
  [data-scroll="in"] {
    opacity: 1;
    transform: translateY(0);
  }
  
  [data-scroll="out"] {
    opacity: 0;
    transform: translateY(0rem);
  }

  nav {
    padding: 0 20px;
  }

  .page-container {
    margin: 0 20px;
  }

  .hero-title {
    margin:120px 0 50px 0;
  }

.hero-title h1 {
  font-size: 3.375rem;
  line-height: 3.6rem;
}

.hero-title h2 {
  font-size: 3.375rem;
  line-height: 3.6rem;
  margin-top:0;
}

.intro {
  margin:50px auto;
}

.intro__copy {
margin-bottom:50px;  
}

.intro__copy p {
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: -0.02em;
}

.intro__btn {
  display: block;
  text-align: center;
}

.featured-work h3 {
  font-size: 0.875rem;
  letter-spacing: -0.02em;
}

.featured-work__title h4 {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

footer {
  margin: 30px 0 30px 0;
}

.footer-content {
  flex-direction: column;
  gap: 1rem;
}

.footer-content__text {
flex-basis: 100%;
text-align: center;
}

.footer-content__social {
flex-basis: 20%;
text-align: center;
}

.footer-content__contact {
flex-basis: 100%;
text-align: center;
}

.portfolio-item img:hover {
  transform: none;
}

.grid-container {
  padding: 10px 0;
}

.grid-container-1 {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  grid-template-areas: "Item1" "Item2" "Item3" "Item4" "Item5";
  column-gap: 20px;
  row-gap: 20px;
}

.grid-container-2 {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  grid-template-areas: "item6" "item7" "item8" "item9" "item10";
  column-gap: 20px;
  row-gap: 20px;
}

.pf-hero {
  height: calc(50vh - 100px);
  margin: 60px 0 20px 0;
}
.pf-copy-container {
  margin: 0;
  flex-direction: column;
}

.pf-copy-intro {
  width: 100%;
  margin-bottom: 1.75rem;
}

.pf-copy-detail {
  width: 100%;
}

.pf-copy-intro h2 {
  font-size: 1.8rem;
}

.pf-copy-intro h3 {
  font-size: 1.5rem;
  line-height: 1.875rem;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.pf-work-container {
  margin: 40px 0px 20px 0;
}

.pf-work-half-container {
  flex-direction: column;
  margin: 10px 0;
}

.pf-work-100 {
  margin: 10px 0;
}

.pf-work-50 {
  width: 100%;
  margin-bottom: 20px;
}

.pf-work-50:last-child {
  margin-bottom: 0px !important;
}

.about-container {
  height:100vh;
}

.about-container__hero {
  height:100%;
  margin-bottom: 20px;
}

.about-container__title {
  margin:120px 0 50px 0;
  padding:0;
  text-align: left;
}

.about-container__title h1 {
  font-size: 3.375rem;
  line-height: 3.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.about-container__intro {
  margin:30px auto 2rem auto;
  max-width: 100%;
}

.about-container__intro h2 {
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: -0.02em;
}

.about-container__intro p {
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: -0.02em; 
}

.about-container__body {
  margin:2rem auto;
  max-width:1010px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.blockquote-copy {
  font-size: 2rem;
  line-height: 2.5rem;
  letter-spacing: -0.02em;
  margin:2rem 2rem 3.75rem 2rem;
}

.contact-title {
  margin:120px 0 50px 0;
}

.contact-title h1 {
  font-size: 3.375rem;
line-height: 3.6rem;
}

.contact-container {
  margin:50px auto;
}


.contact-container p {
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: -0.02em; 
}

.form-group__field {
  margin: 0 0 30px 0;
}

.form-group__btn {
  margin: 20px auto 0 auto;
}

.pf-more-work {
  margin-top:30px;
}


}