/* CTA buttons */
.cta-side-buttons {
  z-index: 999 !important;
  z-index: inherit;
  position: fixed;
  background: var(--light-blue);
  right: 0px;
  top: 25%;
}

.cta-link {
  background: var(--light-blue);
  display: flex;
  justify-content: center;
}

.cta-link:hover {
  background:  var(--dark-blue);
}

.cta-side-buttons a {
  text-decoration: none;
  height: 4.5rem;
  width: 4.5rem;
}

.cta-link img {
  width: 35% !important;
}

.cta-link span {
  z-index: -1;
  max-width: auto;
  position: absolute;
  right: -400%;
  height: 4.5rem;
  /* background-color: #deeaee;
  color: var(--light-blue); */
  background-color: var(--dark-blue);
  color: var(--white);
  white-space: nowrap;
  font-size: 1.1rem;
  padding: 1.5rem;
  text-align: center;
}

.cta-link:hover span {
  animation: ctaAnimation .2s ease-out forwards;
}

@keyframes ctaAnimation {
  from {right: -300%;}
  to {right: 100%;}
}
.cta-bottom {
  box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.2);
  background: var(--white);
}

.cta-wrapper img {
  width: 15%;
  filter: invert(99%) sepia(7%) saturate(2%) hue-rotate(328deg) brightness(250%) contrast(100%);
}

.cta-wrapper a {
  text-decoration: none !important;
}

.cta-wrapper p {
  color: #000;
}

/* .cta-wrapper:hover {
  background: #ccc;
} */

@media(max-width: 768px) {
  .cta-wrapper p {
    font-size: .5rem !important; 
  }
}