/*
=======================================================
Typography
=======================================================
*/
body {
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.625rem;
	text-rendering: optimizeLegibility;
}
p, .body-text {
	font-size: 1rem;
	line-height: 1.625rem;
	color: #606069;
	letter-spacing: .005em;
}
.line-break {
	display: block;
	height: 1em;
}
.inline-code {
    font-family: consolas, monospace;
    padding: 2px 5px 1px;
    border: 1px solid #c0c0c9;
    border-radius: 2px;
    color: #606069;
    font-size: .9375em;
    white-space: nowrap;
}
strong {
  	font-weight: 700;
}
.callout-text {
	display: block;
	font-size: 1.5rem;
	line-height: 2.25rem;
	margin: 2.25rem 0;
	color: #303039;
}
.callout-text.orange {
	color: #ff5933;
}
.callout-text.blue {
	color: #5995f7;
}
.callout-text.green {
	color: #19d374;
}
.callout-text.purple {
	color: #9351e5;
}
.caption {
	font-size: .8125rem;
	line-height: 1.375rem;
	letter-spacing: .015em;
	color: #808089;
}
.caption--left {
	text-align: left;
}
.caption--right {
	text-align: right;
}
::selection {
	background: #202029;
	color: #ffffff;
}
::-moz-selection {
	background: #202029;
	color: #ffffff;
}
/*
-------------------------------------
Headers
-------------------------------------
*/
h1, h2, h3, h4, h5 {
	color: #303039;
	/*font-family: 'Oswald', sans-serif;
	font-weight: 700;
	text-tranform: uppercase;*/

}
/* Bebas--  ANTON Styles FOR DISPLAY TEXT */
.display {
	font-family: 'Anton', sans-serif;
	font-weight: 400;
	text-transform: uppercase;
}

/* Lato styles */
h1 {
	font-size: 3.5rem; /* 56px -- was 48px/3rem */
	line-height: 3.625rem;
	margin: 3.625rem 0 1.625rem 0;
	font-weight: 700;
}
h2 {
	font-size: 2.5rem; /* 40px -- was 32px/2rem */
	line-height: 2.625rem;
	margin: 2.625rem 0 1.5rem 0;
	font-weight: 700;
}
h3 {
	font-size: 1.5rem; /* 24px */
	line-height: 2.125rem;
	margin: 2.125rem 0 1.25rem 0;
	font-weight: 700;
}
h4 {
	font-size: 1rem; /* 16px */
	line-height: 1.625rem;
	margin: 2rem 0 1rem 0;
	font-weight: 700;
}
h5 {
	font-size: .8125rem; /* 13px */
	line-height: 1.625rem;
	text-transform: uppercase;
	margin: 1.875rem 0px .625rem 0;
	letter-spacing: .025em;
}
/*h1.reset,
h2.reset,
h3.reset,
h4.reset,
h5.reset {
	margin: 0;
	padding: 0;
}*/
/*
-------------------------------------
Lists
-------------------------------------
*/
ul, ol {
	margin: 1.375rem 0;
	line-height: 1.625rem;
	/*letter-spacing: .005em;*/
}
ul {
	list-style: disc;
	margin-left: 1.25rem;
}
ul ul, ul ol, ol ul, ol ol {
	margin-top: 0;
	margin-bottom: 0;
}
ol {
	list-style: decimal-leading-zero;
	margin-left: 2em;
}
ol ol {
	list-style: lower-alpha;
    margin-left: 1.25em;
}
.horizontal-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.horizontal-list li {
	display: inline-block;
	vertical-align: top;
}
/*ul.reset,
ol.reset {
	list-style: none;
	margin: 0;
	padding: 0;
}*/
/*
=======================================================
Components
=======================================================
*/
/*
-------------------------------------
Links
-------------------------------------
*/
.link {
	color: #ff5933;
	display: inline-block;
	position: relative;
	margin: 10px 0;
}
.link::after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 0%;
	height: 1px;
	background: #ff5933;

	-moz-transition: 	all .25s ease-out;
	-o-transition: 		all .25s ease-out;
	-ms-transition: 	all .25s ease-out;
	-webkit-transition: all .25s ease-out;
	transition: 		all .25s ease-out;
}
.link:hover::after {
	width: 100%;
}
/*
-------------------------------------
Inline Links
-------------------------------------
*/
.inline-link {
	color: #ff5933;
	padding: 0 2px 3px;
	overflow: hidden;
	position: relative;

	-moz-transition: 	color .25s ease-out;
	-o-transition: 		color .25s ease-out;
	-ms-transition: 	color .25s ease-out;
	-webkit-transition: color .25s ease-out;
	transition: 		color .25s ease-out;

}
.inline-link::before {
	position: absolute;
	content: '';
	top: 0;
	right: 0;
	width: 0%;
	height: 1px;
	background: #ff5933;

	-moz-transition: 	all .25s ease-out;
	-o-transition: 		all .25s ease-out;
	-ms-transition: 	all .25s ease-out;
	-webkit-transition: all .25s ease-out;
	transition: 		all .25s ease-out;
}
.inline-link::after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 0%;
	height: 1px;
	background: #ff5933;

	-moz-transition: 	all .25s ease-out;
	-o-transition: 		all .25s ease-out;
	-ms-transition: 	all .25s ease-out;
	-webkit-transition: all .25s ease-out;
	transition: 		all .25s ease-out;
}
.inline-link:hover {
	color: inherit;
}
.inline-link:hover::before {
	width: 100%;
}
.inline-link:hover::after {
	width: 100%;
}
/*
-------------------------------------
Buttons
-------------------------------------
*/
.btn {
    min-width: 8.75rem;
    padding: .5em 1.5625rem;
    margin: .625rem;
    display: inline-block;
    background: #c0c0c9;
    color: #ffffff;
    text-align: center;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.625rem;
    transition: background .2s ease-in;
    -webkit-transition: background .2s ease-in;
}
.btn-orange {
	background: #ff5933;
}
.btn-orange:hover,
.btn-orange:focus {
	background: #ff8575;
}
.btn-blue {
	background: #5995f7;
}
.btn-blue:hover,
.btn-blue:focus {
	background: #8AB5F9;
}
.btn-green {
	background: #19d374;
}
.btn-green:hover,
.btn-green:focus {
	background: #36e78c;
}
.btn-purple {
	background: #9351e5;
}
.btn-purple:hover,
.btn-purple:focus {
	background: #b07eec;
}
/*********** button outlined **********/
.btn-orange--o {
	background: transparent;
	border: 1px solid #ff5933;
	color: #ff5933;
	transition: all .2s ease-in;
	-webkit-transition: all .2s ease-in;
}
.btn-orange--o:hover,
.btn-orange--o:focus {
	background: #ff5933;
	color: #ffffff;
}
.btn-blue--o {
	background: transparent;
	border: 1px solid #5995f7;
	color: #5995f7;
	transition: all .2s ease-in;
	-webkit-transition: all .2s ease-in;
}
.btn-blue--o:hover,
.btn-blue--o:focus {
	background: #5995f7;
	color: #ffffff;
}
.btn-green--o {
	background: transparent;
	border: 1px solid #19d374;
	color: #19d374;
	transition: all .2s ease-in;
	-webkit-transition: all .2s ease-in;
}
.btn-green--o:hover,
.btn-green--o:focus  {
	background: #19d374;
	color: #ffffff;
}
.btn-purple--o {
	background: transparent;
	border: 1px solid #9351e5;
	color: #9351e5;
	transition: all .2s ease-in;
	-webkit-transition: all .2s ease-in;
}
.btn-purple--o:hover,
.btn-purple--o:focus  {
	background: #9351e5;
	color: #ffffff;
}
/*********** button reversed **********/
.btn-orange--r {
	color: #ff5933;
	background: #ffffff;
	transition: all .15s ease-in;
	-webkit-transition: all .15s ease-in;
}
.btn-orange--r:hover,
.btn-orange--r:focus {
	color: #ff8575;
}
.btn-blue--r {
	color: #5995f7;
	background: #ffffff;
	transition: all .15s ease-in;
	-webkit-transition: all .15s ease-in;
}
.btn-blue--r:hover,
.btn-blue--r:focus {
	color: #8AB5F9;
}
.btn-green--r {
	color: #19d374;
	background: #ffffff;
	transition: all .15s ease-in;
	-webkit-transition: all .15s ease-in;
}
.btn-green--r:hover,
.btn-green--r:focus {
	color: #36e78c;
}
.btn-purple--r {
	color: #9351e5;
	background: #ffffff;
	transition: all .15s ease-in;
	-webkit-transition: all .15s ease-in;
}
.btn-purple--r:hover,
.btn-purple--r:focus {
	color: #b07eec;
}

/*KAZOOcon 2018 btn's*/ /*DELETE!*/

.btn-gradient {
	background: linear-gradient(to right, #ff512f , #dd2476);
}
.btn-gradient:hover,
.btn-gradient:focus {
	background: linear-gradient(to right, #fc827a, #f774b9);
}

.gradient-text {
	font-size: 30px;
	line-height: 2rem;
	letter-spacing: .02em;
	margin: 0px 0;
	font-weight: 600;
	background: linear-gradient(45deg, #1fddff 0%, #8dd53f 100%);
  	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
}
/*KAZOOcon 2018 btn's*/ /*DELETE!*/
/*
-------------------------------------
Text Inputs
-------------------------------------
*/
.input-wrap {
	position: relative;
	height: 40px;
	width: 100%;
	margin: 25px 0;
}
.input-wrap input {
	border: none;
	border-bottom: 1px solid #c0c0c9;
	background: transparent;
	height: 40px;
	width: 100%;
	font-size: 15px;
	letter-spacing: .02em;
	padding-top: 5px;

	-webkit-transition: border 0.2s;
	-moz-transition: 	border 0.2s;
	-o-transition: 		border 0.2s;
	-ms-transition: 	border 0.2s;
	transition: 		border 0.2s;
}
.input-wrap input:focus {
	outline: none;
}
.input-wrap .placeholder-shift {
	position: absolute;
	top: 11px;
	color: #909099;
	font-size: 15px;
	pointer-events: none;
	left: 0;

	-webkit-transition: all 0.2s ease-out;
	-moz-transition: 	all 0.2s ease-out;
	-o-transition: 		all 0.2s ease-out;
	-ms-transition: 	all 0.2s ease-out;
	transition: 		all 0.2s ease-out;
}
.input-wrap input:focus + .placeholder-shift {
	top: -14px;
	font-size: 12px;
	color: #5995f7;
}
.input-wrap .placeholder-shift.fixed {
	top: -14px;
	font-size: 12px;
}
.input-wrap .border-grow {
	position: absolute;
	display: block;
	bottom: 0;
	width: 0;
	height: 2px;
	background: #5995f7;

	-webkit-transition: all 0.2s ease-out;
	-moz-transition: 	all 0.2s ease-out;
	-o-transition: 		all 0.2s ease-out;
	-ms-transition: 	all 0.2s ease-out;
	transition: 		all 0.2s ease-out;
}
.input-wrap input:focus + .placeholder-shift + .border-grow {
	width: 100%;
	height: 2px;
}

/* Hubspot forms ==================================== */

.hubspot-form-container {
	background-color: white;
	box-shadow: 3px 3px 25px 0px rgba(32,32,41,0.25);
	padding: 25px;
}

.hubspot-form-container h3 {
	margin-bottom: 25px;
}

.contact form {
	padding: 0px;
	margin-bottom: 10px;
}

.hbspt-form {

}

.hs-input {
	border: 1px solid #ddd;
	padding: 8px;
	width: 100%;
}

.hs-input.invalid {
	background-color: #FEF2EC;
}

.hs-form-field {
	margin-bottom: 15px;
}

.hs-form-field label {
	color: #909099;
	font-size: 15px;
}

ul.hs-error-msgs {
	margin: 5px 0px 0px;
	padding: 0px;
}

ul.hs-error-msgs li  {
	list-style-type: none;
}

ul.hs-error-msgs li label {
	color: #FF5933;
	font-size: 12px;
}

.hs-button {
	border: none;
	margin: .625rem 0;
	width: 100%;
	font-size: 1rem;
	padding: 1rem;
	color: white;
	background-color: #FF5933;
	cursor: pointer;
}

.hs-button:hover {
	background-color: #ff8575;
}

/*
=======================================================
Utility Classes
=======================================================
*/
.reset {
	list-style: none;
	margin: 0;
	padding: 0;
}
.vert-align {
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.center-text {
	text-align: center;
}
.right-text {
	text-align: right;
}
.left-text {
	text-align: left;
}
.disable-scroll {
	overflow: hidden;
}
/*
-------------------------------------
Padding
-------------------------------------
*/
/*********** top **********/
.pt-0 {
	padding-top: 0px;
}
.pt-10 {
	padding-top: 10px;
}
.pt-20 {
	padding-top: 20px;
}
.pt-30 {
	padding-top: 30px;
}
.pt-40 {
	padding-top: 40px;
}
.pt-50 {
	padding-top: 50px;
}
.pt-60 {
	padding-top: 60px;
}
.pt-70 {
	padding-top: 70px;
}
.pt-80 {
	padding-top: 80px;
}
.pt-90 {
	padding-top: 90px;
}
.pt-100 {
	padding-top: 100px;
}
/*********** right **********/
.pr-0 {
	padding-right: 0px;
}
.pr-10 {
	padding-right: 10px;
}
.pr-20 {
	padding-right: 20px;
}
.pr-30 {
	padding-right: 30px;
}
.pr-40 {
	padding-right: 40px;
}
.pr-50 {
	padding-right: 50px;
}
.pr-60 {
	padding-right: 60px;
}
.pr-70 {
	padding-right: 70px;
}
.pr-80 {
	padding-right: 80px;
}
.pr-90 {
	padding-right: 90px;
}
.pr-100 {
	padding-right: 100px;
}
/*********** bottom **********/
.pb-0 {
	padding-bottom: 0px;
}
.pb-10 {
	padding-bottom: 10px;
}
.pb-20 {
	padding-bottom: 20px;
}
.pb-30 {
	padding-bottom: 30px;
}
.pb-40 {
	padding-bottom: 40px;
}
.pb-50 {
	padding-bottom: 50px;
}
.pb-60 {
	padding-bottom: 60px;
}
.pb-70 {
	padding-bottom: 70px;
}
.pb-80 {
	padding-bottom: 80px;
}
.pb-90 {
	padding-bottom: 90px;
}
.pb-100 {
	padding-bottom: 100px;
}
/*********** left **********/
.pl-0 {
	padding-left: 0px;
}
.pl-10 {
	padding-left: 10px;
}
.pl-20 {
	padding-left: 20px;
}
.pl-30 {
	padding-left: 30px;
}
.pl-40 {
	padding-left: 40px;
}
.pl-50 {
	padding-left: 50px;
}
.pl-60 {
	padding-left: 60px;
}
.pl-70 {
	padding-left: 70px;
}
.pl-80 {
	padding-left: 80px;
}
.pl-90 {
	padding-left: 90px;
}
.pl-100 {
	padding-left: 100px;
}
@media screen and (max-width: 47.9375rem) {
/*@media screen and (max-width: 767px) {*/
/*.sm-hide {
	display: none;
}
h1.display,
h2.display,
h3.display,
h4.display,
h5.display {
	letter-spacing: 0;
}*/
/*
-------------------------------------
Margins
-------------------------------------
*/
/*********** top **********/
.sm-mt-0 {margin-top: 0px;}
.sm-mt-10 {margin-top: 10px;}
.sm-mt-20 {margin-top: 20px;}
.sm-mt-30 {margin-top: 30px;}
.sm-mt-40 {margin-top: 40px;}
.sm-mt-50 {margin-top: 50px;}
.sm-mt-60 {margin-top: 60px;}
.sm-mt-70 {margin-top: 70px;}
.sm-mt-80 {margin-top: 80px;}
.sm-mt-90 {margin-top: 90px;}
.sm-mt-100 {margin-top: 100px;}
/*********** right **********/
.sm-mr-0 {margin-right: 0px;}
.sm-mr-10 {margin-right: 10px;}
.sm-mr-20 {margin-right: 20px;}
.sm-mr-30 {margin-right: 30px;}
.sm-mr-40 {margin-right: 40px;}
.sm-mr-50 {margin-right: 50px;}
.sm-mr-60 {margin-right: 60px;}
.sm-mr-70 {margin-right: 70px;}
.sm-mr-80 {margin-right: 80px;}
.sm-mr-90 {margin-right: 90px;}
.sm-mr-100 {margin-right: 100px;}
/*********** bottom **********/
.sm-mb-0 {margin-bottom: 0px;}
.sm-mb-10 {margin-bottom: 10px;}
.sm-mb-20 {margin-bottom: 20px;}
.sm-mb-30 {margin-bottom: 30px;}
.sm-mb-40 {margin-bottom: 40px;}
.sm-mb-50 {margin-bottom: 50px;}
.sm-mb-60 {margin-bottom: 60px;}
.sm-mb-70 {margin-bottom: 70px;}
.sm-mb-80 {margin-bottom: 80px;}
.sm-mb-90 {margin-bottom: 90px;}
.sm-mb-100 {margin-bottom: 100px;}
/*********** left **********/
.sm-ml-0 {margin-left: 0px;}
.sm-ml-10 {margin-left: 10px;}
.sm-ml-20 {margin-left: 20px;}
.sm-ml-30 {margin-left: 30px;}
.sm-ml-40 {margin-left: 40px;}
.sm-ml-50 {margin-left: 50px;}
.sm-ml-60 {margin-left: 60px;}
.sm-ml-70 {margin-left: 70px;}
.sm-ml-80 {margin-left: 80px;}
.sm-ml-90 {margin-left: 90px;}
.sm-ml-100 {margin-left: 100px;}

/* end sm-col breakpoint */
}

@media screen and (min-width: 48rem) and (max-width: 68.6875rem) {
/*@media screen and (min-width: 768px) and (max-width: 1100px) {*/
/*.md-hide {
	display: none;
}*/
/*
-------------------------------------
Margins
-------------------------------------
*/
/*********** top **********/
.md-mt-0 {margin-top: 0px;}
.md-mt-10 {margin-top: 10px;}
.md-mt-20 {margin-top: 20px;}
.md-mt-30 {margin-top: 30px;}
.md-mt-40 {margin-top: 40px;}
.md-mt-50 {margin-top: 50px;}
.md-mt-60 {margin-top: 60px;}
.md-mt-70 {margin-top: 70px;}
.md-mt-80 {margin-top: 80px;}
.md-mt-90 {margin-top: 90px;}
.md-mt-100 {margin-top: 100px;}
/*********** right **********/
.md-mr-0 {margin-right: 0px;}
.md-mr-10 {margin-right: 10px;}
.md-mr-20 {margin-right: 20px;}
.md-mr-30 {margin-right: 30px;}
.md-mr-40 {margin-right: 40px;}
.md-mr-50 {margin-right: 50px;}
.md-mr-60 {margin-right: 60px;}
.md-mr-70 {margin-right: 70px;}
.md-mr-80 {margin-right: 80px;}
.md-mr-90 {margin-right: 90px;}
.md-mr-100 {margin-right: 100px;}
/*********** bottom **********/
.md-mb-0 {margin-bottom: 0px;}
.md-mb-10 {margin-bottom: 10px;}
.md-mb-20 {margin-bottom: 20px;}
.md-mb-30 {margin-bottom: 30px;}
.md-mb-40 {margin-bottom: 40px;}
.md-mb-50 {margin-bottom: 50px;}
.md-mb-60 {margin-bottom: 60px;}
.md-mb-70 {margin-bottom: 70px;}
.md-mb-80 {margin-bottom: 80px;}
.md-mb-90 {margin-bottom: 90px;}
.md-mb-100 {margin-bottom: 100px;}
/*********** left **********/
.md-ml-0 {margin-left: 0px;}
.md-ml-10 {margin-left: 10px;}
.md-ml-20 {margin-left: 20px;}
.md-ml-30 {margin-left: 30px;}
.md-ml-40 {margin-left: 40px;}
.md-ml-50 {margin-left: 50px;}
.md-ml-60 {margin-left: 60px;}
.md-ml-70 {margin-left: 70px;}
.md-ml-80 {margin-left: 80px;}
.md-ml-90 {margin-left: 90px;}
.md-ml-100 {margin-left: 100px;}

/* end md-col breakpoint */
}

@media screen and (min-width: 68.75rem) {
/*@media screen and (min-width: 1101px) {*/
/*.lg-hide !important {
	display: none;
}*/

/*
-------------------------------------
Margins
-------------------------------------
*/
/*********** top **********/
.lg-mt-0 {margin-top: 0px;}
.lg-mt-10 {margin-top: 10px;}
.lg-mt-20 {margin-top: 20px;}
.lg-mt-30 {margin-top: 30px;}
.lg-mt-40 {margin-top: 40px;}
.lg-mt-50 {margin-top: 50px;}
.lg-mt-60 {margin-top: 60px;}
.lg-mt-70 {margin-top: 70px;}
.lg-mt-80 {margin-top: 80px;}
.lg-mt-90 {margin-top: 90px;}
.lg-mt-100 {margin-top: 100px;}
.lg-mt-120 {margin-top: 120px;}
/*********** right **********/
.lg-mr-0 {margin-right: 0px;}
.lg-mr-10 {margin-right: 10px;}
.lg-mr-20 {margin-right: 20px;}
.lg-mr-30 {margin-right: 30px;}
.lg-mr-40 {margin-right: 40px;}
.lg-mr-50 {margin-right: 50px;}
.lg-mr-60 {margin-right: 60px;}
.lg-mr-70 {margin-right: 70px;}
.lg-mr-80 {margin-right: 80px;}
.lg-mr-90 {margin-right: 90px;}
.lg-mr-100 {margin-right: 100px;}
/*********** bottom **********/
.lg-mb-0 {margin-bottom: 0px;}
.lg-mb-10 {margin-bottom: 10px;}
.lg-mb-20 {margin-bottom: 20px;}
.lg-mb-30 {margin-bottom: 30px;}
.lg-mb-40 {margin-bottom: 40px;}
.lg-mb-50 {margin-bottom: 50px;}
.lg-mb-60 {margin-bottom: 60px;}
.lg-mb-70 {margin-bottom: 70px;}
.lg-mb-80 {margin-bottom: 80px;}
.lg-mb-90 {margin-bottom: 90px;}
.lg-mb-100 {margin-bottom: 100px;}
/*********** left **********/
.lg-ml-0 {margin-left: 0px;}
.lg-ml-10 {margin-left: 10px;}
.lg-ml-20 {margin-left: 20px;}
.lg-ml-30 {margin-left: 30px;}
.lg-ml-40 {margin-left: 40px;}
.lg-ml-50 {margin-left: 50px;}
.lg-ml-60 {margin-left: 60px;}
.lg-ml-70 {margin-left: 70px;}
.lg-ml-80 {margin-left: 80px;}
.lg-ml-90 {margin-left: 90px;}
.lg-ml-100 {margin-left: 100px;}
/* end lg-col breakpoint */
}
