/* =================================== */
/*	Basic Style 
/* =================================== */

body {
    background-color: #fff;
    font-family: 'Open Sans', sans-serif;
    line-height: 24px;
    font-size: 16px;
    color: #818181;
}

body.animated {
	-webkit-transform: translate3d(-146px, 0px, 0px);
	-moz-transform: translate3d(-146px, 0px, 0px);
	-ms-transform: translate3d(-146px, 0px, 0px);
	-o-transform: translate3d(-146px, 0px, 0px);
	transform: translate3d(-146px, 0px, 0px);
}

figure, p, address {
    margin: 0;
}

p {
    line-height: 25px;
}

iframe {
    border: 0;
}

a {
    -webkit-transition: all 0.3s ease-out 0s;
       -moz-transition: all 0.3s ease-out 0s;
        -ms-transition: all 0.3s ease-out 0s;
         -o-transition: all 0.3s ease-out 0s;
            transition: all 0.3s ease-out 0s;
}

a, a:hover, a:focus, .btn:focus {
    text-decoration: none;
    outline: none;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Open Sans', sans-serif;
    color: #252525;
}

main > section {
    padding: 70px 0;
}

.btn {
    border-radius: 4px;
    border: 0;
    position: relative;
    text-transform: uppercase;
}

.btn-blue {
    background-color: rgba(0,158,227, 0.78);
    box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.15) inset;
    padding: 10x 18px;
	width: 150px;
    color: #fff;
}

.btn-border {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 35px;
}

.bg-blue {
    background-color: #009EE3;
}

/* Sweep To Right */
.btn-effect {
	vertical-align: middle;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	position: relative;
	display: inline-block;

	-webkit-transform: translateZ(0);
	   -moz-transform: translateZ(0);
		-ms-transform: translateZ(0);
		 -o-transform: translateZ(0);
			transform: translateZ(0);
		  
	-webkit-backface-visibility: hidden;
	   -moz-backface-visibility: hidden;
			backface-visibility: hidden;
		  
	-webkit-transition-property: color;
	   -moz-transition-property: color;
		-ms-transition-property: color;
			transition-property: color;
		  
	-webkit-transition-duration: 0.3s;
	   -moz-transition-duration: 0.3s;
		-ms-transition-duration: 0.3s;
			transition-duration: 0.3s;
		  
	-moz-osx-font-smoothing: grayscale;
}

.btn-effect:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	color: #009EE3;
	background: #fff;
	
	-webkit-transform: scaleX(0);
	   -moz-transform: scaleX(0);
		-ms-transform: scaleX(0);
			transform: scaleX(0);
			
	-webkit-transform-origin: 0 50%;
	   -moz-transform-origin: 0 50%;
		-ms-transform-origin: 0 50%;
			transform-origin: 0 50%;
			
	-webkit-transition-property: transform;
	   -moz-transition-property: transform;
		-ms-transition-property: transform;
			transition-property: transform;
			
	-webkit-transition-duration: 0.3s;
	   -moz-transition-duration: 0.3s;
		-ms-transition-duration: 0.3s;
			transition-duration: 0.3s;
			
	-webkit-transition-timing-function: ease-out;
	   -moz-transition-timing-function: ease-out;
		-ms-transition-timing-function: ease-out;
			transition-timing-function: ease-out;
}

.btn-effect:hover, .btn-effect:focus, .btn-effect:active {
	color: #009EE3;
}

.btn-effect:hover:before, .btn-effect:focus:before, .btn-effect:active:before {
	-webkit-transform: scaleX(1);
	   -moz-transform: scaleX(1);
	    -ms-transform: scaleX(1);
			transform: scaleX(1);
}

.sec-title {
    margin-bottom: 50px;
}

.thanks {
	margin-top: 175px;
	padding-bottom: 175px;
}
div.thanks p {
	font-size: 1.1em;
	margin-bottom: 10px;
}

.sec-title.white {
    color: #fff;
}

.sec-title h2 {
    font-size: 36px;
	letter-spacing: .2em;
    margin: 0 0 10px;
    padding-bottom: 20px;
    position: relative;
    text-transform: uppercase;
}

.sec-title.white h2 {
    color: #fff;
}

.sec-title h2:after {
    border-bottom: 1px solid #009ee3;
    content: "";
    display: block;
    left: 30%;
    bottom: 0;
    position: absolute;
    width: 40%;
}

.sec-title.white h2:after {
    border-bottom: 1px solid #fff;
}

.parallax {
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}


/**
/*	Preloader
/* ==========================================*/

#preloader {
    background-color: #fff;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
}
.spinner {
  margin: 200px auto;
  width: 40px;
  height: 40px;
  position: relative;
  text-align: center;
  
  -webkit-animation: sk-rotate 2.0s infinite linear;
  animation: sk-rotate 2.0s infinite linear;
}

.dot, .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #333;
  border-radius: 100%;
  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.dot2 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-rotate { 100% { -webkit-transform: rotate(360deg) }}
@keyframes sk-rotate { 100% { transform: rotate(360deg); -webkit-transform: rotate(360deg) }}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}

.battery:after {
  background-color: #2E2E2E;
  border-radius: 0 1px 1px 0;
  content: "";
  height: 10px;
  position: absolute;
  right: -5px;
  top: 7px;
  width: 3px;
}

@-webkit-keyframes charge{
    0%{box-shadow: inset 0px 0px 0px #2E2E2E;}
    100%{box-shadow: inset 60px 0px 0px #2E2E2E;}
}

@-moz-keyframes charge{
    0%{box-shadow: inset 0px 0px 0px #2E2E2E;}
    100%{box-shadow: inset 60px 0px 0px #2E2E2E;}
}

@keyframes charge{
    0%{box-shadow: inset 0px 0px 0px #2E2E2E;}
    100%{box-shadow: inset 60px 0px 0px #2E2E2E;}
}

/*=================================================================
	Sprite
==================================================================*/
.singleproductGallerySlider .bx-wrapper .bx-controls-direction a, .backToPortfolio, .fullScreen, .smallScreen {
	background: url(../img/sprite.svg) no-repeat 0 0;
}

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

#navigation {
    -webkit-transition: all 0.8s ease 0s;
       -moz-transition: all 0.8s ease 0s;
        -ms-transition: all 0.8s ease 0s;
         -o-transition: all 0.8s ease 0s;
            transition: all 0.8s ease 0s;

    background-color: rgba(0,0,0,.4);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    padding: 5px 0;
}

#navigation.animated-header {
    padding: 20px 0;
}

h1.navbar-brand a.m-brand {
	display:none;
}

h1.navbar-brand {
	font-size: 20px;
	font-weight: 700;
	margin: 0;
	text-transform: uppercase;
}
h1.navbar-brand img {
    border: 3px solid #fff;
    border-radius: 50%;
    height: auto;
    max-width: 45px;
	margin-top: -13px;
	margin-right: 4px;
	margin-left: -8px;
}
h1.navbar-brand a:hover {
	color: #fff;
}
.navbar-inverse .navbar-nav > li > a {
    color: #fff;
    font-size: 15px;
	letter-spacing: .08em;
    text-transform: uppercase;
}

.mobileMenu {
	display: none;
}
.showMobileMenu {
	display: none;
}

/*=================================================================
	Home Slider
==================================================================*/
#home-slider {
    position: relative;
    padding: 0;
}

.sl-slider-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.sl-slider {
    position: absolute;
    top: 0;
    left: 0;
}

/* Slide wrapper and slides */

.sl-slide,
.sl-slides-wrapper,
.sl-slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
} 

.sl-slide {
    z-index: 1;
}

.slide-caption {
    color: #fff;
    display: table;
    height: 100%;
    left: 0;
    min-height: 100%;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 11;
}

.slide-caption .caption-content {
    vertical-align: middle;
    display: table-cell;
}

.caption-content h2 {
    margin-bottom: 25px;
    color: #fff;
    font-size: 52px;
    font-weight: 400;
    text-transform: uppercase;
	letter-spacing: .15em;
}

.caption-content > span {
    display: block;
    font-size: 24px;
    margin-bottom: 45px;
    text-transform: capitalize;
}

.caption-content p {
    font-size: 29px;
    margin-bottom: 65px;
}

/* The duplicate parts/slices */

.sl-content-slice {
    overflow: hidden;
    position: absolute;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    background: #fff;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    opacity : 1;
}

/* Horizontal slice */

.sl-slide-horizontal .sl-content-slice {
    width: 100%;
    height: 50%;
    left: -200px;
    -webkit-transform: translateY(0%) scale(1);
    -moz-transform: translateY(0%) scale(1);
    -o-transform: translateY(0%) scale(1);
    -ms-transform: translateY(0%) scale(1);
    transform: translateY(0%) scale(1);
}

.sl-slide-horizontal .sl-content-slice:first-child {
    top: -200px;
    padding: 200px 200px 0px 200px;
}

.sl-slide-horizontal .sl-content-slice:nth-child(2) {
    top: 50%;
    padding: 0px 200px 200px 200px;
}

/* Vertical slice */

.sl-slide-vertical .sl-content-slice {
    width: 50%;
    height: 100%;
    top: -200px;
    -webkit-transform: translateX(0%) scale(1);
    -moz-transform: translateX(0%) scale(1);
    -o-transform: translateX(0%) scale(1);
    -ms-transform: translateX(0%) scale(1);
    transform: translateX(0%) scale(1);
}

.sl-slide-vertical .sl-content-slice:first-child {
    left: -200px;
    padding: 200px 0px 200px 200px;
}

.sl-slide-vertical .sl-content-slice:nth-child(2) {
    left: 50%;
    padding: 200px 200px 200px 0px;
}

/* Content wrapper */
/* Width and height is set dynamically */
.sl-content-wrapper {
    position: absolute;
}

.sl-content {
    width: 100%;
    height: 100%;
}

/*=================================================================
	About
==================================================================*/
#about {
    background-color: #009EE3;
    color: #fff;
}

#about h3 {
    color: #fff;
    margin: 0 0 35px;
	font-size: 20px;
    text-transform: uppercase;
}

#about .about-divider {
	margin-top: 4px;
	margin-left: 50%;
	height: 438px;
	width: 1px;
	background-color: rgba(255,255,255,.5)
}

#about .work-item img {
	width:100%;
	border: 1px solid #333;
	margin-bottom: 5px;	
}
#about .work-item i {
	display: inline;
	margin-left: 2px;
}
#about .work-item p {
	display: inline-block;
	margin: -25px 3px 25px 18px;
}

#about .welcome-block h3 {
    margin: 0 0 40px;
}

#about .welcome-block img {
	margin: 4px 10px -3px 4px;
    border: 3px solid #fff;
    border-radius: 50%;
    max-width: 85px;
}

#about .welcome-block p {
	line-height: 24px
}

#about .message-body {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 70px;
}

.owl-buttons {
	background-color: rgba(255,255,255,.2);
    border: 1px solid rgba(255,255,255,.2);
    display: inline-block;
    float: right;
    padding: 2px 2px;
}

.owl-prev:hover, .owl-prev:focus {
	background-color: rgba(255,255,255,.4);
}
.owl-next:hover, .owl-next:focus {
	background-color: rgba(255,255,255,.4);
}

.owl-buttons > div {
    display: inline-block;
    padding: 0 5px;
}

#testimonials .owl-controls.clickable {
    margin-top: 20px;
    text-align: center;
}

.welcome-message {
    padding: 0 50px;
}

.welcome-message img {
    display: block;
    height: auto;
    max-width: 100px;
    float: left;
}

.welcome-message p {
    font-size: 13px;
    margin-left: 135px;
}

/*=================================================================
	Services
==================================================================*/
/*Anchor Link Offset From External Page*/
#service { 
	height:49px;
	margin-top: -49px;
	background: transparent;
}

.service-icon {
    border: 3px solid transparent;
    display: inline-block;
    height: 85px;
    width: 85px;
    line-height: 101px;

    -webkit-transform: rotate(47deg);
       -moz-transform: rotate(47deg);
        -ms-transform: rotate(47deg);
         -o-transform: rotate(47deg);
            transform: rotate(47deg);

    -webkit-transition: all 0.3s ease 0s;
       -moz-transition: all 0.3s ease 0s;
        -ms-transition: all 0.3s ease 0s;
         -o-transition: all 0.3s ease 0s;
            transition: all 0.3s ease 0s;
}

.service-item:hover .service-icon {
    border: 3px solid #009ee3;
    color: #009ee3;
}

.service-icon i {
    -webkit-transform: rotate(-48deg);
       -moz-transform: rotate(-48deg);
        -ms-transform: rotate(-48deg);
         -o-transform: rotate(-48deg);
            transform: rotate(-48deg);
}

.service-item h3 {
    font-size: 20px;
    text-transform: uppercase;
}

/*=================================================================
	HOME > PRODUCTS
==================================================================*/
.project-wrapper {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.project-wrapper li {
    display: inline-block;
}

.portfolio-item {
    cursor: pointer;
    margin: 0 1% 1% 0;
    overflow: hidden;
    position: relative;
    width: 32%;
}

figcaption.mask {
    background-color: rgba(54, 55, 50, 0.79);
    bottom: -126px;
    color: #fff;
    padding: 12px 18px;
    position: absolute;
    width: 100%;
    text-align: left;
    
    -webkit-transition: all 0.4s ease 0s;
       -moz-transition: all 0.4s ease 0s;
        -ms-transition: all 0.4s ease 0s;
         -o-transition: all 0.4s ease 0s;
            transition: all 0.4s ease 0s;
}

.portfolio-item:hover figcaption.mask {
    bottom: 0;
}

figcaption.mask h3 {
    margin: 0;
    color: #fff;
}

ul.external {
    list-style: outside none none;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: -47px;
    
    -webkit-transition: all 0.4s ease 0s;
       -moz-transition: all 0.4s ease 0s;
        -ms-transition: all 0.4s ease 0s;
         -o-transition: all 0.4s ease 0s;
            transition: all 0.4s ease 0s;
}

ul.external li {
    display: inline-block;
}

ul.external li a {
    background-color: rgba(54, 55, 50, 0.70);
    color: #fff;
    display: block;
    padding: 8px 16px 11px;
    
    -webkit-transition: all 0.5s ease 0s;
       -moz-transition: all 0.5s ease 0s;
        -ms-transition: all 0.5s ease 0s;
         -o-transition: all 0.5s ease 0s;
            transition: all 0.5s ease 0s;
}

ul.external li a:hover {
    background-color: #009EE3;
    color: #fff;
}

.portfolio-item:hover ul.external {
    top: 0;
}

/*=================================================================
	Testimonials
==================================================================*/

#testimonials {
    background-image: url(../img/parallax/testimonial.jpg);
    padding: 0;
    color: #fff;
}

#testimonials .sec-title h2:after {
    border-bottom: 1px solid #fff;
}

#testimonials .overlay {
    background-color: rgba(15,155,224, 0.78);
    padding: 70px 0 40px;
}

.testimonial-item {
    margin: 0 auto;
    padding-bottom: 50px;
    width: 64%;
}

.testimonial-item img {
    border: 3px solid #fff;
    border-radius: 50%;
    display: inline-block;
    height: auto;
    max-width: 100px;
}

.testimonial-item > div {
    line-height: 30px;
    position: relative;
}

.testimonial-item > div:before {
    background-image: url("../img/icons/quotes.png");
    background-repeat: no-repeat;
    bottom: 127px;
    height: 33px;
    left: -35px;
    position: absolute;
    width: 45px;
}

.testimonial-item > div:after {
    background-image: url("../img/icons/quotes.png");
    background-position: -58px 0;
    background-repeat: no-repeat;
    bottom: -50px;
    height: 33px;
    position: absolute;
    right: 0;
    width: 45px;
}

.testimonial-item > div > span {
    display: inline-block;
    font-weight: 700;
    margin: 40px 0 30px;
    text-transform: uppercase;
}

#testimonials .owl-controls.clickable {
    margin-top: 60px;
    text-align: center;
}

#testimonials .owl-buttons {
    float: inherit;
}

/*=================================================================
	SOCIAL
==================================================================*/

#social {
    background-image: url(../img/slider/banner.jpg);
    padding: 0;
}

#social .overlay {
    background: url("../img/slide_bg.png") repeat scroll 0 0 transparent;
    padding: 100px 0 120px;
}

.social-button {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.social-button li {
    display: inline-block;
}

.social-button li:nth-child(2) {
    margin: 0 75px;
}

.social-button li a {
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    display: block;
    height: 90px;
    line-height: 96px;
    width: 90px;
    
    -webkit-transition: all 0.2s ease 0s;
       -moz-transition: all 0.2s ease 0s;
        -ms-transition: all 0.2s ease 0s;
         -o-transition: all 0.2s ease 0s;
            transition: all 0.2s ease 0s;
}

.social-button li a:hover {
    color: #008ECC;
    border: 2px solid #008ECC;
}


/*=================================================================
	Contact
==================================================================*/

.input-field {
    margin-bottom: 12px;
}

.input-group {
    margin-bottom: 12px;
}

.input-group-addon {
	background-color: #FFF;
	color: #0A85BB;
	font-size: 18px;
}

.form-control {
	float: left;
    border: 1px solid #BFBFBF;
    border-radius: 4px;
    box-shadow: none;
    color: #818181;
    font-size: 16px;
    height: 42px;
}

.phone {
	float: left;
	width: 40%;
	margin-right: 1%;
    margin-bottom: 12px;
}

.email {
	float: left;
	width: 59%;
}

textarea.form-control {
    width: 100%;
    height: 165px;
}
#submit:hover,#reset:hover {
  color: #fff;
}
#submit:before, #reset:before {
  background-color: #0A85BB;
}
#submit.btn-effect:after {
  background: #2E2E2E;
}
#reset {
	margin-left: 10px;
}
#reset.btn-effect:after {
	background: #0A85BB;
	color: #fff;
}
.contact-details {
	margin-top: -20px;
}
.contact-details img {
    border: 1px solid #000;
    border-radius: 50%;
    margin-right: 5px;
    max-width: 55px;
}
.contact-details h3 {
    font-weight: 700;
    text-transform: uppercase;
	padding-bottom: 5px;
	margin-bottom: 28px;
	border-bottom: 1px solid #1B1B1B;
	-webkit-border-radius: -3px;
	-moz-border-radius: -3px;
	border-radius: -3px;

}
.contact-details p {
    line-height: 30px;
	color: #1B1B1B;
}

.contact-details p i {
    margin-right: 10px;
}

.contact-details span {
    display: block;
    margin-left: 24px;
}

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

#footer {
    background-color: #2E2E2E;
    padding: 70px 0;
    color: #fff;
}

.footer-content {
    width: 390px;
    margin: 0 auto;
}

.footer-content > div {
    margin-bottom: 40px;
}

.footer-content > div > p:first-child {
    margin-bottom: 15px;
    text-transform: uppercase;
}

.subscribe-form {
    position: relative;
}

.subscribe.form-control {
    background-color: transparent;
    border: 1px solid #7f7f7f;
}

.subscribe.form-control:focus {
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
}

.submit-icon {
    background-color: #7f7f7f;
    border: 0 none;
    border-radius: 0;
    color: #c1c1c1;
    padding: 8px 14px;
    position: absolute;
    overflow: hidden;
    right: 0;
    top: 0;
}

.submit-icon .fa-paper-plane {
    position: relative;
    top: 0;
    
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);

    -webkit-transition: all 0.3s ease 0.2s;
       -moz-transition: all 0.3s ease 0.2s;
        -ms-transition: all 0.3s ease 0.2s;
         -o-transition: all 0.3s ease 0.2s;
            transition: all 0.3s ease 0.2s;
}

.submit-icon:hover .fa-paper-plane {
    position: relative;
    top: -37px;
    
    -webkit-transform: translateX(30px);
       -moz-transform: translateX(30px);
        -ms-transform: translateX(30px);
         -o-transform: translateX(30px);
            transform: translateX(30px);
}

.footer-content .footer-social {
    margin: 40px 0 35px;
}

.footer-social ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.footer-social ul li {
    display: inline-block;
    margin: 0 10px;
}

.footer-social ul li a {
    color: #7f7f7f;
    display: block;
    
    -webkit-transition: all 0.2s ease 0s;
       -moz-transition: all 0.2s ease 0s;
        -ms-transition: all 0.2s ease 0s;
         -o-transition: all 0.2s ease 0s;
            transition: all 0.2s ease 0s;
}

.footer-social ul li a:hover {
    color: #009EE3;
}

.footer-content > p {
    color: #ababab;
    font-size: 12px;
}

/*=================================================================
	PRODUCT PAGE
==================================================================*/
#product-page {
	padding-top: 110px; 
	background-color: #6C6C6C;
}

#product-page .sec-title {
	margin-bottom: 30px;
}

#product-page .sec-title h2 {
	color: #fff;
	margin-bottom: 0;
	padding-bottom: 0;
}

#product-page .sec-title h2:after {
	border-bottom: none;
}
#product-page .sec-title p {
	color:#CCC;
}
.product-item {
    cursor: pointer;
    margin: 0 1% 1% 0;
    overflow: hidden;
    position: relative;
    width: 32%;
}

#product-page figcaption.mask {
    background-color: rgba(54, 55, 50, 0.79);
    bottom: 0;
    color: #fff;
    padding: 14px;
    position: absolute;
    width: 100%;
    text-align: left;
    
    -webkit-transition: all 0.4s ease 0s;
       -moz-transition: all 0.4s ease 0s;
        -ms-transition: all 0.4s ease 0s;
         -o-transition: all 0.4s ease 0s;
            transition: all 0.4s ease 0s;
}

.product-item:hover figcaption.mask {
    box-shadow: 0 -3px 0 rgba(0,51,204,0.7) inset;
    bottom: 0;
}

#product-page figcaption.mask h3 {
    margin: 0;
    color: #fff;
}

/* Single product / .singleproductWrap */
.container-singleproduct {
	background-color: rgba(51,51,51,.9);
	padding-top: 90px;
	width: 100%;
	overflow: hidden;
}
.singleproductGallerySlider .bx-wrapper .bx-pager {
	bottom: 20px;
	padding: 0;
}
.singleproductGallerySlider .bx-wrapper .bx-pager.bx-default-pager a {
	width: 8px;
	height: 8px;
	margin: 0 4px;
	background-color: rgba(255,255,255,0.6);
	border: 1px solid rgba(0,0,0,0);
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	background-clip: padding-box;
	-webkit-transition: background-color 0.3s ease, border-color 0.3s ease;
	-moz-transition: background-color 0.3s ease, border-color 0.3s ease;
	-o-transition: background-color 0.3s ease, border-color 0.3s ease;
	transition: background-color 0.3s ease, border-color 0.3s ease;
}
.singleproductGallerySlider .bx-wrapper .bx-pager.bx-default-pager a:hover {
	background-color: rgba(255,255,255,1);
}
.singleproductGallerySlider .bx-wrapper .bx-pager.bx-default-pager a.active {
	background-color: rgba(255,255,255,0);
	border: 1px solid rgba(255,255,255,0.6);
}
.singleproductWrap {
	height: calc(100vh - 75px);
	width: 100%;
	padding: 0;
	overflow: hidden;
}
.singleproductGallery {
	position: relative;
	float: left;
	z-index: 2;
	width: calc(100% - 418px);
	-webkit-transition: width 0.3s ease;
	-moz-transition: width 0.3s ease;
	-o-transition: width 0.3s ease;
	transition: width 0.3s ease;
}

.fullWidth .singleproductGallery {
	width: 100%;
}
.backToPortfolio, .fullScreen, .smallScreen {
	display: block;
	position: absolute;
	top: 20px;
	width: 40px;
	height: 40px;
	background-color: rgba(11,11,11,0.8);
	z-index: 2;
	opacity: 0.7;
	-webkit-transition: opacity 0.3s ease, background-color 0.3s ease;
	-moz-transition: opacity 0.3s ease, background-color 0.3s ease;
	-o-transition: opacity 0.3s ease, background-color 0.3s ease;
	transition: opacity 0.3s ease, background-color 0.3s ease;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}
.backToPortfolio:hover, .fullScreen:hover, .smallScreen:hover {
	opacity: 1;
	background-color: rgba(11,11,11,0.7);
}
.backToPortfolio {
	right: 70px;
	background-position: -40px -90px;
}
.fullScreen {
	right: 20px;
	background-position: -80px -90px;
}
.smallScreen {
	display: none;
	right: 20px;
	background-position: -120px -90px;
}
.singleproductGallerySlider {
	width: 100%;
}
.singleproductGallerySlider ul li {
	display: block;
	position: relative;
	margin:0;
	padding: 0;
	width: 100%!important;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.singleproductGallerySlider ul {
	margin:0;
	padding: 0;
}
.singleproductGallerySlider .bx-wrapper .bx-controls-direction a {
	width: 19px;
	height: 44px;
	margin-top: -22px;
	opacity: 0;
	-webkit-transition: opacity 0.3s ease;
	-moz-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
}
.singleproductGallerySlider:hover .bx-wrapper .bx-controls-direction a {
	opacity: 1;
}
.singleproductGallerySlider .bx-wrapper .bx-controls-direction a.bx-prev {
	left: 10px;
	background-position: 0 -90px;
}
.singleproductGallerySlider .bx-wrapper .bx-controls-direction a.bx-next {
	right: 10px;
	background-position: -20px -90px;
}
.productGalleryThumb {
	position: absolute;
	left: 0;
	bottom: 0;
	height:120px;
	width: 100%;
	overflow:hidden;
	opacity: 0;
	background: rgba(0,0,0,0.9);
	-webkit-transition: opacity 0.3s ease;
	-moz-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
}
.productGalleryThumb:hover {
	opacity: 1;
}
.productGalleryThumb a {
	display: block;
	background: #0b0b0b;
}
.productGalleryThumb a img {
	display: block;
	opacity: 0.4;
	-webkit-transition: opacity 0.3s ease;
	-moz-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
}
.productGalleryThumb a:hover img, .productGalleryThumb li.active a img {
	opacity: 1;
}
.productGalleryThumb .bx-wrapper .bx-viewport {
	background: none;
}
.singleproductDesc {
	float: right;
	width: 418px;
	padding: 44px 15px 120px 10px;
	background-color: rgba(255,255,255,0.9);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.singleproductDesc h1 {
	line-height: 28px;
	margin-bottom: 10px;
	color: #0b0b0b;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: .35em;
	font-family: 'Open Sans', sans-serif;
	text-transform: uppercase;
}
.singleproductDescWrap {
	margin-bottom: 30px;
	padding-top: 20px;
	color: #282828;
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
	text-transform: uppercase;
    border-top: 2px solid #009ee3;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.singleproductDescItem {
	margin-left: 20px;
}
.singleproductDescItem i {
	height: 24px;
	width: 28px;
	margin: 0 5px 0 5px;
	text-align: center;
	vertical-align: middle;
}
.singleproductDescItem ul {
	display: inline-block;
	width: 170px;
	margin: 5px 0;
	padding: 1px 0;
	height: 30px;
}
.singleproductDescItem ul:hover {
	background-color: rgba(0,158,227, 0.38);
	border-radius: 6px;
}
.singleproductDescItem ul li {
	display: inline-block;
	text-align: left;
}
.singleproductDescItem ul li:nth-child(2) {
	text-align: left;
}
.singleproductDescItem p {
	color: #0b0b0b;
	font-size: 13px;
	font-family: 'Open Sans', sans-serif;
}
.singleproductDescText {
	width: 345px;
	min-height: 320px;
	max-height: 320px;
	margin: 0 0 40px 26px;
}
.singleproductDescText p {
	line-height: 26px;
	padding: 0 14px 15px 0;
	margin-bottom: 18px;
	color: #282828;
	font-size: 15px;
	font-family: 'Open Sans', sans-serif;
}
.singleproductDescText ul {
	margin: 18px 0 18px 26px;
}
.singleproductDescText ul li {
	position: relative;
	line-height: 26px;
	margin-bottom: 12px;
	padding-right: 14px;
	color: #797979;
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
	text-align: left;
}
.singleproductDescText ul li:before {
	position: absolute;
	left: -16px;
	top: 10px;
	width: 6px;
	height: 6px;
	background: #0b0b0b;
	content: "";
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}
.singleproductDescText .jspVerticalBar {
	width: 3px;
	background: none;
}
.singleproductDescText .jspTrack {
	background: #dddddd;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
}
.singleproductDescText .jspDrag {
	background: #7b7b7b;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
}
.singleproductDescText .jspDrag:hover {
	background: #676767;
}

/*=================================================================
	CONTACT PAGE
==================================================================*/
#services {
	padding-top: 110px; 
}


/*=================================================================
	CONTACT PAGE
==================================================================*/

#contact-page {
    background-image: url(../img/parallax/contact.jpg);
    color: #fff;
	margin: 0;
	padding: 90px 0 0 0;
}
#contact-page .overlay {
    background-color: rgba(0,0,0,0.7);
	height: 100%;
	margin: 0;
	padding: 0 0 100px 0;
}
#contact-page .sec-title {
	color: #fff;
	margin-bottom: 30px;
}
#contact-page .sec-title h2 {
	color: #fff;
	margin: 20px 0 0 0;
	padding-bottom: 10px;
}
#contact-page .sec-title h2:after {
	border-bottom: none;
}
#contact-page .contact-form {
	margin-top: 10px;
}
#contact-page .contact-details img {
    border: 3px solid #fff;
    border-radius: 50%;
    margin-right: 5px;
    max-width: 55px;
}
#contact-page .contact-details h3, .formHeader {
	color: #fff;
	padding-bottom: 5px;
	margin-bottom: 28px;
	border-bottom: 1px solid #fff;
	-webkit-border-radius: -3px;
	-moz-border-radius: -3px;
	border-radius: -3px;
}
#contact-page .contact-details p {
	color: #F3F3F3;
}
.contact-details p {	
	margin-left: 45px;
}
.contact-details p.padRight {
	margin-left: 60px;
}

/*============================================================ 
	Responsive Styles
 ============================================================*/

/*============================================================
	START MOBILE VIEW TRANSITION
==============================================================*/
@media (min-width: 992px) {
	.navbar-header {
		float: left
	}
}

@media (max-width: 991px) {
/* Navigation */
	.mainmenu {
		display: none
	}
	
	h1.navbar-brand a.d-brand {
		display: none;
	}
	
	h1.navbar-brand a.m-brand	 {
		display: block;
		font-size: 18px;
		font-weight: 700;
		margin: -8px 0 0 5px;
	}
	
	.background--dark .header2 .showMobileMenu span {
		background: #fff
	}
	.showMobileMenu {
		position: relative;
		display: block;
		float: right;
		margin: 17px 4px 10px 0;
		width: 22px;
		height: 15px;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
		 -webkit-transition: .5s ease-in-out;
		 -moz-transition: .5s ease-in-out;
		 -o-transition: .5s ease-in-out;
		transition: .5s ease-in-out
	}
	.showMobileMenu span {
		position: absolute;
		display: block;
		left: 0;
		height: 3px;
		width: 100%;
		background: #fff;
		border-radius: 2px;
		opacity: 1;
		-webkit-transition: background 0.3s ease;
		-moz-transition: background 0.3s ease;
		-o-transition: background 0.3s ease;
		transition: background 0.3s ease;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: .25s ease-in-out;
		-moz-transition: .25s ease-in-out;
		-o-transition: .25s ease-in-out;
		transition: .25s ease-in-out
	}
	.showMobileMenu span:nth-child(1) {
		top: 0px
	}
	.showMobileMenu span:nth-child(2), .showMobileMenu span:nth-child(3) {
		top: 7px
	}
	.showMobileMenu span:nth-child(4) {
		top: 14px
	}
	.showMobileMenu.open span:nth-child(1) {
		top: 7px;
		width: 0%;
		left: 50%
	}
	.showMobileMenu.open span:nth-child(2) {
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg)
	}
	.showMobileMenu.open span:nth-child(3) {
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		transform: rotate(-45deg)
	}
	.showMobileMenu.open span:nth-child(4) {
		top: 7px;
		width: 0%;
		left: 50%
	}
	#floatMobileMenu {
		position: fixed;
		top: -25px;
		right: -145px;
		width: 145px;
		height: 300px;
		z-index: 9999;
		background-color: #333;
	}
	.mobileMenu {
		padding-top: 25px;
		padding-bottom: 140px;
		display: block;
		background-color: inherit;
		border-left: 1px solid rgba(255,255,255,0.85);
	}
	.mobileMenu ul {
		list-style: none;
	}
	.mobileMenu ul li {
		display: block;
		-webkit-transition: background-color 0.3s ease;
		-moz-transition: background-color 0.3s ease;
		-o-transition: background-color 0.3s ease;
		transition: background-color 0.3s ease
	}
	.mobileMenu ul li a, .mobileMenu ul li a:visited {
		display: block;
		line-height: 60px;
		padding: 0 0 0 25px;
		margin: 40px 0 -20px -40px;
		color: #FFF;
		font-size: 14px;
		font-family: 'Montserrat', sans-serif;
		text-transform: uppercase;
		text-decoration: none;
		-webkit-transition: background-color 0.3s ease, color 0.3s ease;
		-moz-transition: background-color 0.3s ease, color 0.3s ease;
		-o-transition: background-color 0.3s ease, color 0.3s ease;
		transition: background-color 0.3s ease, color 0.3s ease
	}
	.mobileMenu ul li.menu-logo {
		display: block;
		line-height: 60px;
		padding: 0 0 0 25px;
		margin: 15px 0 -20px -40px;
	}
	.mobileMenu ul li img {
		border: 3px solid #fff;
		border-radius: 50%;
		margin-right: 5px;
		max-width: 55px;
	}
	.mobileMenu .selected {
		color: #0b0b0b;
		background-color: rgba(255,255,255,.7);
	}
	.mobileMenu ul li.current-menu-item > a, .mobileMenu ul li a:hover {
		color: #0b0b0b
	}
	.mobileMenu ul li.current-menu-item a, .mobileMenu ul li a:hover {
		background-color: rgba(255,255,255,.7);
	}
	.mobileMenu ul li ul {
		display: block
	}
	.mobileMenu>ul>li>ul {
		margin: 0px 0 0 0;
		padding-bottom: 20px
	}
	.mobileMenu ul li.current-menu-item ul {
		display: block
	}
	.mobileMenu ul li ul li a {
		line-height: 32px;
		padding-left: 42px;
		text-transform: none
	}
	.mobileMenu ul li ul li.current-menu-item > a, .mobileMenu ul li.clicked > a, .mobileMenu ul li.clicked li.hasChild>a {
		color: #0b0b0b
	}
	.mobileMenu ul li ul li ul li a {
		padding-left: 62px
	}

/* HOME > ABOUT */
	#about .about-divider {
		display: none
    }
		
/* PRODUCT PAGE */
	.singleproductGallery {
		width: 100%
	}
	.singleproductDesc {
		width: 100%;
		padding: 44px 50px
	}
	.singleproductDesc h1, .singleproductDescText {
		text-align: center
	}
	.singleproductDescText {
		margin: 0 auto 40px
	}
	.singleproductWrap {
		height: auto!important
	}
	.singleproductGallerySlider ul li {
		height: 400px!important
	}
	.singleproductGallerySlider .bx-wrapper .bx-controls-direction a {
		opacity: 1
	}
	.singleproductGallerySlider .bx-wrapper .bx-controls-direction a.bx-prev {
		left: 10px
	}
	.singleproductGallerySlider .bx-wrapper .bx-controls-direction a.bx-next {
		right: 10px
	}
	.fullScreen {
		display: none!important
	}
	.backToPortfolio {
		right: 20px
	}
	.singleproductDesc {
		padding: inherit 2%;
	}
	.singleproductDescWrap {
		width: 98%;
		padding: inherit 0;
		margin: inherit 0;
		text-align: center;
	}
	.singleproductDescItem {
		width: 86%;
		padding: 0;
		margin: 0 0 0 14%;
	}
	.singleproductDescItem ul {
		width: 49%;
	}
	.singleproductDescItem ul:hover {
		background-color: transparent;
	}
	.singleproductDescItem i {
		height: 25px;
		width: 25px;
		text-align: left;
	}
	.singleproductDescItem ul li {
		width: 17%;
		text-align: right;
	}
	.singleproductDescItem ul li:nth-child(2) {
		width: 79%;
		padding-left: 3%;
	}
}

@media only screen and (max-width: 479px) {
	.thanks {
		margin-top: 100px;
		padding-bottom: 110px;
	}
	
	.singleproductDesc {
		padding: 30px 1%;
	}
	.singleproductDescWrap {
		width: 100%;
		margin: inherit 0;
	}
	.singleproductDescItem {
		width: 96%;
		margin: 0 0 0 4%;
		padding: 0;
	}
	.singleproductDescItem i {
		height: 25px;
		width: 25px;
		margin: 0;
		text-align: left:
	}
	.singleproductDescItem ul {
		width: 49%;
		text-align: left;
		padding: inherit 0;
		margin: inherit 0;
	}
	.singleproductDescItem ul:hover {
		background-color: transparent;
	}
	.singleproductDescItem ul li {
		padding: 0;
		margin:0;
		width: 18%;
		text-align: left;
	}
	.singleproductDescItem ul li:nth-child(2) {
		padding: 0;
		margin: 0 0 0 1%;
		width: 78%;
	}
	.productGalleryThumb {
		display: none
	}
	.singleproductDescText {
		width: 280px
	}

}

/*============================================================
	Tablet (Portrait) Design for a width of 768px
==============================================================*/

@media (min-width: 768px) and (max-width: 979px) {
/* Navigation */
	.showMobileMenu {

	}

/* Home Slider  */
    .caption-content h2 {
        font-size: 40px;
    }

    .caption-content p {
        font-size: 25px;
    }

    .caption-content strong {
        font-size: 45px;
    }

/* about */
    .recent-works {
        margin-bottom: 50px;
    }

    .service-item {
        margin-bottom: 50px;
    }

/* home > products */
    .portfolio-item {
        width: 48%;
    }

/* product-page */
    .product-item {
        width: 48%;
    }
	
/* testimonial */
    .testimonial-item {
        width: 90%;
    }

    .testimonial-item > div:after {
        bottom: -35px;
    }

/* price */
    .price-table {
        margin-bottom: 50px;
    }

/* contact form */
    .contact-form {
        margin-bottom: 50px;
    }
}


/*============================================================
	Mobile (Portrait) Design for a width of 320px
==============================================================*/
@media only screen and (max-width: 767px) {

    body {
        font-size: 14px;
    }

    .parallax {
        background-position: center top !important;
    }

    .sec-title h2 {
        font-size: 25px;
    }

    .sec-title h2:after {
        left: 30%;
    }

/* navigation */



/* slider */
    .caption-content h2 {
        font-size: 26px;
		font-weight: 600;
		letter-spacing: .09em;
		margin-bottom: 10px;
    }

    .caption-content span {
        font-size: 16px;
        margin-bottom: 20px;
    }

/* about */
	#about .about-divider {
		display: none;
	}
    .recent-works {
        margin-bottom: 85px;
    }

    #about h3 {
        font-size: 18px;
        margin: 0 0 35px !important;
    }

    #about .owl-buttons {
        margin-top: 20px;
    }

    #about .message-body {
        margin-bottom: 45px;
    }
	
    #about .welcome-block h3 {
		font-size: 22px
    }
	
    #about .welcome-block img {

    }

/* service */
    .service-item {
        width: 100%;
    }
	
	.service-item:hover .service-icon {
		border: 3px solid transparent;
	}
	
/* home > products */
    .portfolio-item {
        margin: 0 auto 10px;
        font-size: 14px;
        width: 280px;
    }

    figcaption.mask {
		padding: 8px 18px;
        bottom: 0;
    }
    figcaption.mask p {
		display: none;
    }	

/* product-page */	
    .product-item {
        margin: 0 auto 10px;
        font-size: 14px;
        width: 280px;
    }

    #product-page figcaption.mask {
        bottom: 0;
        color: #fff;
        padding: 15px;
    }
	
	.singleproductDesc {
		margin-top: -8px;
		padding-top: 0
	}

/* testimonial */
	#testimonials {
		text-align: center;
	}

    .testimonial-item {
        width: 90%;
    }

    .testimonial-item > div:before,
    .testimonial-item > div:after {
        background-image: none;
    }

    .testimonial-item > div > span {
        margin: 30px 0 20px;
    }

	#testimonials .owl-buttons {
		margin-top: 12px;
	}

/* price */
    .price-table {
        margin-bottom: 50px;
    }

/* follow us */
    .social-button li:nth-child(2) {
        margin: 0 25px;
    }

    .social-button li a {
        height: 65px;
        line-height: 71px;
        width: 65px;
    }

/* contact form */
    .contact-form {
        margin-bottom: 50px;
    }
	
.phone {
	width: 100%;
	margin-right: 0;
    margin-bottom: 12px;
}

.email {
	width: 100%;
}

/* footer */
    .footer-content {
        width: 100%;
    }

    .footer-social ul li {
        margin: 0 7px;
    }
}

/*============================================================
	Mobile (Landscape) Design for a width of 480px
==============================================================*/

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

    .sec-title h2:after {
        left: 30%;
    }

/* home slider */
    .caption-content h2 {
        font-size: 35px;
        margin: 50px 0 4px 0;
    }

/* about */
    #about .welcome-block h3 {
        margin: 0 0 35px;
    }

/* service */
    .service-item {
        margin: 0 auto 50px;
        width: 55%;
    }

/* home > products */
    .portfolio-item {
        width: 48%;
    }

    figcaption.mask {
        bottom: -132px;
    }

/* product-page */
    .product-item {
        width: 48%;
    }

    figcaption.mask {
        bottom: 0;
    }
	
/* testimonial */
    .testimonial-item > div:before {
        bottom: 160px;
    }

/* social */
    .social-button li:nth-child(2) {
        margin: 0 50px;
    }

    .social-button li a {
        height: 90px;
        line-height: 96px;
        width: 90px;
    }

/* contact form */
    .contact-form {
        margin-bottom: 50px;
    }

/* footer */
    .footer-content {
        width: 380px;
    }
}