html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

@font-face {
  font-family: "Open Sauce";
  src: url("/opensauce-medium.44f5cd74.woff2") format("woff2"), url("/opensauce-medium.44f5cd74.woff2") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sauce";
  src: url("/opensauce-regular.7ba35d01.woff2") format("woff2"), url("/opensauce-regular.7ba35d01.woff2") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
html {
  font-size: calc(100vw / 1440 * 10);
  overscroll-behavior: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  cursor: url("data:image/svg+xml,%3Csvg height='6' width='6' viewBox='0 0 8 8' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='4' cy='4' fill='%23eee' r='4'/%3E%3C/svg%3E") 3 3, auto;
}
@media (max-width: 550px) {
  html {
    font-size: calc(100vw / 550 * 10);
  }
}
@media (max-width: 375px) {
  html {
    font-size: calc(100vw / 375 * 10);
  }
}

body {
  font-family: "Open Sauce", arial, sans-serif;
  font-weight: 500;
  min-height: 100vh;
  font-size: 1.6rem;
  background: #ebe9e9;
  color: #151313;
}

.cursor {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: var(--width);
  height: var(--height);
  transform: translate(calc(var(--x) - var(--width) / 2), calc(var(--y) - var(--height) / 2));
  /* transition-duration: 125ms;
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  transition-property: width, height, transform; */
  transition: 150ms width cubic-bezier(0.39, 0.575, 0.565, 1), 150ms height cubic-bezier(0.39, 0.575, 0.565, 1), 150ms transform cubic-bezier(0.39, 0.575, 0.565, 1);
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}

@media (pointer: fine) {
  .cursor {
    display: block;
  }
}
.cursor::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius);
  border: 2px solid #ff2427;
  opacity: var(--scale);
  -webkit-transform: scale(var(--scale));
  transform: scale(var(--scale));
  transition: 300ms opacity cubic-bezier(0.39, 0.575, 0.565, 1), 300ms transform cubic-bezier(0.39, 0.575, 0.565, 1), 150ms border-radius cubic-bezier(0.39, 0.575, 0.565, 1);
}

.icon {
  width: 24px;
  height: 24px;
}
@media (max-width: 550px) {
  .icon {
    width: 16px;
    height: 16px;
  }
}

html:not(html:hover) .cursor::after {
  opacity: 0;
  transform: scale(0);
}

html.has-scroll-smooth {
  overflow: hidden;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100vh;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}

.c-scrollbar:hover {
  transform: scaleX(1.45);
}

.c-scrollbar:hover,
.has-scroll-scrolling .c-scrollbar,
.has-scroll-dragging .c-scrollbar {
  opacity: 1;
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: black;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: -webkit-grab;
  cursor: grab;
  display: none;
}

.has-scroll-dragging .c-scrollbar_thumb {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.showM {
  display: none;
}
@media (max-width: 550px) {
  .showM {
    display: flex;
  }
}

.showD {
  display: flex;
}
@media (max-width: 550px) {
  .showD {
    display: none;
  }
}

.overflow {
  overflow: hidden;
}

.home__hero .hero__title .bottom__left, .home__hero .hero__title__left, .home__hero .hero__title__right, .home__hero .hero__title__dash, .home__hero .hero__title h1.mobile {
  font-size: 16.8rem;
  font-family: "Bebas Neue", sans-serif;
  word-break: break-word;
}
@media (max-width: 550px) {
  .home__hero .hero__title .bottom__left, .home__hero .hero__title__left, .home__hero .hero__title__right, .home__hero .hero__title__dash, .home__hero .hero__title h1.mobile {
    font-size: 160px;
  }
}

.home__projects__project__title {
  font-size: 16rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: -0.025em;
}
@media (max-width: 550px) {
  .home__projects__project__title {
    font-size: 65px;
    word-break: break-word;
  }
}

@media (max-width: 550px) {
  .work-title {
    z-index: 2;
    padding: 15% 10%;
  }
}

.home__stack__paragraph .first-word, .home__content__title, .home__hero .hero .first-word, .home__hero .hero__paragraph .first-word, .home__nav, .home__projects__project__label {
  font-size: 12px;
  font-family: "Open Sauce", arial;
  line-height: 1.3;
}

.home__contact__desc, .home__stack, .home__hero .hero__title .bottom__right {
  font-family: "Open Sauce", arial;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .home__contact__desc, .home__stack, .home__hero .hero__title .bottom__right {
    font-size: 3rem;
  }
}
@media (max-width: 550px) {
  .home__contact__desc, .home__stack, .home__hero .hero__title .bottom__right {
    font-size: 16px;
  }
}

.home__contact__address .address, .home__contact__phone .phone, .home__contact__email .email, .home__content__desc .contact-scroll, .home__content__desc {
  font-family: "Open Sauce", arial;
  font-size: 2.8rem;
  line-height: 1.3;
  letter-spacing: -0.025em;
}
@media (max-width: 550px) {
  .home__contact__address .address, .home__contact__phone .phone, .home__contact__email .email, .home__content__desc .contact-scroll, .home__content__desc {
    font-size: 20px;
    padding: 5%;
  }
}

.home__footer__right a, .home__stack__paragraph a, .home__content__desc a {
  color: #151313;
  transition: color 0.3s;
}
@media (any-pointer: fine) {
  .home__footer__right a:hover, .home__stack__paragraph a:hover, .home__content__desc a:hover {
    color: #cb450c;
  }
}

.home__projects__project {
  color: #151313;
}
@media (max-width: 550px) {
  .home__projects__project {
    height: 45vh;
    color: #ebe9e9;
  }
}
@media (any-pointer: fine) {
  .home__projects__project:hover .label__inner p:last-of-type {
    color: #151313;
  }
}
.home__projects__project .project__link {
  text-align: right;
  padding-right: 5rem;
  padding-bottom: 3.1rem;
}
@media (min-width: 551px) {
  .home__projects__project .project__link {
    display: none;
  }
}
.home__projects__project .project__link .c-button .c-link__inner > span {
  margin-top: -4px;
  display: block;
}
.home__projects__project .project__link .share-icon {
  position: relative;
  top: 0.3rem;
}
.home__projects__project__label {
  line-height: 1.3;
  display: flex;
  justify-content: flex-end;
}
.home__projects__project__label {
  margin-top: 3.2rem;
  padding-right: 2.2rem;
}
.home__projects__project__label p {
  transition: color 0.3s;
}
@media (min-width: 769px) {
  .home__projects__project__label {
    padding-right: 17.2rem;
  }
}
.home__projects__project__label .label-1 {
  max-width: 84.3rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home__projects__project__label .label-1 h1 {
  font-size: 4em;
  font-weight: 900;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media (max-width: 550px) {
  .home__projects__project__label .label-1 h1 {
    font-size: 2em;
    color: #151313;
  }
}
@media (max-width: 380px) {
  .home__projects__project__label .label-1 h1 {
    font-size: 2em;
  }
}
.home__projects__project__link {
  pointer-events: none;
}
@media (any-pointer: fine) {
  .home__projects__project__link {
    pointer-events: auto;
  }
}
.home__projects__project__link.gradient .title__main {
  background: linear-gradient(90deg, rgba(233, 227, 198, 0.5) 0%, rgba(233, 198, 217, 0.5) 100%);
  background-size: 200% 100%;
  animation: textGradientAnim 5s ease infinite alternate;
  overflow: hidden;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background 0.3s;
}
.home__projects__project__link.gradient .title__main .slide-up::before {
  background: #cb450c;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes textGradientAnim {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.home__projects__project__link .title__main {
  position: relative;
}
@media (max-width: 550px) {
  .home__projects__project__link .title__main.right {
    text-align: right;
  }
}
.home__projects__project__link .title__main .slide-up {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 275ms ease;
}
@media (any-pointer: fine) {
  .home__projects__project__link .title__main .slide-up {
    display: inline-block;
  }
}
.home__projects__project__link .title__main .slide-up::before {
  display: inline-block;
  content: attr(data-content);
  color: #cb450c;
  transform: translateY(-100%);
  transition: transform 275ms ease;
}
@media (min-width: 769px) {
  .home__projects__project__link .title__main .slide-up::before {
    white-space: nowrap;
  }
}
.home__projects__project__link:hover .title__main .slide-up {
  transform: translateY(0);
}
.home__projects__project__link:hover .title__main .slide-up::before {
  transform: translateY(0);
}
.home__projects__project__title {
  line-height: 1;
  text-transform: uppercase;
  padding-top: 6.4rem;
  padding-bottom: 4.5rem;
}
@media (min-width: 769px) {
  .home__projects__project__title {
    white-space: nowrap;
  }
}
@media (max-width: 550px) {
  .home__projects__project__title {
    padding-top: 3.2rem;
    padding-bottom: 2.4rem;
    line-height: 0.9;
  }
}
.home__projects__project__title .inline-ovh {
  display: inline-flex;
  overflow: hidden;
}

.c-button {
  display: inline-block;
  background: transparent;
  color: #151313;
  font-size: 16px;
  text-transform: uppercase;
  padding: 5px 8px;
  border: 2px solid #151313;
  border-radius: 45px;
  cursor: pointer;
  transition: all 0.3s;
}
@media (any-pointer: fine) {
  .c-button:hover {
    border-color: red;
    color: #151313;
    background: red;
    font-weight: 500;
  }
}
.c-button .c-link {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.c-button .c-link__inner {
  display: flex;
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-right: 2px;
}
.c-button .c-link__inner > span {
  /* white-space: nowrap; */
}
.c-button .c-link__animated {
  /* white-space: nowrap; */
  position: absolute;
  top: 100%;
  display: none;
  font-family: "Open Sauce", arial;
}
@media (any-pointer: fine) {
  .c-button .c-link__animated {
    display: inline-block;
  }
}
@media (any-pointer: fine) {
  .c-button:hover .c-link__inner {
    transform: translateY(-100%);
  }
}

.c-infinite .c-link {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.c-infinite .c-link__inner {
  display: flex;
  transform: translateY(-100%);
  animation: infiniteArrow 1s infinite cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.c-infinite .c-link__inner > span {
  /* white-space: nowrap; */
}
.c-infinite .c-link__animated {
  /* white-space: nowrap; */
  position: absolute;
  top: 100%;
}
@keyframes infiniteArrow {
  100% {
    transform: translateY(0);
  }
}

/* COLOURS */
/* GLOBE */
.globe {
  position: absolute;
  width: 100vw;
  height: 90vh;
  left: 20%;
  top: 10vh;
}

.globe .globe-list {
  z-index: 10;
  position: absolute;
  left: 0;
  top: 0;
  list-style: none;
  display: none;
}

.globe .globe-list {
  opacity: 2;
  width: 80%;
  display: flex;
  position: absolute;
  top: 5em;
  /* margin: 5%; */
  padding: 5% 0;
  left: 35%;
  -webkit-transition: opacity 3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: opacity 3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -ms-transition: opacity 3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: opacity 3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.globe .globe-list span {
  margin: -5%;
  background: none;
  font-size: 2em;
}

.globe .globe-list.active {
  opacity: 1;
}

#value {
  opacity: 0;
  transform: translateY(90px);
}

.globe .globe-list > li {
  opacity: 0;
  position: absolute;
  font-size: 1.2em;
  overflow: hidden;
  margin: 4% -5%;
  display: flex;
  height: 10vh;
}
.globe .globe-list > li #excel {
  opacity: 0;
}
.globe .globe-list > li #inter {
  opacity: 0;
  margin: 10% -1% !important;
}
.globe .globe-list > li #customer-s {
  opacity: 0;
}
.globe .globe-list > li span {
  opacity: 0.4;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
.globe .globe-list > li h1 {
  transform: translateY(-20px);
}
.globe .globe-list > li:nth-child(1) {
  margin: 10% 7%;
}
.globe .globe-list > li:nth-child(2) {
  margin: 5% 35%;
}
.globe .globe-list > li:nth-last-child(1) {
  margin: 14% 15%;
}

.globe .globe-list > li.active {
  opacity: 1;
  margin-left: -12px;
  margin-top: -12px;
  width: 24px;
  height: 24px;
}

.globe .globe-list > li:before {
  content: "";
  opacity: 0.5;
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 20%;
  margin-left: -8px;
  margin-top: -8px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #d62e1e;
  -webkit-animation: 2s pulse infinite linear;
  -moz-animation: 2s pulse infinite linear;
  -ms-animation: 2s pulse infinite linear;
  -o-animation: 2s pulse infinite linear;
  animation: 2s pulse infinite linear;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
  }
}
@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(1);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    -moz-transform: scale(2);
  }
}
@-ms-keyframes pulse {
  0% {
    -ms-transform: scale(1);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    -ms-transform: scale(2);
  }
}
@-o-keyframes pulse {
  0% {
    -o-transform: scale(1);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    -o-transform: scale(2);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}
.globe .globe-list > li.active:before {
  margin-left: -12px;
  margin-top: -12px;
  width: 24px;
  height: 24px;
}

.globe .globe-list > li.active,
.globe .globe-list > li.active:before {
  background: #FFFFFF;
}

.globe .globe-list .text {
  position: absolute;
  opacity: 0.8;
  right: 21px;
  top: 50%;
  display: block;
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
  text-align: right;
  text-shadow: -1px -1px 0 #151313, 1px -1px 0 #151313, -1px 1px 0 #151313, 1px 1px 0 #151313;
  color: #FFFFFF;
  white-space: nowrap;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.globe .globe-list > li.active .text {
  opacity: 1;
  right: 29px;
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
}

.globe .globe-canvas {
  z-index: 1;
  position: absolute;
  left: 0%;
  top: 0;
}

.globe svg {
  height: 100%;
  width: 100%;
  opacity: 0.3;
  animation: rotation 10s linear infinite;
}

.svg-wrapper {
  opacity: 0;
  display: inline-block;
  position: absolute;
  width: 80vh;
  height: 80%;
  left: 0;
  right: 0;
  top: 10%;
  margin: auto;
  transform: scale(0.5);
  transition: opacity 1s ease-out 1.6s, transform 1s ease-out 1.6s;
}
.svg-wrapper.active {
  opacity: 1;
  transform: none;
}

@keyframes rotation {
  0% {
    transform: scaleX(-1) rotate(360deg);
  }
  100% {
    transform: scaleX(-1) rotate(0deg);
  }
}
.menu {
  width: 33px;
  height: 33px;
  padding: 5px;
  display: block;
  cursor: pointer;
  position: relative;
  float: right;
  right: 50px;
  z-index: 1;
}

.menu span {
  cursor: pointer;
  height: 2px;
  width: 33px;
  margin-bottom: 8px;
  background: #000;
  position: relative;
  right: 0;
  display: block;
  transform: rotate(0deg);
  transition: 0.7s ease;
}

.hidden {
  opacity: 0;
  transition-delay: 0.5s;
  pointer-events: none;
  cursor: default;
}

.visible {
  opacity: 1;
}

.menu.open span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
  transition: 0.7s ease;
  background: #fff;
}

.menu.open span:nth-child(2) {
  opacity: 0;
  right: 100px;
  background: #fff;
}

.menu.open span:nth-child(3) {
  top: -10px;
  transform: rotate(-135deg);
  transition: 0.7s ease;
  background: #fff;
}

#navigation {
  background: #64b5f6;
  font-family: "Merriweather", serif;
  color: #fff;
  font-weight: 400;
  font-size: 40px;
  width: 100vw;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
}

.nav {
  display: flex;
  justify-content: center;
}

.slideInLeft {
  animation-duration: 0.5s;
}

.slideOutLeft {
  animation-duration: 0.5s;
}

ul {
  list-style-type: none;
}

ul li a {
  font-family: "Merriweather", serif;
  color: #fff;
  text-decoration: none;
}

.home__contact__desc, .home__contact .line-wrapper, .home__content, .home__projects, .home__hero, .home__nav {
  padding-left: 4rem;
  padding-right: 4rem;
}
@media (max-width: 550px) {
  .home__contact__desc, .home__contact .line-wrapper, .home__content, .home__projects, .home__hero, .home__nav {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}

.home {
  padding: 2.4rem 0;
  visibility: hidden;
}
.home__nav {
  margin-bottom: 2.4rem;
  display: flex;
  justify-content: space-between;
  line-height: 1.4;
}
@media (max-width: 550px) {
  .home__nav .hide-mobile {
    display: none;
  }
}
@media (min-width: 551px) {
  .home__nav .hide-desktop {
    display: none;
  }
}
.home__nav .nav__button {
  flex-shrink: 0;
  flex-grow: 0;
}
.home__nav__left, .home__nav__right {
  text-transform: uppercase;
  justify-content: space-between;
}
@media (min-width: 551px) {
  .home__nav__left, .home__nav__right {
    display: flex;
  }
}
.home__nav__left {
  max-width: 100%;
  width: 100%;
  z-index: 4;
}
@media (max-width: 550px) {
  .home__nav__left {
    display: flex;
    max-width: unset;
  }
}
@media (max-width: 550px) {
  .home__nav__left .nav__logo {
    width: 70%;
  }
}
.home__nav__right {
  max-width: 325px;
  width: 100%;
}
@media (max-width: 550px) {
  .home__nav__right {
    max-width: 30%;
    width: 30%;
    margin-left: auto;
  }
  .home__nav__right br {
    display: none;
  }
}
.home__nav .nav__folio, .home__nav .nav__availability {
  color: #151313;
}
@media (max-width: 550px) {
  .home__nav .nav__folio, .home__nav .nav__availability {
    margin-bottom: 2.4rem;
  }
  .home__nav .nav__folio br, .home__nav .nav__availability br {
    display: none;
  }
}
.home__hero {
  margin-bottom: 9.6rem;
  height: 80vh;
}
@media (max-width: 550px) {
  .home__hero {
    margin-top: 20%;
  }
}
.home__hero__top {
  width: 100%;
  display: flex;
  padding: 2.5% 5%;
}
@media (max-width: 550px) {
  .home__hero__top {
    flex-direction: column;
  }
}
.home__hero__top__left {
  width: 30%;
  display: flex;
  position: relative;
  top: 4em;
  left: 2.5em;
}
@media (max-width: 550px) {
  .home__hero__top__left {
    width: 100%;
    left: 0;
  }
}
.home__hero__top__left .welcome {
  opacity: 0;
  transform: translateY(100px);
  transform-origin: bottom;
}
.home__hero__top__left .head-one {
  font-size: 7em;
  letter-spacing: -15px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(100px);
  transform-origin: bottom;
}
@media (max-width: 550px) {
  .home__hero__top__left .head-one {
    font-size: 6.5em;
    letter-spacing: -12.5px;
  }
}
@media (max-width: 380px) {
  .home__hero__top__left .head-one {
    font-size: 5.5em;
    letter-spacing: -14px;
  }
}
.home__hero__top__left .head-two {
  letter-spacing: -2.5px;
  opacity: 0;
  transform: translateY(100px);
  transform-origin: bottom;
}
@media (max-width: 550px) {
  .home__hero__top__left .head-two {
    letter-spacing: -3.5px;
  }
}
@media (max-width: 380px) {
  .home__hero__top__left .head-two {
    letter-spacing: -2.5px;
    font-size: 0.8em;
  }
}
.home__hero__top__left .head-third {
  width: 80%;
  margin: 5% 0;
  opacity: 0;
  letter-spacing: -0.1px;
  transform: translateY(100px);
  transform-origin: bottom;
}
.home__hero__top__left .head-third p {
  font-size: 0.7em;
}
@media (max-width: 550px) {
  .home__hero__top__left .head-third p {
    width: 100%;
    font-size: 1.14em;
  }
}
@media (max-width: 380px) {
  .home__hero__top__left .head-third p {
    font-size: 0.7em;
  }
}
.home__hero__top__right {
  width: 70%;
  display: flex;
}
@media (max-width: 550px) {
  .home__hero__top__right {
    width: 100%;
  }
}
.home__hero__bottom {
  width: 100%;
  display: flex;
  padding: 5%;
}
@media (max-width: 550px) {
  .home__hero__bottom {
    padding: 15% 2%;
    flex-direction: column;
  }
}
.home__hero__bottom__left {
  width: 40%;
  display: flex;
  padding: 0.5% 10.5% 0 3%;
  font-size: 0.7em;
}
@media (max-width: 550px) {
  .home__hero__bottom__left {
    width: 100%;
    font-size: 1.14em;
  }
}
@media (max-width: 380px) {
  .home__hero__bottom__left {
    font-size: 0.7em !important;
  }
}
.home__hero__bottom__right {
  width: 60%;
  padding: 0 0% 0 8%;
  position: relative;
  bottom: 0;
}
@media (max-width: 550px) {
  .home__hero__bottom__right {
    width: 100%;
    padding: 2.5%;
  }
}
.home__hero__bottom__right p {
  font-size: 0.8em !important;
  padding: 0 15%;
}
@media (max-width: 550px) {
  .home__hero__bottom__right p {
    font-size: 1.14em !important;
    padding: 0;
  }
}
@media (max-width: 380px) {
  .home__hero__bottom__right p {
    font-size: 0.8em;
  }
}
.home__hero .hero__title {
  line-height: 0.9;
  color: #151313;
}
@media (max-width: 550px) {
  .home__hero .hero__title h1.desktop {
    display: none;
  }
}
.home__hero .hero__title h1.mobile {
  letter-spacing: -0.05em;
  word-wrap: break-word;
}
@media (min-width: 551px) {
  .home__hero .hero__title h1.mobile {
    display: none;
  }
}
.home__hero .hero__title .hero__hover {
  transition: color 0.2s;
}
@media (any-pointer: fine) {
  .home__hero .hero__title .hero__hover:hover {
    color: #151313;
  }
}
.home__hero .hero__title__left, .home__hero .hero__title__right, .home__hero .hero__title__dash {
  display: inline-block;
  letter-spacing: -0.105em;
}
.home__hero .hero__title__dash {
  width: 5%;
  transform: scaleX(1.05);
  will-change: transform;
}
@media (max-width: 768px) {
  .home__hero .hero__title__dash.desktop {
    display: none;
  }
}
@media (min-width: 769px) {
  .home__hero .hero__title__dash.tablet {
    display: none;
  }
}
.home__hero .hero__title__top {
  display: flex;
  justify-content: space-between;
  padding-right: 3rem;
}
.home__hero .hero__title__top {
  width: 70%;
}
.home__hero .hero__title__bottom {
  width: 100%;
}
.home__hero .hero__title__bottom.overflow {
  display: inline-flex;
  width: 100%;
  overflow: hidden;
}
.home__hero .hero__title__bottom {
  justify-content: space-between;
}
@media (min-width: 769px) {
  .home__hero .hero__title__bottom {
    display: flex;
  }
}
.home__hero .hero__title .bottom__left {
  letter-spacing: -0.105em;
  flex-shrink: 0;
}
.home__hero .hero__title .bottom__right {
  position: relative;
  z-index: 1;
  max-width: 32.5rem;
  width: 100%;
  padding: 2rem 0 5rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .home__hero .hero__title .bottom__right {
    max-width: 55rem;
    padding-bottom: 0;
  }
}
@media (max-width: 550px) {
  .home__hero .hero__title .bottom__right {
    max-width: 255px;
    margin-left: auto;
  }
}
.home__hero .hero__paragraph {
  color: #151313;
  transform: translateY(70px);
  opacity: 0;
}
.home__hero .hero__paragraph span {
  text-transform: uppercase;
}
.home__hero .hero__paragraph .first-word {
  color: #d33a2b;
}
.home__hero .hero .first-word {
  color: #d33a2b;
}
.home__hero .hero__scroll {
  margin-top: auto;
  color: #151313;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 550px) {
  .home__hero .hero__scroll {
    margin-top: 20%;
  }
}
.home__projects .flex_D {
  display: flex;
}
@media (max-width: 550px) {
  .home__projects .flex_D {
    flex-direction: column;
  }
}
.home__projects .reveal {
  visibility: hidden;
  position: relative;
  width: 2em;
  height: 25vh;
  max-width: 2em;
  overflow: hidden;
  margin-left: 5%;
}
@media (max-width: 550px) {
  .home__projects .reveal {
    max-width: 100%;
    width: 100%;
    height: 30vh;
    bottom: 45%;
    margin-left: 0;
  }
}
.home__projects .project__img {
  width: 100%;
  background-size: cover;
  background-blend-mode: overlay;
  background: #241d1de3;
  transform-origin: left;
  height: 100%;
}
@media (max-width: 550px) {
  .home__projects .project__img {
    width: 100%;
  }
}
.home__projects__line {
  position: relative;
  display: inline-block;
  width: 100%;
  visibility: hidden;
}
.home__projects__line span {
  height: 2px;
  background: #151313;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: inline-block;
  transform-origin: left top;
}
.home__projects__line.right span {
  transform-origin: right top;
}
.home__content {
  padding-top: 24rem;
  padding-bottom: 24rem;
}
@media (max-width: 550px) {
  .home__content {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }
}
@media (min-width: 769px) {
  .home__content {
    text-align: center;
  }
}
.home__content__title {
  text-transform: uppercase;
  color: #151313;
  margin-bottom: 2.4rem;
}
.home__content__desc {
  max-width: 95rem;
  width: 100%;
}
@media (min-width: 769px) {
  .home__content__desc {
    margin: 0 auto;
  }
}
.home__content__desc .contact-scroll {
  color: #151313;
  transition: color 0.3s;
  background: transparent;
  border: 0;
  padding: 0;
  font-weight: 500;
  cursor: pointer;
}
@media (any-pointer: fine) {
  .home__content__desc .contact-scroll:hover {
    color: #cb450c;
  }
}
.home__stack {
  max-width: 104.4rem;
  margin-left: auto;
  padding-top: 16rem;
  padding-bottom: 24rem;
}
@media (max-width: 550px) {
  .home__stack {
    padding-top: 9.6rem;
    padding-bottom: 16rem;
  }
}
.home__stack__paragraph {
  color: #151313;
  max-width: 32.5rem;
}
@media (max-width: 768px) {
  .home__stack__paragraph {
    max-width: 55rem;
  }
}
@media (max-width: 550px) {
  .home__stack__paragraph {
    max-width: 35rem;
    margin-left: auto;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}
.home__stack__paragraph span,
.home__stack__paragraph a {
  color: #151313;
  text-transform: uppercase;
}
@media (min-width: 769px) {
  .home__contact {
    padding-top: 16rem;
  }
}
.home__contact__desc {
  margin: 0;
  margin-bottom: 6.4rem;
}
@media (min-width: 551px) {
  .home__contact__desc {
    max-width: 44rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
}
.home__contact__email {
  padding-top: 4.8rem;
  padding-bottom: 7.2rem;
  text-align: center;
}
@media (max-width: 550px) {
  .home__contact__email {
    max-width: 100%;
    padding: 3% 10%;
    width: 100%;
    text-align: left;
    margin-left: auto;
    word-break: break-word;
  }
}
.home__contact__email .email {
  background: transparent;
  border: 0;
  font-weight: 500;
  cursor: pointer;
  color: #151313;
  padding: 0;
  margin-bottom: 1.6rem;
}
@media (max-width: 768px) {
  .home__contact__email .email {
    text-align: left;
  }
}
@media (any-pointer: fine) {
  .home__contact__email .email:hover {
    color: red;
  }
}
.home__contact__email .email:hover + .to-copy {
  transform: translateY(0);
  opacity: 1;
}
.home__contact__phone {
  padding-top: 4.8rem;
  padding-bottom: 7.2rem;
  text-align: center;
}
@media (max-width: 550px) {
  .home__contact__phone {
    max-width: 100%;
    padding: 3% 10%;
    width: 100%;
    text-align: left;
    margin-left: auto;
    word-break: break-word;
  }
}
.home__contact__phone .phone {
  background: transparent;
  border: 0;
  font-weight: 500;
  cursor: pointer;
  color: #151313;
  padding: 0;
  margin-bottom: 1.6rem;
}
@media (max-width: 768px) {
  .home__contact__phone .phone {
    text-align: left;
  }
}
@media (any-pointer: fine) {
  .home__contact__phone .phone:hover {
    color: red;
  }
}
.home__contact__phone .phone:hover + .to-copy {
  transform: translateY(0);
  opacity: 1;
}
.home__contact__address {
  padding-top: 4.8rem;
  padding-bottom: 7.2rem;
  text-align: center;
}
@media (max-width: 550px) {
  .home__contact__address {
    max-width: 100%;
    padding: 3% 10%;
    width: 100%;
    text-align: left;
    margin-left: auto;
    word-break: break-word;
  }
}
.home__contact__address .address {
  background: transparent;
  border: 0;
  font-weight: 500;
  cursor: pointer;
  color: #151313;
  padding: 0;
  margin-bottom: 1.6rem;
}
@media (max-width: 768px) {
  .home__contact__address .address {
    text-align: left;
  }
}
@media (any-pointer: fine) {
  .home__contact__address .address:hover {
    color: red;
  }
}
.home__contact__address .address:hover + .to-copy {
  transform: translateY(0);
  opacity: 1;
}
.home__footer {
  justify-content: center;
  position: relative;
  padding-bottom: 4rem;
  font-weight: 400;
  font-size: 16px;
}
@media (min-width: 769px) {
  .home__footer {
    display: flex;
  }
}
@media (max-width: 768px) {
  .home__footer {
    margin-left: auto;
    max-width: 40rem;
    width: 100%;
  }
}
@media (max-width: 550px) {
  .home__footer {
    max-width: 255px;
    width: 100%;
  }
}
.home__footer__left {
  display: flex;
  font-family: "Open Sauce", arial;
}
@media (min-width: 769px) {
  .home__footer__left {
    left: 2.4rem;
    position: absolute;
    right: 0;
    top: 1rem;
  }
}
.home__footer__left .place {
  color: #151313;
  margin-right: 1.4rem;
}
.home__footer__left .time {
  position: relative;
}
.home__footer__left .time::before {
  content: "";
  position: absolute;
  background: #151313;
  height: 100%;
  left: 0;
  width: 6px;
}
@media (max-width: 768px) {
  .home__footer__left .time {
    margin-bottom: 2.4rem;
  }
}
@media (min-width: 769px) {
  .home__footer__right {
    right: 2.4rem;
    position: absolute;
    top: 1rem;
  }
}
.home__footer__center .footer__links {
  align-items: center;
}
@media (min-width: 769px) {
  .home__footer__center .footer__links {
    display: flex;
  }
}
@media (max-width: 768px) {
  .home__footer__center .footer__links {
    margin-bottom: 4.8rem;
  }
}
.home__footer__center .footer__links .link__flex {
  display: flex;
  margin-left: auto;
}
@media (max-width: 768px) {
  .home__footer__center .footer__links .link__flex {
    max-width: 40rem;
    width: 100%;
  }
}
@media (max-width: 550px) {
  .home__footer__center .footer__links .link__flex {
    max-width: 255px;
    width: 100%;
  }
}
.home__footer__center .footer__links .link__flex__inner {
  display: flex;
}
@media (max-width: 768px) {
  .home__footer__center .footer__links .link__flex__inner .c-button:first-of-type {
    margin-right: 0.8rem;
  }
}
@media (max-width: 768px) {
  .home__footer__center .footer__links .link__flex__inner.second .c-button:first-of-type {
    margin-right: 0;
  }
  .home__footer__center .footer__links .link__flex__inner.second .c-button:last-of-type {
    margin-right: 0.8rem;
  }
}
@media (min-width: 769px) {
  .home__footer__center .footer__links .link__flex__inner:last-of-type {
    margin-left: 0.8rem;
  }
}
@media (max-width: 768px) {
  .home__footer__center .footer__links .link__flex__inner.second {
    margin-top: 1.6rem;
    flex-direction: row-reverse;
  }
}
@media (min-width: 769px) {
  .home__footer__center .footer__links .c-button:not(:last-of-type) {
    margin-right: 0.8rem;
  }
}

/*# sourceMappingURL=/scss.6b84482b.css.map */