/* RESET */

*,*:after,*:before,*::after,*::before{box-sizing: border-box; -webkit-tap-highlight-color: rgba(0,0,0,0);}
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
nav ul{list-style:none}
blockquote,q{quotes:none}
blockquote:before,blockquote:after,q:before,q:after{content:none}
img{-ms-interpolation-mode: bicubic;}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}
ins{background-color:#ff9;color:#000;text-decoration:none}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}
del{text-decoration:line-through}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}
table{border-collapse:collapse;border-spacing:0}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}
input,select,td{vertical-align:middle}

/* SITE */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;900&display=swap');

* {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html,
body {
	background: #fff;
	color: #000;
	font-family: 'Montserrat', sans-serif;
	font-size: 1vw;
	height: 100%;
	line-height: 1.8;
	margin: 0;
	padding: 0;
	width: 100%;
}
body {
	font-size: 16px;
}

header {
	background: #fff;
	border-bottom: 1px solid #f0f0f0;
}
header .split {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	height: 64px;
}
header img {
	width: 260px;
	height: auto;
	vertical-align: bottom;
}

a,
a:link,
a:visited,
a:focus,
a:hover {
	color: #000;
	font-weight: 700;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
	margin: 48px 0 24px 0;
	font-weight: 900;
}
h1 {
	font-size: 48px;
}
h2 {
	font-size: 28px;
}
h3 {
	font-size: 20px;
}
h4 {
	font-size: 20px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}

p {
	margin: 24px 0;
}

.white {
	color: #fff !important;
}

section {
	padding: 7rem 0;
	width: 100%;
	overflow: hidden;
}

.wrapper {
	display: block;
	width: 100%;
	max-width: calc(1200px + 7rem);
	padding: 0 7rem;
	margin: 0 auto;
}

.custom-hero {
	background: #31D5FF url('images/people.png') calc(50% + 424px) 100% no-repeat;
	font-size: 18px;
	padding: 8rem 0;
}
.custom-hero .max {
	width: 60%;
}
.custom-hero a,
.custom-hero a:link,
.custom-hero a:visited,
.custom-hero a:hover,
.custom-hero a:active {
	color: inherit;
	text-decoration: underline;
}

.slider-container {
	position: relative;
	user-select: none;
}
.slider-container .slider {
	border-radius: 8px;
	overflow: hidden;
}
.slider-container .slide {
	position: relative;
}
.slider-container .slide .background {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0.5;
	z-index: 1;
}
.slider-container .slide .image {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: transparent;
	background-position: 50% 100%;
	background-repeat: no-repeat;
	background-size: auto 95%;
	z-index: 2;
}
.slider-container .arrow {
	position: absolute;
	left: -24px;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	text-align: center;
	line-height: 48px;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
	box-shadow: 0 7px 33px 0 rgba(0, 0, 0, 0.12);
}
.slider-container .arrow.right {
	left: auto;
	right: -24px;
}
.slider-container .arrow i {
	line-height: inherit;
	font-size: 28px;
}
.slider-container .dot-bois {
	margin-top: 24px;
}

.dot-bois {
	position: static;
	display: block;
	vertical-align: bottom;
	text-align: center;
	margin: 0;
	padding: 0;
	font-size: 0;
}
.dot-bois li {
	display: inline-block;
	vertical-align: middle;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	overflow: hidden;
	background: #fff;
	border: 1px solid #000;
	margin: 0 4px;
	padding: 0;
	cursor: pointer;
}
.dot-bois li.slick-active {
	background: #000;
}
.dot-bois li button {
	display: none;
}

.split.textual {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: -4rem;
}
.split.textual .side {
	flex: 1;
	min-width: 0;
	padding: 4rem;
	position: relative;
}
.split.textual .side.text {
	flex: 0.9;
}
.split.textual .side.imagery > img {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.split.point-grid {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	margin: -2rem;
}
.split.point-grid .side {
	flex: 1;
	min-width: 0;
	padding: 2rem;
}

.icon-layout {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}
.icon-layout .icon {
	width: 48px;
	margin-right: 24px;
	font-size: 48px;
}
.icon-layout .icon i {
	font-size: inherit;
	line-height: 1;
	display: block;
	vertical-align: baseline;
	color: #31D5FF;
}
.icon-layout .info {
	flex: 1;
	min-width: 0;
	padding-top: 4px;
}

.bullet-layout {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-bottom: 8px;
}
.bullet-layout .bullet {
	margin-right: 16px;
	font-size: 24px;
	color: #31D5FF;
}
.bullet-layout .bullet i {
	font-size: inherit;
	line-height: 1;
	display: block;
	vertical-align: baseline;
}
.bullet-layout .bullet .swatch {
	width: 24px;
	height: 24px;
	border-radius: 50%;
}
.bullet-layout .bullet .swatch.white {
	background: #fff;
	border: 1px dashed #000;
}
.bullet-layout .bullet .swatch.blue {
	background: #31D5FF;
}
.bullet-layout .bullet .swatch.black {
	background: #000;
}
.bullet-layout .text {
	flex: 1;
	min-width: 0;
}

.cta-bar {
	background: #31D5FF;
	padding: 48px;
}
.cta-bar .text {
	text-align: right;
}

.disclaimer {
	font-size: 12px;
	opacity: 0.5;
	text-align: center;
}

footer {
	background: #0C4166;
	color: #fff;
	padding: 16px 0;
	text-align: center;
	font-size: 14px;
}

p:first-child,
label:first-child,
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
	margin-top: 0;
	padding-top: 0;
}
p:last-child,
label:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}

@media all and (max-width: 1064px) {
	h1 {
		font-size: 32px;
	}
	h2 {
		font-size: 24px;
	}
	h3 {
		font-size: 20px;
	}
}
@media all and (max-width: 840px) {
	header .right {
		display: none;
	}

	.custom-hero {
		background-image: none;
	}
	.custom-hero .max {
		width: 100%;
	}

	.split.textual .side {
		flex: 0 0 100% !important;
	}
	.split.textual .side.imagery {
		order: -1 !important;
	}
	.split.textual .side.imagery > img {
		position: static;
		float: left;
		transform: none;
	}

	.split.point-grid .side {
		flex: 1 1 50%;
	}

	.split.textual .side {
		text-align: center !important;
	}
}
@media all and (max-width: 640px) {
	.split.point-grid .side {
		flex: 0 0 100%;
	}
}