/* Variables... */
/* Color naming -> https://chir.ag/projects/name-that-color/#6195ED */
:root {
  --red-amaranth: #ec2752;
}

.tp-btn.bg-red-amaranth {
  background-color: var(--red-amaranth) !important;
}

.tp-btn.bg-red-amaranth:hover {
  background-color: var(--tp-theme-primary) !important;
}

.cursor-pointer {
  cursor: pointer;
}

.tp-hero-title {
  font-size: 60px;
}

.bg-grey {
  background-color: var(--tp-grey-1);
}

.hover-grow {
  transition: transform .25s ease;
}

.hover-grow:hover {
  transform: scale3d(1.1, 1.1, 1.1);
}