/* Shapes
==================================== */
#shapes {
  padding: 0;
  opacity: 0.6;
}

.sty-bg-shape {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.sty-shape-1 {
  top: -10%;
  left: -10%;
  width: 80vw;
  height: 80vw;
  background: var(--primary-color);
  opacity: 0.25;
}

.sty-shape-2 {
  bottom: 10%;
  right: -10%;
  width: 80vw;
  height: 70vw;
  background: var(--secondary-color);
  opacity: 0.15;
}

@media (min-width: 769px) {
  #page-header .level_1 {
    background: inherit;
  }

  .sty-shape-1 {
    width: 50vw;
    height: 60vw;
    opacity: 0.1;
  }

  .sty-shape-2 {
    width: 50vw;
    height: 50vw;
    opacity: 0.08;
  }
}

/* Floatings
==================================== */
.sty-floating-badge {
  position: absolute;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  border-radius: 50px;
  z-index: 5;
}

.sty-floater {
  position: absolute;
  background: white;
  padding: 0.5rem 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-float);
  display: flex;
  align-items: center;
  z-index: 10;
  animation: float 2s ease-in-out infinite;
}

.sty-floater-1 {
  top: 10%;
  right: 20px;
}

.sty-floater-2 {
  bottom: 10%;
  left: 20px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Cards
==================================== */
.sty-badge-line {
  display: flex;
  align-items: flex-end;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.sty-badge-line > h2 {
  margin: 0;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--primary-color);
  width: fit-content;
  line-height: 1.2;
}

.sty-badge-line .sty-line {
  flex-grow: 1;
  height: 2px;
  background-color: var(--secondary-color);
  border-radius: 2px;
  margin-bottom: 0;
}

.sty-glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--backdrop-blur);
  -webkit-backdrop-filter: var(--backdrop-blur);
  border: var(--glass-border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.sty-card {
  position: relative;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
}

.sty-about {
  border-bottom-right-radius: 6rem;
  overflow: visible;
  padding: 0.5rem;
}

.sty-about .sty-img-about {
  border-radius: 1rem;
  border-bottom-right-radius: 5rem;
}
