:root {
  --c-bg: #fff;
  --c-bg--hard: hsl(0, 0%, 88%);
  --c-shadow: hsl(0, 0%, 31%);
}

.btns-cont {
  position: absolute;
  bottom: 0;
  opacity: 0;
}

.active .section .btns-cont {
  animation: animate-btns-cont--1 0.5s 0.1s ease-in-out forwards;
}

@keyframes animate-btns-cont--1 {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.my-btn {
  font-size: 0.8rem;
  padding: 0.3rem 1.2rem;
  border-radius: 1rem;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
color:#2d2d2d;
position: absolute;
  
  bottom: 0;
}

.my-btn-primary {
  background-color: var(--c-bg);
  transition: 0.2s ease-in-out all;

  &:hover {
    background-color: var(--c-bg--hard);
    box-shadow: 0 0.2rem 0.5rem var(--c-shadow);
  }
}
