/********************************************************************************************************************/

html{
	font-size: 16px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
}

html, body, address, blockquote, div, dl, form, h1, h2, h3, h4, h5, h6, ol, p, pre, table, ul,
dd, dt, li, tbody, td, tfoot, th, thead, tr, del, ins, map, object,
a, abbr, acronym, b, bdo, big, br, cite, code, dfn, em, i, img, kbd, q, samp, small, span,
strong, sub, sup, tt, var, legend, fieldset {
	margin: 0;
	padding: 0;
	text-decoration: none; 
}

img, fieldset {
	border: 0;
}

/* set image max width to 100% */
img {
	display: block;
	max-width: 100%;
	height: auto;
	width: auto\9; /* ie8 */
}

/* set html5 elements to block */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
    display: block;
}

ul li {
	list-style-type: none;
}


#human{display:none !important;}


html, body {
	width: 100%;
	height: 100%;
	scroll-behavior: smooth;
}

body {
	color: #fff;
	background: var(--main-color);
}

p {
	font-size: 1.125rem;
	color: #fff;
	line-height: 1.4;
}

strong {
	font-weight: 700;
}

/* INITIALISATION ***************************************************************************************************/

.table{display:table;}
.flex{display:flex;}
.grid{display:grid;}

/********************************************************************************************************************/
/* ELEMENT CLASSES */

.col-reverse{
	flex-direction: row-reverse;
}

/* 2 Column layout style */

.col-2{
	display: flex;
	align-items: center;
	gap: 3.25rem;
}

.col-2 > *{
	flex-grow: 1;
	min-width: calc(50% - 1.625rem);
}

.col-2 img{
	border-radius: 40px;
}

.grid-2{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	padding: 2rem 0;
}

/* 3 Column layout style */

.col-3{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.col-4{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

/********************************************************************************************************************/

:root {
--main-color: #2a243b;
--second-color: #5e4b93;
--font-color: #5a71b3;
}

.wrap{position:relative; margin:0 auto; width: 1280px;}
.wide-wrap{position: relative; margin: 0 auto; width: 90%;}
.specialheight{min-height:760px;}
.bold{font-weight:700;}
.light{font-weight:300;}
.container{display:flex;}
body.no-scroll{overflow: hidden;}

.dark-overlay{position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: #000; opacity: 0.2;}
.blue-overlay{position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--my-color); opacity: 0.6;}
.shadow{
	width:80%; padding-bottom:7%; z-index:-1; margin: auto;
	background:url(img/shadow.png) no-repeat top center/contain;
}
.anchor{position:relative; visibility:hidden; top:-150px; display:block;}
.overlay{position: fixed; width: 100%; height: 100%; background-color: #000; visibility: hidden; opacity: 0; z-index: 500;
	transition: all 0.6s;
}
.overlay.appear{visibility: visible; opacity: 0.3;}

.aligncenter,.alignleft,.alignright {
    display: block;
    padding: 0;
}

.aligncenter {
    float: none;
    margin: .5em auto 1em;
}

.alignright {
    float: right;
    margin: .5em 0 1em 1em;
}

.alignleft {
    float: left;
    margin: .5em 1em 1em 0;
}

/********************************************************************************************************************/


/********************************************************************************************************************/

nav {
	position: fixed;
	width: 100%;
	z-index: 1000;
	top: 0;
	background: #fff;
	padding: 50px 0;
	box-shadow: 0 8px 10px #0000001a;
	transition: padding .5s;
}

nav .container {
	align-items: center;
	justify-content: space-between;
	gap: 50px;
}

nav .logo {
	max-width: 300px;
	width: 75%;
	transition: max-width .5s, opacity .3s;
}

nav .logo:hover {
	opacity: .6;
}

nav .menu-title {
	color: #000;
	font-size: 2rem;
}

nav .nav-cta {
	font-size: 1.2rem;
	font-weight: 700;
	color: #fff;
	background: var(--main-color);
	padding: 1.5rem 4rem;
	box-sizing: border-box;
	border-radius: 100px;
	transition: background .3s;
}

nav .nav-cta:hover {
	background: var(--second-color);
}

/********************************************************************************************************************/

nav.scrolled {
	padding: 20px 0;
}

nav.scrolled .logo {
	max-width: 220px;
}

/********************************************************************************************************************/

#hero-section {
	padding-top: 300px;
}

#hero-section h1 {
	font-size: 3rem;
	text-align: center;
	margin-bottom: 2.5rem;
}

#hero-section .container {
	align-items: flex-start;
}

#hero-section .text {
	width: 60%;
	margin-top: 65px;
	margin-right: 100px;
}

#hero-section .text p {
	font-size: 1.6rem;
	margin-bottom: 2rem;
}

#hero-section .text p span {
	font-weight: 700;
	color: #ba8320;
}

#hero-section .text .hero-btn {
	display: inline-block;
	font-size: 1rem;
	font-weight: 700;
	color: #1d1d1d;
	background: #fff;
	padding: 1.5rem;
	box-sizing: border-box;
	border-radius: 100px;
	margin-top: 2rem;
	margin-right: 1rem;
	transition: color .3s, background .3s;
}

#hero-section .text .hero-btn:hover {
	color: #fff;
	background: var(--second-color);
}

#hero-section .text .main-btn {
	display: inline-block;
	font-size: 1rem;
	font-weight: 700;
	color: #1d1d1d;
	background: #c0c5d3;
	padding: 1.5rem;
	box-sizing: border-box;
	border-radius: 100px;
	margin-top: 2rem;
	margin-right: 1rem;
	transition: color .3s, background .3s;
}

#hero-section .text .main-btn:hover {
	color: #fff;
	background: var(--second-color);
}

#hero-section .images {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 50px;
}

/********************************************************************************************************************/
/********************************************************************************************************************/
/********************************************************************************************************************/

#home-content h2 {
	font-size: 3rem;
	text-align: center;
	color: #fff;
	margin-bottom: 80px;
}

#home-content .text > p:not(:last-child) {
	margin-bottom: 1.25rem;
}

/********************************************************************************************************************/

#home-content .section1 {
	padding: 100px 0;
}

#home-content .section1 .container {
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

#home-content .section1 .container > img {
	flex: 1;
	max-width: 380px;
	margin: 0 15px;
}

#home-content .section1 .info {
	width: 25%;
}

#home-content .section1 .info .row {
	display: flex;
	align-items: center;
}

#home-content .section1 .info .row:not(:last-child) {
	margin-bottom: 15px;
}

#home-content .section1 .info .row::before {
	content: '';
	align-self: stretch;
	flex-shrink: 0;
	width: 2rem;
	background-color: currentColor;
	border-radius: 100px;
	margin-right: 1.5rem;
}

#home-content .section1 .info .row h3 {
	font-size: 1.5rem;
	margin: 1rem 0 .3rem;
}

#home-content .section1 .info .row p {
	line-height: 1.6;
}

#home-content .section1 .text {
	width: 40%;
	padding-left: 30px;
	box-sizing: border-box;
}

/********************************************************************************************************************/

#home-content .section2 {
	padding: 100px 0;
}

#home-content .section2 .container {
	align-items: center;
}

#home-content .section2 .block1,
#home-content .section2 .block2 {
	margin-bottom: 80px;
}

#home-content .section2 img {
	min-width: 0;
	flex-shrink: 0;
}

#home-content .section2 .text {
	max-width: 58%;
}

#home-content .section2 .block1 .text {
	margin-right: 75px;
}

#home-content .section2 .block2 .text {
	margin-right: 125px;
}

#home-content .section2 .block2 .text ul{margin:0 0 0 21px;}
#home-content .section2 .block2 .text ul li{list-style:circle; color:#fff; font-size:1.125rem; line-height:1.4;}

#home-content .section2 .block3 .text {
	margin-right: 200px;
}

.lab-photo-container{position:relative;}
.lab-photo-container span{position:absolute; top:10px; left:10px; color:#222; font-weight:700; font-size:1.4em; text-shadow:1px 1px 20px rgb(255,255,255);}

/********************************************************************************************************************/

#home-content .section3 {
	max-width: 80%;
	padding: 100px 0 120px;
	margin: auto;
}

#home-content .section3 .text-blocks {
	align-items: flex-start;
	gap: 3.5rem;
	margin-bottom: 50px;
}

#home-content .section3 .text-blocks > * {
	width: calc((100% / 2) - 3.5rem + (3.5rem / 2));
	flex-grow: 1;
}

#home-content .section3 .picture-wrap {
	max-width: 100%;
	width: 850px;
	margin: auto;
}

#home-content .section3 .picture-wrap img {
	float: left;
	shape-outside: circle();
	clip-path: circle();
	padding: 30px;
	margin: 50px 75px 50px 0;
}

#home-content .section3 .picture-wrap .text {
	max-width: 60%;
	padding-top: 30px;
	margin-left: auto;
}

#home-content .section3 .picture-wrap .text > p:not(:last-child) {
	margin-bottom: 1.8rem;
}

#home-content .section3 > h3 {
	clear: both;
	max-width: 100%;
	width: 770px;
	font-size: 1.5rem;
	text-align: center;
	margin: 60px auto 0;
}

/********************************************************************************************************************/

#home-content .section4 {
	background: #fff;
	padding: 80px 0 100px;
}

#home-content .section4 h2 {
	color: #000;
	margin-bottom: 60px;
}

#home-content .section4 .cards {
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
	gap: 30px;
	max-width: 1920px;
	margin: auto;
}

#home-content .section4 .card {
	width: 22%;
	width: calc((100% / 4) - 30px + (30px / 4));
	background: var(--main-color);
	padding: 55px 35px 35px;
	box-sizing: border-box;
	border-radius: 35px;
}

#home-content .section4 .card .card-title {
	padding-bottom: 1.5rem;
}

#home-content .section4 .card .card-title h3 {
	font-size: 1.5rem;
}

#home-content .section4 .card .card-title p {
	font-weight: 500;
}

#home-content .section4 .card .container {
	padding-top: 2rem;
}

#home-content .section4 .card .container .text {
	flex-grow: 1;
}

#home-content .section4 .card .images {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
	margin-left: 15px;
}

#home-content .section4 .card > img {
	max-width: 85%;
	margin: auto;
}

/********************************************************************************************************************/

#home-content .section5 {
	background: #fff;
	padding: 80px 0 100px;
}

#home-content .section5 h2 {
	color: #000;
	text-align: left;
	margin-bottom: 0;
}

#home-content .section5 .top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
}

#home-content .section5 .top .advisors {
	max-width: 52%;
	max-width: clamp(300px, 850px, 55%);
	background: var(--main-color);
	padding: 25px;
	box-sizing: border-box;
	border-radius: 35px;
}

#home-content .section5 .top .advisors .columns {
	column-count: 2;
	column-gap: 15px;
}

#home-content .section5 .top .advisors h3 {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
}

#home-content .section5 .top .advisors p {
	font-size: 1rem;
	break-inside: avoid;
	margin-bottom: 15px;
}

/*============================================*/

#home-content .section5 .solutions {
	background: var(--second-color);
	padding: 100px 0 25px;
	margin-top: -65px;
}

#home-content .section5 .solutions .container {
	flex-wrap: wrap;
	justify-content: center;
	row-gap: 30px;
}

#home-content .section5 .solutions .block {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	flex-grow: 1;
	width: calc(100% / 5);
}

#home-content .section5 .solutions .block .text,
#home-content .section5 .solutions .block .title span {
	width: 85%;
}

#home-content .section5 .solutions .block .title {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	text-align: center;
	margin-top: 50px;
	position:relative;
}

#home-content .section5 .solutions .block .title .arrow-tip{position:absolute; top:50%; left:10px; transform:translateY(-50%); z-index:15;}

#home-content .section5 .solutions .block .title span {
	color: #fff;
	background: var(--main-color);
	padding: .5rem;
	border-radius: 25px;
	box-sizing: border-box;
	z-index: 1;
}

#home-content .section5 .solutions .block .title h3,
#home-content .section5 .solutions .block .title p {
	font-size: 1.5rem;
}

#home-content .section5 .solutions .block:not(:first-child) .title::before {
	content: '';
	position: absolute;
	left: 0;
	width: 15%;
	height: 10px;
	flex-grow: 1;
	background: #9b7fe9;
}

#home-content .section5 .solutions .block:not(:last-child) .title::after {
	content: '';
	position: absolute;
	right: 0;
	width: 15%;
	height: 10px;
	flex-grow: 1;
	background: #9b7fe9;
}

/*#home-content .section5 .solutions .block:first-child .text {
	margin-right: auto;
}

#home-content .section5 .solutions .block:last-child .text {
	margin-left: auto;
}*/

/*============================================*/

#home-content .section5 .bottom {
	align-items: flex-start;
	gap: 50px;
	padding: 20px 0;
}

#home-content .section5 .bottom .links a {
	display: block;
	color: #000;
}

#home-content .section5 .bottom .mid-title {
	position: relative;
	width: calc(20% * .85);
	color: #fff;
	text-align: center;
	background: var(--main-color);
	padding: .5rem 2rem;
	border-radius: 25px;
	box-sizing: border-box;
}

#home-content .section5 .bottom .mid-title h3,
#home-content .section5 .bottom .mid-title p {
	font-size: 1.5rem;
}

/*#home-content .section5 .bottom .mid-title::before {
	position: absolute;
	content: url(img/icons/purple-arrow.png);
	display: block;
	left: 0;
	right: 0;
	bottom: calc(100% - 17px);
}*/

#home-content .section5 .purple-arrow {
  display: inline-block;
  width: 10px;
  height: 45px; /* Shaft height */
  background-color: #9b7fe9;
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

/* Arrow head */
#home-content .section5 .purple-arrow::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 13px solid #9b7fe9;
}


#home-content .section5 .bottom .text p {
	color: #000;
}

#home-content .section5 .bottom .links,
#home-content .section5 .bottom .text {
	flex: 1;
}

/********************************************************************************************************************/

#home-content .section6 {
	background: #222;
	padding: 100px 0;
}

#home-content .section6 h2 {
	text-align: left;
	margin-bottom: 50px;
}

#home-content .section6 .grid {
	grid-template-columns: repeat(4, 1fr);
	gap: 5%;
}

#home-content .section6 .block h3 {
	font-size: 1.5rem;
	margin-bottom: 2rem;
}

#home-content .section6 .block p:not(:last-child) {
	margin-bottom: 2rem;
}

#home-content .section6 .block .overlap-img {
	margin-bottom: -200px;
}

/********************************************************************************************************************/
/********************************************************************************************************************/

footer {
	padding: 60px 0;
}

footer p {
	font-weight: 700;
}

footer .container {
	justify-content: space-between;
	gap: 50px;
}

/********************************************************************************************************************/

/* CSS MEDIA QUERIES - WIDTH */

@media screen and (max-width: 1600px) {

}

@media screen and (max-width: 1450px) {

	.wrap{width:1100px;}

	#home-content .section1 .container > img {
		max-width: 300px;
	}

	#home-content .section5 .solutions .block .title h3,
	#home-content .section5 .solutions .block .title p,
	#home-content .section5 .bottom .mid-title h3,
	#home-content .section5 .bottom .mid-title p {
		font-size: 1.25rem;
	}

}

@media screen and (max-width: 1280px) {

	.wrap{width:900px;}

	nav .menu-title {
		font-size: 1.5rem;
	}

	nav .nav-cta {
		font-size: 1rem;
		padding: 1.5rem 2rem;
	}

	#home-content .section1 .info {
		width: 56%;
	}

	#home-content .section1 .container > img {
		max-width: 38%;
		order: -1;
	}

	#home-content .section1 .text {
		width: 100%;
		padding-left: 0;
		margin-top: 75px;
	}

	#home-content .section2 .block2 .text,
	#home-content .section2 .block3 .text {
		margin-right: 75px;
	}

	#home-content .section3 .picture-wrap img {
		margin: 100px 20px 110px 0;
	}

	#home-content .section4 .card {
		width: calc((100% / 2) - 30px + (30px / 2));
	}

	#home-content .section5 h2 {
		text-align: center;
	}

	#home-content .section5 .top {
		flex-direction: column;
	}

	#home-content .section5 .top .advisors {
		max-width: clamp(300px, 850px, 90%);
	}

	#home-content .section5 .solutions {
		margin-top: -75px;
	}

	#home-content .section5 .solutions .block {
		width: calc(100% / 3);
	}

	#home-content .section5 .solutions .block .title {
		margin-top: 30px;
	}

	#home-content .section5 .solutions .block:nth-child(3) .title::after,
	#home-content .section5 .solutions .block:nth-child(4) .title::before {
		content: unset;
	}

	#home-content .section5 .bottom {
		flex-direction: column;
		align-items: center;
		gap: 30px;
		text-align: center;
	}

	#home-content .section5 .bottom .mid-title {
		width: calc(33.33% * .85);
		order: -1;
	}

	#home-content .section5 .purple-arrow {
		height: calc(45px + 34px);
	}

	/******/

	#home-content .section4,
	#home-content .section5 {
		padding: 80px 0;
	}
	
	#home-content .section5 .solutions .block .title .arrow-tip{left:30px;}

}

@media screen and (max-width: 950px) {

	.wrap{width:700px;}

	nav .logo,
	nav.scrolled .logo {
		max-width: 150px;
	}

	nav .menu-title {
		font-size: 1.25rem;
	}

	nav .nav-cta {
		padding: 1rem;
	}

	#hero-section .text {
		width: 75%;
		margin-right: 50px;
	}

	#home-content .section2 .container {
		gap: 50px;
	}

	#home-content .section2 .text {
		max-width: 100%;
	}

	#home-content .section2 img {
		flex: 0 0 auto;
		max-width: 250px;
	}

	#home-content .section2 .block1 img {
		max-width: 100%;
		width: 100%;
	}

	#home-content .section2 .block1 {
		flex-direction: column;
	}

	#home-content .section2 .block1 .text {
		margin-right: 0;
	}

	#home-content .section2 .block2 .text,
	#home-content .section2 .block3 .text {
		margin-right: 0;
	}

	#home-content .section3 .picture-wrap img {
		float: none;
		clip-path: unset;
		padding: 0;
		margin: 30px auto;
	}

	#home-content .section3 .picture-wrap .text {
		max-width: 100%;
		text-align: center;
	}

	#home-content .section6 .grid {
		grid-template-columns: 1fr 1fr;
		gap: 50px 5%;
	}

	#home-content .section6 .block .overlap-img {
		max-width: 85%;
		margin-left: auto;
	}
	
	
	
	#home-content .section5 .solutions .block .title .arrow-tip{left:25px;}

}

@media screen and (max-width: 768px) {

	.wrap{width:500px;}

	p {
		font-size: 1rem;
	}

	nav .container {
		flex-wrap: wrap;
		gap: 15px 20px;
	}

	nav .menu-title {
		order: 3;
		margin-left: auto;
		margin-right: 23px;
	}

	#hero-section {
		padding-bottom: 100px;
	}

	#hero-section h1,
	#home-content h2 {
		font-size: 2.5rem;
	}

	#hero-section .container {
		flex-direction: column;
	}

	#hero-section .text {
		width: 100%;
		margin: 30px 0;
	}

	#hero-section .text p {
		font-size: 1.3rem;
	}

	#hero-section .images {
		flex-direction: row;
		align-items: center;
		gap: 20px;
		order: -1;
		margin: 30px 0;
	}

	#hero-section .images img {
		min-width: 0;
	}

	#home-content .section1 .container {
		flex-direction: column;
	}

	#home-content .section1 .info {
		width: 100%;
	}

	#home-content .section1 .container > img {
		max-width: 85%;
		margin-bottom: 50px;
	}

	#home-content .section2 .container {
		flex-direction: column;
	}

	#home-content .section2 img {
		max-width: 65%;
	}

	#home-content .section4 .card {
		width: 100%;
		padding: 35px;
	}

	#home-content .section5 .top .advisors h3 {
		font-size: 1.25rem;
	}

	#home-content .section5 .solutions .block {
		width: calc(100% / 2);
	}

	#home-content .section5 .solutions .block:nth-child(2) .title::after,
	#home-content .section5 .solutions .block:nth-child(3) .title::before,
	#home-content .section5 .solutions .block:nth-child(4) .title::after,
	#home-content .section5 .solutions .block:nth-child(5) .title::before {
		content: unset;
	}

	#home-content .section5 .solutions .block:nth-child(3) .title::after,
	#home-content .section5 .solutions .block:nth-child(4) .title::before {
		content: '';
	}

	#home-content .section5 .bottom .mid-title {
		width: calc(50% * .85);
	}

	#home-content .section6 .block h3 {
		font-size: 1.25rem;
		margin-bottom: 1rem;
	}

	/******/

	#home-content .section1,
	#home-content .section2,
	#home-content .section6 {
		padding: 80px 0;
	}

	#home-content .section3 {
		max-width: 100%;
		padding: 80px 0 120px;
	}

}

@media screen and (max-width: 550px) {

	.wrap{width: 90%;}

	nav {
		padding: 30px 0;
	}

	nav .logo,
	nav.scrolled .logo {
		max-width: 120px;
	}

	nav .nav-cta {
		font-size: .85rem;
		padding: .8rem 1rem;
	}

	#hero-section h1,
	#home-content h2 {
		font-size: 2rem;
	}

	#hero-section {
		padding-top: 200px;
	}

	#hero-section .text .hero-btn,
	#hero-section .text .main-btn {
		font-size: .85rem;
		padding: 1rem;
	}

	#home-content .section1 .container > img,
	#home-content .section3 .picture-wrap img {
		max-width: 65%;
	}

	#home-content .section1 .info .row h3 {
		font-size: 1.25rem;
		margin: 0;
	}

	#home-content .section3 > h3 {
		font-size: 1.25rem;
	}

	#home-content .section5 .top .advisors {
		max-width: 100%;
	}

	#home-content .section5 .top .advisors .columns {
		column-count: 1;
	}

	#home-content .section5 .solutions .container {
		row-gap: 50px;
	}

	#home-content .section5 .solutions .block {
		width: 100%;
	}

	#home-content .section5 .solutions .block .title::before,
	#home-content .section5 .solutions .block .title::after {
		content: unset !important;
	}

	#home-content .section5 .bottom {
		gap: 20px;
		padding: 60px 0 0;
	}

	#home-content .section5 .bottom .mid-title {
		width: 85%;
	}

	#home-content .section5 .purple-arrow {
		display: none;
	}

	#home-content .section6 .grid {
		grid-template-columns: auto;
	}

	#home-content .section6 .block .overlap-img {
		margin-bottom: 0;
	}

	footer p {
		text-align: center;
	}

}

/* CSS MEDIA QUERIES - HEIGHT */


@media screen and (max-height: 920px) {
	
}

@media screen and (max-height: 810px) {
	
}