:root {
  --black: #020202;
  --white: white;
  --slate-blue: #6445e5;
  --light-black: #161616;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: IBM Plex Sans;
  font-size: 18px;
  line-height: 28px;
}

h1 {
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 50px;
  font-weight: 700;
  line-height: 65px;
}

p {
  margin-bottom: 20px;
}

a {
  color: var(--black);
  text-decoration: none;
}

a:hover {
  color: #d7974a;
}

img {
  max-width: 100%;
  margin-bottom: 5px;
  display: inline-block;
}

.section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section.work-track {
  width: 100%;
  height: 400vh;
  padding-top: 0;
  padding-bottom: 0;
}

.section.cta.padding-top-0 {
  margin-top: -4rem;
  padding-top: 0;
}

.dark-background {
  background-color: var(--black);
}

.title {
  font-family: Archivo;
  font-size: 32px;
  font-weight: 600;
  line-height: 38px;
}

.title.h1 {
  font-size: 8em;
  font-weight: 300;
  line-height: .8em;
}

.title.h1.white.banner-heading {
  z-index: 2;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  font-family: Times New Roman, TimesNewRoman, Times, Baskerville, Georgia, serif;
  font-size: 11em;
  font-weight: 400;
  position: absolute;
}

.title.h1.cta {
  color: #000;
  text-transform: none;
  margin-top: 4rem;
  margin-bottom: 4rem;
  font-family: Cormorant, sans-serif;
  font-size: 5em;
  text-decoration: none;
  transition: all .2s;
}

.title.h1.cta:hover {
  color: #c78644;
}

.title.h1.me-work {
  letter-spacing: 30px;
  text-transform: uppercase;
  font-family: Times New Roman, TimesNewRoman, Times, Baskerville, Georgia, serif;
  font-size: 4.8em;
  position: absolute;
  top: 6%;
  left: 20%;
}

.title.h1.about-title {
  margin-top: 0;
  margin-bottom: 48px;
  font-size: 5.4em;
}

.title.h1.extra-large {
  z-index: 1;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  font-size: 32vw;
  font-weight: 300;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.title.h2 {
  margin-top: 0;
  font-size: 48px;
  font-weight: 300;
  line-height: 56px;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container.fullwidth {
  max-width: 100%;
}

.container.center {
  text-align: center;
}

.navbar {
  z-index: 10;
  opacity: 1;
  color: var(--black);
  background-color: rgba(255, 255, 255, 0);
  padding-top: 4rem;
  padding-bottom: 24px;
}

.navbar-inner {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.nav-link {
  background-color: var(--white);
  color: var(--black);
  letter-spacing: 4px;
  text-transform: uppercase;
  border: 1px solid #000;
  border-radius: 0;
  padding: 8px 24px;
  font-size: 12px;
  font-weight: 700;
  transition: all .2s;
}

.nav-link:hover {
  background-color: var(--black);
  color: var(--white);
}

.nav-link.w--current {
  color: var(--black);
}

.nav-link.displaymobile {
  background-color: var(--black);
  color: var(--black);
  line-height: 28px;
}

.nav-link.displaymobile.nopadding {
  background-color: rgba(2, 2, 2, 0);
  border-width: 0;
  padding: 7px 10px 11px;
  display: none;
}

.brand-image {
  max-height: 80px;
}

.banner-block {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.banner-image {
  z-index: 1;
  filter: blur(10px);
  height: 65vh;
  transition: all .2s;
  position: relative;
}

.white {
  color: var(--white);
}

.camera {
  width: 100vw;
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.frame {
  height: 100%;
  display: flex;
}

.frame-item {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

.portfolio-block {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  pointer-events: none;
  color: #fff;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 750px;
  text-decoration: none;
  display: grid;
}

.portfolio-block:hover {
  color: #6445e5;
}

.portfolio-image {
  object-fit: cover;
  width: 100%;
  height: auto;
}

.cta {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cta-text-link {
  color: #000;
}

.cta-text-link:hover {
  color: var(--slate-blue);
}

.cta-text {
  font-size: 22px;
  line-height: 32px;
}

.footer-section {
  padding-top: 16px;
  padding-bottom: 4rem;
}

.footer-text {
  text-align: center;
}

.footer-link {
  color: #000;
  text-decoration: none;
}

.footer-link:hover {
  color: #c78644;
}

.scroll-down-button {
  z-index: 4;
  width: 120px;
  padding: 8px 12px;
  position: absolute;
  bottom: 0;
}

.testimonial-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 24px;
  display: grid;
}

.testimonial-block {
  border: 1px solid var(--light-black);
  background-color: var(--black);
  padding: 24px;
}

.testimonial-content {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 30px;
}

.author-block {
  align-items: center;
  margin-top: 24px;
  display: flex;
}

.author-image {
  object-fit: cover;
  border-radius: 100px;
  width: 56px;
  height: 56px;
}

.author-detail {
  padding-left: 12px;
}

.author-work {
  font-size: 16px;
  line-height: 24px;
  display: block;
}

.about-text {
  width: 100%;
  max-width: 700px;
  font-size: 20px;
  line-height: 30px;
}

.about-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.button {
  background-color: var(--light-black);
  border-radius: 100px;
  padding: 8px 24px;
}

.camera-2 {
  width: 100%;
  position: relative;
}

.frame-2 {
  z-index: 4;
  width: 100%;
  position: relative;
}

.banner-image-2 {
  border-radius: 3000px;
  height: 56vh;
}

.body {
  background-color: var(--white);
  color: var(--black);
  font-family: Cormorant, sans-serif;
  font-weight: 500;
}

.image {
  z-index: 2;
  width: 1030px;
  position: absolute;
  top: -110px;
}

.gallery {
  width: 100%;
  padding: 4rem 0;
  position: static;
  top: 0;
  overflow: hidden;
}

.gallery.displaymobile {
  display: none;
}

.gallerycontainer {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-indent: 0;
  column-count: 3;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.galleryimage.height {
  border-radius: 0;
  margin-bottom: 5px;
  margin-right: 0;
}

.lightbox-link {
  display: block;
}

.containergallery {
  column-count: 4;
  column-gap: 5px;
}

.subheading {
  color: #c78644;
  letter-spacing: 20px;
  text-transform: uppercase;
  font-weight: 700;
}

.subheading.small {
  letter-spacing: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 26px;
}

.heading {
  margin-top: 10px;
  font-family: Cormorant, sans-serif;
  line-height: 52px;
}

.heading.margin-top {
  margin-top: 10px;
}

.paragraph {
  font-weight: 500;
}

.div-block {
  position: relative;
}

.div-block-2 {
  background-image: linear-gradient(0deg, #fff 29%, rgba(255, 255, 255, 0));
  width: 100%;
  height: 1020px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.headingbox {
  margin-bottom: 20px;
}

.image-2 {
  width: 30px;
}

.link {
  transition: all .2s;
}

.fce-two-columns {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 4rem;
  display: grid;
}

.rich-text-block {
  text-align: left;
}

.paragraph-2 {
  font-family: Cormorant, sans-serif;
}

@media screen and (min-width: 1920px) {
  .gallerycontainer {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 991px) {
  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section.cta {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .title.h1.white.banner-heading {
    font-size: 6em;
  }

  .title.h1.white.banner-heading-2 {
    text-align: center;
    font-size: 6em;
    position: absolute;
    bottom: 100px;
  }

  .title.h1.cta {
    font-size: 4em;
  }

  .title.h1.me-work {
    font-size: 3.8em;
    left: 16px;
  }

  .title.h1.about-title {
    font-size: 3.8em;
  }

  .title.h2 {
    font-size: 40px;
    line-height: 48px;
  }

  .container.center {
    max-width: 100%;
  }

  .banner-block {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    padding-bottom: 100px;
  }

  .frame-item {
    padding-left: 24px;
    padding-right: 24px;
  }

  .banner-image-2 {
    object-fit: cover;
    max-width: 100%;
  }

  .gallery {
    padding-top: 0;
  }

  .heading.margin-top {
    line-height: 52px;
  }

  .heading.margin-top.smalllineheight {
    line-height: 42px;
  }

  .div-block-2 {
    height: 460px;
  }
}

@media screen and (max-width: 767px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section.cta {
    height: auto;
  }

  .title.h1.white.banner-heading, .title.h1.white.banner-heading-2 {
    font-size: 4.4em;
  }

  .title.h1.cta {
    font-size: 3em;
  }

  .title.h1.me-work {
    font-size: 3em;
    top: 4%;
  }

  .title.h1.about-title {
    font-size: 3em;
  }

  .title.h2 {
    font-size: 32px;
    line-height: 38px;
  }

  .navbar {
    padding-top: 24px;
  }

  .nav-link {
    letter-spacing: 2px;
    font-size: 10px;
    line-height: 22px;
  }

  .brand-image {
    max-width: 84%;
  }

  .banner-image {
    max-height: 450px;
  }

  .portfolio-image {
    object-fit: cover;
    height: 56vh;
  }

  .cta-text {
    font-size: 18px;
    line-height: 28px;
  }

  .footer-text {
    font-size: 14px;
    line-height: 22px;
  }

  .testimonial-wrapper {
    grid-template-columns: 1fr;
  }

  .testimonial-content, .about-text {
    font-size: 18px;
    line-height: 28px;
  }

  .banner-image-2 {
    height: 50vh;
  }

  .containergallery {
    column-count: 2;
  }

  .fce-two-columns {
    grid-template-columns: 1fr;
  }

  .rich-text-block {
    text-align: center;
  }

  .list {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-left: 0;
    list-style-type: none;
    display: inline-block;
  }

  .list-item {
    list-style-type: none;
  }

  .list-2, .list-3 {
    padding-left: 0;
    list-style-type: none;
  }
}

@media screen and (max-width: 479px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.cta.padding-top-0 {
    margin-top: 0;
  }

  .title.h1.white.banner-heading {
    font-size: 3em;
  }

  .title.h1.white.banner-heading-2 {
    font-size: 3.8em;
    bottom: 60px;
  }

  .title.h1.cta, .title.h1.me-work, .title.h1.about-title {
    font-size: 2em;
  }

  .title.h1.extra-large {
    height: 60vh;
  }

  .container, .nav-link {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-link.displaydesktop {
    display: none;
  }

  .nav-link.displaymobile.nopadding {
    padding: 0;
    display: inline-block;
  }

  .brand-image {
    max-width: 76%;
  }

  .banner-image {
    width: 94%;
    height: auto;
    max-height: none;
  }

  .cta {
    text-align: center;
  }

  .gallery.displaydesktop, .gallery.displaymobile {
    display: block;
  }

  .containergallery {
    column-count: 2;
  }

  .subheading {
    letter-spacing: 4px;
    font-size: 13px;
    line-height: 18px;
  }

  .heading {
    font-size: 40px;
    line-height: 42px;
  }

  .heading.margin-top.smalllineheight {
    font-size: 20px;
    line-height: 30px;
  }

  .div-block-2 {
    display: none;
  }

  .image-2.nomargin {
    margin-bottom: 0;
  }

  .slide-nav {
    display: none;
  }

  .slider {
    background-color: rgba(221, 221, 221, 0);
  }

  .icon, .icon-2 {
    color: var(--white);
  }

  .fce-two-columns {
    margin-top: 2rem;
  }
}


@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/Cormorant-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/Cormorant-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/Cormorant-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/Cormorant-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/Cormorant-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/Cormorant-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/Cormorant-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/Cormorant-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/Cormorant-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant';
  src: url('../fonts/Cormorant-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}