/* ----------------------------------
#. Global
---------------------------------- */

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

* {
	-webkit-font-smoothing: antialiased;
}

img {
	border: none;
}

/* ----------------------------------
#. Body
---------------------------------- */

html, body {
	margin: 0;
	padding: 0;
}

body {
	color: #333;
	background: #f0f0f0;
	font: 13px 'Open Sans', Arial, sans-serif;
	border-top: solid 4px #2c597b;
}

/* ----------------------------------
#. General
---------------------------------- */
.box2 {
padding: 15px;
box-shadow: 0 1px 3px #999;
background: #fff;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
margin-top: 1px;
width: 300px;
float: right;
}

.number {
padding: 15px;
box-shadow: 0 1px 3px #999;
background: #fff;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
margin-top: -10px;
}

.clear {
	clear: both;
}

hr {
	height: 50px;
	width: 100%;
	border: none;
	margin: 0;
	
	background: url('../img/hr.png') top center no-repeat;
}


	.list{
list-style:none;
padding:0;
margin:0;
}

.list li{
padding:0;
margin:0;
padding-left:30px;
margin-bottom:10px;
background: url('../img/1379518770_tick-red.png') top left no-repeat;
}
/* ----------------------------------
#. Typography
---------------------------------- */

h1, h2, h3, h4, h5, h6 {
	color: #333;
	font-weight: 600;
}

a {
	color: #31618D;

	font-weight: 600;
	
	text-decoration: none;
	-webkit-transition: color 0.5s ease;
}

.dark{
	color: #43646b;
	font-weight: 600;
	
	text-decoration: none;
	-webkit-transition: color 0.5s ease;
}


/* ----------------------------------
#. Container
---------------------------------- */

.container {
	width: 960px;
	margin: 0 auto;
	padding: 0 20px;
	
	position: relative;
}

/* ----------------------------------
#. Button
---------------------------------- */
.btn{
	
	padding: 5px 15px;
	box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3);
	background:#355F80;
	border: 1px solid #204A8A;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;

	color: #fff;
	font-size: 13px;
	font-family: 'Open Sans';
	text-shadow: 0 1px 1px #204A8A;
}

/* ----------------------------------
#. Form
---------------------------------- */

form {
	
}

	form label {
		display: block;
		margin: 10px 0;
	}
	
	form input[type='text'],
	form textarea {
		outline: none;
		padding: 10px;
		border: 1px solid #aaa;
	}
	
		form input[type='text']:focus,
		form textarea:focus {
			border-color: #eb463c;
		}
	
	form input[type='text'] {
		width: 230px;
	}
	
	form textarea {
		width: 230px;
		height: 100px;
		min-height: 100px;
		resize: vertical;
	}
	
	form input[type='submit'] {
		margin-top: 10px;
		display: block;
		padding: 10px 15px;
		
		color: #fff;
		font-size: 13px;
		font-family: 'Open Sans';
		text-shadow: 0 1px 1px #173B69;
		box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3);
		background-color: #4C7AAB;
		border: 1px solid #325070;
		border-radius: 3px;
		-moz-border-radius: 3px;
	}
	
		form input[type='submit']:hover {
			cursor: pointer;
		}

/* ----------------------------------
#. Contact Modal
---------------------------------- */

.contact-modal-container {	
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
}

#contact-modal-toggle {
	position: absolute;
	right: 20px;
	top: 160px;

	display: block;
	padding: 15px;

	color: #fff;
	font-size: 13px;
	font-family: 'Open Sans';
	text-shadow: 0 1px 1px #223a3f;

	background:#c02626;

	border-top: none;

	-webkit-border-top-right-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-bottomright: 5px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

	#contact-modal-toggle:hover {
		cursor: pointer;
	}

.contact-modal {
	display: none;

	padding: 30px 20px;
	background:#5275a9;
}

	.contact-modal #closeModal {
		position: absolute;
		bottom: 20px;
		right: 20px;
		
		height: 32px;
		width: 32px;
		
		background: url('../img/closeModal.png') center center no-repeat;
	}
	
		.contact-modal #closeModal:hover {
			cursor: pointer;
		}

	.contact-modal .col {
		float: left;
		
		color: #fff;
		width: 300px;
		margin-right: 30px;
	}
	
		.contact-modal .col.last {
			margin-right: 0;	
		}
		
	.contact-modal .col h3 {
		color: #fff;
		margin-top: 0;
	}
	
	.contact-modal .col input[type='text'],
	.contact-modal .col textarea {
		width: 278px;
		margin-bottom: 5px;
		
		border-color: #222;
	}
	
	.contact-modal .col textarea {
		min-height: 50px;
		height: 50px;
	}

/* ----------------------------------
#. Header
---------------------------------- */

.header {
	padding: 40px 0 20px;
	font-size: 22px;
	height: 100px;
}

	.header #logo {
		margin-top: 0px;
		width: 360px;
		height: 103px;
		float:left;
		background: url('../img/logo.png') no-repeat;
	}
	
	.header #logo a {
		display: block;
		width: 100%;
		height: 100%;
	}
	
	.header .contact {
		float: right;
		text-align: right;
		font-size: 18px;
	}
	
		.header .contact p {
			margin: 0;
			font-size: 20px;
			line-height: 32px;
		}

/* ----------------------------------
#. Navigation
---------------------------------- */

.navigation {
background-image: -webkit-gradient(
	linear,
	left top,
	left bottom,
	color-stop(0, #262626),
	color-stop(1, #141414)
);
background-image: -o-linear-gradient(bottom, #262626 0%, #141414 100%);
background-image: -moz-linear-gradient(bottom, #262626 0%, #141414 100%);
background-image: -webkit-linear-gradient(bottom, #262626 0%, #141414 100%);
background-image: -ms-linear-gradient(bottom, #262626 0%, #141414 100%);
background-image: linear-gradient(to bottom, #262626 0%, #141414 100%);

	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 2px;

	margin-bottom:10px;
}

	.navigation ul {
		margin: 0;
		padding: 0;
	}
	
	.navigation ul li {
		float: left;
		list-style: none;
		

	}
	
		.navigation ul li.first {
			border-left: none;
		}
	
		.navigation ul li.last {
		}
		
		.navigation ul li.slogan {
			float: right;
			border: none;
			padding: 15px 20px;
			color: #fff;
			font-weight: bold;
			font-style: italic;
		}
		
		.navigation ul li.has_children {
			position: relative;
		}
		
			.navigation ul li.has_children:hover ul {
				display: block;
			}
		
			.navigation ul li.has_children ul {
				display: none;
			
				position: absolute;
				top: 43px;
				left: 0;
				
				border: 1px solid #000;
				
				border-bottom-left-radius: 3px;
				border-bottom-right-radius: 3px;
				-moz-border-radius-bottomleft: 3px;
				-moz-border-radius-bottomright: 3px;
				
				box-shadow: inset 0 -1px 1px #444;
				
				background: #242324;
				
				z-index: 9999;
			}
			
			.navigation ul li.has_children ul li {
				float: none;
				border: none;
			}
			
			.navigation ul li.has_children ul li a {
				width: 120px;
			}
	
	.navigation ul li a {
		color: #f0f0f0;
		font-weight: 600;
	
		display: block;
		padding: 15px 22px;

	}
	
		.navigation ul li.current a,
		.navigation ul li a:hover {
			color: #fff;

			
		}
		
		.navigation ul li.current > a {

		}
		
		
	
/* ----------------------------------
#. Slider
---------------------------------- */

.slider {
	
}

.nivo-caption {
	padding: 20px !important;
}

.slider-wrapper {
background-color: #dbdbdb;
background-image: url('../img/slider-shadow.png'), url('../img/bg.jpg');
background-repeat: no-repeat, repeat;
background-position: top center;
width: 100%;
padding: 20px 0;
}

.box{
background:#fff;
padding:10px 10px 10px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
box-shadow: 0 1px 3px #999;
}
.nivo-caption {background: #095294 !important;}
/* ----------------------------------
#. Gallery
---------------------------------- */

.gallery {
	margin: 0;
	padding: 0;
}

	.gallery li {
		float: left;
	
		width: 215px;
		height: 170px;
		
		overflow: hidden;
		margin-top:0;
		margin-right: 20px;
		margin-bottom: 20px;
		
		background-color: #fff;
		background-position: center;
		background-size: contain;
		background-repeat: no-repeat;
		
		position:relative;
	}
	
		.gallery li.last {
			margin-right: 0;
		}
		
	.gallery li a {
		display: block;

		width: 215px;
		height: 190px;
		margin-top:-20px;
		
	-webkit-transition: background 0.5s ease;
	
	}
	
		.gallery li a:hover {
		background:rgba(0,0,0,0.7);
	}

	
	.gallery li .caption{
	display: none;
	
	position:absolute;
	top:75px;
	left:35px;
	
	font-size:14px;
	color:#fff;
	font-weight:600;
	}
	
	.gallery li:hover .caption{
		display: block;
	
	}
	
	
/* ----------------------------------
#. Content
---------------------------------- */

.content {
	padding: 0 0 30px;
	background-position-y: -100px;
	background-position-x: 250px;
	
}

	.content .inner {
		width: 600px;


		margin-bottom: 20px;
	}
	
		.content .inner#full-width {
			width: 920px;
		}
	
	.content .inner h1 {
		margin-top: 10;
	}
	
	.content .sidebar {
		width: 250px;
		float:right;

		margin-bottom: 20px;
	}
		
		.content .sidebar .contact {
			text-align: center;
			line-height: 28px;
			margin-bottom: 20px;
			
			padding: 20px;
			
			background: #fff;
			border-radius: 3px;
			-moz-border-radius: 3px;
			-webkit-border-radius: 3px;
			
			box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
		}
		
			.content .sidebar .contact p {
				margin: 0;
			}
	
/* ----------------------------------
#. About Col(s)
---------------------------------- */

.about-col {
	width: 285px;
	float: left;
	margin-right: 30px;
}

	.about-col.last {
		margin-right: 0;
	}
	
	.about-col .about-gallery {
		
	}
	
	.about-col .about-gallery ul {
		margin: 0;
		padding: 0;
	}
	
	.about-col .about-gallery ul li {
		list-style: none;
		
		float: left;
		
		overflow: hidden;
		
		margin-right: 10px;
		margin-bottom: 10px;
	
		width: 125px;
		height: 125px;
		border: 3px solid #fff;
		
		background-color: #fff;
		background-position: center;
		background-size: contain;
		background-repeat: no-repeat;
		
		position:relative;
	}
	
		.about-col .about-gallery ul li img {
			max-width: 100%;
			min-height: 100%;
		}
		
		
	.about-col .about-gallery li a {
		display: block;
		width: 100%;
		height: 100%;
		
			-webkit-transition: background 0.5s ease;
	}
	
	.about-col .about-gallery li a:hover {
		background:rgba(0,0,0,0.7);
	}
	
	.about-col .about-gallery li .caption{
		display: none;
		
		position:absolute;
		top:40px;
		left:0;
		
		font-size:14px;
		color:#fff;
		font-weight:600;
		text-align:center;
	}
	
	.about-col .about-gallery li:hover .caption{
		display: block;
	}
	
/* ----------------------------------
#. Testimonials
---------------------------------- */

.testimonials {
	
}

	.testimonials ul {
		margin: 0;
		padding: 0;
	}
	
	.testimonials ul li {	
		float: left;
		
		list-style: none;
		width: 215px;
		margin-right: 20px;
	}
	
		.testimonials ul li.last {
			margin-right: 0;
		}
	
/* ----------------------------------
#. Services
---------------------------------- */

.services {
	padding: 10px;
	box-shadow: 0 1px 3px #999;
	background:#fff;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	
	margin: 20px 0;
}

	.services ul {
		margin: 0;
		padding: 0;
		
		overflow: hidden;
	}
	
	.services ul li h2{
		margin: 0;
		padding: 0 0 0 30px;
		border-bottom: 1px dotted #ccc;
		margin-bottom:10px;
		background: url('../img/arrow-right.png') left center no-repeat;
	}
	
	
	.services ul li {
		float: left;
		
		list-style: none;
	
		width: 290px;
		height: 190px;
		position: relative;
		
		margin:10px 0;
		margin-right: 32px;
		
		background-size: cover;
		background-repeat: no-repeat;
	}
	
		.services ul li.last {
			margin-right: 0;
		}
		
	.services ul li .overlay {
		display: none;
		text-align: center;
	
		position: absolute;
		width: 100%;
		height: 100%;
		padding: 70px 0;
		
		background: url('../img/overlay-inner.fw.png');
	}
	
	.services ul li .overlay a {
		display: inline-block;
		padding: 5px 10px;
		
		color: #fff;
		font-weight: 600;
		text-transform: uppercase;
		
		border: 2px solid #fff;
	}
	
	.services ul li .service-inner{
	position:absolute;
	bottom:0;
	left:0;
	display:block;
	
	width:270px;
	padding:0 10px;
	font-size:12px;
	font-weight:600;
	background: url('../img/service-bg.png');
	border-top:1px solid #f1f1f1;
	}
/* ----------------------------------
#. Footer
---------------------------------- */

#toggle {
	width: 120px;
	position: absolute;
	left: 50%;
	top: -17px;
	margin-left: -60px;
	
	padding: 10px 0;
	
	border: 1px solid #111;
	
	box-shadow: inset 0 1px 1px #444;
	text-align: center;
	color: #fff;
	
	border-radius: 3px;
	-moz-border-radius: 3px;
	
	background-color: #2d2c2d;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#2f2e2f), to(#2b2b2c));
	background-image: -webkit-linear-gradient(top, #2f2e2f, #2b2b2c);
	background-image: -moz-linear-gradient(top, #2f2e2f, #2b2b2c);
	background-image: -o-linear-gradient(top, #2f2e2f, #2b2b2c);
	background-image: -ms-linear-gradient(top, #2f2e2f, #2b2b2c);
	background-image: linear-gradient(top, #2f2e2f, #2b2b2c);
	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#2f2e2f', EndColorStr='#2b2b2c');
}

	#toggle:hover {
		cursor: pointer;
	}
	

.footer .container {
	background: none;
}

.footer {
	color: #aaa;
	padding: 30px 30px;
	background: #222;
	position:relative;
}

	.footer .col {
		list-style: none;
	
		float: left;
		width: 293px;
		margin-right: 30px;
	}
	
		.footer .col.last {
			margin-right: 0;
		}
		
	.footer .col h3 {
		color: #fff;
		font-size: 13px;
		text-transform: uppercase;
	}
	
	.footer .col .footer-gallery {
		
	}
	
		.footer .col .footer-gallery ul {
			margin: 0;
			padding: 0;
		}
		
		.footer .col .footer-gallery ul li {
			list-style: none;
			background: none;
			padding: 0;
			float: left;
			
			margin-right: 10px;
			margin-bottom: 10px;
			
			width: 65px;
			height: 65px;
			
			border: 3px solid #fff;
					
			background-color: #fff;
			background-position: center;
			background-size: contain;
			background-repeat: no-repeat;
			overflow: hidden;
		}
		.footer .col .footer-gallery li a {
			display: block;
			width: 100%;
			height: 100%;
		}
	
		
			.footer .col .footer-gallery ul li img {
				max-width: 100%;
				min-height: 100%;
			}
	
	.footer .col ul {
		margin: 0;
		padding: 0;
	}
	
	.footer .col ul li {
		list-style: none;
		padding: 3px 0 3px 14px;
		background: url('../img/li.png') left center no-repeat;
	}
	
		.footer .col ul li.has_children {
			
		}
		
		.footer .col ul li.has_children ul {
			display: none;
		}
	
	.footer .col ul li a {
		color: #aaa;
		font-size: 12px;
	}
	
	.footer .col ul li.current a,
	.footer .col ul li a:hover {
		color: #43646b;
	}
	
	
	/* ----------------------------------
#. Extra
---------------------------------- */

.extra {
	padding: 40px 0;
	background: #333;
	
	display: none;
}

	.extra ul {
		margin: 0;
		padding: 0;
		text-align: center;
	}
	
	.extra ul li {
		display: inline-block;
		padding: 5px 7px;
	}
	
	.extra ul li a {
		color: #fff;
	}
	
	
/* ----------------------------------
 New Style
---------------------------------- */
.container, .content .inner#full-width {
    max-width: 1500px;
    width: 100%;
}
.navigation, .footer {
    background: #095294;
}
.footer .col ul li a, .footer,.footer a, .navigation ul li a {
    color: #fff;}
    body {
    background: #fff8ec;}
    .slider-wrapper {
            background-size: cover;
    }
    .about-col, .footer .col {
    width: 32%;
    }
    .footer .col ul li {
    width: 47%;
    float: left;
}
.footer .col ul:after {
clear:both; display:block; content:'';}
.services ul li {
    width: 31%;
    height: auto;
}

.services ul li img {
    width: 100%;
}
.services ul li .service-inner {
    width: calc(100% - 20px);
}
.content .inner {
    width: calc(100% - 350px);
    margin-top: 33px;
}
.content .sidebar {
    width: 340px;
}
.navigation li img {
    width: 70px;
    position: absolute;
    top: -2px;
    right: 0;
}
.footer li img {
    display: none;
}
.navigation li:nth-child(5) {
    position: relative;
    padding-right: 45px;
}
.services ul li .service-inner {
    position: static;
    padding: 13px;
}

.services ul li .service-inner p {
    margin: 0;
}
@media (max-width:1499px) {

.about-col .about-gallery ul li {
    width: 130px;
    height: 130px;
    margin-right: 5px;
    border-width: 2px;
    margin-bottom: 5px;
}
.about-col.last {
    width: 33%;
}
.about-col, .footer .col {
    width: 30%;
}

}
@media (max-width:980px) {
  .about-col .about-gallery ul li {
       width: 128px;
    height: 128px;
  }
}
@media (max-width:1263px) {
.about-col.last {
    width: 332px;
}

    .about-col .about-gallery ul li {
    width: 100px;
    height: 100px;
}
}
