/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

/** CHAR REVEAL **/

.charReveal {
  font-family: 'Bebas Neue', Arial, sans-serif !important;
  font-size: 50px!important;
  font-weight:600;
  text-transform: uppercase;
  margin: 0;
  position: relative;
  overflow: hidden;
  line-height: 50px!important;
 
}
.charReveal  > div {
  position: relative;
  margin: 0;
}
.split-parent {
  overflow: hidden;
}
.split-child {
  display: inline-block;
}
.text-heading {
  width: 900px;
}
.charReveal {
  width: 900px;
}

/** MOUSE CURSOR HOVER CIRCLE **/

.ball {
  width: 50px;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  border: 3px solid dodgerblue;
  border-radius: 50%;
  pointer-events: none;
  z-index:999;
}

.hover-circle{
  cursor:none!important;
  cursor: url(path/to/custom-cursor.svg), auto;

}
.hover-scale:hover{

  transform: scale(1.1);
  transition: transform 0.3s ease;
}