@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
.plink {
  background-image: url("plink.gif");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  transition: ease all .5s;
  z-index: -1;
}

@media screen and (max-width: 1200px) {
  .plink {
    background-image: url("plink90.gif");
    transition: ease all .5s;
    font-size: 14px;
  }
}

button {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  height: 100%;
  transition: ease all .5s;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  border: none;
  background-color: transparent;
  background: transparent;
  color: transparent;
}

p,a { 
  font-style: italic; 
  font-family: sans-serif; 
  font-size: 11px;

  bottom: 0; 
  right: 1rem; 

  color: #111; 
  z-index: 999;
}

.context-button {
  position: relative;
  width: 150px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  border: 1px solid #2b8040;
  background-color: #3aa856;
}

.context-button, .button__icon, .button__text {
  transition: all 0.3s;
}

.context-button .button__text {
  transform: translateX(30px);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 800;
}

.context-button .button__icon {
  position: absolute;
  transform: translateX(109px);
  height: 100%;
  width: 39px;
  background-color: #3aa856;
  display: flex;
  align-items: center;
  justify-content: center;
}

.context-button .svg {
  width: 30px;
  stroke: #fff;
}

.context-button:hover {
  background: #34974d;
}

.context-button:hover .button__text {
  color: transparent;
}

.context-button:hover .button__icon {
  width: 148px;
  transform: translateX(0);
}

.context-button:active .context-button {
  background-color: #3aa856;
}

.context-button:active {
  border: 1px solid #3aa856;
}