.backgroundToBlur{
  transition: 0.5s;
}
.backgroundToBlur.active{
  filter: blur(5px);
  pointer-events: none;
  user-select: none;
  transition: 0.5;
}
#learnMorePopupStandard{
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 5px 30px rgba(0,0,0,.30);
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  z-index: 4;
}
#learnMorePopupStandard.active{
  top: 50%;
  visibility: visible;
  opacity: 1;
  transition: 0.5s;
}
#learnMorePopupPremium{
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 5px 30px rgba(0,0,0,.30);
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  z-index: 4;
}
#learnMorePopupPremium.active{
  top: 50%;
  visibility: visible;
  opacity: 1;
  transition: 0.5s;
}
#learnMorePopupGoal{
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 5px 30px rgba(0,0,0,.30);
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  z-index: 4;
}
#learnMorePopupGoal.active{
  top: 50%;
  visibility: visible;
  opacity: 1;
  transition: 0.5s;
}
#contactMePopup{
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 5px 30px rgba(0,0,0,.30);
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  z-index: 4;
}
#contactMePopup.active{
  top: 30%;
  visibility: visible;
  opacity: 1;
  transition: 0.5s;
}