﻿/* -----------------------------------------------------

	CCSPools

--------------------------------------------------------

TABLE OF CONTENTS

1.0	General
2.0	Typography
3.0	Elements
4.0	Header
5.0	Banner
6.0	Footer
7.0	Components
	7.1 Mid Block
	7.2 mid-content
	7.3 bottom-box
	7.4 logo-slider
	7.5 mailing-list
8.0	Page-Specific Styles
	8.1 custom-pool
	8.2 Gallery
9.0	Media Queries
----------------------------------------------------- */

/* -----------------------------------------------------
1.0 GENERAL STYLES
----------------------------------------------------- */
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Oxygen', sans-serif;
    color: #4d4d4d;
}

a img {
    border: none;
}

.container-fluid.full { 
	max-width:100% 
}  
.container-fluid { 
	width:100%; 
	max-width:1224px; 
}
.container-fluid.sm { 
	width:100%; 
	max-width:1024px; 
}   

.section{
	padding-top: 50px;
	padding-bottom: 50px;
}

.section--white{
	background-color: #ffffff;
}

.mobile-only{
	display: inline-block;
}

@media(min-width: 544px){
	.mobile-only{
	display: none!important;
}
}

/* -----------------------------------------------------
2.0	Typography
----------------------------------------------------- */
h1, 
h2, 
h3, 
h4, 
h5, 
h6, 
p {
    margin: 0;
}

p{
	line-height: 1.6em;
}

h1{
	font-size: 3.429em;
	font-family: Georgia, serif;
}

h3{
	font-size: 2.000em;
}

.main-heading{
	font-size: 2.571em;
	font-family: georgia;
	padding-bottom: 15px;
}

.sub-heading{
	font-size: 1.714em;
	font-family: georgia;
	padding-bottom: 15px;
}

a {
    color: inherit;
	cursor: pointer;
    text-decoration: none;
	transition: all 0.5s ease 0s;
}

a:hover, a:focus, a:active {
    text-decoration: inherit;
    color: inherit;
	outline:none;
}

/* -----------------------------------------------------
3.0	Elements
----------------------------------------------------- */

li {
    list-style: none;
	transition: all 0.5s ease 0s;
}

ul {
    padding: 0;
    margin: 0px;
}

.orange-btn{
	background: #dd9247;
	color: #fff;
	padding: 10px 30px;
	display: inline-block;
	font-size: 1.286em;
	border-radius: 0;
	font-weight: bold;
}

.white-outline {
	background: transparent;
	color: #fff;
	padding: 10px 30px;
	border:2px solid white;
	display: inline-block;
	min-width:210px;
	font-size: 1.286em;
	border-radius: 0;
	color:white;
	font-weight: bold;
}

.white-outline:hover {
	color:#dd9247;
	background-color:white;
	text-decoration:none;
}

.orange-btn:hover, .orange-btn:focus{
	background: #222;
	color:#fff;
}

.blue-btn{
	background: #1078af;
	color:#fff;
	border-radius: 0;
	font-weight: bold;
}

.blue-btn:hover, .blue-btn:focus{
	background: #222;
	color:#fff;
}

.full{
	width: 100%;
}

.white{
	color:#fff;
}

.blue{
	color: #1078af;
}

.btn{
	font-size: 1.286em;
	padding: 10px;
	font-size: 1.286em;
	margin-bottom: 15px;
	white-space: normal;
}

.orange-check-mark{
	margin-bottom: 15px
}

.orange-check-mark li{
	position: relative;
	padding-left: 35px;
	font-size: 18px;
	color: #4d4d4d;  
	padding-bottom: 10px;
}

.orange-check-mark li::before{
	background: url(../../images/orange-check-mark.png) no-repeat top left;
	content: "";
	width: 30px;
	height: 30px;
	position: absolute;
	left: 0;
	top: 3px;
}

ul.arrows {
	margin-bottom:30px;
}

ul.arrows li {
	position:relative;
	padding-left:25px;
	font-size:1.125em;
	margin-bottom:5px;
}

ul.arrows li:before {
    content:"\f105";
	position:absolute;
	left:0;
	top:3px;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    color:#dd9247;
}

a.text-link {
	color:#dd9247;
	font-weight:700;
}

a.text-link:hover {
	color:#1078af;
}

.squares{
	padding:15px;
	padding-top:0;
}

.squares li{
	font-size:16px;
	padding-left:20px;
	padding-bottom:10px;
	line-height:20px;
	position:relative;
}

.squares li:before{
	content:"";
	background-color:#1078af;
	width:5px;
	height:5px;
	position:absolute;
	top:9px;
	left:0;
}

.squares li.white:before{
	background-color:#fff;
}

/* -----------------------------------------------------
4.0	Header
----------------------------------------------------- */

header{
	min-height: 155px;
	background: rgba(255, 255, 255, .9);
	position: absolute;
    width: 100%;
    z-index: 2;
}

.top-bar .social-icons{
	float: right;
	margin-top: 25px;
}

.top-bar .social-icons li{
	float: left;
}

.top-bar .social-icons li a{
	padding: 0 3px;
	color: #1078af;
	font-size: 18px;
	margin: 0 5px;
}

.top-bar .social-icons li a i{
	transition: all 0.5s ease;
}

.top-bar .social-icons li a:hover i{
	color:#333;
	transition: all 0.5s ease;
}

.top-bar .social-icons li a.button{
	padding: 5px 10px;
    position: relative;
    bottom: 6px;
    margin-right: 40px;
    }

.top-bar .social-icons li a.button:hover{
	color: #ffffff;
}    
    

header .logo {
    left: 50%;
    margin-left: -90px;
    position: absolute;
    top: 24px;
    z-index: 1;
	
}

header .logo img{
	transition: all ease 0.25s;
	width:100%;
	max-width:100%;
}

.nav-block .navbar-nav li{
	margin-right: 20px;
	border-bottom: 1px solid transparent;
}

.nav-block .navbar-nav li:hover{
	border-bottom: 1px solid #0d5270;
}

.nav-block{
	margin-top: 10px;
}

.nav-block .navbar{
	margin-bottom: 0;
}

.nav-block .phone-number{
    float: right;
	margin-top: 12px;
	color: #0d5270;
	margin-right: 0;
}

.nav-block .phone-number a:hover{
	border-bottom: 1px solid #0d5270;
}

.nav-block .phone-number a{
	border-bottom: 1px solid transparent;
	padding-bottom: 5px;
}

.nav-block .nav li a{
	padding: 10px 0px 5px 0;
	font-size: 1.071em;
	color: #0d5270;
	font-size: 1.143em;
	text-transform: capitalize;
}

.nav-block .navbar{
	float: left;
	width: 92%;
}

.nav-block .nav li a:hover, 
.nav-block .nav li a:focus{
	background: transparent;
}

/*sub navigation*/
.nav-block .navbar-right .dropdown-menu{
	right: inherit;
	left: inherit;
}

.nav-block li > .dropdown-menu{
	padding: 0 0 10px;
}

.nav-block li > .dropdown-menu li{
	margin-right: 0;
}

.nav-block li > .dropdown-menu li a{
	padding-left: 15px;
	padding-right: 15px;
	font-size: 15px;  
}

header .nav-block .social-icons, 
header .navbar .phone-number{
	display: none;
}

#toggle-menu {
	color:#000;
	font-weight:700;
	text-transform:uppercase;
	line-height:50px;
	display:none;
	margin-right:0;
}



/* -----------------------------------------------------
5.0	Banner
----------------------------------------------------- */

.home-banner .item{
 	background-repeat:no-repeat;
  	background-position: center center;
	background-size: cover;
	min-height: 700px;
}

.home-banner .owl-dots {
    margin: 0 auto;
    text-align: center;
	position: absolute;
	bottom: 20px;
	left: 50%;
	margin-left:-120px;
}

.home-banner .owl-dot.active{
	opacity: 0.5;
}

.home-banner .owl-dot{
	width: 60px;
	height: 4px;
	background: #fff;
	display: inline-block;	
	margin: 0 10px;
}

/* -----------------------------------------------------
6.0	Footer
----------------------------------------------------- */
.footer-social-icons ul li{
	display: inline;
}

.footer-social-icons ul{
	text-align: center;
	padding: 30px 0 50px;
}

.footer-social-icons ul li a{
	color:#8bacbb;
	border: 2px solid #8bacbb;	
	width: 50px;
	height: 50px;
	border-radius: 50px;
	display: inline-block;
	text-align: center;
	font-size: 25px;
	padding-top: 5px;
	margin: 0 10px;
}

.footer-social-icons ul li a:hover{
	color:#fff;
	border: 2px solid #fff;	
}

.footer-links ul{
	max-width: 990px;
	text-align: center;
	margin: 0 auto;
}

.footer-links li{
	display: inline-block;
	margin: 0 19px;
	padding-bottom: 10px;
}

.footer-links li a{
	text-transform: uppercase;
	color:#fff;
	font-size: 1.143em;
}

.footer-links li a:hover,
.contact-info ul li a:hover,
.copyright p a:hover{
	text-decoration: underline;
}

.contact-info ul{
	text-align: center;
	padding-top: 40px;
	padding-bottom: 40px;
}

.contact-info ul li{
	display: inline-block;
	color:#fff;
	margin: 0 10px;
}

.contact-info ul li i{
	padding-right: 10px;
	color:#749aab;
}

.copyright{
	background: rgba(0,0,0,0.4);
	padding: 20px 0;
}

.water footer .copyright p{
	color: #fff;
	font-size: 14px;
	padding-bottom: 0;  
}

/*.top-scroll {
    bottom: 0;
    position: fixed;
    right: 15px;
    text-align: right;
}

.top-scroll .btn {
    background: #dd9247 none repeat scroll 0 0;
    border-radius: 100%;
    color: #fff;
    display: none;
    font-size: 20px;
    height: 44px;
    padding-top: 5px;
    width: 44px;
}*/

#to-top{
	position: fixed;
	bottom: 15px;
	right: 15px;
	cursor: pointer;
	display: none;
	border-radius: 100%;
	padding:0;
	margin-bottom:0;	
}

#to-top i{
	color:#fff;
	background: #dd9247;
	border:2px solid #dd9247;
	border-radius: 100%;
	padding:9px 10px 11px 10px;
	transition:all ease 0.3s ;
}

#to-top i:hover{
	color:#dd9247;
	background:transparent ;
	transition:all ease 0.3s ;
}
/* -----------------------------------------------------
7.0	Components
----------------------------------------------------- */
/* 7.1  white-box
----------------------------------------------------- */
.water {
	background:url(../../images/water.jpg) no-repeat top center;
	background-attachment:fixed;
	background-size: cover;
	padding-top: 40px;	
}

.white-box{
	background: #fff;
	border-radius: 5px;
	padding-top: 35px;
	padding-bottom: 20px; 	
}

.white-box.white-box--transparent{
	background: transparent;
}

.white-box h1{
	font-size: 3.429em;
	color: #1078af;
	font-family: georgia;
	text-align: center;
	padding-bottom: 20px;
}

.white-box .img-block img{
	width: 100%;
}

.white-box .img-block{
	position: relative;
	background: #1078af;
	transition: all 0.5s ease 0s;
}

.white-box .img-block:hover{
	background: #dd9247;
	transition: all 0.5s ease 0s;
}

.white-box .img-block .caption{
	position: relative;
}

.white-box .img-block .caption p{
	font-size: 2.143em;
	color:#fff;
	text-align: center;
	padding-bottom: 15px;
	font-weight: 300px;
}

.service-box{
	display: block;
	border: 5px solid transparent;
	transition: all ease 0.25s;
}

.service-box:hover{
	border-color: #ffffff;
}

.white-box .service-box  .img-block{
	margin-bottom: 0;
}

/* 7.2  mid-content 
----------------------------------------------------- */
.mid-content{
	padding-top: 60px ;
	padding-bottom: 60px ;
}

.mid-content p.lead{
	font-size: 2.000em;
	color: #fff;
	text-align: center;
	font-weight: bold;
}

.mid-content p{
	font-size: 1.571em;
	color: #fff;
	text-align: center;
	font-weight: lighter;
}

.mid-content--title{
	color: #ffffff;
	margin-bottom: 20px;
	text-align: center;
}

/* 7.3  bottom-box
----------------------------------------------------- */

.bottom-box{
	background-size: cover;
	padding: 70px 0;
	text-align: center;
}

.bottom-box-2{
	margin-top: 25px;
}

.bottom-box-contact{
	margin-top: 25px;
	padding: 55px 0 !important;
	height: 16em;
}
	.bottom-box-contact h3{
		font-size: 1.3em !important;
	}

.bottom-box h3{
	font-size: 2.143em;
	color:#fff;
	font-family: georgia;
	padding-bottom: 40px;
}

.bottom-box .orange-btn{
	font-weight: bold;
}

.bottom-box .orange-btn:hover, 
.bottom-box .orange-btn:focus,
.mailing-list .orange-btn:hover,
.mailing-list .orange-btn:focus {
	background: #1078af;
	color:#fff;
}

.banner-logo-contact img{
	padding: 20px 18%;
}

@media screen and (min-width:575px) {
	.banner-logo-contact img{
		padding: 20px 30%;
	}
}

.bottom-box .banner-logo {
	display: block;
	padding-top: 25px;
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
}
.bottom-box img {
	max-width: 300px;
}

@media screen and (min-width:1210px) {
	.bottom-box-contact h3{
		font-size: 1.8em !important;
	}
}

/* 7.4  logo-slider
----------------------------------------------------- */
.logo-slider ul{
	text-align: center;
}

.logo-slider ul li{
	display: inline-block;
	text-align: center;
	width: 13.8%;
}

.logo-slider ul li img{
	max-width: 100%;
	width: 100%;
}

.logo-slider{
	margin-top: 50px;
	margin-bottom: 50px;
	padding: 20px 10px;
	background: #fff;
	border-radius: 5px;
}

/* 7.5  mailing-list 
----------------------------------------------------- */
.mailing-list .box{
	max-width: 600px;
	border: 1px solid #9db7c3;
	border-radius: 5px;
	padding: 30px 60px;
	text-align: center;
	color:#fff;
	margin: 0 auto;
	background: rgba(0,0,0,0.25)
}

.mailing-list .box h3{
	padding-bottom: 15px; 
}

.mailing-list .box p{
	font-size: 1.286em;
	padding-bottom: 15px;
}

.mailing-list .box input{
	background: transparent;
	border-radius: 0;
	margin-bottom: 15px;
	border-color: #9db7c3;
	color:#9db7c3;
	min-height: 45px;
}

.mailing-list .box button{
	border-radius: 0;
	padding: 9px 40px;
	margin-top: 10px;
	font-weight: bold;
	transition: all 0.5s ease 0s;
}

.mailing-list .form-control::-webkit-input-placeholder{
	color: #9db7c3;
}
.mailing-list .form-control::-moz-placeholder { 
   color: #9db7c3;  
}

.mailing-list .form-control:-ms-input-placeholder {  
   color: #9db7c3;  
}

/*8.1 custom-pool
----------------------------------------------------- */
.banner .inner-banner{
	background-size: cover !important; 
	min-height: 400px;
}
.inner-white-box{
	background: #fff;
	border-radius: 5px;
	padding-top: 40px;
	padding-bottom: 20px;
	margin-bottom: 40px;
}

.transparent-box{
	margin-bottom: 40px;
}

.water.inner-page p{
	font-size: 18px;
	padding-bottom: 12px;  
}

.water.inner-page img{
	width: 100%;
	max-width: 100%;
}

.water.inner-page .img-block img{
	padding-bottom: 15px;
}

/*8.2 Gallery
----------------------------------------------------- */
.gallery-tabs li a{
	font-size: 16px;
	color:#1078af;  
	text-transform: capitalize;
	padding: 10px 12px;
}

.gallery-tabs .navbar{
	margin-bottom: 0;
}

.gallery-tabs li a:hover,
.gallaery--large a:hover {
	background: transparent;
	color: #dd9247;
	border-color: transparent;
}

.gallery-tabs li.active > a, 
.gallery-tabs li.active > a:hover, 
.gallery-tabs li.active > a:focus{
	color: #dd9247;
	border-color: transparent;
}

.gallery--large a {
	position:relative;
	display:block;
	height:100%;
	width:100%;
}

.gallery-tabs .gallery a {
    width: 24.7%;
    position: relative;
    display: inline-block;
    margin-bottom: 3px;
}

.gallery-tabs .gallery a:after,
.gallery--large a:after {
    background: rgba(230, 150, 80, 0.9) url("../../images/search.png") no-repeat scroll center center;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    font-weight: bold; 
    opacity:0.0;
    transition:all 0.25s ease;
}

.gallery--large .image-link {
	display:flex;
	align-items:center;
	justify-content: center;;
}

.gallery--large a:after {
	content:"View Project";
	background-color:rgba(230, 150, 80, 0.9);
	background-image:none;
	display:flex;
	align-items:center;
	justify-content: center;
	color: #fff;
    font-size: 18px; 
    font-weight: bold;
    text-align: center;
}

.gallery--large-images a::after {
	content:"";
}
.gallery--large-images a::before {
	position:absolute;
	z-index:10;
	content: "\f002";
	display: block;
	font: normal normal normal 14px/1 FontAwesome;
	color:white;
	font-size: 30px;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	opacity:0.0;
	transition:all 0.25s ease;
}

.gallery--large-images a:hover::before {
	opacity:1.0;
}

.gallery-tabs .gallery a:hover:after,
.gallery--large a:hover:after {
	opacity:1.0;
}

.gallery-tabs .gallery.featured-gallery a:hover::after {     background: rgba(230, 150, 80, 0.9) url("../../images/search.png") no-repeat scroll center center;
    content: "View Project Gallery";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    color: #fff;
    font-size: 18px; 
    font-weight: bold;
    text-align: center;
    padding-top: 47%;
    
}

.gallery-tabs .gallery{
	padding-top: 30px;
}

.gallery-nav button.navbar-toggle {
    margin: 0;
    width: 100%;
}

.gallery-nav .navbar-toggle {
    text-align: left;
}

.gallery-nav .sr-only {
    position: relative;
    color: #1078af;
    top: 3px;
}

.gallery-nav button.navbar-toggle i.fa {
    float: right;
    font-size: 20px;
    padding-top: 2px;
    color: #1078af;
}

.gallery--large {
	padding:0 15px;
	margin-top:30px;
}

.gallery--large .row > div {
	padding:0 5px;
	margin-bottom:10px;
}

.gallery--large img {
	width:100%;
	max-width:100%;
}


/*8.3 testimonials
----------------------------------------------------- */

.featured-project-details .gallery-images {
    display: none;  	 
}

.featured-project {
	margin:40px 0;
}

.featured-project {
	background-color:#efefef;
}

.featured-project .featured-project-details:before {
	content:"";
	position:absolute;
	top:35px;
	width: 0; 
	height: 0; 
}


.before-after {
	position:relative;
}

.before-after.before:before,
.before-after.after:before {
	position:absolute;
	bottom:15px;
	right:15px;
	z-index:99999;
	background-color:rgba(255,255,255,0.75);
	padding:3px 6px;
}

.before-after.before:before {
	content:"Before";
}

.before-after.after:before {
	content:"After";
}


@media screen and (min-width:768px) {
	.featured-project:nth-of-type(even) .featured-project-details:before {
		left:-19px;
		border-top: 20px solid transparent;
		border-bottom: 20px solid transparent; 
		border-right:20px solid #efefef; 
	}
	.featured-project:nth-of-type(odd) .featured-project-details:before {
		right:-19px;
		border-top: 20px solid transparent;
		border-bottom: 20px solid transparent; 
		border-left:20px solid #efefef; 
	}
}


@media screen and (max-width:767px) {
	.featured-project .featured-project-details:before {
		top:-19px;
		left:50px;
		border-left: 20px solid transparent;
		border-right: 20px solid transparent; 
		border-bottom:20px solid #efefef; 		
	}	
}

.featured-project .row {
	margin:0;
}

.featured-project .row .featured-project-image {
	padding-left:0;
	padding-right:0;
}

.featured-project .featured-project-details, 
.featured-project .featured-project-image{
	position:relative;
}

.featured-project .featured-project-details {
    padding: 30px;
}

.featured-project-details h4{
	font-size: 24px;
	color: #1078af;
	padding-bottom: 15px; 
}

/*8.3 testimonials
----------------------------------------------------- */
.name {
    font-style: italic;
    margin-bottom: 15px;
    text-align: right;
}

/*8.4 Contact
----------------------------------------------------- */

ul.address li:before {
	position:absolute;
	left:0;
	top:5px;
    display: inline-block;
    font: normal normal normal 18px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    color:#dd9247;
}

ul.address li {
    position: relative;
    padding-left:25px;
    margin-bottom:10px;
    font-size: 18px;
}

ul.address li.phone:before {
    content: "\f095";
}

ul.address li.fax:before {
    content: "\f1ac";
}

ul.address li.email:before {
    content: "\f0e0";
}

ul.address li.map:before {
    content: "\f041";
}

ul.address li.user:before {
    content: "\f007";
}

ul.address li span{
	display: block;
}

.contact ul.address{
	margin-bottom: 30px;
}

.contact-form form {
    border: 1px solid #1078af;
    margin-bottom: 20px;
    padding: 30px 40px;
}

.inner-addon {
    position: relative;
}

.inner-addon .fa {
    color: #bbb;
    padding: 10px;
    pointer-events: none;
    position: absolute;
    right: 0;
}

.right-addon input, .right-addon textarea {
    background: transparent none repeat scroll 0 0;
    border-color: #5ba2c8;
    border-radius: 0;
    margin-bottom: 15px;
    padding-right: 30px;
}

.contact .contact-form .submit {
    border-radius: 0;
    color: #fff;
    font-weight: 500;
    transition: all 0.5s ease 0s;
    width: 100%;
    font-weight: bold;
}

.contact .contact-form form p {
    padding: 20px 0 10px;
    font-size: 12px !important;
}

.contact .inner-white-box hr{
	border-color: #999;
}

.contact .inner-white-box{
	padding:40px 30px;
}

.contact .inner-white-box img{
	max-width: 100%;
}

.sitemap ul li a::before {
    content: "\f101";
    display: block;
    font-family: fontawesome;
    left: 0;
    position: absolute;
    top: 0;
}

.contact .right-block .contact-details{
	display: none;
}

.contact .contact-details h2{
	padding-left: 15px;
}

.sitemap ul{
	padding-bottom: 10px;
}

.sitemap ul li {
    padding-bottom: 7px;
    position: relative;
}

.sitemap ul li a {
    font-size: 16px;
    padding-left: 20px;
    display: inline-block;
}

.sitemap ul li a:hover{
	color: #1078af;
}

.sitemap h3{
	padding-bottom: 15px;
	font-family: georgia;
	font-size: 24px;
}



.service-area {
	margin:40px 0;
}

.service-area-portal .service-areas {
	margin-top:20px;
}

.service-areas ul.arrows {
	margin-bottom:0;
}

.service-area h3 {
	color: #1078af;
	font-size: 30px;
    font-family: georgia;
    margin-bottom: 15px;
}

.service-area p {
	margin:30px 0;
}

.service-area-cta {
	margin:30px 0;	
}

.service-area-cta h4 {
	color: #1078af;
	font-size: 24px;
    font-family: georgia;
    margin-bottom: 15px;	
}

.bottom-box.service-area-info ul {
	margin:10px 0 30px 0;	
}

.bottom-box.service-area-info ul li {
	font-size:18px;
	color:#fff;
}

.water.inner-page .testimonial p {
	font-size:16px;
}

.water.inner-page .testimonial p.testimonial-author {
	font-weight:700;
	text-align:right;
}



.featured-project{
	display:table;
	width:100%;
}

.featured-project .featured-project-image{
	display:table-cell;
    float: none;
    vertical-align: middle;
	background-size:cover !important; 
}

.featured-project .featured-project-details{
	display:table-cell;
    float: none;
    vertical-align: middle;
}

@media screen and (min-width:768px) {
	.featured-project .featured-project-details{
		vertical-align: middle;
	    height: 400px;
	}
}


/*9.0	Media Queries
----------------------------------------------------- */


@media (min-width: 320px) {
 .gallery-nav .navbar-header {
      float: none;
  }
  .gallery-nav .navbar-left,.gallery-nav .navbar-right {
      float: none !important;
  }
  .gallery-nav .navbar-toggle {
      display: block;
  }
  .gallery-nav .navbar-collapse {
      border-top: 1px solid transparent;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
  }
  .gallery-nav .navbar-fixed-top {
      top: 0;
      border-width: 0 0 1px;
  }
  .gallery-nav .navbar-collapse.collapse {
      display: none!important;
  }
  .gallery-nav .navbar-nav {
      float: none!important;
      margin-top: 7.5px;
  }
  .gallery-nav .navbar-nav>li {
      float: none;
  }
  .gallery-nav .navbar-nav>li>a {
      padding-top: 10px;
      padding-bottom: 10px;
  }
  .gallery-nav .collapse.in{
      display:block !important;
  }

  .gallery-nav .navbar-toggle {
	    border-color: #1078af;
	}
}


@media screen and ( min-width:992px ) {
	body {
		right:0px!important;
		width:100%!important;
	}
	#sidr,
	.sidr {
		display:block!important;
	}
	.phone-number a i{
		display: none;
	}

	ul.nav li.dropdown:hover > ul.dropdown-menu {
		display: block;
	}
}

@media screen and ( max-width:1199px) {
	.nav-block {
		margin-top: 100px;
	}
	
	.navbar-right{
		float: left !important;
	}
	
	header .logo{
		left: 0;
		margin-left: 15px;
	}
	
	.white-box .img-block .caption p{
		font-size: 1.8em;
	}

	.gallery-tabs .gallery a{
		width: 24.7%;
	}
}

@media all and (max-width: 991px) and (min-width: 768px){
	.white-box .img-block .caption p{
		font-size: 1.2em;
	}
	
}

@media screen and ( max-width:991px) {
	.sidr {
	    display: none;
	    position: absolute;
	    position: fixed;
	    top: 0;
	    height: 100%;
	    z-index: 999999;
	    width: 260px;
	    overflow-x: none;
	    overflow-y: auto;
	    font-size: 15px;
		background: #f6f6f6;
	}
	
	.sidr.right {
	    left: auto;
	    right: -260px
	}
	
	#toggle-menu {
		display:inline-block;
	}
	
	.navbar-toggle .icon-bar{
		background: #1078af;	
	}
	
	.navbar-toggle{
		border-color: #1078af;
	}
	
	.phone-number a span{
		display: none;
	}
	
	.nav-block .phone-number{
		font-size: 18px;
		position: absolute;
		right: 105px;
		top: 14px;
		color:#1078af;
	}
	
	.nav-block .phone-number a:hover{
		text-decoration: none;
	}
	
	.nav-block{
		margin-top: 30px;
	}
	
	.nav-block .navbar {
		float: right;
		width: auto;
	}
	
	.nav-block .navbar-nav > li{
		float: none;
	}
	
	.nav-block .navbar-nav{
		margin: 0;
		width: 100%;
	}
	
	.nav-block .navbar-nav li{
		margin-right: 0;
		
		border-bottom: 1px solid #84bbd7;
	}
	
	.nav-block .navbar-nav li a{
		padding: 10px 15px;
	}
	
	.nav-block .navbar-nav li a:hover{
		background: #1078af;
		color:#fff;
	}

	.nav-block .phone-number a:hover{
		border-color: transparent;
		color:#333;
	}
	
	.nav-block .phone-number a i{
		padding-left: 10px;
	}
	
	.home-banner .item{
		min-height: 600px;
	}
	
	.gallery-tabs .gallery a{
		width: 24.6%;
	}

	li.dropdown.open{
	border-color: transparent !important;
	}

	li.dropdown.open > a{
		border-bottom: 1px solid #84bbd7;
	}

	.navbar-nav .open .dropdown-menu {
	    background: transparent none repeat scroll 0 0;
	    border: 0 none;
	    box-shadow: none;
	    float: none;
	    margin-top: 0;
	    padding: 0;
	    position: static;
	    width: auto;
	}

	.navbar-nav .open .dropdown-menu > li > a {
	    padding: 10px 15px 10px 25px;
		white-space: normal;
	}
}

@media screen and ( max-width:767px) {
	.white-box .img-block {
		position: relative;
		margin-bottom: 20px;
	}
	
	.copyright p {
		float: none !important;
		text-align: center;
	}
	
	.copyright p a{
		display: inline-block;
	}
	
	.home-banner .item{
		min-height: 500px;
	}

	.gallery-tabs .gallery a{
		 width: 32.75%;
	}

	.logo-slider ul li {
	    display: inline-block;
	    padding: 10px 0;
	    text-align: center;
	    width: 32%;
	}

	.contact .left-block .contact-details{
		display: none;
	}

	.contact .right-block .contact-details{
		display: block;
	}

	.gallery-tabs .gallery.featured-gallery a:hover::after{
		background-size: 16%;
		font-size: 16px; 
	}
	
	.featured-project{
		display:block;
		width:100%;
	}
	
	.featured-project .featured-project-image{
		display:block;
		width:100%;
		min-height:300px;
	}
	
	.featured-project .featured-project-details{
		display:block;
	}
}

@media screen and ( max-width:599px) {
	.gallery-tabs .gallery.featured-gallery a:hover::after{
		font-size: 15px; 
	}
}

@media screen and ( max-width:543px) {
	header .social-icons{
		display: none;
	}
	
	header .nav-block .social-icons{
		display: block;
	}

	.nav-block .phone-number{
		position: absolute;
		float: right;
		font-size: 24px;
		margin-top: 20px;
	}

	header .nav-block .social-icons li{
		float: left;
		padding: 15px 10px;
		color: #1078af;
	}

	header .nav-block .social-icons li:hover i{
		color:#333;
		transition: all 0.5s ease 0s;
	}

	.banner .inner-banner{
		min-height: 250px;
	}
	
	header .logo {
		top: 10px;
	}

	header .logo img{
		width: 70%;
	}
	
	header{
		min-height: 100px;
	}
	
	.nav-block{
		margin-top: 23px;
	}
	
	.nav-block .phone-number a:hover{
		border-color: transparent;
	}
	
	.mailing-list .box{
		padding: 30px 15px;
	}
	
	.footer-social-icons ul li a{
		margin: 3px;
	}

	.gallery-tabs .gallery a{
		width: 49.3%;
	}

	.contact-form form {
		padding: 20px;
	}

	.company-directory{
		width: 100%;
	}

	.gallery-tabs .gallery.featured-gallery a:hover::after{
		background-size: 16%;
		font-size: 14px; 
	}
	
	.featured-project .featured-project-details {
		padding: 20px 15px;
	}
	
	.squares{
		padding:0;
		padding-bottom:15px;
	}
	
}

/* Awards Section */

.awards-container{
	width:100%;
	margin-top:20px;
	margin-bottom: 20px;
	text-align: center;
}
	
.filter-button-group{
	margin-top: 20px;
}


.button--outline{
	padding: 10px;
	border: 2px solid #1078af;
	min-width: 100px;
	display: inline-block;
	color: #1078af;
	text-transform: uppercase;
	transition: all ease 0.25s;
	font-weight: bold;
	margin: 5px;
	text-align: center;
}

.button--outline:hover{
	background-color:#1078af;
	color: #ffffff;
}

.award{
	width: 100%;
	border: 3px solid transparent;
	transition: none;
}
.award img{
	max-width:100%;
	width: 100%;
	height: 280px;
	object-fit: cover;
}
	
@media(min-width: 575px) {
	.award {
		width: calc(50% - 10px);
		margin: 5px;
	}
	
}

@media(min-width: 768px) {
	.award {
		width: calc(50% - 20px);
		margin: 10px;
	}
	.award img{
		height: 260px;
	}
}

@media(min-width: 991px) {
	.award {
		width: calc(33% - 20px);
	}
}

.award img{
	max-width:100%;	
}

.award__description__text {
    line-height: 20px;
}


.water.inner-page .award__description p{
	font-size: 14px;
	padding-bottom: 0;
} 
.award__description{
	position: absolute;
	bottom: 0;
	left:0;
	background-color: rgba(0,0,0,0.5);
	padding: 10px;
	color: #ffffff;
	text-transform:capitalize;
	text-align: left;
	height: auto;
	transition: max-height ease 1s, padding ease 0.1s;
	max-height: 70px;
	height: 100%;
	overflow: hidden;
	width: 100%;
	font-size: 14px;
	transition: all ease 0.25s;
}

.award__description{
	
}


.award__description__year, .award__description__title{	
	font-weight: bold;
}

.award__description__year{
	margin-top: 2em;
}

.award:after{
	content:'';
	position: absolute;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: yellow;
	border: 1px solid orange;
	top: 5px;
	right: 5px;
	line-height:2.5em;
	font-weight: bold;
}

.award.award--tab:after{
	width: 85px;
	height: 35px;
	top: 0;
	right: 0;
	border-radius: 0 0px 0px 10px;
	background: #dd9247!important;
	border: none!important
}

.award.award--tab {
	color: #ffffff;
}

.award.award--tab.gold:after{
	content:'Gold'
}


.award.award--tab.silver:after{
	content:'Silver'
}

.award.award--tab.bronze:after{
	content:'Bronze'
}




@media(min-width:768px){
	.award:after{
	top:-15px;
	right:-10px;
}
}


.award.gold:after{
  background-image: linear-gradient(160deg, #b47e11, #fef1a2, #bc881b);
  border: 2px solid #b47e11;
  content: '1'
 }
 
.award.gold:hover{
	} 
 
 .award.silver:after{
  background-image: linear-gradient(160deg, #acacac, #ffffff, #c6c4c5);
  border: 2px solid #acacac;
  content:'2';
 }
 
 .award.silver:hover{
	
} 

 
 .award.bronze:after{
  background-image: linear-gradient(160deg, #a05d16, #deba7e, #aa6720);
  content: '3';
  }

 .award.bronze:hover{
	} 

.award:hover .award__description, .award:focus .award__description{
	max-height: 100%;
	padding-top: 40px;
	transition: all ease 0.25s;
}

.award__description i{
	color: #dd9247;
	font-size: 2em;
	margin-top: 1em;
	transition: all ease 0.25s;
}

.award__description i span{
	color: #ffffff;
	font-size: 0.6em;
	font-family: 'Oxygen', sans-serif;
}

.award__description i:hover{
	color: #ffffff;
	
}

.section__header {
	display:flex;
	flex-direction: column;
}

.section__title,
.section__action {
	text-align: center;
}

.section__header .main-heading {
	margin:0;
	padding:0;
}

.section__action {
	margin-top:15px;
}

.section__action .fa {
	margin-right:5px;
}

@media screen and (min-width:992px) {
	.section__header {
		padding:0 20px;
		flex-direction: row;
		align-items:center;
	}

	.section__title {
		flex:1;
		text-align:left;
	}

	.section__title .main-heading {
		text-align: left;
	}

	.section__action {
		margin-top:0;
				text-align: right;
	}
}

.gallery--large .image-link {
	display:flex;
	align-items:center;
	height:150px;
	overflow:hidden;
}

.gallery--large .image-link img {
	object-fit:cover;
	width:100%;
	height:100%;
}

@media screen and (min-width:480px) {
	.gallery--large .image-link {
		height:200px;
	}
}

@media screen and (min-width:768px) {
	.gallery--large .image-link {
		height:225px;
	}
}

@media screen and (min-width:992px) {
	.gallery--large .image-link {
		height:255px;
	}
}

@media screen and (min-width:1100px) {
	.gallery--large .image-link {
		height:280px;
	}
}

@media screen and (min-width:1300px) {
	.gallery--large .image-link {
		height:325px;
	}
}

.image-link.image-link--denied {
	position:relative;
}

.image-link.image-link--denied::after {
	content:"!";
	top:10px;
	right:10px;
	opacity:1.0;
	display:flex;
	align-items:center;
	justify-content: center;
	background-color:crimson;
	width:40px;
	height:40px;
	border-radius:50%;
	color:white;
	font-size:14px;
	font-weight:bold;
}


