@-webkit-viewport   { width: device-width; }
@-moz-viewport      { width: device-width; }
@-ms-viewport       { width: device-width; }
@-o-viewport        { width: device-width; }
@viewport           { width: device-width; }

html,
body {
	height: 100%;
	font-family: 'Open Sans Condensed', sans-serif;
}

section {
	padding-top: 55px; margin-top: -55px;
}

div.some-links {
	text-align: center;
}

a.some-icon {
	position: relative;
	display: inline-block;
	padding: 10px 15px;
	color: #fff;
	width: 54px;
	text-align: center;
	border-radius: 600px;
	font-size: 24px;
	margin: 20px 10px;
	background-color: #000;
}


.promise {
	padding: 20px 60px; 
	background-color: #333; 
	color: #FFF; 
	font-size: 20px; 
	text-align: center; 
	font-style: italic;
	position: relative;
}

.promise:before {
	content: "\f10d";
	position:absolute;
	top:20px;
	left:20px;
	color:#fff;
	font-weight:bold;
	font-family: "FontAwesome";
	text-align:left;
	font-size: 20px;
}

.promise:after {
	content: "\f10e";
	position:absolute;
	bottom:20px;
	right:20px;
	color:#fff;
	font-weight:bold;
	font-family: "FontAwesome";
	text-align:right;
	font-size: 20px;
}

@media (min-width: 768px) {
	.promise {
		padding: 70px 15%; 
		margin-bottom: 40px;
		font-size: 35px; 
	}

	.promise:before {
		top:20px;
		left:40px;
		font-size: 40px;
	}

	.promise:after {
		bottom:20px;
		right:40px;
		font-size: 40px;
	}
}

.parallax-window {
	min-height: 400px;
	background: transparent;
	border-top: 5px solid rgba(211,34,43, 0.3);
	border-bottom: 5px solid rgba(211,34,43, 0.3);
}
.parallax-window.add-margin {
	margin-top: 30px;
	margin-bottom: 30px;
}

.contact-area { margin: 30px 0; }

h1, h2, h3 {
	font-weight: 700;
	text-transform: uppercase;
}

h1 { margin-bottom: 55px; }

.logo {
	position: absolute;
	top: 30px;
	left: 30px;
	z-index: 999999;
	width: 250px;
	height: 78px;
}

.carousel,
.item,
.active {
	height: 100%;
}

.carousel-inner {
	height: 100%;
}

/* Background images are set within the HTML using inline CSS, not here */

.fill {
	width: 100%;
	height: 100%;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
}

footer {
	margin: 50px 0;
}

.default-margin {
	margin-bottom: 15px;
}
.round-up {
	overflow: hidden;
	position: relative;
	margin-bottom: 15px;
}
.round-up::before {
	content:" ";
	border: 5px solid red;
	border-radius: 50%;
	box-shadow: 0 0 0 10px rgba(211,34,43, 0.3) inset;
	/* box-shadow: inset -50px 50px 100px rgba(211,34,43, 0.7); */
	position: absolute;
	width: 100%;
	height: 100%;
}

#map-canvas, #map-canvas-open {
	height: 80%;
	width: 100%;
}

.navbar-inverse {
	background-color: rgba(0,0,0,0.8);
	border-color: red;
	margin-bottom: 0;
}

.navbar-inverse .navbar-nav>li>a {
	color: #FFFFFF;
	text-transform: uppercase;
	font-size: 20px;
}

.navbar-static-top {
	border-width: 0 0 5px;
}

.navbar-nav {
	width: 100%;
	text-align: center;
}
.navbar-nav > li {
	float: none;
	display: inline-block;
}

.contact-time,
.email-time,
.phone-time,
.visit-time,
.facebook-time,
.instagram-time {
	padding-left: 25px;
	position: relative;
	font-size: 16px;
}

.contact-time:before,
.email-time:before,
.phone-time:before,
.visit-time:before,
.facebook-time:before,
.instagram-time:before {
	position: absolute;
	top: 3px;
	left: 0;
	display: inline-block;
	font-family: 'Glyphicons Halflings';
	font-style: normal;
	font-weight: 400;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.contact-time:before {
	content: "\e023";
}
.email-time:before {
	content: "\2709";
}
.phone-time:before {
	content: "\e182";
}
.visit-time:before {
	content: "\e062";
}
.facebook-time:before {
	content: "\f230";
	font-family: "FontAwesome";
}
.instagram-time:before {
	content: "\f16d";
	font-family: "FontAwesome";
}
#nav {
	width: 100%;
}

#nav.affix-top {
	position: relative;
	/* top: -55px;  navbar height */
}

#nav.affix {
	position: fixed;
	top: 0;
	z-index:10;
}

.nav-wrapper {
	height: 55px; /* navbar height */
	margin-top: -55px;
}

/* ScrollTop */

.scroll-top {
	position:fixed;
	bottom:20px;
	right:20px;
	z-index:9000;
	background-color: #000000;
	background-color: rgba(0,0,0,0.8);
	font-size:24px;
	border-radius:100px;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	margin: 0;
}
.scroll-top.visible {
	visibility:visible;
	cursor:pointer;
	opacity: 1.0;
}

.scroll-top > li > a {
	position: relative;
	display: block;
	padding: 10px 15px;
	color: #fff;
}

/* Adjust carousel */
.carousel-caption {
	right: auto;
	bottom: 50px;
	left: 30px;
}

.carousel-caption h2 {
	text-shadow: 0 0 5px #000;
	color: #fff;
	line-height: 1;
	font-weight: normal;
}

.carousel-caption h2 b {
	font-weight: 700;
}

.carousel-indicators {
	bottom: auto !important;
	position: absolute;
	left: 0;
	z-index: 15;
	width: 50%;
	padding: 30px 30px 0 0;
	margin: 0 0 0 50%;
	text-align: right;
	list-style: none;
}

/*
  Bootstrap Carousel Fade Transition (for Bootstrap 3.3.x)
  CSS from:       http://codepen.io/transportedman/pen/NPWRGq
  and:            http://stackoverflow.com/questions/18548731/bootstrap-3-carousel-fading-to-new-slide-instead-of-sliding-to-new-slide
  Inspired from:  http://codepen.io/Rowno/pen/Afykb 
  */

  .carousel-fade .carousel-inner {
  	background-color: #000000;
  }

  .carousel-fade .carousel-inner .item {
  	opacity: 0;
  	transition-property: opacity;
  }

  .carousel-fade .carousel-inner .active {
  	opacity: 1;
  }

  .carousel-fade .carousel-inner .active.left,
  .carousel-fade .carousel-inner .active.right {
  	left: 0;
  	opacity: 0;
  	z-index: 1;
  }

  .carousel-fade .carousel-inner .next.left,
  .carousel-fade .carousel-inner .prev.right {
  	opacity: 1;
  }

  .carousel-fade .carousel-control {
  	z-index: 2;
  }

/*
  WHAT IS NEW IN 3.3: "Added transforms to improve carousel performance in modern browsers."
  Need to override the 3.3 new styles for modern browsers & apply opacity
  */
  @media all and (transform-3d), (-webkit-transform-3d) {
  	.carousel-fade .carousel-inner > .item.next,
  	.carousel-fade .carousel-inner > .item.active.right {
  		opacity: 0;
  		-webkit-transform: translate3d(0, 0, 0);
  		transform: translate3d(0, 0, 0);
  	}
  	.carousel-fade .carousel-inner > .item.prev,
  	.carousel-fade .carousel-inner > .item.active.left {
  		opacity: 0;
  		-webkit-transform: translate3d(0, 0, 0);
  		transform: translate3d(0, 0, 0);
  	}
  	.carousel-fade .carousel-inner > .item.next.left,
  	.carousel-fade .carousel-inner > .item.prev.right,
  	.carousel-fade .carousel-inner > .item.active {
  		opacity: 1;
  		-webkit-transform: translate3d(0, 0, 0);
  		transform: translate3d(0, 0, 0);
  	}
  }