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

/*base*/

html {
font-size: 62.5%;
}



/* Sticky elements */

@media only screen and (min-width: 993px) {
.sticky-s {
position: -webkit-sticky;
position: sticky!important;
top: 2rem;
}
}

@media only screen and (min-width: 993px) {
.sticky-m {
position: -webkit-sticky;
position: sticky;
top: 4rem;
}
}

@media only screen and (min-width: 993px) {
.sticky-l {
position: -webkit-sticky;
position: sticky;
top: 8rem;
}
}

@media only screen and (min-width: 993px) {
.sticky-xl {
position: -webkit-sticky;
position: sticky;
top: 10rem;
}
}

/*gaps*/

.gap-xxs {
	gap: 0.5rem;
}

.gap-xs {
	gap: 1rem;
}

.gap-s {
	gap: 2rem;
}

.gap-m {
	gap: 3rem;
}

.gap-l {
	gap: 4rem;
}

.gap-xl {
	gap: 6rem;
}

.gap-xxl {
	gap: 8rem;
}
.gap-section {
	gap: clamp(3.5rem, 1.563vw + 3rem, 6rem);
}
.mb-sm-4 {
	margin-bottom: clamp(2.4rem, 1.5vw + 1.92rem, 4.8rem);
}

.pointer {
	cursor: pointer;
}

/*** SHADOWS ***/

.shadow-s {
box-shadow: var(--box-shadow-s);
}

.shadow-m {
	box-shadow: var(--box-shadow-m);
}

.shadow-l {
	box-shadow: var(--box-shadow-l);
}

.shadow-xl {
	box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.shadow-e {
	box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.drop-1 {
	filter: drop-shadow(20px 10px 10px rgba(13, 38, 59, 0.1));
   
}

/*** TRANSITIONS ***/

.trans-s {
	transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
}

.trans-b {
	transition: all ease-in-out .8s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.25);
}

/*** BORDER-RADIUS ***/

.border-xxs {
	border-radius: 0.4rem;
}

.border-xs {
	border-radius: 0.6rem;
}

.border-s {
	border-radius: 0.8rem;
}

.border-m {
	border-radius: 1.2rem;
}
 
.border-l {
	border-radius: 1.8rem;
}

.border-xl {
	border-radius: 2.4rem;
}

.border-xxl {
	border-radius: 5rem;
}

.border-100 {
	border-radius: 100%;
}
.border-solid-1 {
	border: 1px solid #e0e5eb;
}
.border-trans {
	border-color: transparent;
}

/*** PADDINGS ***/

.padding-xxs {
	padding: .5rem;
}
.padding-xs {
	padding: .75rem;
}
.padding-s {
	padding: 1rem;
}

.padding-m {
	padding: 2rem;
}


.padding-l {
	padding: 3rem;
}

.padding-xl {
	padding: 4rem;
}

.padding-xxl {
	
	padding: 6rem;
}

@media (max-width: 992px) {
 .padding-xxl {
	padding: 4rem;
}
}

@media (max-width: 768px) {
 .padding-xxl {
	padding: 3rem;
}
}

@media (max-width: 767px) {
.padding-xxl {
	padding: 2rem;
}
}

@media (max-width: 480px) {
 .padding-xl {
	padding: 2rem;
}
.padding-xxl {
	padding: 1rem;
}	
}

/*** WIDTH ***/

.half-w {
	width: 50%;
}
.full-w {
	width: 100%;
}

.full-h {
	height: 100%;
}

.color-text {
	color: #727272
}

.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-3 {
	font-weight: 300;
}
.text-4 {
	font-weight: 400;
}
.text-5 {
	font-weight: 500;
}
.text-6 {
	font-weight: 600;
}

/*** FLEX ***/

.flex-h {
    display: flex;
    flex-direction: row;
}

.flex-v {
    display: flex;
    flex-direction: column;
}
.space-b {
	justify-content: space-between;
}

.align-c {
	align-items: center;
}
.flex-w {
	flex-wrap: wrap;
}
.flex-n-w {
	flex-wrap: nowrap;
}
/*** Grids ***/





/*** colors ***/

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

.c-black {
	color: var(--black);
}

.c-primary {
	color: var(--primary);
}

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

.c-back {
	color: var(--back);
}
/*** backgrounds ***/

.b-n-300 {
	background: var(--neutral-300);
}

.b-white {
	background: var(--white);
}
.b-black {
	background: var(--black);
}

.b-primary {
	background: var(--primary);
}

.b-secondary {
	background: var(--secondary);
}
.b-tertiary {
	background: var(--tertiary);
}
.c-heading {
	color: var(--heading);
}
.b-heading {
	background: var(--heading);
}
.b-transparent {
	background: transparent;
}
/*** aspect ratio ***/

.ratio-1x1 {
    aspect-ratio: 1;
}
/*** position ***/

.ov-hidden {
    overflow: hidden !important;
}
.p-relative {
	position: relative;
}
.p-absolute {
	position: absolute;
}
.p-fixed {
	position: fixed;
}
.top-0 {
	top: 0;
}
.bottom-0 {
	bottom: 0;
}
.left-0 {
	left: 0;
}
.right-0 {
	right: 0;
}
.align-i-start {
    align-items: flex-start;
}
.translate-middle-x {
    transform: translateX(-50%);
}
/*** texts ***/
.text-xs {
	font-size: 1.2rem;
}
.text-s {
	font-size: 1.4rem;
}
.text-m {
	font-size: 1.6rem;
}
.text-l {
	font-size: 1.8rem;
}
.text-xl {
	font-size: 2rem;
}
.text-xxl {
	font-size: 2.2rem;
}
.h1s {
	font-size: clamp(3.2rem, 1.5vw + 2.72rem, 5.6rem);
}
.h2s {
	font-size: clamp(2.4rem, 0.5vw + 2.24rem, 3.2rem);
}
.h3s {
	font-size: clamp(2rem, 0.5vw + 1.84rem, 2.8rem);
}
.h4s {
	font-size: clamp(1.8rem, 0.375vw + 1.68rem, 2.4rem);
}
.h5s {
	font-size: clamp(1.7rem, 0.313vw + 1.6rem, 2.2rem);
}
.h6s {
	font-size: clamp(1.6rem, 0.25vw + 1.52rem, 2rem);
}
.b-rare {
	background: purple;
}

/*index*/

.z1 {
	z-index: 1;	
}
.z2 {
	z-index: 2;	
}
.z3 {
	z-index: 3;	
}

/*** END FRAMEWORK ***/