/** According to our Styling Guidelines **/

/**
TODO: SASS this
font-weights: 200 light, 400 normal, 500 medium, 600 semibold, 700 bold
**/

body {
	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Droid Sans", sans-serif;
	font-size: 15px;
	line-height: 18px;
	font-weight: 400;

	overflow-wrap: break-word;
	word-wrap: break-word;

	/** Dark Gray */
	color: #696969;
	background: #fff;
	margin: 16px;
}

a {
	color: #F75932;
	text-decoration: none;
}

a:hover, a:focus {
	color: #F75932;
	text-decoration: underline;
}

ul li {
	margin-bottom: 10px;
}

/** reset headings and text to `base-regular`, we'll have to be explicit and i mean super explicit **/
h1, h2, h3, h4, h5, h6, p {
	font-size: 15px;
	line-height: 18px;
	font-weight: 400;
}

/** margins **/
h1, h2, h3, h4, h5 p {
	margin: 0 0 0.5em;
	padding: 0;
}

h2, h3, h4, h5, h6 {
	margin-top: 1.25em;
}

/** headings colour **/
h1, h2, h3, h4, h5, h6 {
	/** Almost Black */
	color: #2B2B2B;
}

.h1 {
	font-size: 32px;
	line-height: 38px;
	font-weight: 600;
}

.h2-heavy {
	font-size: 21px;
	line-height: 25px;
	font-weight: 700;
}

.h2-semibold {
	font-size: 21px;
	line-height: 25px;
	font-weight: 600;
}

.h2-light {
	font-size: 21px;
	line-height: 25px;
	font-weight: 200;
}

.h3-semibold {
	font-size: 19px;
	line-height: 23px;
	font-weight: 600;
}

.base-subhead {
	font-size: 16px;
	line-height: 21px;
	font-weight: 400;
}

.base-regular {
	font-size: 15px;
	line-height: 18px;
	font-weight: 400;
}

.base-semibold {
	font-size: 15px;
	line-height: 18px;
	font-weight: 600;
}

.small-medium {
	font-size: 13px;
	line-height: 15px;
	font-weight: 500;
}

.small-bold {
	font-size: 13px;
	line-height: 15px;
	font-weight: 700;
}

.small-regular {
	font-size: 13px;
	line-height: 18px;
	font-weight: 600;
}

.mini-semibold {
	font-size: 11px;
	line-height: 13px;
	font-weight: 600;
}

/** utility classes */

.orange {
	color: #F75932;
}

.green {
	color: #65D38C;
}

.group:after {
  content: "";
  display: table;
  clear: both;
}

.underline {
	text-decoration: underline;
}

/** Privacy May 2018 specific styles **/
.privacy-may-2018 {
	font-family: -apple-system, BlinkMacSystemFont, Roboto, "Droid Sans", "Helvetica Neue",Helvetica,Arial,sans-serif;
}

.privacy-may-2018 p, .privacy-may-2018 li {
	font-size: 15px;
	line-height: 24px;
}

.privacy-may-2018 li {
	margin-bottom: 10px;
}

.privacy-may-2018__logo {
	max-width: 70px;
	display: none;
}

.privacy-may-2018__logo-xs {
	display: block;
	margin: 25px 0;
	max-height: 50px;
}

.privacy-may-2018__title {
	font-weight: normal;
	margin-bottom: 0;
	font-size: 24px;
	line-height: 38px;
}

.privacy-may-2018__header {
	margin-bottom: 20px;
}

@media (min-width: 576px) {
	.privacy-may-2018 {
		padding: 10px;
	}

	.privacy-may-2018__header {
		margin-bottom: 30px;
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
	}

	.privacy-may-2018__title {
		font-size: 28px;
		line-height: 45px;
		margin-left: 30px;
	}

	.privacy-may-2018__logo {
		margin: 0;
		display: block;
	}

	.privacy-may-2018__logo-xs {
		display: none;
	}
}

@media (min-width: 768px) {
	.privacy-may-2018 {
		padding: 20px;
	}

	.privacy-may-2018__header {
		margin-top: 10px;
		margin-bottom: 40px;
	}

	.privacy-may-2018__title {
		font-size: 40px;
		line-height: 64px;
	}

	.privacy-may-2018 {
		max-width: 760px;
		margin: 0 auto;
	}
}

/** responsive embed **/
.embed-video {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px; height: 0; overflow: hidden;
	/* max-width: 460px; */
}

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