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

}
body{
    font-family: 'Roboto Condensed', sans-serif;
}

font {
    font-family: 'Roboto', sans-serif;
}

a{
	text-decoration: none;
	color:#1477c3;/* Light Blue */
}

a.button{
	display:inline-block;
	position:relative;
	background:rgba(34,36,131,1);/* Dark Blue */
	color:#fff;
	height:40px;
	line-height:40px;
	padding:0 20px;
	text-transform:uppercase;
	font-weight:500;
	transition:background 0.3s;
	margin-top:10px;
}
a.button.slice{
	padding:0 36px 0 20px;
}
a.button.slice:after{
	content:'';
	position:absolute;
	right:0;
	border-right:16px solid #fff;
	border-top:40px solid transparent;/* Dark Blue */
}
a.button:hover{
	background:#1477c3;/* Light Blue */
}
a.button.light{
	background:#1477c3;/* Light Blue */
	color:#fff;
}
a.button.light:hover{
	background:#4a9cdb;/* Light Blue */
}
p{
	font-size:14px;
	line-height:1.7em;
	color:rgba(19,20,52,1);/* Very Dark Blue */
	margin:10px 0;
}
h1,h2,h3,h4{
	margin-bottom:10px;
}

h1{
	font-size:28px;
	text-transform: uppercase;
	color:rgba(34,36,131,1);
}

#footer #socials {
    list-style: none;
    position: absolute; 
    right:4%;
    top: 50px;
    width: auto;
}

.linkedin:before {
    content: '\f08c';
    font-family:'FontAwesome';
    font-size: 30px;
    color: #fff;
    position: relative;
}

.linkedin:hover:before {
    color: #269eea;
}

.linkedin a {
    display: block;
    cursor: pointer;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
}

#header{
	position:fixed;
	height:40px;
	width:100%;
	background:rgba(255,255,255,0.9);
	z-index:500;
	box-shadow:0 0 100px rgba(19,20,52,0.15);/* Very Dark Blue */
	transition:top 0.3s;
	top:0;
}

#header.nav-up{
	top:-40px;
}

/* Mobile Nav */


#mobile-burger:before {
  content: '\f0c9';
  font-family: 'FontAwesome';
  height: 40px;
  line-height: 40px;
  font-size: 28px;
  color: #196ca4;
}

#mobile-burger {
  background: #f5f7fb;
  border-left:1px solid #e4e6ea;
  text-align: center;
  position: absolute;
  height: 40px;
  cursor: pointer;
  display: block;
  right: 0px;
  top: auto;
  width: 80px;
  display: block;
}

#mobile-burger.hidden {
    display: none !important;
}


#logo{
	position:fixed;top:0;
	display:block;
	width:170px;
	height:80px;
	padding-left:4%;
	padding-right:4%;
	box-sizing: content-box;
	background:rgba(34,36,131,1);/* Dark Blue */
}
#logo:after{
	content:'';
	display:block;
	width:30px;
	height:80px;
	background: url(../assets/logo-bg-slice.svg) no-repeat center center;
	background-size: cover;
	position:absolute;
	right:-30px;
	top:0;

}
#logo img{
	display:block;
	width:180px;
	height:auto;
	margin-top:18px;
}
#main-nav.desktop{
	position:absolute;
	right:4%;
	bottom:0;
}
#main-nav.desktop ul{
	list-style:none;
}
#main-nav.desktop ul li{
	display:inline-block;
	margin:0 1px;
	position:relative;
}
#main-nav.desktop ul li a{
	text-transform:uppercase;
	font-weight:400;
	font-size:14px;
	letter-spacing:0.04em;
	height:40px;
	line-height:40px;
	padding:0 8px;
	display:block;
	transition:all 0.3s;
	color:rgba(34,36,131,1);
}
/*
#main-nav.desktop ul li a:after{
	content:'';
	width:0;
	height:0;
	border-top:5px solid #fff;
	border-right:5px solid #fff;
	position:absolute;
	top:0;
	left:0;
	transition:all 0.3s;
}

#main-nav.desktop ul li a:hover{
	background:#1477c3;
	color:#fff;
}

#main-nav.desktop ul li a:hover:after{
	border-right:5px solid #1477c3;
}
*/
#main-nav.desktop ul li a:hover{
	color:#1477c3;/* Light Blue */
}
#main-nav.desktop ul li.has-children > a:after{
	content:'\f107';
	font-family:'FontAwesome';
	margin-left:3px;
}

/*SUBNAV*/

#main-nav.desktop ul ul{
	position:absolute;
	top:40px;
	left:-50%;
	text-align:center;
	display:block;
	width:220px;
	padding-top:10px;
	z-index:-1;
	transform:translate(0,-100%);
	transition:transform 0s 0.3s, opacity 0.3s, padding 0.3s;

	opacity:0;

}
#main-nav.desktop ul li:hover ul{
	padding-top:20px;
	transform:translate(0, 0);
	opacity:1;
	transition:opacity 0.3s, padding 0.3s;
}
#main-nav.desktop ul ul li{
	display:block;
	margin:0;
	border-bottom:1px solid rgba(34,36,131,1);/* Dark Blue */
}
#main-nav.desktop ul ul li:last-of-type{
	border-bottom:none;
}
#main-nav.desktop ul ul li:last-of-type:after{
	content:'';
	position:absolute;
	display:block;
	width:calc(100% - 10px);
	bottom:-10px;
	border-top:10px solid rgba(34,36,131,1);/* Dark Blue */
	border-right:10px solid transparent;
}

#main-nav.desktop ul ul li:first-of-type:after{
	content:'';
	position:absolute;
	display:block;
	width:calc(100% - 10px);
	top:-10px;
	border-bottom:10px solid rgba(34,36,131,1);/* Dark Blue */
	border-left:10px solid transparent;
}
#main-nav.desktop ul ul li a{
	color:#fafafa;
	font-size:13px;
	font-weight:300;
	letter-spacing: 0.06em;
	background:rgba(34,36,131,0.9);/* Dark Blue */
}

#main-nav.desktop ul ul li a:hover{
	background:#1477c3;
	color:#fff;
}
#main-nav.desktop ul ul li a:after{
	display:none;
	}
	
/* HOMEPAGE PANELS */

#hp-main-panel{
	position:relative;
	display:block;
	width:100%;
	height:100vh;
	background:url(../assets/images/windfarm-1.jpg) no-repeat center bottom;
	background-size: cover;
	z-index:0;
}

.hp-text {
	position: absolute;
	text-align: center;
	left:50%;
	transform: translate(-50%,-50%);
	bottom:20%;
	height:auto;
	width: 80%;
}

.hp-text h1 {
    color: #f2f2f2;
	font-size: 4em;
	line-height: 1em;
	text-shadow: 0px 0px 6px #1f516b;
}

@media only screen and (max-width: 995px) {
    .hp-text {
        top: 40%;
        bottom: auto;
    }
}

.down-arrow, .down-arrow-2 {
    position: absolute;
    bottom: 0;
    text-align: center;
    display: block;
    width: 100%;
    z-index: 1;
}

.down-arrow p, .down-arrow-2 p {
    color: #fff;
    display: inline-block;
    font-size: 12px;
    margin: 0;
    vertical-align: middle;
    cursor: pointer;
    background: rgba(34,36,131,0.8);
    padding: 5px 10px;
    border-radius: 3px 3px 0 0;
	}

	.down-arrow p:after, .down-arrow-2 p:after {
    display: block;
    vertical-align: middle;
    content: '\f103';
    font-family: 'FontAwesome';
    margin: 0;
    font-size: 20px;
    color: #1477c3;
}

.fixed-panel-spacer{
	height:100vh;
}
.hp-panel{
	position:relative;
	font-size:0;

}

.hp-panel.specialised-diving{
	background:#fff;
	height:100vh;
	display:flex;
	align-items:center;
}
.col2{
	width:50%;
	position:relative;
}
.hp-panel.specialised-diving .col2:first-of-type{
	width:45%;
}

.hp-panel.specialised-diving .col2 article{
	padding:0 4% 0 16%;
}
.hp-panel.specialised-diving .col2.image{
	background:url('../assets/images/Dive-Hat-Rig.jpg') no-repeat right center;
	background-size:cover;
	height:100vh!important;
	width: 55%!important;
	position: relative;
}
.hp-panel.specialised-diving .col2.image:after{
	content:'';
	width:50%;
	height:100vh;
	top: 0;
	left: -0.5px;
	background: #fff;
	position:absolute;
	clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 100%, 0% 0%, 0% 75%, 0% 75%);
	-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 100%, 0% 0%, 0% 75%, 0% 75%);
}

.hp-panel.worldwide{
	background:url('../assets/images/worldwide.jpg') no-repeat center bottom;
	background-size:cover;
	height:100vh;
	display:flex;
	text-align:center;
	justify-content:center;
	padding:0 4%;
}
.hp-panel.worldwide article{
	max-width:640px;
	top: 25%;
}
.hp-panel.worldwide h1{
	color:#fff;
}
.hp-panel.worldwide p{
	color:#fafafa;
}

/* INNER PAGE PANELS */

#hp-inner-panel {
	width:100%;
	position:relative;
	height:0;
	padding-bottom:50%;
	background: url('../assets/images/sample-slide.jpg');
	background-position: center center;
	background-size: cover;
}

.inner-pagelist {
	background: #fff;
	width: 100%;
	position: relative;
	height: auto;
	margin: 0 auto;
	padding: 60px 4%;
	max-width: 1400px;
}

.inner-content {
	background: #fff;
	width: 100%;
	position: relative;
	height: auto;
	margin: 0 auto;
	padding: 60px 4%;
	display: flex;
	justify-content: center;
}

.inner-content .max-width {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 900px;
}

.inner-pagelist-info {
	width: 100%;
	max-width: 1400px;
	position: relative;
	height: auto;
	margin: 0 auto 30px;
}

.inner-pagelist-info:after, .inner-content:after {
	content: '';
	display: block;
	clear: both;
}

.left-col {
	width: 100%;
	position: relative;
	margin-bottom: 30px;
}

.left-col h1 {
	font-weight: 900;
	font-family: 'Roboto' !important;
}

.left-col h1 strong, .right-col h2 strong {
	color:#00adee;
	font-weight: 900!important;
}

.right-col h3 {
	font-size:18px;
	text-transform:uppercase;
	color:#2e3192;
}

.left-col h2 {
	font-size: 20px;
	text-transform: uppercase;
	color:#00adee;
}

.left-col h3 {
	font-size: 18px;
	color:#00adee;
	text-transform: uppercase;
}

.left-col hr, .right-col hr {
	height: 1px;
	background: #dbdddf;
	border: none;
	margin:15px 0;
}

.left-col strong {
	color: #1477c3;
	font-weight: 600;
}

.left-col h4 {
	color: #2e3192;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 600;
}

.left-col p {
	color: #16222c;
		color: #323947;
}

.left-col a {
		color: #00adee;
}

.left-col a:hover {
	color: #1477c3;
}

.left-col ul {
	list-style: none;
	margin-bottom: 15px;
}

.left-col ul li {
	color:#323947;
	font-size: 14px;
	line-height: 23px;
}

.left-col ul li:before {
	content:'\f101';
	position: relative;
	margin-right: 7px;
	font-family: 'FontAwesome';
	color: #00adee;
	font-weight: 500;
}

.left-col .ccm-block-next-previous-wrapper {
	font-size: 14px;
}

#googleMapCanvas {
	margin-bottom: 20px;
}

.right-col {
	width: 100%;
	position: relative;
}

.right-col ul {
	list-style: none;
}

.right-col h2 {
	font-size: 28px;
	text-transform: uppercase;
	color:#2e3192;
}

.right-col p, .right-col ul li, .right-col a {
	font-size: 14px;
}

.right-col .ccm-block-page-list-title:before {
	content: '\f054';
	font-family: 'FontAwesome';
	font-size: 11px;
	top: -1px;
	position: relative;
	margin-right: 6px;
	color: #1477c3;
}

.right-col .ccm-block-page-list-title {
	line-height: 14px;
}

.right-col .ccm-block-page-list-page-entry {
	margin-bottom: 15px;
}

.right-col .ccm-block-page-list-date {
	color: #00adee;
	font-size:12px;
	font-size: 12px;
	text-indent: 13px;
}

.right-col .ccm-block-page-list-description {
	font-size: 12px;
	margin-top: 5px;
	color: #323947;
	line-height: 18px;
}

.right-col .news-widget {
	margin-bottom: 15px;
	padding: 20px;
	background: #f5f7fb;
}

h1.page-title {
	margin-bottom: 0px;
}

p.ccm-block-page-attribute-display-wrapper {
	margin: 0;
}

.right-col .news-widget {
	margin-bottom: 15px;
	padding: 20px;
	background: #f5f7fb;
}

.right-col .news-widget .ccm-block-page-list-page-entry {
	margin-bottom: 0;
}

.right-col .news-widget .ccm-block-page-list-title::before {
	display: none;
}

.right-col .news-widget .ccm-block-page-list-date {
	text-indent: 0;
}

.left-col .ccm-block-page-attribute-display-wrapper {
	color: #00adee;
	font-size:12px;
	font-size: 12px;
}

.right-col a:hover {
	color: #00adee;
}

.right-col li {
	line-height: 28px;
}

.right-col li:before {
	content:'\f054';
	color:#00adee;
	font-family: 'FontAwesome';
	margin-right: 8px;
}

.pagination, .pagination > li > a {
    font-size: 14px!important;
}

.inner-pagelist > article {
	max-width: 1400px;
	position: relative;
	margin: 0 auto;
}

.inner-pagelist ul {
	display: flex;
	flex-wrap: wrap;
}

.inner-pagelist ul li {
	background: #151871;
	width: 32%;
	padding-bottom: 25px;
	margin: 0 2% 20px 0;
		vertical-align: top;
}

.inner-pagelist ul li:nth-child(3n) {
	margin-right: 0;

}

/* staff directory */

#staff-directory {
	width: 100%;
	position: relative;
	height: auto;
	padding: 0 4%;
}

#staff-directory:after {
	clear:both;
	display: block;
	content:" ";
}

.directory-wrapper {
	max-width: 900px;
	height: auto;
	width: 100%;
	padding: 0px 0 40px;
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
}

.directory-wrapper .row:after {
	clear:both;
	display: block;
	content: "";
}

.people-item figure {
	height: auto!important;
	margin-bottom: 10px;
}

.people-item {
	padding: 20px!important;
	box-shadow:none!important;
	border: 1px solid #eceef2;
	background: #f5f7fb;
	margin: 8px 1%!important;
	width: 31%!important;
	min-height: auto!important;
}

.directoryPhotoListImg {
	display: none;
}

.sd-name {
	font-size: 18px;
	color: #00adee;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.sd-email {
	transition: all ease 0.3s;
}
.sd-email:hover {
	color: #00adee;
}

.sd-position {
	color:#1477c3;
}

.people-item #viewlink {
	display: none;
}

/* end staff directory */


/* News Page List Page */

#company-news-list ul {
	list-style: none;
	display: flex;
	flex-wrap:wrap;
}

#company-news-list  ul li.ccm-block-page-list-page-entry-horizontal {
	width: 31%;
	background: #2e3192;
	display: flex;
	flex-wrap:wrap;
	margin-right: 2%;
	margin-bottom: 30px;
}

#company-news-list ul li.ccm-block-page-list-page-entry-horizontal:nth-child(3n) {
	margin-right: 0;
}

#company-news-list .ccm-block-page-list-date {
	font-size: 14px;
	margin-bottom: 10px;
	color: #9597db;
}

#company-news-list li a {
	font-size:22px;
	font-weight: 800;
	margin-bottom: 5px;
	text-transform: uppercase;
	display: block;
	color: #5fc2ff;
}

#company-news-list li a:hover {
	color: #fff;
}

#company-news-list .ccm-block-page-list-description {
	font-size: 14px;
}

#company-news-list ul li .ccm-block-page-list-page-entry-thumbnail img {
	width: 100%;
	height: auto;
}

#company-news-list .ccm-block-page-list-page-entry-text {
	color: #fff;
	padding: 20px;
}

.ccm-block-next-previous-header {
	color:#bdc8d5;
	text-transform: uppercase;
}

.ccm-block-next-previous-previous-link, .ccm-block-next-previous-next-link {
	margin: 0px 0 10px 0;
}

.ccm-block-next-previous-parent-link a {
	text-transform: uppercase;
	color: rgba(34,36,131,1)!important;
	transition: all ease 0.3s;
	font-weight: 500;
}

.ccm-block-next-previous-parent-link a:hover {
	color: #00adee!important;
}

.service-image {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
	position: relative;
}

.service-image img {
	width: 100%;
	height: auto;
}

.service-text {
	width: 100%;
	padding: 0 20px;
}

.service-text a {
	color: #00adee;
	margin-bottom: 10px;
	display: block;
	font-size: 16px;
	font-weight: 800;
	text-transform: uppercase;
}

.service-text a:hover {
	color: #fff;
}

.service-text .ccm-block-page-list-description {
	font-size: 14px;
	color: #fff;
	line-height: 20px;
}

.service-text p {
	color: #fff;
	line-height: 1.4em;
}

/* form style */

.right-col .ccm-form {
  background: #f5f7fb;
  margin-bottom: 20px;
  padding: 40px;
}

.right-col .form-group input {
  display: block;
  border:none;
  width: 100%;
  padding: 8px;
  margin: 5px 0;
  background: #fff;
}

.right-col .form-group {
  margin-bottom: 15px;
}

.right-col .form-group .control-label {
  margin-bottom: 8px;
  font-size: 14px;
	margin-right: 8px;
}

.right-col .cmm-captcha-code {
  font-size:12px;
}

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

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

.right-col .form-group textarea {
  width: 100%;
  padding:8px;
  margin: 5px 0;
  border:none;
  background:#fff;
  display: block;
}

.right-col .form-group:nth-child(6n) .control-label {
  font-size: 11px;
}

.right-col .checkbox {
  margin-top: 10px;
	font-size: 14px;
}

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

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

.right-col .form-actions .btn {
  width: auto;
  border: none;
  border-radius:8px;
  padding: 10px 19px;
  cursor:pointer;
  color: #f5f7fb;
  background:#0d4f86;
}

.right-col .form-actions .btn:hover {
  background:#3386be;
}

.right-col em {
  font-size: 11px;
  font-style: italic;
  line-height: 12px!important;
}

.right-col .ccm-captcha-image {
  margin: 20px 0;
  width: 70%;
  height: auto;
}

.right-col .ccm-dashboard-express-form fieldset {
  border: 0;
}


#company-news-container {
	position: relative;
	width: 100%;
	height: auto;
	background: #2e3192;
}

#company-news-list-container {
	position: relative;
	width: 100%;
	height: auto;
	background: #fff;
	padding: 0px 4% 40px;
}

#company-news {
	position: relative;
	width: 100%;
	margin: 0 auto;
	height: auto;
}

#company-news-list {
	position: relative;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	height: auto;
}

#company-news:before {
	content:'';
	left: 2%;
	color: #2e3192;
	top: -24px;
	position: relative;
	margin-bottom: 0;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 28px;
}


#company-news article {
	max-width: 1400px;
	height: auto;
	position: relative;
	margin: 0 auto;
}

#company-news ul {

	list-style: none;
	padding: 30px;
}

#company-news ul li {
	width: 23%;
	display: inline-block;
	position: relative;
	height: auto;
	margin: 0 1.5%;
	text-align: center;
}

#company-news ul li a {
	display: block;
	color: #5fc2ff;
	transition: all ease 0.3s;
}

#company-news ul li a:hover {
	color: #fff;
}

#company-news .news-image {
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	margin-bottom: 15px;
	border:1px solid #595daf;
}


#company-news ul li h2 {
	font-family: 'Roboto Condensed', sans-serif;
	color: #fff;
	font-size: 21px;
}

#company-news ul li h3 {
	font-family: 'Roboto Condensed', sans-serif;
	color: #00adee;
}

#company-news ul li p {
	color: #fff;
	margin: 0 0 5px 0;
	line-height: 1.3em;
}

#company-news p.ccm-block-page-list-date {
	color: #9597db;
	margin: 0 0 5px 0;
	
}

#company-news article > h2 {

}

#footer-image  {
	width: 100%;
	height: auto;
	position: relative;
	margin: 0 auto;
}

#footer-image img {
	width: 100%;
	height:auto;
	display: block;
}

/* CERTIFICATIONS CAROUSEL */
#certs{
	padding:30px 0;
	background:#fff;
	position:relative;
}

#certs h1{
	position: relative;
	text-align: left;
	display: inline-block;
	width: auto;
	transform: translate(0,-40px);
	color: #fff;
	margin: 0;
	padding: 8px 4%;
	background: rgb(38, 158, 234);
	clip-path: polygon(0 0, 100% 0, 97% 100%, 0 100%);
	font-size: 20px;

}

#certs li{
	display:inline-block;
	margin:0 1.5%;
	font-size: 0;
	width: 12%;
}

#certs li a{
	display:block;
}
#certs li a img{
	display:block;
	height:auto;
	width: 100%;
	padding: 0 4%;
}
/* FOOTER */
#footer{
	position:relative;
	background:rgba(34,36,131,1);/* Dark Blue */
	background:rgb(25, 27, 99);
	padding:50px 4%;
}
#footer-logo{
	display:block;
	width:180px;
}

#footer-nav{
	margin-top:10px;
}

#footer-nav ul{
	list-style:none;
}
#footer-nav ul li{
	display:inline-block;
	margin:0 1px
}
#footer-nav ul li a{
	display:block;
	padding:0 10px;
	color:#fff;
	text-transform:uppercase;
	height:40px;
	line-height:40px;
	font-size:14px;
	letter-spacing:0.02em;
}
#footer-nav ul li a:first-of-type{
	padding-left:0;
}
#footer-nav ul li a:hover{
	color:#59a9e6;
}

.contact {
	color: #fff;
	font-weight: 400;
	font-size: 14px;
}

#credit{
	text-transform:uppercase;
	font-size:11px;
	color:#fff;
	letter-spacing:0.02em;
}
#credit a{
	color:#59a9e6;

}
#credit a:hover{
	color:#fff;
}

/* ANIMATIONS */
.moveUpFadeIn{
	position:relative;
	opacity:0;
}

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

	.menu:before{
	  background: none;
	  display: none;
	}

	#logo {
		z-index: 2;
	}

	#main-nav.desktop {
	  background: none;
	  width: 100%;
	  position: relative;
	  left: auto;
	  height: auto;
	  right: 0;
	  z-index: 1;
	}

	#main-nav.desktop {
		right: 0;
		top: 0;
		bottom: auto;
		position: absolute;
	}

	#main-nav.desktop ul.hidden{
	  transform:translate(0,-100%);
	  opacity:0;
	}

	#main-nav.desktop > ul {
	    position:absolute;
	    top:40px;
	    left:0;
	    text-align: center;
	    width:100%;
	    transition:transform 0.3s, opacity 0.3s;
	    opacity:1;
	    transform:translate(0,0);
	    z-index:-1;
			background: rgba(34,36,131,0.9);
			padding-top:40px;
	  }

	#main-nav.desktop > ul li {
	    display:block;
	    width:100%;
	    height:auto;
	  }

	#main-nav.desktop ul li.has-children > a:after {
	  color: #f5f7fb;
	}

	#main-nav.desktop > ul li:last-of-type {
	  border-bottom:none;
	}

	#main-nav.desktop > ul li a {
	    text-align:center;
	    color: #fff!important;
	    font-weight:400;
	    font-size:12px;
			height: 50px!important;
			line-height: 50px!important;
	    padding: 0;
	    margin: 0;
	    background: none;
	    border-bottom: 1px solid #003764;
	  }

	#main-nav.desktop > ul li a:hover {
	  background:#0D5E9F;
	  color: #f5f7fb;
	   border-bottom:1px solid #3487bf;
	}

	#main-nav.desktop ul li ul {
	  position: relative;
	  width: 100%;
	  text-align: center;
	  top: 0;
	}

	#main-nav.desktop ul ul li a {
	  background: #0a1f3d;
	  border-top: 1px solid #152e53;
	  border-bottom: 1px solid #152e53;
	}

	#main-nav.desktop ul ul {
		left: 0;
		opacity: 1;
		transform: none;
		padding-top: 0;
		display: none;
		z-index: 1;
	}

	#main-nav.desktop ul ul li:first-of-type:after {
		border: 0;
	}

	#main-nav.desktop ul ul li:last-of-type::after {
		border: 0;
	}

	#main-nav.desktop ul li:hover ul {
		transform: none;
		display: block;
		padding-top: 0;
	}

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

#main-nav.desktop ul ul li a:hover {
	background:#004586;
}

	.left-col {
		float: none;
		width: 100%;
		margin-bottom: 40px;
		margin-right: 0;
	}

	.right-col {
		float: none;
		width: 100%;
	}

	#company-news ul li {
		width:48%;
		margin-bottom: 20px;
	}


.people-item {
	width: 31%!important;
}
}

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

#hp-inner-panel {
	height: auto;
}

	#company-news-list ul li.ccm-block-page-list-page-entry-horizontal {
		width: 48%;
	}

	#company-news-list ul li.ccm-block-page-list-page-entry-horizontal:nth-child(3n) {
		margin-right: 2%;
	}

	#company-news-list ul li.ccm-block-page-list-page-entry-horizontal:nth-child(2n) {
		margin-right: 0;
	}

	.inner-pagelist ul li {
		width: 49%;
	}

	.inner-pagelist ul li:nth-child(2n) {
		margin-right: 0;
	}

	.inner-pagelist ul li:nth-child(3n) {
		margin-right: 2%;
	}

	.inner-pagelist ul li:last-child {
		margin-right: 0;
	}

	#certs li {
		width: 40%;
	}

	.people-item {
		width: 48%!important;
	}

}


@media screen and (max-width:550px) {
	.inner-pagelist ul li {
		width: 100%;
		margin:  0 0 20px;;
	}

	#company-news ul li {
		width:70%;
		margin-bottom: 20px;
		margin-right: 0;
	}

	#company-news ul li:nth-child(2n) {
		margin-right: 0;
}
	
	#certs h1 {
		width: 75%;
	}


}

@media screen and (max-width:500px) {
	.people-item {
		width: 100%!important;
		margin: 20px 0;
	}
}

@media screen and (max-width:364px) { 
	
	#certs h1 {
	font-size: 18px;
	}
}


@media screen and (max-height: 768px) and (max-width:1366px) {
	#hp-inner-panel {
		max-height: 75vh;
	}
}
