:root {
  --white: white;
  --black: black;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #333;
  padding: 0;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 36px;
  font-weight: 500;
  line-height: 110%;
}

p {
  color: #333;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 150%;
}

.content-wrap {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 2rem 5% 8rem;
  display: block;
}

.animated-logo {
  width: 8vw;
  min-width: 8vw;
  max-width: 180px;
  height: 118px;
  min-height: 118px;
  max-height: 118px;
}

.web {
  width: 100%;
  height: 100svh;
  padding: 1.2rem;
}

.container-large {
  max-width: 84rem;
}

.logo-wrap {
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 0 2rem 2rem;
  display: flex;
}

.brand-logo {
  max-width: 100px;
}

.content-section {
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 1.8rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 50vh;
  padding: 6rem 4rem;
  display: flex;
  overflow: hidden;
}

.content-section.video {
  background-color: #f7f7f7;
  border-style: none;
  min-height: 50vh;
  max-height: 50rem;
  padding: 0;
  overflow: hidden;
}

.content-section.no-outine {
  border-style: none;
}

.content-section.no-outine.text-block {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  min-height: auto;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.content-section.no-outine.text-block.alt {
  padding-top: 4rem;
}

.content-section.blue {
  background-color: #1d36ec;
  background-image: url('../images/grid-bg.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-style: none;
}

.content-section.black {
  background-color: #09090b;
  background-image: url('../images/bg.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.content-section.black.plain {
  background-image: none;
}

.content-section.grey {
  background-color: rgba(0, 0, 0, .05);
  border-style: none;
}

.content-section.offset {
  background-color: #050011;
  max-height: 50rem;
  padding-bottom: 0;
  padding-right: 0;
}

.project-item {
  width: 100%;
  height: auto;
  min-height: auto;
}

.project-item.lottie-hero-video {
  width: 90%;
  height: auto;
  min-height: auto;
  margin-bottom: -20px;
}

.project-item.image-mock {
  max-width: 100%;
  height: auto;
  min-height: auto;
  max-height: 60vh;
}

.project-item.image-mock.smaller {
  max-height: 40vh;
}

.project-item.image-mock.auto {
  max-width: 90%;
  max-height: none;
}

.project-item.off-set {
  width: 810px;
  min-width: 810px;
  max-width: none;
  position: relative;
  left: 62px;
}

.section.margin-top {
  margin-top: 8rem;
}

.body {
  color: #000;
  letter-spacing: -.02em;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 1rem;
  line-height: 150%;
}

.text-wrap {
  width: auto;
  max-width: 50ch;
}

._2-col-grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 1.5rem;
  display: grid;
}

.muted {
  opacity: .6;
}

.footer-nav {
  z-index: 2;
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding-bottom: 2rem;
  display: flex;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.button {
  background-color: var(--white);
  color: var(--black);
  border: 2px solid #000;
  border-radius: 222222px;
  padding: .6rem 1.5rem;
  font-size: 1.2rem;
}

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

.ch64 {
  max-width: 64ch;
}

.ch64.margi-bottom-medium {
  margin-bottom: 3rem;
}

@media screen and (max-width: 991px) {
  .content-section {
    min-height: 40vh;
  }

  .content-section.no-outine.text-block {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .project-item.image-mock {
    max-height: 40vh;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 28px;
  }

  p {
    font-size: 16px;
  }

  .content-section {
    border-radius: 1.2rem;
    min-height: 40vh;
    padding: 3rem;
  }

  .content-section.blue {
    min-height: 30vh;
  }

  .project-item.off-set {
    width: 770px;
    min-width: 700px;
  }

  .text-wrap {
    width: auto;
  }

  ._2-col-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  .content-section {
    min-height: 30vh;
    padding: 1.4rem;
  }

  .content-section.video {
    min-height: 30vh;
  }

  .content-section.no-outine.text-block {
    padding-left: .2rem;
    padding-right: .2rem;
  }

  .content-section.blue {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .content-section.grey {
    padding: 1.4rem;
  }

  .content-section.offset {
    padding-top: 2rem;
    padding-left: 2rem;
  }

  .project-item.lottie-hero-video {
    width: 100%;
  }

  .project-item.image-mock.smaller {
    max-height: 30vh;
  }

  .project-item.off-set {
    width: 570px;
    min-width: 500px;
  }

  .button {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    font-size: 1rem;
  }
}


