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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

textarea {
  resize: vertical;
}

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

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #02040F;
  color: #FFFBFF;
}

@font-face {
  font-family: Sen;
  font-weight: normal;
  src: url("/fonts/Sen-Regular.ttf");
}
@font-face {
  font-family: Sen;
  font-weight: bold;
  src: url("/fonts/Sen-Bold.ttf");
}
@font-face {
  font-family: AnonymousPro;
  font-weight: normal;
  src: url("/fonts/AnonymousPro-Regular.ttf");
}
@font-face {
  font-family: AnonymousPro;
  font-weight: bold;
  src: url("/fonts/AnonymousPro-Bold.ttf");
}
@font-face {
  font-family: SourceCodePro;
  font-weight: normal;
  src: url("/fonts/SourceCodePro-Regular.ttf");
}
@font-face {
  font-family: SourceCodePro;
  font-weight: bold;
  src: url("/fonts/SourceCodePro-Bold.ttf");
}
@font-face {
  font-family: MarckScript;
  font-weight: normal;
  src: url("/fonts/MarckScript-Regular.ttf");
}
@font-face {
  font-family: CourierPrime;
  font-weight: normal;
  src: url("/fonts/CourierPrime-Regular.ttf");
}
@font-face {
  font-family: Spectral;
  font-weight: normal;
  src: url("/fonts/Spectral-Regular.ttf");
}
@font-face {
  font-family: Inter;
  font-weight: normal;
  src: url("/fonts/Inter-Regular.ttf");
}
@font-face {
  font-family: Inter;
  font-weight: bold;
  src: url("/fonts/Inter-Bold.ttf");
}
.anim-stickyNavbar-base {
  transition: all 0.2s ease;
  transform: translateY(-50px);
}

.anim-stickyNavbar-active {
  transform: translateY(0px);
}

.anim-appearUp-base {
  transition: all 0.4s ease;
  transform: translateY(5px);
  opacity: 0;
}

.anim-appearUp-active {
  transform: translateY(0px);
  opacity: 1;
}

.anim-slowFadeIn-base {
  transition: all 1s ease;
  opacity: 0;
  filter: blur(5px);
}

.anim-slowFadeIn-active {
  opacity: 1;
  filter: blur(0px);
}

.anim-fadeIn-base {
  transition: all 0.3s ease;
  opacity: 0;
}

.anim-fadeIn-active {
  opacity: 1;
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

.delay-4 {
  transition-delay: 0.8s;
}

.navbar {
  z-index: 1;
  position: fixed;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  background-color: #02040F;
}
@media (max-width: 800px) {
  .navbar {
    display: none;
  }
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  width: 600px;
}
.navbar .container .block-left,
.navbar .container .block-right {
  display: flex;
  align-items: center;
}
.navbar .container .block-left .logo {
  display: block;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .container .block-left .logo:hover {
  transform: rotate(10deg) scale(1.1);
}
.navbar .container .block-left .logo {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  background-image: url("/images/logo.svg");
}
.navbar .container .block-right nav {
  display: flex;
  gap: 30px;
}
.navbar .container .block-right nav a {
  display: block;
  cursor: pointer;
  transition: all 0.2s ease;
}
.navbar .container .block-right nav a:hover {
  color: #fff !important;
}
.navbar .container .block-right nav a {
  font-family: "Sen", sans-serif;
  font-size: 18px;
  color: #655D69;
}
.navbar .container .block-right nav a.highlight {
  color: #B20B26;
}

.mobile-navbar {
  display: none;
}
@media (max-width: 800px) {
  .mobile-navbar {
    display: flex;
  }
}
.mobile-navbar {
  align-items: center;
  z-index: 2;
  position: sticky;
  top: 20px;
}
.mobile-navbar.minustop {
  top: 0px;
}
.mobile-navbar {
  width: 100%;
  height: 50px;
  background-color: #02040F;
  transition: all 0.2s ease;
}
.mobile-navbar.scrolled {
  top: 0px;
}
.mobile-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  width: 100%;
}
.mobile-navbar .container .block-left,
.mobile-navbar .container .block-right {
  display: flex;
  align-items: center;
}
.mobile-navbar .container .block-left .logo {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("/images/logo.svg");
}
.mobile-navbar .container .block-right .menu {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  background-image: url("/images/menu.svg");
}

.mobile-menu-overlay {
  z-index: 3;
  position: fixed;
  left: 0;
  top: 0;
  transform: translateX(100%);
  transition: all 0.2s ease;
}
.mobile-menu-overlay.active {
  transform: translateX(0px);
}
.mobile-menu-overlay {
  width: 100%;
  height: 100vh;
  background-color: #02040F;
}
.mobile-menu-overlay .bg-art {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  position: absolute;
  top: 100px;
  right: -100px;
  transform: rotate(90deg);
  width: 650px;
  height: 200px;
  background-image: url("/images/brush_stroke.png");
}
.mobile-menu-overlay .top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px;
}
.mobile-menu-overlay .top-bar .logo {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("/images/logo.svg");
}
.mobile-menu-overlay .top-bar .back {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  background-image: url("/images/back.svg");
}
.mobile-menu-overlay .mobile-nav-list {
  position: absolute;
  right: 50px;
  bottom: 100px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  font-family: "Sen", sans-serif;
  font-size: 32px;
}
.mobile-menu-overlay .mobile-nav-list a.art {
  font-family: "MarckScript", serif;
  font-size: 38px;
  color: #B20B26;
}
.mobile-menu-overlay .mobile-nav-list a.highlight {
  color: #E87B1C;
}

.header-nav {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
}
@media (max-width: 800px) {
  .header-nav {
    display: none;
  }
}
.header-nav a {
  display: block;
  cursor: pointer;
  transition: all 0.2s ease;
}
.header-nav a:hover {
  transform: translateY(-1px);
  color: #fff !important;
}
.header-nav a {
  font-family: "Sen", sans-serif;
  font-size: 18px;
  color: #655D69;
}
.header-nav a.highlight {
  color: #B20B26;
}

.footer-nav {
  display: flex;
  gap: 30px;
}
@media (max-width: 500px) {
  .footer-nav {
    display: none;
  }
}
.footer-nav a {
  display: block;
  cursor: pointer;
  transition: all 0.2s ease;
}
.footer-nav a:hover {
  transform: translateY(-1px);
  color: #fff !important;
}
.footer-nav a {
  font-family: "Sen", sans-serif;
  font-size: 18px;
  color: #4E4752;
}

.logo-art-container {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}
.logo-art-container .logo {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 300px;
  height: 300px;
  background-image: url("/images/art_logo.svg");
}
@media (max-width: 500px) {
  .logo-art-container .logo {
    width: 60vw;
    height: 60vw;
  }
}
.logo-art-container .bg-art {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1080px;
  background-image: url("/images/paint_splash.png");
}
@media (max-width: 1200px) {
  .logo-art-container .bg-art {
    background-size: cover;
  }
}
@media (max-width: 500px) {
  .logo-art-container .bg-art {
    height: 900px;
  }
}

.reddot {
  font-family: "Sen", sans-serif;
  color: #B20B26;
}

.hero-home {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.hero-home .bg-art {
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
}
@media (max-width: 800px) {
  .hero-home .bg-art {
    display: none;
  }
}
.hero-home .bg-art .art {
  width: 750px;
  height: 220px;
  transform: rotate(144deg);
  background-image: url("/images/brush_stroke.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.hero-home .content-container {
  display: flex;
  gap: 45px;
  align-items: center;
}
@media (max-width: 800px) {
  .hero-home .content-container {
    flex-direction: column;
    margin-bottom: 100px;
  }
}
.hero-home .content-container .mobile-header {
  display: none;
}
@media (max-width: 800px) {
  .hero-home .content-container .mobile-header {
    display: flex;
  }
}
.hero-home .content-container .mobile-header {
  flex-direction: column;
  align-items: center;
}
.hero-home .content-container .mobile-header .cd {
  font-family: "MarckScript", serif;
  font-size: 46px;
}
.hero-home .content-container .mobile-header .sc {
  margin-top: -30px;
  font-family: "CourierPrime", monospace;
  font-size: 40px;
}
.hero-home .content-container .mobile-header .reddot {
  font-size: 50px;
}
.hero-home .content-container .logo-art {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  margin-top: 20px;
}
@media (max-width: 800px) {
  .hero-home .content-container .logo-art {
    margin-top: 0px;
  }
}
.hero-home .content-container .logo-art {
  width: 200px;
  height: 200px;
  background-image: url("/images/art_logo.svg");
}
@media (max-width: 800px) {
  .hero-home .content-container .content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.hero-home .content-container .content .header {
  margin-bottom: 14px;
}
@media (max-width: 800px) {
  .hero-home .content-container .content .header {
    display: none;
  }
}
.hero-home .content-container .content .header .cd {
  font-family: "MarckScript", serif;
  font-size: 58px;
}
.hero-home .content-container .content .header .sc {
  margin-top: -26px;
  font-family: "CourierPrime", monospace;
  font-size: 51px;
}
.hero-home .content-container .content .header .reddot {
  font-size: 50px;
}
.hero-home .content-container .content .subheader {
  margin-bottom: 25px;
  max-width: 195px;
}
.hero-home .content-container .content .subheader p {
  line-height: 22px;
  font-family: "Sen", sans-serif;
  font-size: 18px;
}
.hero-home .content-container .content .subheader p:last-child {
  text-align: right;
}
@media (max-width: 800px) {
  .hero-home .content-container .content .subheader p {
    text-align: center;
  }
  .hero-home .content-container .content .subheader p:last-child {
    text-align: center;
  }
}
.hero-home .content-container .content .links {
  display: flex;
  gap: 25px;
}
.hero-home .content-container .content .links a {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: bold;
  display: block;
  cursor: pointer;
  transition: all 0.2s ease;
}
.hero-home .content-container .content .links a:hover {
  transform: translateY(-1px);
  color: #fff !important;
}
.hero-home .content-container .content .links a.work {
  color: #E87B1C;
}
.hero-home .content-container .content .links a.contact {
  color: #B20B26;
}

.hero-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.hero-about .logo-art-container {
  margin-top: 50px;
  margin-bottom: 80px;
}
@media (max-width: 800px) {
  .hero-about .logo-art-container {
    margin-top: -50px;
  }
}
@media (max-width: 800px) {
  .hero-about .logo-art-container {
    margin-bottom: 50px;
  }
}
.hero-about .content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-about .content-container h1 {
  margin-bottom: -40px;
  margin-left: 8px;
  font-family: "CourierPrime", monospace;
  font-size: 50px;
}
.hero-about .content-container .lines-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.hero-about .content-container .lines-container .line-1,
.hero-about .content-container .lines-container .line-2 {
  font-family: "Sen", sans-serif;
  font-size: 18px;
}
.hero-about .content-container .lines-container .line-1 {
  display: flex;
  align-items: flex-end;
}
.hero-about .content-container .lines-container .line-1 .decorative-letter {
  font-family: "MarckScript", serif;
  font-size: 46px;
}
.hero-about .content-container .lines-container .line-1 .text {
  margin-bottom: 14px;
}
.hero-about .content-container .lines-container .line-2 {
  margin-top: -16px;
}

.hero-blog {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.hero-blog .logo-art-container {
  margin-top: 50px;
  margin-bottom: 80px;
}
@media (max-width: 800px) {
  .hero-blog .logo-art-container {
    margin-top: -50px;
  }
}
@media (max-width: 800px) {
  .hero-blog .logo-art-container {
    margin-bottom: 50px;
  }
}
.hero-blog .content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-blog .content-container h1 {
  margin-left: 10px;
  margin-bottom: -24px;
  font-family: Spectral, serif;
  font-size: 50px;
}
.hero-blog .content-container .lines-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.hero-blog .content-container .lines-container .line-1,
.hero-blog .content-container .lines-container .line-2 {
  font-family: "Sen", sans-serif;
  font-size: 18px;
}
.hero-blog .content-container .lines-container .line-1 {
  display: flex;
  align-items: flex-end;
}
.hero-blog .content-container .lines-container .line-1 .decorative-letter {
  font-family: "MarckScript", serif;
  font-size: 46px;
}
.hero-blog .content-container .lines-container .line-1 .text {
  margin-bottom: 18px;
  margin-left: -2px;
}
.hero-blog .content-container .lines-container .line-2 {
  margin-top: -20px;
}

.section-services {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding: 100px 0;
  background-image: url("/images/services_bg.png");
}
@media (max-width: 800px) {
  .section-services {
    gap: 50px;
    padding: 100px 0;
  }
}
.section-services .art-gradient {
  z-index: -1;
  position: absolute;
  height: 300px;
  width: 100%;
}
@media (max-width: 800px) {
  .section-services .art-gradient {
    height: 150px;
  }
}
.section-services .art-gradient.top {
  top: 0px;
  background: linear-gradient(180deg, #02040F 0%, rgba(2, 4, 15, 0.7803921569) 43%, rgba(2, 4, 15, 0) 100%);
}
.section-services .art-gradient.btm {
  bottom: 0px;
  background: linear-gradient(0deg, #02040F 0%, rgba(2, 4, 15, 0.7803921569) 43%, rgba(2, 4, 15, 0) 100%);
}
.section-services .block-container {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.section-services .block-container.reverse {
  flex-direction: row-reverse;
  gap: 10px;
}
@media (max-width: 800px) {
  .section-services .block-container.reverse {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
}
.section-services .block-container.center {
  align-items: center;
}
@media (max-width: 800px) {
  .section-services .block-container.center {
    flex-direction: column;
    gap: 14px;
  }
}
.section-services .block-container .title {
  position: relative;
}
.section-services .block-container .title .title-art-right,
.section-services .block-container .title .h1-art {
  writing-mode: vertical-rl;
}
@media (max-width: 800px) {
  .section-services .block-container .title .title-art-right,
  .section-services .block-container .title .h1-art {
    writing-mode: horizontal-tb;
  }
}
.section-services .block-container .title .title-art-right,
.section-services .block-container .title .title-art-btm,
.section-services .block-container .title h1 {
  font-weight: bold;
  font-size: 100px;
  font-family: "Sen", sans-serif;
}
@media (max-width: 800px) {
  .section-services .block-container .title .title-art-right,
  .section-services .block-container .title .title-art-btm,
  .section-services .block-container .title h1 {
    font-size: 78px;
  }
}
@media (max-width: 500px) {
  .section-services .block-container .title .title-art-right,
  .section-services .block-container .title .title-art-btm,
  .section-services .block-container .title h1 {
    font-size: 60px;
  }
}
.section-services .block-container .title .title-art-right {
  position: absolute;
  top: 200px;
  left: 100px;
  transform: scale(-1, 1);
  opacity: 0.2;
}
@media (max-width: 800px) {
  .section-services .block-container .title .title-art-right {
    display: none;
  }
}
.section-services .block-container .title .title-art-btm {
  position: absolute;
  bottom: -120px;
  left: -120px;
  transform: scale(-1, -1);
  opacity: 0.2;
}
@media (max-width: 800px) {
  .section-services .block-container .title .title-art-btm {
    display: none;
  }
}
.section-services .block-container .content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.section-services .block-container .content h2 {
  margin-bottom: 10px;
  font-size: 24px;
  font-family: "Sen", sans-serif;
}
.section-services .block-container .content p {
  max-width: 300px;
  line-height: 22px;
  font-size: 18px;
  font-family: "Sen", sans-serif;
  color: #F1EEF2;
}
.section-services .block-container .content .solutions {
  align-self: flex-end;
  max-width: 260px;
}
@media (max-width: 800px) {
  .section-services .block-container .content .solutions {
    align-self: center;
  }
}
.section-services .block-container .content .feature {
  max-width: 300px;
  text-align: right;
}

.section-work {
  padding: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}
.section-work h1 {
  text-align: center;
  font-size: 70px;
  font-family: "MarckScript", serif;
}
@media (max-width: 800px) {
  .section-work h1 {
    font-size: 60px;
    line-height: 56px;
  }
}
@media (max-width: 500px) {
  .section-work h1 {
    font-size: 50px;
    line-height: 48px;
  }
}
.section-work h1.sw {
  margin-bottom: 80px;
}
@media (max-width: 800px) {
  .section-work h1.sw {
    margin-bottom: 60px;
    margin-top: -80px;
  }
}
@media (max-width: 500px) {
  .section-work h1.sw {
    margin-bottom: 50px;
    margin-top: -100px;
  }
}
.section-work h1.tw {
  margin-bottom: 0px;
}
@media (max-width: 800px) {
  .section-work h1.tw {
    margin-bottom: 14px;
  }
}
.section-work h2 {
  margin-bottom: 12px;
  line-height: 28px;
  font-size: 24px;
  font-family: "Sen", sans-serif;
}
.section-work p {
  max-width: 300px;
  line-height: 22px;
  font-size: 18px;
  font-family: "Sen", sans-serif;
  color: #F1EEF2;
}
.section-work p.tw-note {
  margin-bottom: 70px;
  text-align: right;
}
@media (max-width: 500px) {
  .section-work p.tw-note {
    width: 100vw;
    padding: 0 30px;
    box-sizing: border-box;
    text-align: left;
  }
}
.section-work .featured {
  position: relative;
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 500px) {
  .section-work .featured {
    padding: 0 30px;
    margin-bottom: 70px;
    width: 100vw;
  }
}
.section-work .featured .desktop {
  position: relative;
}
.section-work .featured .desktop::before {
  content: "";
  position: absolute;
  inset: 5%;
  background: rgba(0, 150, 170, 0.12);
  filter: blur(60px);
  z-index: -1;
}
.section-work .featured .desktop {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 40px 80px rgba(0, 0, 0, 0.6);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  margin-bottom: 30px;
  width: 420px;
  height: 260px;
  background-image: url(/images/projects/ald.png);
  border: 5px solid #000;
  border-radius: 10px;
}
@media (max-width: 500px) {
  .section-work .featured .desktop {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .section-work .featured .desktop {
    height: 200px;
  }
}
.section-work .featured .desktop .bg-art {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  position: absolute;
  top: 60px;
  left: -200px;
  width: 750px;
  height: 220px;
  transform: rotate(144deg);
  background-image: url("/images/brush_stroke.png");
}
.section-work .landing {
  display: flex;
  align-items: center;
  gap: 215px;
}
.section-work .landing.reverse {
  flex-direction: row-reverse;
}
.section-work .landing {
  margin-bottom: 100px;
}
@media (max-width: 1200px) {
  .section-work .landing {
    flex-direction: column;
    gap: 30px;
  }
  .section-work .landing.reverse {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .section-work .landing {
    width: 100vw;
    padding: 0 30px;
  }
}
@media (max-width: 500px) {
  .section-work .landing {
    margin-bottom: 70px;
  }
}
.section-work .landing .desktop,
.section-work .landing .tablet,
.section-work .landing .mobile {
  position: relative;
}
.section-work .landing .desktop::before,
.section-work .landing .tablet::before,
.section-work .landing .mobile::before {
  content: "";
  position: absolute;
  inset: 5%;
  background: rgba(0, 150, 170, 0.12);
  filter: blur(60px);
  z-index: -1;
}
.section-work .landing .desktop,
.section-work .landing .tablet,
.section-work .landing .mobile {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 40px 80px rgba(0, 0, 0, 0.6);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  border: 5px solid #000;
  border-radius: 10px;
}
.section-work .landing .desktop {
  position: relative;
  width: 420px;
  height: 490px;
}
.section-work .landing .desktop .tablet {
  position: absolute;
  top: 195px;
  right: -115px;
  width: 185px;
  height: 265px;
}
.section-work .landing .desktop .mobile {
  position: absolute;
  top: 80px;
  left: -75px;
  width: 95px;
  height: 205px;
}
.section-work .landing .desktop.reverse .tablet {
  right: unset;
  left: -115px;
}
.section-work .landing .desktop.reverse .mobile {
  left: unset;
  right: -75px;
}
@media (max-width: 800px) {
  .section-work .landing .desktop .tablet {
    top: 200px;
    right: -50px;
  }
  .section-work .landing .desktop .mobile {
    top: 150px;
    left: -50px;
  }
  .section-work .landing .desktop.reverse .tablet {
    right: -50px;
    left: inherit;
  }
  .section-work .landing .desktop.reverse .mobile {
    left: -50px;
    right: inherit;
  }
}
@media (max-width: 600px) {
  .section-work .landing .desktop {
    width: 100%;
  }
  .section-work .landing .desktop .tablet {
    right: 20px;
  }
  .section-work .landing .desktop .mobile {
    left: 20px;
  }
  .section-work .landing .desktop.reverse .tablet {
    right: 20px;
  }
  .section-work .landing .desktop.reverse .mobile {
    left: 20px;
  }
}
@media (max-width: 500px) {
  .section-work .landing .desktop {
    height: 350px;
  }
  .section-work .landing .desktop .tablet {
    display: none;
  }
  .section-work .landing .desktop .mobile {
    top: 100px;
    left: unset;
    right: 20px;
  }
  .section-work .landing .desktop.reverse .tablet {
    display: none;
  }
  .section-work .landing .desktop.reverse .mobile {
    top: 100px;
    left: unset;
    right: 20px;
  }
}
.section-work .landing.artgallery .desktop {
  background-image: url(/images/projects/landing_artgallery_desktop.png);
}
.section-work .landing.artgallery .desktop .tablet {
  background-image: url(/images/projects/landing_artgallery_tablet.png);
}
.section-work .landing.artgallery .desktop .mobile {
  background-image: url(/images/projects/landing_artgallery_mobile.png);
}
.section-work .landing.travelagency .desktop {
  background-image: url(/images/projects/landing_travelagency_desktop.png);
}
.section-work .landing.travelagency .desktop .tablet {
  background-image: url(/images/projects/landing_travelagency_tablet.png);
}
.section-work .landing.travelagency .desktop .mobile {
  background-image: url(/images/projects/landing_travelagency_mobile.png);
}
.section-work .landing.bakery .desktop {
  background-image: url(/images/projects/landing_bakery_desktop.png);
}
.section-work .landing.bakery .desktop .tablet {
  background-image: url(/images/projects/landing_bakery_tablet.png);
}
.section-work .landing.bakery .desktop .mobile {
  background-image: url(/images/projects/landing_bakery_mobile.png);
}
.section-work .landing .content.reverse {
  text-align: right;
}
@media (max-width: 1200px) {
  .section-work .landing .content.reverse {
    text-align: left;
  }
}
.section-work .project {
  display: flex;
  align-items: center;
  gap: 70px;
}
.section-work .project:not(:last-child) {
  margin-bottom: 70px;
}
.section-work .project.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 900px) {
  .section-work .project {
    flex-direction: column;
    gap: 30px;
  }
  .section-work .project.reverse {
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  .section-work .project {
    width: 100vw;
    padding: 0 30px;
    box-sizing: border-box;
  }
}
.section-work .project .thumbnail {
  position: relative;
}
.section-work .project .thumbnail::before {
  content: "";
  position: absolute;
  inset: 5%;
  background: rgba(0, 150, 170, 0.12);
  filter: blur(60px);
  z-index: -1;
}
.section-work .project .thumbnail {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 40px 80px rgba(0, 0, 0, 0.6);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 400px;
  height: 260px;
  border: 5px solid #000;
  border-radius: 10px;
}
@media (max-width: 500px) {
  .section-work .project .thumbnail {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .section-work .project .thumbnail {
    height: 210px;
  }
}
.section-work .project .thumbnail.flatspikes {
  background-image: url("/images/projects/flatspikes.jpg");
}
.section-work .project .thumbnail.hastenote {
  background-image: url("/images/projects/hastenote.jpg");
}
.section-work .project .thumbnail.deltaweather {
  background-image: url("/images/projects/deltaweather.jpg");
}
.section-work .project .thumbnail.sge {
  background-image: url("/images/projects/sge.jpg");
}
.section-work .project .content.reverse {
  text-align: right;
}
@media (max-width: 900px) {
  .section-work .project .content.reverse {
    text-align: left;
  }
}
.section-work .project .content h2 {
  margin-bottom: 12px;
}
.section-work .project .content p {
  margin-bottom: 15px;
}
.section-work .project .content a {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: bold;
  display: block;
  cursor: pointer;
  transition: all 0.2s ease;
}
.section-work .project .content a:hover {
  transform: translateY(-1px);
  color: #fff !important;
}
.section-work .project .content a {
  color: #B20B26;
}

.section-process {
  margin-bottom: 100px;
}
.section-process h1 {
  font-weight: bold;
  font-size: 100px;
  font-family: "Sen", sans-serif;
}
@media (max-width: 800px) {
  .section-process h1 {
    font-size: 78px;
  }
}
@media (max-width: 500px) {
  .section-process h1 {
    font-size: 60px;
  }
}
.section-process h1 {
  margin-bottom: 40px;
  text-align: center;
}
.section-process .content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 70px;
  padding: 0 30px;
}
.section-process .content h2 {
  margin-bottom: 10px;
  font-size: 24px;
  font-family: "Sen", sans-serif;
}
.section-process .content p {
  max-width: 300px;
  line-height: 22px;
  font-size: 18px;
  font-family: "Sen", sans-serif;
  text-align: right;
}

.section-about {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 100px 0;
  padding-bottom: 150px;
}
@media (max-width: 700px) {
  .section-about {
    flex-direction: column;
    gap: 20px;
    padding: 100px 30px;
  }
}
.section-about .portrait-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.section-about .portrait-container .bg-art {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  position: absolute;
  top: -80px;
  left: -140px;
  width: 550px;
  height: 470px;
  background-image: url("/images/paint_spread.png");
}
@media (max-width: 800px) {
  .section-about .portrait-container .bg-art {
    display: none;
  }
}
.section-about .portrait-container .portrait {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 40px 80px rgba(0, 0, 0, 0.6);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 200px;
  height: 240px;
  background-image: url("/images/portrait.png");
  border-radius: 10px;
}
.section-about .portrait-container .links {
  display: flex;
  gap: 20px;
}
.section-about .portrait-container .links a {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  cursor: pointer;
  transition: all 0.3s ease;
}
.section-about .portrait-container .links a:hover {
  transform: translateY(-2px) rotate(10deg);
}
.section-about .portrait-container .links a {
  width: 24px;
  height: 24px;
}
.section-about .portrait-container .links a.gitlab {
  background-image: url("/images/gitlab.png");
}
.section-about .portrait-container .links a.linkedin {
  background-image: url("/images/linkedin.png");
}
.section-about .portrait-container .links a.x {
  background-image: url("/images/x.png");
}
.section-about .content-container p {
  max-width: 300px;
  line-height: 22px;
  font-size: 18px;
  font-family: "Sen", sans-serif;
  margin-bottom: 15px;
}
.section-about .content-container p:last-child {
  margin-bottom: 20px;
}
.section-about .content-container .links {
  display: flex;
  gap: 25px;
}
.section-about .content-container .links a {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: bold;
  display: block;
  cursor: pointer;
  transition: all 0.2s ease;
}
.section-about .content-container .links a:hover {
  transform: translateY(-1px);
  color: #fff !important;
}
.section-about .content-container .links a.col-faded {
  color: #d8d9e2;
}
.section-about .content-container .links a.col-prim {
  color: #B20B26;
}
.section-about .content-container .links a.col-acc {
  color: #E87B1C;
}

.section-blog {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
  padding: 0 30px;
}
.section-blog .article-list-cc {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.section-blog .article-list-cc .section-preview-card {
  max-width: 460px;
  transition: all 0.2s ease;
}
.section-blog .article-list-cc .section-preview-card:hover {
  transform: scale(1.05) translateY(-5px);
}
.section-blog .article-list-cc .section-preview-card .preview-card .title {
  margin-bottom: 20px;
  line-height: 34px;
  font-family: "Sen", sans-serif;
  font-size: 18px;
}
.section-blog .article-list-cc .section-preview-card .preview-card .summary {
  margin-bottom: 20px;
  line-height: 18px;
  font-family: "CourierPrime", monospace;
  font-size: 16px;
  color: #F1EEF2;
}
.section-blog .article-list-cc .section-preview-card .preview-card .status {
  font-family: "CourierPrime", monospace;
  font-size: 14px;
  color: #655D69;
}

pre code.hljs {
  display: block;
  overflow-x: auto;
  padding: 1em;
}

code.hljs {
  padding: 3px 5px;
}

/*!
  Theme: Grayscale Dark
  Author: Alexandre Gavioli (https://github.com/Alexx2/)
  License: ~ MIT (or more permissive) [via base16-schemes-source]
  Maintainer: @highlightjs/core-team
  Version: 2021.09.0
*/
/*
  WARNING: DO NOT EDIT THIS FILE DIRECTLY.

  This theme file was auto-generated from the Base16 scheme grayscale-dark
  by the Highlight.js Base16 template builder.

  - https://github.com/highlightjs/base16-highlightjs
*/
/*
base00  #101010  Default Background
base01  #252525  Lighter Background (Used for status bars, line number and folding marks)
base02  #464646  Selection Background
base03  #525252  Comments, Invisibles, Line Highlighting
base04  #ababab  Dark Foreground (Used for status bars)
base05  #b9b9b9  Default Foreground, Caret, Delimiters, Operators
base06  #e3e3e3  Light Foreground (Not often used)
base07  #f7f7f7  Light Background (Not often used)
base08  #7c7c7c  Variables, XML Tags, Markup Link Text, Markup Lists, Diff Deleted
base09  #999999  Integers, Boolean, Constants, XML Attributes, Markup Link Url
base0A  #a0a0a0  Classes, Markup Bold, Search Text Background
base0B  #8e8e8e  Strings, Inherited Class, Markup Code, Diff Inserted
base0C  #868686  Support, Regular Expressions, Escape Characters, Markup Quotes
base0D  #686868  Functions, Methods, Attribute IDs, Headings
base0E  #747474  Keywords, Storage, Selector, Markup Italic, Diff Changed
base0F  #5e5e5e  Deprecated, Opening/Closing Embedded Language Tags, e.g. <?php ?>
*/
pre code.hljs {
  display: block;
  overflow-x: auto;
  padding: 1em;
}

code.hljs {
  padding: 3px 5px;
}

.hljs {
  color: #b9b9b9;
  background: #101010;
}

.hljs::selection,
.hljs ::selection {
  background-color: #464646;
  color: #b9b9b9;
}

/* purposely do not highlight these things */
/* base03 - #525252 -  Comments, Invisibles, Line Highlighting */
.hljs-comment {
  color: #525252;
}

/* base04 - #ababab -  Dark Foreground (Used for status bars) */
.hljs-tag {
  color: #ababab;
}

/* base05 - #b9b9b9 -  Default Foreground, Caret, Delimiters, Operators */
.hljs-subst,
.hljs-punctuation,
.hljs-operator {
  color: #b9b9b9;
}

.hljs-operator {
  opacity: 0.7;
}

/* base08 - Variables, XML Tags, Markup Link Text, Markup Lists, Diff Deleted */
.hljs-bullet,
.hljs-variable,
.hljs-template-variable,
.hljs-selector-tag,
.hljs-name,
.hljs-deletion {
  color: #7c7c7c;
}

/* base09 - Integers, Boolean, Constants, XML Attributes, Markup Link Url */
.hljs-symbol,
.hljs-number,
.hljs-link,
.hljs-attr,
.hljs-variable.constant_,
.hljs-literal {
  color: #999999;
}

/* base0A - Classes, Markup Bold, Search Text Background */
.hljs-title,
.hljs-class .hljs-title,
.hljs-title.class_ {
  color: #a0a0a0;
}

.hljs-strong {
  font-weight: bold;
  color: #a0a0a0;
}

/* base0B - Strings, Inherited Class, Markup Code, Diff Inserted */
.hljs-code,
.hljs-addition,
.hljs-title.class_.inherited__,
.hljs-string {
  color: #8e8e8e;
}

/* base0C - Support, Regular Expressions, Escape Characters, Markup Quotes */
/* guessing */
.hljs-built_in,
.hljs-doctag,
.hljs-quote,
.hljs-keyword.hljs-atrule,
.hljs-regexp {
  color: #868686;
}

/* base0D - Functions, Methods, Attribute IDs, Headings */
.hljs-function .hljs-title,
.hljs-attribute,
.ruby .hljs-property,
.hljs-title.function_,
.hljs-section {
  color: #686868;
}

/* base0E - Keywords, Storage, Selector, Markup Italic, Diff Changed */
/* .hljs-selector-id, */
/* .hljs-selector-class, */
/* .hljs-selector-attr, */
/* .hljs-selector-pseudo, */
.hljs-type,
.hljs-template-tag,
.diff .hljs-meta,
.hljs-keyword {
  color: #747474;
}

.hljs-emphasis {
  color: #747474;
  font-style: italic;
}

/* base0F - Deprecated, Opening/Closing Embedded Language Tags, e.g. <?php ?> */
/*
  prevent top level .keyword and .string scopes
  from leaking into meta by accident
*/
.hljs-meta,
.hljs-meta .hljs-keyword,
.hljs-meta .hljs-string {
  color: #5e5e5e;
}

/* for v10 compatible themes */
.hljs-meta .hljs-keyword,
.hljs-meta-keyword {
  font-weight: bold;
}

.header-article {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-article .article-header-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  margin-bottom: 100px;
  width: 600px;
}
@media (max-width: 800px) {
  .header-article .article-header-nav {
    display: none;
  }
}
.header-article .article-header-nav .block-left .logo {
  display: block;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header-article .article-header-nav .block-left .logo:hover {
  transform: rotate(10deg) scale(1.1);
}
.header-article .article-header-nav .block-left .logo {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  background-image: url("/images/logo.svg");
}
.header-article .article-header-nav .block-right {
  display: flex;
  gap: 30px;
}
.header-article .article-header-nav .block-right a {
  display: block;
  cursor: pointer;
  transition: all 0.2s ease;
}
.header-article .article-header-nav .block-right a:hover {
  transform: translateY(-1px);
  color: #fff !important;
}
.header-article .article-header-nav .block-right a {
  font-family: "Sen", sans-serif;
  font-size: 18px;
  color: #655D69;
}

.article-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 800px) {
  .article-content {
    margin-top: 100px;
  }
}
@media (max-width: 600px) {
  .article-content {
    margin-top: 70px;
  }
}
.article-content .title-container {
  position: relative;
  margin-bottom: 50px;
  width: 600px;
}
@media (max-width: 800px) {
  .article-content .title-container {
    width: 100%;
    padding: 0 30px;
  }
}
@media (max-width: 600px) {
  .article-content .title-container {
    margin-bottom: 30px;
  }
}
.article-content .title-container .title-art {
  z-index: -1;
  position: absolute;
  top: -10px;
  width: 750px;
  line-height: 76px;
  font-size: 80px;
  font-family: "MarckScript", serif;
  color: #36313c;
}
.article-content .title-container .title-art.left {
  right: 100%;
  transform: scaleX(-1);
}
@media (max-width: 800px) {
  .article-content .title-container .title-art.left {
    display: none;
  }
}
.article-content .title-container .title-art.right {
  left: 100%;
}
@media (max-width: 800px) {
  .article-content .title-container .title-art.right {
    writing-mode: vertical-lr;
    left: 200px;
    width: 300px;
    height: 220px;
    overflow: hidden;
  }
  .article-content .title-container .title-art.right:after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent 0%, #02040f 100%);
  }
}
.article-content .title-container h1 {
  font-size: 50px;
  font-family: "Sen", sans-serif;
  line-height: 50px;
}
@media (max-width: 600px) {
  .article-content .title-container h1 {
    font-size: 44px;
  }
}
.article-content .info-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  width: 600px;
  line-height: 20px;
  font-family: "CourierPrime", monospace;
  color: #9A929D;
}
@media (max-width: 800px) {
  .article-content .info-container {
    width: 100%;
    padding: 0 30px;
  }
}
.article-content .info-container .status {
  width: 120px;
}
@media (max-width: 400px) {
  .article-content .info-container .status {
    width: 80px;
  }
}
.article-content .info-container .creator {
  display: flex;
  gap: 10px;
  align-items: center;
}
.article-content .info-container .creator .creator-image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.article-content .info-container .creator .creator-image::before {
  content: "";
  position: absolute;
  inset: 5%;
  background: rgba(0, 150, 170, 0.12);
  filter: blur(60px);
  z-index: -1;
}
.article-content .info-container .creator .creator-image {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 40px 80px rgba(0, 0, 0, 0.6);
  width: 60px;
  height: 60px;
  background-image: url("/images/portrait.png");
  background-size: 120%;
  background-position-y: -6px;
  border-radius: 100px;
}
.article-content .content {
  width: 600px;
}
@media (max-width: 800px) {
  .article-content .content {
    width: 100%;
    padding: 0 30px;
  }
}
.article-content .content .tiptap {
  min-height: 300px;
}
.article-content .content hr {
  border: 2px solid #36313c;
}
.article-content .content p code,
.article-content .content h1 code,
.article-content .content h2 code,
.article-content .content h3 code {
  padding: 1px 3px;
  padding-bottom: 0px;
  font-family: AnonymousPro, monospace;
  font-weight: bold;
  background-color: #101116;
  color: #fff;
  border-radius: 2px;
}
.article-content .content p code::before, .article-content .content p code::after,
.article-content .content h1 code::before,
.article-content .content h1 code::after,
.article-content .content h2 code::before,
.article-content .content h2 code::after,
.article-content .content h3 code::before,
.article-content .content h3 code::after {
  content: "`";
  color: #fff;
}
.article-content .content h1,
.article-content .content h2,
.article-content .content h3 {
  margin-bottom: -2px;
  font-family: Sen, sans-serif;
}
.article-content .content h1:not(:first-child),
.article-content .content h2:not(:first-child),
.article-content .content h3:not(:first-child) {
  padding-top: 18px;
}
.article-content .content h1 {
  font-size: 36px;
  line-height: 38px;
}
.article-content .content h2 {
  font-size: 30px;
  line-height: 32px;
}
.article-content .content h3 {
  font-size: 24px;
  line-height: 26px;
}
.article-content .content p {
  margin-top: 18px;
  margin-bottom: 18px;
  line-height: 1.5;
  font-family: Sen, sans-serif;
  font-size: 18px;
}
.article-content .content p.is-empty {
  margin: 0;
  height: 10px;
}
.article-content .content ol,
.article-content .content ul {
  border-color: red;
  margin-top: 18px;
  margin-bottom: 18px;
}
.article-content .content ol ol, .article-content .content ol ul,
.article-content .content ul ol,
.article-content .content ul ul {
  margin-top: 6px;
  margin-bottom: 6px;
}
.article-content .content ol li,
.article-content .content ul li {
  margin-bottom: 6px;
}
.article-content .content ol li p,
.article-content .content ul li p {
  margin: 0;
}
.article-content .content pre {
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 16px 20px;
  line-height: 1.3;
  background-color: #101116;
}
.article-content .content pre .hljs {
  background: #101116;
}
.article-content .content pre {
  white-space: pre;
  overflow-x: scroll;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.article-content .content pre code {
  padding: 0;
  font-family: AnonymousPro, monospace;
  font-size: 18px;
  color: #fff;
}
.article-content .content img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}
.article-content .content a {
  text-decoration: none;
  color: #E87B1C;
  transition: all 0.2s ease;
}
.article-content .content a:hover {
  color: #1C89E8;
}
.article-content .content a::before {
  content: ":// ";
}

.footer {
  margin-top: 60px;
}

.footer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .bg-art {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 550px;
  background-image: url("/images/brush_stroke.png");
}
@media (max-width: 800px) {
  .footer .bg-art {
    top: 48%;
    height: 500px;
  }
}
@media (max-width: 500px) {
  .footer .bg-art {
    top: 45%;
    height: 400px;
  }
}
.footer h1 {
  font-weight: bold;
  font-size: 100px;
  font-family: "Sen", sans-serif;
}
@media (max-width: 800px) {
  .footer h1 {
    font-size: 78px;
  }
}
@media (max-width: 500px) {
  .footer h1 {
    font-size: 60px;
  }
}
.footer h1 {
  margin-bottom: 50px;
}
@media (max-width: 650px) {
  .footer h1 {
    margin-bottom: 30px;
  }
}
.footer .address {
  margin-bottom: 50px;
  font-family: "MarckScript", serif;
  font-size: 70px;
  transition: all 0.2s ease;
}
.footer .address:hover {
  color: #E87B1C;
  transform: translateY(-1px);
}
@media (max-width: 800px) {
  .footer .address {
    font-size: 60px;
  }
}
@media (max-width: 650px) {
  .footer .address {
    font-size: 9vw;
    margin-bottom: 40px;
  }
}
.footer .footer-logo-art {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 30px;
  width: 140px;
  height: 70px;
  background-image: url("/images/expanded_logo.svg");
}
@media (max-width: 800px) {
  .footer .footer-logo-art {
    width: 120px;
    height: 64px;
  }
}
@media (max-width: 500px) {
  .footer .footer-logo-art {
    width: 100px;
    height: 56px;
  }
}
.footer .copyright {
  margin-bottom: 20px;
  font-family: "CourierPrime", monospace;
  font-size: 14px;
  color: #655D69;
}

/*# sourceMappingURL=main.css.map */
