:root {
  --color--dark: #050505;
  --primary-font: Questrial, sans-serif;
  --color--white: #f9f9fa;
  --body--desktop: 20px;
  --body--tablet: 18px;
  --body--mobile: 16px;
  --secondary-font: "Bebas Neue", sans-serif;
  --color--red: #3a5ec9;
  --paragraph--small: .9em;
  --paragraph--regular: 1.2em;
  --color--grey: #424242;
  --color--light: #d3d3d2;
  --paragraph--large: 2em;
  --heading: 2.2em;
  --white: white;
  --black: black;
  --color--red-hover: #d6204e33;
}

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

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.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 {
  background-color: var(--color--dark);
  font-family: var(--primary-font);
  color: var(--color--white);
  font-size: var(--body--desktop);
  cursor: none;
  line-height: 1.25;
}

h1 {
  font-family: var(--secondary-font);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 10vw;
  font-weight: 400;
  line-height: .9;
}

h2 {
  font-family: var(--secondary-font);
  color: var(--color--red);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4em;
  font-weight: 400;
  line-height: 1.1;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

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

img {
  object-fit: cover;
  max-width: 100%;
  display: inline-block;
}

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

.container {
  max-width: 1600px;
  padding-left: 2em;
  padding-right: 2em;
}

.container.footer {
  height: 10vh;
}

.image {
  width: 100%;
  height: 100%;
}

.header {
  z-index: 1000;
  background-color: var(--color--dark);
  padding-top: 20px;
  padding-bottom: 20px;
  position: fixed;
  inset: 0% 0% auto;
}

.footer-section {
  height: 10vh;
}

.footer-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  font-size: var(--paragraph--small);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  height: 100%;
  display: grid;
}

.footer-text {
  font-family: var(--secondary-font);
  font-size: 1em;
}

.footer-link {
  font-family: var(--secondary-font);
  color: var(--color--white);
  font-size: 1em;
  transition: all .2s;
}

.footer-link:hover {
  color: var(--color--red);
  text-decoration: underline;
}

.footer-link.w--current, .footer-link.ex-link {
  color: var(--color--red);
}

.footer-link-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.gallery-image {
  width: 100%;
  margin-bottom: 15px;
}

.portfolio-image-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  column-count: 3;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
}

.grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  height: 60vh;
}

.image-text-container {
  grid-column-gap: 10px;
  align-items: center;
  display: flex;
}

.image-text-container.reverse {
  flex-direction: row-reverse;
}

.first-about-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.vertical-letter {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.name-character {
  font-size: var(--paragraph--regular);
  line-height: 1;
}

.about-content-wrapper {
  grid-row-gap: 40px;
  flex-direction: column;
  display: flex;
}

.paragraph---regular {
  font-family: var(--primary-font);
  font-size: var(--paragraph--regular);
}

.about-main-wrapper {
  text-align: center;
  position: relative;
}

.about-section {
  align-items: center;
  height: 100vh;
  display: flex;
}

.about-main-image {
  width: 100%;
  height: 100%;
}

.about-heading {
  z-index: 5;
  position: absolute;
  inset: -10% 0% auto;
}

.div-block {
  grid-row-gap: 18px;
  flex-direction: column;
  display: flex;
}

.motto-image {
  width: 100%;
  height: 170px;
  overflow: hidden;
}

.my-story-container {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.about-main-container {
  height: 60vh;
  overflow: hidden;
}

.contact-heading {
  text-align: center;
  margin-bottom: 64px;
}

.flex-box {
  grid-column-gap: 30px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.form-input {
  border: 1px solid var(--color--grey);
  color: var(--color--white);
  background-color: #fff0;
  margin-bottom: 20px;
  padding: 10px 24px;
  font-size: 1rem;
}

.form-input::placeholder {
  color: var(--color--white);
  letter-spacing: 0;
  text-transform: none;
  font-size: 1em;
}

.form-input.message {
  font-size: var(--body--desktop);
  height: 170px;
}

.submit-button {
  border: 1px solid var(--color--red);
  background-color: var(--color--red);
  color: var(--color--white);
  font-size: var(--body--desktop);
  letter-spacing: 0;
  text-transform: uppercase;
  margin-left: auto;
  padding: 10px 25px;
  font-weight: 400;
  transition: all .2s;
  display: block;
}

.submit-button:hover {
  background-color: var(--color--dark);
  color: var(--color--white);
}

.form-block {
  width: 60%;
}

.follow-container {
  width: 35%;
}

.contact-container {
  justify-content: space-between;
  display: flex;
}

.follow-header {
  margin-bottom: 15px;
}

.socials-container {
  grid-column-gap: 30px;
  align-items: center;
  display: flex;
}

.socials-bubble {
  border: 1px solid #000;
  border-radius: 110px;
  width: 60px;
  height: 60px;
  position: relative;
  overflow: hidden;
}

.social-image {
  position: absolute;
  inset: 50% 0% 0% 50%;
  transform: translate(-50%, -50%);
}

.social-image.white {
  transform: translate(-50%, 150%);
}

.footer-ex-link {
  font-family: var(--secondary-font);
}

.footer-text-space {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}

.section-heading {
  text-align: center;
  text-transform: uppercase;
}

.style-container {
  text-align: center;
  margin-top: 100px;
}

.capitalize {
  text-transform: uppercase;
}

.color-grid {
  grid-column-gap: 44px;
  grid-row-gap: 44px;
  border-top: 1px solid var(--color--white);
  column-count: 3;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 20px;
  padding-top: 10px;
}

.color {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  display: flex;
  box-shadow: 1px 4px 20px 1px #0000004d;
}

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

.color.black {
  border: 1px solid var(--color--grey);
  background-color: var(--color--dark);
}

.color.red {
  background-color: var(--color--red);
}

.typeface-grid {
  grid-column-gap: 44px;
  grid-row-gap: 44px;
  border-top: 1px solid var(--color--white);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 20px;
  padding-top: 10px;
  display: grid;
}

.typeface {
  grid-row-gap: 44px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.bubble {
  background-color: var(--color--red);
  color: var(--color--white);
  text-transform: uppercase;
  padding: 5px 30px;
}

.bubble.link {
  text-decoration: underline;
}

.bubble.margin-bottom {
  margin-bottom: 10px;
}

.secondary-font {
  font-family: var(--secondary-font);
  font-weight: 400;
}

.scale-grid {
  border-top: 1px solid var(--color--white);
  margin-top: 20px;
}

.scale-wrapper {
  grid-row-gap: 40px;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

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

.paragraph---small {
  font-family: var(--primary-font);
  font-size: var(--paragraph--small);
}

.license-wrapper {
  text-align: center;
  margin-top: 70px;
}

.license-block {
  flex-direction: column;
  align-items: center;
  margin-bottom: 44px;
  display: flex;
}

.font-display {
  font-size: 80px;
  line-height: 115%;
}

.bold {
  color: var(--color--red);
  letter-spacing: 1px;
  font-weight: 600;
}

.version-detail {
  margin-top: 64px;
}

.intro-text-fixed {
  font-size: 64px;
  line-height: 115%;
}

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

.hero-intro-paragraph {
  font-size: var(--paragraph--large);
  text-indent: 200px;
}

.hero-intro-wrapper {
  margin-top: 10em;
  margin-bottom: 5em;
}

.reference-page {
  color: var(--color--dark);
  font-weight: 300;
  text-decoration: none;
}

.reference-page:hover, .reference-page.w--current {
  color: #292a30;
}

.nav-link-wrapper {
  padding-left: 40px;
}

.sidebar {
  background-color: var(--color--white);
  flex-direction: column;
  width: 400px;
  height: 100%;
  padding: 50px 100px 100px 64px;
  display: none;
  position: fixed;
  inset: 0% 0% 0% auto;
}

.nav-line {
  background-color: var(--color--red);
  width: 100%;
  height: 2px;
}

.nav-line.margin {
  margin-top: 44px;
  margin-bottom: 32px;
}

.nav-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.logo-block {
  grid-column-gap: 10px;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.nav-line-and-cross {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 44px;
  display: flex;
}

.logo-text {
  font-family: var(--secondary-font);
  color: var(--color--white);
  font-size: var(--paragraph--regular);
  line-height: var(--paragraph--small);
  text-transform: uppercase;
  align-items: center;
  display: flex;
}

.logo {
  object-fit: cover;
  border-radius: 50px;
  width: 60px;
  height: 60px;
  transition: all .2s;
  transform: translate(0);
}

.logo:hover {
  transform: rotate(45deg);
}

.nav-link-holder {
  grid-row-gap: 10px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.nav-link-holder.no-gap {
  grid-row-gap: 0px;
}

.hamburger-menu {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 32px;
  padding: 6px 3px;
  display: flex;
}

.nav-link {
  font-family: var(--secondary-font);
  color: var(--color--dark);
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 400;
  line-height: 115%;
  text-decoration: none;
  transition: all .2s;
}

.nav-link:hover, .nav-link.w--current {
  color: #323753;
}

.hamburger-line {
  background-color: var(--color--red);
  border-radius: 20px;
  width: 42px;
  height: 2px;
}

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

.menu-button {
  z-index: 1501;
  padding: 0;
}

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

.social-links-wrapper {
  grid-column-gap: 20px;
  flex-direction: row;
  align-self: auto;
  display: flex;
}

.social-link {
  border: 1px solid var(--color--red);
  font-size: var(--paragraph--regular);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 100px;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.social-link:hover {
  border-color: var(--color--white);
  color: #fff;
}

.social-icon {
  max-width: 12px;
  max-height: 15px;
}

.cursor-wrapper {
  z-index: 9999;
  pointer-events: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: fixed;
  inset: 0%;
}

.cursor {
  border: 1px solid var(--color--red);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
}

.cursor-dot {
  background-color: var(--color--red);
  border-radius: 100%;
  width: 4px;
  height: 4px;
}

.columns {
  align-items: flex-end;
  display: flex;
}

.spacer {
  width: 100%;
  height: 32px;
}

.success-message {
  color: var(--color--dark);
  background-color: #3aa34f;
  font-weight: 400;
}

.error-message {
  color: var(--color--white);
  background-color: #c3251a;
}

.paragraph {
  text-align: center;
  width: 80%;
  margin-top: 81px;
  margin-left: auto;
  margin-right: auto;
}

.heading {
  padding-bottom: 40px;
  padding-left: 100px;
  font-size: 2em;
}

.text-block {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding-left: 100px;
  display: block;
}

@media screen and (min-width: 1920px) {
  body {
    cursor: auto;
  }

  a, .footer-link:hover {
    color: var(--color--red);
  }

  .submit-button:hover {
    border-color: var(--color--red);
  }

  .footer-text-space {
    color: var(--color--light);
  }

  .reference-page {
    color: #292a3080;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: all .2s;
  }

  .reference-page:hover {
    color: #292a30;
  }

  .sidebar {
    background-color: var(--color--white);
    width: 420px;
  }

  .nav-line {
    background-color: #0000;
  }

  .nav-line.margin {
    background-color: var(--color--red);
  }

  .social-links-wrapper {
    justify-content: flex-end;
  }

  .columns {
    align-items: flex-end;
    display: flex;
  }
}

@media screen and (max-width: 991px) {
  body {
    font-size: var(--body--tablet);
    cursor: auto;
  }

  .header {
    z-index: 9999;
  }

  .footer-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

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

  .about-section {
    height: auto;
    padding-top: 5.5em;
    padding-bottom: 5.5em;
  }

  .about-heading {
    top: -7%;
  }

  .about-main-container {
    height: 380px;
  }

  .form-input {
    font-size: var(--body--mobile);
  }

  .form-input.message, .submit-button {
    font-size: var(--body--tablet);
  }

  .form-block {
    width: 100%;
  }

  .follow-container {
    text-align: center;
    width: auto;
  }

  .contact-container {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
    align-items: center;
  }

  .socials-container {
    justify-content: center;
  }

  .color-grid, .typeface-grid {
    grid-row-gap: 44px;
    grid-template-columns: 1fr;
  }

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

  .intro-text-fixed {
    font-size: 54px;
  }

  .hero-intro-paragraph {
    font-size: var(--paragraph--regular);
  }

  .hamburger-menu {
    padding-right: 0;
  }

  .hamburger-line {
    width: 36px;
  }

  .nav-container {
    max-width: 1400px;
  }

  .cursor-wrapper {
    display: none;
  }

  .columns {
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: var(--body--mobile);
  }

  .section {
    padding-bottom: 40px;
  }

  .container.footer {
    height: auto;
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .footer-section {
    height: auto;
    position: relative;
  }

  .footer-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .footer-link-wrapper {
    grid-column-gap: 7px;
    grid-row-gap: 7px;
    flex-direction: column;
  }

  .portfolio-image-grid {
    column-count: 1;
  }

  .paragraph---regular {
    font-size: var(--paragraph--regular);
  }

  .about-section {
    padding-top: 7em;
    padding-bottom: 7em;
  }

  .about-heading {
    font-size: 5em;
    top: -10%;
  }

  .form-input, .form-input.message, .submit-button {
    font-size: var(--body--mobile);
  }

  .socials-bubble {
    width: 50px;
    height: 50px;
  }

  .color-grid {
    grid-column-gap: 10px;
    grid-row-gap: 24px;
    column-count: 1;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    display: flex;
  }

  .typeface-grid {
    grid-row-gap: 24px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .typeface {
    grid-row-gap: 24px;
  }

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

  .font-display {
    font-size: 50px;
  }

  .intro-text-fixed {
    font-size: 44px;
  }

  .hero-intro-paragraph {
    font-size: var(--paragraph--regular);
  }

  .sidebar {
    width: 100%;
    padding-top: 100px;
    padding-left: 2rem;
    padding-right: 2rem;
    display: none;
  }

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

  .logo-block.w--current {
    z-index: 9999;
    padding-left: 0;
  }

  .logo-text {
    color: var(--color--white);
    mix-blend-mode: difference;
    font-size: 24px;
  }

  .hamburger-menu {
    height: 28px;
  }

  .nav-link:hover {
    color: var(--color--red);
    text-decoration: underline;
  }

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

  .hamburger-line {
    width: 32px;
  }

  .social-links-wrapper {
    grid-column-gap: 15px;
    flex-direction: row;
    display: flex;
  }

  .social-link {
    font-size: 12px;
  }
}

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

  .container {
    padding-left: 1em;
    padding-right: 1em;
  }

  .container.footer {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }

  .footer-wrapper {
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .footer-link-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

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

  .about-heading {
    position: static;
  }

  .flex-box {
    flex-direction: column;
  }

  .submit-button {
    width: 100%;
  }

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

  .color-grid {
    grid-row-gap: 10px;
    column-count: 1;
    flex-direction: column;
  }

  .intro-text-fixed {
    font-size: 32px;
  }

  .nav-link-wrapper {
    padding-left: 20px;
  }

  .sidebar {
    padding-left: 1rem;
    padding-right: 1rem;
    display: none;
  }

  .logo-text {
    font-size: 18px;
  }

  .logo {
    width: 50px;
    height: 50px;
  }

  .social-links-wrapper {
    grid-column-gap: 10px;
    flex-direction: row;
    justify-content: space-around;
    align-self: auto;
    align-items: stretch;
    display: flex;
  }

  .social-link {
    font-size: 10px;
  }

  .social-icon {
    max-width: 50%;
  }
}

#w-node-b464e43d-c89b-cacb-94fe-4a1d5afc607c-5afc6079 {
  place-self: center start;
}

#w-node-fde35b6b-696e-c9ef-aa47-b6916d17ad35-5afc6079 {
  place-self: center end;
}

#w-node-_7fdff80b-31e5-44f0-7872-66b0b507f358-b3375258 {
  grid-area: 1 / 1 / 2 / 4;
  align-self: end;
}

#w-node-_348e46eb-4d83-edd7-3dac-a9228ac8f7d8-b3375258 {
  grid-area: 1 / 8 / 2 / 11;
}

#w-node-_83d4e963-75ee-01e2-99bb-c9d95492ea2a-b3375258 {
  grid-area: 1 / 4 / 2 / 8;
}

#w-node-_9278321c-1c41-4e7f-0cf0-016a4210eaca-b337525d, #w-node-_9278321c-1c41-4e7f-0cf0-016a4210eacf-b337525d, #w-node-_06b5bfc2-953e-2454-46dd-e46913daa576-b337525d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_06b5bfc2-953e-2454-46dd-e46913daa57b-b337525d {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-_06b5bfc2-953e-2454-46dd-e46913daa57d-b337525d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-b7c31418-84f5-cdfb-e6d6-72783ed579e9-b337525d, #w-node-b7c31418-84f5-cdfb-e6d6-72783ed579ee-b337525d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_7fdff80b-31e5-44f0-7872-66b0b507f358-b3375258 {
    grid-row: 2 / 3;
    grid-column-end: 2;
  }

  #w-node-_348e46eb-4d83-edd7-3dac-a9228ac8f7d8-b3375258 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_83d4e963-75ee-01e2-99bb-c9d95492ea2a-b3375258 {
    grid-column: 1 / 3;
  }

  #w-node-_06b5bfc2-953e-2454-46dd-e46913daa57b-b337525d {
    grid-area: 2 / 1 / 3 / 3;
  }
}

@media screen and (max-width: 767px) {
  #w-node-b464e43d-c89b-cacb-94fe-4a1d5afc607e-5afc6079 {
    place-self: center;
  }

  #w-node-_06b5bfc2-953e-2454-46dd-e46913daa57b-b337525d {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_06b5bfc2-953e-2454-46dd-e46913daa57d-b337525d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-b464e43d-c89b-cacb-94fe-4a1d5afc607e-5afc6079, #w-node-fde35b6b-696e-c9ef-aa47-b6916d17ad35-5afc6079 {
    justify-self: start;
  }

  #w-node-_348e46eb-4d83-edd7-3dac-a9228ac8f7d8-b3375258 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_83d4e963-75ee-01e2-99bb-c9d95492ea2a-b3375258 {
    grid-column-end: 2;
  }

  #w-node-_06b5bfc2-953e-2454-46dd-e46913daa57d-b337525d {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


