/*
 * Globals
 */

/* Links */
a,
a:focus,
a:hover {
  color: #DA77AD;
}

/* Custom default button */
.btn-default {
  color: #fff;
  text-shadow: none; /* Prevent inheritence from `body` */
  background-color: #DA77AD;
  border: 1px solid #DA77AD;
}
.btn-default:hover,
.btn-default:focus {
  color: #DA77AD;
  text-shadow: none; /* Prevent inheritence from `body` */
  background-color: #fff;
  border: 1px solid #DA77AD;
}


/*
 * Base structure
 */

html,
body {
  height: 100%;
  background-color: #fff;
}
body {
  color: #333;
  text-align: center;
  font-family: Georgia, serif;
  line-height: 21px;
}

.slide {
    padding-top: 100px;
}


@font-face {
    font-family: 'brandon_grotesqueblack';
    src: url('/test/fonts/hvd_fonts__brandongrotesque-black-webfont.woff2') format('woff2'),
         url('/test/fonts/hvd_fonts__brandongrotesque-black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'brandon_grotesquebold';
    src: url('/test/fonts/brandongrotesque_bold-webfont.woff2') format('woff2'),
         url('/test/fonts/brandongrotesque_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

h3 {
    font-family: 'brandon_grotesquebold';
    text-transform: uppercase !important;
    color: #AA0061;
    
    text-align: center
}
.btn-default,
.btn-default:hover,
.btn-default:focus,
.btn-default:active {
    background-color: #AA0061;
    border: 1px solid #AA0061;
    text-transform: uppercase;
    color: #fff;
    border-radius: 0px;
	margin: 20px;
}

.btn-success,
.btn-success:hover,
.btn-success:focus,
.btn-success:active {
    color: #fff;
    background-color: #D9D9D6;
    border-color: #fff;
    text-transform: uppercase;
    color: #fff;
    border-radius: 0px;
	margin:20px;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #AA0061;
    border: 1px solid #AA0061;
    text-transform: uppercase;
    color: #fff;
    border-radius: 0px
}
.btn-info,
.btn-info:hover,
.btn-info:focus,
.btn-info:active {
    color: #fff;
    background-color: #00B140;
    border-color: #00B140;
    text-transform: uppercase;
    border-radius: 0px;
	margin-top: 30px;
	margin-bottom: 30px;
	width: 100%;
}
.btn-warning,
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active {
    color: #fff;
    background-color: #009CDE;
    border-color: #009CDE;
}

.inner, .lead { text-align: center }
.finebo {
    text-align: center;
    color: #AA0061;
}

/* Extra markup and styles for table-esque vertical and horizontal centering */
.site-wrapper {
  
  width: 100%;
  height: 100%; /* For at least Firefox */
  min-height: 100%;
 /* -webkit-box-shadow: inset 0 0 100px rgba(0,0,0,.5);
          box-shadow: inset 0 0 100px rgba(0,0,0,.5); */
}
.site-wrapper-inner {
  display: table-cell;
  vertical-align: top;
}
.cover-container {
  margin-right: auto;
  margin-left: auto;
}
hr {
    margin-top: 19px;
}

.alert-danger {
    color: #fff;
    background-color: #AA0061;
    border-color: #AA0061;
}

.label-danger {
    background-color: #AA0061;
    padding: 10px;
    margin: 10px;
    display: inline-block;
}


/* Padding for spacing */
.inner {
  padding: 30px;
}

/*
 * Header
 */
.masthead-brand {
  margin-top: 10px;
  margin-bottom: 10px;
}

.masthead-nav > li {
  display: inline-block;
}
.masthead-nav > li + li {
  margin-left: 20px;
}
.masthead-nav > li > a {
  padding-right: 0;
  padding-left: 0;
  font-size: 16px;
  font-weight: bold;
  color: #fff; /* IE8 proofing */
  color: rgba(255,255,255,.75);
  border-bottom: 2px solid transparent;
}
.masthead-nav > li > a:hover,
.masthead-nav > li > a:focus {
  background-color: transparent;
  border-bottom-color: #a9a9a9;
  border-bottom-color: rgba(255,255,255,.25);
}
.masthead-nav > .active > a,
.masthead-nav > .active > a:hover,
.masthead-nav > .active > a:focus {
  color: #fff;
  border-bottom-color: #fff;
}

@media (min-width: 768px) {
  .masthead-brand {
    float: left;
  }
  .masthead-nav {
    float: right;
  }
}


/*
 * Cover
 */

.cover {
  padding: 0 20px;
}
.cover .btn-lg {
  padding: 10px 20px;
  font-weight: bold;
}


/*
 * Footer
 */

.mastfoot {
  color: #999; /* IE8 proofing */
  color: #DA77AD;
}


/*
 * Affix and center
 */

@media (min-width: 768px) {
  /* Pull out the header and footer */
  .masthead {
    position: fixed;
    top: 0;
  }
  .mastfoot {
    position: relative;
    bottom: 0;
  }
  /* Start the vertical centering */
  .site-wrapper-inner {
    vertical-align: middle;
  }
  /* Handle the widths */
  .masthead,
  .mastfoot,
  .cover-container {
    width: 100%; /* Must be percentage or pixels for horizontal alignment */
  }
}

@media (min-width: 992px) {
  .masthead,
  .mastfoot,
  .cover-container {
    width: 700px;
  }
}


