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

.c-white {
	color: var(--white);
}
.c-secondary {
	color: var(--secondary);
}

.text-600 {
	font-weight: 600;
}

.line-effect-link {
  display: inline;
    background-image: linear-gradient(transparent calc(100% - 2px), var(--primary) 1px);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    background-position: right;
    -webkit-transition: all 500ms ease-in-out;
  }
  .line-effect-link:hover {
  background-size: 100% 100%;
  }

.mb-4 {
	margin-bottom: 4rem;
}

.mt-4 {
	margin-top: 4rem;
}