/*!**********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/styles.scss ***!
  \**********************************************************************************************************/
:root,
.blockelement__draggable-element {
  --color-primary: #2f00ff;
  --color-primary-rgb: 47, 0, 255;
  --font-family-teko: "Teko", sans-serif;
}

.c-navbar {
  position: fixed;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  color: black;
  z-index: 1000;
  display: flex;
  padding: 2rem 0;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-teko);
}
@media (max-width: 768px) {
  .c-navbar {
    padding: 1rem 0;
  }
}
.c-navbar__container {
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}
.c-navbar__logo {
  position: relative;
  width: 20%;
  min-width: 120px;
  pointer-events: all;
  padding: 8px 0;
  border-radius: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  z-index: 1001;
}
@media (max-width: 768px) {
  .c-navbar__logo {
    width: auto;
    min-width: 80px;
    padding: 4px 0;
  }
}
.c-navbar__logo img {
  width: 100%;
  height: auto;
  max-height: 40px;
}
@media (max-width: 768px) {
  .c-navbar__logo img {
    max-height: 30px;
  }
}
.c-navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  pointer-events: all;
  z-index: 1001;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .c-navbar__toggle {
    display: flex;
  }
}
.c-navbar__toggle:hover {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.c-navbar__toggle-line {
  width: 20px;
  height: 2px;
  background-color: black;
  margin: 2px 0;
  transition: all 0.3s ease;
  transform-origin: center;
}
.c-navbar__toggle.is-active .c-navbar__toggle-line {
  background-color: white;
}
.c-navbar__toggle.is-active .c-navbar__toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.c-navbar__toggle.is-active .c-navbar__toggle-line:nth-child(2) {
  opacity: 0;
}
.c-navbar__toggle.is-active .c-navbar__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
.c-navbar__pages {
  width: 60%;
  display: flex;
  margin-left: auto;
  justify-content: end;
  pointer-events: all;
  gap: 2.5vw;
}
@media (max-width: 768px) {
  .c-navbar__pages {
    display: none;
  }
}
.c-navbar__sidebar {
  position: fixed;
  top: 0;
  right: calc(-100vw - 300px);
  width: 300px;
  height: 100vh;
  background: #1e1f20;
  backdrop-filter: blur(20px);
  transition: right 0.3s ease;
  z-index: 1000;
  display: none;
}
@media (max-width: 768px) {
  .c-navbar__sidebar {
    display: block;
  }
}
.c-navbar__sidebar.is-open {
  right: 0;
}
.c-navbar__sidebar-content {
  padding: 100px 2rem 2rem;
  height: 100%;
  overflow-y: auto;
}

.c-navbar-item {
  position: relative;
}
.c-navbar-item a {
  position: relative;
  display: block;
  color: black;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 1.1rem;
  overflow: hidden;
}
@media (max-width: 769px) {
  .c-navbar-item a {
    color: white;
    pointer-events: all;
  }
}
.c-navbar-item a span {
  position: relative;
  z-index: 2;
}
.c-navbar-item a::before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 16px;
  width: 0;
  height: 2px;
  border-radius: 1rem;
  transition: width 0.4s ease;
  z-index: 1;
  background-color: var(--color-primary);
}
.c-navbar-item a:hover::before {
  width: calc(100% - 32px);
}
.c-navbar-item--mobile a {
  font-size: 1.3rem;
  padding: 16px 20px;
  border-radius: 12px;
}
.c-navbar-item--mobile a::before {
  bottom: 12px;
  left: 20px;
  height: 3px;
}
.c-navbar-item--mobile a:hover::before {
  width: calc(100% - 40px);
}

.c-navbar__sidebar.is-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-y: visible;
  -webkit-font-smoothing: antialiased;
  font-family: "Heebo", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  background-color: #1e1e1e;
}

* {
  box-sizing: border-box;
}

main {
  display: flex;
  flex-direction: column;
  overflow-y: clip;
  background: white;
}

.blockelement__draggable-element .ng-scope .c-eventOverview__item {
  aspect-ratio: 1;
}

.container {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1170px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 0px;
    padding-right: 0px;
    max-width: 95%;
  }
}
@media (max-width: 480px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
    max-width: 100%;
  }
}
.c-section__color-eeeff1 {
  background-color: #eeeff1;
}
.c-section__color-f3f3f3 {
  background-color: #f3f3f3;
}
.c-section__color-e2e6e9 {
  background-color: #e2e6e9;
}
.c-section__color-1e1e1 {
  background-color: #1e1e1e;
}
.c-section__color-000000 {
  background-color: #000000;
}
.c-section__color-ffffff {
  background-color: #ffffff;
}

.c-footer {
  background-color: #1e1e1e;
  position: relative;
  padding: 2rem 0 1rem;
}
.c-footer__corner {
  bottom: 100%;
  color: #1e1e1e;
  height: 10vw;
  margin-bottom: -1px;
  max-height: 150px;
  max-width: 150px;
  position: absolute;
  width: 10vw;
}
.c-footer__corner--left {
  left: 0;
}
.c-footer__corner--right {
  right: 0;
}
.c-footer__container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}
.c-footer__item {
  position: relative;
}
.c-footer__item a {
  position: relative;
  display: block;
  color: white;
  text-decoration: none;
  padding: 12px 0;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.9rem;
  overflow: hidden;
}
@media (max-width: 769px) {
  .c-footer__item a {
    color: white;
    pointer-events: all;
  }
}
.c-footer__item a span {
  position: relative;
  z-index: 2;
}
.c-footer__item a::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 0;
  height: 1px;
  border-radius: 1rem;
  transition: width 0.4s ease;
  z-index: 1;
  background-color: white;
}
.c-footer__item a:hover::before {
  width: 100%;
}
.c-footer__socialMedia {
  padding: 0.5rem;
  border-radius: 50%;
  background-color: white;
  aspect-ratio: 1;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  width: 2rem;
  height: 2rem;
}
.c-footer__socialMedia svg {
  width: 1rem;
  height: 1rem;
}
.c-footer__socialMedia:hover {
  opacity: 0.8;
}
.c-footer__links {
  display: flex;
  gap: 1rem;
}

.c-PageProject {
  background-color: #f3f3f3;
  margin-bottom: 4rem;
}
.c-PageProject__container {
  margin: 0 auto;
  margin-top: 5rem;
}
@media (min-width: 768px) {
  .c-PageProject__container {
    margin-top: 6rem;
  }
}
@media (min-width: 1200px) {
  .c-PageProject__container {
    margin-top: 8rem;
  }
}
.c-PageProject__headline {
  margin-bottom: 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .c-PageProject__headline {
    margin-bottom: 2rem;
    text-align: left;
  }
}
.c-PageProject__headline__title {
  font-family: var(--font-family-teko);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
  color: #111;
  word-break: break-word;
}
@media (min-width: 768px) {
  .c-PageProject__headline__title {
    line-height: 1.2;
  }
}
.c-PageProject__headline__subtitle {
  font-family: var(--font-family-teko);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 600;
  color: #555;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .c-PageProject__headline__subtitle {
    margin-top: -0.8rem;
  }
}
.c-PageProject__text {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.6;
  color: #333;
  margin: 0 auto 2rem;
  max-width: 100%;
}
@media (min-width: 768px) {
  .c-PageProject__text {
    padding-left: 10%;
    margin-bottom: 3rem;
    max-width: 90%;
  }
}
@media (min-width: 1200px) {
  .c-PageProject__text {
    padding-left: 15%;
    max-width: 85%;
  }
}
.c-PageProject__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.c-PageProject__img:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.c-PageProject__images {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .c-PageProject__images {
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
@media (min-width: 1200px) {
  .c-PageProject__images {
    gap: 3rem;
  }
}
.c-PageProject--centered {
  text-align: center;
}
.c-PageProject--centered .c-PageProject__text {
  padding-left: 0;
  max-width: 800px;
}
.c-PageProject--dark {
  background-color: #2c3e50;
  color: #ecf0f1;
}
.c-PageProject--dark .c-PageProject__headline__title {
  color: #ecf0f1;
}
.c-PageProject--dark .c-PageProject__headline__subtitle {
  color: #bdc3c7;
}
.c-PageProject--dark .c-PageProject__text {
  color: #ecf0f1;
}

.c-PageProjects {
  background-color: #f3f3f3;
  padding-top: 5rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .c-PageProjects {
    padding-top: 6rem;
  }
}
@media (min-width: 1200px) {
  .c-PageProjects {
    padding-top: 8rem;
  }
}
.c-PageProjects__title {
  font-family: var(--font-family-teko);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
  color: #111;
  word-break: break-word;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .c-PageProjects__title {
    line-height: 1.2;
    max-width: 90%;
  }
}
.c-PageProjects__items {
  display: flex;
  flex-wrap: wrap;
}
.c-PageProjects__item {
  width: 100%;
  text-decoration: none;
}
@media (min-width: 768px) {
  .c-PageProjects__item {
    width: 50%;
    padding: 2rem;
  }
}
.c-PageProjects__item * {
  transition: all 0.7s ease;
}
.c-PageProjects__item:hover .c-PageProjects__item__img img {
  transform: scale(1.05);
}
.c-PageProjects__item:hover .c-PageProjects__item__title {
  margin-top: 0.75rem;
  padding-bottom: 0.25rem;
}
.c-PageProjects__item__img {
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
}
.c-PageProjects__item__img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}
@media (min-width: 768px) {
  .c-PageProjects__item__img img {
    aspect-ratio: 1;
  }
}
@media (min-width: 768px) {
  .c-PageProjects__item__img {
    aspect-ratio: 1;
    border-radius: 2rem;
  }
}
.c-PageProjects__item__title {
  font-family: "Heebo", sans-serif;
  font-weight: 600;
  line-height: 0.9;
  color: #000000;
  width: 100%;
  margin-top: 1rem;
  font-size: clamp(1.3rem, 3.498vw, 2.622rem);
  padding: 0 1rem;
}
.c-PageProjects__item__title p {
  margin: 0;
}
@media (max-width: 768px) {
  .c-PageProjects__item__title {
    font-size: clamp(1.62rem, 6.5vw, 2.43rem);
  }
}
@media (min-width: 1200px) {
  .c-PageProjects__item__title {
    max-width: 90%;
    margin-bottom: 2rem;
  }
}

.c-pageContent .c-grid .c-grid__layout .c-grid__item:first-of-type .c-section {
  padding-top: 4rem;
}
@media (min-width: 768px) {
  .c-pageContent .c-grid .c-grid__layout .c-grid__item:first-of-type .c-section {
    padding-top: 8rem;
  }
}

.c-PageError {
  background-color: #eef1f5;
  height: 100vh;
}
.c-PageError__container {
  margin: 0 auto;
  margin-top: 5rem;
}
@media (min-width: 768px) {
  .c-PageError__container {
    margin-top: 6rem;
  }
}
@media (min-width: 1200px) {
  .c-PageError__container {
    margin-top: 8rem;
  }
}
.c-PageError__img {
  width: 100%;
}
.c-PageError__title {
  font-family: var(--font-family-teko);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
  color: #111;
  word-break: break-word;
  text-align: center;
}
@media (min-width: 768px) {
  .c-PageError__title {
    margin-top: -4rem;
    line-height: 1.2;
  }
}

.c-keyvisual {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #cecece 0%, #eeeff1 50%);
  overflow: hidden;
  padding: 2rem;
}
.c-keyvisual * {
  transition: all 0.3s ease;
}
.c-keyvisual__container {
  position: relative;
  max-width: 1400px;
  width: 100%;
  z-index: 2;
}
.c-keyvisual__content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .c-keyvisual__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}
.c-keyvisual__profile {
  position: relative;
  z-index: 2;
  animation: floatProfile 6s ease-in-out infinite;
}
.c-keyvisual__profile:hover .c-keyvisual__profile-image {
  transform: scale(1.05) rotate(2deg);
}
.c-keyvisual__profile-image {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .c-keyvisual__profile-image {
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .c-keyvisual__profile-image {
    width: 120px;
    height: 120px;
  }
}
.c-keyvisual__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  aspect-ratio: 1/1;
}
.c-keyvisual__text {
  flex: 1;
}
.c-keyvisual__headline {
  font-size: clamp(3.75rem, 15vw, 12rem);
  font-weight: 900;
  line-height: 0.9;
  margin: 0;
  color: #212529;
}
@media (max-width: 768px) {
  .c-keyvisual__headline {
    text-align: center;
  }
}
.c-keyvisual__headline-part {
  display: block;
  animation: slideInUp 0.8s ease-out;
  animation-fill-mode: backwards;
}
.c-keyvisual__headline-part:nth-child(1) {
  font-size: clamp(3.75rem, 15vw, 12rem);
  animation-delay: 0.1s;
}
.c-keyvisual__headline-part:nth-child(2) {
  font-size: clamp(3rem, 12vw, 9rem);
  animation-delay: 0.3s;
}
.c-keyvisual__headline-part--large {
  font-weight: 900;
  text-transform: lowercase;
}
.c-keyvisual__headline-part--accent {
  font-style: italic;
  font-size: clamp(3.75rem, 15vw, 12rem);
  animation-delay: 0.5s;
  color: var(--color-primary);
  animation: colorAnimation 6s ease-in-out infinite;
}
.c-keyvisual__background-elements {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  max-width: 1400px;
  width: 100%;
}
.c-keyvisual__gradient-orb {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(var(--color-primary-rgb), 0.5), rgba(var(--color-primary-rgb), 0.9));
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}
.c-keyvisual__gradient-orb--1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}
@media (max-width: 768px) {
  .c-keyvisual__gradient-orb--1 {
    width: 200px;
    height: 200px;
    top: 5%;
    right: 5%;
  }
}
.c-keyvisual__gradient-orb--2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation-delay: 3s;
}
@media (max-width: 768px) {
  .c-keyvisual__gradient-orb--2 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 5%;
  }
}
.c-keyvisual:hover .c-keyvisual__gradient-orb {
  transform: scale(1.2);
  opacity: 0.8;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes colorAnimation {
  0%, 100% {
    color: var(--color-primary);
  }
  50% {
    color: rgba(var(--color-primary-rgb), 0.5);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(10px) rotate(240deg);
  }
}
@keyframes floatProfile {
  0%, 100% {
    transform: translateY(0px);
  }
  33% {
    transform: translateY(-10px);
  }
  66% {
    transform: translateY(5px);
  }
}
.c-keyvisual__profile-image {
  cursor: pointer;
}

@media (max-width: 480px) {
  .c-keyvisual {
    padding: 1rem;
    min-height: 100vh;
  }
  .c-keyvisual__content {
    gap: 1.5rem;
  }
  .c-keyvisual__headline-part:nth-child(2) {
    font-size: 2.5rem;
    margin: -0.1em 0;
  }
  .c-keyvisual__headline-part:nth-child(3) {
    font-size: 2rem;
  }
}
.c-space {
  padding-top: var(--space-md, 1rem);
}

@media (min-width: 768px) {
  .c-space {
    padding-top: var(--space-lg, 2rem);
  }
}
.c-titlewithtext {
  display: flex;
  flex-direction: column;
}
.c-titlewithtext__title {
  font-family: var(--font-family-teko);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.c-titlewithtext__title--large {
  font-size: clamp(2.7rem, 7.2vw, 5.4rem);
}
@media (max-width: 768px) {
  .c-titlewithtext__title--large {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}
.c-titlewithtext__title--medium {
  font-size: clamp(2rem, 5vw, 3.2rem);
}
@media (max-width: 768px) {
  .c-titlewithtext__title--medium {
    font-size: clamp(1.62rem, 6.5vw, 2.43rem);
  }
}
.c-titlewithtext__title--small {
  font-size: clamp(1.3rem, 3.5vw, 2rem);
}
@media (max-width: 768px) {
  .c-titlewithtext__title--small {
    font-size: clamp(1rem, 4vw, 1.3rem);
  }
}
.c-titlewithtext__text {
  font-family: "Heebo", sans-serif;
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.6;
  color: #333;
  width: 100%;
  padding-left: 10%;
  margin-top: 2rem;
}
.c-titlewithtext__text p {
  margin: 0;
}
.c-titlewithtext__title--medium + .c-titlewithtext__text {
  margin-top: 1.4rem;
  padding-left: 0;
}
.c-titlewithtext__title--small + .c-titlewithtext__text {
  margin-top: 0.9rem;
  padding-left: 0;
}
@media (max-width: 768px) {
  .c-titlewithtext__text {
    padding-left: 0;
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-top: 1.1rem;
  }
  .c-titlewithtext__title--medium + .c-titlewithtext__text {
    margin-top: 0.8rem;
  }
  .c-titlewithtext__title--small + .c-titlewithtext__text {
    margin-top: 0.5rem;
  }
}
@media (min-width: 1200px) {
  .c-titlewithtext__text {
    max-width: 90%;
    margin-bottom: 2rem;
  }
}

.c-ProjectOverview {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 0;
}
.c-ProjectOverview__item {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 2rem;
  text-decoration: none;
}
.c-ProjectOverview__item * {
  transition: all 0.5s ease;
}
.c-ProjectOverview__item:hover img {
  transform: scale(1.05);
  opacity: 0.8;
}
.c-ProjectOverview__item:hover .c-ProjectOverview__button {
  background-color: black;
  color: white;
}
.c-ProjectOverview__item:hover .c-ProjectOverview__button svg {
  transform: rotate(-45deg);
}
@media (max-width: 768px) {
  .c-ProjectOverview__item {
    flex-direction: column;
    gap: 0;
  }
}
.c-ProjectOverview__image {
  display: flex;
  width: 65%;
  overflow: hidden;
  border-radius: 8px;
  background-color: black;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .c-ProjectOverview__image {
    width: 100%;
  }
}
.c-ProjectOverview__image img {
  width: 100%;
  height: auto;
}
.c-ProjectOverview__title {
  font-family: var(--font-family-teko);
  font-weight: 600;
  font-size: clamp(1.3rem, 3.498vw, 2.622rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin: 0 0 0.18em 0;
  color: black;
  text-decoration: none;
}
@media (max-width: 768px) {
  .c-ProjectOverview__title {
    font-size: clamp(1.62rem, 6.5vw, 2.43rem);
    margin-bottom: 0.15em;
    max-width: 80%;
  }
}
.c-ProjectOverview__subtitle {
  font-family: var(--font-family-teko);
  font-size: clamp(0.88rem, 2.43vw, 1.46rem);
  font-weight: 600;
  line-height: 0.75;
  margin-top: -0.24rem;
  color: #333;
  text-decoration: none;
}
@media (max-width: 768px) {
  .c-ProjectOverview__subtitle {
    font-size: clamp(1.4rem, 4.5vw, 2.7rem);
    max-width: 80%;
  }
}
@media (min-width: 768px) {
  .c-ProjectOverview__subtitle {
    margin-top: -0.36rem;
  }
}
.c-ProjectOverview__text {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .c-ProjectOverview__text {
    padding: 2rem 0;
  }
}
.c-ProjectOverview__button {
  background-color: white;
  color: black;
  border-radius: 32px;
  padding: 0.5rem 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  border: 1px solid black;
  height: 2.5rem;
  width: 2.5rem;
  margin-top: 1rem;
}
.c-ProjectOverview__button svg {
  width: 1.5rem;
  height: 1.5rem;
}
@media (max-width: 768px) {
  .c-ProjectOverview__button {
    margin-top: 0;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-50%, -50%);
  }
}

.c-text__title {
  font-family: var(--font-family-teko);
  font-weight: 600;
  font-size: clamp(2.19rem, 5.83vw, 4.37rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin: 0 0 0.3em 0;
}
@media (max-width: 768px) {
  .c-text__title {
    font-size: clamp(1.62rem, 6.5vw, 2.43rem);
    margin-bottom: 0.25em;
  }
}
.c-text__subtitle {
  font-family: var(--font-family-teko);
  font-size: clamp(1.7rem, 4.6vw, 2.8rem);
  font-weight: 600;
  line-height: 0.75;
  margin-top: -0.4rem;
}
@media (min-width: 768px) {
  .c-text__subtitle {
    margin-top: -0.6rem;
    font-size: clamp(1.46rem, 4.05vw, 2.43rem);
  }
}
.c-text-rte {
  display: inline-block;
}
.c-text-rte p:has(> span) {
  margin: 0;
}
@media (min-width: 768px) {
  .c-text-rte {
    max-width: 80%;
  }
}
.c-text-rte a {
  position: relative;
  color: rgba(var(--color-primary-rgb), 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  overflow: hidden;
  pointer-events: all;
}
.c-text-rte a::before {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.4s ease;
  z-index: 1;
  background-color: var(--color-primary);
}
.c-text-rte a:hover {
  color: rgba(var(--color-primary-rgb), 0.9);
}
.c-text-rte a:hover::before {
  width: 100%;
}

.c-media {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  padding: 2rem 0;
}
.c-media--gap-0 {
  gap: 0;
}
.c-media--gap-xs {
  gap: 0.25rem;
}
.c-media--gap-sm {
  gap: 0.5rem;
}
.c-media--gap-md {
  gap: 1rem;
}
.c-media--gap-lg {
  gap: 1.5rem;
}
.c-media--gap-xl {
  gap: 2rem;
}
.c-media--gap-2xl {
  gap: 3rem;
}

.c-media__item--col-span-1 {
  grid-column: span 1;
}
.c-media__item--col-span-2 {
  grid-column: span 2;
}
.c-media__item--col-span-3 {
  grid-column: span 3;
}
.c-media__item--col-span-4 {
  grid-column: span 4;
}
.c-media__item--col-span-5 {
  grid-column: span 5;
}
.c-media__item--col-span-6 {
  grid-column: span 6;
}
.c-media__item--col-span-7 {
  grid-column: span 7;
}
.c-media__item--col-span-8 {
  grid-column: span 8;
}
.c-media__item--col-span-9 {
  grid-column: span 9;
}
.c-media__item--col-span-10 {
  grid-column: span 10;
}
.c-media__item--col-span-11 {
  grid-column: span 11;
}
.c-media__item--col-span-12 {
  grid-column: span 12;
}
@media (max-width: 1024px) {
  .c-media__item--col-span-tablet-1 {
    grid-column: span 1;
  }
  .c-media__item--col-span-tablet-2 {
    grid-column: span 2;
  }
  .c-media__item--col-span-tablet-3 {
    grid-column: span 3;
  }
  .c-media__item--col-span-tablet-4 {
    grid-column: span 4;
  }
  .c-media__item--col-span-tablet-5 {
    grid-column: span 5;
  }
  .c-media__item--col-span-tablet-6 {
    grid-column: span 6;
  }
  .c-media__item--col-span-tablet-7 {
    grid-column: span 7;
  }
  .c-media__item--col-span-tablet-8 {
    grid-column: span 8;
  }
  .c-media__item--col-span-tablet-9 {
    grid-column: span 9;
  }
  .c-media__item--col-span-tablet-10 {
    grid-column: span 10;
  }
  .c-media__item--col-span-tablet-11 {
    grid-column: span 11;
  }
  .c-media__item--col-span-tablet-12 {
    grid-column: span 12;
  }
}
@media (max-width: 768px) {
  .c-media__item--col-span-mobile-1 {
    grid-column: span 1;
  }
  .c-media__item--col-span-mobile-2 {
    grid-column: span 2;
  }
  .c-media__item--col-span-mobile-3 {
    grid-column: span 3;
  }
  .c-media__item--col-span-mobile-4 {
    grid-column: span 4;
  }
  .c-media__item--col-span-mobile-5 {
    grid-column: span 5;
  }
  .c-media__item--col-span-mobile-6 {
    grid-column: span 6;
  }
  .c-media__item--col-span-mobile-7 {
    grid-column: span 7;
  }
  .c-media__item--col-span-mobile-8 {
    grid-column: span 8;
  }
  .c-media__item--col-span-mobile-9 {
    grid-column: span 9;
  }
  .c-media__item--col-span-mobile-10 {
    grid-column: span 10;
  }
  .c-media__item--col-span-mobile-11 {
    grid-column: span 11;
  }
  .c-media__item--col-span-mobile-12 {
    grid-column: span 12;
  }
}
.c-media__item--row-span-1 {
  grid-row: span 1;
}
.c-media__item--row-span-2 {
  grid-row: span 2;
}
.c-media__item--row-span-3 {
  grid-row: span 3;
}
.c-media__item--row-span-4 {
  grid-row: span 4;
}
.c-media__item--row-span-5 {
  grid-row: span 5;
}
.c-media__item--row-span-6 {
  grid-row: span 6;
}
.c-media__item--rounded {
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}
.c-media__item-crop-1-1 {
  aspect-ratio: 1;
}
.c-media__item-crop-1-1 img {
  aspect-ratio: 1;
}
.c-media__item-crop-16-9 {
  aspect-ratio: 16/9;
}
.c-media__item-crop-16-9 img {
  aspect-ratio: 16/9;
}
.c-media__item img,
.c-media__item picture,
.c-media__item video {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: inherit;
}

.c-tile {
  aspect-ratio: 1;
  padding: 2.625rem;
  background-color: #e2e6e9;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: calc(33.3333333333% - 1rem);
  text-decoration: none;
}
@media (max-width: 1024px) {
  .c-tile {
    width: calc(50% - 0.75rem);
  }
}
@media (max-width: 768px) {
  .c-tile {
    width: 100%;
    aspect-ratio: 4/3;
  }
}
.c-tile * {
  transition: all 0.3s ease;
}
.c-tile:hover .c-tile__button {
  background-color: black;
  color: white;
}
.c-tile:hover .c-tile__button svg {
  transform: rotate(-45deg);
}
.c-tile__title {
  font-family: var(--font-family-teko);
  font-weight: 600;
  font-size: clamp(1.31rem, 3.5vw, 2.62rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin: 0 0 0.3em 0;
  color: black;
}
@media (max-width: 768px) {
  .c-tile__title {
    font-size: clamp(1.6rem, 4.5vw, 2.7rem);
    margin-bottom: 0.25em;
  }
}
.c-tile__button {
  background-color: white;
  color: black;
  border: 1px solid black;
  border-radius: 32px;
  padding: 0.5rem 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  height: 2.5rem;
  width: 2.5rem;
  margin-top: 1rem;
}
.c-tile__button svg {
  width: 1.5rem;
  height: 1.5rem;
}

.c-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 3.5rem;
}

.c-CTA {
  background-color: #e2e6e9;
  width: 100%;
  aspect-ratio: 2/1;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
  text-align: center;
  gap: 2rem;
  padding: 10%;
  margin-bottom: 3.5rem;
}
.c-CTA__title {
  font-family: var(--font-family-teko);
  font-weight: 600;
  line-height: 0.7;
  letter-spacing: -0.02em;
  margin: 0;
  font-size: clamp(2.7rem, 7.2vw, 5.4rem);
}
@media (max-width: 768px) {
  .c-CTA__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}
.c-CTA__link {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 1rem 1.5rem;
  background-color: black;
  color: white;
  gap: 0.5rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
  pointer-events: all;
}
.c-CTA__link svg {
  color: white;
  fill: white;
  width: 1.5rem;
  height: 1.5rem;
}
.c-CTA__link span {
  margin: auto;
}
.c-CTA__link::before {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 26px;
  width: 0;
  height: 1px;
  transition: width 0.4s ease;
  z-index: 1;
  background-color: white;
  border-radius: 1rem;
}
.c-CTA__link:hover::before {
  width: calc(100% - 50px);
}

.c-dualInfoBlock {
  padding: 3rem 0;
}
.c-dualInfoBlock__item {
  display: flex;
  padding: 4rem 0;
  border-top: 1px solid black;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .c-dualInfoBlock__item {
    padding: 2rem 0;
  }
}
.c-dualInfoBlock__title {
  font-family: "Heebo", sans-serif;
  font-weight: 600;
  line-height: 0.9;
  color: #000000;
  width: 100%;
  font-size: clamp(1.3rem, 3.498vw, 2.622rem);
  margin: auto;
}
@media (max-width: 768px) {
  .c-dualInfoBlock__title {
    font-size: clamp(1.62rem, 6.5vw, 2.43rem);
    margin-bottom: 1rem;
  }
}
.c-dualInfoBlock__text {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  width: 100%;
  max-width: 100%;
}
.c-dualInfoBlock__content {
  display: flex;
  width: 100%;
}
@media (min-width: 768px) {
  .c-dualInfoBlock__content {
    width: 60%;
  }
}
.c-dualInfoBlock__content p {
  margin: 0;
}
.c-dualInfoBlock__contentTitle {
  display: flex;
  width: 100%;
}
@media (min-width: 768px) {
  .c-dualInfoBlock__contentTitle {
    width: 40%;
  }
}

.c-teamMember {
  display: flex;
  padding: 4rem 0;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .c-teamMember {
    padding: 2rem 0;
  }
}
.c-teamMember__title {
  font-family: "Heebo", sans-serif;
  font-weight: 600;
  line-height: 0.9;
  color: #000000;
  width: 100%;
  font-size: clamp(1.3rem, 3.498vw, 2.622rem);
  margin: auto;
}
@media (max-width: 768px) {
  .c-teamMember__title {
    font-size: clamp(1.62rem, 6.5vw, 2.43rem);
    margin-bottom: 1rem;
  }
}
.c-teamMember__text {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  width: 100%;
  max-width: 100%;
}
.c-teamMember__content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 768px) {
  .c-teamMember__content {
    width: 60%;
    justify-content: center;
    padding-left: 3rem;
  }
}
.c-teamMember__content p {
  margin: 0;
}
.c-teamMember__imageContainer {
  overflow: hidden;
  display: flex;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .c-teamMember__imageContainer {
    width: 40%;
    border-radius: 2rem;
    aspect-ratio: 1;
  }
}
.c-teamMember__imageContainer img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}
@media (min-width: 768px) {
  .c-teamMember__imageContainer img {
    aspect-ratio: 1;
  }
}
.c-teamMember__social {
  display: flex;
  padding-top: 1rem;
  gap: 1rem;
}
.c-teamMember__socialMedia {
  padding: 0.5rem;
  border-radius: 50%;
  aspect-ratio: 1;
  background-color: white;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  width: 3rem;
  height: 3rem;
}
.c-teamMember__socialMedia svg {
  width: 1.5rem;
  height: 1.5rem;
}
.c-teamMember__socialMedia:hover {
  background-color: black;
  color: white;
}

@font-face {
  font-family: "Teko";
  src: url(fonts/Teko-Light.ttf) format("truetype");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Teko";
  src: url(fonts/Teko-Regular.ttf) format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Teko";
  src: url(fonts/Teko-Medium.ttf) format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Teko";
  src: url(fonts/Teko-SemiBold.ttf) format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Teko";
  src: url(fonts/Teko-Bold.ttf) format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Heebo";
  src: url(fonts/Heebo-Thin.ttf) format("truetype");
  font-weight: 100;
  font-display: swap;
}
@font-face {
  font-family: "Heebo";
  src: url(fonts/Heebo-ExtraLight.ttf) format("truetype");
  font-weight: 200;
  font-display: swap;
}
@font-face {
  font-family: "Heebo";
  src: url(fonts/Heebo-Light.ttf) format("truetype");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Heebo";
  src: url(fonts/Heebo-Regular.ttf) format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Heebo";
  src: url(fonts/Heebo-Medium.ttf) format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Heebo";
  src: url(fonts/Heebo-SemiBold.ttf) format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Heebo";
  src: url(fonts/Heebo-Bold.ttf) format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Heebo";
  src: url(fonts/Heebo-ExtraBold.ttf) format("truetype");
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Heebo";
  src: url(fonts/Heebo-Black.ttf) format("truetype");
  font-weight: 900;
  font-display: swap;
}
