/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

/** GS ARROW ANIMATE **/
.gs-arrow-animate .gs-arrow-line,
.gs-arrow-animate .gs-arrow-point {
  fill: currentColor;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.gs-arrow-animate .gs-arrow-line {
  transform-box: fill-box;
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease;
}

.gs-arrow-animate .gs-arrow-point {
  transform-box: fill-box;
  transform: translateX(-30px);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gs-arrow-animate:hover .gs-arrow-line {
  transform: scaleX(1);
  opacity: 1;
}

.gs-arrow-animate:hover .gs-arrow-point {
  transform: translateX(0);
}