a {
	text-decoration: none; /* no underline */
	color: #00aeef;
	}
	a:hover {
	text-decoration: none; /* no underline */
	color: #00aeef;
	}

/* Reset */
/* Handled by reset.css from https://github.com/murtaugh/HTML5-Reset */


/* FONTS */

@font-face {
  font-family: 'Avenir Next LT Pro';
  src: url('AvenirNextLTPro-Regular.woff2') format('woff2'),
	  url('AvenirNextLTPro-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Avenir Next LT Pro';
  src: url('AvenirNextLTPro-It.woff2') format('woff2'),
	  url('AvenirNextLTPro-It.woff') format('woff');
  font-weight: normal;
  font-style: italic;
}

html {
	overflow: scroll;
	overflow-x: hidden;
	scroll-behavior: smooth;
	counter-reset: numbered-paragraph;
}

::-webkit-scrollbar {
	width: 0px;
}

h1 {
font-size: 36px;
font-weight: bold;
color: #00aeef;
line-height: 42px;
margin-bottom: 14px;
}
h2 {
font-size: 32px;
font-weight: bold;
color: #00aeef;
line-height: 1.1;
margin-bottom: 14px;
}
h3 {
font-size: 22px;
font-weight: bold;
color: #00aeef;
line-height: 24px;
margin: 20px 0 7px;
}
h4 {
font-size: 18px;
font-weight: bold;
color: #00aeef;
line-height: 24px;
}

h1.heading--big {
	font-size: 64px;
}
h2.heading--big {
	font-size: 42px;
	margin: 20px 0;
}
h3.heading--big {
	font-size: 32px;
	line-height: 1.1;
	padding-top: 20px;
}

tr, td, p {
color: #34437a;
font-size: 18px;
line-height: 24px;
margin-bottom: 7px;
}
p.intro {
color: #00aeef;
font-size: 20px;
line-height: 30px;
margin-bottom: 15px;
}

.text--center {
	text-align: center;
}

.text--bold {
	font-weight: bold;
}

.text--thin {
	font-weight: lighter;
}

.text--italic {
	font-style: italic;
}

.text--white {
	color: #fff;
}

.text--black {
	color: #000;
}

.text--blue {
	color: #00aeef;
}
.text--blue-dark {
	color: #1F326A;
}

.text--transluscent {
	opacity: 0.7;
}

.paragraph {
	margin: 40px 0 20px;
}

small {
font-size: 65%;
}
h3 small {
  margin-top: -5px;
  display: block;
  clear: both;
}



.icon-header__container {
	display: flex;
	text-indent: 16px;
}

.icon {
	display: flex;
	align-items: center;
	text-indent: 0;
}

.icon--blue {
	color: #00aeef;
	fill: #00aeef;
}

.no-margin {
	margin: 0;
}

.container {
max-width: 1000px;
padding-right: 15px;
}

@media (min-width: 767.98px) {
	.container {
		padding-right: 30px;
	}
}

.container--centered {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

@media (min-width: 767.98px) {
	.row {
		margin-right: -30px;
	}
}

.row.justify-content-md-center .col-md-10 {
	margin-right: -15px;
}

.align-content-end {
	display: flex;
	align-items: flex-end;
}

/* GENERAL */

*,
*:before,
*:after {
-webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
		box-sizing: border-box;
}
::-moz-selection {
color: #fff;
background: #00aeef;
background: rgba(0,174,239,0.85);
}
::selection {
color: #fff;
background: #00aeef;
background: rgba(0,174,239,0.85);
}

*,html,body {
  font-family: 'Avenir Next LT Pro';
  font-size:15px;
font-weight: 400;

}
strong {
font-weight: bold;

}
html {
  background: #FFF;
  overflow-x: hidden;
  color: #666;
  font-size: 15px;
}
input {
  font-family: inherit;
}
body.content {
background: #f9f6f6;
}
:focus {outline:none;}


/* HEADER */

.header {
background: #00aeef;
background-size: cover;
padding: 10px 20px 10px;
position: fixed;
width: 100%;
margin: 0;
padding-top: 30px;
z-index: 100;
top: 0;

-webkit-transition: all .15s ease-in-out;
-moz-transition: all .15s ease-in-out;
-ms-transition: all .15s ease-in-out;
-o-transition: all .15s ease-in-out;
transition: all .15s ease-in-out;
}

.header--new {
	padding-top: 0;
	padding: 0 20px;
}

@media (min-width: 1199.98px) {
	.header--new {
		background: none;
	}
}

.header--new .menu li{
	line-height: 1.2;
	padding: 20px 12px 0;
}

.header__wave {
	width: 100%;
	position: fixed;
	top: 20px;
	z-index: 10;
	-webkit-transition: all .15s ease-in-out;
	-moz-transition: all .15s ease-in-out;
	-ms-transition: all .15s ease-in-out;
	-o-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
}

@media (min-width: 1199.98px) {
	.header__wave {
		top: 0px;
	}
}

@media (min-width: 1382px) {
	.header__wave {
		top: -10px;
	}
}

.wave {
	width: 100vw;
	background: transparent;
	margin: -1px 0;
}

.wave--grey {
	background: #f9f6f6;
}

.wave--blue {
	background: #00aeef;
}

.image__wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.image__wrapper--high {
	height: 100%;
}

.image {
	width: 100%;
	max-width: 240px;
}

.image--small {
	max-width: 160px;
}

.image--280 {
	max-width: 280px;
}

.image--320 {
	max-width: 320px;
}

.image--400 {
	max-width: 400px;
}

.image--320, .image--400 {
	padding: 0 15px;
}

@media (min-width: 991.98px) {
	.image--320, .image--400 {
		padding: 0;
	}
}

.image--large {
	max-width: 600px;
}

.scrolls .header {
  padding: 0 20px 5px;
}
.logo {
width: 200px;
height: 80px;
background-image: url('../images.v2/logo_bg.png');
background-position: 0px 0px;
background-repeat: no-repeat;
background-size: contain;
position: absolute;
left: 0;
top:0;

  -webkit-transition: all .15s ease-in-out;
  -moz-transition: all .15s ease-in-out;
  -ms-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

@media (min-width: 1382px) {
	.logo {
		width: 240px;
		height: 100px;
	}
}

.logo__link {
	display: inline-block;
	margin: 1em;
}

@media (min-width: 1382px) {
	.logo__link {
		margin: 1em 1.5em;
	}
}

.logo img{
  width: 140px;
  -webkit-transition: all .15s ease-in-out;
  -moz-transition: all .15s ease-in-out;
  -ms-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

@media (min-width: 1382px) {
	.logo img {
		width: 160px;
	}
}

  .scrolls .logo {
	top: -10px;
  }
.signed-in {
display: block;
}
.not-signed-in {
display: none;
}
ul.menu {
float: right;
margin: 0;
padding: 0;
}
ul.menu li {
  float: left;
  margin: 0;
  padding: 0;
  position: relative;
}
  ul.menu li ul.submenu {
	position: absolute;
	left: -9999px;
	background: #f8f5f5;
	width: 230px;
	padding: 0;
  }
	ul.menu li ul.submenu::after {
	  position: absolute;
	  left: 0;
	  bottom: -20px;
	  height: 20px;
	  width: 100%;
	  display: block;
	  content: "";
	  background: url('../images.v2/bg-menu.png') no-repeat center top;
	  background-size: contain;
	}
	ul.menu li ul.submenu::before {
	  position: absolute;
	  left: 0;
	  top: -10px;
	  height: 20px;
	  width: 100%;
	  display: block;
	  content: "";
	  background: url('../images.v2/bg-menu-top.png') no-repeat center top;
	  background-size: contain;
	}
	ul.menu li:hover ul.submenu {
	  left: -20px;
	}
	ul.menu li ul.submenu li {
	  width: 100%;
	}
	ul.menu li ul.submenu li a {
	  float: left;
	  width: 100%;
	  line-height: 40px;
	}
	  ul.menu li ul.submenu li:last-child a {
		border: 0;
	  }
  ul.menu > li > a,
  ul.menu > li {
	cursor: pointer;
	color: #fff;
  }
ul.menu li.menu__item--language {
  display: none;
	border-left: 1px solid #fff;
	padding-right: 0;
}
ul.menu li.menu__item--language:hover .language-menu {
	height: 343px;
}
ul.menu li ul.language-menu {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
	position: fixed;
	top: 50px;
	right: 10px;
	height: 0;
	width: 300px;
	background: #fff;
	list-style-type: none;
	border-radius: 10px;
	margin-top: 16px;
	overflow-y: scroll;
	transition: all 0.15s ease-in-out 0.05s;
}

ul.language-menu::-webkit-scrollbar {
	display: none;
}
ul.language-menu li.language-menu__item {
	line-height: normal;
	padding: 6px 10px;
	overflow-wrap: break-word;
}
ul.language-menu li.language-menu__item:hover {
	background: #f9f6f6;
}
li.language-menu__item a.language-menu__item-link {
	font-size: 14px;
	line-height: normal;
	color: #1dadec;
	text-transform: capitalize;
}
	ul.menu li{
	  padding: 0 12px;
	  text-decoration: none;
	  color: inherit;
	  color: #FFF;
	}
	  ul.menu li.signin > span{
		padding: 0 10px;
		color: #00aeef;
	}

	/* ul.menu li.services {
		padding-top: 0!important;
	} */

.hero__button-container {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 40px 0;
}

@media (max-width: 767.98px) {
	.hero__button-container {
		flex-direction: column;
		align-items: flex-start;
		margin: 20px 0 0;
	}
}

.hero__button-wrapper {
	display: flex;
	align-items: center;
	margin: 0 1em;
}

@media (max-width: 767.98px) {
	.hero__button-wrapper {
		margin: 0 0 20px;
	}
}

/* VIDEO */

.video {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}

.video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video-button-wrapper {
	display: flex;
	justify-content: center;
}

.video-button-wrapper:hover .video-button-border {
	background: transparent;
}
.video-button-wrapper:hover .video-button {
	border-color: transparent transparent transparent #e13794;
}
	.video-button-border {
		display: flex;
		justify-content: center;
		align-items: center; 
		width: 50px;
		height: 50px;
		background: #e13794;
		border: 2px solid #e13794;
		border-radius: 50%;
		margin: 0 1em;
		padding-left: 6px;
		cursor: pointer;
		transition: background-color ease-in-out 0.15s;
	}

	@media (max-width: 991.98px) {
		.video-button-border {
			margin-left: 0;
		}
	}

	.video-button-border:active {
		background: #f9f6f6;
	}

	.video-button-border:active .video-button {
		border-color: transparent transparent transparent #e13794;
	}
		.video-button {
			width: 0;
			height: 0;
			border-width: 12px 0 12px 18px;
			border-style: solid;
			border-color: transparent transparent transparent #fff;
			transition: border-color ease-in-out 0.15s;
		}
		.video-button-text {
			display: block;
			font-size: 20px;
			font-weight: bold;
			color: #e13794;
			text-align: center;
			cursor: pointer;
		}
		.video-button-text:active {
			text-decoration: underline;
		}

		@media (min-width: 991.98px) {
			.video-button-text {
				font-size: 26px;
			}
		}

.video-modal-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	height: 0;
	z-index: 1000;
	transition: all ease-in-out 0.3s;
}
.video-modal-wrapper--show {
	display: block;
	height: 100%;
}
	.video-modal-overlay {
		position: absolute;
		width: 100vw;
		height: 0;
		background: #000;
		opacity: 0.8;
		z-index: 990;
	}
	.video-modal-overlay--show {
		height: 100vh;
	}
	.video-modal__close {
		position: absolute;
		top: -40px;
		right: 0;
		background: none;
		border: none;
	}
	.video-modal__close-icon {
		font-size: 32px;
		color: #1dadec;
		transition: all ease-in-out 0.15s;
		cursor: pointer;
	}
	.video-modal__close-icon:hover {
		color: #34437a;
	}
		.video-modal {
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
			position: relative;
			top: 10vh;
			left: calc(50vw - 50%);
			width: 75vw;
			max-width: 1024px;
			height: 0;
			background: none;
			padding: 30px 0 56.25% 0;
			z-index: 1000;
			transform: translateY(-150%);
			transition: none;
		}
		.video-modal iframe, .video-modal object, .video-modal embed {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
		}
		.video-modal--show {
			background: #000;
			transform: translateY(0);
			transition: transform 0.10s ease-in-out 0.10s;
		}

/* BLOCKS */

.block {
	width: 100vw;
	position: relative;
	margin: 0;
}

.block--padding {
	padding: 40px 0;
}

.block--padding-top {
	padding: 40px 0 0;
}

.block--padding-bottom {
	padding: 0 0 40px;
}

.block--full {
	height: 100vh;
	padding: 200px 0;
}

.block--blue {
	background: #00aeef;
}

.block--grey {
	background: #f9f6f6;
}

/* PARAGRAPHS */

.numbered-paragraph {
	margin-bottom: 20px;
	position: relative;
	padding-left: 40px;
}

@media (max-width: 767.98px) {
	.numbered-paragraph {
		margin: 20px 0;
	}
}

.numbered-paragraph--margin-top {
	margin-top: 16px;
}

.numbered-paragraph::before {
	counter-increment: numbered-paragraph;
	content: counter(numbered-paragraph);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	background: #e13794;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	border-radius: 100%;
	position: absolute;
	top: -4px;
	left: 0;
	margin-bottom: 20px;
	padding-top: 2px;
}

/* CARD */

.card__container {
	padding-bottom: 40px;
}

.card__container>div {
	margin-bottom: 20px;
}

.card	{
	height: 100%;
	border-radius: 20px;
	padding: 10px 20px 20px;
	margin: 0 0 20px 0;
}

@media (min-width: 767.98px) {
	.card {
		padding: 20px 40px 20px;
		margin: 0 0 20px;
	}
}

@media (max-width: 767.98px) {
	.card .heading--big {
		padding-top: 0;
	}
}

@media (max-width: 767.98px) {
	.card .button-wrapper {
		margin-top: 10px;
	}
}

.card--dark {
	background: #34437a;
}

.card--spread {
	justify-content: space-between;
}

.card .button {
	min-width: unset;
}

/* LIST */

.list {
	margin: 20px 0;
}
.list.text--white .list__item p {
	color: #fff;
}

.checked__item {
	font-size: 18px;
	line-height: 24px;
	position: relative;
	padding-left: 1em;
	text-indent: -1em;
}
/* 
.checked__item::before {
	content: "✓";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
} */

/* INVITE FORM */

.invite__form p {
	width: 100%;
	line-height: 0.8;
	text-align: center;
	margin: 0;
}

.invite {
	width: 100%;
	height: 40px;
	border: 1px solid #34437a;
	border-radius: 12px;
	margin: 20px auto;
	padding: 0 10px;
}

.signup {
	margin-top: 20px;
}

/* BUTTON */

.button-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
}

.button-wrapper--left {
	justify-content: flex-start;
}

.button-wrapper--high {
	height: 100%;
	margin: 0;
}

.button {
	display: block;
	min-width: 230px;
	font-size: 20px;
	font-weight: bold;
	line-height: 1;
	text-transform: uppercase;
	color: #fff;
	background: #1dadec;
	border: 2px solid #1dadec;
	text-align: center;
	border-radius: 50px;
	padding: 14px 42px;
	overflow: hidden;
	white-space: nowrap;
	transition: all ease-in-out 0.15s;
}

.button:hover {
	color: #1dadec;
	background: transparent;
}

.button--inverse {
	color: #1dadec;
	background: #fff;
	border: 2px solid #fff;
}

.button--inverse:hover {
	color: #fff;
	background: transparent;
}

.button--capitalize {
	text-transform: capitalize;
}

.button--blue-dark {
	background: #1F326A;
	border-color: #1F326A;
}
.button--blue-dark:hover {
	background: transparent;
	color: #1F326A;
	border-color: #1F326A;
}

.button--purple {
	background: #e13794;
	color: #fff;
	border-color: #e13794;
	min-width: unset;
}
.button--purple:hover {
	background: transparent;
	color: #e13794;
}

.button--white {
	background: #fff;
	color: #34437a;
	border-color: #fff;
}

.button--white:hover {
	color: #fff;
}

/* SVG'S */

.blob.signin,
.blob.language {
position: absolute;
top: 12px;
left: 0;
z-index: -1;
}

.blob.language {
left: -10px;
top: 13px;
}


.blob.checkout {
position: absolute;
top: -7px;
right: 0;
z-index: -1;
}
/* LANDER */


.lander .hero {
background: #00acef;
position: fixed;
width: 100%;
height: 100%;
left: 0;
top: 0;
}
.lander .pressrelease {
  background: #FFF;
  padding: 40px;
  margin-top: 100px;
  margin-bottom: 100px;
}
.lander p.intro {
  color: #00acef;
}

/* HOME */

.hero {
background: #fff;
height: 726px;
overflow: hidden;
position: relative;
}
.hero--small {
	height: unset;
}

.press::after,
.hero::after {
  height: 50px;
  width: 100%;
  left: 0;
  bottom: 0;
  position: absolute;
  content: "";
  display: block;
  background: url('../images.v2/bg-mainfooter.png') no-repeat center top;
}
.press {
  position: relative;
  background: #00acef;
  padding-bottom: 120px!important;
}
  .press h3 {
	color: #FFF;
  }
  .press .btn-white {
	background: #FFF;
	color: #00acef;
  }
.hero svg{
  position: absolute;
  left: 55%;
  height: 950px;
  top: 20px;
}
@media (max-width: 767.98px) {
	.hero svg{
		display: none;
	}
}

.hero .text{
  padding: 120px 15px 40px;
}

@media (min-width: 575.98px) {
	.hero .text{
		padding: 160px 15px;
	}
}

.hero .text--small {
	padding-bottom: 40px;
}

.hero h1,
.hero h2 {
	font-weight: bolder;
  color: #1F326A;
  margin: 0;
  padding: 0;
}
  .hero h1 {
	line-height: 1.2;
	font-size: 54px;
	margin-bottom: 15px;
	}

	@media (max-width: 575.98px) {
		.hero h1{
			font-size: 42px;
			line-height: 1.1;
		}
	}
	
  .hero h2 {
		line-height: 30px;
		font-size: 34px;
		margin-bottom: 16px;
	}
	
	@media (max-width: 575.98px) {
		.hero h2{
			font-size: 24px;
			margin-bottom: 8px;
		}
	}
	
	.hero h2.hero-ignore.text--thin {	
		font-size: 42px;
		font-weight: lighter;
		line-height: 1.1;
		margin: 20px 0;
	}
	
	.hero p.intro {
		color: #1F326A;
		}

.small-usps img,
.main-usps img{
width: 100%;
max-width: 220px;
display: table;
margin: 0 auto 40px;
}

.main-usps h3{
  font-size: 22px;
  margin-bottom: 20px;
  line-height: 24px;
}
.services {
position: relative;
}
.large-logo {
  position: absolute;
  left: 45%;
  bottom: -200px;
  width: 2500px;
}

.small-usps h3{
font-size: 20px;
}
.small-usps .row:first-child > div{
margin-bottom: 50px;
}

/* SEARCH */

.develop .firstCheck.idle,
.develop .allResults {
display: block;
}
.develop .firstCheck,
.develop .allResults.active {
  display: none;
}

.firstCheck.idle,
.allResults {
display: none;
}
.firstCheck,
.allResults.active {
  display: block;
}
.hero .firstCheck {
  padding: 200px 0 280px;
}
.second-search {
  background: url('../images.v2/hero-home.png') no-repeat center bottom;
  background-size: cover;
  padding: 20px 0 30px;
}

/* SEARCH BOX */

.search-wrapper {
background: url('../images.v2/bg-search.png') no-repeat center center;
background-size: contain;
width: 850px;
height: 120px;
padding: 25px 35px;
position: relative;
}
.search-wrapper input {
  width: 100%;
  border: 0;
  line-height: 70px;
  font-size: 20px;
  font-family: 'Avenir Next LT Pro';
  background: none;
}
.search-wrapper a{
  background: url('../images.v2/bg-btn.png') no-repeat center center;
  background-size: contain;
  width:162px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  position: absolute;
  right:20px;
  top: 30px;
  color: #FFF!important;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

.hero .face {
background: url('../images.v2/face.png') no-repeat center center;
background-size: contain;
width: 750px;
height: 775px;
display: block;
position: absolute;
left: 53%;
top: 50px;
}
.hero .face.eyes-closed{
background: url('../images.v2/face-eyes-closed.png') no-repeat center center;
background-size: contain;
width: 770px;
height: 795px;
display: block;
position: absolute;
left: -10%;
top: 50px;
}

.main-content.personal,
.main-content.ecommerce {
position: relative;
padding: 150px 0;
}


.main-content.about {
background: #f9f6f6;
}
.main-content.services {
background: #f9f6f6;
position: relative;
overflow: hidden;
padding: 150px 0;
}

.main-content.personal img{
  position: absolute;
  left: 50%;
  top: 20px;
  width: 550px;
}
.main-content.ecommerce img{
  position: absolute;
  right: 50%;
  top: 20px;
  width: 550px;
}
.services img {
  position: absolute;
  left: 50%;
  top:-100px;
  width: 750px;
}

.main-content.first-text {
background: #f9f6f6;
}

/* FOOTER NEW */

.footer.footer--new {
	background: #1F326A;
	padding: 20px 0;
}

@media (min-width: 991.98px) {
	.footer.footer--new {
		padding: 40px 0;
	}
}

.footer__header {
	margin-bottom: 16px;
}

@media (min-width: 991.98px) {
	.footer__header {
		padding: 40px 0;
	}
}

.footer__link {
  font-size: 16px;
	color: #fff;
  line-height: 32px;
  text-decoration: none;
}

@media (min-width: 991.98px) {
	.footer__link {
		font-size: 14px;
		line-height: 24px;
	}
}

@media (max-width: 991.98px) {
	.footer .heading--big {
		padding-top: 0;
		margin: 0;
	}
}

.footer__text {
	font-size: 11px;
	line-height: 1.5;
	margin-top: 10px;
	margin-bottom: 0;
}

@media (min-width: 991.98px) {
	.footer__text {
		margin-top: 40px;
	}
}

/* FOOTER */

.footer {
padding: 60px 0;
}

.footer .col-md-20 {
  width: 20%;
}
.content-page .footer {
  background: url('../images.v2/bg-mainfooter.png') no-repeat center top;
  background-size: cover;
}

.footer ul,
.footer ul li{
margin: 0;
padding: 0;
float: left;
width: 100%;
}

.footer__list {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	height: 100%;
}

.footer ul li.footer__item--bottom {
	margin-top: auto;
}

.subfooter {
background: url('../images.v2/bg-footer.png') no-repeat center top;
background-size: cover;
font-size: 13px;
padding: 30px 0;
line-height: 24px;
color: #CCC;
}


/* CONTENT PAGE */

body.content-page {
background: #fcfafa;
}

/* .main-content {
padding: 90px 0;
} */

.content-page .hero {
background: url('../images.v2/hero-home.png') no-repeat center bottom;
background-size: cover;
padding: 90px 0;
}
.content-page .hero h1,
.content-page .hero h2 {
  color: #FFF;
}

.box {
padding: 0 20px 20px;
}
.box .box-header img{
  margin-bottom: -10px;
}
.box .box-footer{
  margin-top: -5px;
}
.box .box-content {
  background: #f8f5f5;
  padding: 30px 40px;
}

/* CSS FOR TOGGLE BUTTON */

.toggle-container {
  position: fixed;
  width: 66px;
  height: 66px;
  right: 0px;
  top: 0px;
  display: none;
  cursor: pointer;
  z-index:1000;
  padding: 0 ;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;

}

  .toggle-container .bar{
	  width: 25px;
	  height: 4px;
	  position: absolute;
	  background: #00aeef;
	  display: block;
	  border-radius: 4px;
	  -webkit-transition: all .2s ease-in-out;
	  -moz-transition: all .2s ease-in-out;
	  -ms-transition: all .2s ease-in-out;
	  -o-transition: all .2s ease-in-out;
	  transition: all .2s ease-in-out;

  }

	  .toggle-container .bar.top-bar{
		  top: 23px;
		  left: 20px;
	  }

	  .toggle-container .bar.middle-bar{
		  top: 50%;
		  margin-top: -2px /*height of bar / 2*/ ;
		  left: 20px;
		  width: 14px;
	  }

	  .toggle-container .bar.bottom-bar{
		  bottom: 23px;
		  left: 20px;
	  }

.menu-active .toggle-container .bar.top-bar{
  -ms-transform: rotate(45deg); /* IE 9 */
	-ms-transform-origin: 0 0; /* IE 9 */
	-webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
	-webkit-transform-origin: 0 0; /* Chrome, Safari, Opera */
	transform: rotate(45deg);
	transform-origin: 0 0;
}

  .menu-active .toggle-container .bar.middle-bar{
	  width: 0;
  }
	  .menu-active .toggle-container .bar.bottom-bar{
		  -ms-transform: rotate(-45deg); /* IE 9 */
		  -ms-transform-origin: 0 100%; /* IE 9 */
		  -webkit-transform: rotate(-45deg); /* Chrome, Safari, Opera */
		  -webkit-transform-origin: 0 100%; /* Chrome, Safari, Opera */
		  transform: rotate(-45deg);
		  transform-origin: 0 100%;
	  }
		  .menu-active .toggle-container .bar.top-bar,
		  .menu-active .toggle-container .bar.bottom-bar {
			  width: 24px;
			  left: 27px;
		  }


@media (max-width: 1199.98px) {

}

@media (max-width: 991.98px) {

}


@media (max-width: 767.98px) {
.toggle-container {
  display: block;
  top: 7px;
}
  .scrolls .toggle-container {
	top: -3px;
  }

.header {
  height: 80px;
  overflow: hidden;

  background: url('../images.v2/bg_header.png') no-repeat center bottom;
  background-size: cover;
}
  .scrolls .header {
	height: 60px;
  }
  .menu-active .header {
	height: auto;
  }
  .menu li,
  .menu li a {
	width: 100%;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	line-height: 55px!important;
	color: #00aeef!important;
  }
  .menu {
	margin-top: 60px!important;
	width: 100%;
  }
  .logo {
	width: 260px;
	height: 140px;
	background: none;
	}
	
  .video-modal {
	width: 100vw;
	transform: translateY(-200%);
}
  .video-modal--show {
	transform: translateY(-0);
}

  .footer .row > div,
  .main-usps .col-md-4 {
	margin-top: 20px;
  }
  .main-usps .col-md-4:first-child{
	margin-top: 0px;
  }
  .main-content {
	padding: 45px 0!important;
  }

/* .hero {
  height: 1320px;
} */
  .hero svg {
	left: -10%;
	top: auto;
	bottom: -350px;
  }
/* .video-button-wrapper {
	width: 100%;
} */
.video-button-text {
	text-align: center;
}


  .services img{
	left: 50%;
	margin-left: -140px;
	max-height: 400px;
	width: auto;
	max-width: 100%;
  }
  .main-content.ecommerce img {
	left: 0;
	right: auto;
	max-height: 400px;
	width: auto;
	max-width: 400px;
	width: 100%;
  }
  .main-content.personal img{
	left: 0;
	right: auto;
	max-height: 400px;
	width: auto;
	max-width: 400px;
	width: 100%;
  }
  .small-usps .row:first-child > div {
	margin-bottom: 0;
  }
	.small-usps .row .col-md-4 {
	  margin-bottom: 45px!important;
	}

.row > div {
  padding-left: 20px!important;
  padding-right: 20px!important;
}
}

/* TEXT DOC */

.textdoc__header:before {
	color: #1dadec; 
}

.textdoc__header {
	font-size: 20px;
	color: #00aeef;
}
	
.textdoc__header--alt {
	font-size: 18px;
	color: #1F326A; 
}

.textdoc__list {
  counter-reset: item;
  margin-top: 1em; }
  .textdoc__list--alpha {
    list-style-type: upper-alpha; }
  .textdoc__list--disc {
    list-style-type: disc; }
  .textdoc__list-item {
    display: table;
    counter-increment: item;
    margin-bottom: 1em; }
    .textdoc__list-item:before {
      content: counters(item, ".") ".";
      display: table-cell;
      font-weight: 500;
      color: #1F326A;
      padding-right: 1em; }
    .textdoc__list-item-text {
      color: #34433a;
      margin-bottom: 1em; }

.textdoc__list-item .textdoc__list .textdoc__list-item:before {
  content: counters(item, ".") " "; }

.textdoc__link {
  color: #1dadec; }
  .textdoc__link:hover {
    text-decoration: underline; }

.textdoc__text-item {
  color: #34433a;
	text-align: center; }
	
	/* JOBS */

	.jobs__list {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		list-style-type: none;
		margin-bottom: 30px; }
		.jobs__list-item-link {
			line-height: 30px;
			color: #1dadec; }
	
	.job__info {
		padding-bottom: 69px; }
	
	/* CHART */

.chart-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
	align-items: center;
	margin: 0 -15px;
}

@media (min-width: 991.98px) {
	.chart-container {
		margin: 0;
	}
}

.chart-container--half {
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
}

@media (min-width: 991.98px) {
	.chart-container--half {
		flex-direction: row;
	}
}

.chart-container--bottom {
	margin-top: 60px; 
}

.chart {
  display: grid;
  grid-template-columns: minmax(35%, 1fr) 1fr 1fr 1fr;
  width: 100%;
  font: normal 300 13px/16px Avenir Next LT Pro, sans-serif;
  overflow: hidden;
  margin-bottom: 20px;
}

.chart--alt,
.chart--single {
	grid-template-columns: 1fr 1fr;
}

.chart--alt {
	grid-template-columns: 1fr 1fr;
	margin-top: 40px;
}

/* .chart--alt .chart__item:nth-child(4n+3), .chart--alt .chart__item:nth-child(4n+4) 
.chart--single .chart__item:nth-child(4n+3), .chart--single .chart__item:nth-child(4n+4) {
	background: #fff;
} */

.chart--alt .chart__item:hover:nth-child(4n+3) + .chart__item:nth-child(4n+4)
.chart--single .chart__item:hover:nth-child(4n+3) + .chart__item:nth-child(4n+4) {
	background: unset;
}
	
.chart--half {
	grid-template-columns: 1fr minmax(100px, 44%);
	width: 100%;
}

@media (min-width: 991.98px) {
	.chart--half {
		width: 49%;
	}
}

.chart-header {
	width: 100%;
	height: 30px;
	border-bottom: 1px solid #34437a;
	margin-bottom: 20px; 
}

.chart-subheader {
	width: 100%;
	margin-bottom: 20px;
	color: #000; 
}

.chart__item {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	border-bottom: 1px solid #000;
	padding: 6px 0 6px 10px; 
}

.chart__item--bottom {
	border: none;
}

.chart__item:hover:before,
.chart__item:hover:after {
	display: block;
}

.chart__item:before,
.chart__item:after {
	content: "";
	position: absolute;
	top: 0;
	left: -1000px;
	width: calc(100vw + 1000px);
	height: 100%;
	display: none;
	background: #efefef; 
}

/* .chart--alt .chart__item:before,
.chart--alt .chart__item:after {
	background: orange;
} */

.chart__item--dark {
	background: #34437a;
	border: 0; 
}

.chart__item--dark:hover:before,
.chart__item--dark:hover:after {
	background: none;
}

.chart__item--light:hover:before,
.chart__item--light:hover:after {
	display: none;
}

.chart__item--light {
	background: #1dadec;
	border: 0; 
}

.chart__item--light:hover:before {
	display: none; 
}

.chart__item--wide {
	grid-column: 1/5; 
}

.chart__item--wide:hover:before {
	display: none; 
}

.chart__item--bottom:hover:before {
	display: none; 
}

.chart__item-fee {
	padding-left: 30px; 
}

.chart__item-text {
	color: #000;
	font-size: 14px;
	z-index: 1; 
	pointer-events: none;
}

.chart__item-text > a{
	text-decoration: none;
	color: inherit;
}

@media (min-width: 991.98px) {
	.chart__item-text {
		font-size: 18px;
	}
}
.chart__item-text sup {
	color: #000; 
}

.chart__item-text--header {
	color: #fff; 
}

.chart__item-text--header sup {
	color: #fff;
}

.chart__link {
	color: #1dadec; 
}

.chart__link-text {
	color: #34433a;
	text-align: center; 
}

.footnotes {
	border-top: 1px solid #000;
}

.footnote {
	border: none;
}

.footnote:hover::after {
	display: none;
}

.chart__seperator {
	display: flex;
	height: 2px;
	background: #00afef;
	border-radius: 1px;
	margin: 60px 80px 100px;
}


#modal-rebranding.show {
	 display: block;
 }
#modal-rebranding .text-logo {
	max-width: 300px;
}
#modal-rebranding .modal-content {
	background: #F1F1F1;
	padding: 2rem 0.5rem;
	border-radius: 3rem;
}
@media (min-width: 768px) {
	#modal-rebranding .modal-content {
		padding: 3rem;
	}
}
#modal-rebranding .modal-content h2 {
	color: #253A78;
	font-weight: 700;
}
#modal-rebranding .modal-content p {
	color: black;
	margin-bottom: 1rem;
}
#modal-rebranding .modal-content .btn-close {
	z-index: 1;
	position: absolute;
	right: 2rem;
	top: 2rem;
	border: none;
	background: none;
	color: #999;
	font-size: 2rem;
}
#modal-rebranding .mobile-hidden {
	display: none !important;
}
@media (min-width: 992px) {
	#modal-rebranding .mobile-hidden {
		display: inherit !important;
	}
}

/* logopack */

.logo-pack-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;

    flex-direction: column;
}

.logo-pack-wrapper img {
    margin-top: 0;
    padding-bottom: 20px;
}

.logo-pack-wrapper > * {
    flex: 1;
}

.logo-pack-wrapper > p {
    flex: 1 1 auto;
    text-align: center;
    font-size: 16px;
    padding: 20px 0;
    max-width: 350px;
}

.logo-pack-wrapper > .button-wrapper {
    margin: 0;
}

.logo-pack-wrapper .logo-pack-wrapper--col-2 {
    min-width: 140px;
    text-align: center;
    height: auto;

    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
}

.block--padding-high {
    padding: 60px 0;
}

@media (min-width: 768px) {
    .logo-pack-wrapper {
        flex-direction: row;
    }

    .logo-pack-wrapper p {
        text-align: left;
        max-width: 450px;

        padding: 0 50px;
    }

    .logo-pack-wrapper .logo-pack-wrapper--col-2 {
        min-width: 155px;

        border-top: none;
        border-bottom: none;

        border-left: 1px solid gray;
        border-right: 1px solid gray;
    }
}
