@charset "UTF-8";
/* CSS Document */

:root{
	--brand-color-1: #81D2E6;
	--brand-color-1-darker:#6BB2C4;
	--brand-color-2: #152f46;
	--brand-color-2-darker:#0f2232;
	--paragraph-font-color:#788393;
	--mid-blue-color:#224771;
}

/* 
	0. resets/globals
	1. header
	2. main nav 
	3. hp slider
	4. intro text 
	
*/
u{
	text-decoration:none;
}
.dgl {
    max-width: 250px;
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 15px;
    right: 0;
}

@media screen and (max-width: 790px) {
	.dgl {
	    position: relative;
	    margin: 40px 0 20px;
	    max-width: 200px;
	    left: 0;
	    right: auto;
	}
}

#middle-content-panel .gsc-results-wrapper-overlay {
    height: 80%!important;
    width: 100%!important;
    top: 50%!important;
    left:50%!important;
    transform: translate(-50%,-50%)!important;
    position: absolute!important;
}

/* EXPAND BUTTONS */
.mobile #main-nav ul li .expand{
	display:flex;
	position:absolute;
	top:5px;
	left:-40px;
	width:28px;
	height:28px;
	background:#ab0000;
	border-radius:3px;
	text-align:center;
	cursor:pointer;
	transition:all 0.3s;
	align-items: center;
	justify-content: center;
}

.mobile #main-nav ul li .expand:after{
	content:'\f078';
	font-family:'FontAwesome';
	font-size:14px;
	color:#fff;
	padding-bottom:2px;
}
.mobile #main-nav ul li .expand.opened:after{
	content:'\f077';
	font-family:'FontAwesome';
	font-size:14px;
	color:#fff;
}

/* 0. Resets/Globals */

* {
  margin: 0;
  padding: 0;
  box-sizing:border-box;
}

body {
	/*font-family: 'Montserrat', sans-serif;*/
	font-family: "Sora", sans-serif;
	font-size:16px;
}

.download:before {
	content:'\f019';
	font-family: 'FontAwesome';
	font-size: 15px;
	position: relative;
	margin-right: 5px;
	top: -2px;
}

.download {
	font-size:13px;

}


a {
  transition: all 0.3s ease 0s;
  -webkit-transition: all 300ms ease-out;
  text-decoration:none;
  cursor: pointer;
}

a img {
  border: none;
}

img {
  display: block;
}

ul {
  list-style: none;
}

.clear {
	clear:both;
	height:1px;
	margin-top:-1px;
	display:block;
}

.not-found {
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items:center;
	background: #f2f2f2;
}

strong {
	font-weight:700;
}

html, body {
  -webkit-text-size-adjust:none;
}

h1{
	font-size:2.25em;
	line-height: 1.25em;
	font-weight: 700;
	color:var(--brand-color-2-darker);
	margin: 1em 0 0.5em 0;
}

h2{
	font-size:2em;
	margin: 1em 0 0.5em 0;
	font-weight: 700;
	color:var(--brand-color-1);
}

h3 {
	line-height: 1.5em;
	margin: 2em 0 1em 0;
	font-size: 1.5em;
	font-weight: 700;
	color: var(--brand-color-2-darker);
}
.blue-bg h3{
	color:#fff;
}

h4 {
	font-size: 1.125em;
	line-height: 1.375em;
	margin-bottom: 10px;
	font-weight: 700;
	color:var(--brand-color-2-darker);
}

hr {
	position: relative;
	margin: 30px auto;
	border: 0;
	height: 1px;
	background: #d9d9d9;
}

p {
	color: var(--paragraph-font-color);
	font-size: 0.95em;
	margin-bottom: 1em;
	/* letter-spacing: 0.02em; */
	line-height: 1.75em;
	font-weight:400;
}

a{
	color:var(--brand-color-1);
}

.blue-bg{
	background: #246594;
}

.white-bg{
	background:#fff;
}

.blue-bg p,
.blue-bg li{
	color:#fff;
}

.white-bg p,
.white-bg li{
	color:var(--paragraph-font-color);
}

.googleMapCanvas {
	margin-top: 50px;
}

.invisible {
	opacity: 0;
}

.fade-in-element {
	opacity:1;
	transition: all 1.2s;
}

.full-width {
	width: 100%;
	background: #f2f2f2;
	padding: 50px 4%;
	z-index: 2;
	height: auto;
}

.max-width {
	width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	max-width: 1200px;
}

.hidden {
	opacity: 0;
}

.fade-in-element {
	opacity:1;
	
}

.pipe {
	color: #d9d9d9;
	margin: 0 10px;
}

.button, .btn-primary {
	padding: 8px 15px;
	margin-top: 15px;
	display: inline-block;
	border: none;
	cursor: pointer;
	transition: all 0.3s;
	font-weight: 500;
	background: var(--brand-color-2);
	border-radius: 10px 0 10px 0;
	color: #fff;
}

.simple-inner .middle-content-panel .button,
.simple-inner .middle-content-panel .btn-primary {
	background: #fff;
}

.simple-inner .middle-content-panel .button:hover,
.simple-inner .middle-content-panel .btn-primary:hover {
	background: var(--brand-color-1);
}

.button:hover,
.btn-primary:hover {
	background: var(--brand-color-1);
}

 .middle-content-panel .form-actions .btn-primary {
	 background: var(--brand-color-1);
 }

 .middle-content-panel .form-actions .btn-primary:hover {
	 color: #f2f2f2;
 }




/* 1. header */

header#main-header {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 52;
	transition:all 0.4s;
}

header#main-header.nav-up {
}

header#main-header .wrapper{
	display:flex;
	align-items:flex-end;
	justify-content:space-between;
	padding: 0 4%;
	transition:all 0.3s;
}

header#main-header.nav-up .wrapper{
	background: var(--brand-color-2-darker);
}
header#main-header #logo {
	width: 180px;
	height: auto;
	transition:all 0.3s;
	margin:10px 0;
	padding:20px 0;
}

@media screen and (min-width: 1200px){
	header#main-header #logo {
		width:220px;
	}
}

header#main-header #logo a{
	display:block;
}

header#main-header #logo img,
header#main-header #logo svg {
	width: 100%;
	height: auto;
}

header#main-header #logo .st0 {
	fill:#fff;
}

header#main-header #logo .st1{
	fill:var(--brand-color-1);
}

header#main-header.nav-up #logo .st0 {
	fill:#fff;
	transition:all 0.3s;
}

header#main-header.nav-up #logo .st1 {
	fill: var(--brand-color-1);
	transition:all 0.3s;
}

header#main-header .header-navigation {
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition:all 0.3s;
}

header#main-header.nav-up .header-navigation {
	gap:5px;
}

header#main-header .top-nav {
	display: flex;
	justify-content: flex-end;
	position: absolute;
	top: 0;
	right: 4%;
}

header#main-header .top-nav a {
	font-size: 0.75em;
	font-weight: 500;
	display: flex;
	align-items: center;
	background: RGB(255, 233, 0);
	padding: 0.75em 1em;
	border-radius: 0 0 12px 12px;
	color: #333;
	gap: 8px;
}

header#main-header .top-nav a.document-library{
}

header#main-header .top-nav a i {
	font-size: 14px;
	display: block;
	text-align: center;
	padding-left: 30px;
}

header#main-header .top-nav a i:before {
	content: '';
	  background: url('../images/ow.svg') no-repeat;
	  width: 40px;
	  height: 40px;
	  position: absolute;
	  left: 7px;
	  top: -3px;

}

header#main-header .top-nav a:hover{
	background:var(--brand-color-2);
	color: #fff;
}

header#main-header .top-nav a:hover i:before {
	filter: brightness(50);
}


@media screen and (min-width: 1025px) {
	#mobile-nav{
		display:none;
	}
}

@media screen and (max-width: 1025px) {
	header#main-header{
		
	}
	header#main-header #main-nav{
		display: none;
	}
	
	header#main-header #logo {
		background: transparent;
		width: 180px;
		margin: 0;
	}
	
	header#main-header #logo a{
		padding: 6px;

	}

}

/* 2. main nav */

/* MAIN NAV */

.desktop #main-nav{
}

.desktop .nav-up #main-nav {
}

.desktop #main-nav .nav-item-document-library{
}

.desktop #main-nav ul{
	list-style:none;
	display:flex;
	margin-bottom:5px;
}

.desktop #main-nav ul li{
	margin:0 2px;
	position: relative;
}

.desktop header#main-header #main-nav > ul > li > a {
	color: #fff;
	font-weight: 400;
	font-size: 0.875em;
	height: 40px;
	line-height: 40px;
	display: block;
	padding: 0 0.875em;
	transition: all 0.3s;
	border-radius: 10px;
}

.desktop header#main-header #main-nav > ul > li.has-children:hover {
	filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.25));
}

.desktop header#main-header #main-nav > ul > li{
	filter: drop-shadow(2px 2px 4px rgba(0,0,0,0));
	transition:filter 0.3s;
}

.desktop header#main-header #main-nav > ul > li > a:hover{
	color:var(--brand-color-2);
}

.desktop header#main-header #main-nav > ul > li > a:hover,
.desktop header#main-header #main-nav > ul > li:hover > a{
	background: var(--brand-color-1-darker)!important;
	color: #fff!important;
}

.desktop header#main-header #main-nav > ul > li.nav-path-selected > a {
	background: var(--brand-color-1-darker);
	color: #fff;
}

/* 2nd Level */

.desktop #main-nav ul ul{
	position:absolute;
	display:flex;
	flex-direction:column;
	transition:all 0.4s;
	opacity:0;
	pointer-events:none;
	padding-top:10px;
}

.desktop #main-nav ul ul li{
	margin:0;
}

.desktop #main-nav ul ul li a {
	color: #fff;
	text-transform: none;
	font-size: 0.875em;
	white-space: nowrap;
	background: var(--brand-color-2);
	padding: 1em 0.875em;
	/* height: auto; */
	display: block;
	min-width: 180px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.desktop #main-nav ul ul li:first-of-type a{
	border-radius:12px 12px 0 0;
}

.desktop #main-nav ul ul li:last-of-type a{
	border-bottom:none;
	border-radius:0 0 12px 12px;
}
.desktop #main-nav ul ul li:first-of-type:last-of-type a{
	border-radius:0 12px 12px 12px;
}

.desktop #main-nav ul ul li a:hover {
	background: var(--brand-color-1);
}

.desktop #main-nav ul li:hover ul{
	opacity:1;
	pointer-events:auto;
}

/* MOBILE BURGER */

#mobile-burger {
	width: 75px;
	height: 75px;
	background: var(--brand-color-1-darker);
	top: 0;
	right: 0;
	position: fixed;
	z-index: 800;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	transition: all 0.3s;
	gap: 4px;
	justify-content: center;
	border-radius: 0 0 0 100px;
	padding-bottom: 15px;
	padding-left: 15px;
	box-shadow: 0 0 8px rgba(10, 41, 66, 0.72);
}

#mobile-burger.close{
	background: var(--brand-color-1);
}

#mobile-burger span{
	width: 30px;
	height: 3px;
	background: #fff;
	display: block;
	margin: 0 auto;
	border-radius: 3px;
	cursor:pointer;
	box-sizing:border-box;
	transition: transform 0.3s, width 0.3s;
}

#mobile-burger:hover{
	background:var(--brand-color-1);
}

#mobile-burger:hover span{
	background: #fff;
}

/* MAIN NAV MOBILE */

.mobile .nav-blackout {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 780;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
}
.mobile .nav-blackout.opened{
	opacity:1;
	pointer-events:auto;
}

.desktop #mobile-burger{
	display:none;
	
}


.mobile #main-nav{
	display:none;
}

.mobile #mobile-nav {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 400px;
	max-height: 100vh;
	overflow-y: auto;
	background: var(--brand-color-2);
	display: block;
	transform: translateX(100%);
	transition: transform 0.3s;
	z-index: 790;
	padding: 100px 20px;
	border-radius: 0 0 0 100px;

	/* Hide scrollbar for Webkit browsers */
	&::-webkit-scrollbar {
		display: none;
	}

	/* Hide scrollbar for IE, Edge, and Firefox */
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
}


.mobile #mobile-nav.opened{
	transform:translateX(0);
}

.mobile #mobile-nav > ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	padding-left: 30px;
	align-items: flex-start;
}

.mobile #mobile-nav li {
	position: relative;
	margin: 3px 0;
	width: 100%;
}

.mobile #mobile-nav li a{
	color:#fff;
	font-size:16px;
	height:40px;
	line-height:40px;
	padding:0 10px;
	display:block;
}

.mobile #mobile-nav li a:hover {
	/* background: #3c6a9d; */
	color: var(--brand-color-1);
}

@media only screen and (max-width: 1025px ) {
	.mobile header#main-header .top-nav {
		right: 100px;
	}
}

@media only screen and (max-width: 500px ) {
	
	.mobile header#main-header .top-nav a {
		width: 55px;
		  height: 35px;
		  font-size: 0;
	}
}

/* MOBILE SUBNAV */

.mobile #mobile-nav ul ul{
	width:100%;
	height:0;
	overflow:hidden;
	transition:all 0.3s;
}
.mobile #mobile-nav ul ul.open{
	height:auto;
}

.mobile #mobile-nav li li a{
	font-size:14px;
}

.mobile #mobile-nav li li a::before {
	content: '\f105';
	font-family: 'Font Awesome 5 Pro';
	margin-right: 10px;
	color: var(--brand-color-1);
}

/* EXPAND BUTTONS */
.mobile #mobile-nav ul li .expand{
	display:flex;
	position:absolute;
	top:5px;
	left:-30px;
	width:28px;
	height:28px;
	background:#f2f2f2;
	border-radius:14px;
	text-align:center;
	cursor:pointer;
	transition:all 0.3s;
	align-items: center;
	justify-content: center;
}

.mobile #mobile-nav ul li .expand.opened {
	background:var(--brand-color-1);
}

.mobile #mobile-nav ul li .expand:after{
	content:'\f078';
	font-family:'Font Awesome 5 Pro';
	font-size:14px;
	color:#234a75;
	padding-bottom:2px;
	top: 6px;
	position: absolute;
}
.mobile #mobile-nav ul li .expand.opened:after{
	content:'\f077';
	font-family:'Font Awesome 5 Pro';
	font-size:14px;
	color:#f2f2f2;
}
.mobile #mobile-nav ul li.nav-item-document-library{
}
.mobile #mobile-nav ul li.nav-item-document-library a {
	color: var(--brand-color-1);
}

@media screen and (max-width: 700px) {
	.mobile #mobile-nav{ 
		width: 100%;
	}
}

/* 3. slider */
#wave {
	width: 100%;
	height: 200px;
	position: absolute;
	z-index: 11;
}

#wave:before {
	content: '';
	background: url('../images/wave.png') no-repeat;
	background-size: cover;
	background-position: center bottom;
	width: 100%;
	height: 200px;
	position: absolute;
	top: 0;
	left: 0;
	filter: hue-rotate(43deg) brightness(0.4);
	opacity: 0.4;
}

#hpslide {
	z-index: 10;
	position: relative;
	width: 100%;
	height: 100vh!important;
	background: #191919;
}

img.rsImg{
	filter:brightness(0.85);
}

.rsContent{
	height:auto;
}

.rsBlockWrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	background: rgba(0, 23, 53, 0.35);
	padding: 4%;
}

/*#hpslide .rsOverflow, #hpslide .rsContainer {
	height: 100%!important;
}

#hpslide .rsContent {
	height: auto!important;
}*/
.royalSlider .logo-icon {
	width: 100px;
	height: 100px;
	position: absolute;
	/* top: 50%; */
	transform: translate(50%, -50%);
	z-index: -1;
	right: 0;
	opacity:0.5;
}

.royalSlider .logo-icon svg{
	width:100%;
	height:auto;
}

.royalSlider .logo-icon .st0{
	fill:#fff;
}
.royalSlider .logo-icon .st1{
	fill:var(--brand-color-1);
}
.rsABlock {
	width: 66%;
	max-width:920px;
	position: relative;
	text-align: left;
	transition: all 0.6s;
	right: initial;
	top:45px;
}



.rsABlock h2 {
	color: #f2f2f2;
	font-size: 42px;
	margin-bottom: 0 !important;
	line-height:normal;
}

.rsABlock h3 {
	color: var(--brand-color-1);
	font-weight: 700;
	font-size: 4vw;
	line-height: 1.125em;
	margin:0;
	text-shadow: 1px 1px 2px rgba(0,0,0,.5);
}

.rsABlock h3 span{
	color:#fff;
}

.rsABlock p {
	color: #fff;
	font-size: 1em;
	max-width:800px;
	margin:1em 0 0 0;
	text-shadow: 1px 1px 2px rgba(0,0,0,.5);
}


@media screen and (max-width: 920px) {
	.rsABlock{
		width:auto;
	}
	.royalSlider .logo-icon{
		display:none;
	}
	.rsABlock h3{
		font-size: 36px;
	}
}

@media screen and (min-width: 1550px){
	.rsABlock h3{
		font-size: 62px;
	}
}


/* 3. Nav */

.hide-nav {
	display: none!important;
}

/* 4. intro text */

.intro-text {
	position: relative;
	width: 100%;
	height: auto;
	z-index: 20;
	padding: 0 6%;
}

.intro-text h1 {
	color: #81d2e6;
	font-weight: 400;
	font-size: 28px;
}

.intro-text p {
	color: #f2f2f2;
	font-size: 16px;
}

@media screen and (max-width:1025px) {
	#hp-slide-text {
		padding: 0 6%;
		left: auto;
	}
}


/* 5. content  area */


.content-area ul {
	margin: 2em 0;
}

.content-area ul li {
	line-height: 1.75em;
	font-size: 0.9em;
	padding-left: 24px;
	position: relative;
	margin: 1em 0;
	font-weight: 400;
}

.content-area ul li:before {
	content:'\f356';
	font-family: 'Font Awesome 5 Pro';
	position: absolute;
	color: var(--brand-color-1);
	top:0;
	left:0;
	font-weight:600;
}

.content-area img {
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}

.content-area .half img {
	width: 100%;
	height: auto;
	max-width: 500px;
	margin-bottom: 10px;
}

.content-area .full img {
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}

.content-area a:not(.button) {
	color:var(--brand-color-2);
	font-weight:500;
	border-bottom:1px dotted;
}

.content-area a:not(.button):hover {
	color: var(--brand-color-1);
}


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

    div.ccm-layout-column {
        float:none;
        width:100%!important;
    }
    
    .ccm-layout-column-inner {
        margin:0 0 30px 0!important;
    }

}

/* 5.5 Animated Cloud Intro */

section.floating-cloud-intro{
	padding:90px 4%;
	background:var(--mid-blue-color);
}

section.floating-cloud-intro .row{
	display:flex;
	justify-content:space-between;
}

section.floating-cloud-intro .col{
	width:48%;
	
}
section.floating-cloud-intro .col h2{
	margin-top:0;
}
section.floating-cloud-intro .col p{
	color:#fff;
}

section.floating-cloud-intro .image{
	background-size:cover;
	background-position:center center;
	position:relative;
	width:100%;
	padding-bottom:56%;
	border-radius:24px;
}

section.floating-cloud-intro .cloud {
	position: absolute;
	width: 20%;
	right: 5%;
	top: 10%;
	transform: translatey(0px);
	animation: float 6s ease-in-out infinite;
	cursor: pointer;
	transition: all 1s;
	filter: brightness(15) grayscale(1);
}

@keyframes float {
	0% {
		transform: translatey(0);
	}
	50% {
		transform: translatey(-25%);
	}
	100% {
		transform: translatey(0);
	}
}



@media screen and (max-width:980px) {
	section.floating-cloud-intro .row{
		flex-direction:column;
	}
	
	section.floating-cloud-intro .col{
		width:100%;
	}
	
	section.floating-cloud-intro .col.rhs{
		display:none;
	}
}

/* 7. third hp panel */

#third-hp-panel {
	width: 100%;
	position: relative;
	height: auto;padding: 80px 0;
	background: url('../images/home-background.jpg') no-repeat;
	background-size:cover;
	background-position: center center;
	padding: 150px 0;
}

#third-hp-panel .content-area {
	background: rgba(255, 255, 255, 0.7);
	padding: 40px;
	width:auto;
	display: inline-block;
}

#third-hp-panel .content-area h2 {
	color: var(--mid-blue-color);
}

#third-hp-panel .content-area h3 {
	color: var(--mid-blue-color);
}

#third-hp-panel .content-area p {
	color: var(--mid-blue-color);
}

@media screen and (max-width:1025px) {
	#third-hp-panel .max-width {
		margin: 0;
	}
	
	#third-hp-panel .content-area {
		width:80%;
		padding: 40px 40px 40px 6%;
	}
	
}


/* 7. fourth hp panel */

#fourth-hp-panel {
	width: 100%;
	position: relative;
	height: auto;padding: 80px 0;
	background: linear-gradient(180deg, rgba(129, 210, 230, 0.28) 0%, rgb(255, 255, 255) 34%, rgb(255, 255, 255) 100%);
	background-size:cover;
	background-position: center center;
	padding: 45px 4% 0 4%;
}

#fourth-hp-panel .content-area h2 {
	color: var(--mid-blue-color);
}

#fourth-hp-panel .content-area h3 {
	color: var(--mid-blue-color);
}

#fourth-hp-panel .content-area p {
	color: var(--mid-blue-color);
}

#fourth-hp-panel .content-area ul li {
	line-height: 24px;
}

#fourth-hp-panel .content-area ul li:before {
	content:'\f061';
	font-family: 'FontAwesome';
	font-size: 14px;
	position: relative;
	color: var(--brand-color-1);
	margin-right: 10px;
}

#fourth-hp-panel .content-area ul li {
	color: var(--mid-blue-color);
	line-height: 2em;
	font-weight:600;
}

#stats {
	display: flex;
	margin-top: 180px;
	flex-wrap:wrap;
}

#stats h2 {
	color:#fff !important;
	font-size: 42px !important;
	font-weight: 700 !important;
	margin-bottom: 10px!important;
}

#stats p {
	color: #fff !important;
	margin-bottom: 0;
	font-size: 14px;
	line-height: 1.375em;
}

#stats li {
	text-align: center;
	width: 21%;
	position: relative;
	height: auto;
	background-size: 100% 100%;
	background-position: center center;
	display: flex;
	justify-content: center;
	align-items: stretch;
	padding: 0;
	text-indent: 0 !important;
	margin: 2%;
}

#stats li:before {
	content: '' !important;
	position: absolute !important;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--brand-color-1-darker);
	transform: rotate(5deg);
	opacity: 0.25;
}

.stat-container {
	background: var(--brand-color-1-darker);
	padding: 25px 8% 50px 8%;
	width: 100%;
	position: relative;
	margin: 0;
	display: block;
}

#footer-wave {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

#footer-wave img {
	width: 100%;
	height: 100%;
	max-height: 300px;
}

@media screen and (max-width:1025px) {
	#stats li { 
		width: 46%;
	}
}

@media screen and (max-width:500px) {
	#stats li { 
		width: 99%;
	}
}



/* 8. moray footer */

#moray-footer {  
	background: #fff;
	width: 100%;
	padding: 120px 6% 20px;
	height: auto;
}

#moray-footer .pipe {
	color: #89c6eb;
}

#moray-footer .max-width {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#moray-footer h4 {
	color: var(--mid-blue-color);
	font-weight: 700;
	font-size 18px;
}

#moray-footer hr {
	margin: 10px 0 30px
}

#moray-footer p {
	font-size: 14px;
	line-height: 22px;
	color: var(--mid-blue-color);
	margin-bottom: 20px;
}

#moray-footer a {
	font-size: 14px;
	line-height: 22px;
	color: var(--mid-blue-color);
}

#moray-footer a:hover {
	color: #42aaea;
}

#logos {
    position: relative;
    left: 0;
    max-width: 400px;
    display: flex;
    margin-bottom: 20px;
  	align-items: flex-start;
  	justify-content: center;
	align-items: center;
}

#logos li {
	display: flex;
	align-items: flex-end;
	width: 33%;
	justify-content: center;
	position: relative;
}

#logos li.ocean-winds {
		margin-right: 0px;
		max-width: 80px;
}

#logos li.ocean-winds img {
		margin-right: 5px;
		height: auto;
		width:100%;
}

#logos li.dgl {
	margin:0 45px;
	max-width: 65px;
	bottom: auto;
}

#moray-footer p.dgl-text {
	margin: 0 0 40px 0;
  font-style: italic;
  font-size: 12px;
}

#logos li.equitix {
		max-width:100px;
}

#logos li.equitix img {
	width: 100%;
	height: auto;
}


#logos li img {
	width: 100%;
	height: auto;
	display: block;
	transition: all 0.3s;
}

#logos li img:hover {
	filter:grayscale(1);
}

#address {
    text-align: center;
    margin-bottom: 115px;
}

.gplus {
	position: relative;
	margin-bottom: 38px!important;
}

.gplus img {
	height: 50px;
	width: auto;
	position: absolute;
	right: -42px;
	bottom: -10px;
}

#credit {
	text-align: center;
	padding-top: 15px;
	border-top: 1px solid #e6e6e6;
}

#credit a {
	font-size: 11px!important;
}

#credit .copyright:before {
	content:'\f1f9';
	font-family: 'FontAwesome';
	font-size: 12px;
	position: relative;
	margin-right: 4px;
}

#credit p {
	font-size: 11px;
}


/* 9. inner slide */



section#innerslide:before {
	content: '';
	background: linear-gradient(180deg, rgb(19, 63, 100) 0%, rgba(19,63,100,.25) 50%);
	background-size: cover;
	background-position: center center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	mix-blend-mode: multiply;
}

section#innerslide {
	width: 100%;
	position: relative;
	height: 30vw !important;
	min-height: 400px;
}
	
/* 10. top content panel */

	
section.top-content-panel {
	background: #fff;
	position: relative;
	width: 100%;
	padding: 50px 4%;
	height: auto;
}

.top-content-panel h1 strong {
	color: var(--mid-blue-color);
	font-size: 32px;
	display: block;
}

.top-content-panel h1 {
	color: var(--brand-color-1);
	font-size: 40px;
	font-weight: 700;
	line-height: 0.9em;
	margin-bottom: 30px;
}


/* 11. middle content panel */

section.middle-content-panel{
	padding:100px 4%;
}

.middle-content-panel,
.simple-inner-content{
	position:relative;
}

section.simple-inner-content {
	padding: 25px 4% 50px 4%;
}

section.waves:before {
	background: url('../images/white-top-wave.png') no-repeat;
	background-size: 2000px 100%;
	background-position: center center;
	content:'';
	position: absolute;
	width: 100%;	
	display: block;
	height: 55px;
	left: 0;
	top: -54px;
	z-index: 30;
}

section.waves-after:after {
	background: url('../images//white-top-wave.png') no-repeat;
	background-size: 2000px 100%;
	background-position: center center;
	content:'';
	position: absolute;
	width: 100%;	
	display: block;
	height: 55px;
	left: 0;
	bottom: -54px;
	z-index: 30;
	transform:rotate(180deg);
}

.middle-content-panel.blue-bg {
	background: #256995;
	padding: 80px 4% 90px 4%;
	width: 100%;
	height: auto;
	position: relative;
	z-index: 21;
	min-height: 60vh;
	display: flex;
	align-items: center;
}

.middle-content-panel.white-bg{
	background:#fff;
}

.simple-inner .middle-content-panel .content-area a:hover {
	color: var(--brand-color-2);
}

.simple-inner  .middle-content-panel {
	padding: 100px 4% 220px;
}

section.simple-inner-content h1 strong {
	color: var(--brand-color-1);
	font-size: 32px;
	display: block;
	font-weight: 400;
}


.middle-content-panel h2 {
	max-width: 720px;
}

.middle-content-panel h2 strong {
	color: #81d2e6;
}

.middle-content-panel.blue-bg .content-area p {
	color:#fff;
	max-width:760px;
}

@media screen and (max-width:1025px) {
	
	.simple-inner .middle-content-panel:before {
		background-size: contain;
		background-position: center bottom;
		top: -95px;
	}
}



/* 12. bottom content panel */ 

#bottom-content-panel:before {
	background: url('../images/top-wave.png') no-repeat;
	background-size: 100% 100%;
	background-position: center center;
	content:'';
	position: absolute;
	width: 100%;	
	display: block;
	height: 100px;
	left: 0;
	top: -85px;
	z-index: 30;
}

.bottom-content-panel {
	background: #fff;
	position: relative;
	width: 100%;
	padding: 50px 4%;
	height: auto;
}

#bottom-content-panel .content-area h2 {
	font-size: 24px;
	color: var(--mid-blue-color);
	font-weight: 550;
	margin-bottom: 24px;
}

#bottom-content-panel .content-area h2 strong {
	color: #81d2e6;
}

#bottom-content-panel .content-area p {
	color: var(--mid-blue-color);
}

#bottom-content-panel .content-area ul li {
	margin-bottom: 8px;
	line-height: 1.4em;
}

@media screen and (max-width:1025px) {
	
	#bottom-content-panel:before {
		background-size: contain;
		background-position: center bottom;
		top: -95px;
	}

}

/* 13 page list */

.page-list-wrapper .page-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 45px -15px;
	padding: 20px;
	border-radius:20px;
}

.white-bg .page-list-wrapper .page-list{

}

.page-list-wrapper .page-list li:before {
	display: none;
}

.page-list-wrapper .page-list li {
	position: relative;
	width: 49%;
	min-width:150px;
	margin: 0.5%;
	text-indent: 0 !important;
	padding-left: 0 !important;
	display: flex;
	align-content: stretch;
	transition:all 0.3s;
}


.page-list-wrapper .page-list li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 15px;
	padding: 20px;
	width: 100%;
	background: var(--paragraph-font-color);
	border-radius: 15px 0 15px 0;
	border: none;
}

.page-list-wrapper .page-list li .page-thumbnail {
	transition: all 0.4s;
	margin: 0 auto;
	background: var(--brand-color-1);
	border-radius: 50%;
	width: 90px;
	height:90px;
}

.page-list-wrapper .page-list li:hover .page-thumbnail {
	transform:scale(1.1);
}

.page-list-wrapper .page-list li h4 {
	font-weight: 400;
	font-size: 1em;
	color: #fff;
	margin: 0;
}


.page-list-wrapper .page-list li .page-thumbnail img {
	width: 100%;
	height: auto;
	padding: 20%;
	filter: saturate(0) brightness(10);
}

.middle-content-panel .pages-title a {
	color:#f2f2f2;
	word-break: break-word;
}

@media only screen and (max-width: 790px){
	.page-list-wrapper .page-list{
		   flex-direction:column;
		   margin:45px 0;
	}
	.page-list-wrapper .page-list li{
		width:100%;
	}
}

/* 14. form styling */

/* Form styling */

.content-area  fieldset {
  border: none;
}

.content-area  .ccm-form, .formidable  {
  background: #e1e3e6;
  margin-bottom: 20px;
  border-radius: 8px;
  padding: 40px;
  margin-top: 30px;
}

.content-area .cv-form .ccm-form {
    background: #e3e3e3;
    margin-top: 0;
}

.content-area  .form-group input, .formidable_row input {
  display: block;
  border:none;
  width: 100%;
  padding: 8px;
  margin: 5px 0;
  background: #fff;
  border: 1px solid #d2d2d2;
}

.content-area .checkbox label {
	font-size: 14px;
	color: #5e5e5e;
}

.content-area  .form-group  input[type=file] {
	background: none;
}

.content-area  .form-group {
  margin-bottom: 25px;
}

.content-area legend {
	color:var(--mid-blue-color);
	margin-bottom: 15px;
}

.content-area  .form-group .control-label, .formidable_row label {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--mid-blue-color);
}

.content-area  .cmm-captcha-code {
  font-size:12px;
}

.content-area  .form-group .text-muted {
  font-size: 11px;
  color: #989eaa;
}

.content-area  select {
  width: 100%;
  padding: 8px;
  margin: 5px 0;
  display: block;
}

.content-area  .form-group textarea, .formidable_row textarea {
  width: 100%;
  padding:8px;
  margin: 5px 0;
  border:none;
  border-radius: 8px;
  background:#fff;
  display: block;
  border: 1px solid #d2d2d2;
}


.content-area  .checkbox {
  margin-top: 10px;
}

.content-area  .captcha {
  border-top: 1px solid #e3e3e3;
  padding-top: 10px;
}

.content-area  .form-group label [type="checkbox"] {
  width: auto;
  display: inline-block;
}

.content-area  .form-actions .btn, .formidable_row .btn {
  width: 70%;
  font-size: 15px;
  border: none;
  border-radius:8px;
  padding: 10px;
  cursor:pointer;
  color: #f5f7fb;
  background:var(--mid-blue-color);
  transition: all 0.3s;
}

.content-area .form-actions .btn:hover, .formidable_row .btn:hover {
  background: #5ebbf0;
}

.input {
    margin-top: 15px;
    display:block;
}

.input:hover .file_upload {
    background: #ccecf9!important;
    transition: all 0.3s;
}


/* document library */

.content-area .ccm-block-document-library-table {
	border: 1px solid #ddd;
	border-collapse: collapse;
	width: 100%;
}

.content-area .ccm-block-document-library-breadcrumbs {
	margin-bottom: 20px;
	font-size: 13px;
}


.content-area .ccm-block-document-library-table th {
	font-size: 13px;
	font-weight: 400;
	padding: 8px 15px;
}

.content-area .ccm-block-document-library-table td {
	font-size: 12px;
	padding: 5px 7px;
}

.content-area .ccm-block-document-library-table td img {
	max-width: 30px;
	margin: 5px 0;
}



.content-area .fa-folder:before {
	color:#ababab;
	font-size: 25px;
}


/* News List */

.news-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 -1%;
}

.news-list li:before {
	display: none;
}

.news-list li {
	padding-left: 0 !important;
	text-indent: 0 !important;
	width: 31.333%;
	margin: 1% !important;
	position: relative;
	background: #fafafa;
	border-radius: 12px 0 12px 0;
	overflow: hidden;
}

.news-list .news-thumbnail  {
	overflow:hidden;
}

.news-list li:hover img {
	filter:brightness(1);
	transform:scale(1.05);
	transition: all 0.3s;
}



.news-list .news-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit:cover;
	filter:brightness(0.85);
	transition: all 0.3s;
	margin-bottom: 0;
	max-width: none;
}


.news-list .news-thumbnail a {
	border-radius: 0;
	background: none;
	padding: 0;
	display: block;
	width: 100%;
	height: 100%;
	border:none;
}

.news-list .info {
	padding: 20px;
	text-align: left;
}

.news-list .info p{
	margin:0;
}

.news-list .info p.date {
	font-size: 0.75em;
}

.news-list .info a{
	font-weight:700;
	margin-bottom:10px;
	display:block;
	border:none;
	line-height:1.5em;
}

@media screen and (max-width:769px) {
	.news-list li {
		width: 48%;
	}
}

@media screen and (max-width:500px) {
	.news-list li {
		width: 98%;
	}
}

/* pagination */ 

.content-area .pagination {
	display: flex;
	font-size: 14px;
	margin-top: 20px;
	justify-content: center;
	gap: 8px;
}

.content-area .pagination li:before {
	display: none;
}

.content-area .pagination li {
	margin:0;
	padding:0!important;
	text-indent: 0!important;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	border: none;
	border-radius: 50%;
	overflow:hidden;
}
.content-area .pagination li.prev,
.content-area .pagination li.next{
	display:none;
}

.content-area .pagination li a,
.pagination > li > span{
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	padding: 0;
	border: none;
	margin: 0;
	align-items: center;
	background: #eee;
	text-align: center;
	justify-content: center;
	font-weight:600;
}

.pagination .prev, .pagination .next {
	display: none;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus{
	background-color:var(--brand-color-1);
	color:#fff;
}

/* cookie policy */


#cookie-popup {
	width:100%;
}

.gdpr_cookie_notice .gdpr_cookie_notice-title {
	font-size: 1em;
}

.gdpr_cookie_notice {
	color: #fff;
	background-color: var(--brand-color-2-darker)!important;
}

.gdpr_cookie_notice .gdpr_cookie_notice-container {
	padding: 25px 4%;
}

.gdpr_cookie_notice p {
	color: #fff;
	margin: 10px 0;
}

.gdpr_cookie_notice a {
	color: var(--brand-color-1)!important;
}

.gdpr_cookie_notice a:hover {
	color: #f2f2f2!important;
}

.gdpr_cookie_notice-close {
	text-transform: uppercase;
	margin-top: 20px;
	padding: 8px 16px!important;
	font-weight: 600;
}

.gdpr_cookie_notice .gdpr_cookie_notice-content a{
	text-decoration:none;
	font-weight: 500;
	border-bottom: 1px dotted;
	padding-bottom: 3px;
}

/* image lightbox */

.mfp-content {
	max-width: 1024px!important;
	max-height: none!important;
}

.mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.90;
}

/* GOOGLE SEARCH BOX */
div.gsc-control-cse{
	border:none;
	max-width:300px;
	border-radius:12px;
}
form.gsc-search-box{
	margin:0!important;
}
.gsc-search-box table td {
	border:none!important;
	padding: 0!important;
}

.gsc-input table {
	margin-bottom: 0!important;
}

div.gsc-input-box {
	padding: 0 !important;
	height: 42px;
	border-radius: 5px;
	overflow: hidden;
}
.gsc-input-box{
	
}

input.gsc-input{
	padding:10px!important;
	font-size:16px!important;
}

button.gsc-search-button-v2 {
	padding: 0;
	font-size: 16px !important;
	width: 42px;
	background: var(--brand-color-1);
	cursor: pointer;
	height: 42px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}

button.gsc-search-button-v2 svg{
	fill:#fff!important;
	width:18px;
	height:18px;
}
.gsst_a{
	border:none!important;
}
.gsst_a .gscb_a {
	color: #fff!important;
	cursor: pointer;
	display: flex;
	width: 24px;
	height: 24px;
	align-items: center;
	justify-content: center;
	background: #c8002f;
	border-radius: 16pc;
	font-size: 22px;
}

/* intro video area */

#intro-video {
	width: 100%;
	padding: 90px 4%;
	position: relative;
	background: var(--mid-blue-color);
}

#intro-video .video-container {
width: 70%;
  position: relative;
}

#intro-video .youtubeBlock {
	width: 100%;
  margin-bottom: 30px;
  box-shadow: 0 0 0 4px inset;
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
}

#intro-video .youtubeBlock iframe {
  width: 102%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -1%;
  border: none;
}

@media screen and (max-width: 900px) {
  #intro-video .video-container  {
    width: 88%;
    position: relative;
    margin: 30px auto 0;
  }
}

/* homepage project information */

ul.project-information {
	column-count: 2;
	column-gap: 10%;
	flex-direction: column;
	margin: 40px 0 0 0;
}

ul.project-information li {
	line-height: 1.75em;
	font-size:0.9em;
	position: relative;
	margin: 0 0 50px 0;
	padding: 0;
	display: flex;
	align-items: flex-start;
}

ul.project-information li h3  {
	margin: 0 0 5px 0;
}

ul.project-information li p {
	margin: 0;
}

ul.project-information li:before {
	display: none;
}

ul.project-information li img {
	width: 80px;
	height: auto;
	margin: 0 20px 0 0;
}

@media only screen and (max-width: 650px){
	ul.project-information {
		column-count: 1;
		column-gap: 0;
		flex-direction: column;
	}
	
	ul.project-information li {
		flex-direction: column;
	}
	
		
	ul.project-information li img {
		width: 120px;
		maegin: 0 30px 0;
		display: block;
	}
}