/* ==========================================================================
   =Wrap
   ========================================================================== */

	#wrap {
		position: relative;
		background-color: #f7f7f7;
	}

	@media (max-width: 767px) {

		#wrap {}

	}

/* ==========================================================================
   =Header Wrap
   ========================================================================== */

	#header-wrap {}

	.header-style-2 #header-wrap {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		z-index: 30;
	}

	#header-wrap .container-fluid { padding: 0 40px; }

	@media (min-width: 768px) and (max-width: 991px) {

		.header-style-2 #header-wrap { position: relative; }

		#header-wrap .container-fluid { padding: 0 25px; }

	}

	@media (max-width: 767px) {

		.header-style-2 #header-wrap { position: relative; }

		#header-wrap .container-fluid { padding: 0 15px; }

	}


/* ==========================================================================
	=Header Top
	========================================================================== */

   #header-top {
		background-color: #f3f3f3;
   }

   @media (max-width: 767px) {

		#header-top {}

	}

/* ==========================================================================
   =Header
   ========================================================================== */

	#header {
		margin: 0 auto;
		background-color: #59738d;
	}

	@media (min-width: 992px) {

		#header .logo-wrapper { display: none; }

		.header-style-2 #header .logo-wrapper { display: block; }

		#header [class^="col"] { width: 100%; }

		.header-style-2 #header [class^="col"] { width: 75%; }

	}

	.header-style-2 #header {
		border-bottom: 1px solid rgba(255,255,255,0.25);
		background-color: transparent;
	}

	@media (max-width: 991px) {

		.header-style-2 #header { background-color: #59738d; }

	}

/* ==========================================================================
   =Header Middle
   ========================================================================== */

	#header-middle { background-color: #ffffff; }

/* ==========================================================================
   =Logo
   ========================================================================== */

   #header-widget-area-2 img {
   		/*margin-top: 30px;*/
   		/*margin-bottom: 30px;*/
   }

	#logo { padding: 10px 0 0; }

	/**
	 * 1. we need the <a> to be only the size of it's child <img> element
	 * 2. it shouldn't extend beyond the size of it's parent if it's child <img> is very large e.g 1000x1000 px
	 */

	#logo {
		min-height: 60px;
	}

	#logo a {
		display: inline-block; /* 1 */
		max-width: 100%; 	   /* 2 */
	}

	#logo img {
		display: block;
		padding: 120;

	}

	@media (max-width: 767px) {
		#header-widget-area-2 img {
/*	   		margin-top: 10px;*/
	   }


		/**
		 * 1. on mobile devices logo padding right needs to be the width of the
		 *	  mobile menu trigger + some spacing so as to not let the logo <a>
		 *    overlap the mobile menu trigger
		 */
		#logo {
			padding-right: 50px; 	/* 1 */
			padding-top: 15px;
		}
	}

	@media only screen and (max-width: 480px) {
		#logo img {
			display: none;
		}
	}









/* ==========================================================================
   =Menu
   ========================================================================== */

/* =Menu Basics
   ========================================================================== */

	.sf-menu,
	.sf-menu ul {
		padding: 0;
		margin: 0;
		list-style: none;
	}

	.sf-menu > li { float: left; }

	.sf-menu li { margin: 0; }

	.sf-menu > li > a {
		position: relative;
		display: block;
	}

	/**
 	 * 1. z-index is 1025 because the sticky menu is 1020
 	 */

	.sf-menu .sf-mega,
	.sf-menu li.dropdown ul {
		position: absolute;
		z-index: 1025;		/* 1 */
		top: 100%;
		left: 0;
		display: none;
	}

	.sf-menu li:last-child ul {
		right: 0;
		left: auto;
	}

	.sf-menu li.dropdown { position: relative; }

	.sf-menu li.dropdown ul ul {
		top: -1px;
		left: 100%;
	}

	.sf-menu li:last-child ul ul {
		left: auto;
		right: 100%;
	}

	.sf-menu li:hover > .sf-mega,
	.sf-menu li.sfHover > .sf-mega,
	.sf-menu li.dropdown:hover > ul,
	.sf-menu li.dropdown.sfHover > ul { display: block; }

/* =Menu Skin
   ========================================================================== */

	.sf-menu { float: left; }

	.sf-menu a {
		box-sizing: border-box;
		display: block;
		padding: 15px 0;
		color: #3e3d3d;
		text-decoration: none;
		font-weight: 400;
		-webkit-transition: all .2s linear;
				transition: all .2s linear;
	}

	.sf-menu li.dropdown a { padding: 15px; }

	.sf-menu li:last-child > a { border-bottom: none; }

	.sf-menu > li > a,
	.sf-menu > li.dropdown > a {
		padding: 30px;
		border: none;
		font-weight: 500;
		font-size: 14px;
		text-transform: uppercase;
		color: #ffffff;
	}

	.navigation-style-2 .sf-menu > li > a,
	.navigation-style-2 .sf-menu > li.dropdown > a { padding: 30px 15px; }

	.sf-menu > li a i { margin-right: 5px; }

	.sf-menu > li.current > a,
	.sf-menu li.sfHover > a,
	.sf-menu li.sfHover a:hover,
	.sf-menu a:hover {
		background-color: #596979;
		text-decoration: none;
		color: #ffffff;
	}

	@media (min-width: 1200px) {

		.navigation-style-2 .sf-menu > li > a,
		.navigation-style-2 .sf-menu > li.dropdown > a { padding: 30px; }

	}

/* =DropDown
   ========================================================================== */

	/**
 	 * 1. allow long menu items to determine submenu width
 	 */

	.sf-menu li.dropdown ul {
		min-width: 190px; 	/* 1 */
		background-color: #fdfeff;
		box-shadow: 0 5px 40px 0 rgba(0, 0, 0, 0.2);
	}

	.sf-menu li.dropdown ul a {
		position: relative;
		padding: 15px 30px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	}

	.navigation-style-2 .sf-menu li.dropdown ul a:before {
		position: absolute;
		left: 0;
		top: 50%;
		height: 2px;
		width: 0;
		content: "";
		background-color: #ffffff;
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
		-webkit-transition: all .3s linear;
				transition: all .3s linear;
	}

	.navigation-style-2 .sf-menu li.dropdown ul a:hover:before { width: 15px; }

/* =Mega Menu Section
   ========================================================================== */

	.sf-mega {
		width: 100%;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
		margin-top: -2px;
		background-color: #fdfeff;
		box-shadow: 0 5px 40px 0 rgba(0, 0, 0, 0.2);
	}

	.sf-mega-section {
		float: left;
		border-right: 1px solid #b0b0b0;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
				box-sizing: border-box;
	}


	.sf-mega-section:last-child { border-right: none; }

	.sf-mega-section a {
		position: relative;
		padding: 15px 30px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	}

	.navigation-style-2 .sf-mega-section a:before {
		position: absolute;
		left: 0;
		top: 50%;
		height: 2px;
		width: 0;
		content: "";
		background-color: #ffffff;
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
		-webkit-transition: all .3s linear;
				transition: all .3s linear;
	}

	.navigation-style-2 .sf-mega-section a:hover:before { width: 15px; }

	/**
 	 * 1. set mega menu section size, as a percentage of the mega menu width
 	 */

	.sf-mega.sf-mega-1-col .sf-mega-section{ width: 100%; } /* 1 */

	.sf-mega.sf-mega-2-col .sf-mega-section{ width: 50%; }

	.sf-mega.sf-mega-3-col .sf-mega-section{ width: 33.3333333333%; }

	.sf-mega.sf-mega-4-col .sf-mega-section{ width: 25%; }

	.sf-mega.sf-mega-5-col .sf-mega-section{ width: 20%; }

	.sf-mega-section-title {}

/* =Menu Arrows
   ========================================================================== */

	.sf-arrows .sf-with-ul:after {
		position: absolute;
		top: 50%;
		right: 0;
		width: 0;
		height: 0;
		border: 4px solid transparent;
		border-top-color: #e0e0e0;
		margin-top: 0;
		content: "";
		display: none;
	}

	.sf-arrows > li > .sf-with-ul:focus:after,
	.sf-arrows > li:hover > .sf-with-ul:after,
	.sf-arrows > .sfHover > .sf-with-ul:after { border-top-color: rgba(0, 0, 0, 0.7); }

	.sf-arrows ul .sf-with-ul:after {
		border-color: transparent;
		border-left-color: #e0e0e0;
		margin-top: -5px;
		margin-right: 15px;
		display: inline;
	}

	@media (min-width: 768px) and (max-width: 991px) {

		#menu { display: none; }

	}

	@media (max-width: 767px) {

		#menu { display: none; }

	}

/* ==========================================================================
   =Mobile Menu
   ========================================================================== */

	#mobile-menu {
		border-bottom: 1px solid #e0e0e0;
		margin-bottom: 0;
	}

	#mobile-menu li {
		display: block;
		margin: 0;
	}

	#mobile-menu > li > ul,
	#mobile-menu > li > ul > li > ul {
		display: none;
		margin-left: 0;
		background-color: #fdfeff;
	}

	#mobile-menu .sf-mega {
		display: none;
		padding: 0;
		border: none;
		margin: 0;
		box-shadow: none;
	}

	#mobile-menu .sf-mega-section {
		float: none;
		width: 100%;
		padding: 0;
		border: none;
	}

	#mobile-menu .sf-mega-section ul {
		margin-left: 0;
		margin-bottom: 0;
	}

	#mobile-menu li a {
		position: relative;
		display: block;
		padding: 15px 25px;
		border-top: 1px solid #e0e0e0;
		color: #111;
		font-size: 13px;
		text-align: left;
		text-decoration: none;
	}

	#mobile-menu ul a { padding-left: 45px; }

	#mobile-menu ul li ul a  { padding-left: 65px; }

	#mobile-menu .mobile-menu-submenu-arrow {
		position: absolute;
		top: 0;
		right: 0;
		width: 70px;
		height: 100%;
		border-left: 1px solid #e0e0e0;
		color: #111;
		font-size: 20px;
		line-height: 50px;
		text-align: center;
		cursor: pointer;
	}

	#mobile-menu .mobile-menu-submenu-arrow:hover { background-color: #f3f3f3; }

	#mobile-menu li a:hover {}

	#mobile-menu { display: none; }

/* ==========================================================================
   =Mobile menu trigger
   ========================================================================== */

	#mobile-menu-trigger {
		float: right;
		display: none;
		font-size: 32px;
		color: #ffffff;
	}

	@media (min-width: 768px) and (max-width: 991px) {

		#mobile-menu-trigger {
			display: block;
			margin-top: 21px;
			margin-right: 0;
		}

	}

	@media (max-width: 767px) {

		#mobile-menu-trigger {
			position: absolute;
			top: 15px;
			right: 10px;
			display: block;
			padding: 10px;
			margin-top: 0;
		}

	}

	@media only screen and (min-width: 480px) and (max-width: 767px) {

		#mobile-menu-trigger {}

	}

	@media (max-width: 480px) {
		#mobile-menu-trigger {
			margin-top: -10px;
		}
	}



/* ==========================================================================
   =Sticky Header
   ========================================================================== */

	@media (min-width: 1025px) {

		/**
		 * 1. The height of the #header-wrap should be increased or decreased to accommodate the logo
		 */

		#header-wrap {
			position: relative;
			height: 84px; /* 1 */
		}

		#header {
			position: absolute;
			top: 0;
			right: 0;
			left: 0;
			margin: 0 auto;
		}

		/**
		 * 1. The z-index has to be 1020 so it is bigger than the back to top buttons z-index that is 1010
		 */

		#header.stuck {
			position: fixed;
			z-index: 1020; /* 1 */
			top: 0;
			width: 100%;
			margin: 0 auto;
			box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
			background-color: #fdfeff;
			-webkit-transition: padding 0.3s;
					transition: padding 0.3s;
		}

		#header.stuck .logo-wrapper { display: block; }

		#header.stuck [class^="col"] { width: 75%; }

		#header.stuck #logo { padding: 12px 0 0 0; }

		#header.stuck .sf-menu { float: right; }

		.navigation-style-2 #header.stuck .sf-menu { float: left; }

		.header-style-2 #header.stuck { border-bottom: none; }

 		#header.stuck .sf-menu > li > a,
		#header.stuck .sf-menu > li.dropdown > a {
			padding: 25px;
			color: #3e3d3d;
		}

		#header.stuck .sf-menu > li.current > a,
		#header.stuck .sf-menu > li > a:hover,
		#header.stuck .sf-menu > li.dropdown > a:hover,
		#header.stuck .sf-menu li.sfHover > a { color: #ffffff; }

		#header.stuck .site-header-cart .cart-contents:after { color: #3e3d3d; }

		#header.stuck .site-header-cart a.cart-contents .count {
			background-color: #3e3d3d;
			color: #ffffff;
		}

		#header.stuck #custom-search-button i { color: #000; }

		#header.stuck .sf-mega { margin-top: 0; }

		#header.stuck .sf-arrows .sf-with-ul:after { margin-top: -6px; }

		#header.stuck #custom-search-button { top: 26px; }

	}




/* ==========================================================================
   =Footer Top
   ========================================================================== */

	#footer-top {
		color: #ffffff;
		background-color: #59738d;
	}

	#footer-top a { color: #ffffff; }

	#footer-top .btn { border-color: #ffffff; }

	#footer-top-widget-area-1 {}
	#footer-top-widget-area-2 {}
	#footer-top-widget-area-3 {}
	#footer-top-widget-area-4 {}

/* ==========================================================================
   =Footer
   ========================================================================== */

	#footer {
		color: #ffffff;
		background-color: #000;
		background-image: url('../files/parallax/building.jpg');
		background-repeat: no-repeat !important;
		-webkit-background-size: cover;
				background-size: cover;	/* 1 */
	}

	#footer a { color: #ffffff; }

	#footer a:hover { color: #59738d; }

	#footer-widget-area-1 {}
	#footer-widget-area-2 {}
	#footer-widget-area-3 {}
	#footer-widget-area-4 {}

	.parallax.parallax-enabled {
		background-attachment: fixed !important;
		-webkit-background-size: cover;
				background-size: cover;	/* 1 */
		background-repeat: no-repeat !important;
	}

	.horizontal-parallax { background-repeat: repeat-x; }

	.animated-parallax { background-repeat: repeat-x; }

	i.right-section {
		text-align: right;
	}
	h5.right-section {
		text-align: right;
	}


	@media only screen and (max-width: 767px) {
		i.right-section {
			text-align: left;
		}
		h5.right-section {
			text-align: left;
		}
	}

/* ==========================================================================
   =Footer Bottom
   ========================================================================== */

	#footer-bottom {
		color: #ffffff;
		background-color: #3d3b3a;
	}

	#footer-bottom a { color: #ffffff; }

	#footer-bottom a:hover { color: #cc9966; }

	#footer-bottom-widget-area-1 {}
	#footer-bottom-widget-area-2 {}
	#footer-bottom-widget-area-3 {}
	#footer-bottom-widget-area-4 {}

/* ==========================================================================
   =Back to top
   ========================================================================== */

	#back-to-top {
		position: fixed;
		z-index: 1010;
		right: -40px;
		bottom: 20px;
		width: 40px;
		height: 40px;
		background-color: #111;
		color: #fafafa;
		font-size: 30px;
		line-height: 40px;
		text-align: center;
		opacity: 0.5;
		cursor: pointer;
		-webkit-transition: all 0.4s ease 0s;
				transition: all 0.4s ease 0s;
	}

	#back-to-top i {
		font-size: 14px;
		line-height: 40px;
		font-weight: normal;
		vertical-align: top;
		-webkit-transition: all 0.4s ease 0s;
				transition: all 0.4s ease 0s;
	}

	#back-to-top:hover { background-color: rgba(0, 0, 0, 0.7); }
	#back-to-top:hover i { color: #fff; }
	#back-to-top.visible { right: 40px; }
	#back-to-top.gone { right: -40px; }






/* ==========================================================================
   =Attorney
   ========================================================================== */
	.attorney-image img {
		max-height: 300px;
		width: auto !important;
    	border-radius: 10px;
    	border: 0;
	}


	div.attorney-image-container {
		float: right;
		margin-left: 40px;
	}

	.attorney-image-container-default {
		text-align: center;
		margin: auto;
		margin: 0 auto;
	}

	div.attorney-image-container img {
		max-height: 300px;
		width: auto !important;
    	border-radius: 10px;
	}


	ul.attorney-list {
		list-style: none;
	}

	ul.attorney-list li.attorney-active {
		background-color: #eaeaea;
	}

	ul.attorney-list li.attorney {
		padding-left: 20px;
		padding-right: 20px;
		padding-top: 5px;
		padding-bottom: 5px;
		white-space: nowrap;
	}

	.btn-attorney {
		color: #59738d;
		border-color: #59738d;
	}

	.btn-attorney:hover, .btn-attorney:focus, .btn-attorney:active, .btn-attorney.active, .open > .dropdown-toggle.btn-attorney {
	    color: #fff;
		background-color: #59738d;
		box-shadow: none;
	}

	#attorney-section {
		margin-bottom: 50px;
		margin-top: 30px;
	}

	.attorney-list {
		padding-left: 20px;
	}

	.bg-grey {
		/*background-color: #eaeaea;*/
		background-color: #eaeaea;
		padding-top: 20px;
	}

	.bg-white {
		padding-top: 20px;
		background-color: #fff;
	}

	@media only screen and (max-width: 767px) {
		.attorney-image img {
			margin: auto;
			margin-bottom: 20px;
		}
		#attorney-section {
			margin-top: 40px;
		}
	}


/* ==========================================================================
   =Practice Areas Home
   ========================================================================== */
	.practice-overlay {
		max-width:54em;
		background-color: #eaeaea;
		padding: 25px;
	}

	.practice-overlay h1 {
		color: #59738d;
	}

	#practice-areas-section {
		margin-top: 100px;
		margin-bottom: 100px;
	}

	.practice-area-box {
		border: 1px solid #eaeaea;
		padding: 20px;
		min-height: 400px;
	}

	.practice-area-box a.readmore {
		color: #59738d;
	}

	.practice-area-box i {
		font-size: 40px;
		color: #59738d;
	}

	.practice-area-box .area-content h2 {
		position: relative;
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.practice-area-box .area-content h2:before {
		position: absolute;
		bottom: 0;
		left: 0;
		content: "";
		width: 45px;
		height: 2px;
		background-color: #59738d;
		float: left;
	}

	.practice-area-box .area-content h2 a,
	.practice-area-box .area-content h2 a:hover {
		color: #59738d;
	}

	@-webkit-keyframes hvr-wobble-vertical {
		16.65% {
			-webkit-transform: translateY(8px);
					transform: translateY(8px);
		}

		33.3% {
		-webkit-transform: translateY(-6px);
				transform: translateY(-6px);
		}

		49.95% {
		-webkit-transform: translateY(4px);
				transform: translateY(4px);
		}

		66.6% {
		-webkit-transform: translateY(-2px);
				transform: translateY(-2px);
		}

		83.25% {
		-webkit-transform: translateY(1px);
				transform: translateY(1px);
		}

		100% {
		-webkit-transform: translateY(0);
				transform: translateY(0);
		}
	}

	.practice-area-box:hover i {
		-webkit-animation-name: hvr-wobble-vertical;
				animation-name: hvr-wobble-vertical;
		-webkit-animation-duration: 1s;
				animation-duration: 1s;
		-webkit-animation-timing-function: ease-in-out;
				animation-timing-function: ease-in-out;
		-webkit-animation-iteration-count: 1;
				animation-iteration-count: 1;
	}


	@media only screen and (max-width: 767px) {
		.practice-area-box {
			min-height: 200px;
		}
	}

	@media only screen and (max-width: 480px) {
		#practice-areas-section {
			margin-top: 50px;
			margin-bottom: 50px;
		}
	}
/* ==========================================================================
   =Google Map
   ========================================================================== */
	.google-map {
	    min-height: 450px;
	    border-radius: 20px;
	    margin-bottom: 20px;
	}

	#map-canvas {
	    height: 100%;
	    min-height: 450px;
	    border-radius: 20px;
	}
	.map-top {
		color: #ffffff;
		background-color: #59738d;
		height: 2px;
	}






/* ==========================================================================
   =Contact
   ========================================================================== */
.contact h2 {
	text-align: center;
	font-size: 54px;
}

.contact h2 i {
	color: #333;
}

.form-item {
	padding-bottom: 20px;
}

.form-item textarea {
	width: 100%;
	min-height: 200px;
}

.hanji {
	display :none;
}

@media only screen and (max-width: 480px) {
	.g-recaptcha {
		transform:scale(0.77);
		-webkit-transform:scale(0.77);
		transform-origin:0 0;
		-webkit-transform-origin:0 0;
	}
}



/* ==========================================================================
   =Misc Home
   ========================================================================== */
	.intro {
		padding-top: 100px;
		padding-bottom: 100px;
		padding-left: 20px;
		padding-right: 20px;
		font-size: 22px;
		line-height: 52px;
		color: #999;
	}

	.intro p:first-child {
		font-style: italic;;
	}

	.intro p.points {
		text-align: center;
		font-weight: bold;
	}

	@media only screen and (max-width: 480px) {
		.intro {
			font-size: 16px;
			line-height: 30px;
			padding-top: 50px;
			padding-bottom: 52px;
		}
	}


	.logo-strip {
		padding-top: 50px;
		padding-bottom: 50px;
		text-align: center;
	}




.page-header {
	margin-top: 50px;
}



.cms img[style*="float: left"] {
	padding-bottom: 20px;
	padding-right: 20px;
}

.cms img[style*="float: right"] {
	padding-bottom: 20px;
	padding-left: 20px;
}



div#logo-container {
				padding: 0;
				margin: 0;
			}

			div#logo-container img {
				padding: 0;
				margin: 0;
			}



