@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300italic,300,400italic,500,500italic,700,700italic,900italic);

body {
	font-family: 'Roboto', sans-serif;
	background-color: #fff;
	overflow-x: hidden;
	line-height: 170%;
	color: rgba(0,0,0,.87);
	font-size: 16px;
}

a {
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

p {
	margin: 0 0 15px;
}

h2 {
	text-transform: uppercase;
	font-size: 30px;
	font-weight: normal;
	margin-bottom: 20px;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  
   to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes slowZoom {
	from {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	
	to {
		-webkit-transform: scale(2);
		transform: scale(2);
	}
}

@keyframes slowZoom {
	from {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	
	to {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}
}

.slowZoom {
	-webkit-animation-name: slowZoom;
	animation-name: slowZoom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-duration: 20s;
  animation-duration: 20s;
}

.grey {
	background-color: #f5f5f5;
}

.grey-dark {
	background-color: #343434;
	color: white;
}

.padding-80 {
	padding: 80px;
}

.padding-50 {
	padding: 50px;
}

.padding-30 {
	padding: 30px;
}

.flex-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  
  justify-content: space-around;
}

.flex-wrap {
	-webkit-flex-flow: row wrap;
}

.flex-nowrap {
	-webkit-flex-flow: row nowrap;
}

.align-right {
	text-align: right;
}

.divider-mini {
	height: 1px;
	display: block;
	width: 115px;
	margin: 25px auto;
}

.white {
	background-color: white;
}


/* NAVIGATION */

.nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
	border: 0px;
}

.navbar-default {
	background-color: rgba(52,52,52,0);
	color: white;
	border: 0px;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.navbar-default .navbar-nav>li>a {
	color: white;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 300;
	border-bottom: 3px solid transparent;
	padding: 10px;
}

.navbar-default .navbar-nav>li:last-child>a {
	padding-right: 0px;
}

.navbar-default .navbar-nav>li:first-child>a {
	padding-left: 0px;
}

.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover {
	color: white;
	opacity: .75;
}

.navbar-nav {
	text-align: right;
    float: right;
    width: inherit;
    border-top: 1px solid white;
    display: inline-block;
}

.navbar-nav li {
	float: none;
	display: inline-block;
}

.navbar-brand {
	height: inherit;
	float: none;
	display: block;
	padding: 15px 0px 0px;
	margin: 0px !important;
}

.navbar-brand img {
	height: 180px;
}

.brand2 {
	padding: 0px;
}

.brand2 img {
	opacity: 0;
	height: 0;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.brand3 img {
	display: none;
}

.header-top {
	text-align: right;
	font-size: 13px;
	padding: 15px 0px;
	height: 55px;
	opacity: 1;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.header-top .social li, .header-top .social {
	display: inline-block;
	margin: 0px;
}

.header-top .social li a {
	color: white;
	display: inline-block;
}

.header-top .social .mdi:before {
	font-size: 16px;
}

.dropdown-menu {
	background-color: white;
	border: 0px;
	border-radius: 0px;
	left: 50%;
    transform: translateX(-50%);
}

.dropdown-menu>li>a {
	opacity: .75;
}

.dropdown-menu li {
	width: 100%;
}

.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover {
	background-color: transparent;
	color: white;
	opacity: .75;
}

.navbar-default .navbar-toggle {
	border-color: white;
}

.navbar-default .navbar-toggle .icon-bar {
	background-color: white;
}

.dropdown-menu .divider {
	background-color: #bab3ad;
}

.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
	background-color: rgba(0,0,0,.1);
}


/* HEADER */

.header-gradient-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*background: rgba(138,138,141,.6);*/
}


/* TITLE */

.title {
	
}

.page-title-bg h1 {
	margin: 0px;
	color: white;
	position: relative;
	font-weight: 300;
	text-align: center;
}

.page-title-bg {
	background: url('images/fireplace-lifestyle-min.jpg') no-repeat;
	background-size: cover;
	background-position: center center;
	position: relative;
	background-attachment: fixed;
}

.page-title-bg:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background: #727680;
	opacity: .95;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}


/* CAROUSEL */

@-webkit-keyframes bob {
	0% {
		bottom: 10px;
	}
	
	50% {
		bottom: 30px;
	}
	
	100% {
		bottom: 10px;
	}
}

@keyframes bob {
	0% {
		bottom: 5px;
	}
	
	50% {
		bottom: 20px;
	}
	
	100% {
		bottom: 5px;
	}
}

.arrow {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	z-index: 10;
	cursor: pointer;
	-webkit-animation-name: bob;
  animation-name: bob;
	-webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
	-webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.arrow .mdi-chevron-down:before {
	font-size: 40px;
}

.slideshow {
	background-color: #7d818e;
	height: 100vh;
	position: relative;
}

.slideshow .caption {
	top: 50%;
	left: 50%;
	right: auto;
	transform: translate(-50%, -50%);
	position: absolute;
    color: white;
    text-align: center;
	width: 100%;
}

.slideshow .caption h2 {
	font-size: 60px;
	font-weight: bold;
	letter-spacing: 4px;
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
}

.slideshow .caption h2 span {
	border-bottom: 2px solid white;
}

.slideshow .caption h3 {
	font-size: 20px;
	font-weight: normal;
	letter-spacing: 1px;
	padding-top: 30px;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
}

/* CAROUSEL FADE */

.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: 100%;
  opacity: 0;
  z-index: 1;
  width: 100%;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-control {
  z-index: 2;
}

/* WELCOME */

.welcome h2 {
	font-size: 16px;
	font-weight: bold;
	margin-top: 0px;
}

.welcome {
	font-size: 14px;
	line-height: 20px;
}

.welcome-icon {
	position: absolute;
    top: 0;
    left: 0;
	width: 40px;
    text-align: center;
}

.welcome-desc {
	padding-left: 40px;
}


/* DOWNLOAD */

.download-img-crop {
	background-image: url('images/placeholder-phone.png');
	background-repeat: no-repeat;
	background-position: center 50px;
}

.huntsville-overlay {
	background-image: url('images/huntsville-overlay.png');
	background-repeat: no-repeat;
	background-position: left bottom;
}

/* TICKET INFO */

.ticket-info-img-crop {
	background-image: url('images/placeholder-tickets.png');
	background-repeat: no-repeat;
	background-position: left 50px;
	background-size: 95%;
}

.ticket-info {
	font-size: 14px;
	overflow: hidden;
}

.ticket-info p {
	margin: 15px 0px;
}


/* FEATURED */

.featured {
	position: relative;
}

.featured a {
	color: rgba(0,0,0,.87);
}

.featured-img img {
	width: 100%;
}

.featured .caption {
	position: absolute;
	bottom: 40px;
	left: 0px;	
}

.featured .info {
	background: rgba(255,255,255,.9);
	float: left;
	padding: 40px 100px;
	height: 170px;
}

.featured .info p, .featured .info h2 {
	margin: 0;
}

.featured .builder-logo {
	float: left;
	height: 170px;
	padding: 30px;
}

.countdown {
	text-align: center;
	font-size: 24px;
	line-height: 150%;
}

.countdown #clock {
	display: block;
	padding: 30px 0px;
	font-size: 14px;
	color: rgba(0,0,0,.38);
}

.countdown #clock span {
	font-size: 55px;
	display: block;
	color: rgba(0,0,0,.87);
}

.countdown #clock div {
	display: inline-block;
}

.countdown #clock .colon {
	position: relative;
	top: -25px;
	margin: 0 30px;
}

.gallery li {
	overflow: hidden;
	max-height: 940px;
	padding: 0px;
	position: relative;
}

.gallery img {
	width: 100%;
	object-fit: cover;
}

.gallery .img1 img {
	height: 900px;
}

.gallery .img2 img {
	height: 465px;
}

.gallery .img3 img, .gallery .img4 img {
	height: 435px;
}

.gallery-small {
	padding: 0;
}

.home-gallery {
	margin-bottom: 0;
}

.gallery .gallery-img:hover .caption-hover {
	opacity: 1;
	width: 80%;
    height: 80%;
}

.gallery .caption-hover {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,.8);
	opacity: 0;
	width: 1%;
	height: 1%;
	transform-origin: center;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.gallery .caption-hover span {
	display: block;
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.video-wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}

.video-wrapper iframe, .video-wrapper2 iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video-wrapper2 {
	position: relative;
	padding-bottom: 35.25%;
	padding-top: 25px;
	height: 0;
}


/* SPONSORS */

.sponsors a {
	display: block;
}

.sponsors a:hover {
	opacity: .7;
}

.sponsors li {
	height: 125px;
}


/* FOOTER */

footer {
	margin: 0px !important;
	font-size: 12px;
}

footer a {
	color: white;
}

footer p {
	margin: 0;
}

.footer-info {
	color: #d7d8d2;
}

.footer-center p {
	padding-top: 15px;
}

.footer-right a {
	display: inline-block;
}

.footer-right a:hover {
	opacity: .7;
}

.social-icons {
	margin-top: 10px;
}

.social-icons li {
	display: inline-block;
	margin-left: 30px;
}

.social-icons a {
	color: #d7d8d2;
}

.home-archives {
	-webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;
	max-width: 130px;
}


/* HOME DETAIL PAGE */

.home-detail-title {
	background-image: url('images/page-header.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.home-detail-title a {
	font-weight: bold;
	text-decoration: underline;
	color: white;
}

.home-detail-title a:hover {
	opacity: .7;
	text-decoration: none;
}

.home-detail-title:before {
	position: absolute;
	background: rgba(138,138,141,.75);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	content: '';
}

.home-number {
	display: block;
	width: 77px;
	height: 77px;
	font-size: 35px;
	color: white;
	font-weight: 700;
	text-align:center;
	line-height: 77px;
	margin-right: 30px;
	position: absolute;
	z-index: 10;
	left: 50%;
	transform: translateX(-50%);
	bottom: -37px;
}

.home-title-info {
	margin: 0 auto;
	position: relative;
	z-index: 10;
	text-align: center;
	color: white;
	padding: 206px 0px 100px;
}

.home-title-info h1 {
	margin: 0px;
	font-weight: bold;
	text-transform: uppercase;
	padding-bottom: 20px;
	letter-spacing: 3px;
}

.home-title-info h1 span {
	border-bottom: 2px solid white;
	padding-bottom: 5px;
}

.home-detail-title-info {
	font-size: 16px;
}

#home-img-crop {
	overflow: hidden;
	position: relative;
	text-align: center;
}

#home-img-crop img {
    max-width: 100%;
	margin: 0 auto;
}

.home-gallery-thumbs {
	text-align: center;
}

.home-details-head, .home-details {
	float: left;
}

.home-details-head {
	font-weight: bold;
	width: 40%;
}

.home-details {
	width: 60%;
}

.home-info-details li {
	border-bottom: 1px solid #d7d8d2;
	margin-bottom: 15px;
}

.home-gallery-thumbs li {
	width: inherit;
	height: 150px;
	overflow: hidden;
	background: white;
	display: inline-block;
	margin: 0px 15px;
}

.home-gallery-thumbs img {
	height: 100%;
}

.view-map {
	display: inline-block;
	padding: 5px 15px;
	border: 2px solid #333;
	color: #333;
	text-transform: uppercase;
	font-size: 14px;
	margin-top: 15px;
}

.view-map:hover {
	color: white;
	text-decoration: none;
	background: #333;
}

.view-map .mdi-map-marker:before {
	font-size: 18px;
}

.builder-logo img {
	width: 100%;
}

.builder-info h3 {
	text-transform: uppercase;
	font-size: 20px;
}

.info-head, .info-content {
    padding: 0px;
	margin-bottom: 30px;
}

.info-head li, .info-content li {
    border-bottom: 1px solid #f5f5f5;
	padding: 5px 0px;
}

.info-head {
	font-weight: bold;
}

.home .builder-logo img {
	padding: 0px;
	position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.builder-profile {
	font-size: 14px;
}

.builder-profile h3 {
	font-size: 18px;
}

@media ( max-width:1165px ) {
	.title {
		
	}
}

@media ( max-width:992px ) {
	.ticket-info-img-crop {
		display: none;
	}
	.footer-left, .footer-right {
		text-align: center;
		padding: 15px 0px;
	}
	.social-icons li {
		margin-left: 15px;
		margin-right: 15px;
	}
	.padding-80 {
		padding: 50px;
	}
	.slideshow .caption {
		top: 60%;
	}
	.caption .info {
		float: none;
		padding: 30px 50px;
		height: inherit;
	}
	.caption .builder-logo {
		display: none;
	}
	.sponsors .flex-nowrap {
		-webkit-flex-flow: column nowrap;
	}
	.sponsors li {
		margin: 15px 0px;
	}
	.sponsors img {
		margin: 0 auto;
	}
	.home-gallery-thumbs li {
		height: 100px;
	}
	.navbar-default .navbar-nav>li>a {
		padding: 5px;
		font-size: 12px;
	}
	.welcome .col-md-4 {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

@media ( max-width:767px ) {
	.navbar-default .navbar-nav .open .dropdown-menu>li>a {
		color: white;
	}
	.header-overlay {
		width: 80%;
	}
	.navbar-brand {
		padding: 15px;
	}
	.navbar-nav {
		border-top: 0px !important;
		padding: 0px !important;
	}
	.navbar-default {
		background-color: rgba(52, 52, 52, .9) !important;
	}
	.navbar-default .navbar-nav>li>a {
		padding: 8px 20px;
		font-size: 12px;
	}
	.navbar-default .navbar-nav>li:last-child>a {
		padding-right: 20px;
	}
	.navbar-nav li {
		display: block;
	}
	.brand1, .brand2 {
		display: none;
	}
	.brand3 img {
		display: block;
		margin: 0;
		height: 50px;
	}
	.header-top {
		display: none;
	}
	.home-title-info {
		padding: 117px 0px 100px;
	}
	.home-number {
		margin: 0 auto;
		display: block;
	}
	.map-directions .flex-nowrap {
		-webkit-flex-flow: column nowrap;
	}
	.navbar-toggle {
		padding: 10px 10px;
		margin-top: 14px;
	}
	.countdown #clock span {
		font-size: 40px;
	}
	.sponsors li {
		height: inherit;
		padding-top: 20px;
	}
	.home-archives {
		margin: 0 auto;
	}
	.video-wrapper2 {
		padding-bottom: 56.25%;
	}
}

@media ( max-width:580px ) {
	.header-overlay .desc {
		font-size: 18px;
	}
	.padding-80 {
		padding: 20px 10px;
	}
	.home-gallery-thumbs li {
		height: 70px;
		margin: 0 5px;
	}
	.slideshow .caption h3 {
		font-size: 16px;
	}
	.slideshow .caption h2 {
		font-size: 30px;
	}
}

@media ( max-width:500px ) {
	.countdown #clock .colon {
		margin: 0 8px;
		top: -33px;
	}
	.countdown #clock span {
		font-size: 30px;
	}
}
