/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 08 2024 | 21:54:06 */
/* KEY VARIABLES */
img {
	border-radius: var(--border-radius);
}

/* SITEWIDE CSS OPTIONS */
body, .wrapper {
	background: var(--color-p2);
}
.two-col .evlt-paragraph__text {
	column-count: 2;
}

.two-col .evlt-paragraph__text ul {
	margin-block-start: 0px;
}

.checklist ul {
	list-style: none;
	margin-left: -20px;
}

.checklist li {
	font-family: var(--medium-font-family);
}

.checklist li::before {
	content: url('http://listbetter.com.au/wp-content/uploads/2023/09/Bullet-2.svg');
	position: relative;
    left: 0;
	top: 2px;
    margin-right: 10px;
}

/* BTN DEFAULTS */
.btn-group {
	gap: 20px;
}
.btn-group > .btn {
    width: fit-content;
	min-width: unset;
}
.btn-group > .btn:not(:last-child) {
    margin-right: unset;
}
.btn, .gform_button {
	display: flex;
	padding: 10px 30px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	color: var(--bg-color);
	text-align: center;
	font-family: var(--bold-font-family);
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px; /* 150% */
	height: unset;
	border-radius: 50px;
	background: var(--color-p1);
	width: fit-content;
	max-width: unset;
}

.btn::after, .gform_button::after {
    content: url(http://humaine.ai/wp-content/uploads/2024/01/arrow-right.svg);
    margin-left: 0px;
    height: 24px;
}
.btn.btn-outline {
	border: 2px solid var(--color-p1);
	background: transparent;
}

/* RESPONSIVE STYLES */
@media (max-width: 1600px) {
	:root {
		--container-max-width: calc(100vw - (2 * var(--padding-width)));
	}
}