#proyects {
  scroll-margin: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 25px;
}

.subTittle {
  color: var(--azul-intenso);
  font-size: 22px;
  text-align: center;
}

.proyects--container {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;

  transform: translateY(200px);
  opacity: 0;
  animation: showUpProjects both;
  animation-timeline: view(70% 20%);
}

@keyframes showUpProjects {
  from {
    transform: translateY(200px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

.proyects--card {
  position: relative;
  background-color: transparent;
  color: var(--font-color);
  border-radius: 15px;
  height: 600px;
  width: 500px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;

  transition: color 1s ease;
}
.proyects--card::after {
  position: absolute;
  content: "";
  width: 70%;
  left: 20px;
  bottom: 35px;
  height: 2px;
  background-color: var(--bg-color);
  z-index: 1;
}
.proyects--card::before {
  clip-path: circle(50px at -50px -25px);
  border-radius: 15px;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;

  background-color: var(--inverted-bg-color);
  transition: clip-path 1s ease;
  will-change: clip-path;
}
.proyects--card:hover::before {
  clip-path: circle(1000px at top left);
}
.proyects--card:hover {
  color: var(--inverted-font-color);
}

.proyects--card h3 {
  font-size: 32px;
  z-index: 1;
}

.proyects--card p {
  z-index: 1;
}

.proyects--logo {
  border-radius: 15px;
  background-color: var(--casi-blanco);
  padding: 15px;
  width: 400px;
  min-height: 271px;
  height: auto;
  z-index: 1;
}

.proyects--logo-linkedin {
  bottom: 18px;
  right: 15px;
  position: absolute;
  width: 38px;
  height: 38px;
  fill: var(--bg-color) !important;
  color: var(--bg-color) !important;
}

.svg-link {
  bottom: 11px;
  right: 70px;
  transform: rotate(-40deg);
  position: absolute;
  color: var(--bg-color);
  height: 48px;
  width: 48px;
}
