:root {
  --white: whitesmoke;
  --font: #adadad;
  --gray: #171717;
  --blue-violet: #8742fd;
  --b2: #000;
  --white-3: #f5f5f7;
  --gray3: #303030;
  --dark-slate-grey: #3f3f3f;
  --dark-slate-blue: #524263;
  --color: white;
}

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

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@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: #1a1b1f;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 44px;
  font-weight: 400;
  line-height: 62px;
}

h2 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 36px;
  font-weight: 400;
  line-height: 50px;
}

h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 400;
  line-height: 46px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 400;
  line-height: 38px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}

p {
  margin-bottom: 10px;
}

a {
  color: #1a1b1f;
  text-decoration: underline;
  transition: opacity .2s;
  display: block;
}

a:hover {
  color: #32343a;
}

a:active {
  color: #43464d;
}

ul {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 40px;
  list-style-type: disc;
}

li {
  margin-bottom: 10px;
}

img {
  display: block;
}

label {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-top: 25px;
  margin-bottom: 25px;
  padding: 15px 30px;
  font-size: 20px;
  line-height: 34px;
}

figure {
  margin-top: 25px;
  padding-bottom: 20px;
}

figcaption {
  opacity: .6;
  text-align: center;
  margin-top: 5px;
  font-size: 14px;
  line-height: 26px;
}

.contact-container {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 5% 10%;
  display: flex;
}

.project-heading {
  color: #fff;
  text-transform: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  height: 100px;
  margin-top: 0%;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0%;
  font-size: 60px;
  font-weight: 700;
  line-height: 80px;
  display: flex;
}

.paragraph-tiny {
  color: #fff;
  text-align: left;
  text-transform: none;
  justify-content: center;
  align-items: center;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  line-height: 20px;
  display: flex;
}

.paragraph-light {
  opacity: 1;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Poppins, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 36px;
}

.paragraph-light.body-text {
  opacity: 1;
  color: var(--font);
  text-transform: none;
  width: 100%;
  max-width: 100%;
  margin-top: 0%;
  margin-bottom: 0%;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}

.project-images {
  flex-direction: column;
  justify-content: space-between;
  margin-top: 60px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

.project-images.cc-contact {
  background-color: var(--gray);
  color: var(--font);
  justify-content: center;
  align-items: center;
  margin-top: 0;
  padding-left: 0%;
  padding-right: 0%;
}

.button {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #8742fd;
  border-radius: 0;
  width: 100%;
  margin-top: 5%;
  padding: 12px 25px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: background-color .4s, opacity .4s, color .4s;
}

.button:hover {
  color: #fff;
  background-color: #32343a;
}

.button:active {
  background-color: #43464d;
}

.button.cc-white-button {
  color: #202020;
  background-color: #fff;
  padding: 16px 35px;
  font-size: 14px;
  line-height: 26px;
}

.button.cc-white-button:hover {
  background-color: #fffc;
}

.button.cc-white-button:active {
  background-color: #ffffffe6;
}

.paragraph-bigger {
  opacity: 1;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
}

.paragraph-bigger.cc-bigger-light {
  opacity: .6;
}

.logo-link {
  z-index: 1;
}

.logo-link:hover {
  opacity: .8;
}

.logo-link:active {
  opacity: .7;
}

.navigation-item {
  opacity: .6;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-top: 9px;
  padding-bottom: 9px;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}

.navigation-item:hover {
  opacity: .9;
}

.navigation-item:active {
  opacity: .8;
}

.navigation-item.w--current {
  opacity: 1;
  color: #1a1b1f;
  font-weight: 600;
}

.navigation-item.w--current:hover {
  opacity: .8;
  color: #32343a;
}

.navigation-item.w--current:active {
  opacity: .7;
  color: #32343a;
}

.navigation-items {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.navigation {
  background-color: #0000;
  align-items: center;
  padding: 30px 50px;
  display: flex;
}

.logo-image {
  display: block;
}

.navigation-wrap {
  align-items: center;
  margin-right: -20px;
  display: flex;
}

.intro-wrap {
  opacity: 1;
  background-image: linear-gradient(#fff0 52%, #000);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  height: 90vh;
  margin: 0;
  padding-left: 0%;
  display: flex;
  position: static;
}

.text-field {
  border: 1px solid #e4e4e4;
  border-radius: 0;
  margin-bottom: 18px;
  padding: 5%;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  line-height: 20px;
  transition: border-color .4s;
}

.text-field:hover {
  border-color: #e3e6eb;
}

.text-field:active, .text-field:focus {
  border-color: #43464d;
}

.text-field::placeholder {
  color: #32343a66;
}

.text-field.cc-textarea {
  color: #5d35a1;
  height: 200px;
  padding-top: 12px;
  font-family: Poppins, sans-serif;
}

.status-message {
  color: #fff;
  text-align: center;
  background-color: #202020;
  padding: 9px 30px;
  font-size: 14px;
  line-height: 26px;
}

.status-message.cc-success-message {
  background-color: var(--blue-violet);
  border-radius: 0;
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  font-family: Poppins, sans-serif;
}

.status-message.cc-error-message {
  background-color: #f30;
}

.contact {
  opacity: 1;
  color: var(--gray);
  background-color: #0000;
  border-radius: 0;
  flex-direction: column;
  align-items: flex-start;
  width: 800px;
  padding: 0%;
  display: flex;
}

.contact:hover {
  background-color: #0000;
}

.contact-headline {
  width: 70%;
  margin-bottom: 40px;
  margin-right: 100px;
}

.contact-form-grid {
  grid-column-gap: 30px;
  grid-row-gap: 10px;
  width: 99.9999%;
}

.contact-form {
  width: 350px;
  max-width: none;
}

.contact-form-wrap {
  width: 70%;
}

.porject-footer {
  z-index: auto;
  clear: none;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--b2);
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-self: stretch;
  place-items: center stretch;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 40px 10%;
  font-family: Outfit, sans-serif;
  display: flex;
  position: static;
}

.webflow-link {
  opacity: .5;
  text-transform: uppercase;
  align-items: center;
  text-decoration: none;
  transition: opacity .4s;
  display: flex;
}

.webflow-link:hover {
  opacity: 1;
}

.webflow-link:active {
  opacity: .8;
}

.webflow-logo-tiny {
  margin-top: -2px;
  margin-right: 8px;
}

.footer-links {
  align-items: center;
  margin-right: -20px;
  display: flex;
}

.footer-item {
  opacity: .6;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: 20px;
  margin-right: 20px;
  font-size: 12px;
  line-height: 20px;
  text-decoration: none;
}

.footer-item:hover {
  opacity: .9;
}

.footer-item:active {
  opacity: .8;
}

.detail-image {
  border-radius: 0;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0;
}

.utility-page-wrap {
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding: 30px;
  display: flex;
}

._404-wrap {
  background-color: #1a1b1f;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
}

._404-content-wrap {
  margin-bottom: 20px;
}

.protected-wrap {
  text-align: center;
  justify-content: center;
  padding-top: 90px;
  padding-bottom: 100px;
  display: flex;
}

.protected-form {
  flex-direction: column;
  display: flex;
}

.protected-heading {
  margin-bottom: 30px;
}

.wrapper-title {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  overflow: hidden;
}

.main-h1 {
  color: #fff;
  margin-top: 5px;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 14vh;
  font-weight: 400;
  line-height: 16vh;
  position: relative;
}

.main-h1.home {
  opacity: .8;
  color: var(--white);
  text-align: center;
  width: auto;
  height: auto;
  max-height: none;
  margin-top: 0;
  font-family: Montserrat, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 3rem;
}

.main-h1.bold {
  font-weight: 900;
}

.main-h1.bold.home {
  opacity: .8;
  color: var(--white);
  width: 140%;
  max-height: 120%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 3rem;
}

._w-h1 {
  color: #fff;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-right: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-subhead {
  justify-content: flex-start;
  align-items: center;
  width: 30vw;
  margin-top: 30px;
  display: flex;
}

.body {
  background-color: #000;
  flex-direction: column;
  align-items: stretch;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  overflow: visible;
}

.navbar {
  background-color: #0000;
  width: 100%;
  height: auto;
  margin-bottom: 60px;
  margin-left: 0;
  margin-right: 0;
  padding: 5vh 10% 0;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-menu {
  float: right;
  align-items: center;
  padding-top: 4vh;
  padding-bottom: 2vh;
  display: flex;
}

.link-nav {
  box-shadow: none;
  color: #fff;
  margin-left: 10px;
  margin-right: 10px;
  padding: 0 0 5px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  transition-property: none;
}

.link-nav:hover {
  box-shadow: none;
  color: #fff9;
}

.link-nav.w--current {
  box-shadow: none;
  opacity: 1;
  outline-offset: 0px;
  color: #fff;
  border: 1px #0000;
  outline: 0 dotted #0000;
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 300;
  text-decoration: none;
}

.link-nav.w--current:hover {
  color: silver;
  font-weight: 500;
}

.project-body {
  background-color: #228a59;
  flex-direction: column;
  justify-content: flex-end;
  padding-left: 0%;
  padding-right: 0%;
  display: flex;
}

.project-text-block {
  background-color: var(--gray);
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  margin-top: 0%;
  margin-bottom: 5%;
  padding: 5%;
  display: flex;
}

.task {
  width: 100%;
  height: 66.22%;
  margin-top: 5%;
}

.overview {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: none;
  display: flex;
}

.images-container {
  background-color: var(--gray);
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0%;
  padding: 0%;
  display: flex;
}

.caption {
  color: #fff;
  margin-top: 0%;
  margin-bottom: 5%;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.style-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  justify-items: stretch;
  max-width: 100%;
  margin-bottom: 0;
}

.image-2 {
  border-radius: 10px;
}

.styleguide {
  background-color: var(--gray);
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
  margin: 0% 0;
  padding: 0%;
  display: flex;
}

.image-3 {
  border-radius: 10px;
  max-width: 100%;
}

.mobile-view {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-items: stretch;
  width: 100%;
  margin-bottom: 5%;
  padding: 0%;
}

.image-4 {
  border-radius: 10px;
  line-height: 30px;
}

.hero-section {
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.work-section {
  background-color: var(--b2);
  color: #697192;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
  padding: 10%;
  font-family: Outfit, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-decoration: none;
  display: flex;
}

.secttion-heading {
  color: #fff;
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
  width: 70%;
  margin-top: 5%;
  margin-bottom: 5%;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.flexible-grid {
  border-radius: 10px;
}

.heading-3 {
  color: var(--white-3);
  text-align: center;
  -webkit-text-stroke-color: var(--font);
  text-transform: none;
  width: 50%;
  font-family: Outfit, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}

.logo-img {
  max-width: 70%;
}

.nav-menu-2 {
  align-items: center;
  height: 80px;
  max-height: 80px;
  margin-left: auto;
  display: flex;
}

.nav {
  background-color: #0000;
  height: 100px;
  max-height: 100px;
  margin-left: 0;
  margin-right: 0;
  padding: 0 5%;
  line-height: 20px;
  display: block;
  position: fixed;
  inset: 0% 0% auto;
}

.navlinks {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 0 10px 30px;
  font-family: DM Sans, sans-serif;
  font-weight: 400;
  transition: opacity .2s;
}

.navlinks:hover {
  color: #352b24;
}

.navlinks:visited, .navlinks.w--current {
  color: #fff;
}

.nav-container {
  max-width: 70%;
  margin-top: 0;
  padding-top: 0;
}

.nav-container.nav {
  justify-content: center;
  align-items: center;
  max-width: 100%;
  height: 100px;
  max-height: 100px;
  margin: 0;
  padding: 40px 5% 20px 10%;
  display: flex;
}

.image-5 {
  border-radius: 20px;
}

.project-grid {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  object-fit: fill;
  grid-template-rows: auto auto auto;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) minmax(250px, 1fr) minmax(250px, 1fr);
  grid-auto-flow: row;
  place-content: space-between center;
  place-items: center;
  width: auto;
  max-width: none;
  padding-left: 0;
  font-family: Outfit, sans-serif;
}

.work-container {
  background-color: #1e1e1e;
  border-radius: 0;
  justify-content: center;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: 3%;
  display: flex;
}

.thumbnail-block {
  opacity: 1;
  background-color: #303030;
  border-radius: 0;
  width: auto;
  max-width: none;
  height: auto;
  padding-bottom: 10%;
  padding-left: 0%;
  padding-right: 0%;
  box-shadow: 0 5px 15px 3px #0000001a;
}

.thumbnail-block:hover {
  opacity: 1;
  background-image: linear-gradient(#000, #ffffff17);
}

.thumbnail-block.w--current {
  padding-left: 0%;
  padding-right: 0%;
}

.project-details {
  background-color: var(--b2);
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-height: none;
  padding: 5% 5% 10px;
  display: flex;
}

.project-name-thumb {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0%;
  font-family: Outfit, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  text-decoration: none;
}

.thumb-image {
  background-color: #03f3e3;
  background-image: linear-gradient(345deg, #057375, #00f2ff);
  border-radius: 0;
  width: auto;
  height: auto;
  margin-bottom: 10%;
  padding: 0%;
}

.thumb-image:hover {
  background-color: #0000;
  background-image: linear-gradient(#000, #fff);
}

.thumb-container {
  background-color: #0000;
  border-radius: 0;
  width: auto;
  max-width: none;
  height: auto;
  margin-left: 0;
  margin-right: 0;
  padding: 0%;
}

.thumb-text {
  width: auto;
  min-width: auto;
  padding-bottom: 0;
  padding-left: 5%;
}

.design-label {
  background-color: #474747;
  border-radius: 4px;
  margin-right: 10px;
  padding: 4px 10px 3px;
  font-family: DM Sans, sans-serif;
  display: inline-block;
}

.label-text {
  color: #fff;
  text-transform: uppercase;
  font-family: Outfit, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 17px;
}

.text-block-4 {
  color: var(--font);
  text-align: center;
  -webkit-text-stroke-color: white;
  font-family: Poppins, sans-serif;
  font-weight: 300;
  line-height: 16px;
}

.text-block-5 {
  font-family: Poppins, sans-serif;
}

.field-label, .field-label-2, .field-label-3 {
  color: var(--font);
  font-family: Poppins, sans-serif;
}

.div-block-8 {
  margin-top: 0%;
}

.thumb-overlay {
  opacity: 1;
  color: #1a1b1f;
  cursor: pointer;
  background-color: #0000008f;
  justify-content: center;
  align-items: flex-start;
  width: 315px;
  height: 316px;
  padding-top: 100px;
  display: flex;
  position: absolute;
}

.text-block-6 {
  color: #ffffffb8;
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.image-6 {
  border-radius: 10px;
}

.text-block-9 {
  color: var(--font);
  text-align: center;
  margin-top: 10px;
  font-family: Poppins, sans-serif;
}

.button-5 {
  color: #fff;
  background-color: #0ca0ab;
  border-radius: 0;
  align-items: center;
  height: 40px;
  padding: 9px 16px;
  font-family: Poppins, sans-serif;
  font-weight: 700;
  display: flex;
}

.button-5:hover {
  color: #ffe100;
  -webkit-text-stroke-color: #fffb00;
}

.rl-button {
  background-color: var(--blue-violet);
  color: #fff;
  text-align: center;
  border: 0 #000;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  height: 35px;
  margin-top: 0%;
  padding: 3px 15px;
  font-family: Outfit, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  display: flex;
}

.rl-button:hover {
  background-color: var(--dark-slate-blue);
  color: var(--white-3);
}

.button-cont {
  justify-content: center;
  height: 40px;
  margin-top: 0%;
  margin-bottom: 5%;
  padding-top: 0%;
  padding-bottom: 0%;
  display: flex;
}

.ud-hero {
  background-image: linear-gradient(360deg, #0009 13%, #0000), url('../images/UD-Thumb-2.png');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 90vh;
  padding-bottom: 5%;
  padding-left: 10%;
  display: flex;
}

.proj-h1 {
  color: #fff;
  margin-bottom: 0;
  font-family: Outfit, sans-serif;
  font-size: 60px;
  font-weight: 700;
}

.container-4 {
  width: 100%;
  max-width: none;
}

.proj-sub {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Outfit, sans-serif;
  font-size: 16px;
}

.tongue-hero {
  background-image: linear-gradient(360deg, #000000e6 13%, #0000), url('../images/tot-thumb.png');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 90vh;
  padding-bottom: 5%;
  padding-left: 10%;
  display: flex;
}

.refi-hero {
  background-image: linear-gradient(360deg, #0009, #0000007a 23%, #0000 43%), url('../images/refi-thumb_1.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 90vh;
  padding-bottom: 5%;
  padding-left: 10%;
  display: flex;
}

.cc-hero {
  background-image: linear-gradient(360deg, #0009 13%, #0000), url('../images/cancap-thumb-hero.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 90vh;
  padding-bottom: 5%;
  padding-left: 10%;
  display: flex;
}

.rugd-hero {
  background-image: linear-gradient(360deg, #0009 13%, #0000), url('../images/rugd-mob.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 90vh;
  padding-bottom: 5%;
  padding-left: 10%;
  display: flex;
}

.brandbook-button {
  background-color: #5e9999;
  margin-top: 0%;
  margin-bottom: 0%;
  font-family: Poppins, sans-serif;
  font-weight: 700;
}

.brandbook-button:hover {
  color: #fff;
  background-color: #1c4c63;
  font-family: Poppins, sans-serif;
  font-weight: 700;
}

.image-text-container {
  background-color: var(--gray);
  color: #616161;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
  margin-bottom: 5%;
  margin-left: 0;
  margin-right: 0;
  padding: 5%;
  display: flex;
}

.paragraph {
  color: var(--font);
  background-color: #0000;
  margin-top: 0%;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.nihon-hero {
  background-image: linear-gradient(360deg, #000000bf 13%, #0000), url('../images/nihon-thumb-hero.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 90vh;
  padding-bottom: 5%;
  padding-left: 10%;
  display: flex;
}

.image-11 {
  border-radius: 20px;
}

.overview-caption {
  color: #fff;
  margin-top: 0%;
  margin-bottom: 1%;
  padding-top: 0%;
  font-family: Outfit, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.mograph-hero {
  background-image: linear-gradient(#fff0 30%, #000), url('../images/mograph-thumb.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 90vh;
  padding-bottom: 5%;
  padding-left: 10%;
  display: flex;
}

.btn {
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin-top: 5%;
  display: flex;
}

.videos {
  margin-bottom: 5%;
}

.grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
}

.logo-hero {
  background-image: linear-gradient(360deg, #000c 13%, #0000), url('../images/ab-min.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 90vh;
  padding-bottom: 5%;
  padding-left: 10%;
  display: flex;
}

.logo-project-container {
  background-color: #0000;
  width: 100%;
  max-width: 100%;
  margin-bottom: 5%;
  padding: 0%;
}

.logo-grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  background-color: var(--gray);
  grid-template-rows: auto;
  margin-top: 5%;
  padding: 5%;
}

.grid-5 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
}

.logo-img-grid {
  margin-bottom: 3%;
}

.resume {
  background-color: var(--white-3);
  color: #697192;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
  padding: 15% 5% 10%;
  display: flex;
}

.experience {
  padding: 5%;
}

.experience-cont {
  background-color: var(--gray);
  padding: 5%;
}

.company {
  color: #fff;
  margin-top: 0%;
  margin-bottom: 0%;
  padding-top: 0%;
  font-family: Poppins, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.other-hero {
  background-image: linear-gradient(360deg, #000c 13%, #0000), url('../images/other.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 90vh;
  padding-bottom: 5%;
  padding-left: 10%;
  display: flex;
}

.heading-4 {
  color: var(--white);
  -webkit-text-stroke-color: var(--white);
  margin-bottom: 0%;
  font-family: Outfit, sans-serif;
  font-weight: 700;
  line-height: 40px;
}

.image-14 {
  background-color: var(--white);
  margin-top: 5%;
  padding-left: 0%;
}

.horizontal-block {
  background-color: var(--gray);
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin-top: 0%;
  margin-bottom: 5%;
  padding: 5%;
  display: flex;
}

.grid-6 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  background-color: #0000;
  margin-top: 5%;
  padding: 0%;
}

.div-block-14 {
  background-color: #2e2e2e;
  padding: 5%;
}

.paragraph-2 {
  color: var(--white);
  margin-top: 8%;
}

.about-section {
  text-align: center;
  background-color: #222;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  height: 80vh;
  padding-top: 10%;
  padding-bottom: 10%;
  display: flex;
}

.paragraph-3 {
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: Poppins, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
}

.container-5 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: none;
  display: flex;
}

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

.text-span-2, .text-span-3, .text-span-4 {
  color: var(--font);
}

.aboutme {
  color: var(--blue-violet);
  flex-flow: row;
  justify-content: flex-start;
  width: 70%;
  font-family: Poppins, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  display: block;
}

.body-text {
  color: var(--font);
  margin-top: 0%;
  margin-bottom: 20px;
  font-family: Outfit, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

.button-6 {
  background-color: #6330b9;
  border-radius: 0;
  align-items: center;
  height: 45px;
  padding-left: 18px;
  padding-right: 18px;
  font-family: Poppins, sans-serif;
  font-weight: 400;
  display: flex;
}

.text-span-5, .text-span-7 {
  color: var(--white);
}

.text-span-8, .text-span-9 {
  color: var(--font);
}

.text-span-10 {
  color: var(--white);
}

.text-span-11 {
  color: var(--white);
  width: 100%;
}

.photo-grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
}

.photo-caption {
  color: var(--font);
  margin-top: 2%;
  margin-bottom: 2%;
  font-family: Outfit, sans-serif;
}

.image-16 {
  margin-top: 5%;
}

.text-block-11 {
  color: var(--font);
  text-align: center;
  width: 33%;
  font-family: Outfit, sans-serif;
  font-weight: 400;
}

.link-block {
  justify-content: center;
  align-self: auto;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.field-label-4, .field-label-5 {
  color: #adadad;
  font-family: Poppins, sans-serif;
}

.button-7 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #8742fd;
  border-radius: 0;
  width: 100%;
  margin-top: 5%;
  padding: 12px 25px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: background-color .4s, opacity .4s, color .4s;
}

.button-7:hover {
  color: #fff;
  background-color: #32343a;
}

.button-7:active {
  background-color: #43464d;
}

.text-block-12 {
  font-family: Poppins, sans-serif;
}

.text-block-13 {
  width: 200px;
}

.button-8 {
  background-color: var(--blue-violet);
  text-align: center;
  width: 15%;
  margin-top: 2%;
  padding: 5px 15px;
  font-family: Poppins, sans-serif;
  font-weight: 700;
}

.button-8:hover {
  background-color: var(--dark-slate-blue);
  color: #dadada;
}

.text-span-12 {
  color: var(--font);
  font-family: Outfit, sans-serif;
  font-size: 24px;
}

.background-video {
  opacity: 1;
  height: 6%;
}

.div-block-15 {
  color: #000;
  background-color: #000000c2;
}

.text-block-14 {
  color: var(--white);
  padding-bottom: 5%;
  padding-left: 5%;
  padding-right: 5%;
}

.tonight-hero {
  background-image: linear-gradient(360deg, #0009, #0000007a 23%, #0000 43%), url('../images/tonight-hero.jpg');
  background-position: 0 0, 50% 0;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 90vh;
  padding-bottom: 5%;
  padding-left: 10%;
  display: flex;
}

.logo-style, .color-style, .typography-style {
  color: #000;
  background-color: #000000c2;
}

.grid-7 {
  grid-template-columns: 1fr 1fr 1fr;
}

.div-block-16 {
  color: #02adc1;
  background-color: #02adc1;
  width: 90px;
  height: 90px;
}

.typography-style-copy {
  color: #000;
  background-color: #000000c2;
}

.text-block-15 {
  color: #fff;
  margin-bottom: 2%;
}

.unf-hero {
  background-image: linear-gradient(#0000 58%, #00092de3), url('../images/unf_hero1.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 90vh;
  padding-bottom: 5%;
  padding-left: 10%;
  display: flex;
}

.butts {
  background-color: var(--blue-violet);
  text-align: center;
  width: 12%;
  margin-top: 2%;
  padding-left: 18px;
  padding-right: 18px;
  font-family: Poppins, sans-serif;
  font-weight: 700;
}

.div-block-17 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.button-9 {
  background-color: #6330b9;
  margin-top: 60px;
  padding: 5px 10px;
  font-size: 14px;
}

.nav-block {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 0 10px 30px;
  font-family: Poppins, sans-serif;
  font-weight: 300;
  transition: opacity .2s;
}

.nav-block:hover {
  color: #352b24;
}

.nav-block:visited, .nav-block.w--current {
  color: #fff;
}

.navblock {
  background-color: var(--dark-slate-blue);
  opacity: 1;
  color: var(--white-3);
  border-radius: 5px;
  margin-left: 20px;
  padding: 5px 15px;
  font-family: DM Sans, sans-serif;
  line-height: 25px;
}

.navblock:hover {
  background-color: var(--blue-violet);
  color: var(--white-3);
}

.navblock:active {
  background-color: var(--dark-slate-grey);
}

.heading-5 {
  text-align: center;
  font-family: Outfit, sans-serif;
  font-weight: 800;
  line-height: 46px;
}

.container-6 {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  margin-bottom: 5%;
  padding-bottom: 0%;
  font-family: Outfit, sans-serif;
  display: flex;
}

.grid-8 {
  grid-template: "Area"
  / 1fr 1fr 1fr;
  width: 100%;
}

.image-18 {
  margin-top: 10px;
}

.image-20 {
  opacity: .25;
  flex: 0 auto;
  order: 1;
  align-self: auto;
  width: 20px;
}

.project-text-block-copy {
  background-color: var(--gray);
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  margin-top: 0%;
  margin-bottom: 5%;
  padding: 5%;
  display: flex;
}

.photography-hero {
  background-image: linear-gradient(360deg, #000c 30%, #0000), url('../images/mayones-capa.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 90vh;
  padding-bottom: 5%;
  padding-left: 10%;
  display: flex;
}

@media screen and (min-width: 1440px) {
  .contact-container {
    justify-content: center;
    align-items: center;
  }

  .project-heading {
    width: 100%;
  }

  .paragraph-light {
    font-family: Poppins, sans-serif;
    font-size: 16px;
  }

  .button {
    font-family: Poppins, sans-serif;
    font-weight: 700;
  }

  .intro-wrap {
    color: var(--font);
    height: 70vh;
    font-family: DM Sans, sans-serif;
    font-size: 14px;
    font-weight: 700;
  }

  .contact-form-grid, .contact-form {
    width: 400px;
  }

  .wrapper-title {
    justify-content: center;
    height: 50%;
  }

  .main-h1.home {
    opacity: .6;
  }

  .body {
    overflow: visible;
  }

  .project-text-block {
    margin-top: 0%;
  }

  .task {
    width: auto;
    margin-top: 0%;
  }

  .overview {
    margin-top: 0%;
  }

  .images-container {
    align-items: center;
  }

  .style-grid {
    margin-bottom: 5%;
  }

  .image-2 {
    font-family: Outfit, sans-serif;
  }

  .mobile-view {
    padding-bottom: 0%;
  }

  .hero-section {
    flex-direction: column;
  }

  .work-section {
    cursor: pointer;
    padding-top: 5%;
    padding-left: 5%;
    padding-right: 5%;
    font-family: Poppins, sans-serif;
    font-weight: 700;
  }

  .secttion-heading {
    text-align: left;
    text-transform: none;
    font-weight: 400;
  }

  .heading-3 {
    text-align: center;
    width: 50%;
  }

  .nav {
    object-fit: fill;
    position: fixed;
    inset: 0% 0% auto;
  }

  .navlinks {
    font-size: 14px;
  }

  .project-grid {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    flex: 0 auto;
    grid-template-columns: minmax(250px, 1fr) minmax(250px, 1fr) repeat(auto-fit, minmax(250px, 1fr));
    justify-content: center;
    place-items: center;
    width: 100%;
    max-width: none;
    padding: 5%;
  }

  .work-container {
    align-self: auto;
    width: 90%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0%;
  }

  .thumbnail-block {
    opacity: 1;
    width: 250px;
    max-width: none;
    height: auto;
    padding-left: 0%;
    padding-right: 0%;
    display: block;
  }

  .thumbnail-block:hover {
    opacity: .7;
  }

  .project-name-thumb {
    padding-bottom: 5%;
    font-size: 18px;
  }

  .thumb-image {
    width: auto;
    margin-bottom: 10%;
  }

  .thumb-container {
    width: auto;
    max-width: none;
    height: auto;
    padding-left: 0%;
    padding-right: 0%;
  }

  .thumb-text {
    width: auto;
    padding-bottom: 10%;
  }

  .design-label {
    background-color: var(--dark-slate-grey);
  }

  .thumb-overlay {
    width: 250px;
    height: 275px;
    padding-top: 100px;
  }

  .button-5 {
    height: 48px;
    font-weight: 700;
  }

  .rl-button {
    color: #fff;
    border-style: none;
    align-items: center;
    width: 93.6875px;
    height: 40px;
    margin-top: 40px;
    margin-bottom: 0;
    padding-bottom: .75rem;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    display: flex;
  }

  .rl-button:hover {
    color: #fff;
    background-color: #5d35a1;
  }

  .button-cont {
    justify-content: center;
    display: flex;
  }

  .image-10 {
    border-radius: 20px;
  }

  .ud-hero {
    color: #fff;
    background-image: linear-gradient(360deg, #000c 23%, #0000), url('../images/UD-Thumb-2.png');
    background-position: 0 0, 0 0;
    background-size: auto, cover;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    max-width: 100%;
    margin-left: 0%;
    padding-bottom: 5%;
    padding-left: 10%;
    padding-right: 10%;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 400;
  }

  .proj-h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 65px;
  }

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

  .proj-sub {
    font-size: 18px;
    font-weight: 300;
  }

  .tongue-hero {
    color: #fff;
    background-image: linear-gradient(360deg, #000c 23%, #0000), url('../images/tot-thumb.png');
    background-position: 0 0, 50% 0;
    background-size: auto, cover;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    max-width: 100%;
    margin-left: 0%;
    padding-bottom: 5%;
    padding-left: 10%;
    padding-right: 10%;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 400;
  }

  .refi-hero {
    color: #fff;
    background-image: linear-gradient(360deg, #000c 23%, #0000), url('../images/refi-thumb_1.png');
    background-position: 0 0, 50%;
    background-size: auto, cover;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    max-width: 100%;
    margin-left: 0%;
    padding-bottom: 5%;
    padding-left: 10%;
    padding-right: 10%;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 400;
  }

  .cc-hero {
    color: #fff;
    background-image: linear-gradient(360deg, #0009 23%, #0000), url('../images/cancap-thumb-hero.png');
    background-position: 0 0, 50%;
    background-size: auto, cover;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    max-width: 100%;
    margin-left: 0%;
    padding-bottom: 5%;
    padding-left: 10%;
    padding-right: 10%;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 400;
  }

  .rugd-hero {
    color: #fff;
    background-image: linear-gradient(360deg, #0009 23%, #0000), url('../images/rugd-mob.png');
    background-position: 0 0, 50%;
    background-size: auto, cover;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    max-width: 100%;
    margin-left: 0%;
    padding-bottom: 5%;
    padding-left: 10%;
    padding-right: 10%;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 400;
  }

  .image-text-container {
    justify-content: center;
    align-items: flex-start;
  }

  .nihon-hero {
    color: #fff;
    background-image: linear-gradient(360deg, #000c 23%, #0000), url('../images/nihon-thumb-hero.png');
    background-position: 0 0, 50%;
    background-size: auto, cover;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    max-width: 100%;
    margin-left: 0%;
    padding-bottom: 5%;
    padding-left: 10%;
    padding-right: 10%;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 400;
  }

  .overview-caption {
    margin-top: 0;
    font-size: 22px;
  }

  .mograph-hero {
    color: #fff;
    background-image: linear-gradient(360deg, #000c 23%, #0000), url('../images/mograph-thumb.png');
    background-position: 0 0, 50%;
    background-size: auto, cover;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    max-width: 100%;
    margin-left: 0%;
    padding-bottom: 5%;
    padding-left: 10%;
    padding-right: 10%;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 400;
  }

  .logo-hero {
    color: #fff;
    background-image: linear-gradient(360deg, #000c 23%, #0000), url('../images/ab-min.png');
    background-position: 0 0, 50%;
    background-size: auto, cover;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    max-width: 100%;
    margin-left: 0%;
    padding-bottom: 5%;
    padding-left: 10%;
    padding-right: 10%;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 400;
  }

  .resume {
    cursor: pointer;
    font-family: Poppins, sans-serif;
  }

  .experience {
    padding-top: 0%;
  }

  .experience-cont {
    background-color: var(--gray);
    width: 100%;
    max-width: none;
  }

  .company {
    font-size: 22px;
  }

  .other-hero {
    color: #fff;
    background-image: linear-gradient(360deg, #000c 23%, #0000), url('../images/other.png');
    background-position: 0 0, 50%;
    background-size: auto, cover;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    max-width: 100%;
    margin-left: 0%;
    padding-bottom: 5%;
    padding-left: 10%;
    padding-right: 10%;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 400;
  }

  .heading-4 {
    color: var(--white-3);
    margin-bottom: 5%;
    font-weight: 700;
  }

  .horizontal-block {
    flex-direction: column;
  }

  .grid-6 {
    grid-template-rows: auto;
    margin-top: 5%;
  }

  .div-block-14 {
    background-color: #e4e4e4;
    padding: 5%;
  }

  .paragraph-2 {
    margin-top: 5%;
  }

  .about-section {
    height: 100vh;
  }

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

  .aboutme {
    width: 70%;
    font-size: 60px;
    font-style: normal;
    line-height: 60px;
  }

  .body-text {
    margin-top: 0%;
    margin-bottom: 40px;
    font-size: 16px;
  }

  .button-6 {
    margin-top: 2%;
  }

  .text-block-10 {
    color: #adadad80;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0%;
    font-family: Poppins, sans-serif;
    display: flex;
  }

  .text-block-11 {
    color: var(--font);
    width: 25%;
    font-family: Outfit, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
  }

  .link-block {
    margin-top: 100px;
    text-decoration: none;
  }

  .button-7 {
    font-family: Poppins, sans-serif;
    font-weight: 700;
  }

  .tonight-hero {
    color: #fff;
    background-image: linear-gradient(360deg, #000c, #0000 49%), url('../images/tonight-hero.jpg');
    background-position: 0 0, 50% 0;
    background-size: auto, cover;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    max-width: 100%;
    margin-left: 0%;
    padding-bottom: 5%;
    padding-left: 10%;
    padding-right: 10%;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 400;
  }

  .unf-hero {
    color: #fff;
    background-image: linear-gradient(360deg, #01133a, #0000), url('../images/unf_hero1.png');
    background-position: 0 0, 0 0;
    background-size: auto, cover;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    max-width: 100%;
    margin-left: 0%;
    padding-bottom: 5%;
    padding-left: 10%;
    padding-right: 10%;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 400;
  }

  .butts {
    width: 13%;
    margin-top: 3%;
  }

  .image-17 {
    margin-bottom: 5%;
  }

  .navblock {
    font-size: 14px;
  }

  .heading-5 {
    color: var(--white-3);
  }

  .container-6 {
    width: 100%;
    max-width: none;
    margin-bottom: 0%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 5%;
  }

  .project-text-block-copy {
    margin-top: 0%;
  }

  .photography-hero {
    color: #fff;
    background-image: linear-gradient(360deg, #000000f0 23%, #0000), url('../images/mayones-capa.jpg');
    background-position: 0 0, 50%;
    background-size: auto, cover;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    max-width: 100%;
    margin-left: 0%;
    padding-bottom: 5%;
    padding-left: 10%;
    padding-right: 10%;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 400;
  }
}

@media screen and (min-width: 1920px) {
  .project-heading {
    width: 100%;
    font-size: 90px;
  }

  .intro-wrap {
    background-image: none;
  }

  .contact {
    background-color: var(--gray);
  }

  .contact:hover {
    background-color: var(--b2);
  }

  .style-grid {
    margin-left: 0%;
    margin-right: 0%;
    padding-left: 0%;
    padding-right: 0%;
  }

  .styleguide {
    align-items: flex-start;
  }

  .work-section {
    background-color: var(--b2);
  }

  .project-grid {
    max-width: 95%;
  }

  .work-container {
    width: 90%;
    max-width: 100%;
  }

  .thumb-container {
    background-color: var(--gray3);
  }

  .ud-hero {
    background-position: 0 0, 50% 0;
    align-items: flex-start;
    padding-left: 10%;
  }

  .proj-h1 {
    font-size: 90px;
    line-height: 95px;
  }

  .tongue-hero, .refi-hero {
    background-position: 0 0, 50% 0;
    align-items: flex-start;
    padding-left: 10%;
  }

  .cc-hero {
    background-image: linear-gradient(360deg, #0009 23%, #0000), url('../images/cancap-thumb-hero.png');
    background-position: 0 0, 50% 0;
    align-items: flex-start;
    padding-left: 10%;
  }

  .rugd-hero {
    background-image: linear-gradient(360deg, #0009 23%, #0000), url('../images/rugd-mob.png');
    background-position: 0 0, 50% 0;
    align-items: flex-start;
    padding-left: 10%;
  }

  .image-text-container {
    padding-left: 5%;
    padding-right: 5%;
  }

  .paragraph {
    color: #fff;
    margin-bottom: 40px;
  }

  .nihon-hero {
    background-position: 0 0, 50%;
    align-items: flex-start;
    padding-left: 10%;
  }

  .overview-caption {
    width: 100%;
    margin-bottom: 0%;
  }

  .mograph-hero {
    background-image: linear-gradient(360deg, #000c 23%, #0000), url('../images/mograph-thumb.png');
    background-position: 0 0, 50%;
    align-items: flex-start;
    padding-left: 10%;
  }

  .logo-hero {
    background-image: linear-gradient(360deg, #000c 23%, #0000), url('../images/ab-min.png');
    background-position: 0 0, 50% 0;
    align-items: flex-start;
    padding-left: 10%;
  }

  .resume {
    background-color: var(--b2);
  }

  .other-hero {
    background-image: linear-gradient(360deg, #000c 23%, #0000), url('../images/other.png');
    background-position: 0 0, 50% 0;
    align-items: flex-start;
    padding-left: 10%;
  }

  .div-block-14 {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .image-15 {
    width: 100%;
  }

  .body-text {
    margin-top: 0%;
    margin-bottom: 2%;
  }

  .text-block-11 {
    width: 20%;
  }

  .tonight-hero {
    background-position: 0 0, 50% 0;
    align-items: flex-start;
    padding-left: 10%;
  }

  .unf-hero {
    background-image: linear-gradient(360deg, #000e34cc, #0000), url('../images/unf_hero1.png');
    background-position: 0 0, 50%;
    background-size: auto, cover;
    justify-content: flex-end;
    align-items: flex-start;
    padding-left: 10%;
  }

  .div-block-17 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .photography-hero {
    background-image: linear-gradient(360deg, #000000e3 23%, #0000), url('../images/mayones-capa.jpg');
    background-position: 0 0, 50% 0;
    align-items: flex-start;
    padding-left: 10%;
  }
}

@media screen and (max-width: 991px) {
  .contact-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 5% 5% 5% 10%;
  }

  .project-heading {
    padding-top: 0%;
    font-size: 40px;
    line-height: 70px;
  }

  .paragraph-light {
    color: #fff;
  }

  .paragraph-light.body-text {
    width: 100%;
    max-width: 100%;
  }

  .project-images.cc-contact {
    padding-left: 0;
    padding-right: 0;
  }

  .button {
    justify-content: center;
  }

  .logo-link.w--current {
    flex: 1;
  }

  .menu-icon {
    display: block;
  }

  .navigation-item {
    text-align: center;
    padding: 15px 30px;
    transition: background-color .4s, opacity .4s, color .4s;
  }

  .navigation-item:hover {
    background-color: #f7f8f9;
  }

  .navigation-item:active {
    background-color: #eef0f3;
  }

  .navigation-items {
    background-color: #fff;
  }

  .navigation {
    padding: 25px 30px;
  }

  .menu-button {
    padding: 0;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .navigation-wrap {
    margin-right: 0;
  }

  .text-field.cc-textarea {
    width: 100%;
    height: 200px;
  }

  .contact {
    align-items: center;
    width: 691.203px;
    padding: 0%;
  }

  .contact-headline {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .contact-form-grid {
    width: 300px;
  }

  .contact-form {
    width: 300px;
    max-width: 300px;
  }

  .contact-form-wrap {
    width: 100%;
  }

  .porject-footer {
    justify-content: space-between;
  }

  .wrapper-title {
    width: 100vw;
  }

  .main-h1 {
    font-size: 84px;
    line-height: 80px;
  }

  .main-h1.home {
    font-size: 7vh;
    line-height: 7vh;
  }

  .main-h1.bold {
    font-size: 84px;
    line-height: 80px;
  }

  .main-h1.bold.home {
    font-size: 7vh;
    line-height: 7vh;
  }

  .home-subhead {
    width: 50vw;
  }

  .project-text-block {
    max-width: 100%;
  }

  .style-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-flow: row dense;
    justify-items: center;
  }

  .styleguide {
    align-items: flex-start;
    padding-top: 0%;
    padding-left: 0%;
    padding-right: 0%;
  }

  .mobile-view {
    grid-template-columns: 1fr 1fr;
  }

  .heading-3 {
    text-align: left;
    width: 60%;
    font-size: 24px;
    line-height: 30px;
  }

  .logo-img {
    max-width: 70%;
  }

  .icon {
    color: #fff;
  }

  .nav-menu-2 {
    background-color: #17171780;
    height: 150px;
    max-height: none;
  }

  .nav {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-height: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 7%;
    padding-left: 0;
    padding-right: 0;
    display: block;
    left: 0;
    right: 0;
  }

  .navlinks:hover {
    color: var(--font);
  }

  .nav-container {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 60px;
  }

  .nav-container.nav {
    background-color: #171717b3;
    justify-content: center;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 40px 5% 7%;
  }

  .menu-button-3 {
    margin-left: auto;
  }

  .menu-button-3.w--open {
    background-color: #17171780;
  }

  .project-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto auto auto;
    grid-template-columns: minmax(15rem, 1fr) repeat(auto-fit, minmax(15rem, 1fr));
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    width: 100%;
    max-width: 100%;
    display: grid;
  }

  .work-container {
    width: 75%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0%;
    padding-right: 0%;
  }

  .thumbnail-block {
    width: auto;
    max-width: none;
  }

  .project-details {
    align-items: center;
    padding-bottom: 10px;
  }

  .project-name-thumb {
    width: auto;
  }

  .thumb-container {
    width: 227px;
  }

  .thumb-text {
    width: auto;
  }

  .thumb-overlay {
    width: 227px;
  }

  .rl-button {
    background-color: var(--blue-violet);
    color: #fff;
    -webkit-text-stroke-color: black;
    border-style: none;
    border-color: #0000;
    border-radius: 4px;
    align-items: center;
    width: 10%;
    padding: 9px 25px;
    font-size: 14px;
    display: flex;
  }

  .rl-button:hover {
    background-color: var(--font);
    color: var(--white-3);
  }

  .button-cont {
    justify-content: center;
    width: 100%;
    height: 40px;
    display: flex;
  }

  .button-cont:hover {
    background-color: #0000;
  }

  .ud-hero {
    background-position: 0 0, 0%;
  }

  .proj-h1 {
    width: 100%;
    font-size: 48px;
  }

  .tongue-hero {
    background-position: 0 0, 60%;
  }

  .refi-hero {
    background-position: 0 0, 50%;
  }

  .cc-hero {
    background-image: linear-gradient(360deg, #0009 13%, #0000), url('../images/cancap-thumb-hero.png');
    background-position: 0 0, 0 20%;
  }

  .rugd-hero {
    background-image: linear-gradient(360deg, #0009 13%, #0000), url('../images/rugd-mob.png');
    background-position: 0 0, 50%;
    background-size: auto, cover;
  }

  .brandbook-button {
    margin-top: 5%;
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: 400;
    line-height: 20px;
  }

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

  .nihon-hero {
    background-position: 0 0, 50%;
  }

  .overview-caption {
    font-size: 22px;
  }

  .mograph-hero {
    background-image: linear-gradient(360deg, #0009 13%, #0000), url('../images/mograph-thumb.png');
    background-position: 0 0, 50%;
    background-size: auto, cover;
  }

  .image-12 {
    padding-left: 0%;
    padding-right: 0%;
  }

  .btn {
    max-width: none;
  }

  .videos {
    margin-bottom: 5%;
  }

  .logo-hero {
    background-image: linear-gradient(360deg, #0009 13%, #0000), url('../images/ab-min.png');
    background-position: 0 0, 50%;
    background-size: auto, cover;
  }

  .other-hero {
    background-image: linear-gradient(360deg, #0009 13%, #0000), url('../images/other.png');
    background-position: 0 0, 50%;
    background-size: auto, cover;
  }

  .horizontal-block {
    max-width: 100%;
  }

  .aboutme {
    width: 80%;
  }

  .body-text {
    color: var(--white-3);
  }

  .button-6:hover {
    background-color: var(--gray);
    color: var(--white);
  }

  .text-block-11 {
    color: var(--font);
    width: 50%;
    line-height: 22px;
    text-decoration: none;
  }

  .link-block {
    text-decoration: none;
  }

  .button-7 {
    justify-content: center;
    width: 300px;
  }

  .button-8 {
    width: 20%;
    height: 40px;
    padding-bottom: 5px;
    line-height: 28px;
  }

  .text-span-12 {
    color: var(--font);
  }

  .tonight-hero {
    background-position: 0 0, 50% 0;
  }

  .unf-hero {
    background-image: linear-gradient(360deg, #0009 13%, #0000), url('../images/unf_hero1.png');
    background-position: 0 0, 50%;
    background-size: auto, cover;
  }

  .nav-block:hover {
    color: var(--font);
  }

  .project-text-block-copy {
    max-width: 100%;
  }

  .photography-hero {
    background-image: linear-gradient(360deg, #000000b5 37%, #0000), url('../images/mayones-capa.jpg');
    background-position: 0 0, 50%;
    background-size: auto, cover;
  }
}

@media screen and (max-width: 767px) {
  .contact-container {
    text-align: center;
    justify-content: center;
    align-items: flex-start;
  }

  .project-heading {
    font-size: 36px;
    line-height: 64px;
  }

  .paragraph-light.body-text {
    opacity: 1;
    width: 100%;
    max-width: 100%;
  }

  .project-images {
    margin-left: 15px;
    margin-right: 15px;
  }

  .project-images.cc-contact {
    margin-left: 0;
    margin-right: 0;
    padding: 15px 10% 15px 0%;
  }

  .paragraph-bigger {
    font-size: 16px;
    line-height: 28px;
  }

  .logo-link {
    padding-left: 0;
  }

  .navigation {
    padding: 20px 30px;
  }

  .text-field.cc-textarea {
    text-align: left;
  }

  .contact {
    flex-direction: column;
    padding-left: 30px;
    padding-right: 30px;
  }

  .contact-form-grid {
    grid-column-gap: 30px;
    grid-template: "."
                   "."
                   "."
                   / 1fr;
    width: 100%;
  }

  .contact-form {
    flex-direction: column;
    display: flex;
  }

  .contact-form-wrap {
    text-align: left;
  }

  .porject-footer {
    text-align: center;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
  }

  .webflow-link {
    margin-bottom: 15px;
  }

  .footer-links {
    flex-direction: column;
  }

  .footer-item {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 0;
  }

  .detail-image {
    margin-bottom: 15px;
  }

  .utility-page-wrap {
    padding: 15px;
  }

  ._404-wrap {
    padding: 30px;
  }

  .main-h1.home {
    font-size: 6vh;
    line-height: 6vh;
  }

  .main-h1.bold.home {
    margin-bottom: 0;
    font-size: 6vh;
    line-height: 6vh;
  }

  .navbar {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-top: 5vh;
    padding-left: 5vw;
    padding-right: 5vw;
    display: block;
  }

  .nav-menu {
    padding-top: 0;
    padding-bottom: 0;
  }

  .caption {
    color: #fff;
  }

  .style-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .styleguide {
    align-items: flex-start;
    margin-top: 5%;
  }

  .mobile-view {
    grid-template-columns: 1fr 1fr;
  }

  .secttion-heading {
    text-align: center;
  }

  .heading-3 {
    width: 80%;
    font-size: 24px;
    line-height: 30px;
  }

  .menu-button-3 {
    margin-left: auto;
  }

  .project-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex: 0 auto;
    grid-template-rows: auto auto auto;
    grid-template-columns: minmax(10rem, 1fr);
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
  }

  .work-container {
    width: 100%;
    padding-top: 5%;
    padding-right: 0%;
  }

  .project-details {
    background-color: #2a2a2a;
    padding-left: 5%;
    padding-right: 5%;
  }

  .text-block-4 {
    line-height: 20px;
  }

  .field-label, .field-label-2, .field-label-3 {
    text-align: center;
  }

  .rl-button {
    width: 15%;
  }

  .proj-h1 {
    height: auto;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 36px;
    line-height: 40px;
  }

  .proj-sub {
    align-items: flex-start;
    height: 35px;
    font-family: Poppins, sans-serif;
    line-height: 20px;
    display: block;
  }

  .tongue-hero {
    background-position: 0 0, 50%;
  }

  .refi-hero {
    background-position: 0 0, 45%;
  }

  .cc-hero {
    background-image: linear-gradient(360deg, #000000b3 13%, #0000), url('../images/cancap-thumb-hero.png');
    background-position: 0 0, 0%;
  }

  .rugd-hero {
    background-image: linear-gradient(360deg, #0009 13%, #0000), url('../images/rugd-mob.png');
    background-position: 0 0, 50%;
    background-size: auto, cover;
  }

  .brandbook-button {
    text-align: center;
  }

  .image-text-container {
    max-width: 23.5153%;
  }

  .nihon-hero {
    background-position: 0 0, 0 100%;
  }

  .overview-caption {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
  }

  .mograph-hero {
    background-image: linear-gradient(360deg, #0009 13%, #0000), url('../images/mograph-thumb.png');
    background-position: 0 0, 50%;
    background-size: auto, cover;
  }

  .company {
    color: #fff;
  }

  .other-hero {
    background-position: 0 0, 50% 0;
  }

  .text-block-11 {
    width: 60%;
  }

  .field-label-4, .field-label-5 {
    text-align: center;
  }

  .button-8 {
    width: 30%;
  }

  .text-span-12 {
    font-size: 24px;
  }

  .tonight-hero {
    background-position: 0 0, 45%;
  }

  .unf-hero {
    background-image: linear-gradient(360deg, #0009 13%, #0000), url('../images/unf_hero1.png');
    background-position: 0 0, 50%;
    background-size: auto, cover;
  }

  .butts {
    width: 30%;
  }

  .photography-hero {
    background-image: linear-gradient(360deg, #000000c2 13%, #0000), url('../images/mayones-capa.jpg');
    background-position: 0 0, 50% 0;
  }
}

@media screen and (max-width: 479px) {
  .contact-container {
    order: 1;
    align-items: flex-start;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0%;
    padding-right: 0%;
  }

  .project-heading {
    text-align: left;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    height: 50px;
    padding-top: 0;
    padding-left: 0%;
    font-size: 30px;
    font-weight: 700;
    line-height: 48px;
  }

  .paragraph-tiny {
    font-weight: 400;
  }

  .paragraph-light {
    color: #fff;
    text-align: left;
  }

  .paragraph-light.body-text {
    opacity: 1;
    color: var(--font);
    text-align: left;
    width: 100%;
    max-width: 100%;
    margin-bottom: 5%;
    padding-left: 0%;
    padding-right: 0%;
  }

  .project-images {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .project-images.cc-contact {
    flex-direction: column;
    align-items: center;
    padding: 10%;
  }

  .navigation {
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-button, .menu-button.w--open {
    flex: none;
  }

  .intro-wrap {
    background-image: none;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
  }

  .contact {
    flex-direction: column;
    width: 100%;
    padding: 40px 5%;
  }

  .contact-form-grid {
    width: 300px;
  }

  .contact-form, .contact-form-wrap {
    flex-direction: column;
  }

  .porject-footer {
    object-fit: fill;
    background-color: #000;
    flex-flow: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 20px 0;
    font-weight: 200;
    line-height: 25px;
    display: flex;
    overflow: hidden;
  }

  .webflow-link {
    justify-content: center;
    align-items: stretch;
    margin-bottom: 16px;
  }

  .detail-image {
    max-width: 100%;
    margin-bottom: 0%;
  }

  .main-h1 {
    font-size: 50px;
    line-height: 50px;
  }

  .main-h1.home {
    color: var(--white-3);
    font-size: 5vh;
    line-height: 5vh;
  }

  .main-h1.bold {
    font-size: 60px;
    line-height: 50px;
  }

  .main-h1.bold.home {
    font-size: 5vh;
    line-height: 5vh;
  }

  .home-subhead {
    width: auto;
  }

  .body {
    overflow: visible;
  }

  .navbar {
    text-align: center;
    cursor: pointer;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    height: 150px;
    margin-bottom: 60px;
    padding: 2vh 0;
    display: block;
    inset: 0% 0% auto;
  }

  .nav-menu {
    justify-content: space-between;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .link-nav.w--current {
    color: #ffffff80;
  }

  .project-body {
    background-color: #414142;
    flex-direction: column;
    align-items: center;
    padding-left: 0%;
    padding-right: 0%;
    display: flex;
    overflow: visible;
  }

  .project-text-block {
    max-width: 100%;
    height: auto;
    max-height: none;
    margin-top: 10%;
    margin-bottom: 10%;
    padding: 10%;
  }

  .overview {
    align-items: flex-start;
  }

  .images-container {
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin-top: 5%;
    margin-bottom: 0%;
    padding: 10% 10% 5%;
  }

  .caption {
    color: #fff;
    margin-top: 0%;
    margin-bottom: 5%;
    font-size: 21px;
    font-weight: 700;
  }

  .style-grid {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template: "."
                   "Area"
                   "."
                   "."
                   / 1fr;
    height: 100%;
    max-height: none;
    margin-bottom: 0;
  }

  .image-2 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
  }

  .styleguide {
    align-items: flex-start;
    height: auto;
    padding-left: 0%;
    padding-right: 0%;
    overflow: hidden;
  }

  .mobile-view {
    grid-column-gap: 60px;
    grid-row-gap: 14px;
    grid-template-columns: 1fr;
    height: 100%;
    margin-top: 0%;
  }

  .work-section {
    justify-content: center;
    align-items: center;
    padding: 5%;
  }

  .secttion-heading {
    font-weight: 200;
  }

  .heading-3 {
    text-align: left;
    text-transform: none;
    width: 100%;
    padding-left: 0%;
    padding-right: 0%;
    font-family: Outfit, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
  }

  .menu-button-2 {
    position: fixed;
  }

  .logo-img {
    width: 35px;
    max-width: none;
  }

  .icon, .icon:hover {
    -webkit-text-stroke-color: transparent;
  }

  .icon:active {
    background-color: #0000;
    font-family: Montserrat, sans-serif;
  }

  .nav-menu-2 {
    color: var(--blue-violet);
    background-color: #020202e6;
    flex-flow: row;
    justify-content: center;
    align-self: auto;
    align-items: center;
    height: 120px;
    max-height: none;
    margin-left: 0;
    font-family: Outfit, sans-serif;
    display: flex;
  }

  .nav {
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    height: 80px;
    max-height: 80px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 40px 20px;
    display: flex;
    position: fixed;
    inset: 0% 0% 0;
  }

  .logo-3 {
    margin-right: auto;
    padding-left: 0;
  }

  .navlinks {
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 0;
    font-family: Outfit, sans-serif;
  }

  .navlinks:hover {
    color: var(--blue-violet);
  }

  .nav-container.nav {
    background-color: var(--gray);
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    height: 95px;
    max-height: 100px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0 10%;
    display: flex;
  }

  .menu-button-3 {
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
    line-height: 0;
  }

  .menu-button-3.w--open {
    background-color: #0000;
    font-family: Montserrat, sans-serif;
  }

  .project-grid {
    grid-template-rows: auto auto auto;
    grid-template-columns: minmax(15rem, 1fr);
  }

  .work-container {
    background-color: #0000;
    border-radius: 0;
    align-items: center;
    width: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 0%;
  }

  .thumbnail-block {
    width: auto;
    max-width: none;
    height: 370px;
    padding-bottom: 0%;
  }

  .project-details {
    margin-bottom: 5%;
  }

  .project-name-thumb {
    color: var(--white-3);
    width: auto;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    font-family: Outfit, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-decoration: none;
  }

  .thumb-image {
    margin-bottom: 3%;
  }

  .thumb-container {
    width: auto;
  }

  .thumb-text {
    margin-top: 20px;
  }

  .label-text {
    color: var(--white-3);
    font-family: Outfit, sans-serif;
    font-size: 10px;
    font-weight: 400;
    line-height: 15px;
  }

  .thumb-overlay {
    justify-content: center;
    align-items: center;
    width: 290px;
  }

  .text-block-9 {
    height: 3vh;
  }

  .button-5 {
    height: 35px;
    font-weight: 400;
  }

  .rl-button {
    border-radius: 5px;
    width: 25%;
    max-width: 25%;
    height: 40px;
    margin-top: 0%;
    margin-bottom: 0%;
    padding: 3px 5px;
    font-weight: 400;
  }

  .button-cont {
    width: 288px;
    height: 40px;
    margin-top: 10%;
    margin-bottom: 10%;
    padding-bottom: 0%;
    line-height: 40px;
  }

  .ud-hero {
    background-image: linear-gradient(360deg, #000000e6 13%, #0000), url('../images/UD-Thumb-2.png');
    background-position: 0 0, 95% 100%;
    background-size: auto, auto;
    width: 100%;
  }

  .proj-h1 {
    width: 288px;
    height: 65%;
    margin-right: 5%;
    font-size: 30px;
    line-height: 35px;
  }

  .container-4 {
    flex-direction: column;
    justify-content: center;
    padding-right: 0%;
    display: flex;
  }

  .proj-sub {
    height: 30px;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
    padding-right: 5%;
    line-height: 20px;
  }

  .tongue-hero {
    background-position: 0 0, 50% 60%;
    width: 100%;
    height: 60vh;
  }

  .refi-hero {
    background-image: linear-gradient(360deg, #000000e6 13%, #0000), url('../images/refi-thumb.png');
    background-position: 0 0, 45%;
    width: 100%;
  }

  .cc-hero {
    background-image: linear-gradient(360deg, #0009 13%, #0000), url('../images/cancap-thumb-hero.png');
    background-position: 0 0, 0%;
    width: 100%;
    height: 60vh;
  }

  .rugd-hero {
    background-image: linear-gradient(360deg, #0009 13%, #0000), url('../images/rugd-mob.png');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    width: 100%;
    height: 60vh;
    padding-bottom: 10%;
  }

  .brandbook-button {
    text-align: center;
    margin-top: 0%;
  }

  .image-text-container {
    width: 100%;
    max-width: 100%;
    margin-top: 10%;
    margin-bottom: 0;
    padding: 5%;
  }

  .paragraph {
    color: var(--white-3);
    font-family: Outfit, sans-serif;
    font-size: 16px;
    font-weight: 200;
  }

  .nihon-hero {
    background-position: 0 0, 0 100%;
    width: 100%;
    height: 80vh;
    padding-left: 10%;
  }

  .overview-caption {
    color: #fff;
    margin-top: 0%;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 700;
  }

  .mograph-hero {
    background-image: linear-gradient(360deg, #000000e6 13%, #0000), url('../images/mograph-thumb.png');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    height: 60vh;
    padding-bottom: 10%;
  }

  .btn {
    height: 40px;
    margin-bottom: 5%;
  }

  .videos {
    margin-bottom: 0%;
  }

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

  .logo-hero {
    background-image: linear-gradient(360deg, #000000e6 13%, #0000), url('../images/ab-min.png');
    background-position: 0 0, 49%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 60vh;
    padding-bottom: 10%;
    padding-left: 10%;
  }

  .grid-5 {
    grid-template-columns: 1fr;
  }

  .resume {
    padding-top: 60px;
  }

  .company {
    color: #fff;
    margin-top: 10%;
    margin-bottom: 5px;
    font-size: 24px;
    font-weight: 700;
  }

  .other-hero {
    background-image: linear-gradient(360deg, #000000e6 13%, #0000), url('../images/other.png');
    background-position: 0 0, 49%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    width: 100%;
    height: 60vh;
    padding-bottom: 10%;
  }

  .heading-4 {
    font-size: 30px;
  }

  .horizontal-block {
    max-width: 100%;
    height: auto;
    max-height: none;
    margin-top: 10%;
    margin-bottom: 10%;
    padding: 10%;
  }

  .grid-6 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .paragraph-2 {
    text-align: center;
  }

  .about-section {
    justify-content: center;
    align-items: center;
    height: 100vh;
    max-height: none;
    padding-top: 25%;
    display: flex;
  }

  .container-5 {
    padding-left: 0%;
    padding-right: 0%;
  }

  .text-span-3 {
    color: var(--font);
    -webkit-text-stroke-color: var(--font);
  }

  .aboutme {
    width: 60%;
    padding-left: 0%;
    padding-right: 0%;
    font-size: 30px;
  }

  .body-text {
    color: var(--white-3);
    padding-left: 0%;
    padding-right: 0%;
    font-family: Outfit, sans-serif;
    font-weight: 200;
    line-height: 18px;
  }

  .button-6 {
    font-size: 14px;
    font-weight: 700;
  }

  .text-span-6 {
    color: var(--white);
  }

  .text-span-8 {
    width: auto;
    max-width: none;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .text-block-11 {
    opacity: 1;
    color: var(--font);
    text-align: center;
    width: 65%;
    line-height: 19px;
    text-decoration: none;
  }

  .link-block {
    color: #0000;
    text-decoration: none;
  }

  .button-8 {
    text-align: center;
    width: 45%;
    height: 30px;
    margin-top: 5%;
    padding-left: 15px;
    padding-right: 15px;
    font-family: DM Sans, sans-serif;
    line-height: 19px;
  }

  .text-span-12 {
    font-family: DM Sans, sans-serif;
    font-size: 20px;
  }

  .background-video {
    opacity: 1;
    flex: 0 auto;
    align-self: auto;
  }

  .tonight-hero {
    background-image: linear-gradient(360deg, #000000e6 13%, #0000 51%), url('../images/hero-port.jpg');
    background-position: 0 0, 70%;
    width: 100%;
  }

  .unf-hero {
    background-image: linear-gradient(360deg, #051a4d 5%, #0000 51%), url('../images/unf_hero1.png');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    height: 60vh;
    padding-bottom: 10%;
  }

  .butts {
    width: 50%;
  }

  .image-17 {
    margin-bottom: 5%;
  }

  .nav-block {
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 0;
  }

  .nav-block:hover {
    color: var(--blue-violet);
  }

  .navblock {
    text-align: center;
    order: 1;
    align-self: center;
    width: 50%;
    margin-left: 100px;
    padding-left: 0;
    padding-right: 0;
    font-family: Outfit, sans-serif;
  }

  .heading-5 {
    color: #e6e6e6;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 44px;
  }

  .container-6 {
    padding-left: 5%;
  }

  .grid-8 {
    grid-template-columns: 1fr;
  }

  .image-19 {
    margin-top: 2%;
  }

  .project-text-block-copy {
    max-width: 100%;
    height: auto;
    max-height: none;
    margin-top: 10%;
    margin-bottom: 10%;
    padding: 10%;
  }

  .photography-hero {
    background-image: linear-gradient(360deg, #000000e6 13%, #0000), url('../images/mayones-capa.jpg');
    background-position: 0 0, 49%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    width: 100%;
    height: 60vh;
    padding-bottom: 10%;
  }
}

#w-node-bc23c66d-4e42-d88e-82f0-3b6e1d4f261c-7ba914b3, #w-node-_9cc37853-c715-a6de-3a75-9ae82415b60b-7ba914b3, #w-node-_1e28b00b-fa0e-1039-903c-2dbcd59c6500-7ba914b3, #w-node-_5d62939d-21d7-2593-bc51-a8c628294974-7ba914b3, #w-node-_76e4c42b-c453-35d7-4a61-d86af926c8fe-7ba914b3, #w-node-_5129be05-f7a1-12cb-1bc9-1ecb9206825c-7ba914b3, #w-node-c0c889a8-0ce4-54c9-5f6c-b9b54c0aac9b-7ba914b3, #w-node-c0c889a8-0ce4-54c9-5f6c-b9b54c0aaca2-7ba914b3, #w-node-_3dce3f18-79d1-0aaa-b931-f1764f78b11e-7ba914b3, #w-node-_51563673-fcd9-872c-3e6a-190c529620f5-7ba914b3, #w-node-_51563673-fcd9-872c-3e6a-190c529620fc-7ba914b3, #w-node-e04844bb-c24e-ee89-3f2e-5dbdac604362-7ba914b3, #w-node-_6e7b0b83-38a0-163a-a7e8-8e0ba35c49e7-7ba914b3, #w-node-_9061e3da-e283-5fed-feaf-942ba2aae79f-7ba914b3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0befc76b-828c-2822-f9fa-f2c6de040bc9-7ba914b8 {
  grid-area: 2 / 3 / 3 / 5;
}

#w-node-_0befc76b-828c-2822-f9fa-f2c6de040bc4-7ba914b8 {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_0befc76b-828c-2822-f9fa-f2c6de040bc9-7ba914ba, #w-node-_0befc76b-828c-2822-f9fa-f2c6de040bc9-7ba914bb, #w-node-_0befc76b-828c-2822-f9fa-f2c6de040bc9-7ba914bc {
  grid-area: 2 / 3 / 3 / 5;
}

#w-node-_57b78a9d-5f66-39eb-83e3-755ce3314a35-7ba914bc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0befc76b-828c-2822-f9fa-f2c6de040bc9-7ba914c1 {
  grid-area: 2 / 3 / 3 / 5;
}

#w-node-_0befc76b-828c-2822-f9fa-f2c6de040bc4-7ba914c1 {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_0befc76b-828c-2822-f9fa-f2c6de040bc9-7ba914c3 {
  grid-area: 2 / 3 / 3 / 5;
}

#w-node-_0befc76b-828c-2822-f9fa-f2c6de040bc4-7ba914c5 {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-_1322a75c-f9f7-9be3-bb98-91f7dddc5533-7ba914c5, #w-node-_48d5c2f1-46f8-241f-0aec-0ea954727986-7ba914c5, #w-node-_51530ca0-e57f-223c-b14b-91d0cc25a0e8-7ba914c5, #w-node-f1d6aee1-f316-8e86-e5e6-03fb692495d8-7ba914c5, #w-node-_6ec37d96-760a-5842-977e-207f70d79189-7ba914c5, #w-node-_4e801e3e-639c-8e7f-38f5-37703a860f79-7ba914c5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0befc76b-828c-2822-f9fa-f2c6de040bc9-d2fa36b9 {
  grid-area: 2 / 3 / 3 / 5;
}

#w-node-_6e34d78d-e184-0745-e4d4-84c4e5675f64-f3c282c8, #w-node-_7572626c-5286-268f-1e3e-4238e75e5667-f3c282c8, #w-node-_6c891186-0b75-0c3d-2712-8014b7549e80-f3c282c8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1440px) {
  #w-node-bc23c66d-4e42-d88e-82f0-3b6e1d4f2615-7ba914b3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
  }

  #w-node-c0c889a8-0ce4-54c9-5f6c-b9b54c0aac9b-7ba914b3, #w-node-d57baf17-0914-4267-9515-2c0ef2e63d31-7ba914bd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_0befc76b-828c-2822-f9fa-f2c6de040bc9-7ba914b8 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_0befc76b-828c-2822-f9fa-f2c6de040bc4-7ba914b8 {
    grid-column-end: 2;
  }

  #w-node-_0befc76b-828c-2822-f9fa-f2c6de040bc9-7ba914ba, #w-node-_0befc76b-828c-2822-f9fa-f2c6de040bc9-7ba914bb, #w-node-_0befc76b-828c-2822-f9fa-f2c6de040bc9-7ba914bc, #w-node-_0befc76b-828c-2822-f9fa-f2c6de040bc9-7ba914c1 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_0befc76b-828c-2822-f9fa-f2c6de040bc4-7ba914c1 {
    grid-column-end: 2;
  }

  #w-node-_0befc76b-828c-2822-f9fa-f2c6de040bc9-7ba914c3 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_0befc76b-828c-2822-f9fa-f2c6de040bc4-7ba914c5 {
    grid-column-end: 2;
  }

  #w-node-_0befc76b-828c-2822-f9fa-f2c6de040bc9-d2fa36b9 {
    grid-area: 3 / 1 / 4 / 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_7e5a9810-5c96-d089-0802-f001c559d087-7ba914bc, #w-node-ede9babf-5983-a773-ab29-a7335525edee-7ba914bc, #w-node-_57b78a9d-5f66-39eb-83e3-755ce3314a35-7ba914bc, #w-node-_89b9ecd3-df94-e9ad-e431-8ee09ce3cc7c-7ba914bc, #w-node-_959df083-b3fc-fdfa-64ed-9cd8d91d69ef-7ba914bc, #w-node-_959df083-b3fc-fdfa-64ed-9cd8d91d69f0-7ba914bc, #w-node-_959df083-b3fc-fdfa-64ed-9cd8d91d69f1-7ba914bc, #w-node-_99822bb0-066e-81d2-2db0-c7f226b99538-7ba914bc, #w-node-_7e5a9810-5c96-d089-0802-f001c559d087-7ba914c1, #w-node-ede9babf-5983-a773-ab29-a7335525edee-7ba914c1, #w-node-_57b78a9d-5f66-39eb-83e3-755ce3314a35-7ba914c1, #w-node-_89b9ecd3-df94-e9ad-e431-8ee09ce3cc7c-7ba914c1, #w-node-_959df083-b3fc-fdfa-64ed-9cd8d91d69ef-7ba914c1, #w-node-_959df083-b3fc-fdfa-64ed-9cd8d91d69f0-7ba914c1, #w-node-_959df083-b3fc-fdfa-64ed-9cd8d91d69f1-7ba914c1, #w-node-_99822bb0-066e-81d2-2db0-c7f226b99538-7ba914c1, #w-node-ede9babf-5983-a773-ab29-a7335525edee-7ba914c3, #w-node-_57b78a9d-5f66-39eb-83e3-755ce3314a35-7ba914c3, #w-node-_89b9ecd3-df94-e9ad-e431-8ee09ce3cc7c-7ba914c3, #w-node-_959df083-b3fc-fdfa-64ed-9cd8d91d69ef-7ba914c5, #w-node-_959df083-b3fc-fdfa-64ed-9cd8d91d69f0-7ba914c5, #w-node-_959df083-b3fc-fdfa-64ed-9cd8d91d69f1-7ba914c5, #w-node-_99822bb0-066e-81d2-2db0-c7f226b99538-7ba914c5, #w-node-_7e5a9810-5c96-d089-0802-f001c559d087-7ba914c6, #w-node-ede9babf-5983-a773-ab29-a7335525edee-7ba914c6, #w-node-_57b78a9d-5f66-39eb-83e3-755ce3314a35-7ba914c6, #w-node-_89b9ecd3-df94-e9ad-e431-8ee09ce3cc7c-7ba914c6, #w-node-_959df083-b3fc-fdfa-64ed-9cd8d91d69ef-7ba914c6, #w-node-_959df083-b3fc-fdfa-64ed-9cd8d91d69f0-7ba914c6, #w-node-_959df083-b3fc-fdfa-64ed-9cd8d91d69f1-7ba914c6, #w-node-_99822bb0-066e-81d2-2db0-c7f226b99538-7ba914c6, #w-node-_7e5a9810-5c96-d089-0802-f001c559d087-d2fa36b9, #w-node-_959df083-b3fc-fdfa-64ed-9cd8d91d69ef-d2fa36b9, #w-node-_959df083-b3fc-fdfa-64ed-9cd8d91d69f0-d2fa36b9, #w-node-_959df083-b3fc-fdfa-64ed-9cd8d91d69f1-d2fa36b9, #w-node-_99822bb0-066e-81d2-2db0-c7f226b99538-d2fa36b9, #w-node-e8046314-8e6b-a6ee-4691-e2bcc777a133-d2fa36b9, #w-node-e8046314-8e6b-a6ee-4691-e2bcc777a134-d2fa36b9, #w-node-e8046314-8e6b-a6ee-4691-e2bcc777a135-d2fa36b9, #w-node-e8046314-8e6b-a6ee-4691-e2bcc777a136-d2fa36b9 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


