
/*****************************************************************
 * Universals
 *****************************************************************/

/************* Colours *************/
.uptown-red {
	color: #b71a8b !important;
}

/************* Classes *************/
.shadow {
	/*http://css-tricks.com/snippets/css/css-box-shadow/*/
	-moz-box-shadow:    3px 3px 5px 6px #ccc;
	-webkit-box-shadow: 3px 3px 5px 6px #ccc;
	box-shadow:         3px 3px 5px 6px #ccc;
}

.inner-shadow {
	/*http://css-tricks.com/snippets/css/css-box-shadow/*/
	-moz-box-shadow:    inset 0 0 10px #999;
	-webkit-box-shadow: inset 0 0 10px #999;
	box-shadow:         inset 0 0 10px #999;
}

.bottom-shadow {
	/*http://css-tricks.com/snippets/css/css-box-shadow/*/
	-webkit-box-shadow: 0 8px 6px -6px black;
	   -moz-box-shadow: 0 8px 6px -6px black;
	        box-shadow: 0 8px 6px -6px black;
}

.white-text-shadow {
	text-shadow: 2px 2px 4px #000000;
}

.btn-primary {
	color: white;
	background-color: #B71A8B;
	background-image: none;
	border: 2px solid #B71A8B;
	border-radius: 0;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	text-transform: uppercase;
	transition: border-color 0.5s;
	font-size: 8pt;
}.btn-primary:hover {
	color: white;
	background-color: #B71A8B;
	border: 2px solid white;
}

.alert {
	margin-top: 1em;
}

.flex-v-center {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.darken:after {
    content: '\A';
    position: absolute;
    width: 100%; height:100%;
    top:0; left:0;
    background:rgba(33,33,33,0.6);
    opacity: 1;
}

.row-padded {
	margin-bottom: 55px;
}

.img-responsive {
	max-width: 100%;
}

/*****************************************************************
 * Generic Styles
 *****************************************************************/
body { font-family: 'Roboto', sans-serif; margin-bottom: 35px; }
h1 { font-family: 'Roboto', sans-serif; font-weight: bold; font-size: 15pt; text-transform: uppercase; margin-bottom: 1em; }
h2 { font-family: 'Roboto', sans-serif; font-weight: bold; font-size: 20pt; color: :; text-transform: none; margin-bottom: 1em; }
h3 { font-family: 'Roboto', sans-serif; font-weight: 500; font-size: 20pt; color: black;  text-align: center; margin-top: 35px; margin-bottom: 35px;}
h4 { font-family: 'Roboto', sans-serif; font-weight: 500; font-size: 15pt; color: #B71A8B; text-transform: uppercase; margin-top: 35px;}
p { font-family: 'Roboto', sans-serif; font-weight: 300; color: black; margin-bottom: 20px;}
a { transition: color 0.5s; }

/****************************************************************
* Cell Phones+ (0px and up)
* Red Line
****************************************************************/
/*body { border-top: 4px solid red; }*/

/************* Menu *************/
nav {
	font-weight: bold;
	color: black;
	text-transform: uppercase;
}

nav a:hover, nav a.active {
	color: #b71a8b !important;
}

.navbar-default {
	border: white !important;
	background-image: none !important;
	background-color: white !important;
	border-radius: 0;
	box-shadow: none;
}

.navbar-header {
	padding-top: 40px;
	padding-bottom: 35px;
}

.navbar-nav {
	text-align: right;
}

.navbar-nav li a.half-height {
    line-height: 15px;
	padding-bottom:0;
	display: inline-block;
}

.navbar-right {
	text-align: right;
}

/************* Brand *************/
.brand {
	position: absolute;
	top: 0;
	left: 0;
}

@media print {
	.brand {
		position: static;
		top: 0;
		left: 0;
	}

	form {
		margin-top: 100px;
	}
}

/************* Contact *************/
.contact {
	display: none;
	text-transform: uppercase;
}
.contact a {
	color: #b71a8b !important;
	text-decoration: none;
	font-weight: bold;
}
.contact a:hover {
	color: black !important;
}

/************* Footer *************/
footer {
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	font-size: 11pt;
	color: black;
}

/************* Banner *************/
img.banner {
	width:100%;
	min-height: 250px;
}

.carousel-caption {
	top: 50%;
	transform: translateY(-50%);
	bottom: auto;
}
.carousel-caption > p {
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	color: white;
	font-size: 10pt;
}
.carousel-indicators {
	width: 100%;
	margin: 0;
	margin-bottom: 1rem;
}
.carousel-indicators li {
	background-color: white;
	border: none;
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 1px;
	text-indent: -999px;
	cursor: pointer;
	border-radius: 10px;
}
.carousel-indicators .active {
	background-color: #B71A8B;
	border: none;
}

/************* Stripe  *************/
.stripe {
	position: relative;
	display: block;
	margin: 15px auto 0px;
	width: 96%;
}

.stripe > div > img {
	width: 100%;
	min-height: 95px;
}

.stripe-content {
	position: absolute;
	margin: 0;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
	text-align: center;
}
.stripe-content > span {
	display: block;
	color: white;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	padding-top: 15px;
}

.stripe-content > span.description {
	display: none;
	text-transform: none;
	padding: 30px;
	padding-top: 10px;
	font-size: 11px
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
	.stripe { cursor: default;}
	.stripe-content > span.description { display: block; }
}


/************* Breadcrumb  *************/
.breadcrumb a {
	color: black;
}.breadcrumb a:hover {
	color: #B71A8B;
}

/************* Square (Well)  *************/
.square {
	position: relative;
	width: 100%;
	background-color: #B5B5B5;
	border: 2px solid #B5B5B5;
	margin-bottom: 4px;
}

.square:after {
	content: "";
	display: block;
	padding-bottom: 100%;
}

.square > .content {
	position: absolute;
	width: 100%;
	height: 100%;
}

.square > .content > img {
	max-height: 100%;
	max-width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/************* Gallery *************/
a.selection > .square, a.selection2 > .square {
	border: 2px solid #B5B5B5;
}
a.selection.current > .square, a.selection2.current > .square {
	border: 2px solid #b71a8b;
}
.description {
	display: none;
}


/****************************************************************
* Mini Tablets (768px and up)
* Green Line
****************************************************************/
@media (min-width: 768px) {
	/*body { border-top: 4px solid green; }*/

	/************* Menu *************/
	.navbar-nav {
		text-align: center;
		font-size: 9px;
	}

	.navbar-nav li a {
		line-height: 116px;
	}
    .navbar-nav.navbar-right:last-child {
		margin-right: -15px;
		margin-left: 0;
	}

}

/****************************************************************
* Custom Width (801px and up)
****************************************************************/
@media (min-width: 801px) {
	/************* Menu *************/
	.navbar-nav {
		font-size: 10px;
	}
}


/****************************************************************
* Tablets, Traditional Desktops (992px and up)
* Blue Line
****************************************************************/
@media (min-width: 992px) {
	/*body { border-top: 4px solid blue; }*/

	/************* Menu *************/
	.navbar-nav {
		text-align: center;
		font-size: 12px;
	}

	/************* Contact *************/
	.contact {
		display: block;
		position: absolute;
		top: 30px;
		right: 20px;
		text-align: right;
	}

	/************* font-size *************/
	h1 { font-size: 25pt; }
	h2 { font-size: 20pt; }
	h3 { font-size: 20pt; }
	h4 { font-size: 15pt; }
	.stripe-content > span { font-size: 21px; }
	.stripe-content > span.description { font-size: 12px; }
	.carousel-caption > p { font-size: 12pt; }
	.btn-primary { font-size: 9pt; }
	footer { font-size: 9pt; }

}


/****************************************************************
* Custom Width (1047px and up)
****************************************************************/
@media (min-width: 1047px) {
	/************* Menu *************/
	.navbar-nav {
		font-size: 14px;
	}
}

/****************************************************************
* Widescreen (1200px and up)
* Black Line
****************************************************************/
@media (min-width:  1200px) {
	/*body { border-top: 4px solid black; }*/

	.navbar .navbar-nav>li>a {
	}
	.nav>li {
	}

	/************* font-size *************/
	h1 { font-size: 30pt; }
	h2 { font-size: 25pt; }
	h3 { font-size: 25pt; }
	h4 { font-size: 20pt; }
	.stripe-content > span { font-size: 24px; }
	.stripe-content > span.description { font-size: 16px; }
	.carousel-caption > p { font-size: 15pt; }
	.btn-primary { font-size: 14pt; }
	footer { font-size: 14pt; }

}
