/*
 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
*/

:root {
	--border-radius: 2rem;
	--border-dark: rgb(51, 73, 91);
	--border-light: #ddd;
	--inner-spacing: 1rem;
	--tagline-font: clamp(1rem, calc(0.2173913043vw + 1.1304347826rem), 1.125rem);
	--tagline-spacing: 2px;
}

img {
	border-radius: var(--border-radius);
}

.accent-heading{
	background: linear-gradient(90deg, var(--primary), #ea9465, var(--primary), #ea9465);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
@keyframes gradient{
	0% {
		background-position: 0 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0 50%;
	}
}