@charset "UTF-8";
.goToTop {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgb(58, 58, 58);
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  transform: translate(200%, 0);
}

.pointer {
  cursor: pointer !important;
}

.noteFromDev {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgb(58, 58, 58);
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 20px;
  left: 20px;
}

.progressBar {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: rgb(246, 246, 224);
}

.modal * {
  z-index: 500;
}

.link {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.instagram {
  line-height: 100%;
  background-image: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.navbar {
  height: 55px;
  display: flex;
  justify-content: space-between;
}

.nav-logo {
  font-size: 20px;
  margin-left: 20px;
}

.nav-logo {
  font-size: 20px;
  text-decoration: none;
  color: white;
  margin-left: 20px;
  margin-right: 20px;
}

.btn {
  width: 150px;
  height: 50px;
}
canvas {
  display: block;
}

#particles-js {
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #212529;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.btn-modal-standard-old,
.btn-modal-standard-new {
  width: 200px;
}

.hero-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.hero-btn-wrapper .hero-btn {
  width: 200px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: 5px;
}

.nav-links {
  height: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
  margin-right: 50px;
}
.nav-links * {
  font-size: 20px;
  text-decoration: none;
  color: white;
  margin-left: 20px;
  margin-right: 20px;
}

.h1 {
  font-size: 64px !important;
  line-height: 110%;
}

.qoute-left {
  text-align: start;
  margin-bottom: -30px;
}

.qoute-right {
  text-align: end;
}

.qoute-symbol {
  line-height: 100%;
  background-image: linear-gradient(
    135deg,
    rgb(255, 156, 0) 0%,
    rgb(2, 122, 1) 5%,
    rgb(2, 122, 1) 90%,
    rgb(0, 212, 255) 95%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.font-oswald {
  font-family: "oswald";
}

.qoute {
  color: rgba(0, 0, 0, 0.8);
  margin-top: -50px;
  margin-bottom: 50px;
}

.btn {
  transition: all 0.5s ease;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    rgb(2, 0, 36) 0%,
    rgb(1, 1, 122) 26%,
    rgb(0, 212, 255) 100%
  );
  border: 0;
}

.btn.animated {
  position: relative;
  overflow: hidden; /* Verhindert, dass der Inhalt außerhalb der Grenzen sichtbar ist */
}

.btn.animated::before {
  content: "";
  position: absolute;
  top: -150%; /* Startet außerhalb des sichtbaren Bereichs */
  left: -150%;
  width: 300%; /* Breit genug, um den gesamten Button abzudecken */
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(2, 0, 36, 0) 0%,
    rgba(255, 255, 255, 0.3) 20%,
    rgba(255, 255, 255, 0.3) 80%,
    rgba(0, 212, 255, 0) 100%
  );
  transform: rotate(135deg);
  animation: wave-animation 5s infinite;
}

@keyframes wave-animation {
  0% {
    top: -250%;
    left: -250%;
  }
  100% {
    top: 100%; /* Bewegt sich diagonal nach unten rechts */
    left: 100%;
  }
}
.hero {
  height: calc(100vh - 170px);
}

.color-white {
  color: white;
}

.portfolio-header {
  width: 100%;
}

.portfolio-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 150px;
  margin-bottom: 250px;
}

.portfolio-item {
  width: 30%;
  height: auto;
}

.portfolio-image-wrapper,
.portfolio-item img {
  width: 100%;
}

.portfolio-text * {
  text-align: center;
}

.portfolio-btn {
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.color-fade-aut {
  background-image: linear-gradient(
    90deg,
    rgb(255, 0, 0) 33%,
    rgb(255, 255, 255) 33%,
    rgb(255, 255, 255) 66%,
    rgb(255, 0, 0) 66%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bold {
  font-weight: bold;
}

.about {
  margin-bottom: 150px;
}

.about-info {
  font-size: 20px;
}

.hamburger {
  position: absolute;
  top: 10px;
  right: 10px;
  display: none !important;
}

.nav-links-container {
  width: 50vw;
  display: flex;
  justify-content: end;
  align-items: center;
}

body {
  width: 100vw;
  overflow-x: hidden;
}

.navbar {
  width: 100vw;
}

@media (max-width: 850px) {
  .hero {
    width: 60vw;
  }
  .hero-text {
    font-size: 40px !important;
  }
  .qoute-left {
    margin-bottom: -20px;
  }
}
@media (max-width: 785px) {
  .nav-links-container {
    width: 100vw;
    display: block;
  }
  .hamburger {
    display: inline-block !important;
    width: 24px;
    margin-right: 20px;
  }
  .nav-links {
    flex-direction: column;
    width: 100vw;
    background: #263034;
    padding: 20px;
    display: none;
  }
  .nav-links * {
    margin: 10px;
  }
}
footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 50px 0;
} /*# sourceMappingURL=index.css.map */
