@charset "UTF-8";

/*-- Reset --*/

* {
	padding:0;
	margin:0;
	outline:none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

* > :last-child { 
	margin-bottom:0;
}

img {
	width:100%;
	height:auto;
	display:block;
}

.clearfix::after {
	content:"";
	clear:both;
	display:table;
}

a, abbr, acronym, address, applet, article, aside, audio, b, blockquote, big, body, center, canvas, caption, cite, code, command, datalist, dd, del, details, dfn, dl, div, dt, 
em, embed, fieldset, figcaption, figure, font, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, keygen, label, legend, li, meter, nav,
object, ol, output, p, pre, progress, q, s, samp, section, small, span, source, strike, strong, sub, sup, table, tbody, tfoot, thead, th, tr, td, video, tt, u, ul, var, a img {
    background:transparent;
	border:0 none;
	outline:none;
	vertical-align:baseline;
	padding:0;
	margin:0;    
}

/*-- General --*/

html {
	background: #fff;
	max-width: 100%;
	max-height: 100%;
	overflow-x: hidden;
}

body {
	background: #fff;
	max-width: 100%;
	max-height: 100%;
	overflow-x: hidden;
	position: relative;
	text-rendering: optimizeLegibility;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

h1 {
	font: 600 55px/65px "neulis-sans", sans-serif;
	color: #01426b;
	margin: 0 0 30px;
}

h2 {
	font: 600 55px/65px "neulis-sans", sans-serif;
	color: #01426b;
	margin: 0 0 30px;
}

h3 {
	font: 600 35px/45px "neulis-sans", sans-serif;
	color: #01426b;
	margin: 0 0 30px;
}

h4 {
	font: 600 22px/32px "neulis-sans", sans-serif;
	color: #f5bf3b;
	margin: 0 0 30px;
}

p {
	font: 400 18px/32px "neulis-sans", sans-serif;
	color: #01426b;
	margin: 0 0 30px;
}

a.link {
	font: 600 18px/32px "neulis-sans", sans-serif;
	color: #01426b;
	text-decoration: none;
}

a.link:after {
	content: "";
	background: url("../images/arrow-yellow.svg") 0 0 no-repeat;
	background-size: 20px 16px;
	width: 20px;
	height: 16px;
	margin: 0 0 0 6px;
	position: relative;
	top: 1px;
	display: inline-block;
	transition: all 0.2s ease;
}

a.link:hover:after {
	margin: 0 0 0 12px;
}


/*-- Navigation --*/

nav {
	background: #fff;
	width: 100%;
	height: 95px;
	padding: 0 50px 0 35px;
	display: flex;
	align-items: center;
	justify-content:right;
	position:relative;
	z-index: 900;
}

nav .logo {
	width: 225px;
	height: auto;
	left:50px;
	position:absolute;
	top:50%;
	transform:translateY(-50%);
}

nav ul {
	list-style: none;
	display: flex;
}

nav ul li {
	margin: 0 0 0 50px;
	padding: 10px 0 0;
}

nav ul li:first-child {
	margin: 0;
}

nav ul li a {
	font: 600 18px/18px "neulis-sans", sans-serif;
	color: #01426b;
	text-decoration: none;
	position: relative;
}

nav ul li a:after {
	content: "";
	background: #f5bf3b;
	border-radius: 10px;
	width: 0;
	height: 3px;
	position: absolute;
	bottom: -6px;
	left: 0;
	transition: all 0.3s cubic-bezier(0.83, 0, 0.17, 1);
}

nav ul li a:hover:after {
	width: 100%;
}

nav ul li:last-child a {
	font: 400 14px/14px "neulis-sans", sans-serif;
	background: #daeaf8;
	border-radius: 100px;
	padding: 10px 20px 8px 20px;
	position: relative;
	top: -5px;
	display: inline-block;
	transition: all 0.2s ease;
}

nav ul li:last-child a:after {
	display: none;
}

nav ul li:last-child a:hover {
	background: #f4be49;
	transform: scale(1.15);
}

.social-links {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left:50px;
}

.social-links a {
	display:flex;
	align-items:center;
	justify-content:center;
	width:35px;
	height:35px;
	border-radius: 50%;
	background:#0A4A7A;
	transition:all 0.2s ease;
}

.social-links a:hover {
	background: #F5A623; /* accent color */
	transform: translateY(-2px);
}

.social-links svg {
	width:18px;
	height:18px;
	fill:#fff;
}

#instagram {
	width:18px;
	height:18px;
	position:relative;
	top:-1px;

}

#facebook {
	width:20px;
	height:20px;
	position:relative;
	top:-1px;
	left:-1px;
}

#linkedin {
	width:13px;
	height:13px;
	position:relative;
	top:-1px;
	right:-1px;
}

#top-bar {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 15px 40px;
}


/*-- Navigation Mobile --*/

#mobile-menu {
	width: 36px;
	height: 24px;
	position: absolute;
	top: 31px;
	right: 30px;
	cursor: pointer;
	z-index: 999;
	display: none;
}

#mobile-menu .bar {
	background: #01426b;
	border-radius: 10px;
	width: 100%;
	height: 3px;
	margin: 0 auto 7px;
	cursor: pointer;
	position: relative;
}

#mobile-menu .bar.active:nth-child(1) {
	animation: bar1 0.1s ease forwards;
}

#mobile-menu .bar.active:nth-child(2) {
	animation: bar2 0.1s ease forwards;
}

#mobile-menu .bar.active:nth-child(3) {
	animation: bar3 0.1s ease forwards;
}

@keyframes bar1 { 
	to {
		transform: rotate(45deg);
		top: 10px;
	}
}

@keyframes bar2 { 
	to {
		opacity: 0;
	}
}

@keyframes bar3 { 
	to {
		transform: rotate(-45deg);
		top: -10px;
	}
}

#mobile-nav {
	background: #01426b;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	display: none;
}

#mobile-nav ul {
	list-style: none;
	margin: 0 35px;
	position: relative;
	z-index: 2;
}

#mobile-nav ul li {
	margin: 0 0 20px;
}

#mobile-nav ul li:last-child {
	margin:0 0 40px 0;
}

#mobile-nav ul li a {
	font: 600 25px/35px "neulis-sans", sans-serif;
	color: #fff;
	text-decoration: none;
}

#mobile-nav ul li:last-child a {
	font: 400 14px/14px "neulis-sans", sans-serif;
	color: #01426b;
	background: #daeaf8;
	border-radius: 100px;
	padding: 8px 20px;
	margin: 15px 0 0;
	position: relative;
	left: -5px;
	display: inline-block;
}

#mobile-nav .logo {
	width: 195px;
	margin: 18px 0 45px 30px;
}

#mobile-nav-close {
	width: 35px;
	height: 35px;
	position: absolute;
	top: 24px;
	right: 30px;
	cursor: pointer;
	z-index: 999;
}

#mobile-nav-close .bar {
	background: #fff;
	border-radius: 10px;
	width: 100%;
	height: 3px;
	margin: 0 auto 7px;
	cursor: pointer;
	position: relative;
}

#mobile-nav-close .bar:first-child {
	transform: rotate(45deg);
	top: 16px;
}

#mobile-nav-close .bar:last-child {
	transform: rotate(-45deg);
	top: 6px;
}

#mobile-nav .watermark {
	width: 450px;
	height: auto;
	position: absolute;
	bottom: -120px;
	right: -120px;
	opacity: 0.08;
}


/*-- Layout --*/

#load {
	background: #fff;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}

.flex {
	display: flex;
	flex-wrap: wrap;
}

.flex-center {
	align-items: center;
}

.no-pad-top {
	padding-top: 0 !important;
}

.no-pad-bottom {
	padding-bottom: 0 !important;
}

.container {
	padding: 50px;
	margin: 0 auto;
}

section {
	position: relative;
}

.col2 {
	width: 50%;
	padding: 50px;
	position: relative;
	z-index: 2;
}

.col2 .container {
	max-width: 800px;
}

.stripe {
	background: linear-gradient(90deg, rgba(0,65,109,1) 0%, rgba(0,65,109,1) 25%, rgba(103,170,230,1) 25%, rgba(103,170,230,1) 50%, rgba(245,190,59,1) 50%, rgba(245,190,59,1) 75%, rgba(0,122,48,1) 75%, rgba(0,122,48,1) 100%);
	width: 100%;
	height: 15px;
}

.bg-blue {
	background: #01426b;
}

.bg-blue h1,
.bg-blue h2,
.bg-blue h3,
.bg-blue p {
	color: #fff;
}

.bg-blue a.link {
	color: #f4be49;
}

.bg-blue .stripe {
	background: linear-gradient(90deg, rgba(245,191,59,1) 0%, rgba(245,191,59,1) 50%, rgba(0,122,48,1) 50%, rgba(0,122,48,1) 100%);
	position: relative;
	width: -webkit-calc(100% + 100px);
	width: -moz-calc(100% + 100px);
	width: calc(100% + 100px);
	top: -50px;
	left: -50px;
}

.bg-yellow {
	background: #f4be49;
}

.bg-yellow a.link:after {
	background: url("../images/arrow-blue.svg") 0 0 no-repeat;
}

.bg-yellow .stripe {
	background: linear-gradient(90deg, rgba(0,65,109,1) 0%, rgba(0,65,109,1) 50%, rgba(103,170,230,1) 50%, rgba(103,170,230,1) 100%);
	position: relative;
	width: -webkit-calc(100% + 100px);
	width: -moz-calc(100% + 100px);
	width: calc(100% + 100px);
	top: -50px;
	left: -50px;
}

.pattern-photo {
	width: 100%;
	max-width: 500px;
	height: 50vw;
	max-height: 600px;
	margin: 0 auto;
}

.pattern-photo img {
	object-fit: cover;
	width: 100%;
	max-width: 500px;
	height: 50vw;
	max-height: 600px;
}

.pattern-light-blue-left {
	background: url("../images/pattern-light-blue.svg") top 0 right 95px repeat;
	background-size: 50px;
	width: 25%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.25;
}

.pattern-light-blue-right {
	background: url("../images/pattern-light-blue.svg") top 0 left 75px repeat;
	background-size: 50px;
	width: 25%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	opacity: 0.25;
}


/*-- Header --*/

header {
	background: #01426b;
	width: 100%;
	height: -webkit-calc(100vh - 155px);
	height: -moz-calc(100vh - 155px);
	height: calc(100vh - 155px);
	min-height: 600px;
}

header p {
	font: 400 21px/35px "neulis-sans", sans-serif;
	max-width: 500px;
}

header .col2:first-child {
	padding-left: 0;
	padding-right: 0;
}

header .col2:last-child {
	padding: 0 !important;
	position: relative;
	overflow: hidden;
}

header .col2:last-child img {
	object-fit: cover;
	width: 100%;
	height: -webkit-calc(100vh - 155px);
	height: -moz-calc(100vh - 155px);
	height: calc(100vh - 155px);
	min-height: 600px;
	animation: headerimg 4s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.3s;
}

@keyframes headerimg { 
	to {
		transform: scale(1.03);
	}
}

header h1 {
	opacity: 0;
	position: relative;
	top: 100px;
	animation: headertext 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.6s;
}

header p {
	opacity: 0;
	position: relative;
	top: 100px;
	animation: headertext 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.7s;
}

header a.link {
	opacity: 0;
	position: relative;
	top: 100px;
	animation: headertext 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.8s;
}

@keyframes headertext { 
	to {
		top: 0;
		opacity: 1;
	}
}


/*-- Scroller --*/

#scroller {
	width: 100%;
	height: 60px;
	position: relative;
	overflow: hidden;
}

#scroller p span {
	display: inline-block;
	background: #fff;
	width: 50px;
	height: 2px;
	margin: 0 15px;
	position: relative;
	top: -4px;
}

#scroller article {
	width: 6000px;
	position: absolute;
	top: 50%;
	left: -1130px;
	transform: translateY(-50%);
	animation: scrolltext 15s linear infinite;
}

@keyframes scrolltext { 
	to {
		left: -565px;
	}
}


/*-- Header --*/

header .col2:first-child .container {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}


/*-- Intro --*/

#intro .col2:last-child {
	padding-left: 0;
}

#intro .col2:last-child .container {
	padding-left: 0;
}


/*-- Vision and Mission --*/

#vision-mission .col2:first-child img {
	width: 55px;
	height: auto;
	margin: -30px 0 15px;
}

#vision-mission .col2:last-child img {
	width: 55px;
	height: auto;
	margin: -30px 0 15px -6px;
}


/*-- Staff --*/

#staff .col2:first-child {
	padding-right: 0;
}

#staff .col2:first-child .container {
	padding-right: 0;
}

.staff-photo {
	width: 100%;
	max-width: 500px;
	height: auto;
	margin: 0 auto;
}


/*-- Contact --*/

#contact {
	overflow: hidden;
}

#contact .col2:first-child .logo {
	width: 150px;
	height: auto;
	margin: 0 auto;
}

#contact .col2:last-child {
	padding-left: 0;
}

#contact .col2:last-child .container {
	padding-left: 0;
}

#contact ul {
	list-style: none;
}

#contact ul li:first-child {
	margin: 0 50px 0 0;
}

#contact ul li a {
	text-decoration: none;
}

#contact ul li:first-child a h4:before {
	content: "";
	background: url("../images/icon-phone.svg") 0 0 no-repeat;
	background-size: 40px;
	width: 40px;
	height: 40px;
	margin: 0 8px 0 0;
	display: inline-block;
	position: relative;
	top: 12px;
}

#contact ul li:last-child a h4:before {
	content: "";
	background: url("../images/icon-email.svg") 0 0 no-repeat;
	background-size: 40px;
	width: 40px;
	height: 40px;
	margin: 0 8px 0 0;
	display: inline-block;
	position: relative;
	top: 12px;
}

#contact .watermark {
	width: 450px;
	height: auto;
	position: absolute;
	top: 50px;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0.08;
}


/* POPUP */

#popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  overflow-y: auto; /* 👈 allows full-page scrolling */
  z-index: 9999;
}

.popup-content {
  background: #fff;
  margin: 60px auto; /* 👈 gives space top/bottom instead of centering */
  padding: 80px;
  max-width: 1000px;
  width: 90%;
  border-radius: 8px;
  position: relative;
  text-align: left;

  /* ❌ remove these */
  /* max-height: 80vh; */
  /* overflow-y: auto; */
}

#popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}


/*-- Footer --*/

footer {
	text-align: center;
	border-top: 1px solid #195a8d;
	padding: 30px;
}

footer p {
	font-size: 15px;
	line-height: 20px;
}

footer a {
	color: #fff;
	text-decoration: none;
}


/*-- Fancybox --*/

.fancybox-bg {
	background: #00112d !important;
}

.fancybox-content {
	padding: 0 !important;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}

.fancybox-popup {
	display: none;
	border-top: 0 !important;
	border-right: 0 !important;
	border-left: 0 !important;
	max-width: 1000px !important;
	padding: 0 !important;
}

.fancybox-slide {
	padding: 5% !important;
}

.fancybox-toolbar {
	opacity: 1 !important;
	visibility: visible !important;
}

.fancybox-button--zoom,
.fancybox-button--play,
.fancybox-button--thumbs,
.fancybox-navigation,
.fancybox-button--close svg {
	display: none !important;
}

.fancybox-button--close {
	background: url("../images/icon-close.svg") no-repeat center center !important;
	background-size: 30px 30px !important;
	border: 0 !important;
	width: 54px !important;
	height: 54px !important;
	text-indent: -999999px !important;
	position: absolute !important;
	top: 10px !important;
	right: 10px !important;
	cursor: pointer !important;
	z-index: 10 !important;
}


/*-- GSAP Animations --*/

.reveal {
	opacity: 0;
	position: relative;
	top: 100px;
}