/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# header
# Forms
# Homepage
# Archive Page
# Single Post
# Related Posts
# Search
# Pagination
# Media query
# 404 Page
# Sitewide cookie
# Footer
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/* header style is in css/nav.css for now until we have
*  custom blog nav
*/

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
  color: #9CA393;
}
::-moz-placeholder {
/* Firefox 19+ */
  color: #9CA393;
}
:-ms-input-placeholder {
/* IE 10+ */
  color: #9CA393;
}
:-moz-placeholder {
/* Firefox 18- */
  color: #9CA393;
}
.bhrForm__inputWrapper,
.mktoFieldWrap {
  position: relative;
  margin-top: 10px;
}
.bhrForm__label,
.mktoLabel:not(.bhrForm__gdprCopy):not(.bhrForm__checkboxCopy) {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: 'Lato' , Arial , Helvetica , sans-serif;
  font-size: 16px;
  color: #394130;
  padding: 0 20px;
  cursor: text;
  width: 55%;
  text-align: left;
  -webkit-transition: all ease-out 0.3s;
  -moz-transition: all ease-out 0.3s;
  -o-transition: all ease-out 0.3s;
  -ms-transition: all ease-out 0.3s;
  transition: all ease-out 0.3s;
}
.bhrForm__label.bhrForm__input--invalid,
.mktoLabel:not(.bhrForm__gdprCopy):not(.bhrForm__checkboxCopy).bhrForm__input--invalid {
  color: #eb5638;
}
.bhrForm__label.bhrForm__label--active,
.mktoLabel:not(.bhrForm__gdprCopy):not(.bhrForm__checkboxCopy).bhrForm__label--active {
  left: 45%;
  text-align: right;
  font-size: 14px;
  color: #6b7362;
  font-weight: 400;
}
.bhrForm__label.bhrForm__label--active.bhrForm__input--invalid,
.mktoLabel:not(.bhrForm__gdprCopy):not(.bhrForm__checkboxCopy).bhrForm__label--active.bhrForm__input--invalid {
  color: #eb5638;
}
.bhrForm__input,
.mktoField:not(.bhrForm__gdprInput) {
  font-family: 'Lato' , Arial , Helvetica , sans-serif;
  font-size: 16px;
  color: #394130;
  line-height: 20px;
  padding: 0 110px 0 20px;
  width: 100% !important;
  background-color: #fff;
  border-radius: 3px;
  -webkit-transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -o-transition: all ease-in-out 0.3s;
  -ms-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
  height: 50px;
  border: 2px solid #fff;
  margin: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
}
.bhrForm__input:focus + .bhrForm__label,
.mktoField:not(.bhrForm__gdprInput):focus + .bhrForm__label {
  left: 45%;
  text-align: right;
  font-size: 14px;
  color: #6b7362;
  font-weight: 400;
}
.bhrForm__input:focus,
.mktoField:not(.bhrForm__gdprInput):focus,
.bhrForm__input.bhrForm__input--active,
.mktoField:not(.bhrForm__gdprInput).bhrForm__input--active {
  outline: none;
  border-color: #0497e8;
}
.bhrForm__input.bhrForm__input--invalid,
.mktoField:not(.bhrForm__gdprInput).bhrForm__input--invalid,
.bhrForm__input.mktoInvalid,
.mktoField:not(.bhrForm__gdprInput).mktoInvalid {
  border-color: #eb5638;
}
.bhrForm__input.bhrForm__input--invalid:focus,
.mktoField:not(.bhrForm__gdprInput).bhrForm__input--invalid:focus,
.bhrForm__input.mktoInvalid:focus,
.mktoField:not(.bhrForm__gdprInput).mktoInvalid:focus {
  border-color: #0497e8;
}
.bhrForm__input--select {
  padding: 0 20px;
  -webkit-appearance: none;
  background-image: url("../images/form/down.svg");
  background-position: calc(100% - 20px) 50%;
  background-repeat: no-repeat;
}
.bhrForm__input--select::-ms-expand {
  display: none;
}
.bhrForm__gdprInput,
.bhrForm__checkboxInput {
  vertical-align: middle;
  display: block;
  position: absolute;
  left: 6px;
  top: 12px;
  z-index: -1;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}
.bhrForm__gdprInput.bhrForm__input--invalid + .bhrForm__gdprLabel:before,
.bhrForm__checkboxInput.bhrForm__input--invalid + .bhrForm__gdprLabel:before,
.bhrForm__gdprInput.bhrForm__input--invalid + .bhrForm__checkboxLabel:before,
.bhrForm__checkboxInput.bhrForm__input--invalid + .bhrForm__checkboxLabel:before {
  background-image: url("../images/form/unchecked-error.svg");
}
.bhrForm__gdprInput:checked + .bhrForm__gdprLabel:before,
.bhrForm__checkboxInput:checked + .bhrForm__gdprLabel:before,
.bhrForm__gdprInput:checked + .bhrForm__checkboxLabel:before,
.bhrForm__checkboxInput:checked + .bhrForm__checkboxLabel:before {
  background-image: url("../images/form/checked.svg");
}
.bhrForm__gdprLabel,
.bhrForm__checkboxLabel,
.bhrForm__checkboxCopy {
  cursor: pointer;
}
.bhrForm__gdprLabel:before,
.bhrForm__checkboxLabel:before {
  background-image: url("../images/form/unchecked.svg");
  background-position: left center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
}
.bhrForm__gdprCopy,
.bhrForm__checkboxCopy {
  font-family: 'Lato' , Arial , Helvetica , sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #6b7362;
  padding-left: 34px;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  margin-bottom: 0;
}
.bhrForm__gdprFlex,
.bhrForm__checkboxFlex {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -o-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-lines: single;
  -moz-box-lines: single;
  -o-box-lines: single;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -o-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -o-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -ms-flex-line-pack: stretch;
  -webkit-align-content: stretch;
  align-content: stretch;
  margin-top: 20px;
}
.bhrForm__gdprFlex .mktoErrorMsg,
.bhrForm__checkboxFlex .mktoErrorMsg {
  display: none;
}
.bhrForm__gdprFlex .mktoAsterix,
.bhrForm__checkboxFlex .mktoAsterix {
  display: none;
}
.bhrForm__gdprFlexCol--order1,
.bhrForm__checkboxFlexCol--order1 {
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -o-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  width: auto !important;
}
.bhrForm__gdprFlexCol--order2,
.bhrForm__checkboxFlexCol--order2 {
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -o-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
  width: auto !important;
}
.bhrForm--secondary .bhrForm__input,
.bhrForm--secondary .mktoField:not(.bhrForm__gdprInput) {
  background-color: #f7f7f4;
  border-color: #f7f7f4;
}
.bhrForm--secondary .bhrForm__input:focus,
.bhrForm--secondary .mktoField:not(.bhrForm__gdprInput):focus,
.bhrForm--secondary .bhrForm__input.bhrForm__input--active,
.bhrForm--secondary .mktoField:not(.bhrForm__gdprInput).bhrForm__input--active {
  outline: none;
  border-color: #0497e8;
}
.bhrForm--secondary .bhrForm__input.bhrForm__input--invalid,
.bhrForm--secondary .mktoField:not(.bhrForm__gdprInput).bhrForm__input--invalid,
.bhrForm--secondary .bhrForm__input.mktoInvalid,
.bhrForm--secondary .mktoField:not(.bhrForm__gdprInput).mktoInvalid {
  border-color: #eb5638;
}
.bhrForm--inline .bhrForm__left,
.bhrForm--inline2 .bhrForm__left {
	flex: 0 0 auto;
	width: 82%;
}
.bhrForm--inline .bhrForm__right,
.bhrForm--inline2 .bhrForm__right {
	flex: 0 0 auto;
	width: 18%;
	min-width: 96px;
}
.bhrForm--inline3 .bhrForm__left {
	width: calc(100% - 82px);
}
.bhrForm--inline3 .bhrForm__right {
	width: 82px;
}
.bhrForm--inline .mktoField,
.bhrForm--inline2 .mktoField,
.bhrForm--inline3 .mktoField {
  border-radius: 25px 0 0 25px;
  padding: 0 30px;
}
.bhrForm--inline .bhrForm__inputWrapper,
.bhrForm--inline2 .bhrForm__inputWrapper,
.bhrForm--inline3 .bhrForm__inputWrapper {
  margin-top: 0;
}
.bhrForm--inline2 .bhrForm__input {
	background-color: #f7f7f4;
	border-color: #f7f7f4;
}
.bhrForm--inline2 .bhrForm__input,
.bhrForm--inline .bhrForm__input {
	border-radius: 25px 0 0 25px;
	padding: 0 30px;
}
.bhrForm--inline .bhrForm__submit,
.bhrForm--inline2 .bhrForm__submit {
	padding-left: 5px;
	padding-right: 5px;
}
.bhrForm--inline .bhrForm__submit,
.bhrForm--inline2 .bhrForm__submit,
.bhrForm--inline3 .bhrForm__submit {
  font-family: 'Fira Sans' , "Trebuchet MS" , sans-serif;
  font-size: 14px;
  height: 50px;
  line-height: 50px;
  font-weight: 600;
  border: none;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  background-color: #73c41d;
  color: #ffffff;
  width: 100%;
}
.bhrForm--inline,
.bhrForm--inline2,
.bhrForm--inline3 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
}
@media screen and (max-width: 767px) {
  .bhrForm--inline2,
  .bhrForm--inline3 {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .bhrForm--inline2 .bhrForm__left,
  .bhrForm--inline2 .bhrForm__right {
	  width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .bhrForm--inline2 .bhrForm__left {
    margin-bottom: 20px;
  }
}
.bhrForm--inline2 .mktoField {
  background-color: #f7f7f4;
  border-color: #f7f7f4;
}
@media screen and (max-width: 767px) {
  .bhrForm--inline2 .bhrForm__input {
    border-radius: 25px;
  }
}
.bhrForm--inline2 .mktoField:focus {
  outline: none;
  border-color: #0497e8;
}
.bhrForm--inline2 .mktoField.mktoInvalid {
  border-color: #eb5638;
}
.bhrForm--inline1 .bhrForm__input:focus,
.bhrForm--inline2 .bhrForm__input:focus {
  outline: none;
  border-color: #0497e8;
}
.bhrForm--inline1 .bhrForm__input.bhrForm__input--invalid,
.bhrForm--inline2 .bhrForm__input.bhrForm__input--invalid {
  border-color: #eb5638;
}
@media screen and (max-width: 767px) {
  .bhrForm--inline2 .bhrForm__submit {
    width: 100%;
    border-radius: 25px;
  }
}
.bhrForm__displayNone {
  display: none;
}
.mktoForm {
  display: none;
  width: 100% !important;
}
.mktoLabel.bhrForm__input--select {
  display: none;
}
.mktoErrorMsg {
  display: none;
}
.mktoButton {
  margin: 20px 0 0;
}
.mktoHtmlText {
  width: 100% !important;
}
.bhrForm--inline2 .mktoFieldWrap,
.bhrForm--inline3 .mktoFieldWrap {
	margin-top: 0;
}
.bhrForm--inline2 .mktoLabel,
.bhrForm--inline3 .mktoLabel {
	display: none;
}
.bhrForm--inline2 .mktoButton,
.bhrForm--inline3 .mktoButton {
	margin-top: 0;
	background-color: #73c41d;
	color: #FFFFFF;
	width: 100%;
}
.mktoFormRow:not(.bhrForm__left) {
	display: none;
}
.NavbarMainForm .bhrForm__input::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	font-size: 14px;
	line-height: 16px;
	font-weight: 400;
}
.NavbarMainForm .bhrForm__input::-moz-placeholder {
	/* Firefox 19+ */
	font-size: 14px;
	line-height: 16px;
	font-weight: 400;
}
.NavbarMainForm .bhrForm__input:-ms-input-placeholder {
	/* IE 10+ */
	font-size: 14px;
	line-height: 16px;
	font-weight: 400;
}
.NavbarMainForm .bhrForm__input:-moz-placeholder {
	/* Firefox 18- */
	font-size: 14px;
	line-height: 16px;
	font-weight: 400;
}

/*--------------------------------------------------------------
# Homepage
--------------------------------------------------------------*/
.blogHighlightPost {
	position: relative;
	padding: 42px 0 60px;
}
.blogHighlightPost__leaf {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background-color: #F5F4ED;
	padding-top: 163px;
}
.blogHighlightPost__leafImg {
	width: 100%;
}
.blogHighlightPost__meta {
	font-size: 16px;
	line-height: 19px;
	font-weight: 900;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin-bottom: 26px;
}
.blogHighlightPost__meta span {
	display: inline-block;
	vertical-align: middle;
}
.blogHighlightPost__dot {
	font-size: 10px;
}
.blogHighlightPost__meta--mobile,
.blogHighlightPost__container {
	position: relative;
}
.blogHighlightPost__imgContainer {
	margin-bottom: 25px;
}
.blogHighlightPost__img {
	width: 100%;
	-webkit-box-shadow: 0px 30px 60px -40px rgba(31, 38, 23, 0.5);
	box-shadow: 0px 30px 60px -40px rgba(31, 38, 23, 0.5);
	border-radius: 15px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.blogHighlightPost__title {
	font-family: 'Fira Sans', 'Trebuchet MS', sans-serif;
	font-size: 28px;
	line-height: 34px;
	font-weight: 800;
	font-style: italic;
	margin-bottom: 20px;
	color: #394130;
}
.blogHighlightPost__titleLink {
	color: #394130;
}
.blogHighlightPost__description {
	font-size: 15px;
	line-height: 24px;
	margin-bottom: 30px;
}
.blogHighlightpost__moreLink {
	font-size: 20px;
	line-height: 22px;
	font-weight: 700;
	font-family: 'Fira Sans', 'Trebuchet MS', sans-serif;
	color: #394130;
}
.blogFeaturedPostsBlock,
.blogPostsBlock {
	margin-bottom: 60px;
}
.blogFeaturedPostsBlock__img {
	width: 100%;
	-webkit-box-shadow: 0 30px 60px -40px rgba(31, 38, 23, 0.5);
	box-shadow: 0 30px 60px -40px rgba(31, 38, 23, 0.5);
	border-radius: 15px;
	margin-bottom: 25px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.blogMainPostsBlock {
	margin-bottom: 60px;
}
.blogPostsBlock__meta {
	font-size: 12px;
	font-weight: 900;
	line-height: 15px;
	margin-bottom: 25px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}
.blogPostsBlock__meta span {
	display: inline-block;
	vertical-align: middle;
}
.blogPostsBlock__dot {
	font-size: 8px;
}
.blogPostsBlock__title {
	margin-bottom: 20px;
	font-family: 'Fira Sans', 'Trebuchet MS', sans-serif;
}
.blogPostsBlock__titleLink {
	font-size: 18px;
	line-height: 26px;
	font-weight: 600;
	color: #394130;
}
.blogPostsBlock__description {
	font-size: 15px;
	line-height : 24px;
	color: #6B7362;
	margin-bottom: 30px;
}
.blogPostsBlock__moreLink {
	font-size: 15px;
	line-height: 20px;
	font-weight: 800;
	color: #394130;
	font-family: 'Fira Sans', 'Trebuchet MS', sans-serif;
}
.blogPostsBlock__moreLink span,
.blogHighlightpost__moreLink span {
	display: inline-block;
	vertical-align: middle;
}
.blogPostsBlock__img {
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 15px;
	-webkit-box-shadow: 0 30px 60px -40px rgba(31, 38, 23, 0.5);
	box-shadow: 0 30px 60px -40px rgba(31, 38, 23, 0.5);
	margin-bottom: 25px;
}
.blogPostsBlock__ctaImg {
	border-radius: 15px;
	width: 100%;
	-webkit-box-shadow: 0 30px 60px -40px rgba(31, 38, 23, 0.5);
	box-shadow: 0 30px 60px -40px rgba(31, 38, 23, 0.5);
}
.blogMainPosts--subpage {
	position: relative;
}
.blogMainPosts--padding {
	padding-top: 50px;
}
.blogMainPostsTop__leaf {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: -10;
	padding-top: 120px;
}
.blogMainPostsTop__leafImg {
	width: 100%;
}
.blogMainCta__container {
	padding-top: 72px;
	padding-bottom: 60px;
}
.blogMainCta {
	color: #ffffff;
	position: relative;
	text-align: center;
	margin-bottom: 80px;
}
.blogMainCta__leafTopImg,
.blogMainCta__leafBottomImg {
	width: 100%;
}
.blogMainCta__title {
	font-family: 'Fira Sans', 'Trebuchet MS', sans-serif;
	font-size: 36px;
	line-height: 44px;
	font-weight: 800;
	font-style: italic;
	margin-bottom: 20px;
}
.blogMainCta__description {
	font-size: 22px;
	line-height: 30px;
	margin-bottom: 60px;
}
.blogMainCta__btn {
	background-color: #ffffff;
	cursor: pointer;
}

/*--------------------------------------------------------------
# Archive Page
--------------------------------------------------------------*/
.blogArchiveHeader {
	position: relative;
	padding: 60px 0 20px;
}
.blogArchiveHeader--paged {
	padding: 70px 0 186px;
}
.blogArchiveHeader__leaf {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}
.blogArchiveHeader__leafImg {
	width: 100%;
}
.blogArchiveHeader__content {
	position: relative;
}
.blogArchiveHeader__contentDescription {
	max-width: 800px;
	margin: 20px auto 0;
}
.blogArchiveHeader__contentDescription p {
	color: #394130;
}
.blogArchiveHeader__contentDescription p:last-child {
	margin-bottom: 0;
}
.blogArchiveContent--paged {
	margin-top: -116px;
	position: relative;
}
/*--------------------------------------------------------------
# Single Post
--------------------------------------------------------------*/
.blogPostBanner__container {
	position: relative;
	z-index: -10;
}
.blogPostBanner__img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.blogPostBanner__imgContainer {
	position: relative;
}
.admin-bar .blogPostBanner__imgContainer {
	top: 46px;
}
.blogPostBanner__extra {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}
.blogPostBanner__leaf {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}
.blogPostBanner__leafImg {
	width: 100%;
}
.blogPostContent__wrapper {
	position: relative;
	padding-bottom: 70px;
}
.blogPostContent__bg {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: #FFFFFF;
}
.blogPostContent__container {
	position: relative;
}
.blogPostContent__metaTop {
	font-size: 10px;
	font-weight: 900;
	line-height: 18px;
	margin-bottom: 10px;
	text-transform: uppercase;
	padding-top: 20px;
	letter-spacing: 3px;
}
.blogPostContent__metaTop span {
	display: inline-block;
	vertical-align: middle;
}
.blogPostContent__dot {
	font-size: 10px;
	padding: 0 4px;
}
.blogPostContent__title {
	margin-bottom: 30px;
}
.blogPostContent__meta {
	font-size: 15px;
	line-height: 26px;
	margin-bottom: 60px;
}
.blogPostContent__meta span {
	display: inline-block;
	vertical-align: middle;
}
.blogPostContent__metaDot {
	font-size: 11px;
	padding: 0 15px;
}
.blogPostContent__meta:after {
	content: '';
	width: 30px;
	height: 2px;
	background-color: #E6E8E2;
	display: block;
	margin-top: 24px;
}
.blogPostContent__metaModifiedDate {
	color: #9CA393;
	font-style: italic;
}
.blogPostContent__container {
	padding-bottom: 20px;
}
.blogPostContent__container ul li,
.blogPostContent__container ol li {
	margin-bottom: 16px;
	margin-left: 30px;
}
.blogPostContent__container ul {
	list-style-type: disc;
}
.blogPostContent__container ol {
	list-style-type: decimal;
}
.blogPostContentToc {
	padding: 35px;
	border-radius: 15px;
	margin: 40px 0;
}
.blogPostContentToc__title {
	font-size: 15px;
	line-height: 26px;
	letter-spacing: 2px;
	font-weight: 900;
	margin-bottom: 25px;
}
.blogPostContent__container .blogPostContentToc__list {
	counter-reset: li;
	list-style-type: none;
	margin-bottom: 0;
}
.blogPostContent__container .blogPostContentToc__listItem {
	counter-increment: li;
	margin-left: 0;
	font-size: 15px;
	line-height: 26px;
	position: relative;
	padding-left: 30px;
	font-weight: 900;
}
.blogPostContentToc__listItem:before {
	content: counter(li);
	padding-right: 20px;
	position: absolute;
	left: 0;
	top: 0;
}
.blogPostContentToc__listItemTitle {
	font-weight: 400;
}
.blogPostContent__container .blogPostContentToc__subList {
	margin-bottom: 0;
	margin-top: 16px;
	list-style-position: inside;
}
.blogPostContent__container .blogPostContentToc__subListItem {
	font-size: 15px;
	line-height: 26px;
	margin-left: 0;
	font-weight: 400;
}
.blogPostContent__container .blogPostContentToc__subListItem:last-child {
	margin-bottom: 0;
}
.blogPostContent__fullWidthImgContainer {
	margin: 40px 0 50px;
}
.blogPostContent__fullWidthImg,
.blogPostContent__img,
.blogPostContent__ctaContainer {
	-webkit-box-shadow: 0 30px 60px -40px rgba(31, 38, 23, 0.5);
	box-shadow: 0 30px 60px -40px rgba(31, 38, 23, 0.5);
}
.blogPostContent__fullWidthImg,
.blogPostContent__img {
	width: 100%;
}
.blogPostContent__fullWidthImg {
	border-radius: 15px;
}
.blogPostContent__fullWidthImg--noShadow {
	box-shadow: none;
}
.blogPostContent__quoteContainer,
.blogPostContent__ctaContainer,
.blogPostContent__imgContainer {
	margin-top: 35px;
	margin-bottom: 35px;
}
.blogPostContent__quoteContainer,
.blogPostContent__ctaContainer {
	font-family: 'Fira Sans', 'Trebuchet MS', sans-serif;
}
.blogPostContent__ctaContainer,
.blogPostContent__imgContainer {
	margin-left: -30px;
	margin-right: -30px;
}
.blogPostContent__quoteContainer {
	padding: 10px 0 10px 32px;
	border-left: 2px solid;
}
.blogPostContent__quote {
	font-size: 20px;
	line-height: 28px;
	font-weight: 600;
	font-style: italic;
}
.blogPostContent__ctaContainer {
	color: #FFFFFF;
	padding: 40px 30px;
}
.blogPostContent__ctaContainer--sideBySide {
	padding: 0;
}
.blogPostContent__ctaContainer--fullWidth {
	text-align: center;
	margin-top: 40px;
	margin-bottom: 40px;
	clear: both;
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
}
.blogPostContent__ctaContainer--performance-culture {
	background-image: url('../images/single-post/blue-cta.svg');
}
.blogPostContent__ctaContainer--product-announcements {
	background-image: url('../images/single-post/green-cta.svg');
}
.blogPostContent__ctaContainer--benefits-compensation {
	background-image: url('../images/single-post/pink-cta.svg');
}
.blogPostContent__ctaContainer--hiring {
	background-image: url('../images/single-post/yellow-cta.svg');
}
.blogPostContent__ctaContainer--hr-insights {
	background-image: url('../images/single-post/teal-cta.svg');
}
.blogPostContent__ctaContainer--onboarding {
	background-image: url('../images/single-post/orange-cta.svg');
}
.blogPostContent__ctaContainer--people-data-analytics {
	background-image: url('../images/single-post/purple-cta.svg');
}
.blogPostContent__ctaContainer--voices-in-leadership {
	background-image: url('../images/single-post/brown-cta.svg');
}
.blogPostContent__ctaImgContainer {
	min-height: 216px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
	position: relative;
}
.blogPostContent__ctaLeaf--mobile {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	width: 100%;
	height: auto;
}
.blogPostContent__ctaLeaf--desktop {
	display: none;
}
.blogPostContent__ctaContentContainer {
	padding: 20px 50px 60px;
	text-align: center;
}
.blogPostContent__ctaText {
	font-size: 20px;
	line-height: 28px;
	font-weight: 600;
	font-style: italic;
	margin-bottom: 30px;
}
.blogPostContent__ctaContainer--fullWidth .blogPostContent__ctaText,
.blogPostContent__ctaContainer--sideBySide .blogPostContent__ctaText {
	font-size: 30px;
	line-height: 34px;
	font-weight: 700;
	margin-bottom: 20px;
}
.blogPostContent__ctaSubheading {
	font-size: 17px;
	line-height: 28px;
	margin-bottom: 40px;
}
.blogPostContent__ctaContainer--fullWidth .blogPostContent__ctaBtnContainer {
	margin-top: 40px;
}
.blogPostContent__ctaBtn {
	background-color: #FFFFFF;
	font-size: 15px;
	line-height: 20px;
	font-weight: 700;
}
.blogPostContent__videoContainer {
	max-width: 550px;
	margin: 40px auto;
}
.blogPostContent__videoImg {
	border-radius: 15px;
	-webkit-box-shadow: 0 30px 60px -40px rgba(31,38,23,.5), 0 70px 100px -60px rgba(31,38,23,.25);
	box-shadow: 0 30px 60px -40px rgba(31,38,23,.5), 0 70px 100px -60px rgba(31,38,23,.25);
}
.blogPostContent__playBtnContainer {
	position: relative;
}
.blogPostContent__playBtn {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 36px;
	height: 36px;
	background-color: rgba(255,255,255,0.4);
	border-radius: 50%;
}
.blogPostContent__playBtn:before {
	content: "";
	display: block;
	position: absolute;
	left: calc(50% + 2px);
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 11px solid #ffffff;
}
.blogPostContentSubscribe {
	padding: 30px;
	border-radius: 15px;
}
.blogPostContentSubscribe--subscribed {
	display: none;
}
.blogPostContentSubscribe__title {
	font-family: 'Fira Sans', 'Trebuchet MS', sans-serif;
	font-size: 26px;
	line-height: 30px;
	font-style: italic;
	font-weight: 600;
	margin-bottom: 20px;
}
.blogPostContentSubscribe__form {
	margin-top: 40px;
}
.blogPostContentSubscribe__form.bhrForm--inline2 .bhrForm__input {
	background-color: #ffffff;
	border-color: #ffffff;
}
.blogPostAuthor {
	padding-top: 50px;
	border-top: 2px solid #E6E8E2;
	margin-top: 50px;
	clear: both;
}
.blogPostAuthor__img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin: 0 auto 30px;
}
.blogPostAuthor__name,
.blogPostAuthor__title {
	text-align: center;
	font-size: 17px;
	line-height: 28px;
}
.blogPostContent__calcContainer {
	border-radius: 15px;
	-webkit-box-shadow: 0 30px 60px -40px rgba(31, 28, 23, 0.5);
	box-shadow: 0 30px 60px -40px rgba(31, 28, 23, 0.5);
	margin: 20px -30px 30px;
	padding: 35px 30px;
}
.blogPostContent__calcTitle {
	font-family: 'Fira Sans', 'Trebuchet MS', sans-serif;
	font-size: 26px;
	line-height: 30px;
	font-weight: 700;
	font-style: italic;
	margin-bottom: 20px;
	text-align: center;
}
.blogPostContent__calcFormInputWrapper {
	text-align: center;
}
.blogPostContent__calcFormLabel {
	font-size: 13px;
	line-height: 24px;
	font-weight: 700;
	padding-bottom: 5px;
	display: block;
}
.blogPostContent__calcFormInput {
	padding: 0 20px;
	max-width: 190px;
}
.blogPostContent__calcFormInputDollarSignWrapper {
	position: relative;
	display: inline;
}
.blogPostContent__calcFormInputDollarSign {
	display: none;
	position: absolute;
	top: 0;
	left: 12px;
	font-family: 'Lato' , Arial , Helvetica , sans-serif;
	font-size: 16px;
	color: #394130;
	line-height: 20px;
}
.blogPostContent__calcFormResultContainer {
	margin: 30px 0;
}
.blogPostContent__calcFormResultLeft {
	margin-bottom: 15px;
}
.blogPostContent__calcFormResultRight {
	text-align: center;
}
.blogPostContent__calcFormResultTitle,
.blogPostContent__calcFormResult {
	font-family: 'Fira Sans', 'Trebuchet MS', sans-serif;
	font-size: 20px;
	line-height: 28px;
	font-weight: 600;
}
.blogPostContent__calcFormBtn {
	width: 240px;
	max-width: 100%;
	margin: 0 auto;
}
.blogPostContent__checklistSection {
	padding: 80px 30px;
	background-color: #F7F7F4;
	margin: 60px -30px;
}
.blogPostContent__checklistSectionTitle {
	font-family: 'Fira Sans', 'Trebuchet MS', sans-serif;
	font-weight: 700;
	font-size: 30px;
	font-style: italic;
	line-height: 36px;
	margin-bottom: 37px;
	color: #3C4333;
}
.blogPostContent__checklistTitle {
	font-family: 'Fira Sans', 'Trebuchet MS', sans-serif;
	font-size: 26px;
	font-weight: 700;
	line-height: 30px;
	margin-bottom: 20px;
	color: #464E3D;
}
.blogPostContent__checklistSubheading {
	font-family: 'Lato', Arial, Helvetica, sans-serif;
	font-size: 17px;
	line-height: 28px;
	margin-bottom: 20px;
	color: #6B7362;
}
.blogPostContent__checklistWrapper,
.blogPostContent__checklistContainer {
	margin-left: 30px;
}
.blogPostContent__checklist {
	margin-bottom: 33px;
}
.blogPostContent__checklistItem .bhrForm__checkboxFlex {
	margin-top: 0;
}
.blogPostContent__checklistItem .bhrForm__checkboxCopy {
	font-family: 'Lato', Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 26px;
	color: #6B7362;
}
.blogPostContent__checklistItem .bhrForm__checkboxLabel:before {
	top: 4px;
}
.blogPostContent__checklistSectionBtnContainer {
	text-align: center;
	margin-top: 80px;
}
.blogPostContent__checklistSectionBtn {
	color: #ffffff !important;
}
progress {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 4px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	/* Get rid of the default border in Firefox/Opera. */
	border: none;
	/* For Firefox/IE10+ */
	background-color: transparent;
	/* For IE10+, color of the progress bar */
	color: #73C41D;
	z-index: 10;
}
progress::-webkit-progress-bar {
	background-color: transparent;
}
progress::-webkit-progress-value {
	background-color: #73C41D;
}

progress::-moz-progress-bar {
	background-color: #73C41D;
}

.progress-container {
	width: 100%;
	background-color: transparent;
	position: fixed;
	top: 0;
	left: 0;
	height: .25em;
	display: block;
}

.progress-bar {
	background-color: #73C41D;
	width: 50%;
	display: block;
	height: inherit;
}
/* Social Share */
.blogSocial--desktop {
	position: absolute;
	top: 40px;
	right: 15px;
	z-index: 10;
	display: none;
}
.blogSocial--fixed {
	position: fixed;
	top: 180px;
}
.blogSocial--fixed.blogSocial--relativeNav {
	top: 83px;
}
.admin-bar .blogSocial--fixed {
	top: 220px;
}
.admin-bar .blogSocial--relativeNav {
	top: 83px;
}
.blogSocial--mobile {
	margin-bottom: 14px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
}
.blogSocialSubscribe__icon--subscribed .blogSocialSubscribe__iconFill {
	fill: #D6D9D0;
}
.blogSocial--mobile .blogSocialSubscribe__icon {
	width: 41px;
	height: 40px;
	line-height: 40px;
	text-align: center;
}
.blogSocial--mobile .essb_links.essb_template_grey-blocks-retina li a {
	border: none;
}
.blogSocial .essb_links {
	margin: 0;
}
.blogSocial .essb_links .essb_icon:before {
	color: #D6D9D0;
}
.blogSocial--desktop .essb_links.essb_template_grey-circles-retina li a {
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50% !important;
	margin-right: 0;
	margin-bottom: 20px;
}
.blogSocial--desktop .essb_links li {
	display: block;
}
.essb_links.essb_template_grey-circles-retina li a {
	color: #D6D9D0 !important;
	border: none !important;
}
.blogSocial .essb_links.essb_button_animation_legacy6 li a:hover {
	padding: 0 !important;
}
.essb_links li a,
.essb_links li a:focus,
.essb_links li a:hover {
	background-color: #ffffff !important;
}
.essb_links.essb_template_grey-blocks-retina li a:focus,
.essb_links.essb_template_grey-blocks-retina li a:hover {
	color: #D6D9D0 !important;
}
.essb_icon_mail:before {
	content: '';
	background-image: url('../images/email-icon.svg');
	width: 18px;
	height: 18px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

/*--------------------------------------------------------------
# Related Posts (you might also like)
--------------------------------------------------------------*/
.blogRelatedPosts {
	position: relative;
	background-color: #F7F7F4;
	padding: 80px 0 20px;
}
.blogRelatedPosts__leaf {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}
.blogRelatedPosts__leafImg {
	width: 100%;
}
.blogRelatedPosts__title {
	font-family: 'Fira Sans', 'Trebuchet MS', sans-serif;
	font-size: 28px;
	line-height: 34px;
	font-weight: 700;
	font-style: italic;
	margin-bottom: 50px;
	position: relative;
	z-index: 1;
	color: #394130;
}
.blogRelatedPosts__container {
	position: relative;
	z-index: 1;
}
/*--------------------------------------------------------------
# Search
--------------------------------------------------------------*/
.blogSearchIcon__container {
	position: fixed;
	top: 95px;
	right: 15px;
	z-index: 50;
	border-radius: 50%;
	background-color: #FFFFFF;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	-webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.2);
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.2);
	cursor: pointer;
	-webkit-transition: all ease-out 0.5s;
	-moz-transition: all ease-out 0.5s;
	-o-transition: all ease-out 0.5s;
	-ms-transition: all ease-out 0.5s;
	transition: all ease-out 0.5s;
}
.blogSearchIcon__container--relativeNav {
	top: 13px;
}
.admin-bar .blogSearchIcon__container {
	top: 141px;
}
.admin-bar .blogSearchIcon__container--relativeNav {
	top: 13px;
}
.blogSearchIsOpen {
	overflow: hidden;
}
.blogSearch__overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 200;
	background: #ffffff;
	visibility: hidden;
	opacity: 0;
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
	transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
}
.blogSearch__overlay.blogSearch--open {
	visibility: visible;
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
	transition: transform 0.4s, opacity 0.4s;
}
.blogSearch__close {
	position: absolute;
	cursor: pointer;
	top: 30px;
	right: 30px;
	border-radius: 50%;
	-webkit-box-shadow: 0 30px 60px -40px rgba(31, 28, 23, 0.5);
	box-shadow: 0 30px 60px -40px rgba(31, 28, 23, 0.5);
}
.blogSearch__closeIcon {
	position: relative;
	width: 14px;
	height: 14px;
}
.blogSearch__closeIcon:before,
.blogSearch__closeIcon:after {
	content: '';
	position: absolute;
	height: 2px;
	width: 100%;
	top: 50%;
	left: 0;
	margin-top: -1px;
	background: #E6E8E2;
	height: 3px;
	margin-top: -2px;
}
.blogSearch__closeIcon:before {
	transform: rotate(45deg);
}
.blogSearch__closeIcon:after {
	transform: rotate(-45deg);
}
.blogSearch__content {
	margin: 113px 0 100px;
	padding: 0 30px;
}
.blogSearchForm {
	margin-bottom: 50px;
}
.blogSearchForm ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #394130;
	font-weight: 600;
	font-size: 20px;
	line-height: inherit;
}
.blogSearchForm ::-moz-placeholder { /* Firefox 19+ */
	color: #394130;
	font-weight: 600;
	font-size: 20px;
	line-height: inherit;
}
.blogSearchForm :-ms-input-placeholder { /* IE 10+ */
	color: #394130;
	font-weight: 600;
	font-size: 20px;
	line-height: inherit;
}
.blogSearchForm :-moz-placeholder { /* Firefox 18- */
	color: #394130;
	font-weight: 600;
	font-size: 20px;
	line-height: inherit;
}
.blogSearchForm__inputWrapper {
	position: relative;
}
.blogSearchForm__input {
	width: 100%;
	height: 55px;
	line-height: 55px;
	border: none;
	border-bottom: 2px solid #F7F7F4;
}
.blogSearchForm__submit {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
}
.blogSearchForm__submitBtn {
	background-color: transparent;
}
.blogSearchNav__title {
	font-family: 'Fira Sans', 'Trebuchet MS', sans-serif;
	font-size: 20px;
	line-height: 28px;
	font-weight: 600;
	color: #394130;
	margin-bottom: 30px;
}
.blogSearchNav li a {
	font-size: 15px;
	line-height: 24px;
	color: #394130;
}

/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
.blogPagination__wrapper {
	text-align: center;
	margin-top: 60px;
	margin-bottom: 100px;
}
.blogPagination__selectContainer {
	position: relative;
}
.blogPagination__container {
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 10;
	height: 320px;
	overflow-y: scroll;
	background-color: #F7F7F4;
	-webkit-box-shadow: 0 30px 60px -40px rgba(31,38,23,.5), 0 70px 100px -60px rgba(31,38,23,.25);
	box-shadow: 0 30px 60px -40px rgba(31,38,23,.5), 0 70px 100px -60px rgba(31,38,23,.25);
	display: none;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
/* .blogPagination {

} */
.blogPagination__container--active {
	display: block;
}
.blogPagination {
	margin-bottom: 0;
}
.blogPagination li,
.blogPagination li a {
	color: #C5C9BD;
}
.blogPagination li a:hover {
	color: #73C41D;
}
.blogPagination__inline {
	background-color: transparent;
	padding: 0;
}
.blogPagination__inline:first-child {
	margin-left: 0;
}
.blogPagination__inline:last-child {
	margin-right: 0;
}
.blogPagination__inline:focus,
.blogPagination__selectBox:focus {
	outline: none;
}
.blogPagination__pageNumber {
	font-family: 'Fira Sans', 'Trebuchet MS', sans-serif;
	font-size: 14px;
	line-height: 40px;
	display: block;
}
.blogPagination__pageNumber.current {
	background-color: #73C41D;
	color: #FFFFFF;
}
.blogPagination__pageNumber.prev,
.blogPagination__pageNumber.next {
	font-size: 14px;
	color: #394130;
	line-height: 50px;
	padding: 0 25px;
	background-color: #F7F7F4;
	border-radius: 5px;
	height: 50px;
	display: none;
}
.blogPagination__selectBox {
	font-family: 'Fira Sans', 'Trebuchet MS', sans-serif;
	font-size: 14px;
	color: #394130;
	line-height: 50px;
	height: 50px;
	padding: 0 20px;
	background-color: #F7F7F4;
	border-radius: 5px;
	margin-bottom: 5px;
	width: 100%;
}
.blogPagination__selectBox:after {
	content: '';
	background-image: url('../images/arrow-down-gray.svg');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	width: 14px;
	height: 19px;
	display: inline-block;
	vertical-align: middle;
	margin-left: 20px;
}


/*--------------------------------------------------------------
## Media query
--------------------------------------------------------------*/
@media only screen and (max-width: 1023px){
	.blogHighlightPost {
		background-color: #ffffff !important;
	}
	.blogHighlightPost__meta--desktop {
		display: none;
	}
	.blogSearch__overlay.blogSearch--open {
		overflow: scroll;
	}
}
@media only screen and (max-width: 599px){
	.blogSearchNav__rightContainer {
		display: none;
	}
}
@media only screen and (min-width: 360px) {
	.blogPagination__inline {
		display: inline-block;
		vertical-align: top;
		margin: 0 2px;
	}
	.blogPagination__pageNumber.prev,
	.blogPagination__pageNumber.next {
		display: block;
	}
	.blogPagination__selectBox {
		width: auto;
	}
}
@media only screen and (min-width: 451px) {
	.Footer {
		padding: 82px 30px;
	}
}
@media only screen and (min-width: 600px) {
	.blogHighlightPost {
		padding: 40px 0 60px;
	}
	.blogHighlightPost__leaf {
		padding-top: 183px;
	}
	.blogHighlightPost__meta {
		margin-bottom: 30px;
	}
	.blogHighlightPost__title {
		font-size: 36px;
		line-height: 44px;
	}
	.blogHighlightPost__description {
		font-size: 17px;
		line-height: 28px;
	}
	.blogFeaturedPosts__container,
	.blogPosts__container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		-ms-flex-line-pack: stretch;
		align-content: stretch;
		margin-left: -30px;
		margin-right: -30px;
	}
	.blogFeaturedPostsBlock,
	.blogPostsBlock {
		width: 50%;
		padding: 0 30px;
		margin-bottom: 60px;
	}
	.blogMainPosts__leftContainer,
	.blogMainPosts__rightContainer {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		-ms-flex-line-pack: stretch;
		align-content: stretch;
	}
	.blogMainPostsBlock {
		width: calc(50% - 20px);
		display: inline-block;
	}
	.blogMainPostsBlock--big {
		width: 100%;
		flex: none;
	}
	.blogMainPostsBlock--big .blogPostsBlock__img {
		margin-bottom: 30px;
		border-radius: 15px;
	}
	.blogMainPostsBlock--big .blogPostsBlock__titleLink {
		font-size: 26px;
		line-height: 30px;
	}
	.blogMainPostsBlock--big .blogPostsBlock__description {
		font-size: 17px;
		line-height: 28px;
	}
	.blogMainPostsTop__leaf {
		padding-top: 200px;
	}
	.blogMainCta__container {
		padding-top: 104px;
		padding-bottom: 56px;
	}
	.blogMainCta__title {
		font-size: 48px;
		line-height: 60px;
		font-weight: 700;
	}
	.blogPostContentSubscribe {
		padding: 50px;
	}
	/* Archive Page */
	.blogArchiveHeader {
		padding: 50px 0 20px;
	}
	.blogArchiveHeader--paged {
		padding: 80px 0 237px;
	}
	.blogArchiveContent--paged {
		margin-top: -97px;
	}
	/* Single Post Page */
	.blogPostContent__metaTop {
		font-size: 14px;
		line-height: 18px;
		margin-bottom: 15px;
		padding-top: 14px;
	}
	.blogPostContent__title {
		margin-bottom: 40px;
	}
	.blogPostContent__container {
		padding-bottom: 30px;
	}
	.blogPostContentToc {
		padding: 50px;
		margin: 40px 0;
	}
	.blogPostContentToc__title {
		font-size: 18px;
		line-height: 23px;
		letter-spacing: 3px;
		margin-bottom: 30px;
	}
	.blogPostContent__container .blogPostContentToc__listItem,
	.blogPostContent__container .blogPostContentToc__subListItem{
		font-size: 17px;
		line-height: 28px;
	}
	.blogPostContent__fullWidthImgContainer {
		margin: 60px 0 70px;
	}
	.blogPostContent__quoteContainer {
		width: 250px;
	}
	.blogPostContent__quoteContainer--left {
		border-right: 2px solid;
		border-left: none;
		padding: 10px 32px 10px 0;
	}
	.blogPostContent__quoteContainer--right,
	.blogPostContent__ctaContainer--right,
	.blogPostContent__imgContainer--right {
		float: right;
		margin-left: 50px;
	}
	.blogPostContent__quoteContainer--left,
	.blogPostContent__ctaContainer--left,
	.blogPostContent__imgContainer--left {
		float: left;
		margin-right: 50px;
	}
	.blogPostContent__ctaContainer,
	.blogPostContent__imgContainer {
		width: 304px;
	}
	.blogPostContent__ctaContainer--right {
		margin-right: -54px;
		border-top-left-radius: 15px;
		border-bottom-left-radius: 15px;
	}
	.blogPostContent__ctaContainer--left {
		margin-left: -54px;
		border-top-right-radius: 15px;
		border-bottom-right-radius: 15px;
	}
	.blogPostContent__imgContainer--right {
		margin-right: -54px;
	}
	.blogPostContent__imgContainer--right .blogPostContent__img {
		border-top-left-radius: 15px;
		border-bottom-left-radius: 15px;
	}
	.blogPostContent__imgContainer--left {
		margin-left: -54px;
	}
	.blogPostContent__imgContainer--left .blogPostContent__img {
		border-top-right-radius: 15px;
		border-bottom-right-radius: 15px;
	}
	.blogPostContent__ctaContainer--fullWidth,
	.blogPostContent__ctaContainer--sideBySide {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		border-radius: 15px;
	}
	.blogPostContent__ctaImgContainer {
		min-height: 380px;
		border-top-left-radius: 15px;
		border-top-right-radius: 15px;
	}
	.blogPostContent__ctaContainer--fullWidth .blogPostContent__ctaText,
	.blogPostContent__ctaContainer--sideBySide .blogPostContent__ctaText {
		font-size: 36px;
		line-height: 44px;
	}
	.blogPostContent__playBtn {
		width: 74px;
		height: 74px;
	}
	.blogPostContent__playBtn:before {
		border-top: 15px solid transparent;
		border-bottom: 15px solid transparent;
		border-left: 23px solid #ffffff;
	}
	.blogPostContent__checklistSection {
		padding: 90px 54px;
		margin: 60px -54px;
	}
	.blogPostContent__checklistSectionTitle {
		font-size: 36px;
		line-height: 44px;
	}
	.blogPostContent__checklistItem .bhrForm__checkboxCopy {
		font-size: 17px;
		line-height: 28px;
	}
	.blogPostAuthor__container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-ms-flex-line-pack: stretch;
		align-content: stretch;
	}
	.blogPostAuthor {
		margin-top: 60px;
	}
	.blogPostAuthor__left {
		flex: 0 0 100px;
	}
	.blogPostAuthor__right {
		padding-left: 30px;
	}
	.blogPostAuthor__img {
		margin-bottom: 0;
	}
	.blogPostAuthor__name,
	.blogPostAuthor__title {
		text-align: left;
	}
	.blogPostAuthor__container--bottom {
		margin-top : 40px;
	}
	.blogSocial--mobile .essb_links ul {
		text-align: left;
	}
	.blogSocial--desktop {
		right: 20px;
	}
	.blogSocial--desktop .essb_links.essb_template_grey-circles-retina li a {
		width: 50px;
		height: 50px;
		line-height: 50px;
		-webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.2);
		box-shadow: 0 2px 5px 0 rgba(0,0,0,0.2);
		background-color: #ffffff !important;
	}
	.blogPostContent__calcContainer {
		margin: 45px 0 70px;
		padding: 50px 80px;
	}
	.blogPostContent__calcTitle {
		font-size: 36px;
		line-height: 44px;
		font-weight: 800;
	}
	/* Related Posts */
	.blogRelatedPosts {
		padding: 100px 0 36px;
	}
	.blogRelatedPosts__title {
		margin-bottom: 70px;
		font-size: 36px;
		line-height: 44px;
	}
	/* Search */
	.blogSearchIcon__container {
		top: 100px;
		right: 20px;
		width: 50px;
		height: 50px;
		line-height: 50px;
	}
	.blogSearchIcon__container--relativeNav {
		top: 13px;
	}
	.blogSearch__content {
		margin: 190px 0 100px;
		padding: 0 54px;
	}
	.blogSearchForm {
		margin-bottom: 80px;
	}
	.blogSearchForm ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
		font-size: 30px;
		line-height: inherit;
	}
	.blogSearchForm ::-moz-placeholder { /* Firefox 19+ */
		font-size: 30px;
		line-height: inherit;
	}
	.blogSearchForm :-ms-input-placeholder { /* IE 10+ */
		font-size: 30px;
		line-height: inherit;
	}
	.blogSearchForm :-moz-placeholder { /* Firefox 18- */
		font-size: 30px;
		line-height: inherit;
	}
	.blogSearchForm__input {
		line-height: 58px;
	}
	.blogSearchNav__container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		-ms-flex-line-pack: stretch;
		align-content: stretch;
	}
	.blogSearchNav__leftContainer {
		width: calc(30.3% - 20px);
	}
	.blogSearchNav__rightContainer {
		width: calc(69.7% - 20px);
	}
	.blogSearchNav--right {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		-ms-flex-line-pack: stretch;
		align-content: stretch;
		margin-left: -20px;
		margin-right: -20px;
	}
	.blogSearchNav--right li {
		width: 50%;
		padding-left: 20px;
		padding-right: 20px;
	}
	.blogSearchNav {
		line-height: 16px;
	}
	.blogSearchNav li {
		margin-bottom: 10px;
	}
	.blogSearchNav li a {
		font-size: 12px;
		line-height: 16px;
	}
	.blogPagination__inline {
		margin: 0 15px;
	}
	.blogPagination__container {
		height: 200px;
	}
	.blogPagination__pageNumber.prev,
	.blogPagination__pageNumber.next,
	.blogPagination__selectBox,
	.blogPagination__pageNumber {
		font-size: 15px;
	}
}
@media only screen and (min-width: 601px) {
	/* wordpress admin bar affected styles */
	.admin-bar .blogSearchIcon__container--relativeNav {
		top: 59px;
	}
	.admin-bar .blogSocial--relativeNav {
		top: 129px;
	}
	.admin-bar .blogSearch__overlay {
		top: 46px;
	}
}
/* Social Share */
@media screen and (max-width: 750px) {
	.essb-mobile-sharebar, .essb-mobile-sharepoint, .essb-mobile-sharebottom, .essb-mobile-sharebottom .essb_links, .essb-mobile-sharebar-window .essb_links, .essb-mobile-sharepoint .essb_links {
	    display: none !important;
	}
	.essb_links {
		display: block !important;
	}
	.blogSocial--mobile .essb_links.essb_links_center,
	.blogSocial--mobile .essb_links.essb_network_align_center {
		text-align: left !important;
	}
}
@media screen and (min-width: 783px) {
	.admin-bar .blogSearchIcon__container {
		top: 132px;
	}
	.admin-bar .blogSearchIcon__container--relativeNav {
		top: 65px;
	}
	.admin-bar .blogSearch__overlay {
		top: 32px;
	}
	.admin-bar .blogPostBanner__imgContainer {
		top: 32px;
	}
}
@media only screen and (min-width: 768px) {
	.blogHighlightPost__imgContainer {
		margin-bottom: 36px;
	}
	.blogPostContent__container .blogPostContentToc__list {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: stretch;
		align-content: stretch;
	}
	.blogPostContentToc__listLeft,
	.blogPostContentToc__listRight {
		width: calc(50% - 25px)
	}
	.blogPostContent__calcTitle {
		margin-bottom: 40px;
	}
	.blogPostContent__calcFormInputWrapper {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: flex-start;
		align-items: center;
		align-content: stretch;
		text-align: left;
	}
	.blogPostContent__calcFormInputDollarSign {
		top: 15px;
	}
	.blogPostContent__calcFormResultContainer {
		margin: 40px 0;
	}
	.blogPostContent__calcFormLabel,
	.blogPostContent__calcFormResultLeft {
		width: calc(100% - 210px);
	}
	.blogPostContent__calcFormInput,
	.blogPostContent__calcFormResultRight {
		width: 200px;
	}
}
@media only screen and (min-width: 1024px) {
	.blogSearch__overlay {
		z-index: 99;
	}
	.blogHighlightPost {
		padding: 78px 0 220px;
		background-color: #F5F4ED;
	}
	.blogHighlightPost__leaf {
		top: auto;
		bottom: 0;
		background-color: none;
		padding-top: 0;
	}
	.blogHighlightPost__container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-ms-flex-line-pack: stretch;
		align-content: stretch;
	}
	.blogHighlightPost__left {
		width: calc(50% - 50px);
	}
	.blogHighlightPost__right {
		width: calc(50% - 50px);
	}
	.blogHighlightPost__meta--mobile {
		display: none;
	}
	.blogHighlightPost__imgContainer {
		margin-bottom: 0;
	}
	.blogHighlightPost__title {
		font-size: 48px;
		line-height: 60px;
	}
	.blogHighlightPost__description {
		margin-bottom: 50px;
	}
	.blogFeaturedPosts {
		margin-top: -150px;
		position: relative;
	}
	.blogFeaturedPosts__container,
	.blogPosts__container {
		margin-left: -20px;
		margin-right: -20px;
	}
	.blogFeaturedPostsBlock,
	.blogPostsBlock {
		width: 25%;
		padding: 0 20px;
		margin-bottom: 64px;
	}
	.blogMainPosts--padding {
		padding-top: 120px;
	}
	.blogMainPosts__container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		-ms-flex-line-pack: stretch;
		align-content: stretch;
	}
	.blogMainPosts__left,
	.blogMainPosts__right {
		width: calc(50% - 20px);
	}
	.blogMainCta__container {
		padding-top: 106px;
		padding-bottom: 0;
	}
	.blogMainCta--home {
		margin-top: -60px;
	}
	/* Archive Page */
	.blogArchiveHeader {
		padding: 80px 0 22px;
	}
	.blogArchiveHeader--paged {
		padding: 100px 0 393px;
	}
	.blogArchiveContent--paged {
		margin-top: -253px;
	}
	/* Single Post Page */
	.blogPostBanner__imgContainer {
		top: 70px;
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
	}
	.admin-bar .blogPostBanner__imgContainer {
		top: 102px;
	}
	.blogPostBanner__extra {
		position: relative;
	}
	.blogPostContent__metaTop {
		font-size: 18px;
		line-height: 23px;
		margin-bottom: 20px;
		padding-top: 0;
	}
	.blogPostContent__container {
		margin-top: -60px;
		padding-bottom: 70px;
	}
	.blogPostContent__bg {
		top: 60px;
	}
	.blogPostContent__quoteContainer--left {
		padding: 10px 50px 10px 0;
	}
	.blogPostContent__quoteContainer--right {
		padding: 10px 0 10px 50px;
	}
	.blogPostAuthor__container--bottom {
		margin-top : 30px;
	}
	.blogPostContent__ctaContainer,
	.blogPostContent__img {
		border-radius: 15px;
	}
	.blogPostContent__ctaContainer--fullWidth,
	.blogPostContent__ctaContainer--sideBySide {
		margin-top: 60px;
		margin-bottom: 60px;
	}
	.blogPostContent__ctaContainer--fullWidth {
		padding-top: 60px;
		padding-bottom: 90px;
	}
	.blogPostContent__ctaContainer--sideBySide {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		-ms-flex-line-pack: stretch;
		align-content: stretch;
		position: relative;
	}
	.blogPostContent__ctaLeaf--mobile {
		display: none;
	}
	.blogPostContent__ctaLeaf--desktop {
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		height: 100%;
		width: auto;
		z-index: 10;
	}
	.blogPostContent__ctaImgContainer {
		flex: 0 0 auto;
		width: 53.33%;
		border-bottom-left-radius: 15px;
		border-top-right-radius: 0;
		min-height: 370px;
	}
	.blogPostContent__ctaContentContainer {
		flex: 1 1 0;
		padding: 50px 70px 60px;
		text-align: left;
		position: relative;
		z-index: 10;
	}
	.blogPostContent__videoContainer {
		max-width: 700px;
		margin-top: 60px;
		margin-bottom: 60px;
	}
	.blogPostContent__playBtn {
		width: 80px;
		height: 80px;
	}
	.blogPostContent__checklistSection {
		border-radius: 10px;
	}
	.blogPostContent__checklistWrapper,
	.blogPostContent__checklistContainer {
		margin-left: 50px;
	}
	progress {
		top: 70px;
	}
	.admin-bar progress {
		top: 102px;
	}
	.blogSocial--fixed.blogSocial--relativeNav {
		top: 180px;
	}
	.blogSocial--desktop {
		right: 25px;
		display: block;
	}
	.blogSocial--desktop .essb_links.essb_template_grey-circles-retina li a {
		width: 54px;
		height: 54px;
		line-height: 54px;
	}
	.blogSocial--mobile {
		display: none;
	}
	.blogSocialSubscribe__icon {
		border-radius: 50%;
		background-color: #FFFFFF;
		width: 54px;
		height: 54px;
		line-height: 54px;
		text-align: center;
		-webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.2);
		box-shadow: 0 2px 5px 0 rgba(0,0,0,0.2);
		cursor: pointer;
		-webkit-transition: all ease-out 0.5s;
		-moz-transition: all ease-out 0.5s;
		-o-transition: all ease-out 0.5s;
		-ms-transition: all ease-out 0.5s;
		transition: all ease-out 0.5s;
	}
	.blogPostContent__calcContainer {
		padding: 50px 130px;
		margin: 80px 0 105px;
	}
	/* Related Posts */
	.blogRelatedPosts {
		padding: 150px 0 50px;
	}
	.blogRelatedPosts__title {
		margin-bottom: 100px;
		font-size: 48px;
		line-height: 60px;
	}
	/* Search */
	.blogSearchIcon__container {
		top: 105px;
		right: 25px;
		width: 54px;
		height: 54px;
		line-height: 54px;
	}
	.admin-bar .blogSearchIcon__container {
		top: 137px;
	}
	.admin-bar .blogSocial--fixed {
		top: 213px;
	}
	.blogSearch__overlay {
		top: 70px;
	}
	.admin-bar .blogSearch__overlay {
		top: 102px;
	}
	.blogSearch__close {
		padding: 20px;
		background-color: #E6E8E2;
	}
	.blogSearch__closeIcon:before,
	.blogSearch__closeIcon:after {
		background-color: #FFFFFF;
	}
	.blogSearch__content {
		margin: 180px auto 100px;
		max-width: 1200px;
	}
	.blogSearchForm {
		margin-bottom: 100px;
	}
	.blogSearchNav__leftContainer {
		width: calc(25% - 60px);
	}
	.blogSearchNav__rightContainer {
		width: calc(75% - 60px);
	}
	.blogSearchNav--right {
		margin-left: -25px;
		margin-right: -25px;
	}
	.blogSearchNav--right li {
		width: 33.33%;
		padding-left: 25px;
		padding-right: 25px;
	}
	.blogSearchNav {
		line-height: 24px;
	}
	.blogSearchNav li a {
		font-size: 14px;
	}
}
@media only screen and (min-width: 1440px) {
	.blogHighlightPost__left {
		width: 700px;
	}
	.blogHighlightPost__right {
		padding-left: 100px;
		width: calc(100% - 700px)
	}
	.blogPostContent__fullWidthImgContainer {
		margin: 80px -200px 90px;
	}
	.blogPostContent__quoteContainer,
	.blogPostContent__imgContainer {
		width: 400px;
	}
	.blogPostContent__quoteContainer--right,
	.blogPostContent__ctaContainer--right,
	.blogPostContent__imgContainer--right {
		margin-right: -200px;
	}
	.blogPostContent__quoteContainer--left,
	.blogPostContent__ctaContainer--left,
	.blogPostContent__imgContainer--left {
		margin-left: -200px;
	}
	.blogPostContent__ctaContainer {
		padding: 50px;
		width: 400px;
	}
	.blogSearchNav__leftContainer {
		width: calc(22% - 60px);
	}
	.blogSearchNav__rightContainer {
		width: calc(78% - 60px);
		padding-right: 100px;
	}
	.blogPostContent__ctaContainer--fullWidth,
	.blogPostContent__ctaContainer--sideBySide {
		width: 1200px;
		margin-left: -200px;
		margin-right: 0;
	}
	.blogPostContent__ctaContainer--fullWidth {
		padding-top: 60px;
		padding-bottom: 90px;
	}
	.blogPostContent__ctaContainer--sideBySide {
		padding: 0;
	}
	.blogPostContent__checklistSection {
		padding: 90px 200px;
		margin: 60px -200px;
	}
}
@media only screen and (min-width: 1920px) {
	.blogHighlightPost {
		padding: 92px 0 330px;
	}
	.blogFeaturedPosts {
		margin-top: -220px;
		padding-bottom: 36px;
	}
	.blogFeaturedPosts__container,
	.blogPosts__container {
		margin-left: -50px;
		margin-right: -50px;
	}
	.blogFeaturedPostsBlock,
	.blogPostsBlock {
		width: 25%;
		padding: 0 50px;
		margin-bottom: 100px;
	}
	.blogMainPosts__left,
	.blogMainPosts__right {
		width: calc(50% - 50px);
	}
	.blogMainPostsBlock {
		width: calc(50% - 50px);
		margin-bottom: 100px;
	}
	.blogMainPostsBlock--big {
		width: 100%;
		flex: none;
	}
	.blogSocial--fixed {
		top: 205px;
	}
	.admin-bar .blogSocial--fixed {
		top: 237px;
	}
	/* Single Post Page */
	.blogPostContent__container {
		margin-top: -88px;
	}
	.blogPostContent__bg {
		top: 88px;
	}
	.blogPostContent__videoContainer {
		margin-top: 68px;
		margin-bottom: 68px;
	}
	.blogPostAuthor {
		margin-top: 100px;
	}
	.blogPostAuthor__container--bottom {
		margin-top : 25px;
	}
	.blogSocial--desktop {
		right: 50px;
	}
	.blogPostContent__calcContainer {
		padding: 50px 145px;
		margin: 125px 0 220px;
	}
	/* Archive Page */
	.blogArchiveHeader--paged {
		padding: 100px 0 503px;
	}
	.blogArchiveContent--paged {
		margin-top: -363px;
	}
	/* Search */
	.blogSearchIcon__container {
		top: 130px;
		right: 50px;
	}
	.admin-bar .blogSearchIcon__container {
		top: 162px;
	}
	.blogSearch__close {
		top: 50px;
		right: 50px;
	}
}

/*--------------------------------------------------------------
# 404 Page
--------------------------------------------------------------*/
.ErrorHero {
  padding: 100px 30px 60px;
  background-color: #fbfbfb;
  text-align: center;
}
@media screen and (min-width: 451px) {
  .ErrorHero {
    padding: 148px 50px 80px;
  }
}
@media screen and (min-width: 1025px) {
  .ErrorHero {
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 1025px) {
  .ErrorHero__container {
    max-width: 1200px;
    margin: 0 auto;
  }
}
.ErrorHero__title {
	font-size: 44px;
	line-height: 52px;
	color: #363f3a;
	font-family: 'Fira Sans',Trebuchet MS,sans-serif;
	margin: 0;
	text-align: center;
	letter-spacing: 0;
	font-weight: 900;
	font-style: normal;
}
@media screen and (min-width: 451px) {
  .ErrorHero__title {
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 1025px) {
  .ErrorHero__title {
    font-size: 65px;
    line-height: 70px;
    margin-bottom: 15px;
  }
}
.ErrorHero__subTitle {
  color: #7a817c;
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 30px;
  font-weight: 700;
letter-spacing: 0;
text-align: center;
}
@media screen and (min-width: 451px) {
  .ErrorHero__subTitle {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1025px) {
  .ErrorHero__subTitle {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 80px;
  }
}
.ErrorHero__image {
  height: auto;
  width: 100%;
  max-width: 980px;
}
.ErrorContent {
  padding: 80px 30px 0;
}
@media screen and (min-width: 451px) {
  .ErrorContent {
    padding: 80px 50px 0;
  }
}
@media screen and (min-width: 1025px) {
  .ErrorContent {
    padding-top: 125px;
  }
}
.ErrorContent__container {
  max-width: 701px;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .ErrorContent__container {
    max-width: 1200px;
  }
}
.ErrorContent__phrase {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 60px;
}
@media screen and (min-width: 451px) {
  .ErrorContent__phrase {
    font-size: 40px;
    line-height: 44px;
  }
}
@media screen and (min-width: 1025px) {
  .ErrorContent__phrase {
    margin-bottom: 115px;
  }
}
.ErrorContent__wrapper {
  margin-bottom: 80px;
}
@media screen and (min-width: 451px) {
  .ErrorContent__wrapper {
    margin-bottom: 120px;
  }
}
@media screen and (min-width: 1025px) {
  .ErrorContent__wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -o-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .ErrorContent__wrapper:nth-child(even) .ErrorContent__imageWrapper {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -o-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
}
@media screen and (min-width: 1025px) {
  .ErrorContent__wrapper--margin {
    margin-bottom: 85px;
  }
}
.ErrorContent__image {
  height: auto;
  width: 100%;
}
.ErrorContent__imageWrapper {
  margin-bottom: 40px;
}
@media screen and (min-width: 451px) {
  .ErrorContent__imageWrapper {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1025px) {
  .ErrorContent__imageWrapper {
    max-width: 630px;
    width: calc(56% - 35px);
    margin-bottom: 0;
  }
}
.ErrorContent__imageWrapper--margin {
  margin-bottom: 20px;
}
@media screen and (min-width: 1025px) {
  .ErrorContent__imageWrapper--margin {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  .ErrorContent__info {
    max-width: 500px;
    width: calc(45% - 35px);
    text-align: left;
  }
}
.ErrorContent__title {
  font-family: 'Lato', Arial , Helvetica , sans-serif;
  font-size: 26px;
  line-height: 32px;
  margin: 0 0 10px;
  letter-spacing: 0;
  word-spacing: 0;
  font-weight: 400;
  color: #363f3a;
  font-style: normal;
}
.ErrorContent__subTitle {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin: 0 0 20px;
  color: #7a817c;
}
@media screen and (min-width: 451px) {
  .ErrorContent__subTitle {
    margin-bottom: 30px;
  }
}
.ErrorContent__paragraph {
  margin: 0 0 20px;
}
.ErrorContent__button {
  margin-top: 20px;
  width: 100%;
  max-width: 354px;
}
@media screen and (min-width: 451px) {
  .ErrorContent__button {
    max-width: 290px;
  }
}

/*--------------------------------------------------------------
# Sitewide Cookie
--------------------------------------------------------------*/
.SiteWideCookie {
  display: none;
  position: fixed;
  bottom: 0;
  background-color: #363f3a;
  opacity: 0.9;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  filter: alpha(opacity=90);
  width: 100%;
  padding: 20px 42px 30px;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .SiteWideCookie {
    padding: 30px 54px;
  }
}
@media screen and (min-width: 1024px) {
  .SiteWideCookie {
    padding: 24px 54px;
  }
}
.SiteWideCookie__container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: distribute;
  -moz-box-pack: distribute;
  -o-box-pack: distribute;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.SiteWideCookie__copy {
  color: #fff;
  font-family: 'Lato' , Arial , Helvetica , sans-serif;
  max-width: 733px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .SiteWideCookie__copy {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1041px) {
  .SiteWideCookie__copy {
    margin: 0;
    text-align: left;
  }
}
.SiteWideCookie__link {
  color: #fff;
  text-decoration: underline;
}
.SiteWideCookie__button {
  width: 200px;
  border-radius: 5px;
  background-color: #6b7362;
  cursor: pointer;
}
.SiteWideCookie__buttonCopy {
  margin: 18.5px auto;
  color: #fff;
  text-align: center;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.Footer {
  background-color: #464e3d;
  text-align: left;
  -webkit-box-shadow: 0px 5px 5px rgba(0,0,0,0.5);
  box-shadow: 0px 5px 5px rgba(0,0,0,0.5);
  position: relative;
  padding: 80px 30px 30px;
/* .Footer--minimal styles */
}
@media screen and (min-width: 450px) {
  .Footer {
    padding: 82px 30px;
  }
}
@media screen and (min-width: 1024px) {
  .Footer {
    padding: 120px 30px 60px;
  }
}
@media screen and (min-width: 1920px) {
  .Footer {
    padding: 140px 30px 70px;
  }
}
.Footer__container {
  margin: 0 auto;
  max-width: 290px;
}
@media screen and (min-width: 600px) {
  .Footer__container {
    max-width: 640px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -o-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -o-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .Footer__container {
    max-width: 1200px;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -o-box-lines: single;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
@media screen and (min-width: 1920px) {
  .Footer__container {
    max-width: 1500px;
  }
}
.Footer__container--ccpa {
    margin-top: 40px;
    display: block;
    font-size: 14px;
    line-height: 18px;
}
@media screen and (min-width: 600px) {
  .FooterSubscribe {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .FooterSubscribe {
    -webkit-box-ordinal-group: 3;
    -moz-box-ordinal-group: 3;
    -o-box-ordinal-group: 3;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
    max-width: 400px;
  }
}
@media screen and (min-width: 1920px) {
  .FooterSubscribe {
    max-width: 533px;
  }
}
.FooterSubscribe__title {
  text-align: left;
  color: #fff;
  font-size: 20px;
  line-height: 29px;
  font-weight: 600;
  font-family: 'Fira Sans' , "Trebuchet MS" , sans-serif;
  margin-bottom: 26px;
}
@media screen and (min-width: 1024px) {
  .FooterSubscribe__title {
    margin-bottom: 30px;
  }
}
.FooterSubscribe__message {
  margin-bottom: 25px;
}
.FooterContent {
  margin-top: 30px;
}
@media screen and (min-width: 600px) {
  .FooterContent {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .FooterContent {
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .FooterContent--socialLegal {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -o-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: end;
    -moz-box-align: end;
    -o-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -ms-flex-line-pack: end;
    -webkit-align-content: flex-end;
    align-content: flex-end;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -o-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    width: 400px;
  }
}
.FooterContent__title {
  color: #fff;
  font-size: 20px;
  line-height: 29px;
  font-weight: 600;
  font-family: 'Fira Sans' , "Trebuchet MS" , sans-serif;
  margin-bottom: 10px;
}
.FooterContent__wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
}
.FooterContent__links {
  margin-right: 40px;
}
@media screen and (min-width: 768px) {
  .FooterContent__links {
    margin-right: 64px;
  }
}
.FooterContent__links:last-child {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .FooterContent__links--flex {
    margin-right: 54px;
  }
}
@media screen and (min-width: 1024px) {
  .FooterContent__links--flex {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    margin-top: 95px;
    margin-right: 0;
  }
}
@media screen and (min-width: 1920px) {
  .FooterContent__links--flex {
    margin-top: 115px;
  }
}
.FooterContent__link {
  color: #b4baab;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
.FooterContent__link:hover {
  color: #fff;
}
.FooterContent__wrapLink {
  font-size: 14px;
  line-height: 18px;
  font-family: 'Lato' , Arial , Helvetica , sans-serif;
  margin-top: 10px;
  color: #b4baab;
}
@media screen and (min-width: 1024px) {
  .FooterContent__wrapLink {
    margin-top: 20px;
  }
  .FooterContent__wrapLink:last-child {
    margin-right: 0;
  }
}
@media screen and (min-width: 600px) {
  .FooterContent__wrapLink--noMargin {
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .FooterContent__wrapLink--legal {
    margin-top: 0;
    margin-right: 50px !important;
  }
}
.FooterContent__wrapLink--copyright {
  font-size: 12px;
}
.FooterContent__social {
  margin-top: 40px;
  width: 100%;
}
@media screen and (min-width: 600px) {
  .FooterContent__social {
    margin-top: 0;
  }
}
.FooterContent__legal {
  width: 100%;
}
.FooterContent__wrapIcon {
  margin-right: 20px;
}
.FooterContent__wrapIcon--margin {
  margin-right: 39px;
}
@media screen and (min-width: 600px) {
  .FooterContent__wrapIcon--margin {
    margin-right: 0;
  }
}
.FooterContent__icon {
  height: 12px;
}
@media screen and (min-width: 1024px) {
  .FooterContent--terms {
    width: calc(100% - 400px);
  }
}
.Footer--simple {
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .Footer--simple {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.Footer--simple .Footer__container {
  max-width: 1200px;
}
.Footer--simple .FooterBottom {
  margin-top: 0;
  width: 100%;
}
@media screen and (min-width: 600px) {
  .Footer--simple .FooterBottom__legal {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .Footer--simple .FooterBottom__legal {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -o-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-lines: single;
    -moz-box-lines: single;
    -o-box-lines: single;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -o-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -ms-flex-line-pack: stretch;
    -webkit-align-content: stretch;
    align-content: stretch;
    width: 100%;
  }
}
.Footer--simple .FooterBottom__legalLinks {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -o-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
  -ms-flex-line-pack: stretch;
  -webkit-align-content: stretch;
  align-content: stretch;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.Footer--simple .FooterBottom__legalLinks .FooterBottom__wrapLink {
  margin-left: 15px;
  margin-right: 15px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .Footer--simple .FooterBottom__legalLinks .FooterBottom__wrapLink {
    margin-left: 0;
    margin-right: 50px;
  }
}
.Footer--simple .FooterBottom__legalLinks .FooterBottom__wrapLink:first-child {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .Footer--simple .FooterBottom__legalLinks .FooterBottom__wrapLink:first-child {
    width: auto;
  }
}
.Footer--simple .FooterBottom__wrapLink {
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .Footer--simple .FooterBottom__wrapLink {
    margin-bottom: 0;
  }
}
.Footer--simple .FooterBottom__wrapLink--copyright {
  font-size: 10px;
  line-height: 15px;
  text-align: center;
  color: #b4baab;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .Footer--simple .FooterBottom__wrapLink--copyright {
    font-size: 14px;
    line-height: 18px;
    text-align: right;
  }
}
.Footer--simple .FooterBottom__link {
  color: #b4baab;
  font-size: 14px;
  line-height: 18px;
}
.Footer .FooterSubscribe__submit {
  padding: 17px 18px;
  border-radius: 0 25px 25px 0;
  margin: 0px;
  color: #fff;
  background-color: #73c41d;
  height: 100%;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  -webkit-appearance: none;
}
.Footer .FooterSubscribe__submit:hover {
  background-color: #73c41d;
}
.Footer .FooterSubscribe__fieldset {
  margin: 0;
  width: auto;
  height: 51px;
}
.Footer .FooterSubscribe__email {
	margin-bottom: 0;
	background: #6b7362;
	border-radius: 25px 0 0 25px;
	padding-left: 30px;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	line-height: 16px;
	border: 2px solid transparent
}
.Footer .FooterSubscribe__email::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
  color: #fff;
}
.Footer .FooterSubscribe__email::-moz-placeholder {
/* Firefox 19+ */
  color: #fff;
}
.Footer .FooterSubscribe__email:-ms-input-placeholder {
/* IE 10+ */
  color: #fff;
}
.Footer .FooterSubscribe__email:-moz-placeholder {
/* Firefox 18- */
  color: #fff;
}
.Footer input {
  border: none;
  height: auto;
  width: auto;
}
.Footer ul,
.Footer ol {
	margin-bottom: 0;
}