@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700');

*, *:after, *:before {
  	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
  	box-sizing: border-box;
}

/*----- Reset & Common -----*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, strike, strong, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

article,aside,canvas,figure,figure img,figcaption,hgroup,footer,header,nav,section,audio,video {
	display:block;
}

html {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	tap-highlight-color: rgba(0,0,0,0);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: none;
	height: 100%;
}

ol, ul {
	list-style: none;
}

:focus {
	outline:0;
	outline: none!important;
}

:link:focus, :visited:focus {
	outline:0;
	outline: none!important;
}

.clear {
	clear:both;
	display:block;
	overflow:hidden;
	visibility:hidden;
	width:0;
	height:0;
}

input[type="submit"]::-moz-focus-inner, input[type="button"]::-moz-focus-inner {
 	border : 0;
}

input[type="submit"]:focus, input[type="button"]:focus {
	outline : none;
}

::selection {
	background: #0A75CC;
	color: #FFF;
}

::-moz-selection {
	background: #0A75CC;
	color: #FFF;
}

.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

img {
    max-width: 100%;
	border: none;
	outline: 0;
	-ms-interpolation-mode: bicubic;
	display: block; 
}

strong {
	font-weight: 700;
}

/*----- Typography -----*/

body {
	background: #FFF;
	font: 400 14px/24px 'Open Sans', sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	-webkit-transition: opacity 1s ease;
	letter-spacing: 0.4px;
	color: #666;
}

h2.heading {
	margin-bottom: 15px;
	font-size: 22px;
	font-weight: 300;
}

.heading {
	position: relative;
	padding-bottom: 12px;
}

.heading span {
	position: absolute;
	width: 30px;
	height: 3px;
	bottom: -2px;
	left: 0;
	background-color: #0A75CC;
}

.tagline {
	display: block;
	position: relative;
	font-size: 14px;
	font-weight: 400;
	top: -4px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

h3 {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #0A75CC;
	padding-top: 10px;
}

h4 {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding-top: 10px;
}

h3 span {
	font-size: 13px;
	color: #666;
	text-transform: none;
}

p {
	margin-bottom: 20px;
	text-align: justify;
}

.center {
	text-align: center;
}

.firstcharacter {
	float: left;
	font-size: 55px;
	line-height: 40px;
	padding: 4px 4px 0 0;
}

.highlight {
	background: #0A75CC;
	color: #FFF;
}

.pad {
	padding-bottom: 30px;
}

/*----- Links / Buttons -----*/

a, a:visited {
	color: #0A75CC;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	text-decoration: none;
}

a:hover {
	color: #38475A;
	text-decoration: underline;
}

/*----- Hero ----*/

#hero {
	background: url(../images/hero.jpg) no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position: relative;
	z-index: 1;
	width: 100%;
	overflow: hidden;
	height: 650px;
}

#hero .block {
	display: block;
	position: absolute;
	text-align: center;
	left: 50%;
	top: 55%;
	bottom: auto;
	right: auto;
	-webkit-transform: translateX(-50%) translateY(-55%);
	-moz-transform: translateX(-50%) translateY(-55%);
	-ms-transform: translateX(-50%) translateY(-55%);
	-o-transform: translateX(-50%) translateY(-55%);
	transform: translateX(-50%) translateY(-55%);
	margin: 0 auto;
}

#hero .block h1 {
	color: #FFF;
	white-space: nowrap;
	font-size: 28px;
	font-weight: 300;
	text-transform: none;
	line-height: 50px;
}

/*----- Title -----*/

#title-standard {
	margin-top: 70px;
	height: 340px;
	width: 100%;
	background: url(../images/title.jpg) no-repeat right center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

#title-standard h1 {
	color: #FFF;
	padding-top: 130px;
	font-size: 24px;
	line-height: 50px;
	font-weight: 300;
}

#title-standard h1 a {
	color: #FFF;
	text-decoration: none;
}

#title-standard h1 a:hover {
	color: #0A75CC;
}

/*----- Layout -----*/

section {
	max-width: 1280px;
	margin: 0 auto;
	padding: 50px 40px;
	position: relative;
}

section:before, section:after {
	content: "";
	display: table;
}

section.acc-section {
	padding: 0 40px 150px;
}

section:after {
	clear: both;
}

.container-gray {
	background: #F7F7F7;
}

.inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}

.col {
	float: left;
	width: 32%;
	margin: 0 2% 2% 0;
}

.col:last-child {
	margin-right: 0;
}

figure {
	font-family: 'Open Sans', sans-serif;
	background: #FFF;
	border: 1px solid #EEE;
	margin: 0 0.5% 1%;
	padding: 20px;
	float: left;
	width: 24%;
}

figure:last-child {
	margin-right: 0;
}

figure ul {
	margin: 0;
	padding: 0;	
}

figure li:before {
	font-family: 'hcg';
	content: "\e901";
	font-size: 18px;
	line-height: 32px;
	color: #1371B9;
	padding-right: 5px;
	position: relative;
	top: 3px;
}

figure li {
	position: relative;
	top: 0;
}

/*----- Home / Service page buttons -----*/

.button {
	color: #666;
	float: left;
	font-size: 14px;
	display: block;
	padding: 12px 15px;
	background: #FFF;
	vertical-align: middle;
	position: relative;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	overflow: hidden;
	text-decoration: none;
	border: 1px solid #EEE;
	width: 100%;
}

.button:hover {
	text-decoration: none;
}

.button > span {
	vertical-align: middle;
	font-weight: 700;
}

.button::before {
	content: '';
	z-index: -1;
	position: absolute;
	top: 50%;
	left: 100%;
	margin: -15px 0 0 1px;
	width: 30px;
	height: 30px;
	background: #EEE;
	-webkit-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
	-webkit-transform: scale3d(1, 2, 1);
	transform: scale3d(1, 2, 1);
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.9,1);
	transition-timing-function: cubic-bezier(0.7,0,0.9,1);
}

.button .button-icon {
	vertical-align: middle;
	color: #0073CF;
	font-size: 24px;
}

.button > span {
	vertical-align: middle;
	padding-left: 12px;
}

.button:hover::before {
	-webkit-transform: scale3d(23, 23, 1);
	transform: scale3d(23, 23, 1);
}

.sub-list {
	background: #FFF;
	margin: 2% 4% 0 0;
	padding: 20px;
	float: left;
	width: 48%;
	border: 1px solid #EEE;
	font-family: 'Open Sans', sans-serif;
}

.sub-list:last-child {
	margin-right: 0;
}

.sub-list ul {
	margin: 0;
	padding: 0;	
}

.sub-list li:before {
	font-family: 'hcg';
	content: "\e901";
	font-size: 18px;
	line-height: 32px;
	color: #0A75CC;
	padding-right: 5px;
	position: relative;
	top: 3px;
}

.sub-list li {
	position: relative;
	top: 0;
}

/*----- Map -----*/

.mapoverlay {
    background: transparent; 
    position: relative; 
    width: 100%;
    height: 500px; 
    top: 500px; 
    margin-top: -500px;
}

#mapIframe {
	width: 100%;
	height: 500px;
	margin: 0;
	-webkit-filter: grayscale(100%); 
    filter: grayscale(100%);
}

/*----- Footer -----*/

footer {
	color: #DDD;
	font-size: 13px;
	background: #38475A;
	padding: 40px 0;
	overflow: hidden;
}

footer p {
	margin-bottom: 0;
}

footer a {
	color: #DDD;
}

footer a:hover {
	color: #DDD;
	text-decoration: underline;
}

footer .left {
	float: left;
}

footer .right {
	float: right;
}

/*----- Header / Logo -----*/

header {
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 990;
	background: rgba(255,255,255,1);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	-moz-transition: background 0.5s ease-in-out;
	-o-transition: background 0.5s ease-in-out;
	-webkit-transition: background 0.5s ease-in-out;
	-ms-transition: background 0.5s ease-in-out;
	transition: background 0.5s ease-in-out;
	margin: 0;
	height: 70px;
	padding: 0;
}

header .logo {
	display: inline-block;
	vertical-align: middle;
	padding: 0;
	position: relative;
	z-index: 992;
	margin: 10px 26px 0;
}

header .logo a img {
  	display: block;
	height: 50px;
	width: 374px;
}

/*----- Main Menu -----*/

.nav-menus-wrapper {
	overflow-x: hidden;
}

.navigation {
  	width: 100%;
 	height: 70px;
  	display: table;
  	position: relative;
}

.navigation * {
  	box-sizing: border-box;
  	-webkit-tap-highlight-color: transparent;
}

.navigation-portrait {
  	height: 48px;
}

.navigation-hidden {
  	width: 0!important;
  	height: 0!important;
  	margin: 0!important;
  	padding: 0!important;
  	position: absolute;
  	top: -9999px;
}

.align-to-right {
  	float: right;
}

.nav-header {
  	float: left;
}

.navigation-hidden .nav-header {
  	display: none;
}

a.nav-brand img {
	height: 40px;
	width: 215px;
	margin-top: 15px;
}

.nav-toggle {
  	width: 30px;
  	height: 30px;
  	padding: 6px 2px 0;
  	position: absolute;
  	top: 50%;
  	margin-top: -8px;
  	right: 0;
  	display: none;
  	cursor: pointer;
}

.nav-toggle:before {
  	content: "";
  	position: absolute;
  	width: 24px;
  	height: 2px;
  	background-color: #666;
  	border-radius: 10px;
  	box-shadow: 0 0.5em 0 0 #666777, 0 1em 0 0 #666777;
}

.navigation-portrait .nav-toggle {
  	display: block;
}

.navigation-portrait .nav-menus-wrapper {
  	width: 320px;
 	height: 100%;
  	top: 0;
  	left: -320px;
  	position: fixed;
  	background-color: #FFF;
  	z-index: 20000;
  	overflow-y: auto;
  	-webkit-overflow-scrolling: touch;
  	-webkit-transition-duration: .8s;
  	transition-duration: .8s;
  	-webkit-transition-timing-function: ease;
  	transition-timing-function: ease;
}

.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-right {
  	left: auto;
  	right: -400px;
}

.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-open {
  	left: 0;
}

.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-right.nav-menus-wrapper-open {
  	left: auto;
  	right: 0;
}

.nav-menus-wrapper-close-button {
  	width: 30px;
  	height: 40px;
  	margin: 10px 7px;
  	display: none;
  	float: right;
  	color: #666;
  	font-size: 26px;
  	cursor: pointer;
}

.navigation-portrait .nav-menus-wrapper-close-button {
  	display: block;
}

.nav-menu {
  	margin: 0;
  	padding: 0;
  	list-style: none;
  	line-height: normal;
  	font-size: 0;
}

.navigation-portrait .nav-menu {
  	width: 100%;
}

.nav-menu > li {
  	display: inline-block;
  	float: left;
  	text-align: left;
}

.navigation-portrait .nav-menu > li {
  	width: 100%;
  	position: relative;
  	border-top: solid 1px #f0f0f0;
}

.navigation-portrait .nav-menu > li:last-child {
  	border-bottom: solid 1px #f0f0f0;
}

.nav-menu + .nav-menu > li:first-child {
  	border-top: none;
}

.nav-menu > li > a {
  	height: 70px;
  	padding: 26px 20px;
  	display: inline-block;
  	position: relative;
  	text-decoration: none;
  	font-size: 14px;
  	color: #666;
  	-webkit-transition: color 0.3s, background 0.3s;
  	transition: color 0.3s, background 0.3s;
}

.nav-menu > li.sub {
	margin-left: 10px;
}

.navigation-portrait .nav-menu > li > a {
  	width: 100%;
  	height: auto;
  	padding: 12px 15px 12px 26px;
}

.nav-menu > li:hover > a,
.nav-menu > li.active > a,
.nav-menu > li.focus > a {
	color: #1B75BB;
}

.submenu-indicator {
 	 margin-left: 6px;
  	margin-top: 6px;
  	float: right;
  	-webkit-transition: all 0.3s;
  	transition: all 0.3s;
}

.navigation-portrait .submenu-indicator {
  	width: 54px;
  	height: 44px;
  	margin-top: 0;
  	position: absolute;
  	top: 0;
  	right: 0;
  	text-align: center;
  	z-index: 20000;
}

.submenu-indicator-chevron {
  	height: 6px;
  	width: 6px;
  	display: block;
  	border-style: solid;
  	border-width: 0 1px 1px 0;
  	border-color: transparent #666777 #666777 transparent;
  	-webkit-transform: rotate(45deg);
  	-ms-transform: rotate(45deg);
  	transform: rotate(45deg);
  	-webkit-transition: border 0.3s;
  	transition: border 0.3s;
}

.navigation-portrait .submenu-indicator-chevron {
  	position: absolute;
  	top: 18px;
  	left: 24px;
}

.nav-menu > li:hover > a .submenu-indicator-chevron,
.nav-menu > .active > a .submenu-indicator-chevron,
.nav-menu > .focus > a .submenu-indicator-chevron {
  	border-color: transparent #989898 #989898 transparent;
}

.navigation-portrait .submenu-indicator.submenu-indicator-up {
  	-webkit-transform: rotate(-180deg);
  	-ms-transform: rotate(-180deg);
  	transform: rotate(-180deg);
}

.nav-overlay-panel {
  	width: 100%;
  	height: 100%;
  	top: 0;
  	left: 0;
  	position: fixed;
  	display: none;
  	z-index: 19999;
}

.no-scroll {
  	touch-action: none;
  	overflow-x: hidden;
}

.megamenu-panel {
  	width: 70%;
  	padding: 15px;
  	display: none;
  	position: absolute;
  	font-size: 14px;
  	z-index: 98;
  	text-align: left;
  	color: inherit;
  	border-top: solid 1px #f0f0f0;
  	background-color: #fdfdfd;
}

.navigation-portrait .megamenu-panel {
  	padding: 25px;
  	position: static;
  	display: block;
}

.megamenu-panel [class*="container"] {
  	width: 100%;
}

.megamenu-panel [class*="container"] [class*="col-"] {
  	padding: 0;
}

.megamenu-panel-half {
  	width: 50%;
}

.megamenu-panel-quarter {
  	width: 25%;
}

.navigation-portrait .megamenu-panel-half,
.navigation-portrait .megamenu-panel-quarter {
  	width: 100%;
}

.megamenu-lists {
  	width: 100%;
  	display: table;
}

.megamenu-list {
  	width: 100%;
  	margin: 0;
  	padding: 0;
  	display: inline-block;
  	float: left;
  	list-style: none;
}

.megamenu-list:last-child {
  	margin: 0;
  	border: none;
}

.navigation-landscape .megamenu-list {
  	margin: -15px 0;
  	padding: 20px 0;
  	border-right: solid 1px #f0f0f0;
}

.navigation-landscape .megamenu-list:last-child {
  	border: none;
}

.megamenu-list > li > a {
  	width: 100%;
  	padding: 10px 15px;
  	display: inline-block;
  	color: #666;
  	text-decoration: none;
  	font-size: 13px;
  	-webkit-transition: all 0.3s;
  	transition: all 0.3s;
}

.megamenu-list > li > a:hover, .megamenu-list > li.active > a {
  	color: #FFF;
  	background-color: #1B75BB;
}

.navigation-landscape .list-col-2 {
  	width: 50%;
}

.navigation-landscape .list-col-3 {
  	width: 33%;
}

.navigation-landscape .list-col-4 {
  	width: 25%;
}

/*----- Custom Font Face -----*/

@font-face {
	font-family: 'hcg';
	src:url('fonts/hcg.eot?h9omw0');
	src:url('fonts/hcg.eot?h9omw0#iefix') format('embedded-opentype'),
url('fonts/hcg.ttf?h9omw0') format('truetype'),
url('fonts/hcg.woff?h9omw0') format('woff'),
url('fonts/hcg.svg?h9omw0#hcg') format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
	font-family: 'hcg';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon { font-family: 'hcg'; font-size: inherit; font-weight: normal; font-style: normal; line-height: inherit; position: relative; display: inline-block; transform: translate(0, 0); vertical-align: middle; text-rendering: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;}

.icon::before { display: inline-block; width: 100%; }

.icon-bankruptcy:before {
	content: "\e900";
}
.icon-bullet:before {
	content: "\e901";
}
.icon-business:before {
	content: "\e902";
}
.icon-forensic:before {
	content: "\e903";
}
.icon-interim:before {
	content: "\e904";
}
.icon-lender:before {
	content: "\e905";
}
.icon-litigation:before {
	content: "\e906";
}
.icon-receiver:before {
	content: "\e907";
}
.icon-restructuring:before {
	content: "\e908";
}
.icon-scroll-down:before {
	content: "\e909";
}
.icon-scroll-up:before {
	content: "\e90a";
}
.icon-transaction:before {
	content: "\e90b";
}
