


/* ================================= */
		/*===== Typography =====*/
/* ================================= */
body {  
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.73;
  color: #3A3A3A;
  font-size: 15px;
  font-weight: 400;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
html,
body {
  height: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { 
  font-family: 'Poppins', sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-weight: 700;
  color: #000;
  margin: 0;
  text-transform: uppercase;
}
h1 {
  font-size: 41px;
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 32px;
}
h4 {
  font-size: 24px;
}
h5 {
  font-size: 18px;
}
h6 {
  font-size: 16px;
}
a {  
  color: #0891FF;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
a:hover, 
a:focus {
  color: #FF9933;
  text-decoration: none;
}
a:active {
  text-decoration: none;
}
p {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height:1.7em;
  color: #3A3A3A;
  font-size: 14px;
  font-weight: 400;
  
}
blockquote {  
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.64;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0; 
}
.clr-white {
  color: #FFF;
}
.clr-orange {
  color: #F00 !important;
}
.clr-black {
  color: #000;
}
.clr-blue {
  color: #0891FF;
}
.clr-green {
  color: #267331;
}
::-webkit-input-placeholder { 
  color: #3A3A3A!important;
}
::-moz-placeholder { 
  color: #3A3A3A!important;
}
::-ms-input-placeholder { 
  color: #3A3A3A!important;
}
::-o-input-placeholder { 
  color: #3A3A3A!important;
}

.sc-list ul li {
    padding: 9px 0 10px 1.4em;
    border-bottom: 1px solid rgba(149,143,143,0.86);
    box-shadow: 0 1px 0 0 #fff;}
.location-list ul li {
    padding: 9px 0 10px 1.4em;
    border-bottom: 1px solid rgba(149,143,143,0.86);
    box-shadow: 0 1px 0 0 #fff;
	background:#069; font-size:1.4em; color:#fff !important;}

.margin-30{margin:30px 0;}
.margin-10{margin:10px 0;}
.margin-50{margin:50px;}
.padding-top-20{padding-top:20px;}
.padding-30{padding:30px;}

.heading1{font-size:42px; font-weight:400; line-height:50px; color:#666; }
.heading2{font-size:32px; font-weight:400; line-height:45px; color:#999; }

.heading8{font-size:42px; font-weight:400; line-height:50px; color:#333; }
.heading9{font-size:32px; font-weight:400; line-height:45px; color:#333; }
.pricediv{ padding:20px 60px; border:1pt #F00 solid; border-radius:20px 50px; display:inline-block; 
text-align:center; box-sizing:content-box; background:rgba(255,255,255,0.8); }

/* ================================= */
    /*===== General =====*/
/* ================================= */
.overlay-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);   
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;      
}
.parallax {
  width: 100%;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;   
  position: relative;      
}
.btn-default {
  font-size: 14px;
  text-align: center;
  color: #FFF;
  border-radius: 0;
  padding: 10px 15px;
  border: none;
  background: #0891FF;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.btn-default:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FF9933;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.btn-default:hover, 
.btn-default:focus, 
.btn-default:active {
  color: #FFF;
  background: #0891FF;
}
.btn-default:hover:before, 
.btn-default:focus:before, 
.btn-default:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.btn-orange {
  font-size: 14px;
  text-align: center;
  color: #FFF;
  border-radius: 0;
  padding: 10px 15px;
  border: none;
  background: #FF9933;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.btn-orange:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0891FF;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.btn-orange:hover, 
.btn-orange:focus, 
.btn-orange:active {
  color: #FFF;
}
.btn-orange:hover:before, 
.btn-orange:focus:before, 
.btn-orange:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.read-more {
  font-size: 14px;
  line-height: 1.71;
  color: #0891FF;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;  
}
.read-more:hover {
  color: #FF9933;
}
.section {
  margin: 0 0 40px;
}
.section-heading {
  color: #000;
}
.sub-heading {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
  margin-top: 8px;
}
.form-control:focus {
  border-color: rgba(8,145,255,1);   
  -webkit-box-shadow: none;
  box-shadow: none;
}
.owl-prev {
  left: 0;
}
.owl-next {
  right: 0;
}
.owl-prev,
.owl-next { 
  color: #FFF;
  font-size: 50px;
  position:absolute; 
  top: 50%;
  transform: translate(0, -50%);
  width: 54px;
  height: 84px;
  background-color: rgba(0,0,0,0.6);
  text-align: center;
  line-height: 84px;
  z-index: 10;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.owl-prev:hover,
.owl-next:hover {  
  background-color: rgba(0,0,0,1);
  color: #FFF;
}
.owl-dots {
  margin: 0 auto;
  left: 0;
  right: 0;
  text-align: center;
}
.owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: 1px solid #000;
  background: transparent;
  margin-right: 5px;
  display: inline-block; 
}
.owl-dot.active {
  border: 1px solid #0891FF;
  background: #0891FF;
}
@media(max-width:767px) {  
  .owl-nav {
    visibility: hidden;
  }   
}
.mrgn-top-30 {
  margin-top: 30px;
}
@media (max-width:992px) {
  .mrgn-top-30 {
    margin-top: 0;
  }  
}
.breadcrumb { 
  position: absolute;
  background-color: transparent;
  padding: 8px 0;
}
.breadcrumb li a {
  font-size: 14px;
  font-weight: 400;
}
.breadcrumb li.active a {
  color: #FF9933;
}
.page-banner-main {
  width: 100%;
  height: 500px;
top:70;
background-position:100% 30%;
  background-repeat: no-repeat;
  background-size: cover;  
  position: relative;    
}
.page-banner-main .page-banner-block {
  width: auto;
  height: auto;
  background-color: rgba(255,255,255,0.8);
  padding: 22px 100px 57px 29px;
  border-left: 5px solid #0891FF;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%); 
  margin-top: 30px; 
}
.page-banner-main .section {
  margin: 0 0 8px;
}
.facebook:hover {
  color: #3B5998;
}

.top-margin-40{margin-top:40px;}

/* ================================= */
    /*===== Top Bar =====*/
/* ================================= */
.top-bar {
  height: 40px;
  background-color: #F4F4F4;
  border-top: 4px solid #0891FF;
}
.info-bar ul li {
  display: inline-block;
  font-size: 13px;
  font-weight: 300;
  line-height: 2.5;
  color: #424242;
  margin-right: 15px;
}
.info-bar ul li i {
  color: #0891FF;
  margin-right: 7px;
}
.top-bar-right {
  text-align: right;
}
.top-menu {
  display: inline-block;
}
.top-menu ul li {
  display: inline-block;
  font-size: 13px;
  font-weight: 300;
  line-height: 2.5;
  color: #424242;
  margin-right: 10px;
}
.top-menu ul li a {
  color: #424242;
}
.top-menu ul li a:hover {
  color: #FF9933;
}
.social-icon {  
  float: right;
  width: 165px;
  text-align: center;

}
.social-icon ul li {
  display: inline-block;
  border: 2px solid #FFF;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 25px;
  border-radius: 100%;
  background-color: #0891FF;
  margin: 1.5px 0 3.5px;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease; 
}
.social-icon ul li a {
  color: #FFF;
}
.social-icon ul li:hover {  
  background-color: #FFF; 
}
.social-icon ul li:hover a {
  color: #0891FF;
}

/* ================================= */
    /*===== Navigation =====*/
/* ================================= */
.logo {
  padding: 18px 0 14px;
}
.navigation {
  position: relative;
  margin: auto;
  z-index: 1111;
  margin-top: 30px;
}
.navbar-default,
.nav-bar { 
  -webkit-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;  
}
.top-nav-collapse {
  margin-top: 0; 
  background-color: #000;
  box-shadow: 0 1px 15px rgba(0,0,0,0.2);
  -webkit-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;  
}
@media(max-width:767px) {   
  .logo img {
    width: 40%;
    margin: 0 auto;
    left: 0;
    right: 0;
    display: block;
  }
  .navigation {   
    margin-top: 0;
  }
  #cssmenu > ul > li > a {
    padding: 16px 15px;
  }
  #cssmenu.small-screen #menu-button {
    color: #267331;
    font-size: 14px;
  }  
  #cssmenu.small-screen #menu-button:before {
    background: #267331;   
  }
  #cssmenu.small-screen #menu-button:after {     
    background: #267331;   
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
  }
  #cssmenu.small-screen ul ul li a {
    color: #FFF;
  }
  #cssmenu.small-screen ul ul li a:hover {
    color: #FFF;
  }
  #cssmenu.small-screen .submenu-button:before {    
    background: #FFF;
  }
  #cssmenu.small-screen .submenu-button:after {   
    background: #FFF;
  }
  #cssmenu.small-screen .submenu-button.submenu-opened {
    background: #0891FF;
  }
}
@media (min-width: 767px) and (max-width: 992px) { 
  .logo img {
    display: block;
    margin: 0 auto;
  }
  .navigation {   
    margin-top: 0;
  }  
  #cssmenu > ul > li {
    margin-top: 15px;  
  }
  #cssmenu > ul > li > a {
    padding: 10px 10px;   
  }
}

/* ================================= */
    /*===== Top Strip =====*/
/* ================================= */
.top_strip{
	float:left;
	width:100%;
	position:relative;
	background-color:#222222;
	padding:20px 0px;	
}
.top_location_wrap{
	float:left;
	width:auto;
	position:relative;	
}
.top_location_wrap p{
	color:#fff;
	margin:0px;
	font-family: 'Montserrat', sans-serif;
	font-size:12px;
	font-weight:300;	
}
.top_location_wrap p i{
	margin:0px 8px 0px 0px;	
}
.top_ui_element{
	float:right;
	width:auto;
	position:relative;	
}
.top_ui_element ul{
	float:left;
	width:100%;	
}
.top_ui_element ul li{
	position:relative;
	color:#fff;
	display:inline-block;
	font-family: 'Montserrat', sans-serif;
	padding:0px 15px;
	font-size:12px;
	font-weight:300;
	letter-spacing:1.4px;
}
.top_ui_element ul li:last-child{
	padding-right:0px;	
}
.top_ui_element ul li i{
	margin:0px 8px 0px 0px;	
}
.top_ui_element ul li a{
	color:#fff;	
}


/* ================================= */
    /*===== Home Slider =====*/
/* ================================= */
.home-slider-bg {
  width: 100%;
  height: 70vh;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;  
  position: relative;    
}
.slider-heading {
  color: #FFF;
}
.slider-dtl { 
  text-align: center;
  background-color: transparent;
  margin-top: 40vh;
  position: relative;
}
.slider-dtl-left {
  text-align: left
}
.slider-dtl-right {
  text-align: right;
}
.slider-heading {
  color: #0891FF;       
  font-size: 40px
}
.slider-dtl p {
  width: 60%;
  margin: 0 auto 20px;
  color: #FFF;
}
.slider-sub-heading{
  line-height: 1.67;
  color: #FFF;
}
.slider-dtl-left p {
  text-align: left;
  margin: 0 0 20px;
}
.slider-dtl-right p {
  text-align: right;
  width: 100%;
  padding-left: 40%;
  margin: 0 0 20px;
}
.home-slider {
  overflow: hidden;
}
.home-slider .owl-controls {
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.home-slider:hover .owl-controls {
  opacity: 1;
}
.home-slider .owl-prev {
  left: -30px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.home-slider .owl-next {
  right: -30px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.home-slider:hover .owl-prev {
  left: 0;
}
.home-slider:hover .owl-next {
  right: 0;
}
 /*===== Slider Effects =====*/
.home-slider.owl-carousel .owl-item .slider-heading {
  opacity: 0; 
  margin-left: -500px;
  -webkit-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transition-delay: 1.3s;
  -ms-transition-delay: 1.3s;
  -o-transition-delay: 1.3s;
  -moz-transition-delay: 1.3s;
  transition-delay: 1.3s;
}
.home-slider.owl-carousel .owl-item.active .slider-heading { 
  opacity: 1;  
  margin-left: 0;
}
.home-slider.owl-carousel .owl-item .slider-dtl p {
  opacity: 0; 
  -webkit-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transition-delay: 1.8s;
  -webkit-transition-delay: 1.3s;
  -ms-transition-delay: 1.8s;
  -o-transition-delay: 1.8s;
  -moz-transition-delay: 1.8s;
  transition-delay: 1.8s;
}
.home-slider.owl-carousel .owl-item.active .slider-dtl p { 
  opacity: 1;   
}
.home-slider.owl-carousel .owl-item .slider-btn {
  opacity: 0; 
  -webkit-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transition-delay: 2s;
  -webkit-transition-delay: 2s;
  -ms-transition-delay: 2s;
  -o-transition-delay: 2s;
  -moz-transition-delay: 2s;
  transition-delay: 2s;
}
.home-slider.owl-carousel .owl-item.active .slider-btn { 
  opacity: 1;   
}
@media(max-width:767px) { 
  .slider-dtl {
    width: 80%;
    height: auto;
  }
}


/* ================================= */
    /*===== Who We Are =====*/
/* ================================= */
.who-we-are-main-block {
  padding: 75px 0 40px;
}
.who-we-are-main-block .section {
  padding-bottom: 30px;
}
.who-we-are-main-block .section p {
  max-width: 750px;
  margin: 0 auto;
}
.who-we-are-main-block .section-heading {
  margin-bottom: 5px;
}
.who-we-are-points {
  margin-top: 33px;
}
.who-we-are-block {
  margin-bottom: 25px;
}
.who-we-are-icon {
  margin-bottom: 15px;
  display: inline-block;
}
.who-we-are-icon i {
  font-size: 65px;
  color: #FF9933;
}
.who-we-are-dtl {
  display: table;
}
.who-we-are-heading {
  text-transform: none;
  line-height: 1.33;
  margin-bottom: 4px;
}

/* ================================= */
    /*===== Services =====*/
/* ================================= */
.services-main-block {
  padding: 73px 0 43px;
}
.services-main-block .section {
  position: relative;
  padding-bottom: 30px;
}
.service-block {
  margin-bottom: 62px;  
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.service-icon {
  margin-bottom: 15px;
}
.service-icon i {
  font-size: 65px;
  color: #FF9933;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.service-block:hover .service-icon i {
  color: #0891FF;
}
.service-heading {
  line-height: 1.33;
  text-transform: none;
  margin-bottom: 10px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.service-heading a {
  color: #000;
}
.service-block .service-heading a:hover {
  color: #0891FF;
}


/* ================================= */
    /*===== About =====*/
/* ================================= */
.about-main-block .parallax {
  padding: 100px 0;
}
.about-main-block .overlay-bg {
  background-color: rgba(0,0,0,0.8);
}
.about-block {
  position: relative;
  max-width: 650px;
  margin: 0 auto;
}
.about-text {
  padding-bottom: 20px;
}
.about-text p {
  color: #FFF;
  font-size: 16px;
  padding-bottom: 10px;
  font-style: italic;
}
.contact-modal-body {
  padding: 50px 0;
  margin: 0 auto;
}
.contact-modal-body .form-group {
  margin-bottom: 20px;
}
.contact-modal-body .form-control {
  width: 60%;
  margin: 0 auto;
  box-shadow: none;
}
.contact-modal-body .form-control:focus,
.contact-modal-body textarea:focus {
  border-color: #739D52;
  outline: -webkit-focus-ring-color auto 0;
}
.contact-modal-body .btn-default {
  width: 60%;
  margin-top: 10px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.contact-model-body textarea {    
  width: 60%;
}
@media(max-width:767px) {  
  .contact-modal-body .form-control,
  .contact-modal-body textarea,
  .contact-modal-body .btn-default {
    width: 100%;
  }
}



/* ================================= */
    /*===== Gallery =====*/
/* ================================= */
.gallery-main-block {
  padding: 73px 0 43px;
}
.gallery-img {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}
.gallery-img img {
  width: 100%;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.gallery-img .overlay-bg {
  background-color: rgba(51,51,51,.5);
  -webkit-transform:scale(0);
  -moz-transform:scale(0);
  -ms-transform:scale(0);
  -o-transform:scale(0);
  transform:scale(0);
}
.gallery-block:hover .gallery-img img {
  -webkit-transform:scale(1.1);
  -moz-transform:scale(1.1);
  -ms-transform:scale(1.1);
  -o-transform:scale(1.1);
  transform:scale(1.1);
}
.gallery-block:hover .gallery-img .overlay-bg { 
  -webkit-transform:scale(1);
  -moz-transform:scale(1);
  -ms-transform:scale(1);
  -o-transform:scale(1);
  transform:scale(1);
}
.gallery-block .overlay-bg i {
  color: #FF9933;
  background-color: #FFF;
  font-size: 16px;
  line-height: 40px;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  text-align: center;
  position:absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateY(-50%);
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.gallery-title {
  color: #FFF;
  font-weight: 500;
  position: absolute;
  text-transform: none;
  left: 20px;
  bottom: 30px;
}

/* ================================= */
    /*===== Work Gallery =====*/
/* ================================= */
.work-gallery-main-block {
  position: relative;
}
.work-gallery-main-block .parallax {
  padding: 74px 0 80px;
}
.work-gallery-main-block .section-heading,
.work-gallery-main-block .sub-heading {
  color: #FFF;
  position: relative;
}
.work-gallery-block {
  position: relative;
  overflow: hidden;
}
.work-gallery-block .overlay-bg {
  text-align: center;
  background-color: rgba(255,153,51,1);
  -webkit-transform:scale(0);
  -moz-transform:scale(0);
  -ms-transform:scale(0);
  -o-transform:scale(0);
  transform:scale(0);
}
.work-gallery-block:hover .overlay-bg { 
  -webkit-transform:scale(0.95);
  -moz-transform:scale(0.95);
  -ms-transform:scale(0.95);
  -o-transform:scale(0.95);
  transform:scale(0.95);
  mix-blend-mode: multiply;  
  z-index: 1031;
}
.work-gallery-block img { 
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.work-gallery-block:hover img { 
  -webkit-transform:scale(1.3);
  -moz-transform:scale(1.3);
  -ms-transform:scale(1.3);
  -o-transform:scale(1.3);
  transform:scale(1.3);
}
.work-gallery-block .overlay-bg i {
  color: #FFF;
  font-size: 25px;
  line-height: 50px;
  border-radius: 100%;
  border: 2px solid #FFF;
  width: 50px;
  height: 50px;
  text-align: center;
  position:absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.work-gallery-block .overlay-bg i:hover {
  background-color: #0891FF;  
}
.work-gallery-two-main-block {
  padding: 72px 0 80px;
}
.work-gallery-two-main-block .section-heading,
.work-gallery-two-main-block .sub-heading {
  color: #000;
}

/* ================================= */
    /*===== Facts =====*/
/* ================================= */
.facts-main-block {
  position: relative;
}
.facts-main-block .parallax {
  padding: 101px 0 70px;
}
.facts-main-block .overlay-bg {
  background-color: rgba(0,0,0,0.8);
}
.facts-block {
  margin: 0 auto 30px; 
}
.facts-block .facts-icon {
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 121px;
  height: 121px;
  background-color: transparent;
  border: solid 3px #0891FF;
  border-radius: 100%;
  font-size: 46px;
  color: #FF9933;
  line-height: 110px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.facts-block:hover .facts-icon {  
  background-color: #0891FF;
  border: solid 3px #0891FF; 
  color: #FFF;
}
.facts-number {
  color: #FFF;
  margin-top: 22px;
}
.facts-text {
  color: #FFF;
  line-height: 1.63;
}
/* ================================= */
    /*===== Testimonials =====*/
/* ================================= */
.testimonials-main-block {
  position: relative;
}
.testimonials-main-block .overlay-bg {
  background-color: rgba(0,0,0,0.7);
}
.testimonials-main-block .parallax {
  padding: 59px 0 63px;
}
.testimonials-main-block .section {
  position: relative;
  margin: 0 0 80px;
}
.testimonials-main-block .section-heading {
  color: #FFF;
}
.testimonials-slider {
  cursor: -webkit-grab;
}
.testimonials-dtl-main {
  background-color: #FFF;
  padding: 25px;
}
.item.testimonials-block {
  position: relative;
}
.testimonials-dtl p {
  font-style: italic;
  padding-bottom: 10px;
}
.testimonials-client-img {
  width: 70px;
  height: 70px;
  margin-right: 20px;
  float: left;
  position: relative;
}
.testimonials-client-img img {
  border-radius: 100%;
  border: 2px solid #0891FF;
  position: relative;
}
.testimonials-client-dtl {
  display: inline;
}
.testimonials-client-dtl .client-name {
  float: left;
  padding-top: 6px;
  padding-right: 15px;
} 
.testimonials-client-dtl .client-since {
  font-size: 13px;
  line-height: 1.69;
  color: #3A3A3A;
  text-align: center;
}
.testimonials-slider .owl-dots {
  margin: 38px auto 0;
  left: 0;
  right: 0;
  text-align: center;
}
@media(max-width:992px) { 
  .testimonials-dtl-main {
    margin-bottom: 80px;
  }  
}



/* ================================= */
    /*===== Map =====*/
/* ================================= */
.map-location {
  width: 100%;
  height: 520px;
}

/* ================================= */
    /*===== Footer =====*/
/* ================================= */
.footer-main-block {
  background-color: #000;
  position: relative;
}
.footer-main-block .overlay-bg {
  background: rgba(0,0,0,0.8);   
}
.footer-block {
  padding: 70px 0 17px;
}
.footer-widget {
  margin-bottom: 30px;
}
.footer-about p {
  margin-top: 22px;
  color: #BDBDBD;
}
.footer-heading {
  color: #FFF;
  margin-bottom: 25px
}
.footer-services ul li a {
  font-size: 14px;
  line-height: 2.14;
  color: #BDBDBD;
}
.footer-services ul li a:hover {
  color: #FF9933;
}
.footer-services ul li i {
  margin-right: 10px;
}
.footer-opening .opening-day {
  font-size: 14px;
  line-height: 2.14;
  color: #F3F3F3;  
}
.opening-day {
  font-size: 14px;
  line-height: 2.14;
  color: #F3F3F3;  
}
.footer-opening .opening-time {
  font-size: 14px;
  line-height: 2.14;
  color: #F3F3F3;  
  text-align: right;
}
.opening-time {
  font-size: 14px;
  line-height: 2.14;
  color: #F3F3F3;  
  text-align: right;
}

.footer-subscribe .social-icon {  
  margin-top: 25px;   
  float: left;
  width: 100%;
  text-align: left;
  background-color: transparent;
}
.footer-subscribe .social-icon span {
  color: #BDBDBD;
  display: inline-block;
  float: left;
  margin-right: 15px;
}
.footer-subscribe .social-icon ul li {
  background-color: transparent; 
  margin: 0 2px 0;
}
.footer-subscribe .social-icon ul li a {
  color: #FFF;
}
.footer-subscribe .social-icon ul li:hover {  
  background-color: #FF9933; 
}
.footer-main-block hr {
  border-top: 1px solid #FFF;
}
.copyright-text p {
  padding: 14px 0 26px;
  color: #BDBDBD;
}


/* ================================= */
    /*===== 404 Page / 403 Page =====*/
/* ================================= */
.error-page-main {
  margin: 67px 0 80px;
}
.error-heading {  
  font-size: 250px;
  color: #03A3C7;
  line-height: 0.87;
  letter-spacing: 35px;
}
.error-heading span {
  color: #FF9933;  
}
.error-dtl p {
  margin-top: 5px;
  font-size: 18px;
}
.error-btn {
  margin-top: 25px;
}
@media(max-width:767px) { 
  .error-heading {  
    font-size: 100px;
  }  
}

/* ================================= */
    /*===== Faq's =====*/
/* ================================= */
.faq-main-block {
  margin: 72px 0 60px;
}
.faq-panel .panel-default .panel-heading {
  background-color: #FFF;
  border-color: #F4F4F4;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.faq-panel .panel-default .panel-heading:hover {
  background-color: #0891FF;
}
.faq-panel .panel-default .panel-heading .faq-heading a {
  text-transform: none;
  color: #000;
}
.faq-panel .panel-default .panel-heading .faq-heading a:hover{
  color: #FFF;
}
.faq-panel .panel-default .panel-heading:hover .faq-heading a {
  color: #FFF;
}
.panel-group .panel {
  border-radius: 0;
  margin-bottom: 20px;
}
.panel-default>.panel-heading+.panel-collapse>.panel-body { 
  box-shadow: 0px 3px 9.3px 0.7px rgba(198, 198, 198, 0.35);
}



/* ================================= */
    /*===== Process =====*/
/* ================================= */
.process-main-block {
  margin-top: 73px;
  margin-bottom: 46px;
}
.process-heading {
  margin-top: 20px;
}
.process-block {
  margin: 0 auto 30px; 
}
.process-block .process-icon {
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 121px;
  height: 121px;
  background-color: transparent;
  border: solid 3px #0891FF;
  border-radius: 100%;
  font-size: 46px;
  color: #0891FF;
  line-height: 110px;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.process-block:hover .process-icon {  
  background-color: #0891FF;
  border: solid 3px #0891FF; 
  color: #FFF;
}

/* ================================= */
    /*===== Under Construction Page =====*/
/* ================================= */
.comming-soon-main .social-icon {
  float: none; 
  margin: 38px auto 0;
  left: 0;
  right: 0;
  text-align: center;
  background-color: transparent;
}
.comming-soon-main .social-icon ul li:hover {  
  background-color: #3A3A3A; 
}
.comming-soon-main .social-icon ul li:hover a {  
  color: #FFF; 
}



/* ================================= */
    /*===== Services Details =====*/
/* ================================= */
.services-dtl-main-block {
  margin: 80px 0 37px;
}
.services-heading {
  margin: 15px 0 8px;
}
.services-content li {
  margin: 10px 0 0;
  color: #3A3A3A;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.services-content i {
  margin-right: 10px;
  color: #E31E24;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
} 
.services-content li:hover i {
  color: #22222;
}
.services-main-block.service-inner {
  margin: 0 0 15px;
}
@media(max-width:992px) { 
  .services-content {
    text-align: center;
  }  
}






/* ================================= */
    /*===== Contact Page =====*/
/* ================================= */
.contact-page-main-block {
  padding: 73px 0 80px;
}
.contact-form .form-control {
  background-color: transparent;
  color: #3A3A3A;
  border: solid 1px #2F2F2F;
  border-radius: 0;
  width: 100%;
  height: 40px;
}
.contact-form textarea {
  font-size: 14px;
  padding-top: 10px;
  padding-left: 15px;
  color: #3A3A3A;
  width: 100%;
  border: 1px solid #2F2F2F;
  background-color: transparent;
  margin: 7px 0;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075); 
}
.contact-form textarea:focus  {
  outline: -webkit-focus-ring-color auto 0;
}
.contact-form .btn-default {
  float: right;
}
.contact-block ul li i {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 25px;
  color: #fff;  
  line-height: 45px;
  border: solid 2px #267331;
  border-radius:25px;
  margin-right: 15px;
  margin-bottom: 10px;  background-color:#267331;
}
.contact-map {
  height: 290px;
}
.contact-form-block {
  margin-top: 23px;
}
.contact-page-two-block {
  padding: 35px 0 80px;
}
.contact-block-two i {
  font-size: 25px;
  background-color: #F4F4F4;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  margin-bottom: 10px;
  color: #0891FF;  
} 

/* ================================= */
    /*===== Preloader =====*/
/* ================================= */
.preloader { 
  background:rgba(0,0,0,.6);
  bottom: 0;
  top: 0;
  left: 0; 
  right: 0;  
  position: fixed;
  z-index: 9999999;
}
.status {
  background-image: url(../images/loading.gif);
}
.status,
.status-message {   
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0; 
  right: 0;  
  background-position: center;
  background-repeat: no-repeat;     
}
.status-message {
  padding-top: 30%;
}