:root {
	--light-gold: #FDBD6F;
	--dark-gold: #DDA266;
	--brown-gold: #A9957B;
	--orange: #C56F59;
	--grey: #EEEEEE;
	--black: #000000;
	--white: #FFFFFF;
	--brown: #564545;
	--dark-grey: #484848;
}


/* CSS RESET */

*, *::after, *::before {
	box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

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

/* BASE TEXT STYLES */

body {
	font-family: "Lato", sans-serif;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.6;
}

p {
	line-height: 1.8;
}

h1,h2,h3,h4,h6 {
	font-family: 'Merriweather', serif;
}

h1 {
	font-size: 3.3125rem;
	font-weight: 700;
	line-height: 1.417;
}

.Text__section-title {
	font-size: 2.125rem;
	line-height: 1.5;
}

.Text__body--large {
	font-size: 1.3rem;
	line-height: 1.5;
}

.Text__body--title {
	font-weight: bold;
}
.Text__body--light {
	font-weight: 300;
}

a {
	font-weight: 400;
	text-decoration: none;
}

a:link {
	color:var(--black);
	transition: all .5s;
}

a:visited {
	color: var(--black);
}

a:hover {
	color: var(--light-gold);
}

a:active {
	color: var(--light-gold);
}

/* CONTAINER STYLES */
.Container {
	margin: auto;
	max-width: 1400px;
	padding-left: 50px;
	padding-right: 50px;
}

.Container--smaller {
	max-width: 700px;
}
.Container--sml {
	max-width: 812px;
}
/* HEADER STYLES */

.Header {
	background: var(--white);
	border-bottom: 1px solid var(--grey);
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}

.Header.is-open .Header__nav {
	flex: 1;
}

.Header.is-open .Logo__caret {
	transform: rotate(180deg);
}

.Header.is-open > .Container {
		height: 100vh;

}

.Header > .Container {
	display: flex;
	height: 50px;
	flex-direction: column;
	overflow: hidden;
	transition: all .5s .3s;

}

.Header__nav {
	width: 100%;

}

.Header__logo {
		flex: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (min-width: 1150px) {
	.Header {
		position: static;
	}
	.Header > .Container {
		align-items: center;
		flex-direction: row;
		height: initial;
		justify-content: space-between;
	}

	.Header__logo, .Header__nav {
		flex: 0 0 auto !important;
		width: initial !important;
	}
}

/* LOGO */

.Header__logo a {
	pointer-events: none;
}
.Logo {
	width: 86px;
}

.Logo__caret {
	margin-left: 10px;
	transition: all .1s;
	width: 13px;;
}

.Logo__caret path {
	stroke: var(--orange);
}

@media screen and (min-width: 1150px) { 
	.Header__logo a {
		pointer-events: initial;
	}
	.Logo__caret {
		display: none;
	}
	.Logo {
		width: 150px;
	}
}

/* NAV STYLES */

.Nav {
	margin-top: 30px;
}

@media screen and (min-width: 1150px) {
	.Nav {
		align-items: center;
		display: flex;
		margin-top: 0;
	}
}

/* LINKS STYLES */
.Link__item {
	text-align: center;
	margin-bottom: 30px;
}

.Link__link {
	padding-bottom: 5px;
	position: relative;
}
.Link__link--active::after {
	background: var(--brown-gold);
	bottom: 0;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	right: 0;
}

@media screen and (min-width: 1150px) {
	.Link__item {
		margin: 0 2.25rem 0 0;
	}

	.Link__item:last-child {
		margin: 0;
	}

	.Link__link {
		display: inline-block;
		padding: 2.25rem 0;
	}
}

/* BUTTON STYLES */

.Button {
	background: var(--black);
	border: none;
	border-radius: 5px;
	color: var(--white);
	display: inline-block;
	font-size: .875rem;
	font-weight: bold;
	padding: 1.25rem .875rem;
	text-align: center;
	min-width: 172px;
	transition: all .5s;
}

.Button:hover {
	opacity: .8;
	transform: translateY(-5px);
}

.Button.Button--brown-gold {
	background: var(--brown);
	color: var(--light-gold);
}

.Button.Button--orange-white {
	background: var(--orange);
	color: var(--white);
}

.Button.Button--gold-white {
	background: var(--light-gold);
	color: var(--white);
}
.Button.Button--browngold-white {
	background: var(--brown-gold);
	color: var(--white);
}

/* STRUCTURE */

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.Main {
	padding-top: 51px;
	flex: 1 0;
}

@media screen and (min-width: 1150px) {
	.Main {
		/* padding-top: 60px; */
		padding-top: 0px;
	}
}

/* FOOTER STYLES */

.Footer {
	padding: 30px 20px;
	padding-bottom:0px;
}

.Footer .Container {
	display: flex;
	flex-direction: column;
}

@media screen and (min-width: 1150px) {
	.Footer .Container {
		align-items: flex-start;
		flex-direction: row;
		justify-content: space-between;
	}
}

/* LIST STYLES */

.List {
	margin-bottom: 30px;
}

.List__title {
	display: block;
	font-weight: bold;
	margin-bottom: 1rem;
}

.List__item {
	margin-bottom: .8rem;
	display: flex;
	justify-content: center;
}

.List__item:last-child {
	margin-bottom: 0;
}

.Footer .List .List__link {
	font-weight: 300;
}
@media screen and (min-width: 1150px) {
	.List {
		margin-bottom: 0;
	}

	.List__item {
		display: block;
	}

	.List.List--footer {
		align-items: flex-start;
		display: flex;
		justify-content: center;
	}

	.List.List--footer > * {
		margin-right: 3rem;
	}

	.List.List--footer > .List__item:last-child {
		margin: 0;
	}

	.List.List--last {
		align-self: stretch;
		/*flex-direction: column;*/
		display: inline-block;;
		/*justify-content: space-between;*/
	}
}

.List--last .List__item:first-child {
	margin-bottom: 18px;
}

.legal {
	font-size: .7rem;
	transform: translateY(35px);
	display: block;
	text-align: center;
}

/* ABOUT PAGE STYLES */
.image {
	display: none;
}

.Main--about {
	background: var(--white);
}

.Main--about h1 {
	font-size: 2.5rem;
}

.Main--about p {
	margin-bottom: 2rem;
}

@media screen and (min-width: 1150px) {
	.image {
		margin-bottom: 60px;
		background: var(--white) url(/images/about.jpg) no-repeat;
		background-size: cover;
		display: block;
		height: 344px;
	}
	.Main--about {
		padding: 0;
	}

	.Main--about h1 {
	font-size: 3rem;
}

}

/* CTA */

.CTA {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 60px;
}

.CTA--about {
	background: var(--brown-gold);
	color: white;;
}
.CTA--home {
	background: var(--brown);
	color: white;;
}

.CTA__title {
	color: inherit;
	margin-bottom: 30px;
	text-align: center;
}
.CTA__actions {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.CTA__action {
	text-align: center;
}

.CTA__action:first-child {
	margin-bottom: 20px;
}

@media screen and (min-width: 1150px) {
	.CTA__actions {
		display: flex;
		flex-direction: row;
		justify-content: center;
	}

	.CTA__action:first-child {
		margin-right: 40px;
		margin-bottom: 0;
	}
}

/* CONTACT US PAGE */
.Main--contact {
	background: var(--orange);
}

.Main--contact .Text__section-title,
.Main--contact p{
	color: var(--white);
	text-align: center;
}

.Main--contact .Text__section-title{
	margin-bottom: 15px;
}

.Main--contact .content {
	margin-bottom: 60px;
}

@media screen and (min-width: 1150px) {
	.Main--contact {
		padding-top: 30px;
	}
}

/* FORM */

.Form {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 60px;
}

.Form__input-container {
	display: flex;
	flex-direction: column;
	margin-bottom: 30px;
}

.Form__input-name {
	color: var(--white);
	margin-bottom: 20px;
}

.Form__input-field {
	border: none;
	border-radius: 5px;
	padding: 15px 15px;
	font-size: 1rem;
}


.Form__input-field:focus {
	outline: none;
}

.Form__button {
	align-self: center;
}

/* PARTNER LOGIN STYLES */
.Main--partnerLogin {
	background: var(--dark-grey);
	color: var(--white);
	padding: 20px;
	padding-top: 100px;
}

.Main--partnerLogin .Form__button {
	align-self: flex-start;
}

.Main--partnerLogin .section--form {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.Main--partnerLogin .Form {
	max-width: 387px;
	width: 100%;
}

.Main--partnerLogin p {
	margin-bottom: 60px;
	margin-top: 15px;
}

@media screen and (min-width: 1150px) {
	.Main--partnerLogin {
		padding: 0;
		min-height: 100vh;
		display: flex;;
	}
	.Main--partnerLogin .section--form {
		align-items: flex-start;
		width: 50%;
	}

	.Main--partnerLogin .section--image {
		width: 50%;
		background: var(--black) url(/images/partlogin.jpg) no-repeat;
		background-size: cover;
		order: -1;
	}

	.Main--partnerLogin .Form,
	.Main--partnerLogin .section--title {
		margin-left: 25%;
	}
}

/* HOME PAGE STYLES */

.Main--home {
	color: var(--white);
}

.Main--home .gateway {
	padding-bottom: 60px;
	padding-top: 60px;
	background: var(--orange);
}

.Main--home .Text__section-title,
.Main--home p{
	color: var(--white);
	text-align: center;
}

.Main--home .Text__section-title{
	margin-bottom: 15px;
}

.Main--home .content {
	margin-bottom: 60px;
}
.Main--home .content p {
	max-width: 661px;
	margin: auto;
}

.CTA--home .CTA__title {
	max-width: 570px;
	margin-left: auto;
	margin-right: auto;
}

.schemes {
	padding-bottom: 60px;
	padding-top: 60px;
}

.schemes ul {
	align-items: center;
	display: flex;
	flex-direction: column;
}

.schemes a {
	display: block;
	line-height: 0;
}
.schemes li {
	max-width: 200px; 
}
.schemes li{
	margin-bottom: 30px; 
}

.schemes li:last-child{
	margin-bottom: 0;;
}

@media screen and (min-width: 1150px) {
	.schemes ul {
		flex-direction: row;
		justify-content: center;
		align-items: center;
	}

	.schemes li{
		margin-right: 60px;
		margin-bottom: 0;
	}

	.schemes li:last-child{
	margin-bottom: 0;;
	margin-right: 0;
}
}

.options {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.option {
	max-width: 354px;
	margin-bottom: 60px;
}

.option .Text__body--title,
.option .Text__body--light {
	text-align: left;
}

@media screen and (min-width: 1150px) {
	.options {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}

	.option {
		margin-bottom: 0;
	}
}

.hero {
	background: var(--brown-gold) url(/images/hero.jpg) no-repeat;
	background-size: cover;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero__content {
	transition: all 1s;
	transform: translateY(100px);
	opacity: 0;
}

.hero__content.is__ready {
	transform: translateY(0);
	opacity: 1;
}

.hero__content p {
	text-align: left;
	margin: 30px 0 60px;
	max-width: 731px;
}

.hero__content  h1 {
	font-size: 2.7rem;
	max-width: 1024px;
}

.hero__content  h1 br {
	display: none;
}

@media screen and (min-width: 731px) {

	.hero__content {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.hero__content  h1 br {
	display: block;
}
	.hero__content p, 
	.hero__content h1 {
	text-align: center;
}

}

/* PARTNER WITH US PAGE */

.CTA--partner {
	background: var(--dark-grey);
	color: var(--white);
}

.CTA--partner .CTA__title {
	max-width: 1000px;
	margin-right: auto;
	margin-left: auto;
}

.Main--partnerWithUs .intro,
.Main--partnerWithUs .features {
	background: var(--grey);
}

.Main--partnerWithUs .intro .Container {
	padding-top: 60px;
	padding-bottom: 60px;
	display: flex;
	justify-content: center;
}

.Main--partnerWithUs .intro .image{
	display: none;
}

@media screen and (min-width: 747px) {
	.Main--partnerWithUs .intro .body {
		max-width: 600px;
	}
}

@media screen and (min-width: 1150px) {

.Main--partnerWithUs .intro {
	position: relative;
	display: flex;
	justify-content: flex-end;
}

.Main--partnerWithUs .intro .image {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 50%;
	bottom: 0;
	background: var(--black) url(/images/intro.jpg) no-repeat;
	background-size: cover;
	margin: 0;
	height: 100%;
}


.Main--partnerWithUs .intro .Container {
	width: 50%;
	margin: 0;
}

.Main--partnerWithUs .intro .body {
		max-width: 100%;
	}

}

.Main--partnerWithUs .intro .body ul {
	margin: 30px 0;
	list-style: square inside;
}

.Main--partnerWithUs .intro .body l{
	margin-bottom: 15px;
}



.Main--partnerWithUs .features h2{
	margin-bottom: 30px;
	max-width: 848px;
}

.Main--partnerWithUs .feature .feature-title {
	margin-bottom: 15px;
}

.Main--partnerWithUs .features .Container:first-child,
.Main--partnerWithUs .process .Container:first-child {
	display: flex;
	justify-content: center;
}

.Main--partnerWithUs .features .feature,
.Main--partnerWithUs .process .step  {
	max-width: 510px;
	margin: auto;
	margin-bottom: 60px;
}

.Main--partnerWithUs .features {
	padding-bottom: 30px;
}

.Main--partnerWithUs .process {
	background: var(--brown);
	color: var(--white);
	padding-bottom: 60px;
	padding-top: 60px;
}

.Main--partnerWithUs .process .Container:first-child {
	flex-direction: column;
}

.Main--partnerWithUs .process h2{
	max-width: 878px;
}

.Main--partnerWithUs .process .Container:first-child p {
	margin: 30px 0 60px;
}

.Main--partnerWithUs .process .step-image {
	width: 51px;
	margin-bottom: 30px;
}

.Main--partnerWithUs .process .step-title {
	margin-bottom: 15px;
}

.Main--partnerWithUs .process .step-body {
	max-width: 354px;
}

.step a {
	display: block;
	color: var(--light-gold) !important;
	text-decoration: underline;
}

.question-body a {
	color: var(--light-gold) !important;
	text-decoration: underline;
}

.Main--partnerWithUs .faq {
	padding-top: 60px;
	background: var(--dark-grey);
	color: var(--white);
}

.Main--partnerWithUs .features.faq .Container:first-child{
	flex-direction: column;
	align-self: center;
}

.Main--partnerWithUs .features.faq .Container:first-child h2 {
	max-width: 100%;
	text-align: center;
	margin: 0;
}

.Main--partnerWithUs .features.faq .Container:first-child p {
	text-align: center;
	margin-bottom: 60px;
	margin-top: 15px;
}

.question {
	max-width: 540px!important;
}
.question .question-title {
	display: flex;
	align-items: flex-start;
	margin-bottom: 30px;
	cursor: pointer;
}

.question-title span {
	flex: 1;
}

.question svg path {
	stroke: var(--dark-gold);
}
.question svg {
	width: 50px;
	transition: all .5s;
}

.question-body {
	height: 0;
	overflow: hidden;
	transition: all .5s .3s;
}

.question-body p {
	margin-bottom: 25px;
}

.question-body p:last-child {
	margin: 0;
}

.question.is-open svg {
	transform: rotate(180deg);
}


@media screen and (min-width: 1150px) {

	.Main--partnerWithUs .features {
	padding-top: 80px;
}
	.Main--partnerWithUs .features .Container:first-child {
		justify-content: flex-end;
	}

	.Main--partnerWithUs .features h2 {
		text-align: right;
	}

	.Main--partnerWithUs .features .Container:last-child {
		display: flex;
		justify-content: center;
		align-items: stretch;
	}

	.Main--partnerWithUs .features .feature-container:first-child {
		margin-right: 79px;
	}

	.Main--partnerWithUs .features .feature-container {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	.Main--partnerWithUs .features .feature {
		margin-top: 0
	}

		.Main--partnerWithUs .process .Container:first-child {
		justify-content: flex-start;
	}

	.Main--partnerWithUs .process .steps {
		display: flex;
	}

	.Main--partnerWithUs .process .step {
		width: calc(100%/3);
		margin: 0;
	}

	.Main--partnerWithUs .process .step .step-image {
		z-index: 1;
		position: relative;
		margin-top: -25px;

	}

	.Main--partnerWithUs .process .step .step-body {
		max-width: 300px;
	}

	.Main--partnerWithUs .process .step {
		position: relative;
	}

	.Main--partnerWithUs .process .step::before {
		content: "";
		position: absolute;
		top: 0;
		right: -10px;
		left: 4px;
		height: 2px;
		background: white;
	}

	.Main--partnerWithUs .process .step::after {
		content: url(/images/Polygon\ 1.png);
		position: absolute;
		bottom: 100%;
		left: 70%;
		transform: translateY(65%);
	}

	.Main--partnerWithUs .process .step:last-child::before,
	.Main--partnerWithUs .process .step:last-child::after
	{
		display: none;;
	}
}

/* Slideshow container */

.Slideshow {
	margin: auto;
	max-width: 900px;
	padding: 60px;
}

.Slideshow__slides-container {
	display: flex;
	width: 100%;
}

.Slideshow__slide {
	display: none;
	height: 100%;
	margin: auto;
	width: 100%;
}


.Slideshow__slide.is-active {
	display: block;
	animation-name: fade;
	animation-duration: .5s;
}

@keyframes fade {
	from {
		opacity: .3;
		transform: translateY(100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.Slideshow__navigation-container {
	margin-top: 60px;
	text-align: center;
}

.Slideshow__control {
	background: var(--light-gold);
	border-radius: 50%;
	display: inline-block;
	height: 15px;
	opacity: .2;
	transition: all .5s;
	width: 15px;
}

.Slideshow__control:nth-child(2) {
	margin: 0 10px;
}

.Slideshow__control:hover {
	opacity: .5;
}

.Slideshow__control.is-active {
	opacity: 1;
	pointer-events: none;
}

.Testimonial {
	align-items: center;
	justify-content: center;
	display: flex;
	flex-direction: column;
	min-height: 50vh;
}

.Testimonial__body-container {
	align-items: center;
	display: flex;
	justify-content: center;
	flex: 1;
}

.Testimonial__body {
	position: relative;
	z-index: 1;
}

.Testimonial__quote-image {
	position: absolute;
	top: -40px;
	left: -30px;
	z-index: -1;
	width: 121px;

}

.Testimonial__metadata {
	align-self: flex-end;
	flex: 0;
	margin-top: 30px;
}

.Testimonial__metadata>* {
	display: block;
	text-align: right;
}

.Testimonial__name {
	color: var(--dark-gold);
	font-weight: bold;
}

/* NEW ENQUIRIES PAGE */
.Main--partnerEnquiries {
	background: var(--brown);
	color: var(--white);
}

.Main--partnerEnquiries h2, 
.Main--partnerEnquiries p {
	text-align: center;
}

.Main--partnerEnquiries h2 ~ p {
	margin: 15px 0 10px;
}

.main__load {
transition: all 0.5s; 
}
.main__success {
transition: all 0.5s;
transform: translateY(100px);
opacity: 0;
display: none;
}

/* States */

.main__success.is-loaded {
transform: translateY(0);
opacity: 1;
}


.page__main.is-success .main__success { 
	display: block;
}

.page__main.is-success .main__load {
transform: translateY(100px);
opacity: 0;
}

.form {
	position: relative;
	max-width: 950px ;
	margin: auto;
	margin-bottom: 60px;
}
.form__container {
	display: flex;
	flex-direction: column;
}
.form__inputs-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

@media screen and (min-width: 1150px ) {
	.form__inputs-container {
	flex-direction: row;
	justify-content: space-between;
	margin-bottom: 10px;
}

.form__input-container.form__input-container--long {
	max-width: 100%;
}
}

.form__button {
	align-self: center;
}
.form__input {
	border: 2px solid transparent;
	border-radius: 5px;
	padding: 15px 15px;
	font-size: 1rem;
	margin-right: 5px;
}


.form__input-container {
	display: flex;
	flex-direction: column;
	margin-bottom: 40px;
	max-width: 424px;
	width: 100%;
}


.form__input-container label {
	color: var(--white);
	margin-bottom: 20px;
	font-weight: bold;
}


.form__input:focus {
	outline: none;
}


.form__input-container {
  position: relative;
}

.form__message {
  color: firebrick;
  opacity: 0;
  transition: all 0.5s;
  transform: translateY(50px);
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  font-weight: bold;
}

.form__message.is-showing {
  opacity: 1;
  transform: translateY(0);
}

.form__input.was-attempted:not(:focus):invalid {
  border-color: firebrick;
}
.form__input.was-attempted:valid {
  border-color: green;
}

@media screen and (min-width: 1150px) {
	.Main--partnerEnquiries {
		padding-top: 30px;
	}

}

.main__success {
	padding-top: 60px;;
}

.main__success .Container {
	text-align:  center;
	min-height: 55vh;
	margin-top: 60px;
}

.main__success  p:nth-child(2) {
	margin: 30px 0;
}

.Banner {
	display: block;
}
.main__load_new_partner{
    transition: all 0.5s;
    
}
.main__load_new_partner_review{
    transition: all 0.5s;
    float:left;
    width:50%;
    padding: 30px;
}

#yext-widget-287442.yext-reviews .reviews-widget-wrapper, .yext-widget-popup-287442.yext-reviews .reviews-widget-wrapper{
    max-width: 200px !important;
    min-width: 150px !important;
    background: #564545;
}
#yext-widget-287442.yext-reviews .review-footer .review-footer-title {
    display: none;
    align-self: center;
    font-size: 20px;
    margin-top: 25px;
}
#yext-widget-287442.yext-reviews .review-footer .review-footer-content .partner-reviews-wrapper .partner-reviews {
    opacity: 1;
    display: inherit;
    flex-direction: column;
    align-items: center;
    color: white;
}
#yext-widget-287442.yext-reviews .review-header{
    display:none !important;
}
#mc_embed_signup form {
    display: block;
    position: relative;
    text-align: left;
    padding: 5px 0 10px 3% !important;
}
#mc_embed_signup {
    background: #fff;
    clear: left;
    font: 14px Helvetica,Arial,sans-serif;
    width: 300px !important;
}
#mc_embed_signup .button {
    
    background-color: #c56f59 !important;
    font-weight: bold !important;
    font-size: 14px !important;
}
._2LpwQ___Wrapper__cls1._1cMla___Wrapper__media-tablet-up {
     margin-top: 0px !important; 
    margin-bottom: 0px !important;
}
._2LpwQ___Wrapper__cls1._1cMla___Wrapper__media-tablet-up{
    margin-top: 0px !important; 
}
#yext-widget-287442.yext-reviews .review-footer {
    display: flex;
    flex-direction: column;
    margin: 0px !important;
}
#yext-widget-287442.yext-reviews {
    box-sizing: border-box;
    margin: 0 auto;
    text-align: -webkit-center !important;
}
#yext-widget-287442.yext-reviews, .yext-widget-popup-287442.yext-reviews{
    background-color: transparent !important;
}
