/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/


/*** GENERAL ***/

/* Parallax Mouse Move */
.hwr-parallax-item {
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

/* Button Styles */
.bricks-button {
	position: relative;
	z-index: 1;
}

.bricks-button:hover {
  transform: translateY(-4px);
  box-shadow: 0px 4px 0 #000;
}

.bricks-button:focus {
  transform: translateY(-2px);
  box-shadow: 0px 2px 0 #000;
}

.bricks-background-primary::after {
  content: "";
  position: absolute;
  width: calc(100% - 3px);
  height: calc(100% - 3px);
  border-radius: 100px;
  background: var(--yellow);
  right: 0;
  top: 0;
  z-index: -2;
}

.bricks-background-secondary::after {
  content: "";
  position: absolute;
  width: calc(100% - 3px);
  height: calc(100% - 3px);
  border-radius: 100px;
  background: var(--blue);
  right: 0;
  top: 0;
  z-index: -2;
}