#big-cta-section .big-cta__heading, #big-cta-section .big-cta__subheader--title {
  text-decoration: none;
  text-transform: uppercase;
  -moz-osx-font-smoothing: antialiased;
}
#big-cta-section .big-cta__heading--enlarge, #big-cta-section .big-cta__subheader--title--enlarge {
  margin-bottom: 3rem;
  transform: scale(1);
  transition: 0.2s;
}
#big-cta-section .big-cta__subheader--wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#big-cta-section .big-cta__subheader--title {
  color: var(--white);
}
#big-cta-section .big-cta__subheader--icon {
  width: 4rem;
  height: 4rem;
  stroke: var(--white);
  stroke-linejoin: round;
  stroke-width: 2;
  margin-left: 2rem;
  transform: rotate(0deg);
  transition: 0.2s;
}
#big-cta-section .big-cta__subheader--wrapper:hover .big-cta__subheader--title {
  color: var(--white);
  text-decoration: underline;
}
#big-cta-section .big-cta__subheader--wrapper:hover .big-cta__subheader--icon {
  transform: rotate(45deg);
  transition: 0.2s;
}
#big-cta-section :hover .big-cta__heading--enlarge {
  margin-bottom: 6rem;
  transform: scale(1.4);
  transition: 0.2s;
}
@media (max-width: 600px) {
  #big-cta-section .big-cta__heading--enlarge {
    transform: scale(0.75);
  }
  #big-cta-section:hover .big-cta__heading--enlarge {
    transform: scale(1);
  }
}
