@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,400;0,700;0,900;1,100;1,400;1,700;1,900&display=swap');
@font-face {
    font-family: 'royalAcidOutline';
    src: url('royalacid_o-webfont.woff2') format('woff2'),
         url('royalacid_o-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'royalAcid';
    src: url('royalacid-webfont.woff2') format('woff2'),
         url('royalacid-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
body {
	color: #333;
	margin: 0;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	-webkit-transition: opacity 0.2s linear 0s;
	-moz-transition: opacity 0.2s linear 0s;
	-ms-transition: opacity 0.2s linear 0s;
	transition: opacity 0.2s linear 0s;
	opacity: 0;
	background: white;
}
.no-bg {
	position: relative;
	background: url(../images/background.jpg) repeat-y fixed center top white;
}
body.ready {
	opacity: 1;
}
h1, h2, h3 {
	text-align: center;
	color: #882330;
	margin-bottom: 30px;
}
.bold, strong, b, .nav p {
	font-weight: 700;
}
@media (min-width: 768px) {
	.pad {
		20px;
	}
	.pad > * {
		margin-bottom: 0;
	}
}
h1, h2, .black {
	font-weight: 900;
}
.vMargins {
	margin-top: 20px;
	margin-bottom: 20px;
	display: block;
}
.divider-line {
	position: relative;
	width: 100%;
	height: 2px;
	background-color: #882330;
}
a, .btn {
	color: #882330;
	-webkit-transition: background 0.6s, color 0.6s;
	-moz-transition: background 0.6s, color 0.6s;
	-ms-transition: background 0.6s, color 0.6s;
	-o-transition: background 0.6s, color 0.6s;
	transition: background 0.6s, color 0.6s;
}
.btn {
	line-height: 1rem;
}
a:hover, .btn:hover {
	color: #44ada4;
}
a {
	text-decoration: underline;
}
img {
	max-width: 100%;
	height: auto;
}
.red-borders {
	border-left: 1px solid #882330;
}
@media (min-width: 768px) and (max-width: 991px) {
	.red-borders:nth-child(4) {
		border-left: medium none;
	}
	.red-borders:nth-child(4), .red-borders:nth-child(5) {
		border-top: 1px solid #882330;
	}
	.red-borders {
		padding-top: 15px;
	}
}
@media (max-width: 767px) {
	.diagram {
		margin: 0 auto;
		display: inherit;
	}
	.red-borders {
		border: medium none;
		border-top: 1px solid #882330;
		padding-top: 15px;
	}
}
.red {
	color: #882330;
}
.green {
	color: #44ada4;
}
.white {
	color: white;
}
.red-bg, .green-bg {
	position: relative;
}
.red-bg::before, .green-bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*
	mix-blend-mode: multiply;
	*/
	background-color: #882330;
}
.green-bg::before {
	background-color: #44ada4;
}
.green-bg, .red-bg, .green-bg a, .red-bg a {
	color: white;
}
.green-bg h1, .green-bg h2, .green-bg h3, .red-bg h1, .red-bg h2, .red-bg h3 {
	color: white;
}
.red-border-top {
	border-top: 14px solid #882330;
}
.fade-top {
	box-shadow: 0px -10px 10px rgba(0, 0, 0, 0.25);
}
.fade-bottom {
	box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
}
#hdr {
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(137, 38, 50, 0.8);
	overflow: hidden;
	-webkit-transition: height 0.6s ease-in-out;
	-moz-transition: height 0.6s ease-in-out;
	-ms-transition: height 0.6s ease-in-out;
	-o-transition: height 0.6s ease-in-out;
	transition: height 0.6s ease-in-out;
	height: 70px;
	text-align: center;
	z-index: 50;
}
.three-wrapper {
	overflow: hidden;
	background-color: #f7ece6;
}
.section {
	padding-top: 50px;
	padding-bottom: 50px;
}
#care-team .section {
	padding-bottom: 20px;
}
.smallsection {
	padding-top: 30px;
	padding-bottom: 30px;
}
.trans {
	-webkit-transition: opacity 0.6s linear 0s, transform 0.7s ease-out 0s;
	-moz-transition: opacity 0.6s linear 0s, transform 0.7s ease-out 0s;
	-ms-transition: opacity 0.6s linear 0s, transform 0.7s ease-out 0s;
	-o-transition: opacity 0.6s linear 0s, transform 0.7s ease-out 0s;
	transition: opacity 0.6s linear 0s, transform 0.7s ease-out 0s;
	-webkit-transform: translateY(80px);
	-moz-transform: translateY(80px);
	-ms-transform: translateY(80px);
	-o-transform: translateY(80px);
	transform: translateY(80px);
	opacity: 0;
}
.trans.vis {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}
.align-items-end {
	margin-bottom: 30px;
}
@media (max-width: 991px) {
	#hdr > .container {
		position: relative;
	}
}
@media (min-width: 768px) {
	.center-vertically {
		display: flex;
		align-items: center;
	}
	.center-vertically > * {
		margin: 0;
	}
}
.share-logo {
	max-width: 150px;
	height: auto;
	border-radius: 3px;
}
/*
.share-btn:first-child {
	margin-top: 35px;
}
.share-btn > * {
	display: inline-block;
	position: relative;
}
#twitter-widget-0 {
  position: relative !important;
  width: 81px !important;
  height: 28px !important;
  display: inline-block !important;
  margin: 0 5px 0 0 !important;
}
.fb_iframe_widget {
  display: inline-block;
  position: relative;
  margin: 0 5px 0 0;
}
.fb_iframe_widget > span {
  vertical-align: middle !important;
  width: 81px !important;
  height: 28px !important;
  position: relative !important;
  margin-top: -20px !important;
}
.fb_iframe_widget > span > iframe {
	border: medium none !important;
	background-color: #1877f2;
	width: 75px !important;
	height: 28px !important;
	padding: 0px 2px !important;
	border-radius: 40px !important;
}
*/
.burger {
	width: 30px;
	height: 16px;
	position: absolute;
	top: 27px;
	right: 30px;
}
.bar {
	width: 100%;
	height: 4px;
	background-color: white;
	margin-bottom: 8px;
	display: block;
}
.logo {
	width: 100px;
	height: auto;
	margin: 10px auto;
	-webkit-transition: width 0.6s ease-in-out;
	-moz-transition: width 0.6s ease-in-out;
	-ms-transition: width 0.6s ease-in-out;
	-o-transition: width 0.6s ease-in-out;
	transition: width 0.6s ease-in-out;
	display: inline-block;
}
.nav-wrap {
	position: absolute;
	left: 0;
	top: 0;
	-webkit-transition: top 0.6s ease-in-out;
	-moz-transition: top 0.6s ease-in-out;
	-ms-transition: top 0.6s ease-in-out;
	-o-transition: top 0.6s ease-in-out;
	transition: top 0.6s ease-in-out;
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	-ms-transform: translateY(0%);
	-o-transform: translateY(0%);
	transform: translateY(0%);
}
body.nav-open .nav-wrap {
	top: 50px;
}
body.nav-open .logo {
	width: 175px;
}
.nav p {
	color: white;
	cursor: pointer;
	display: block;
	width: 100%;
	text-align: center;
	padding: 10px 20px;
}
.nav {
	width: 100%;
}
@media (min-width: 992px) {
	.nav-wrap {
		position: relative;
		top: 0;
		-webkit-transform: translateY(0%);
		-moz-transform: translateY(0%);
		-ms-transform: translateY(0%);
		-o-transform: translateY(0%);
		transform: translateY(0%);
	}
	.burger {
		display: none;
	}
	#hdr {
		height: auto;
	}
	.nav {
		display: block;
		align-content: center;
		align-items: center;
	}
	.nav p {
		width: auto;
		text-align: right;
		display: inline-block;
		padding: 0px 10px;
		margin: 10px 0px;
		border-right: solid 1px white;
	}
	.nav p:last-child {
		border: medium none;
	}
}
.icon {
	max-width: 100px;
}

.bubble {
	padding: 20px;
	margin: 20px;
	border-radius: 10px;
	box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
	position: relative;
	background-color: white;
	height: calc(100% - 40px);
	text-align: left;
}
.bubble-blue {
	background-color: #49ada4;
	color: #ffffff;
}
.bubble img {
	max-width: 150px;
	margin-bottom: 15px;
}
.bubble-link {
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 10px;
	width: 100%;
	height: 100%;
	-webkit-transition: background 0.4s;
	-moz-transition: background 0.4s;
	-o-transition: background 0.4s;
	transition: background 0.4s;
}
.bubble-link:hover {
	background-color: rgba(0, 0, 0, 0.1);
}
.bubble-link img {
	position: absolute;
	bottom: 0;
	right: 10px;
	width: 20px;
	height: 20px;
	pointer-events: none;
}
.clps {
	position: relative;
	overflow: hidden;
	margin-bottom: 15px;
	-webkit-transition: height 0.5s ease-out 0s, opacity 0.6s linear 0.4s, transform 1s ease-out 0.4s;
	-moz-transition: height 0.5s ease-out 0s, opacity 0.6s linear 0.4s, transform 1s ease-out 0.4s;
	-ms-transition: height 0.5s ease-out 0s, opacity 0.6s linear 0.4s, transform 1s ease-out 0.4s;
	-o-transition: height 0.5s ease-out 0s, opacity 0.6s linear 0.4s, transform 1s ease-out 0.4s;
	transition: height 0.5s ease-out 0s, opacity 0.6s linear 0.4s, transform 1s ease-out 0.4s;
}
.clps-header {
  background-color: #882330;
  padding: 15px 50px 15px 15px;
  border-radius: 3px;
  color: white;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: background 0.4s;
  -moz-transition: background 0.4s;
  -o-transition: background 0.4s;
  transition: background 0.4s;
}	
.clps-header:hover {
	background-color: #44ada4;
}		
.clps-btn {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 12px;
	right: 30px;
	pointer-events: none;
}
.clps .btn-open {
	display: block;
}
.clps .btn-close {
	display: none;
}
.clps.opened .btn-open {
	display: none;
}
.clps.opened .btn-close {
	display: block;
}
.footer-logo img {
  width: 140px;
}
@media (min-width: 992px) {
	.footer-logo img {
		margin-left: -379px;
	}
	.footer-logo p {
		font-size: 40px;
		margin-top: -36px;
		line-height: 40px;
		margin-left: 144px;
	}
}
.footer > .container > .section:first-child {
	padding-bottom: 0;
}
.footer > .container > .section:last-child {
	padding-top: 20px;
}
			
			
			
#storiesSlider.royalSlider, #storiesSlider .rsOverflow {
	width: 100vw !important;
	height: 65vh !important;
}
.royalSlider {
	padding-bottom: 80px !important;
}
.rsVisibleNearbyWrap {
	overflow: hidden;
}		
.royalSlider {
	width: 100%;
	position: relative;
	direction: ltr;
}
.royalSlider > * {
	float: left;
}
.rsWebkit3d .rsSlide,
.rsWebkit3d .rsContainer,
.rsWebkit3d .rsThumbs,
.rsWebkit3d .rsPreloader,
.rsWebkit3d img,
.rsWebkit3d .rsOverflow,
.rsWebkit3d .rsBtnCenterer,
.rsWebkit3d .rsAbsoluteEl,
.rsWebkit3d .rsABlock,
.rsWebkit3d .rsLink {
	-webkit-backface-visibility: hidden;
}
.rsFade.rsWebkit3d .rsSlide,
.rsFade.rsWebkit3d img,
.rsFade.rsWebkit3d .rsContainer {
    -webkit-transform: none;
}
.rsOverflow {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	float: left;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}
.rsContainer {
	position: relative;
	width: 100%;
	height: 100%;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}
.rsArrow,
.rsThumbsArrow {
	cursor: pointer;
}
.rsThumb {
	float: left;
	position: relative;
}
.rsArrow,
.rsNav,
.rsThumbsArrow {
	opacity: 1;
	-webkit-transition:opacity 0.3s linear;
	-moz-transition:opacity 0.3s linear;
	-o-transition:opacity 0.3s linear;
	transition:opacity 0.3s linear;
}
.rsHidden {
	opacity: 0;
	visibility: hidden;
	-webkit-transition:visibility 0s linear 0.3s,opacity 0.3s linear;
	-moz-transition:visibility 0s linear 0.3s,opacity 0.3s linear;
	-o-transition:visibility 0s linear 0.3s,opacity 0.3s linear;
	transition:visibility 0s linear 0.3s,opacity 0.3s linear;
}
.rsGCaption {
	width: 100%;
	float: left;
	text-align: center;
}
.rsSlide {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	height: 100%;
	width: 100%;
}
.royalSlider.rsAutoHeight,
.rsAutoHeight .rsSlide {
	height: auto;
}
.rsContent {
	width: 100%;
	height: 100%;
	position: relative;
	pointer-events: none;
}
.rsPreloader {
	position:absolute;
	z-index: 0;	
}
.rsNav {
	-moz-user-select: -moz-none;
	-webkit-user-select: none;
	user-select: none;
}
.rsNavItem {
	-webkit-tap-highlight-color:rgba(0,0,0,0.25);
}
.rsThumbs {
	cursor: pointer;
	position: relative;
	overflow: hidden;
	float: left;
	z-index: 22;
}
.rsTabs {
	float: left;
	background: none !important;
}
.rsTabs,
.rsThumbs {
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}
img.rsImg {
	max-width: none;
}
.grab-cursor {
	cursor:url(../images/grab.png) 8 8, move; 
}
.grabbing-cursor{ 
	cursor:url(../images/grabbing.png) 8 8, move;
}
.rsNoDrag {
	cursor: auto;
}
.rsImg {
	margin-top: 0px !important;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	-webkit-transition: all 1s !important;
	-moz-transition: all 1s !important;
	-ms-transition: all 1s !important;
	-o-transition: all 1s !important;
	transition: all 1s !important;
	-webkit-transform: scale(0.75);
	-moz-transform: scale(0.75);
	-ms-transform: scale(0.75);
	-o-transform: scale(0.75);
	transform: scale(0.75);
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
	pointer-events: auto;
}
.rsActiveSlide .rsImg {
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}
.rsContent {
	position: relative;
}
.labels {
	font-family: 'royalAcid';
	font-size: 19px;
	line-height: 19px;
	text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 10px;
	text-align: left;
	left: 10px;
	margin: 0;
	color: white;
	-webkit-transition: opacity 1s, margin 0.4s;
	-moz-transition: opacity 1s, margin 0.4s;
	-ms-transition: opacity 1s, margin 0.4s;
	-o-transition: opacity 1s, margin 0.4s;
	transition: opacity 1s, margin 0.4s;
	opacity: 0;
}
@media (min-width: 768px) {
	.labels {
		font-size: 28px;
		line-height: 28px;
	}
}
.rsActiveSlide .labels {
	opacity: 1;
}
.profile-btn {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}
.rsBullets, .arrows {
  position: relative;
  width: 100%;
  text-align: center;
  margin-top: 25px;
}
.arrows {
	pointer-events: none;
	margin-top: -30px;
}
.arrow-left, .arrow-right {
	pointer-events: auto;
	position: absolute;
	left: 50%;
	width: 20px;
	height: 32px;
	left: 50%;
	margin-top: -4px;
}
.arrow-left {
	margin-left: -106px;
}
.arrow-right {
	margin-left: 86px;
}
@media (min-width: 768px) {
	.rsBullets {
		margin-top: 25px;
	}
	.arrows {
		margin-top: -30px;
	}
}
.rsBullet {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	padding: 0;
	margin: 6px;
	-webkit-transition: background 0.3s, transform 0.3;
	-moz-transition: background 0.3s, transform 0.3;
	-ms-transition: background 0.3s, transform 0.3;
	-o-transition: background 0.3s, transform 0.3;
	transition: background 0.3s, transform 0.3;
	border: 2px solid white;
}
.rsNavSelected.rsBullet {
	background-color: white;
	-webkit-transform: scale(1.5);
	-moz-transform: scale(1.5);
	-ms-transform: scale(1.5);
	-o-transform: scale(1.5);
	transform: scale(1.5);
}
.feature-overlay, .video-overlay {
	position: fixed;
	top: 0;
	left: 0;
	background-color: white;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	pointer-events: none;
	z-index: 100;
	-webkit-transition: opacity 1s;
	-moz-transition: opacity 1s;
	-ms-transition: opacity 1s;
	-o-transition: opacity 1s;
	transition: opacity 1s;
	opacity: 0;
	padding-left: 45px;
	padding-right: 45px;
}
.feature > *:first-child {
	margin-top: 50px;
}
.feature > *:last-child {
	margin-bottom: 50px;
}
.feature-image {
	display: block;
	width: 100%;
	text-align: center;
	margin: 30px 0;
}
.feature-image img {
	display: inline-block;
}
.feature-btn {
	cursor: pointer;
}
#close-feature-btn {
	position: fixed;
	top: 15px;
	right: 4px;
	width: 33px;
	height: 33px;
	cursor: pointer;
	z-index: 200;
	pointer-events: none;
	-webkit-transition: opacity 1s;
	-moz-transition: opacity 1s;
	-ms-transition: opacity 1s;
	-o-transition: opacity 1s;
	transition: opacity 1s;
	opacity: 0;
}
.feature {
	display: none;
}
body.show-feature .feature-overlay, body.show-video .video-overlay {
	pointer-events: auto;
	opacity: 1;
}
body.show-feature, body.show-video {
	overflow: hidden;
}
body.show-feature #close-feature-btn, body.show-video #close-feature-btn {
	opacity: 1;
	pointer-events: auto;
}
#storiesSlider .rsContent, #storiesSlider .rsSlide {
	pointer-events: none;
}





.social {
	display: inline-block;
	width: 20px;
	height: 20px;
	overflow: hidden;
	margin: 0px 5px;
	position: relative;
	border-radius: 50%;
	cursor: pointer;
}
.social img {
	width: 20px;
	position: absolute;
	left: 0;
}
.social:hover {
	cursor: pointer;
	-webkit-transform: scale(1.15);
	-moz-transform: scale(1.15);
	-ms-transform: scale(1.15);
	-o-transform: scale(1.15);
	transform: scale(1.15);
}
.social.ig img {
	top: 0px;
}
.social.fb img {
	top: -20px;
}
.social.tw img {
	top: -40px;
}
.social.in img {
	top: -60px;
}
.footer {
	text-align: center;
	position: relative;
}
.footer img {
	max-width: 140px;
	cursor: pointer;
}
.legal {
	font-size: 13px;
}
.height-setter {
	opacity: 0;
	margin: 0;
}
.repeater-wrap {
	position: relative;
	overflow: hidden;
	width: 100vw;
	margin-bottom: 30px;
}
.repeater {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
}
/*
@-webkit-keyframes tickerleft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes tickerleft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@-webkit-keyframes tickerright {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes tickerright {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
*/
.repeater-inner {
	position: absolute;
	display: flex;
	/*
	-webkit-animation-iteration-count: infinite; 
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-name: tickerleft;
    animation-name: tickerleft;
    -webkit-animation-duration: 500s;
    animation-duration: 500s;
    */
    -webkit-transition: transform 0.01s linear 0s;
	-moz-transition: transform 0.01s linear 0s;
	-ms-transition: transform 0.01s linear 0s;
	-o-transition: transform 0.01s linear 0s;
	transition: transform 0.01s linear 0s;
}
.repeater.moves-right {
	top: 50%;
}
.repeater.moves-right .repeater-inner {
	/*
	-webkit-animation-name: tickerright;
    animation-name: tickerright;
    */
    left: auto;
    right: 0;
}
.repeater h1 {
	display: inline-flex;
	white-space: nowrap;
	margin: 0 5px;
	font-weight: 100;
}
.repeater h1.bold {
	font-weight: 900;
}


.exit-interstitial {
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	background-color: #44ada4;
	border-radius: 0px;
	color: white;
	-webkit-transition: opacity 0.5s linear 0s;
	-moz-transition: opacity 0.5s linear 0s;
	-ms-transition: opacity 0.5s linear 0s;
	transition: opacity 0.5s linear 0s;
	pointer-events: none;
	opacity: 0;
	max-height: 90vh;
	overflow-x: none;
	overflow-y: auto;
	z-index: 30;
}
.exit-interstitial h5 {
	color: white;
	text-align: left;
	padding: 0;
}
body.exiting .exit-interstitial {
	opacity: 1;
	pointer-events: all;
}
.jump-section {
	padding-top: 70px;
}
#about.jump-section, 
#more-than-HNC.jump-section, 
#resources.jump-section {
	padding-top: 0px;
}
body.exiting .jump-section, body.exiting .footer, body.exiting .three-wrapper {
	opacity: 0.5;
}
body.no-touch .sticky {
	position: sticky;
	top: 70px;
}
.exit-inner {
	padding: 30px 30px 15px 30px;
}
.exit-buttons {
	padding: 15px 0px;
	text-align: right;
	border-top: 1px solid white;
}
.exit-btn, .exit-btn:focus {
	display: inline-block;
	margin-right: 15px;
	color: white !important;
	outline: none;
	margin-bottom: 0;
	cursor: pointer;
}
.exit-btn:hover {
	background-color: white;
	color: #333 !important;
	cursor: pointer;
}
.exit-cancel {
	background-color: #777;
}
.exit-continue {
	background-color: #882330;
}
@media (min-width: 750px) {
	.exit-interstitial {
		max-width: 750px;
		border-radius: 8px;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
	}
}



#care-team {
	position: relative;
}
#honeycombSlider.royalSlider {
	height: auto !important;
	width: 100% !important;
	padding-top: 0px !important;
	padding-bottom: 0px !important;
	margin-bottom: 30px;
}
#honeycombSlider .rsContent {
	height: auto;
}
.honeycombNav {
	padding: 0;
	position: relative;
}
.hcNav {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.hcLink {
	position: absolute;
	top: -100px;
	left: -100px;
	width: 14.4%;
	height: auto;
	border-radius: 50%;
	display: block;
	cursor: pointer;
	background-size: 100% 200% !important;
	-webkit-transition: background 0.2s ease-out 0s;
	-moz-transition: background 0.2s ease-out 0s;
	-ms-transition: background 0.2s ease-out 0s;
	transition: background 0.2s ease-out 0s;
}
.hcLink:hover, .hcLink.active {
	background-position: 0 100% !important;
}
.honeycombNav img {
	width: 100%;
	height: auto;
}
.honeycombNav .hcbg {
	display: inline-block;
}

.hcLink:nth-child(1) {
	top: 1%;
	left: 5.1%;
}
.hcLink:nth-child(2) {
	top: 1%;
	left: 24.2%;
}
.hcLink:nth-child(3) {
	top: 1%;
	left: 43.2%;
}
.hcLink:nth-child(4) {
	top: 1%;
	left: 62.3%;
}
.hcLink:nth-child(5) {
	top: 1%;
	left: 81.4%;
}
.hcLink:nth-child(6) {
	top: 32.3%;
	left: 14.6%;
}
.hcLink:nth-child(7) {
	top: 32.3%;
	left: 33.6%;
}
.hcLink:nth-child(8) {
	top: 32.3%;
	left: 52.7%;
}
.hcLink:nth-child(9) {
	top: 32.3%;
	left: 71.8%;
}
.hcLink:nth-child(10) {
	top: 63.4%;
	left: 5.1%;
}
.hcLink:nth-child(11) {
	top: 63.4%;
	left: 24.1%;
}
.hcLink:nth-child(12) {
	top: 63.4%;
	left: 43.2%;
}
.hcLink:nth-child(13) {
	top: 63.4%;
	left: 62.3%;
}

@media (min-width: 768px) and (max-width: 991px) {
	.hcLink:nth-child(1) {
		top: 1%;
		left: 4.5%;
	}
	.hcLink:nth-child(2) {
		top: 1%;
		left: 24%;
	}
	.hcLink:nth-child(3) {
		top: 1%;
		left: 43.4%;
	}
	.hcLink:nth-child(4) {
		top: 1%;
		left: 62.8%;
	}
	.hcLink:nth-child(5) {
		top: 1%;
		left: 82.4%;
	}
	.hcLink:nth-child(6) {
		top: 32.3%;
		left: 14.1%;
	}
	.hcLink:nth-child(7) {
		top: 32.3%;
		left: 33.6%;
	}
	.hcLink:nth-child(8) {
		top: 32.3%;
		left: 53.1%;
	}
	.hcLink:nth-child(9) {
		top: 32.3%;
		left: 72.6%;
	}
	.hcLink:nth-child(10) {
		top: 63.4%;
		left: 4.4%;
	}
	.hcLink:nth-child(11) {
		top: 63.4%;
		left: 24%;
	}
	.hcLink:nth-child(12) {
		top: 63.4%;
		left: 43.3%;
	}
	.hcLink:nth-child(13) {
		top: 63.4%;
		left: 62.8%;
	}
}

@media (min-width: 992px) {
	.hcLink {
		width: 15%;
		height: auto;
	}
	.honeycombNav .hcMobile {
		display: none;
	}
	.honeycombNav .hcDesktop {
		display: inline-block;
	}
	.hcLink:nth-child(1) {
		top: 1%;
		left: 3.7%;
	}
	.hcLink:nth-child(2) {
		top: 1%;
		left: 23.4%;
	}
	.hcLink:nth-child(3) {
		top: 1%;
		left: 43.2%;
	}
	.hcLink:nth-child(4) {
		top: 1%;
		left: 62.8%;
	}
	.hcLink:nth-child(5) {
		top: 1%;
		left: 82.6%;
	}
	.hcLink:nth-child(6) {
		top: 32.3%;
		left: 13.4%;
	}
	.hcLink:nth-child(7) {
		top: 32.3%;
		left: 33.3%;
	}
	.hcLink:nth-child(8) {
		top: 32.3%;
		left: 53.2%;
	}
	.hcLink:nth-child(9) {
		top: 32.3%;
		left: 72.7%;
	}
	.hcLink:nth-child(10) {
		top: 63.4%;
		left: 3.7%;
	}
	.hcLink:nth-child(11) {
		top: 63.4%;
		left: 23.3%;
	}
	.hcLink:nth-child(12) {
		top: 63.4%;
		left: 43.2%;
	}
	.hcLink:nth-child(13) {
		top: 63.4%;
		left: 62.9%;
	}
}

.hcContent p {
  border: 1px solid #44aea4;
  padding: 30px 15px 10px 15px;
  display: block;
  margin-top: -10px;
  background-color: white;
}

.hcContent h5 {
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #44aea4;
    margin: 15px 0 -10px 15px;
    position: relative;
    color: #882330;
    background-color: white;
    height: 30px;
	font-size: 16px;
	line-height: 16px;
	text-transform: uppercase;
}
.hcContent h5::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 24px;
	border: 1px solid #44aea4;
	top: -8px;
	left: -8px;
	z-index: -1;
}
#honeycombSlider .rsArrow {
	position: absolute;
	top: 46px;
	width: 30px;
	height: auto;
	opacity: 1 !important;
	display: inline-block !important;
}
#honeycombSlider .rsArrow img {
	width: 40px;
	height: auto;
	position: relative;
	margin: 0;
	padding: 0;
}
#honeycombSlider .rsArrowLeft {
	left: 0;
	margin-left: -25px;
}
#honeycombSlider .rsArrowRight {
	right: 0;
	margin-right: -25px;
}
@media (max-width: 767px) {
	#honeycombSlider .rsArrow {
		display: none !important;
	}
}
.big-btn {
	position: relative;
	display: inline-block;
	border-radius: 6px;
	box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.4);
	background-color: #44aea4;
	padding: 7px 18px;
	max-width: 300px;
	-webkit-transition: background 0.6s ease-out 0s;
	-moz-transition: background 0.6s ease-out 0s;
	-ms-transition: background 0.6s ease-out 0s;
	transition: background 0.6s ease-out 0s;
	cursor: pointer;
	margin-bottom: 60px;
}
.big-btn:hover {
	background-color: #872330;
}
.big-btn p {
	color: white;
	float: left;
	width: 80%;
	text-align: left;
	margin: 0;
}
.big-btn img {
	height: 40px;
	width: auto;
	float: right;
	margin-top: 5px;
}
.ytvideo {
	margin: 0 auto;
}
.ytvideo video {
	width: 100%;
	height: auto;
	position: relative;
}
.social-buttons {
  position: absolute;
  top: 18px;
  right: 4px;
  height: 28px;
}
@media (max-width: 450px) {
	.twitter-button {
	    width: 40px;
		border-radius: 50px;
	}
	#twitter-widget-0 {
	    width: 40px !important;
		border-radius: 50px;
		border-right: 7px solid #1d9bf0;
	}
	.facebook-button {
		width: 40px;
	}
	.fb_iframe_widget > span > iframe {
		width: 40px !important;
		border-right: 4px solid #1877f2 !important;
	}
}
@media (max-width: 991px) {
	.social-buttons {
	  top: 18px;
	  right: auto;
	  left: 4px;
	}
	.facebook-button {
		display: inline-block;
	}
	.fb_iframe_widget {
	  display: inline-block;
	  position: relative;
	  margin: 8px 0 0 0;
	}
}
@media (min-width: 992px) and (max-width: 1130px) {
	.social-buttons {
	  top: 5px;
	  right: 4px;
	  width: 82px;
	}
	.facebook-button {
		display: inline-block;
		position: relative;
	}
	.fb_iframe_widget {
	  display: inline-block;
	  position: relative;
	  margin: 8px 5px 0 0;
	}
}
.twitter-button, .facebook-button {
	float: left;
	position: relative;
	height: 28px !important;
	width: 85px;
	overflow: hidden;
	border-radius: 50px;
}
.twitter-button {
	margin-right: 10px;
}

#twitter-widget-0, 
.fb_iframe_widget, 
.fb_iframe_widget > span > iframe {
	width: 85px;
	margin: 0 !important;
	padding: 0 !important;
	height: 28px !important;
	border-radius: 50px !important;
}
.fb_iframe_widget > span {
	visibility: hidden;
}
.twitter-button .fake-btn, .facebook-button .fake-btn {
	position: absolute;
	top: 0;
	left: 0;
	width: 85px;
	height: 28px;
	border-radius: 50px;
	pointer-events: none;
	max-width: none;
}
@media (max-width: 470px) {
	#twitter-widget-0, 
	.fb_iframe_widget, 
	.fb_iframe_widget > span > iframe, 
	.twitter-button, 
	.facebook-button {
		width: 28px !important;
		height: 28px !important;
	}
	.facebook-button, 
	.twitter-button {
		width: auto !important;
		height: 28px !important;
	}
}
.video-btn {
	border-radius: 10px;
}
.ytvideo .play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 70px;
	height: 70px;
	margin: -35px 0px 0px -35px;
	pointer-events: none;
}

