/* ------------------------------------- 
		GLOBAL 
------------------------------------- */
* {
	margin: 0;
	padding: 0;
}

* {
	font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
}

img {
	max-width: 100%;
}

.collapse {
	margin: 0;
	padding: 0;
}

body {
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: none;
	width: 100% !important;
	height: 100%;
	background: #f4f3ef;
	margin: 0 !important;
	padding: 0;
}

.main-table {
	background: #f4f3ef;
	width: 100%;
	height: 100%;
}

.marg {
	margin: 10vh auto;
	border-radius: 13px;
}

.roundtop {
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
	background: #4fcbc5;
	width: 100%;
}

.header-logo {
	display: inline-block;
	border: 0px solid #ffffff;
	margin: -3px 6px 13px;
	width: 164px;
	padding: 0px 0 8px
}

.header-text {
	color: #ffffff;
	text-align: center;
	font-weight: normal;
	padding: 19px;
	font-family: Roboto, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
	font-weight: 300;
	margin: 0px 0px 1em;
	font-size: 22px;
}


.max-wide {
	width: 100%;
	padding: 0 20px;
	text-align: center;
}

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

.white-bod {
	background: #ffffff;
	border-bottom-right-radius: 11px;
	border-bottom-left-radius: 11px;
	box-shadow: 0 7px 9px rgba(0, 0, 0, 0.1);
}

#welcome-banner {
	color: #ffffff;
	text-decoration: none;
	border-radius: 65px;
	display: inline-block;
	background: #f48d46;
	box-shadow: 0px 3px 5px #00000026;
	position: relative;
	top: 14px;
	height: 37px;
	line-height: 0px;
}

.bgbg {
	margin: -3px;
	padding: 0px;
	border-radius: 21px;
	background: #f4f3ef;
	width: 100%;
}

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

html {
	font-family: sans-serif;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba($black, 0);
}


article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
	display: block;
}



body {
	margin: 0; // 1
	font-family: $font-family-base;
	@include font-size($font-size-base);
	font-weight: $font-weight-base;
	line-height: $line-height-base;
	color: $body-color;
	text-align: left; // 3
	background-color: $body-bg; // 2
}


[tabindex="-1"]:focus {
	outline: 0 !important;
}



hr {
	box-sizing: content-box; // 1
	height: 0; // 1
	overflow: visible; // 2
}


h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: $headings-margin-bottom;
}

p {
	margin-top: 0;
	margin-bottom: $paragraph-margin-bottom;
}



abbr[title],
abbr[data-original-title] {
	text-decoration: underline;
	text-decoration: underline dotted;
	cursor: help;
	border-bottom: 0;

}

address {
	margin-bottom: 1rem;
	font-style: normal;
	line-height: inherit;
}

ol,
ul,
dl {
	margin-top: 0;
	margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
	margin-bottom: 0;
}

dt {
	font-weight: $dt-font-weight;
}

dd {
	margin-bottom: .5rem;
	margin-left: 0;
}

blockquote {
	margin: 0 0 1rem;
}

b,
strong {
	font-weight: $font-weight-bolder;
}

small {
	@include font-size(80%);
}


sub,
sup {
	position: relative;
	@include font-size(75%);
	line-height: 0;
	vertical-align: baseline;
}

sub {
	bottom: -.25em;
}

sup {
	top: -.5em;
}



a {
	color: $link-color;
	text-decoration: $link-decoration;
	background-color: transparent;

	@include hover {
		color: $link-hover-color;
		text-decoration: $link-hover-decoration;
	}
}



a:not([href]):not([tabindex]) {
	color: inherit;
	text-decoration: none;

	@include hover-focus {
		color: inherit;
		text-decoration: none;
	}

	&:focus {
		outline: 0;
	}
}



pre,
code,
kbd,
samp {
	font-family: $font-family-monospace;
	@include font-size(1em);
}

pre {

	margin-top: 0;

	margin-bottom: 1rem;

	overflow: auto;
}


figure {
	margin: 0 0 1rem;
}


img {
	vertical-align: middle;
	border-style: none;
}

svg {
	overflow: hidden;
	vertical-align: middle;
}


table {
	border-collapse: collapse;
}

caption {
	padding-top: $table-cell-padding;
	padding-bottom: $table-cell-padding;
	color: $table-caption-color;
	text-align: left;
	caption-side: bottom;
}

th {
	text-align: inherit;
}



label {
	display: inline-block;
	margin-bottom: $label-margin-bottom;
}


button {
	border-radius: 0;
}


button:focus {
	outline: 1px dotted;
	outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
	margin: 0;
	font-family: inherit;
	@include font-size(inherit);
	line-height: inherit;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

select {
	word-wrap: normal;
}

button,
[type="button"],
// 1
[type="reset"],
[type="submit"] {
	-webkit-appearance: button; // 2
}

// Opinionated: add "hand" cursor to non-disabled button elements.
@if $enable-pointer-cursor-for-buttons {

	button,
	[type="button"],
	[type="reset"],
	[type="submit"] {
		&:not(:disabled) {
			cursor: pointer;
		}
	}
}

// Remove inner border and padding from Firefox, but don't restore the outline like Normalize.
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	padding: 0;
	border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
	box-sizing: border-box;
	padding: 0;
}


input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
	-webkit-appearance: listbox;
}

textarea {
	overflow: auto;
	resize: vertical;
}

fieldset {
	min-width: 0;
	padding: 0;
	margin: 0;
	border: 0;
}

legend {
	display: block;
	width: 100%;
	max-width: 100%; // 1
	padding: 0;
	margin-bottom: .5rem;
	@include font-size(1.5rem);
	line-height: inherit;
	color: inherit; // 2
	white-space: normal; // 1
}

progress {
	vertical-align: baseline;
}

// Correct the cursor style of increment and decrement buttons in Chrome.
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {

	outline-offset: -2px; // 2. Correct the outline style in Safari.
	-webkit-appearance: none;
}



[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}



::-webkit-file-upload-button {
	font: inherit;
	-webkit-appearance: button;
}



output {
	display: inline-block;
}

summary {
	display: list-item;
	cursor: pointer;
}

template {
	display: none;
}


[hidden] {
	display: none !important;
}

td#td-1 {
	padding: 24px 0 0px;
}

table#table-1 {
	text-align: center;
}

td#td-2 {
	border-bottom: 1px solid #ffffff85;
}

table#table-2 {
	text-align: center;
}

span#span-1 {
	font-style: bold;
	text-decoration: underline;
	font-weight: 900;
}

table#table-3 {
	width: 0;
	height: 0;
	border-left-width: 8px;
	border-left-color: transparent;
	border-left-style: solid;
	border-right-width: 8px;
	border-right-color: transparent;
	border-right-style: solid;
	border-bottom-width: 8px;
	border-bottom-color: #ffffff;
	border-bottom-style: solid;
}

td#td-3 {
	border-top-width: 1px;
	border-top-color: #e0e0e0;
	border-top-style: solid;
	padding: 6px 0 12px;
}

table#table-4 {
	text-align: left;
}

td#td-4 {
	width: 100%;
	text-align: center;
	font-family: sqmarket-bold, Helvetica, sans-serif;
	font-weight: bold;
	border-radius: 4px;
	font-size: 11px;
	line-height: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: #00a79d;
}

tr#tr-1 {
	vertical-align: top;
}

td#td-5 {
	font-size: 0px;
	line-height: 0px;
	vertical-align: top;
}

tr#tr-2 {
	vertical-align: top;
}

td#td-6 {
	padding: 48px 0px;
}

p#p-1 {
	font-family: Roboto, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
	font-weight: 900;
	font-size: 18px;
	color: rgb(138, 149, 158);
	letter-spacing: 0px;
	line-height: 38px;
	text-align: left;
}

img.star {
	width: 31px;

	padding: 3px;

	position: relative;

	top: -3px;

	display: inline-flex;

}
}

img#img-2 {
	width: 31px;

	padding: 3px;

	position: relative;

	top: -3px;

	display: inline-flex;

}
}

img#img-3 {
	width: 31px;

	padding: 3px;

	position: relative;

	top: -3px;

	display: inline-flex;

}
}




table#table-5 {
	text-align: left;
}

table#table-6 {
	text-align: left;
	padding-top: 25px;
}

tbody#tbody-1 {
	padding-top: 7px;
}

tr#tr-3 {
	padding-top: 7px;
}

td#td-7 {
	border-top-width: 1px;
	border-top-color: #e0e0e0;
	border-top-style: solid;
	padding: 12px 6px 13px;
}

table#table-7 {
	text-align: left;
}

p#p-4 {
	font-family: Roboto, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: rgb(138, 149, 158);
	letter-spacing: 0px;
	line-height: 38px;
	text-align: center;
}

p.p-5 {
	font-family: Roboto, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
	font-weight: 300;
	margin: 0px 0px 1em;
	font-size: 16px;
	color: rgb(138, 149, 158);
	letter-spacing: 0px;
	line-height: 27px;
	text-align: center;
}

.icon-img {
	width: 41px;
}

.p-13 {
	font-family: Roboto, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
	font-weight: 300;
	margin: 0px 0px 1em;
	font-size: 16px;
	color: rgb(255, 255, 255);
	letter-spacing: 0px;
	line-height: 27px;
	text-align: left;
	padding: 0px 27px;
}

#p-10 {
	font-family: Roboto, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
	font-weight: 300;
	font-size: 11px;
	color: rgb(138, 149, 158);
	letter-spacing: 0px;
	text-align: center;
}

.p-6 {
	font-family: Roboto, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
	font-weight: 300;
	margin: 0px 0px 0px 54px;
	font-size: 16px;
	color: rgb(138, 149, 158);
	letter-spacing: 0px;
	line-height: 23px;
	text-align: left;
	position: relative;
	top: -45px;
}



td#td-8 {
	padding: 8px 0 24px;
}

table.m_5279903282028454211buttonTable#table-8 {
	text-align: center;
}

table#table-9 {
	text-align: center;
}

td#td-9 {
	width: 100%;
	text-align: center;
	font-family: sqmarket-bold, Helvetica, sans-serif;
	border-radius: 4px;
	font-size: 14px;
	line-height: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: #ffffff;
	font-weight: 500;
}

a#a-1 {
	color: #ffffff;

	text-decoration: none;

	border-radius: 65px;

	display: inline-block;

	background: #f48d46;

	padding: 16px 26px;

	box-shadow: 0px 3px 5px #00000026;
}

p#p-6 {
	font-family: Roboto, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
	font-weight: 300;
	font-size: 11px;
	color: rgb(138, 149, 158);
	letter-spacing: 0px;
	line-height: 22px;
	text-align: center;
	padding-top: 33px;
}

table.roundbottom#table-10 {
	background: #4fcbc5;
	max-height: 44px;
}

td#td-10 {
	width: 100%;
}

td#td-11 {
	/* padding: 3px 0 0px;
     */
	;
}

table#table-11 {
	text-align: center;
}

td#td-12 {
	color: #ffffff;
	text-align: center;
	font-size: 13px;
	line-height: 24px;
	font-family: Helvetica, sans-serif;
	font-weight: normal;
	padding: 5px;
}

#header-sub-text {
	color: #ffffff;
	text-align: center;
	font-size: 13px;
	line-height: 24px;
	font-family: Helvetica, sans-serif;
	font-weight: normal;
}

a#a-2 {
	color: white;
}

table.roundbottom#table-12 {
	background: #545454;
	border-radius: 0px 0px 12px 12px;
}

td#td-13 {
	width: 100%;
	padding: 0 20px;
}

table#table-13 {
	background: #545454;
}

td#td-14 {
	padding: 10px 14px 0;
}

td#td-15 {
	padding: 6px 5px 0px;
}

a#a-3 {
	text-decoration: none;
}

img#img-4 {
	display: block;
	width: 19px;
	height: 19px;
}

td#td-16 {
	padding: 6px 5px 0px;
}

a#a-4 {
	text-decoration: none;
}

img#img-5 {
	display: block;
	width: 19px;
	height: 19px;
}

td#td-17 {
	padding: 6px 5px 0px;
}

a#a-5 {
	text-decoration: none;
}

img#img-6 {
	display: block;
	width: 19px;
	height: 19px;
}

td#td-18 {
	padding: 4px 0 0px;
}

table#table-14 {
	text-align: center;
}

td#td-19 {
	color: #ffffff;
	text-align: center;
	font-size: 13px;
	line-height: 24px;
	font-family: Helvetica, sans-serif;
	font-weight: normal;
	padding-bottom: 13px;
}

table#table-15 {
	width: 0;
	height: 0;
	border-left-width: 8px;
	border-left-color: transparent;
	border-left-style: solid;
	border-right-width: 8px;
	border-right-color: transparent;
	border-right-style: solid;
	border-bottom-width: 8px;
	border-bottom-color: #ffffff;
	border-bottom-style: solid;
}

table#table-16 {
	background: #f0f2f500;
}

td#td-20 {
	text-align: center;
	padding: 0 20px;
}

td#td-21 {
	padding: 0px 0 -1px;
}

table#table-17 {
	text-align: center;
}

td#td-22 {
	padding: 0px;
	margin: 0px auto;
	line-height: 1px;
	font-size: 1px;
	font-size: 0px;
	line-height: 1px;
	padding: 0px;
}

td#td-23 {
	padding: 0px;
	margin: 0px auto;
	line-height: 1px;
	font-size: 1px;
	font-size: 0px;
	line-height: 1px;
	padding: 0px;
}

td#td-24 {
	padding: 0px;
	margin: 0px auto;
	line-height: 1px;
	font-size: 1px;
	font-size: 0px;
	line-height: 1px;
	padding: 0px;
}

td#td-25 {
	padding: 0px;
	margin: 0px auto;
	line-height: 1px;
	font-size: 1px;
	font-size: 0px;
	line-height: 1px;
	padding: 0px;
}

td#td-26 {
	padding: 39px 20px 0;
}

td#td-27 {
	padding: 6px 5px 26px;
}

td#td-28 {
	padding: 50px;
}

table#table-18 {
	/* width: 550px;
     */
	margin: 0 auto;
}

@media only screen and (max-width: 600px) {

	a[class="btn"] {
		display: block !important;
		margin-bottom: 10px !important;
		background-image: none !important;
		margin-right: 0 !important;
	}

	div[class="column"] {
		width: auto !important;
		float: none !important;
	}

	table.social div[class="column"] {
		width: auto !important;
	}

	body {
		height: 100%;
		margin: 0px;
	}

	.marg {
		margin: 0px;
		border-radius: 13px;
		width: 100%
	}

	.roundtop {
		background: #4fcbc5;
		border-top-right-radius: 0px;
		border-top-left-radius: 0px;
		margin-top: -5px;
	}

	.white-bod {
		background: #ffffff;
		border-bottom-right-radius: 0px;
		border-bottom-left-radius: 0px;
		box-shadow: 0 19px 9px rgba(0, 0, 0, 0.1);
	}

	td#td-6 {
		padding: 47px 19px;
	}

	table.roundbottom#table-12 {
		background: #545454;
		border-radius: 0px;
	}
}

a#a-2 {
	color: #ffffff;
	text-decoration: none;
	border-radius: 65px;
}

p#sub-title {
	font-family: Roboto, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
	font-weight: 300;
	margin: 0px 0px 1em;
	font-size: 16px;
	color: rgb(138, 149, 158);
	letter-spacing: 0px;
	line-height: 27px;
	text-align: left;
	font-style: italic;
}

#p-3 {
	font-family: Roboto, -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
	font-weight: 300;
	margin: 0px 0px 32px;
	font-size: 16px;
	color: rgb(138, 149, 158);
	letter-spacing: 0px;
	line-height: 27px;
	text-align: left;
}
