@charset "UTF-8";
:root {
  --main-gap-row: 80px;
  --main-gap-column: 64px;
  --text-gap: 16px;
  --main-padding: 6rem 4rem 6rem 4rem;
  --main-flex: row;
  --main-flex-changed: row;
}

* {
  box-sizing: border-box;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1 {
  overflow-wrap: break-word;
  font-family: "Colombia";
  font-weight: 600;
  font-size: 3.5rem;
  line-height: 1.2;
  color: #212121;
  margin: 0;
}

h2 {
  overflow-wrap: break-word;
  font-family: "Colombia";
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #212121;
  margin: 0;
}

h3 {
  overflow-wrap: break-word;
  font-family: "Colombia";
  line-height: 1.2;
  color: #212121;
  margin: 0;
  font-weight: bold;
  font-size: 1.5rem;
}

p,
label,
input,
textarea,
li,
select {
  overflow-wrap: break-word;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #212121;
  margin: 0;
}

.p-b {
  border-left: #29b597 3px solid;
  padding-left: 1rem;
  position: relative;
}

.p2 {
  font-size: 1rem;
}

a {
  font-family: "Montserrat";
  font-size: 1.1rem;
  line-height: 1.5;
  color: #212121;
  text-decoration: underline;
}

strong {
  font-weight: 600;
}

.button {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.9rem;
  background: #29b597;
  border: 1px solid #29b597;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Montserrat";
  overflow: hidden;
  padding: 0.8rem 1.2rem;
  position: relative;
  text-decoration: none;
  transition: 0.2s transform ease-in-out;
  will-change: transform;
  z-index: 0;
  cursor: pointer;
  overflow-wrap: break-word;
}
.button:last-child {
  margin-right: 0;
}
.button::after {
  background-color: #ffffff;
  border-radius: 1.9rem;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0) rotate(10deg);
  transform-origin: top left;
  transition: 0.2s transform ease-out;
  will-change: transform;
  z-index: -1;
}
.button:hover::after {
  transform: translate(0, 0);
}
.button:hover {
  border: 1px solid transparent;
  color: #29b597;
  transform: scale(1.05);
  will-change: transform;
}

.secondary {
  border-radius: 1.9rem;
  border: 0.1rem solid #212121;
  color: #212121;
  background-color: #ffffff;
}
.secondary::after {
  background-color: #29b597;
}
.secondary:hover::after {
  transform: translate(0, 0);
}
.secondary:hover {
  border: 1px solid transparent;
  color: #ffffff;
  transform: scale(1.05);
  will-change: transform;
}

section {
  padding: var(--main-padding);
  width: 100%;
}

nav {
  padding: 5px 5%;
  z-index: 999;
  background-color: #ffffff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  width: 100%;
}
nav .logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 999;
}
nav .logo img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}
nav .nav_links {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 40%;
  height: 61.6px;
  z-index: 9999;
}
nav .nav_links ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--text-gap);
  background-color: #ffffff;
  border-radius: 15px;
  padding: 10px;
  transition: all 200ms ease;
}
nav .nav_links ul li {
  margin: 0;
  padding: 0;
}
nav .nav_links ul li a {
  text-decoration: none;
  color: #000;
  font-size: 95%;
  font-weight: 400;
  padding: 4px 8px;
  border-radius: 5px;
}
nav .nav_links ul li a:hover {
  background-color: #f5f5f5;
}
nav .actions {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 999;
}

.hamburger {
  display: none;
  cursor: pointer;
}
.hamburger .line {
  width: 25px;
  height: 1px;
  background-color: #1f1f1f;
  display: block;
  margin: 7px auto;
  transition: all 0.3s ease-in-out;
}
.hamburger.hamburger-active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}
.hamburger.hamburger-active .line:nth-child(2) {
  width: 0px;
}
.hamburger.hamburger-active .line:nth-child(1),
.hamburger.hamburger-active .line:nth-child(3) {
  transition-delay: 0.3s;
}
.hamburger.hamburger-active .line:nth-child(1) {
  transform: translateY(12px);
}
.hamburger.hamburger-active .line:nth-child(3) {
  transform: translateY(-5px) rotate(90deg);
}

.menubar {
  position: absolute;
  top: 0;
  left: -60%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 60%;
  height: 100vh;
  padding: 20% 0;
  background: rgb(255, 255, 255);
  transition: all 0.5s ease-in;
  z-index: 3;
}
.menubar.active {
  left: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.menubar ul {
  padding: 0;
  list-style: none;
}
.menubar ul li {
  margin-bottom: 32px;
}
.menubar ul li a {
  text-decoration: none;
  color: #000;
  font-size: 95%;
  font-weight: 400;
  padding: 5px 10px;
  border-radius: 5px;
}
.menubar ul li a:hover {
  background-color: #f5f5f5;
}

footer {
  padding-top: 100px;
  width: 100%;
  background: #212121;
  position: relative;
  z-index: 0;
}
footer section {
  display: flex;
  flex-direction: column;
  gap: var(--main-gap-row);
}
footer section h3,
footer section a,
footer section p {
  color: #ffffff;
}
footer section .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(192px, 1fr));
  gap: var(--main-gap-row);
}
footer section .row .column {
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--text-gap);
}
footer section .row .column:first-child {
  grid-column: span 2;
}
footer section .row .column div {
  display: flex;
  flex-direction: column;
  gap: var(--text-gap);
}
footer section .row .column img {
  width: 14%;
  border: white 1px solid;
}
footer section .legal_wrapper {
  display: flex;
  flex-direction: var(--main-flex);
  justify-content: space-between;
  gap: var(--main-gap-row);
  align-items: center;
}
footer section .legal_wrapper .button-social-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
footer section .legal_wrapper .button-social-container .button-social {
  cursor: pointer;
  text-decoration: none;
  color: #212121;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #29b597;
  border: 2px solid #29b597;
  transition: all 0.45s;
}
footer section .legal_wrapper .button-social-container .button-social:hover {
  transform: rotate(360deg);
  transform-origin: center center;
  background-color: #212121;
  color: #29b597;
}
footer section .legal_wrapper .button-social-container .button-social:hover .btn-svg {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(305deg) brightness(103%) contrast(103%);
}
footer section .legal_wrapper .button-social-container .flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer section .legal_wrapper .legals {
  display: flex;
  flex-direction: row;
  gap: var(--text-gap);
}

.rounded {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 250px;
  background-color: #e8d7c5;
  border-radius: 50%;
  z-index: -1;
  transition: all 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.top {
  top: -125px;
}

.bottom {
  bottom: -125px;
}

.home {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.home .digital-excellence-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--main-gap-column);
  position: relative;
  z-index: 1;
}
.home .digital-excellence-section .content-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(302px, 1fr));
  gap: var(--main-gap-row);
}
.home .digital-excellence-section .content-container .headline-column,
.home .digital-excellence-section .content-container .details-column {
  display: flex;
  flex-direction: column;
  gap: var(--text-gap);
}
.home .digital-excellence-section .content-container .headline-column h1,
.home .digital-excellence-section .content-container .details-column h1 {
  margin: 0;
  position: relative;
  z-index: 2;
}
.home .digital-excellence-section .content-container .headline-column h1 .marked,
.home .digital-excellence-section .content-container .details-column h1 .marked {
  position: relative;
  padding-bottom: 5px;
  overflow: hidden;
}
.home .digital-excellence-section .content-container .headline-column h1 .marked:after,
.home .digital-excellence-section .content-container .details-column h1 .marked:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: #29b597;
  z-index: -1;
  transition: height 0.3s ease, bottom 0.3s ease;
}
.home .digital-excellence-section .content-container .headline-column h1:hover .marked:after,
.home .digital-excellence-section .content-container .details-column h1:hover .marked:after {
  bottom: 0;
  height: 100%;
}
.home .digital-excellence-section .content-container .actions {
  display: flex;
  flex-direction: var(--main-flex);
  align-self: flex-start;
  gap: var(--text-gap);
}
.home .digital-excellence-section dotlottie-player {
  max-width: 1000px;
}
.home .custom-solutions-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--text-gap);
  background-color: #212121;
  position: relative;
  z-index: 0;
}
.home .custom-solutions-section .title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: var(--text-gap);
}
.home .custom-solutions-section .title-container h2 {
  text-align: center;
  color: #ffffff;
}
.home .custom-solutions-section .title-container p {
  text-align: center;
  color: #ffffff;
}
.home .web-design-section {
  display: flex;
  flex-direction: var(--main-flex-changed);
  gap: var(--main-gap-row);
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 0;
  top: var(--main-padding);
}
.home .web-design-section .content-description {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 55%;
  gap: var(--text-gap);
  transition: opacity 0.2s ease-in-out;
}
.home .web-design-section .websites_animation {
  margin-left: 60%;
  right: 0px;
  width: 40%;
}
.home .web-design-section .fade {
  transition: opacity 0.2s ease-in-out;
}
.home .web-design-section .hidden {
  opacity: 0;
}
@media (max-width: 767px) {
  .home .web-design-section .content-description {
    position: relative;
    width: 100%;
  }
  .home .web-design-section .websites_animation {
    margin-left: 0;
    right: auto;
    width: 100%;
  }
}
.home .mobile-app-section {
  display: flex;
  flex-direction: var(--main-flex-changed);
  gap: var(--main-gap-row);
  justify-content: flex-end;
}
.home .mobile-app-section .app-details {
  display: none;
  width: 60%;
  justify-content: center;
  flex-direction: column;
  gap: var(--text-gap);
}
.home .mobile-app-section .app-development-animation {
  width: 40%;
}
@media (max-width: 767px) {
  .home .mobile-app-section .app-details {
    display: flex;
    width: 100%;
  }
  .home .mobile-app-section .app-development-animation {
    width: 100%;
  }
}
.home .developer-benefits-section {
  display: flex;
  flex-direction: var(--main-flex);
  gap: var(--main-gap-row);
  position: relative;
  z-index: 5;
}
.home .developer-benefits-section .partner-animation {
  width: 40%;
}
.home .developer-benefits-section .benefits-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 60%;
  gap: var(--main-gap-row);
}
.home .developer-benefits-section .benefits-content .benefits-heading-container {
  display: flex;
  flex-direction: column;
  gap: var(--text-gap);
}
.home .developer-benefits-section .benefits-content .benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(247px, 1fr));
  gap: var(--text-gap);
}
.home .developer-benefits-section .benefits-content .benefits-list .benefit-item {
  display: flex;
  flex-direction: column;
  gap: var(--text-gap);
}
.home .developer-benefits-section .benefits-content .benefits-list .benefit-item .header {
  display: flex;
  align-items: flex-end;
  gap: var(--text-gap);
}
.home .developer-benefits-section .benefits-content .benefits-list .benefit-item .header h2 {
  margin: 0;
}
.home .developer-benefits-section .benefits-content .benefits-list .benefit-item .header img {
  width: 2rem;
}
@media (max-width: 767px) {
  .home .developer-benefits-section .partner-animation {
    width: 100%;
  }
  .home .developer-benefits-section .benefits-content {
    width: 100%;
  }
}
.home .project-process-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: #212121;
  position: relative;
  z-index: 0;
  max-width: 100vw;
}
.home .project-process-section h2 {
  color: #ffffff;
}
.home .project-process-section .process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 492px), 1fr));
  gap: var(--main-gap-row);
  position: relative;
}
.home .project-process-section .process-steps .process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--text-gap);
}
.home .project-process-section .process-steps .process-step h3 {
  color: #ffffff;
}
.home .project-process-section .process-steps .process-step p {
  color: #ffffff;
}
.home .project-process-section .process-steps .process-step .step-icon {
  width: 9.4rem;
}
.home .project-process-section .process-steps .process-step .step-action {
  display: flex;
  flex-direction: row;
  align-self: flex-start;
  width: -moz-fit-content;
  width: fit-content;
}
.home .project-process-section .process-steps .process-step .step-action .step-chevron {
  margin-left: 20px;
  display: flex;
  width: 0.4rem;
}
@media (max-width: 767px) {
  .home .project-process-section .process-steps .process-step {
    text-align: center;
  }
  .home .project-process-section .process-steps .process-step .step-action {
    align-self: center;
  }
}
.home .project-process-section .process-steps .card {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #212121;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 254/190;
}
.home .project-process-section .process-steps .card::before {
  width: 104%;
  height: 104%;
  content: "";
  position: absolute;
  inset: 0;
  left: -2%;
  margin: auto;
  border-radius: 10px;
  background: linear-gradient(-45deg, #de8986 0%, #e8d7c5 100%);
  z-index: -10;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.home .project-process-section .process-steps .card::after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, #de8986 0%, #e8d7c5 100%);
  transform: translate3d(0, 0, 0) scale(0.95);
  filter: blur(20px);
}
.home .project-process-section .process-steps .card:hover::after {
  filter: blur(30px);
}
.home .project-process-section .process-steps .card:hover::before {
  transform: rotate(-90deg) scaleX(0.77) scaleY(1.34);
}
@media (max-width: 767px) {
  .home .project-process-section .process-steps {
    grid-template-columns: 1fr;
  }
  .home .project-process-section .process-steps .card {
    aspect-ratio: auto;
  }
  .home .project-process-section .process-steps .card:hover::before {
    transform: rotate(0deg) scaleX(1) scaleY(1);
  }
}
.home .call-to-action {
  display: flex;
  align-items: center;
  gap: var(--main-gap-row);
  flex-direction: var(--main-flex);
  position: relative;
}
.home .call-to-action .cta-content {
  display: flex;
  flex-direction: column;
  width: 60%;
  gap: var(--text-gap);
}
.home .call-to-action .cta-content .actions {
  display: flex;
  flex-direction: var(--main-flex);
  gap: var(--text-gap);
}
.home .call-to-action .cta-animation {
  width: 40%;
}
@media (max-width: 767px) {
  .home .call-to-action .cta-content {
    width: 100%;
  }
  .home .call-to-action .cta-animation {
    width: 100%;
  }
}
.home .what-we-use {
  text-align: center;
}
.home .what-we-use .splide .splide__track {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 5;
}
.home .what-we-use .splide .splide__track .splide__list .splide__slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}
.home .what-we-use .splide .splide__track .splide__list .splide__slide .icon {
  height: 50px;
}
.home .what-we-use .splide .splide__pagination {
  top: 100px;
}
.home .what-we-use .splide .splide__pagination li .splide__pagination__page {
  background: #ededed;
}
.home .what-we-use .splide .splide__pagination li .is-active {
  background: #29b597;
}
.home .what-we-use .splide .splide__arrows {
  position: relative;
  transform: translateY(80%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
.home .what-we-use .splide .splide__arrows .splide__arrow--prev {
  transform: translateY(0%);
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.9rem;
  background: #29b597;
  border: 1px solid #29b597;
  color: #212121;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Montserrat";
  overflow: hidden;
  padding: 0.8rem 1.2rem;
  position: relative;
  text-decoration: none;
  transition: 0.2s transform ease-in-out;
  will-change: transform;
  z-index: 0;
  cursor: pointer;
  overflow-wrap: break-word;
}
.home .what-we-use .splide .splide__arrows .splide__arrow--prev:last-child {
  margin-right: 0;
}
.home .what-we-use .splide .splide__arrows .splide__arrow--prev::after {
  background-color: #ffffff;
  border-radius: 1.9rem;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0) rotate(10deg);
  transform-origin: top left;
  transition: 0.2s transform ease-out;
  will-change: transform;
  z-index: -1;
}
.home .what-we-use .splide .splide__arrows .splide__arrow--prev:hover::after {
  transform: translate(0, 0);
}
.home .what-we-use .splide .splide__arrows .splide__arrow--prev:hover {
  border: 1px solid transparent;
  color: #29b597;
  transform: scale(1.05);
  will-change: transform;
}
.home .what-we-use .splide .splide__arrows .splide__arrow--next {
  transform: translateY(0%);
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.9rem;
  background: #29b597;
  border: 1px solid #29b597;
  color: #212121;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Montserrat";
  margin-right: 1rem;
  overflow: hidden;
  padding: 0.8rem 1.2rem;
  position: relative;
  text-decoration: none;
  transition: 0.2s transform ease-in-out;
  will-change: transform;
  z-index: 0;
  cursor: pointer;
  overflow-wrap: break-word;
}
.home .what-we-use .splide .splide__arrows .splide__arrow--next:last-child {
  margin-right: 0;
}
.home .what-we-use .splide .splide__arrows .splide__arrow--next::after {
  background-color: #ffffff;
  border-radius: 1.9rem;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0) rotate(10deg);
  transform-origin: top left;
  transition: 0.2s transform ease-out;
  will-change: transform;
  z-index: -1;
}
.home .what-we-use .splide .splide__arrows .splide__arrow--next:hover::after {
  transform: translate(0, 0);
}
.home .what-we-use .splide .splide__arrows .splide__arrow--next:hover {
  border: 1px solid transparent;
  color: #29b597;
  transform: scale(1.05);
  will-change: transform;
}
.home .faq-section {
  display: flex;
  flex-direction: var(--main-flex);
  gap: var(--main-gap-row);
  position: relative;
}
.home .faq-section .faq-header {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: var(--text-gap);
  position: relative;
  z-index: 10;
}
.home .faq-section .faq-accordion {
  display: flex;
  flex-direction: column;
  width: 60%;
  position: relative;
  z-index: 10;
}
.home .faq-section .faq-accordion .faq-item {
  margin-bottom: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: var(--text-gap);
}
.home .faq-section .faq-accordion .faq-item .faq-divider {
  background: #29b597;
  width: 100%;
  height: 2px;
}
.home .faq-section .faq-accordion .faq-item .faq-question-container {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.home .faq-section .faq-accordion .faq-item .faq-question-container .faq-question-title {
  display: flex;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  color: #212121;
}
.home .faq-section .faq-accordion .faq-item .faq-question-container .faq-icon {
  margin-right: 1rem;
  width: 1rem;
  height: 0.6rem;
  transition: all 200ms ease;
}
.home .faq-section .faq-accordion .faq-item .faq-answer {
  width: 90%;
}
.home .faq-section .rounded {
  z-index: 5;
}
@media (max-width: 767px) {
  .home .faq-section .faq-header {
    width: 100%;
  }
  .home .faq-section .faq-accordion {
    width: 100%;
  }
}
.home .contact-section {
  background: #ffffff;
  display: flex;
  flex-direction: column;
}
.home .contact-section .contact-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 5.5rem;
}
.home .contact-section .contact-header .contact-intro {
  margin-right: 6.8rem;
}
.home .contact-section .contact-header .contact-details {
  display: flex;
  flex-direction: column;
}
.home .contact-section .contact-header .contact-details .contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.home .contact-section .contact-header .contact-details .contact-method .contact-icon {
  margin-right: 1.1rem;
  width: 1.3rem;
  height: auto;
}
.home .contact-section .contact-header .contact-details .contact-method .contact-info {
  display: flex;
  flex-direction: column;
}
.home .contact-section .contact-header .contact-details .contact-method .contact-info h2 {
  margin-bottom: 0;
}
.home .contact-section .contact-background-image {
  background: url("assets/images/placeholderImage.png") center/cover no-repeat;
  width: 100%;
  height: 46.1rem;
}

.aboutus {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.aboutus .hero {
  padding-left: 0;
  padding-right: 0;
  height: 100vh;
  background: url("/assets/images/aboutus_header_alone.jpg") no-repeat top/cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  width: 100vw;
}
.aboutus .hero .marquee {
  display: flex;
  align-items: flex-end;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.aboutus .hero .marquee .marquee__inner {
  display: flex;
  animation: marquee 40s linear infinite;
}
@media (max-width: 767px) {
  .aboutus .hero .marquee .marquee__inner {
    animation: marquee 30s linear infinite;
  }
}
@media (max-width: 575px) {
  .aboutus .hero .marquee .marquee__inner {
    animation: marquee 20s linear infinite;
  }
}
.aboutus .hero .marquee h1 {
  color: white;
  font-weight: 900;
  font-size: 250px;
  margin: 0 2rem;
}
@media (max-width: 991px) {
  .aboutus .hero .marquee h1 {
    font-size: 150px;
  }
}
@media (max-width: 767px) {
  .aboutus .hero .marquee h1 {
    font-size: 120px;
    margin-bottom: 10vh;
  }
}
@media (max-width: 575px) {
  .aboutus .hero .marquee h1 {
    font-size: 70px;
    margin-bottom: 15vh;
  }
}
.aboutus .hero .foreground {
  position: absolute;
  padding-left: 0;
  padding-right: 0;
  top: 0;
  left: 0;
  background: url("/assets/images/aboutus_header_alone_mask.png") no-repeat top/cover;
  height: 100vh;
  width: 100vw;
}
.aboutus .about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--main-gap-column);
  background-color: #212121;
  position: relative;
  z-index: 0;
}
.aboutus .about-section .about-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: var(--text-gap);
  max-width: 1200px;
}
.aboutus .about-section .about-title h2 {
  text-align: center;
  color: #ffffff;
}
.aboutus .about-section .about-title p {
  text-align: center;
  color: #ffffff;
}
.aboutus .about-section .values-list {
  max-width: 900px;
  display: flex;
  flex-direction: var(--main-flex);
  gap: var(--main-gap-row);
}
.aboutus .about-section .values-list .value-item {
  display: flex;
  flex-direction: column;
  gap: var(--text-gap);
}
.aboutus .about-section .values-list .value-item .value-header {
  display: flex;
  align-items: flex-end;
  gap: var(--text-gap);
}
.aboutus .about-section .values-list .value-item .value-header h3 {
  margin: 0;
  color: #ffffff;
}
.aboutus .about-section .values-list .value-item .value-header img {
  width: 2rem;
}
.aboutus .about-section .values-list .value-item .value-description {
  color: #ffffff;
}
.aboutus .developer-benefits-section {
  display: flex;
  flex-direction: var(--main-flex-changed);
  gap: var(--main-gap-row);
  position: relative;
  z-index: 5;
  align-items: center;
  justify-content: center;
}
.aboutus .developer-benefits-section .partner-animation {
  width: 40%;
}
.aboutus .developer-benefits-section .benefits-content {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  width: 80%;
  gap: var(--main-gap-row);
}
.aboutus .developer-benefits-section .benefits-content .benefits-heading-container {
  display: flex;
  flex-direction: column;
  gap: var(--text-gap);
}
.aboutus .developer-benefits-section .benefits-content .benefits-heading-container .projekte {
  display: flex;
  justify-content: space-around;
  flex-direction: var(--main-flex);
  gap: var(--main-gap-row);
}
.aboutus .developer-benefits-section .benefits-content .benefits-heading-container .projekte a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.aboutus .developer-benefits-section .benefits-content .benefits-heading-container .projekte .video-container {
  top: 0;
  left: 0;
  position: relative;
  width: 500px;
  aspect-ratio: 16/9;
  overflow: hidden;
  transition: all 200ms ease;
}
.aboutus .developer-benefits-section .benefits-content .benefits-heading-container .projekte .video-container .iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* Disable interaction */
  transition: all 200ms ease;
}
.aboutus .developer-benefits-section .benefits-content .benefits-heading-container .projekte .video-container:hover {
  transform: scale(1.1);
}
.aboutus .developer-benefits-section .benefits-content .benefits-heading-container .projekte .video-container:hover .iframe {
  position: absolute;
}
@media screen and (max-width: 991px) {
  .aboutus .developer-benefits-section .benefits-content .benefits-heading-container .projekte .video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .aboutus .developer-benefits-section .benefits-content .benefits-heading-container .projekte .video-container .iframe {
    position: absolute;
    width: 100%;
    pointer-events: none;
    /* Disable interaction */
  }
}
.aboutus .developer-benefits-section .benefits-content .benefits-heading-container .projekte img {
  height: 400px;
  transition: all 200ms ease;
}
.aboutus .developer-benefits-section .benefits-content .benefits-heading-container .projekte img:hover {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .aboutus .developer-benefits-section .partner-animation {
    width: 100%;
  }
  .aboutus .developer-benefits-section .benefits-content {
    width: 100%;
  }
}
.aboutus .contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 5;
}
.aboutus .contact-section .card {
  width: 70%;
  padding: 30px 90px 90px 90px;
  border-radius: 15px;
  background-color: #212121;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--main-gap-column);
  transition: all 200ms ease-in-out;
}
.aboutus .contact-section .card h2 {
  color: #ffffff;
  font-size: 60px;
  text-transform: uppercase;
}
.aboutus .contact-section .card .direct-contact {
  display: flex;
  flex-direction: column;
  gap: var(--text-gap);
}
.aboutus .contact-section .card .direct-contact p,
.aboutus .contact-section .card .direct-contact a {
  color: #ffffff;
}
.aboutus .contact-section .card form {
  display: flex;
  flex-direction: column;
  gap: var(--main-gap-column);
}
.aboutus .contact-section .card form .row {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
  grid-gap: var(--main-gap-column);
}
.aboutus .contact-section .card form .row .col {
  position: relative;
  width: 100%;
  margin: 0;
  transition: 0.5s;
}
.aboutus .contact-section .card form .row .col .form-group {
  position: relative;
  width: 100%;
  color: #212121;
}
.aboutus .contact-section .card form .row .col .form-group input,
.aboutus .contact-section .card form .row .col .form-group textarea {
  width: 100%;
  background: transparent;
  outline: none;
  padding: 10px 20px;
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 15px;
}
.aboutus .contact-section .card form .row .col .form-group input:focus,
.aboutus .contact-section .card form .row .col .form-group textarea:focus {
  border: 2px solid #29b597;
  transition: all 0.5s;
}
.aboutus .contact-section .card form .row .col .form-group textarea {
  height: auto;
  min-height: 200px;
  overflow: hidden;
  resize: none;
}
.aboutus .contact-section .card form .row .col .form-group .custom-select {
  position: relative;
  display: flex;
  gap: var(--text-gap);
  align-items: center;
  border: 2px solid #ffffff;
  border-radius: 15px;
}
.aboutus .contact-section .card form .row .col .form-group .custom-select:focus-within {
  border-color: #29b597;
  transition: all 0.5s;
}
.aboutus .contact-section .card form .row .col .form-group .custom-select select {
  border: 0;
  width: 100%;
  background: transparent;
  outline: none;
  padding: 10px 20px;
  color: #ffffff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.aboutus .contact-section .card form .row .col .form-group .custom-select select option {
  top: 20px;
  position: absolute;
  background: #212121;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 10px 20px;
}
.aboutus .contact-section .card form .row .col .form-group .custom-select .dropdown-icon {
  width: 30px;
  height: 30px;
  pointer-events: none;
}
.aboutus .contact-section .card form .row .col .form-group label {
  line-height: 1.5;
  color: #ffffff;
  margin: 0 0 10px 0;
  display: block;
  pointer-events: none;
}
@media screen and (max-width: 900px) {
  .aboutus .contact-section .card {
    width: 100%;
    padding: 20px;
  }
  .aboutus .contact-section .card .row {
    grid-template-columns: repeat(auto-fit, minmax(70%, 1fr));
  }
  .aboutus .contact-section .card h2 {
    font-size: 34px;
  }
  .aboutus .contact-section .card .row input[type=submit] {
    width: 100%;
  }
}
.aboutus .image-container {
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.aboutus .image-row {
  display: flex;
  animation: marquee 40s linear infinite;
  gap: var(--main-gap-row);
}
.aboutus .image-row img {
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 10px;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.aboutus .call-to-action {
  display: flex;
  align-items: center;
  gap: var(--main-gap-row);
  flex-direction: var(--main-flex);
  position: relative;
}
.aboutus .call-to-action .cta-content {
  display: flex;
  flex-direction: column;
  width: 60%;
  gap: var(--text-gap);
}
.aboutus .call-to-action .cta-content .actions {
  display: flex;
  flex-direction: var(--main-flex);
  gap: var(--text-gap);
}
.aboutus .call-to-action .cta-animation {
  width: 40%;
}
@media (max-width: 767px) {
  .aboutus .call-to-action .cta-content {
    width: 100%;
  }
  .aboutus .call-to-action .cta-animation {
    width: 100%;
  }
}

.werdegang .call-to-action {
  z-index: 2;
  display: flex;
  align-items: center;
  gap: var(--main-gap-row);
  flex-direction: var(--main-flex);
  position: relative;
}
.werdegang .call-to-action .cta-content {
  display: flex;
  flex-direction: column;
  width: 60%;
  gap: var(--text-gap);
}
.werdegang .call-to-action .cta-animation {
  width: 40%;
}
@media (max-width: 767px) {
  .werdegang .call-to-action .cta-content {
    width: 100%;
  }
  .werdegang .call-to-action .cta-animation {
    width: 100%;
  }
}
.werdegang .other-work {
  display: flex;
  align-items: center;
  gap: var(--main-gap-row);
  flex-direction: var(--main-flex-changed);
  position: relative;
  background-color: #212121;
  z-index: 1;
}
.werdegang .other-work .cta-content {
  display: flex;
  flex-direction: column;
  width: 60%;
  gap: var(--text-gap);
}
.werdegang .other-work .cta-content p,
.werdegang .other-work .cta-content h2,
.werdegang .other-work .cta-content li {
  color: #ffffff;
}
.werdegang .other-work .cta-animation {
  width: 40%;
}
@media (max-width: 767px) {
  .werdegang .other-work .cta-content {
    width: 100%;
  }
  .werdegang .other-work .cta-animation {
    width: 100%;
  }
}

.kenntnisse .programming-languages {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--main-gap-column);
  background-color: #212121;
  position: relative;
  z-index: 0;
}
.kenntnisse .programming-languages .about-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: var(--text-gap);
  max-width: 1200px;
}
.kenntnisse .programming-languages .about-title h2 {
  text-align: center;
  color: #ffffff;
}
.kenntnisse .programming-languages .about-title p {
  text-align: center;
  color: #ffffff;
}
.kenntnisse .programming-languages .content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: var(--main-gap-row);
  background-color: #212121;
}
@media (max-width: 1435px) {
  .kenntnisse .programming-languages .content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1047px) {
  .kenntnisse .programming-languages .content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 633px) {
  .kenntnisse .programming-languages .content {
    grid-template-columns: 1fr;
  }
}
.kenntnisse .programming-languages .content .card {
  width: 290px;
  height: 354px;
  overflow: visible;
}
.kenntnisse .programming-languages .content .card .content {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 300ms;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.9);
  border-radius: 5px;
  position: relative;
}
.kenntnisse .programming-languages .content .card:hover .content {
  transform: rotateY(180deg);
}
.kenntnisse .programming-languages .content .card .back,
.kenntnisse .programming-languages .content .card .front {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 5px;
}
.kenntnisse .programming-languages .content .card .back {
  background-color: #151515;
  display: flex;
  justify-content: center;
  align-items: center;
}
.kenntnisse .programming-languages .content .card .back .back-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}
.kenntnisse .programming-languages .content .card .back .back-content img {
  width: 70%;
}
.kenntnisse .programming-languages .content .card .back .back-content h3 {
  color: #ffffff;
}
.kenntnisse .programming-languages .content .card .front {
  background-color: #151515;
  transform: rotateY(180deg);
  display: flex;
  justify-content: center;
  align-items: center;
}
.kenntnisse .programming-languages .content .card .front .front-content {
  padding: 10px;
  color: #ffffff;
  text-align: center;
}
.kenntnisse .programming-languages .content .card .front .front-content .badge {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}
.kenntnisse .programming-languages .content .card .front .front-content p {
  color: #ffffff;
}
.kenntnisse .tools-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--main-gap-column);
  position: relative;
  z-index: 1;
}
.kenntnisse .tools-section .tools-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: var(--text-gap);
  max-width: 1200px;
}
.kenntnisse .tools-section .tools-title h2 {
  text-align: center;
}
.kenntnisse .tools-section .tools-title p {
  text-align: center;
}
.kenntnisse .tools-section .image-container {
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  width: 100vw;
  position: relative;
}
.kenntnisse .tools-section .image-container .image-row {
  display: flex;
  animation: marquee 40s linear infinite;
  gap: var(--main-gap-row);
}
.kenntnisse .tools-section .image-container .image-row img {
  width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 10px;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.kenntnisse .call-to-action {
  display: flex;
  align-items: center;
  gap: var(--main-gap-row);
  flex-direction: var(--main-flex);
  position: relative;
  z-index: 1;
}
.kenntnisse .call-to-action .cta-content {
  display: flex;
  flex-direction: column;
  width: 60%;
  gap: var(--text-gap);
}
.kenntnisse .call-to-action .cta-content .img-row {
  display: flex;
  gap: var(--main-gap-row);
  width: 100%;
  align-items: center;
  flex-direction: var(--main-flex);
}
.kenntnisse .call-to-action .cta-content .img-row div {
  display: flex;
  gap: var(--main-gap-row);
}
.kenntnisse .call-to-action .cta-content .img-row div img {
  width: 100px;
  height: 100px;
}
.kenntnisse .call-to-action .cta-animation {
  width: 40%;
}
@media (max-width: 767px) {
  .kenntnisse .call-to-action .cta-content {
    width: 100%;
  }
  .kenntnisse .call-to-action .cta-animation {
    width: 100%;
  }
}

.impressum {
  display: flex;
  flex-direction: column;
  gap: var(--main-gap-column);
}
.impressum .impressum-content {
  display: flex;
  flex-direction: column;
  gap: var(--text-gap);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Große Geräte (Laptops, kleine Desktops) */
@media (max-width: 1199px) {
  h1 {
    font-size: 3.4rem;
  }
  h2 {
    font-size: 2.4rem;
  }
  h3 {
    font-size: 1.45rem;
  }
  p,
  label,
  input,
  textarea,
  select {
    font-size: 1.08rem;
  }
  a {
    font-size: 1.08rem;
  }
}
/* Mittlere Geräte (Tablets) */
@media (max-width: 991px) {
  h1 {
    font-size: 3.25rem;
  }
  h2 {
    font-size: 2.35rem;
  }
  h3 {
    font-size: 1.4rem;
  }
  p,
  label,
  input,
  textarea,
  select {
    font-size: 1.07rem;
  }
  a {
    font-size: 1.07rem;
  }
}
/* Kleine Geräte (Handys im Querformat) */
@media (max-width: 767px) {
  :root {
    --main-flex: column;
    --main-flex-changed: column-reverse;
    --main-gap-row: 2.2rem;
    --text-gap: 1.5rem;
    --main-padding: 15vw 5vw 5vw 5vw;
  }
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.25rem;
  }
  h3 {
    font-size: 1.35rem;
  }
  p,
  label,
  input,
  textarea,
  select {
    font-size: 1.05rem;
  }
  a {
    font-size: 1.05rem;
  }
  .hamburger {
    display: block;
  }
  nav {
    grid-template-columns: 1fr 1fr;
  }
  nav .nav_links ul {
    display: none;
  }
  nav .actions {
    display: none;
  }
  .sideanimation {
    max-width: 450px;
  }
}
/* Extra kleine Geräte (Handys im Hochformat) */
@media (max-width: 575px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  p,
  label,
  input,
  textarea,
  select {
    font-size: 1rem;
  }
  a {
    font-size: 1rem;
  }
}/*# sourceMappingURL=styles.css.map */