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

/*
 CUSTOM CSS STYLES
 AUTHOR: SHUVRO SARKAR
*/

/*
 ANIMATIONS
*/

.brx-animate-rf-clip-path {
  animation: rfClipPathBottomToTop 1.2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
}

@keyframes rfClipPathBottomToTop {
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}