/* --------------------------------
PRIMARY STYLES
-------------------------------- */
*, *::after, *::before { box-sizing: border-box; }
body { 
	font-family: sans-serif;
	font-weight: 300;
	line-height: 1;
	color: #3b134c;
}

h1, h2, h3, h4 {
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
	font-style: normal;
	line-height: 1.2;
	letter-spacing: 2px;
	margin-bottom: 1em;
}
h1 { font-size: 32px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 16px; }

table { width: 100%; }
th, td { font-size: 16px; line-height: 1.5; }

ul, ol, p { 
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.5;
}

a { text-decoration: none; }
a:hover { }

b, strong { font-weight: 600; }
i, em { font-style: italic; }

/* --------------------------------
EFFECTS
-------------------------------- */
.txt-shadow { text-shadow: 1px 1px 40px black; }
.bx-shadow,
.bx-shadow-hover:hover {
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}
.opacity-hover:hover { opacity: .5; }

/* --------------------------------
BUTTONS
-------------------------------- */
.btns { cursor: pointer; }
.btn-more {
	display: inline-block;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 2px;
	padding: 1em 2em;
	color: #3b134c;
	background: #86c2eb;
	text-decoration: none;
	transition: all .5s ease;
}
.btn-more:hover {
	background: #3b134c;
	color: white;
	padding: 1em 3em;
}
.btn-txt { display: inline-block; color: #86c2eb; }
.btn-txt::after {
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-family: "Font Awesome 5 Free";
	font-size: .6em;
	font-weight: bold;
	content: "\f105";
	margin-left: 1em;
	transition: all .5s ease;
}
.btn-txt:hover::after { margin-left: 2em; }
.btn-txt.down::after { content: "\f107"; }

#backtotop {
	display: none;
	z-index: 999;
	position: fixed;
	bottom: 1.5em; right: 1.5em;
	width: 3em;
	height: 3em;
	line-height: 3em;
	color: white;
	text-align: center;
	background: #3b134c;
	border-radius: 50%;
	transition: all .5s ease;
}
#backtotop:hover { background: white; color: #3b134c; }

.wp-element-button {
  background-color: #3b134c !important;
  border-radius: 0 !important;
  padding: .5em .75em !important;
  font-family: 'Poppins', sans-serif;
	font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.5;
  margin-bottom: 2em;
}
.wp-element-button:hover {
	background-color: #86c2eb !important;
	color: #3b134c !important;
}
.is-style-outline .wp-element-button {
  background-color: transparent !important;
  color: #3b134c !important;
}
.is-style-outline .wp-element-button:hover {
	background-color: #86c2eb !important;
	border-color: #86c2eb !important;
}

/* -------------------------------- 
VIDEO
-------------------------------- */
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed,
.embed-container video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

/* --------------------------------
FORMS
-------------------------------- */
form { position: relative; width: 100%; margin-bottom: 4em; }
form h4 { margin: .5em 0 0; }
input::-webkit-input-placeholder { color: rgba(59,19,76,.4); }
input:-moz-placeholder { color: rgba(59,19,76,.4); }
textarea::-webkit-input-placeholder { color: rgba(59,19,76,.4); }
textarea:-moz-placeholder { color: rgba(59,19,76,.4); }

label {
	display: inline-block;
	color: #3b134c;
	line-height: 1;
	padding: 1em;
	margin-bottom: .5em;
}
textarea { height: 140px; }
textarea,
select,
.input-text,
.input-submit {
	display: inline-block;
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
	color: #3b134c;
	line-height: 1;
	width: 100%;
	padding: 1em;
	margin-bottom: .5em;
	outline: none;
	border: 1px solid #ccc;
}
.input-submit {
	font-weight: 600;
	border: none;
	transition: all .5s ease;
	background: #86c2eb;
	letter-spacing: 2px;
	padding: 1em 2em;
}
.input-submit:hover { background: #3b134c; color: white; }

/* --------------------------------
NAV
-------------------------------- */
nav { 
	display: none;
	text-align: left;
	background: #86c2eb;
	position: fixed;
	top: 0; left: 0;
	width: 100%;
	height: 100vh;
	padding: 2em;
	overflow-y: scroll;
}
nav ul { width: 100%; line-height: 1; }
nav ul li { display: block; }
nav ul li a {
	font-size: 18px;
	color: #3b134c;
	display: inline-block;
	padding: 1em;
	transition: all .5s ease;
}
nav ul li a:hover,
nav ul li.current-menu-item > a { color: white; }
nav ul ul { display: none; padding: 0 1em 1em; }
nav ul li.menu-item-has-children { position: relative; }
nav ul li.menu-item-has-children > a::after {
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-family: "Font Awesome 5 Free";
	font-size: .6em;
	font-weight: bold;
	content: "\f107";
	margin-left: .5em;
}
nav ul li.menu-item-has-children:hover > ul { display: block; z-index: 2; }

nav ul.top { margin: 2em 0; }
nav ul.top li a { font-size: 14px; }
nav ul.top li a i { transform: rotate(8deg); margin-left: .25em; }

nav ul.main { }
nav ul.main li a { font-weight: 600; }
nav ul.main li.btn-aubergine a {
	background: #3b134c;
	color: white;
	padding: .5em 2em;
	margin: 1em;
}
nav ul.main li.btn-aubergine a:hover { background: white; color: #3b134c; }

nav.expanded { display: flex; flex-direction: column; }
nav.expanded ul.main { order: 1; }
nav.expanded ul.top  { order: 2; }

.nav-toggle {
	float: right;
	-webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
  position: relative;
  z-index: 3;
  display: inline-block;
  height: .75rem;
  width: 2em;
}
.nav-toggle:hover .nav-toggle-bar,
.nav-toggle:hover .nav-toggle-bar::after,
.nav-toggle:hover .nav-toggle-bar::before { background: #3b134c; }

.nav-toggle .nav-toggle-bar,
.nav-toggle .nav-toggle-bar::after,
.nav-toggle .nav-toggle-bar::before {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	background: #3b134c;
	content: '';
	height: 0.2rem;
	width: 100%;
}
.nav-toggle .nav-toggle-bar { margin-top: 0; }
.nav-toggle .nav-toggle-bar::after { margin-top: 0.4rem; }
.nav-toggle .nav-toggle-bar::before { margin-top: -0.4rem; }

.nav-toggle.expanded .nav-toggle-bar { background: transparent; }
.nav-toggle.expanded .nav-toggle-bar::after,
.nav-toggle.expanded .nav-toggle-bar::before { background: white; margin-top: 0; }
.nav-toggle.expanded .nav-toggle-bar::after {
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.nav-toggle.expanded .nav-toggle-bar::before {
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* --------------------------------
HEADER
-------------------------------- */
header {
	z-index: 999;
	position: sticky;
	top: 0; left: 0;
	width: 100%;
	background: white;
	padding: 1em 0;
}
header.active {
	-webkit-box-shadow: 0px 0px 100px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 100px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 100px 0px rgba(0,0,0,0.2);
}

/* -------------------------------- 
SLIDER
-------------------------------- */
.slider { }
.slider .slide { position: relative; width: 100%; height: 100%; }

.slick-prev,
.slick-next {
	z-index: 9;
	position: absolute;
	top: 0;
	width: 50px;
	height: 50px;
	border-radius: 100%;
  color: white;
	background: #3b134c;
	-webkit-box-shadow: 0px 0px 100px 0px rgba(0,0,0,1);
	-moz-box-shadow: 0px 0px 100px 0px rgba(0,0,0,1);
	box-shadow: 0px 0px 100px 0px rgba(0,0,0,1);
	transition: all .5s ease;
	transform: scale(1);
}
.slick-prev:hover,
.slick-next:hover,
.slick-prev:focus,
.slick-next:focus { background: #3b134c; transform: scale(1.1); }
.slick-prev { left: -75px; }
.slick-next { right: -75px; }
.slick-prev:before,
.slick-next:before {
	font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-prev:before { content: "\f053"; }
.slick-next:before { content: "\f054"; }

.slick-disabled {  }

/* --------------------------------
ARTICLE & SECTIONS
-------------------------------- */
article { overflow: hidden; }
section { 
	position: relative;
	width: 100%;
	line-height: 0;
	padding: 2em 0;
}
section ul { list-style: disc; margin-left: 1em; }
section ol { list-style: numeric; margin-left: 1em; }
section ul,
section ol,
section p { margin-bottom: 2em; }
section a { 
	color: #3b134c;
	text-decoration: underline;
	transition: all .5s ease;
}
section a:hover { color: #86c2eb; text-decoration: none; }
section a img { transition: all .5s ease; }
section a:hover img { transform: scale(1.1); }

.container { margin: 0 auto; position: relative; }
.inner { padding: 0 1.5em; }

.desktop-hide {}
.desktop-show { display: none; }

.table-align { display: table; width: 100%; height: 100%; }
.table-cell-align { display: table-cell; vertical-align: middle; }
.table-cell-align.bottom { vertical-align: bottom; }

.last { margin-bottom: 0 !important; }
.align-h { height: 100%; }
.center { text-align: center; }
.right { text-align: right; }

.grecaptcha-badge { opacity: 0; }

.gradient { position: relative; }
.gradient::before {
	z-index: 2;
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	content: "";
	background: rgb(40,53,131);
	background: -moz-linear-gradient(0deg, rgba(40,53,131,0.5) 40%, rgba(40,53,131,0) 100%);
	background: -webkit-linear-gradient(0deg, rgba(40,53,131,0.5) 40%, rgba(40,53,131,0) 100%);
	background: linear-gradient(0deg, rgba(40,53,131,0.5) 40%, rgba(40,53,131,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#283583",endColorstr="#283583",GradientType=1);
}

.hook { position: relative; padding: 0 2em; }
.hook::before,
.hook::after {
	z-index: 1;
	position: absolute;
	top: 0; left: 0;
	width: 25px;
	height: 47px;
	content: "";
	background: url('img/hook-blue.svg') no-repeat;
}
.hook::after {
	top: auto; left: auto;
	bottom: 0; right: 0;
	transform: rotate(180deg);
}
.hook.white::before,
.hook.white::after { background: url('img/hook-white.svg') no-repeat; }

.focus { position: relative; }
.focus::before {
	z-index: 1;
	position: absolute;
	top: 5%; left: 5%;
	width: 90%;
	height: 90%;
	content: "";
	background: url('img/focus-blue.svg') no-repeat;
}
.focus::after {
	top: auto; left: auto;
	bottom: 0; right: 0;
	transform: rotate(180deg);
}
.focus.white::before { background: url('img/focus-white.svg') no-repeat; }

.hero { padding: 0; }
.hero .hero-img { position: relative; }
.hero .hero-img img {
	width: 100%;
	max-width: 100%;
	height: auto;
	margin: auto;
}
.hero .hero-button {
	z-index: 9;
	position: absolute;
	top: 0; left: 0;
	display: inline-block;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 2px;
	padding: 1em 2em;
	color: #3b134c;
	background: #86c2eb;
	transition: all .5s ease;
}
.hero .hero-img a:hover .hero-button {
	background: #3b134c;
	color: white;
	padding: 1em 3em;
}

.hero .hero-overlay {
	z-index: 2;
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	padding: 2em 0;
}
.hero .hero-overlay h2,
.hero .hero-overlay h3 { color: white; text-shadow: 1px 1px 40px black; font-weight: 600; }

.intro { background: rgba(134, 194, 235, .2); }
.intro .hook { padding: 0 3em; line-height: 2; }
.intro h1 { font-weight: 600; }

.trio { background: rgb(255,255,255); }
.trio h3,
.trio h4 { font-weight: 600; }

.sectors { }
.sectors h2 { padding: 0; }
.sectors .sector { position: relative; margin-bottom: 2em; }
.sectors .sector h4 {
	position: absolute;
	bottom: 0; left: 0;
	width: 100%;
	background: #86c2eb;
	margin: 0;
	padding: 1em 0;
	color: #3b134c;
	transition: all .5s ease;
}
.sectors .sector:hover h4 { background: #3b134c; color: white; }

.cta { }
.cta ul { list-style: none; margin: 0 0 2em; line-height: 2.5; }
.cta ul li a { text-decoration: none; }
.cta ul li a i {
	color: white;
  background: #3b134c;
  display: inline-block;
  height: 100%;
  width: 33px;
  text-align: center;
  border-radius: 50%;
  padding: 1em;
  font-size: 11px;
  margin-right: 1em;
  transition: all .5s ease;
}
.cta ul li a:hover i { background: #86c2eb; color: #3b134c; }

.cta.small { background: #86c2eb; padding: 1em 0; }
.cta.small ul { margin: 0; }
.cta.small ul li { display: inline; margin: 0 1em; }
.cta.small ul li a { display: inline-block; }
.cta.small ul li a:hover { color: white; }
.cta.small ul li a:hover i { background: white; }
.cta.small ul li:first-child { display: block; padding: 0 0 .5em; }

.faq {}
.faq h4 { 
	position: relative;
	cursor: pointer;
	font-weight: bold;
	border-top: 1px solid color(srgb 0.23 0.07 0.3 / .1);
	padding: 1em 0;
	margin-bottom: 0;
}
.faq h4::after {
	display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: "\f107";
  transition: all .5s ease;
  position: absolute;
  right: 0;
}
.faq h4.active::after { transform: rotate(180deg); }
.faq h4:hover { color: #86c2eb; }
.faq p.answer { display: none; }

/* --------------------------------
FOOTER
-------------------------------- */
footer {
	width: 100%;
	padding: 3em 0;
	background: #86c2eb;
	color: white;
}
footer h4 { 
	color: white;
	font-weight: 600;
	margin-bottom: 2em;
}
footer p,
footer ul { color: inherit; line-height: 2.5; margin-bottom: 2em; }
footer a { transition: all .5s ease; color: inherit; }
footer a:hover { color: #3b134c; text-decoration: none; }

footer ul li a i { 
  background: #3b134c;
  display: inline-block;
  height: 100%;
  width: 33px;
  text-align: center;
  border-radius: 50%;
  padding: 1em;
  font-size: 11px;
  margin-right: 1em;
  transition: all .5s ease;
}
footer ul li a:hover i { background: white; color: #3b134c; }

/* --------------------------------
MEDIA QUERIES
-------------------------------- */
@media screen and (min-width: 35.5em) {
	.container { width: 568px; }
}
@media screen and (min-width: 48em) {
	.container { width: 768px; }
}
@media screen and (min-width: 64em) {
	.container { width: 1024px; }

	.desktop-hide { display: none; }
	.desktop-show { display: block; }

	h1 { font-size: 50px; }
	h2 { font-size: 40px; }
	h3 { font-size: 28px; }
	h4 { font-size: 18px; }

	.input-text,
	.input-submit,
	textarea,
	ul, ol, p { font-size: 16px; }

	nav {
		display: block !important;
		text-align: right;
		background: transparent;
		position: relative;
		height: auto;
		padding: 0;
		overflow-y: unset;
	}
	nav ul.top { margin: 0; }
	nav ul.main { border-top: 1px solid color(srgb 0.23 0.07 0.3 / .1); }
	nav ul.main li.btn-aubergine a:hover { background: #86c2eb; }

	nav ul li { display: inline-block; }
	nav ul li a { font-size: 16px !important; }
	nav ul li a:hover,
	nav ul > li.current-menu-item > a { color: #86c2eb; }
	nav ul ul li.current-menu-item > a { color: white; }
	nav ul ul {
		position: absolute;
		top: 100%; left: 0;
		background: #86c2eb;
		text-align: left;
		padding: 1em .5em;
		width: 200px;
	}
	nav ul ul li a:hover { color: white; }

	section { padding: 4em 0; }

	.trio {
		background: rgb(255,255,255);
		background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 65%, rgba(134,194,235,.2) 65%, rgba(134,194,235,.2) 100%);
	}

	.cta.small ul li:first-child { display: inline; }
}
@media screen and (min-width: 80em) {
	.container { width: 1200px; }
}
@media screen and (min-width: 120em) {
	.cta,
	.hero .hero-img { width: 1920px; left: calc(50% - 960px); overflow: hidden; }
}

/* IE11
@media all and (-ms-high-contrast:none) {
	*::-ms-backdrop,
	[data-aos^=fade][data-aos^=fade],
	[data-aos^=zoom][data-aos^=zoom] { opacity: 1; }
}*/
