/* :root {
    --primary: #252f52;
    --secondary: #fc5778;
    --dark--text: #212121;
    --dark--bg: #262626;
    --light--text: #fff;
    --light--bg: #fefefe;

    --clr-button__bg: #252f52;
    --clr-button__txt: #f9f9e3;
    --clr-button__bg-hover: #faf7e2;
    --clr-button__txt-hover: #162c39;
    --clr-button--outline: #252f52;
} */

html {
    font-size: 10px;
}

body {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--clr-text-body);
}

:where(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
    font-weight: 600;
    line-height: 1.2;
}

h1,
.h1 {
    font-size: 5.6rem;
}

h2,
.h2 {
    font-size: 3.2rem;
}

h3,
.h3 {
    font-size: 2.8rem;
}

h4,
.h4 {
    font-size: 2.4rem;
}

h5,
.h5 {
    font-size: 2rem;
}

h6,
.h6 {
    font-size: 1.8rem;
}

.brxe-section {
    padding-inline: clamp(18px, 4vw, 100px);
}

.brxe-container {
    width: 1280px;
}

.bricks-button {
    padding: 13px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1.5rem;
    text-align: center;
    border-radius: 999px;
    color: var(--clr-text-light);
    border: 1px solid var(--clr-primary);
    background-color: var(--clr-primary);
    transition: all .3s ease-in-out;
}

.bricks-button.bricks-background-primary {
    color: var(--clr-text-light);
    border-color: var(--clr-primary);
    background-color: var(--clr-primary);
}

.bricks-button.bricks-background-secondary {
    color: var(--clr-primary);
    border-color: var(--clr-primary);
    background-color: transparent;
}

.bricks-button:hover {
    color: var(--clr-text-body);
    border-color: var(--clr-text-body);
    background-color: var(--clr-light);
}

.bricks-button svg path {
    stroke: currentColor;
}

/* ==================
	GRAVITY FORM
================= */
.gform_wrapper.gform-theme--foundation {
	--gform-fields-gap: 20px;
	--gform-field-padding-block: 12px;
	--gform-field-padding-inline: 16px;
	--gform-field-label-font-size: 14px;
	--gform-field-input-font-size: 14px;
}

.gform_wrapper.gform-theme--foundation .gform_confirmation_message {
    padding: 15px;
	text-align: center;
    color: var(--bricks-text-success);
    background-color: var(--bricks-bg-success);
}

.gform_wrapper.gform-theme--foundation .gform_validation_errors {
	display: none;
}

.gform_wrapper.gform-theme--foundation .gform_heading {
    margin-bottom: 30px;
}

.gform_wrapper.gform-theme--foundation .gform_title {
    margin-bottom: 16px;
}

.gform_wrapper.gform-theme--foundation .gform_description {
    margin: 0;
}

.gform_wrapper.gform-theme--foundation .gform_required_legend {
	display: none;
}

.gform_wrapper.gform-theme--foundation form .gform_fields {
	gap: var(--gform-fields-gap);
}

.gform_wrapper.gform-theme--foundation form .gfield :where(input, select, textarea) {
	outline: none !important;
}

.gform_wrapper.gform-theme--foundation form .gfield .validation_message {
	display: none;
}

.gform_wrapper.gform-theme--foundation form .gfield select {
	color: inherit;
}

.gform_wrapper.gform-theme--foundation form .gfield input:not([type="checkbox"]):not([type="radio"]),
.gform_wrapper.gform-theme--foundation form .gfield :where(select, textarea) {
	border-radius: 12px;
	border-width: 1px;
	border-style: solid;
	border-color: var(--clr-text-body);
}

.gform_wrapper.gform-theme--foundation form .gfield.gfield_error input:not([type="checkbox"]):not([type="radio"]),
.gform_wrapper.gform-theme--foundation form .gfield.gfield_error :where(select, textarea) {
    border-color: var(--gf-color-danger);
}

.gform_wrapper.gform-theme--foundation form .gform-footer {
	position: relative;
    width: max-content;
}

.gform_wrapper.gform-theme--foundation form .gform-footer .gform_button.button[type="submit"] {
    padding: 13px 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 500;
    min-width: 125px;
	border-radius: 999px;
	outline: none !important;
	color: var(--clr-text-light);
	border: 1px solid var(--clr-primary);
	background-color: var(--clr-primary);
	transition: all .3s ease-in-out;
}

.gform_wrapper.gform-theme--foundation form .gform-footer .gform_button.button[type="submit"]:hover {
	color: var(--clr-text-body);
	border-color: var(--clr-text-body);
	background-color: var(--clr-light);
}

.gform_wrapper.gform-theme--foundation form .gform-footer .gform-loader {
	position: absolute;
	left: 50%;
	border-block-end-color: var(--clr-primary);
    border-inline-start-color: var(--clr-primary);
}

@media (max-width: 1024px) {
    h1,
    .h1 {
        font-size: 4.4rem;
    }
}

@media (max-width: 767px) {
    h1,
    .h1 {
        font-size: 3.2rem;
    }

    h2,
    .h2 {
        font-size: 2.8rem;
    }

    h3,
    .h3 {
        font-size: 2.4rem;
    }
}