* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
	border: 0;
}

img {
	max-width: 100%;
	height: auto;
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
	transition: color .2s linear;
	position: relative;
	color: inherit;
}

p {
	line-height: 1.83;
}

hr {
	height: 3px;
	background: url('../images/horizontal-line.svg') no-repeat;
	background-size: 100% 100%;
	margin: 20px 0;
}

.flow a {
	color: #a62548;
	text-decoration: underline;
}

.flow a.no-underline {
	text-decoration: none;
}

.flow ul li {
	position: relative;
	padding: 2px 0 2px 17px;
}

.flow ul li:before {
	content: "";
	position: absolute;
	top: 8px;
	left: 0;
	height: 7px;
	width: 7px;
	background: #a62548;
	border-radius: 50%;
}

.flow ul li li:before {
	width: 5px;
	height: 5px;
	border: 1px solid #a62548;
	background: transparent;
}

.gpnf-row-actions ul li:before {
	content: none !important;
}

figure,
.bg-cover {
	background-size: cover;
	background-position: center center;
}

.flow > * + * {
	margin-top: 20px;
}

.flow-30 > * + * {
	margin-top: 30px;
}

.flow-40 > * + * {
	margin-top: 40px;
}

section > .container {
	position: relative;
}

section > .container.static {
	position: static;
}

.embellishment {
	position: absolute;
	pointer-events: none;
}

.responsive-embed {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
}

.responsive-embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.transition-all {
	transition: all .2s ease;
}

.read-more,
.flow .read-more {
	font-weight: 900;
	color: #993149;
	font-size: 12px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	text-decoration: none;
}

.tab-content ul,
.sidebar-content-groups .flow ul {
	margin-left: 0;
}

.checkmark-list-item,
.flow .checkmark-list-item,
.excluded-list-item,
.flow .excluded-list-item {
	list-style: none;
	padding: 10px 0 10px 40px;
	background-position: 0px 7px;
	background-repeat: no-repeat;
	background-size: 28px;
}

.checkmark-list-item,
.flow .checkmark-list-item {
	background-image: url('../images/gold-checkmark.png');
}

.checkmark-list-item:before,
.flow .checkmark-list-item:before,
.excluded-list-item:before,
.flow .excluded-list-item:before {
	content: none;
}

.excluded-list-item,
.flow .excluded-list-item {
	background-image: url('../images/circle-x.png');
	color: #b8b7ac;
	font-weight: 600;
}

.max-w-3\/4 {
	max-width: 75%;
}

.max-h-3\/4 {
	max-height: 75%;
}

.flow blockquote {
	background: #fff;
	box-shadow: 0 10px 25px 0 rgba(0,0,0,0.10);
	padding: 25px 30px;
	font-family: solano-gothic-pro-mvb, sans-serif;
	font-size: 24px;
	color: #2E3F50;
	text-transform: uppercase;
	text-align: left;
	margin-top: 30px;
}

.flow blockquote > p {
	line-height: 1.45;
}

.flow blockquote + * {
	margin-top: 30px;
}

.carousel__button.is-close {
  width: 40px;
  height: 40px;
  border: 3px solid #a62548;
  border-radius: 0;
  margin: 50px 10px 0 0;
}

.carousel__button.is-close svg {
  stroke: #284051;
  filter: none;
  stroke-width: 3px;
  stroke-linecap: butt;
}

.grid {
	display: grid;
}

.grid-cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gap-4 {
	gap: 16px;
}

.object-cover {
	object-fit: cover;
}

.aspect-5-4 {
	aspect-ratio: 5 / 4;
}

@media screen and (min-width: 768px) {
  .alignleft {
    float: left;
    margin-top: 8px;
    margin-right: 20px;
    margin-bottom: 10px;
  }
}