@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,300,700,600,900);
@import url(https://fonts.googleapis.com/css?family=Ropa+Sans);
*{
    padding: 0;
    margin: 0;
    outline: none;
    border: none;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
body{
    background: #e8e8e8;
    font-family: 'Source Sans Pro', sans-serif;
}
img{
    max-width: 100%;
}
.clear{
    clear: both;
}
h1{
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 30px;
    line-height: 36px;
    font-weight: bold;
    color: #fff;
    text-align: left;
}
.wrapper{
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}
.container{
    width: 100%;
    float: left;
    background: #fff;
    padding: 0 10px;
}
.header{
    width: 100%;
    float: left;
    padding: 17px 0 20px;
	text-align:center;
}
.logo{
    float: left;
    margin-top: 10px;
}
.right_section{
    float: right;
    margin-top: 5px
}
.right_section p{
    font-size: 34px;
    font-weight: bold;
    line-height: 36px;
    text-align: left;
    color: #223480;
    text-transform: uppercase;
    margin-top: 30px;
}
.right_section p a{
    color: #223480;
}
.right_section p a span{
    float: left;
    width: 90px;
    text-align: right;
}
.header-middle {
    display:inline-block;
    background: #fff;
    border: 1px solid #efefef;
    padding: 0 5px;
    
}
.nav{
    width: 100%;
    float: left;
    background: #223480;
    border-radius: 5px;
    overflow: hidden;
}
.nav ul{
    width: 100%;
    float: left;
}
.nav ul li{
    display: inline-block;
    float: left;
    font-family: 'Ropa Sans', sans-serif;
    font-size: 19px;
    line-height: 28px;
    font-weight: normal;
    color: #fff;
    text-transform: uppercase;
    margin-right: 1px;
}
.nav ul li a{
    color: #fff;
    display: block;
    padding: 12px 30px;
    transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
}
.nav ul li a:hover{
    background: #0c1640;
}
.nav ul li a.active{
    background: #0c1640;
}
.banner{
    width: 100%;
    float: left;
    padding: 10px 0;
}
.banner_column1{
    width: 28%;
    float: left;
    background: #223480;
    border-radius: 5px;
    padding: 15px;
    margin-right: 1%;
}
.banner_column2{
    width: 71%;
    float: right;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    overflow: hidden;
}
.form_box{
    width: 100%;
    float: left;
    margin-bottom: 10px;
}
.form_box h1{
    color: #fff;
    text-transform: uppercase;
}
.form_box form{
    width: 100%;
    float: left;
}
.form_box form label{
    font-size: 18px;
    line-height: 36px;
    color: #fff;
    font-weight: normal;
    width: 100%;
    text-align: left;
    font-style: italic;
}
.form_box form input[type='text']{
    width: 100%;
    float: left;
    padding: 10px 0;
    border-radius: 5px;
    padding-left: 10px;
}
.form_box form input[type='submit']{
    padding: 0 15px;
    float: left;
    border-radius: 5px;
    font-size: 18px;
    line-height: 36px;
    font-weight: bold;
    color: #223480;
    background: #f0f0f0;
    margin-top: 15px;
    text-transform: uppercase;
    cursor: pointer;
    border: solid 1px #f0f0f0;
    transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
}
.form_box form input[type='submit']:hover{
    background: #060f37;
    color: #fff;
}
.lSPager{
    display: none;
}
#image-gallery li img{
    display: block;
    width: 100%;
}

.content{
    width: 100%;
    float: left;
}
.content_row1{
    width: 100%;
    float: left;
}
.content_row1 ul{
    width: 100%;
    float: left;
}
.content_row1 ul li{
    display: inline-block;
    float: left;
    width: 32%;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 2%;
}
.content_row1 ul li:last-child{
    margin-right: 0;
}
.content_row1_box{
    width: 100%;
    float: left;
    background: #eaeaea;
}
.content_row1_box h3{
    font-family: 'Ropa Sans', sans-serif;
    font-size: 22px;
    line-height: 28px;
    font-weight: normal;
    color: #fff;
    text-align: left;
    text-transform: uppercase;
    background: #d30936;
    padding: 8px 10px;
}
.content_row1_box p{
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
    color: #434343;
    padding: 10px;
    min-height: 236px;
}
.content_row1_box a{
    display: block;
    background: #d30936;
    border: solid 1px #d30936;
    color: #fff;
    font-size: 15px;
    line-height: 34px;
    font-weight: bold;
    float: left;
    margin: 5px 0 10px 10px;
    border-radius: 5px;
    padding: 0 10px;
    transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
}
.content_row1_box a:hover{
    background: #fff;
    color: #d30936;
}
.content_row2{
    width: 100%;
    float: left;
    padding: 30px 0;
}
.content_row2_column1{
    width: 100%;
    float: left;
}
.content_row2_column1 h1{
    color: #223480;
    margin-bottom: 10px;
}
.content_row2_column1 p{
    font-size: 17px;
    line-height: 28px;
    font-weight: normal;
    color: #4a4a4a;
}
.content_row2_column1 ul{
    width: 100%;
    float: left;
    margin-top: 30px;
}
.content_row2_column1 ul li{
    width: 100%;
    display: inline-block;
    float: left;
    font-size: 18px;
    line-height: 35px;
    font-weight: normal;
    color: #4a4a4a;
    background: url(../images/tick-mark.png) left 12px no-repeat;
    padding-left: 30px;
}
.content_row2_column1 i{
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    color: #223480;
    margin-top: 20px;
    width: 100%;
    float: left;
}
.content_row2_column2{
    width: 25.5%;
    float: right;
}
.content_row2_column2_row1{
    width: 100%;
    float: left;
    border-radius: 5px;
    overflow: hidden;
    border:solid 1px #dddddd;
}
.content_row2_column2_row1 p{
    font-size: 19px;
    line-height: 27px;
    font-weight: normal;
    color: #333333;
    padding: 10px;
    font-family: 'Ropa Sans', sans-serif;
}
.content_row2_column2_row1 h4{
    font-family: 'Ropa Sans', sans-serif;
    font-size: 25px;
    line-height: 27px;
    font-weight: normal;
    color: #fff;
    background: #223480;
    padding: 6px 10px;
    text-transform: uppercase;
}
.content_row2_column2_row1 i{
    font-family: 'Ropa Sans', sans-serif;
    font-size: 21px;
    line-height: 27px;
    font-weight: normal;
    color: #4f4f4f;
    padding: 0 10px;
    float: left;
    font-style: normal;
}
.content_row2_column2_row1 i span{
    color: #223480;
}
.content_row2_column2_row2{
    width: 100%;
    float: left;
    border: solid 1px #ccc;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 12px;
}
.content_row2_column2_row3{
    width: 100%;
    float: left;
    border: solid 1px #ccc;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 12px;
}
.footer{
    width: 100%;
    float: left;
    background: #223480;
    padding: 25px 10px;
}
.footer p{
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    float: left;
}
.footer span{
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    float: right;
}
.footer span a{
    color: #fff;
    text-decoration: underline;
}
.footer span a:hover{
    text-decoration: none;
}
.inner{
    width: 100%;
    float: left;
    padding: 10px 0 20px 0;
}
.inner h1{
    color: #223480;
}
.cleaning_img{
    margin-top: 10px;
}
.inner ul{
    margin-top: 10px;
}
/*captcha*/
.captchadiv #success,
#fail {
  display: none;
}
.captchadiv #message,
.captchadiv #success,
.captchadiv #fail {
  margin-top: 10px;
  margin-bottom: 10px;
}
.captchadiv #fail {
 color:red;
}
.captchadiv #success{
 color:#044b0f;
}
.captchadiv .container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.fcaptchadiv p {
  display: inline;
  margin-right: 5px;
  float:left;
}
.captchadiv input,
.captchadiv button {
  font-family: 'Open Sans';
  font-weight: lighter;
  font-size: 12px;
}
.captchadiv input {
 width: 200px !important;
height: 35px;
text-align: center;
}
/*--------------------contact-form-----------------------*/

.inner{
    width: 100%;
}
.content{
    width: 100%;
    float: left;
}
.contact_left{
    width: 50%;
    float: left;
}
.contact-form_address{
    width: 100% !important;
    float: left;
}
.contact-form_address li{
    background: none !important;
}
.contact-form_address li,.contact-form_address li lable{
    display: block;
    width: 100%;
    float: left;
    font-size: 16px;
    line-height: 25px;
    color: #353535;
    text-align: left;
    padding: 0;
    font-weight: 600;
    background: none;
}
.contact-form_address li a{
    display: inline-block;
    text-decoration: underline;
    color: #2872b1;
}
.contact-form_address li a:hover{
    text-decoration: none;
    color: #707070;
}
.contact-form_address li:first-child{
    font-size: 16px;
    color: #353535;
    text-align: left; 
    font-weight: bold;
}
.contact-form_address li:nth-child(2){
    line-height: 25px;
}
.contact-form_address li:nth-child(3){
    line-height: 25px;
}
.contact-form_address li:last-child{
    color: #353535;
    margin-top: 15px;
}
.contact-form_address p a:hover{
    text-decoration: none;
    color: #de2110;
}
.map{
    width: 100%;
    float: left;
    border: solid 2px #c90833;
    margin-top: 15px;
}
.map iframe{
    width: 100%;
    float: left;
    height: 310px;
    padding: 2px
}
.contact_right{
    width: 50%;
    float: left;
}
.contact_right h3{
    color: #c90833;
    font-size: 23px;
    font-weight: normal;
    line-height: 22px;
    margin-bottom: 20px;
    text-align: left;
    font-weight: bold;
}
.contact_right form{
    width: 100%;
    float: left;
    padding: 0px 0px 0px 40px;
}
.contact_right form label{
    font-size: 16px;
    line-height: 25px;
    color: #707070;
    float: left;
    text-align: left; 
    font-weight: 600;
    margin: 2px 0px;
    width: 100%;
}
.contact_right form input[type='text']{
    width: 100%;
    padding: 8px 0;
    float: left;
    border: solid 1px #ddd;
    padding-left: 10px;
    font-size: 14px;
    margin-bottom: 3px;
    transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -webkit-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
}
.contact_right form input[type='text']:focus{
    border: solid 1px #c90833;
}
.contact_right form textArea{
    width: 100%;
    height: 100px;
    float: left;
    padding-left: 10px;
    padding-top: 5px;
    font-size: 14px;
    margin-bottom: 5px;
    border: solid 1px #ddd;
    transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
}
.contact_right form textArea:focus{
    border: solid 1px #c90833;
}
.contact_right form input[type='submit']{
    float: left;
    width: 120px;
    height: 45px;
    margin-top: 10px;
    font-size: 16px;
    line-height: 25px;
    border: none;
    cursor: pointer;
    color: #fff;
    background: #c90833;
    border-radius: 2px;
    transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
}
.contact_right form input[type='submit']:hover{
    background: #9d0023;
}
.map2{
    display: none;
}
.column{
    display: none;
}
#banner_form{
    display: none;
}
.iconic{

}
.error{
	background:#ff0000;
	color:#fff;
	padding:5px;
	border-radius:5px;
	font-size:14px;
	letter-spacing:1px;
	margin-bottom:10px;
	font-weight:bold;	
}
.success{
	background:#093;
	color:#fff;
	padding:5px;
	border-radius:5px;
	font-size:14px;
	letter-spacing:1px;	
}
.review-box {
	width:100%;
	float:left;
}
.review-box-inn {
	width:100%;
	float:left;
	box-shadow:0px 2px 2px 2px rgba(0, 0, 0, 0.24);
	padding:5px;
	border-radius:5px;
	margin-bottom:20px;
}
.review-box-inn h3 {
	color:#223480;
	font-size:18px;
	margin-bottom:10px;
}
.review-box-inn h4 {
	float:right;
	font-size:14px;
	font-style:italic;
	color:#223480;
}
.gallery{width:100%;float:left;}
.gallery ul{list-style:none;overflow:hidden;padding:0;margin:0;}
.gallery ul li{float:left;padding:4px 4px 1px 4px;width:22.7%;margin:0 3% 2% 0;box-sizing:border-box;display:inline-block;background:#F3F3F3;-webkit-box-shadow:0px 5px 5px 0px rgba(0, 0, 0, 0.24);-moz-box-shadow:0px 5px 5px 0px rgba(0, 0, 0, 0.24);box-shadow:0px 5px 5px 0px rgba(0, 0, 0, 0.24);}
.gallery ul li:nth-child(4n){margin-right:0;}
#lightbox{cursor:pointer;position:fixed;width:100%;height:100%;top:0;left:0;z-index:115;background:rgb(0, 0, 0);background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAIElEQVQ4T2NkYGDYDMRkA8ZRAxhGw4BhNAyA+WAYpAMAIFgLQfO9BoEAAAAASUVORK5CYII=);background:rgba(0, 0, 0, 0.7);-webkit-filter:none !important;}
#lightbox img{display:block;position:absolute;border:5px solid #fff;box-shadow:0 0 20px #000;border-radius:1px;}
body.blurred > *{-webkit-filter:blur(2px);-webkit-transform:translate3d(0, 0, 0);}
.lightbox-loading{background:url(loading.gif) center center no-repeat;width:31px;height:31px;margin:-16px 0 0 -16px;position:absolute;top:48%;left:50%;}
.lightbox-caption{display:none;position:absolute;left:0;bottom:0;width:100%;text-align:center;z-index:1000;background:#000;background:rgba(0,0,0,0.7);}
.lightbox-caption p{margin:0 auto;max-width:70%;display:inline-block;*display:inline;*zoom:1;padding:10px;color:#fff;font-size:13px;line-height:18px;}
.lightbox-button{position:absolute;z-index:9999;background:no-repeat center center;width:32px;height:32px;opacity:0.4;-webkit-transition:all 0.3s;-moz-transition:all 0.3s;-ms-transition:all 0.3s;transition:all 0.3s;}
.lightbox-button:hover,
.lightbox-button:focus{opacity:1;-webkit-transform:scale(1.4);-moz-transform:scale(1.4);-ms-transform:scale(1.4);transform:scale(1.4);}
.lightbox-close{right:10px;top:10px;background-image:url(../images/close.png);}
.lightbox-next{right:10px;top:48%;background-image:url(../images/next.png);}
.lightbox-previous{left:10px;top:48%;background-image:url(../images/previous.png);}
@media only screen and (max-width:1100px){
    .wrapper{
        width: 96%;
    }
    .banner_column2{
        width: 100%;
    }
    #banner_form{
        display: block;
        width: 100%;
    }
    .banner_column1{
        width: 100%;
        margin: 10px 0 0 0;
    }
    .form_box h1{
        text-align: center;
    }
}
@media only screen and (max-width:980px){
    .content_row1 ul li{
        width: 100%;
        margin-bottom: 10px;
    }
    .content_row1 ul li:last-child{
        margin-bottom: 0;
    }
    .content_row1_box p{
        min-height: auto;
    }
	 
}
@media only screen and (max-width:880px) {
	.logo{
        width: 100%;
        text-align: center;
    }
    .right_section{
        width: 100%;
        float: left;
    }
    .right_section p a span{
        float: none;
    }
    .right_section p{
        text-align: center;
        margin-top: 10px;
        line-height: 26px;
    }
	.header-middle {
		margin:15px 0;
	}
}
@media only screen and (max-width:800px){
   
    .nav{
        display: none;
    }
    .column{
        display: block;
    }
      
    .contact_left,.contact_right{
        width: 100%;
    }
    .contact-form_address li{
        text-align: center !important;
    }
    .inner h1,.inner h3{
        text-align: center;
    }
    .contact_right{
        margin-top: 10px;
    }
    .map{
        display: none;
    }
    .map2{
        display: block;
    }
    .contact_right form{
        padding: 0px;
    }
    .content_row2_column1{
        width: 100%;
        margin-bottom: 20px;
    }
    .content_row2_column2{
        width: 100%;
    }
    .content_row2_column2_row1{
        text-align: center;
    }
    .content_row2_column2_row1 i{
        width: 100%
    }
    .content_row2_column2_row2{
        margin-right: 2%;
    }
    .content_row2_column2_row2 img{
        padding-top: 50px;
    }
    .content_row2_column2_row2,.content_row2_column2_row3{
        width: 49%;
        min-height: 208px;
        text-align: center;
    }
    .content_row2_column1 ul li{
        width: 50%;
    }
    .right_section p{
        font-size: 30px;
    }
}
@media only screen and (max-width:768px){
    .footer{
        padding: 10px;
    }
    .footer p,.footer span{
        width: 100%;
        text-align: center;
    }
}
@media only screen and (max-width:640px){
    .content_row2_column1 ul li{
        width: 100%;
    }
	.content_row2_column1 ul li img {
		width:100%;
	}
}
@media only screen and (max-width:480px){
    .content_row2_column2_row2, .content_row2_column2_row3{
        width: 100%;
    }
    .dl-menuwrapper:first-child{
        left: 0;
        position: absolute;
        top: 180px;
    }
  
    .right_section p {
        font-size: 28px;
    }
	.dl-menuwrapper button {
		top: -100px;
    left: 15px;
	}
	.dl-menuwrapper .dl-menu {
		top: -50px !important;
	}
}
@media only screen and (max-width:360px){

}
@media only screen and (max-width:320px){

}
