@charset "UTF-8";
/* = !CONTENTS
---------------------------------------------------------------- */
/*
*
* Based on the work of:
* Normalize - https://github.com/necolas/normalize.css
* Bootstrap Sass - http://github.com/twbs/bootstrap-sass
*
* NORMALIZE.............Normalize our defaults
* TYPOGRAPHY............Import brand font files
* BASE..................Base typography & standard html elements
* BUTTONS...............Choose a Button set
* ICONS.................Choose an Icon set
* CLEARS & HELPERS......Clears, Selection colors, Helpers
* GRID/COLUMN SYSTEM....Choose a Grid system
* HEADER................Site Header styles
* CONTENT...............Site Content area styles
* FOOTER................Site Footer styles
* SHAME.................IE and IE related fixes
* RESPONSIVE............Site Responsive overrides
* RESPONSIVE UTILITIES..Site Responsive Visibility
* PRINT.................Site Print overrides
*
*/
/* Declaration order
.selector {
  // Sass
  @extend
  @include

  // Positioning
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;

  // Display & Box Model
  display: inline-block;
  overflow: hidden;
  box-sizing: border-box;
  width: 100px;
  height: 100px;
  padding: 10px;
  border: 10px solid #333;
  margin: 10px;

  // Color
  background: #000;
  color: #fff
  
  // Text
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.4;
  text-align: right;

  // Other
  cursor: pointer;
}

Copy and Paste comments below if needed:
// Sass
// Positioning
// Display & Box Model
// Color
// Text
// Other

*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  content: '';
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* = !NORMALIZE
---------------------------------------------------------------- */
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type='button'],
input[type='reset'],
input[type='submit'] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type='checkbox'],
input[type='radio'] {
  box-sizing: border-box;
  padding: 0;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  height: auto;
}

input[type='search'] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* = !TYPOGRAPHY
---------------------------------------------------------------- */
/* = !BASE
---------------------------------------------------------------- */
* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'museo-sans', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.625;
  color: #565451;
  background-color: #fff;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  color: #db2b36;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #9f1b23;
  text-decoration: underline;
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
}

.img-responsive,
img {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-rounded {
  border-radius: 6px;
}

.img-thumbnail {
  padding: 4px;
  line-height: 1.625;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.img-circle {
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.sub-nav .sub-nav-menu > li > a,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'museo-sans', Helvetica, Arial, sans-serif;
  font-weight: 600;
  line-height: 1.1;
  color: #565451;
}
h1 small,
h1 .small,
h2 small,
h2 .small,
h3 small,
h3 .small,
h4 small,
h4 .small,
h5 small,
h5 .small,
h6 small,
h6 .small,
.h1 small,
.h1 .small,
.h2 small,
.sub-nav .sub-nav-menu > li > a small,
.h2 .small,
.sub-nav .sub-nav-menu > li > a .small,
.h3 small,
.h3 .small,
.h4 small,
.h4 .small,
.h5 small,
.h5 .small,
.h6 small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #999999;
}

h1,
.h1,
h2,
.h2,
.sub-nav .sub-nav-menu > li > a,
h3,
.h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
h1 small,
h1 .small,
.h1 small,
.h1 .small,
h2 small,
h2 .small,
.h2 small,
.sub-nav .sub-nav-menu > li > a small,
.h2 .small,
.sub-nav .sub-nav-menu > li > a .small,
h3 small,
h3 .small,
.h3 small,
.h3 .small {
  font-size: 65%;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
h4 small,
h4 .small,
.h4 small,
.h4 .small,
h5 small,
h5 .small,
.h5 small,
.h5 .small,
h6 small,
h6 .small,
.h6 small,
.h6 .small {
  font-size: 75%;
}

h1,
.h1 {
  font-size: 36px;
}

h2,
.h2,
.sub-nav .sub-nav-menu > li > a {
  font-size: 22px;
}

h3,
.h3 {
  font-size: 18px;
}

h4,
.h4 {
  font-size: 14px;
}

h5,
.h5 {
  font-size: 10.5px;
}

h6,
.h6 {
  font-size: 9px;
}

p {
  margin: 0 0 10px;
  line-height: 1.8em;
}

.lead {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 769px) {
  .lead {
    font-size: 24px;
  }
}

small,
.small {
  font-size: 85%;
}

cite {
  font-style: normal;
}

mark,
.mark {
  background-color: #fcf8e3;
  padding: 0.2em;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-muted {
  color: #999999;
}

.text-primary {
  color: #db2b36;
}

.text-primary a {
  color: #db2b36;
}

.text-primary a:hover {
  color: #b41f28;
}

a.text-primary:hover {
  color: #b41f28;
}

.text-secondary {
  color: #7c97b5;
}

.text-secondary a {
  color: #7c97b5;
}

.text-secondary a:hover {
  color: #5c7da2;
}

a.text-secondary:hover {
  color: #5c7da2;
}

.text-tertiary {
  color: #8e8478;
}

.text-tertiary a {
  color: #8e8478;
}

.text-tertiary a:hover {
  color: #736a60;
}

a.text-tertiary:hover {
  color: #736a60;
}

.text-quaternary {
  color: #565451;
}

.text-quaternary a {
  color: #565451;
}

.text-quaternary a:hover {
  color: #3c3a38;
}

a.text-quaternary:hover {
  color: #3c3a38;
}

.text-success {
  color: #3c763d;
}

.text-success a {
  color: #3c763d;
}

.text-success a:hover {
  color: #2b542c;
}

a.text-success:hover {
  color: #2b542c;
}

.text-info {
  color: #31708f;
}

.text-info a {
  color: #31708f;
}

.text-info a:hover {
  color: #245269;
}

a.text-info:hover {
  color: #245269;
}

.text-warning {
  color: #8a6d3b;
}

.text-warning a {
  color: #8a6d3b;
}

.text-warning a:hover {
  color: #66512c;
}

a.text-warning:hover {
  color: #66512c;
}

.text-danger {
  color: #a94442;
}

.text-danger a {
  color: #a94442;
}

.text-danger a:hover {
  color: #843534;
}

a.text-danger:hover {
  color: #843534;
}

.text-reverse,
.bg-primary {
  color: #fff;
}

.bg-primary {
  background-color: #db2b36;
}

a.bg-primary:hover {
  background-color: #b41f28;
}

.bg-secondary {
  background-color: #7c97b5;
}

a.bg-secondary:hover {
  background-color: #5c7da2;
}

.bg-tertiary {
  background-color: #8e8478;
}

a.bg-tertiary:hover {
  background-color: #736a60;
}

.bg-quaternary {
  background-color: #565451;
}

a.bg-quaternary:hover {
  background-color: #3c3a38;
}

.bg-success {
  background-color: #dff0d8;
}

a.bg-success:hover {
  background-color: #c1e2b3;
}

.bg-info {
  background-color: #d9edf7;
}

a.bg-info:hover {
  background-color: #afd9ee;
}

.bg-warning {
  background-color: #fcf8e3;
}

a.bg-warning:hover {
  background-color: #f7ecb5;
}

.bg-danger {
  background-color: #f2dede;
}

a.bg-danger:hover {
  background-color: #e4b9b9;
}

.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #eeeeee;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}

.list-unstyled,
.list-inline,
ul {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  margin-left: -5px;
}
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

dl {
  margin-top: 0;
  margin-bottom: 20px;
}

dt,
dd {
  line-height: 1.625;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

.dl-horizontal dd:before,
.dl-horizontal dd:after {
  content: ' ';
  display: table;
}
.dl-horizontal dd:after {
  clear: both;
}
@media (min-width: 769px) {
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .dl-horizontal dd {
    margin-left: 180px;
  }
}

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #999999;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eeeeee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.625;
  color: #999999;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}

.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
  text-align: right;
}
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
  content: '';
}
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}

blockquote:before,
blockquote:after {
  content: '';
}

address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.625;
}

table {
  background-color: transparent;
}

th {
  text-align: left;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.625;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #fff;
}

.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}

.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
  background-color: #f5f5f5;
}

table col[class*='col-'] {
  position: static;
  float: none;
  display: table-column;
}

table td[class*='col-'],
table th[class*='col-'] {
  position: static;
  float: none;
  display: table-cell;
}

.table > thead > tr > td.active,
.table > thead > tr > th.active,
.table > thead > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}

.table > thead > tr > td.success,
.table > thead > tr > th.success,
.table > thead > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}

.table > thead > tr > td.info,
.table > thead > tr > th.info,
.table > thead > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}

.table > thead > tr > td.warning,
.table > thead > tr > th.warning,
.table > thead > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}

.table > thead > tr > td.danger,
.table > thead > tr > th.danger,
.table > thead > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}

@media screen and (max-width: 768px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 24px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}

input[type='search'] {
  box-sizing: border-box;
}

input[type='radio'],
input[type='checkbox'] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}

input[type='file'] {
  display: block;
}

input[type='range'] {
  display: block;
  width: 100%;
}

select[multiple],
select[size] {
  height: auto;
}

input[type='file']:focus,
input[type='radio']:focus,
input[type='checkbox']:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

output {
  display: block;
  padding-top: 7px;
  font-size: 16px;
  line-height: 1.625;
  color: #555555;
}

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.625;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-moz-placeholder {
  color: #999999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999999;
}
.form-control::-webkit-input-placeholder {
  color: #999999;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eeeeee;
  opacity: 1;
}

textarea.form-control {
  height: auto;
}

input[type='search'] {
  -webkit-appearance: none;
}

input[type='date'],
input[type='time'],
input[type='datetime-local'],
input[type='month'] {
  line-height: 34px;
  line-height: 1.625 \0;
}
input[type='date'].input-sm,
input[type='time'].input-sm,
input[type='datetime-local'].input-sm,
input[type='month'].input-sm {
  line-height: 30px;
}
input[type='date'].input-lg,
input[type='time'].input-lg,
input[type='datetime-local'].input-lg,
input[type='month'].input-lg {
  line-height: 46px;
}

.form-group {
  margin-bottom: 15px;
}

.radio,
.checkbox {
  position: relative;
  display: block;
  min-height: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

.radio input[type='radio'],
.radio-inline input[type='radio'],
.checkbox input[type='checkbox'],
.checkbox-inline input[type='checkbox'] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9;
}

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

.radio-inline,
.checkbox-inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

input[type='radio'][disabled],
input[type='radio'].disabled,
fieldset[disabled] input[type='radio'],
input[type='checkbox'][disabled],
input[type='checkbox'].disabled,
fieldset[disabled] input[type='checkbox'] {
  cursor: not-allowed;
}

.radio-inline.disabled,
fieldset[disabled] .radio-inline,
.checkbox-inline.disabled,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}

.radio.disabled label,
fieldset[disabled] .radio label,
.checkbox.disabled label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}

.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

select.input-sm {
  height: 30px;
  line-height: 30px;
}

textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}

.input-lg {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}

select.input-lg {
  height: 46px;
  line-height: 46px;
}

textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}

.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 42.5px;
}

.form-control-feedback {
  position: absolute;
  top: 25px;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
}

.input-lg + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}

.input-sm + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}
.has-success .form-control-feedback {
  color: #3c763d;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}
.has-warning .form-control-feedback {
  color: #8a6d3b;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
  border-color: #843534;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}
.has-error .form-control-feedback {
  color: #a94442;
}

.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}

.form-control-static {
  margin-bottom: 0;
}

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #969490;
}

@media (min-width: 769px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type='radio'],
  .form-inline .checkbox input[type='checkbox'] {
    float: none;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}
.form-horizontal .form-group {
  margin-left: -24px;
  margin-right: -24px;
}
.form-horizontal .form-group:before,
.form-horizontal .form-group:after {
  content: ' ';
  display: table;
}
.form-horizontal .form-group:after {
  clear: both;
}
.form-horizontal .form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
}
@media (min-width: 769px) {
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px;
  }
}
.form-horizontal .has-feedback .form-control-feedback {
  top: 0;
  right: 24px;
}

body {
  color: #565451;
}

h1,
.h1 {
  color: #7c97b5;
  font-weight: 100;
}

h2,
.h2,
.sub-nav .sub-nav-menu > li > a {
  color: #333;
  line-height: 1.3;
  margin: 0;
}

h2 + p,
.h2 + p,
.sub-nav .sub-nav-menu > li > a + p {
  margin-top: 11px;
}

h3,
.h3 {
  line-height: 1.3;
}

.container,
.container-fluid {
  position: relative;
}

.container-fluid {
  max-width: 1440px;
}

.container-narrow {
  max-width: 1050px;
}

.container-small {
  max-width: 1050px;
  margin: 0 auto;
}

.slick-slide:focus {
  outline: none;
}

.text-reverse {
  color: #fff;
}
.text-reverse a {
  color: #fff;
}

/* = !BUTTONS
---------------------------------------------------------------- */
.btn,
.gform_wrapper .gform_footer input.button,
.gform_wrapper .gform_footer input[type='submit'],
.gform_wrapper .gform_footer input[type='image'],
.newsletter .gform_wrapper .gform_footer input.button,
.newsletter .gform_wrapper .gform_footer input[type='submit'],
.newsletter .gform_wrapper .gform_footer input[type='image'] {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.625;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:focus,
.gform_wrapper .gform_footer input.button:focus,
.gform_wrapper .gform_footer input[type='submit']:focus,
.gform_wrapper .gform_footer input[type='image']:focus,
.btn:active:focus,
.gform_wrapper .gform_footer input.button:active:focus,
.gform_wrapper .gform_footer input[type='submit']:active:focus,
.gform_wrapper .gform_footer input[type='image']:active:focus,
.btn.active:focus,
.gform_wrapper .gform_footer input.active.button:focus,
.gform_wrapper .gform_footer input.active[type='submit']:focus,
.gform_wrapper .gform_footer input.active[type='image']:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.gform_wrapper .gform_footer input.button:hover,
.gform_wrapper .gform_footer input[type='submit']:hover,
.gform_wrapper .gform_footer input[type='image']:hover,
.btn:focus,
.gform_wrapper .gform_footer input.button:focus,
.gform_wrapper .gform_footer input[type='submit']:focus,
.gform_wrapper .gform_footer input[type='image']:focus {
  color: #333;
  text-decoration: none;
}
.btn:active,
.gform_wrapper .gform_footer input.button:active,
.gform_wrapper .gform_footer input[type='submit']:active,
.gform_wrapper .gform_footer input[type='image']:active,
.btn.active,
.gform_wrapper .gform_footer input.active.button,
.gform_wrapper .gform_footer input.active[type='submit'],
.gform_wrapper .gform_footer input.active[type='image'] {
  outline: 0;
  background-image: none;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled,
.gform_wrapper .gform_footer input.disabled.button,
.gform_wrapper .gform_footer input.disabled[type='submit'],
.gform_wrapper .gform_footer input.disabled[type='image'],
.btn[disabled],
.gform_wrapper .gform_footer input[disabled].button,
.gform_wrapper .gform_footer input[disabled][type='submit'],
.gform_wrapper .gform_footer input[disabled][type='image'],
fieldset[disabled] .btn,
fieldset[disabled] .gform_wrapper .gform_footer input.button,
.gform_wrapper .gform_footer fieldset[disabled] input.button,
fieldset[disabled] .gform_wrapper .gform_footer input[type='submit'],
.gform_wrapper .gform_footer fieldset[disabled] input[type='submit'],
fieldset[disabled] .gform_wrapper .gform_footer input[type='image'],
.gform_wrapper .gform_footer fieldset[disabled] input[type='image'] {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none;
}

.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open > .btn-default.dropdown-toggle {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .btn-default.dropdown-toggle {
  background-image: none;
}
.btn-default.disabled,
.btn-default.disabled:hover,
.btn-default.disabled:focus,
.btn-default.disabled:active,
.btn-default.disabled.active,
.btn-default[disabled],
.btn-default[disabled]:hover,
.btn-default[disabled]:focus,
.btn-default[disabled]:active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default,
fieldset[disabled] .btn-default:hover,
fieldset[disabled] .btn-default:focus,
fieldset[disabled] .btn-default:active,
fieldset[disabled] .btn-default.active {
  background-color: #fff;
  border-color: #ccc;
}
.btn-default .badge {
  color: #fff;
  background-color: #333;
}

.btn-primary,
.gform_wrapper .gform_footer input.button,
.gform_wrapper .gform_footer input[type='submit'],
.gform_wrapper .gform_footer input[type='image'],
.newsletter .gform_wrapper .gform_footer input.button,
.newsletter .gform_wrapper .gform_footer input[type='submit'],
.newsletter .gform_wrapper .gform_footer input[type='image'] {
  color: #fff;
  background-color: #db2b36;
  border-color: #357ebd;
}
.btn-primary:hover,
.gform_wrapper .gform_footer input.button:hover,
.gform_wrapper .gform_footer input[type='submit']:hover,
.gform_wrapper .gform_footer input[type='image']:hover,
.btn-primary:focus,
.gform_wrapper .gform_footer input.button:focus,
.gform_wrapper .gform_footer input[type='submit']:focus,
.gform_wrapper .gform_footer input[type='image']:focus,
.btn-primary:active,
.gform_wrapper .gform_footer input.button:active,
.gform_wrapper .gform_footer input[type='submit']:active,
.gform_wrapper .gform_footer input[type='image']:active,
.btn-primary.active,
.gform_wrapper .gform_footer input.active.button,
.gform_wrapper .gform_footer input.active[type='submit'],
.gform_wrapper .gform_footer input.active[type='image'],
.open > .btn-primary.dropdown-toggle,
.gform_wrapper .gform_footer .open > input.dropdown-toggle.button,
.gform_wrapper .gform_footer .open > input.dropdown-toggle[type='submit'],
.gform_wrapper .gform_footer .open > input.dropdown-toggle[type='image'] {
  color: #fff;
  background-color: #b41f28;
  border-color: #285e8e;
}
.btn-primary:active,
.gform_wrapper .gform_footer input.button:active,
.gform_wrapper .gform_footer input[type='submit']:active,
.gform_wrapper .gform_footer input[type='image']:active,
.btn-primary.active,
.gform_wrapper .gform_footer input.active.button,
.gform_wrapper .gform_footer input.active[type='submit'],
.gform_wrapper .gform_footer input.active[type='image'],
.open > .btn-primary.dropdown-toggle,
.gform_wrapper .gform_footer .open > input.dropdown-toggle.button,
.gform_wrapper .gform_footer .open > input.dropdown-toggle[type='submit'],
.gform_wrapper .gform_footer .open > input.dropdown-toggle[type='image'] {
  background-image: none;
}
.btn-primary.disabled,
.gform_wrapper .gform_footer input.disabled.button,
.gform_wrapper .gform_footer input.disabled[type='submit'],
.gform_wrapper .gform_footer input.disabled[type='image'],
.btn-primary.disabled:hover,
.gform_wrapper .gform_footer input.disabled.button:hover,
.gform_wrapper .gform_footer input.disabled[type='submit']:hover,
.gform_wrapper .gform_footer input.disabled[type='image']:hover,
.btn-primary.disabled:focus,
.gform_wrapper .gform_footer input.disabled.button:focus,
.gform_wrapper .gform_footer input.disabled[type='submit']:focus,
.gform_wrapper .gform_footer input.disabled[type='image']:focus,
.btn-primary.disabled:active,
.gform_wrapper .gform_footer input.disabled.button:active,
.gform_wrapper .gform_footer input.disabled[type='submit']:active,
.gform_wrapper .gform_footer input.disabled[type='image']:active,
.btn-primary.disabled.active,
.gform_wrapper .gform_footer input.disabled.active.button,
.gform_wrapper .gform_footer input.disabled.active[type='submit'],
.gform_wrapper .gform_footer input.disabled.active[type='image'],
.btn-primary[disabled],
.gform_wrapper .gform_footer input[disabled].button,
.gform_wrapper .gform_footer input[disabled][type='submit'],
.gform_wrapper .gform_footer input[disabled][type='image'],
.btn-primary[disabled]:hover,
.gform_wrapper .gform_footer input[disabled].button:hover,
.gform_wrapper .gform_footer input[disabled][type='submit']:hover,
.gform_wrapper .gform_footer input[disabled][type='image']:hover,
.btn-primary[disabled]:focus,
.gform_wrapper .gform_footer input[disabled].button:focus,
.gform_wrapper .gform_footer input[disabled][type='submit']:focus,
.gform_wrapper .gform_footer input[disabled][type='image']:focus,
.btn-primary[disabled]:active,
.gform_wrapper .gform_footer input[disabled].button:active,
.gform_wrapper .gform_footer input[disabled][type='submit']:active,
.gform_wrapper .gform_footer input[disabled][type='image']:active,
.btn-primary[disabled].active,
.gform_wrapper .gform_footer input[disabled].active.button,
.gform_wrapper .gform_footer input[disabled].active[type='submit'],
.gform_wrapper .gform_footer input[disabled].active[type='image'],
fieldset[disabled] .btn-primary,
fieldset[disabled] .gform_wrapper .gform_footer input.button,
.gform_wrapper .gform_footer fieldset[disabled] input.button,
fieldset[disabled] .gform_wrapper .gform_footer input[type='submit'],
.gform_wrapper .gform_footer fieldset[disabled] input[type='submit'],
fieldset[disabled] .gform_wrapper .gform_footer input[type='image'],
.gform_wrapper .gform_footer fieldset[disabled] input[type='image'],
fieldset[disabled] .btn-primary:hover,
fieldset[disabled] .gform_wrapper .gform_footer input.button:hover,
.gform_wrapper .gform_footer fieldset[disabled] input.button:hover,
fieldset[disabled] .gform_wrapper .gform_footer input[type='submit']:hover,
.gform_wrapper .gform_footer fieldset[disabled] input[type='submit']:hover,
fieldset[disabled] .gform_wrapper .gform_footer input[type='image']:hover,
.gform_wrapper .gform_footer fieldset[disabled] input[type='image']:hover,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .gform_wrapper .gform_footer input.button:focus,
.gform_wrapper .gform_footer fieldset[disabled] input.button:focus,
fieldset[disabled] .gform_wrapper .gform_footer input[type='submit']:focus,
.gform_wrapper .gform_footer fieldset[disabled] input[type='submit']:focus,
fieldset[disabled] .gform_wrapper .gform_footer input[type='image']:focus,
.gform_wrapper .gform_footer fieldset[disabled] input[type='image']:focus,
fieldset[disabled] .btn-primary:active,
fieldset[disabled] .gform_wrapper .gform_footer input.button:active,
.gform_wrapper .gform_footer fieldset[disabled] input.button:active,
fieldset[disabled] .gform_wrapper .gform_footer input[type='submit']:active,
.gform_wrapper .gform_footer fieldset[disabled] input[type='submit']:active,
fieldset[disabled] .gform_wrapper .gform_footer input[type='image']:active,
.gform_wrapper .gform_footer fieldset[disabled] input[type='image']:active,
fieldset[disabled] .btn-primary.active,
fieldset[disabled] .gform_wrapper .gform_footer input.active.button,
.gform_wrapper .gform_footer fieldset[disabled] input.active.button,
fieldset[disabled] .gform_wrapper .gform_footer input.active[type='submit'],
.gform_wrapper .gform_footer fieldset[disabled] input.active[type='submit'],
fieldset[disabled] .gform_wrapper .gform_footer input.active[type='image'],
.gform_wrapper .gform_footer fieldset[disabled] input.active[type='image'] {
  background-color: #db2b36;
  border-color: #357ebd;
}
.btn-primary .badge,
.gform_wrapper .gform_footer input.button .badge,
.gform_wrapper .gform_footer input[type='submit'] .badge,
.gform_wrapper .gform_footer input[type='image'] .badge {
  color: #db2b36;
  background-color: #fff;
}

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open > .btn-success.dropdown-toggle {
  background-image: none;
}
.btn-success.disabled,
.btn-success.disabled:hover,
.btn-success.disabled:focus,
.btn-success.disabled:active,
.btn-success.disabled.active,
.btn-success[disabled],
.btn-success[disabled]:hover,
.btn-success[disabled]:focus,
.btn-success[disabled]:active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success,
fieldset[disabled] .btn-success:hover,
fieldset[disabled] .btn-success:focus,
fieldset[disabled] .btn-success:active,
fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}

.btn-info {
  color: #fff;
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.open > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #31b0d5;
  border-color: #269abc;
}
.btn-info:active,
.btn-info.active,
.open > .btn-info.dropdown-toggle {
  background-image: none;
}
.btn-info.disabled,
.btn-info.disabled:hover,
.btn-info.disabled:focus,
.btn-info.disabled:active,
.btn-info.disabled.active,
.btn-info[disabled],
.btn-info[disabled]:hover,
.btn-info[disabled]:focus,
.btn-info[disabled]:active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info,
fieldset[disabled] .btn-info:hover,
fieldset[disabled] .btn-info:focus,
fieldset[disabled] .btn-info:active,
fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da;
}
.btn-info .badge {
  color: #5bc0de;
  background-color: #fff;
}

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.open > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}
.btn-warning:active,
.btn-warning.active,
.open > .btn-warning.dropdown-toggle {
  background-image: none;
}
.btn-warning.disabled,
.btn-warning.disabled:hover,
.btn-warning.disabled:focus,
.btn-warning.disabled:active,
.btn-warning.disabled.active,
.btn-warning[disabled],
.btn-warning[disabled]:hover,
.btn-warning[disabled]:focus,
.btn-warning[disabled]:active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning,
fieldset[disabled] .btn-warning:hover,
fieldset[disabled] .btn-warning:focus,
fieldset[disabled] .btn-warning:active,
fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236;
}
.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.open > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}
.btn-danger:active,
.btn-danger.active,
.open > .btn-danger.dropdown-toggle {
  background-image: none;
}
.btn-danger.disabled,
.btn-danger.disabled:hover,
.btn-danger.disabled:focus,
.btn-danger.disabled:active,
.btn-danger.disabled.active,
.btn-danger[disabled],
.btn-danger[disabled]:hover,
.btn-danger[disabled]:focus,
.btn-danger[disabled]:active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger,
fieldset[disabled] .btn-danger:hover,
fieldset[disabled] .btn-danger:focus,
fieldset[disabled] .btn-danger:active,
fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}

.btn-inverse {
  color: #fff;
  background-color: #222222;
  border-color: #161616;
}
.btn-inverse:hover,
.btn-inverse:focus,
.btn-inverse:active,
.btn-inverse.active,
.open > .btn-inverse.dropdown-toggle {
  color: #fff;
  background-color: #090909;
  border-color: black;
}
.btn-inverse:active,
.btn-inverse.active,
.open > .btn-inverse.dropdown-toggle {
  background-image: none;
}
.btn-inverse.disabled,
.btn-inverse.disabled:hover,
.btn-inverse.disabled:focus,
.btn-inverse.disabled:active,
.btn-inverse.disabled.active,
.btn-inverse[disabled],
.btn-inverse[disabled]:hover,
.btn-inverse[disabled]:focus,
.btn-inverse[disabled]:active,
.btn-inverse[disabled].active,
fieldset[disabled] .btn-inverse,
fieldset[disabled] .btn-inverse:hover,
fieldset[disabled] .btn-inverse:focus,
fieldset[disabled] .btn-inverse:active,
fieldset[disabled] .btn-inverse.active {
  background-color: #222222;
  border-color: #161616;
}
.btn-inverse .badge {
  color: #222222;
  background-color: #fff;
}

.btn-link {
  color: #db2b36;
  font-weight: normal;
  cursor: pointer;
  border-radius: 0;
}
.btn-link,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  box-shadow: none;
}
.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}
.btn-link:hover,
.btn-link:focus {
  color: #9f1b23;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:hover,
fieldset[disabled] .btn-link:focus {
  color: #999999;
  text-decoration: none;
}

.btn-lg {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 0;
}

.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 0;
}

.btn-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 0;
}

.btn-block {
  display: block;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.btn-block + .btn-block {
  margin-top: 5px;
}

input[type='submit'].btn-block,
input[type='reset'].btn-block,
input[type='button'].btn-block {
  width: 100%;
}

/* = !ICONS
---------------------------------------------------------------- */
/*!
 *  Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('fonts/fontawesome-webfont.eot?v=4.2.0');
  src: url('fonts/fontawesome-webfont.eot?#iefix&v=4.2.0')
      format('embedded-opentype'),
    url('fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'),
    url('fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'),
    url('fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular')
      format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14286em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14286em;
  width: 2.14286em;
  top: 0.14286em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-bars:before {
  content: '';
}

.fa-facebook:before {
  content: '';
}

.fa-twitter:before {
  content: '';
}

.fa-youtube:before {
  content: '';
}

.fa-search:before {
  content: '';
}

.fa-times:before {
  content: '';
}

/* = !CLEARS & !HELPERS
---------------------------------------------------------------- */
.clearfix:before,
.clearfix:after {
  content: ' ';
  display: table;
}
.clearfix:after {
  clear: both;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
  visibility: hidden !important;
}

.affix {
  position: fixed;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.vert:before,
.vert:after,
.vert-before:before,
.vert-after:after {
  content: ' ';
  display: table;
  height: 12px;
}
.vert:after,
.vert-after:after {
  clear: both;
}
@media (min-width: 769px) {
  .vert:before,
  .vert:after,
  .vert-before:before,
  .vert-after:after {
    height: 24px;
  }
}
@media (min-width: 1200px) {
  .vert:before,
  .vert:after,
  .vert-before:before,
  .vert-after:after {
    height: 32px;
  }
}

.block {
  height: 100%;
  font-size: 0;
}

.block:before {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  content: '';
}

.centered {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
}

.one_half,
.one_third,
.two_third,
.three_fourth,
.one_fourth {
  width: 100%;
  margin-bottom: 20px;
}

.last {
  margin-right: 0 !important;
  clear: right;
}

.clearboth {
  clear: both;
}

.btn,
.gform_wrapper .gform_footer input.button,
.gform_wrapper .gform_footer input[type='submit'],
.gform_wrapper .gform_footer input[type='image'],
.newsletter .gform_wrapper .gform_footer input.button,
.newsletter .gform_wrapper .gform_footer input[type='submit'],
.newsletter .gform_wrapper .gform_footer input[type='image'] {
  min-width: 150px;
  border: none;
  border-radius: 0;
}

.small-caps,
.date {
  text-transform: uppercase;
  letter-spacing: 1px;
  text-rendering: optimizeLegibility;
}

.date {
  font-weight: 400;
  color: #7c97b5;
  margin-right: 15px;
}

.block {
  position: relative;
}
.block .centered {
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
}

.circle-arrow,
.img-circle::after {
  position: absolute;
  z-index: 5000;
  line-height: 24px;
  width: 25px;
  height: 25px;
  text-align: center;
  color: #fff;
  background: #db2b36;
  border-radius: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

blockquote {
  position: relative;
  margin: 1.5em auto;
  padding: 0;
  padding-left: 80px;
  border-left: 0;
  font-weight: bold;
}
blockquote:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 100%;
  background-image: url('images/quote.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

/* = !GRID/COLUMN SYSTEM
---------------------------------------------------------------- */
.container,
.container-fluid {
  padding-left: 12px;
  padding-right: 12px;
  margin-right: auto;
  margin-left: auto;
}
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after {
  content: ' ';
  display: table;
}
.container:after,
.container-fluid:after {
  clear: both;
}

@media (min-width: 569px) {
  .container {
    width: 548px;
  }
}
@media (min-width: 769px) {
  .container {
    width: 748px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 948px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1180px;
  }
}
@media (min-width: 1600px) {
  .container {
    width: 1580px;
  }
}

.row {
  margin-left: -12px;
  margin-right: -12px;
}
.row:before,
.row:after {
  content: ' ';
  display: table;
}
.row:after {
  clear: both;
}

.xxs-1,
.xs-1,
.sm-1,
.md-1,
.lg-1,
.xlg-1,
.xxs-2,
.xxs-3,
.xxs-4,
.xxs-5,
.xxs-6,
.xs-2,
.xs-3,
.xs-4,
.xs-5,
.xs-6,
.xs-7,
.xs-8,
.xs-9,
.xs-10,
.xs-11,
.xs-12,
.sm-2,
.sm-3,
.sm-4,
.sm-5,
.sm-6,
.sm-7,
.sm-8,
.sm-9,
.sm-10,
.sm-11,
.sm-12,
.md-2,
.md-3,
.md-4,
.md-5,
.md-6,
.md-7,
.md-8,
.md-9,
.md-10,
.md-11,
.md-12,
.lg-2,
.lg-3,
.lg-4,
.lg-5,
.lg-6,
.lg-7,
.lg-8,
.lg-9,
.lg-10,
.lg-11,
.lg-12,
.xlg-2,
.xlg-3,
.xlg-4,
.xlg-5,
.xlg-6,
.xlg-7,
.xlg-8,
.xlg-9,
.xlg-10,
.xlg-11,
.xlg-12,
.xlg-13,
.xlg-14,
.xlg-15,
.xlg-16 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-left: 12px;
  padding-right: 12px;
  float: left;
}

.xxs-1,
.xxs-2,
.xxs-3,
.xxs-4,
.xxs-5,
.xxs-6 {
  padding-left: 12px;
  padding-right: 12px;
}

.xxs-1 {
  width: 16.66667%;
}

.xxs-2 {
  width: 33.33333%;
}

.xxs-3 {
  width: 50%;
}

.xxs-4 {
  width: 66.66667%;
}

.xxs-5 {
  width: 83.33333%;
}

.xxs-6 {
  width: 100%;
}

.xxs-pull-0 {
  right: auto;
}

.xxs-pull-1 {
  right: 16.66667%;
}

.xxs-pull-2 {
  right: 33.33333%;
}

.xxs-pull-3 {
  right: 50%;
}

.xxs-pull-4 {
  right: 66.66667%;
}

.xxs-pull-5 {
  right: 83.33333%;
}

.xxs-pull-6 {
  right: 100%;
}

.xxs-push-0 {
  left: auto;
}

.xxs-push-1 {
  left: 16.66667%;
}

.xxs-push-2 {
  left: 33.33333%;
}

.xxs-push-3 {
  left: 50%;
}

.xxs-push-4 {
  left: 66.66667%;
}

.xxs-push-5 {
  left: 83.33333%;
}

.xxs-push-6 {
  left: 100%;
}

.xxs-offset-0 {
  margin-left: 0%;
}

.xxs-offset-1 {
  margin-left: 16.66667%;
}

.xxs-offset-2 {
  margin-left: 33.33333%;
}

.xxs-offset-3 {
  margin-left: 50%;
}

.xxs-offset-4 {
  margin-left: 66.66667%;
}

.xxs-offset-5 {
  margin-left: 83.33333%;
}

.xxs-offset-6 {
  margin-left: 100%;
}

@media (min-width: 569px) {
  .xs-1,
  .xs-2,
  .xs-3,
  .xs-4,
  .xs-5,
  .xs-6,
  .xs-7,
  .xs-8,
  .xs-9,
  .xs-10,
  .xs-11,
  .xs-12 {
    padding-left: 12px;
    padding-right: 12px;
  }

  .xs-1 {
    width: 8.33333%;
  }

  .xs-2 {
    width: 16.66667%;
  }

  .xs-3 {
    width: 25%;
  }

  .xs-4 {
    width: 33.33333%;
  }

  .xs-5 {
    width: 41.66667%;
  }

  .xs-6 {
    width: 50%;
  }

  .xs-7 {
    width: 58.33333%;
  }

  .xs-8 {
    width: 66.66667%;
  }

  .xs-9 {
    width: 75%;
  }

  .xs-10 {
    width: 83.33333%;
  }

  .xs-11 {
    width: 91.66667%;
  }

  .xs-12 {
    width: 100%;
  }

  .xs-pull-0 {
    right: auto;
  }

  .xs-pull-1 {
    right: 8.33333%;
  }

  .xs-pull-2 {
    right: 16.66667%;
  }

  .xs-pull-3 {
    right: 25%;
  }

  .xs-pull-4 {
    right: 33.33333%;
  }

  .xs-pull-5 {
    right: 41.66667%;
  }

  .xs-pull-6 {
    right: 50%;
  }

  .xs-pull-7 {
    right: 58.33333%;
  }

  .xs-pull-8 {
    right: 66.66667%;
  }

  .xs-pull-9 {
    right: 75%;
  }

  .xs-pull-10 {
    right: 83.33333%;
  }

  .xs-pull-11 {
    right: 91.66667%;
  }

  .xs-pull-12 {
    right: 100%;
  }

  .xs-push-0 {
    left: auto;
  }

  .xs-push-1 {
    left: 8.33333%;
  }

  .xs-push-2 {
    left: 16.66667%;
  }

  .xs-push-3 {
    left: 25%;
  }

  .xs-push-4 {
    left: 33.33333%;
  }

  .xs-push-5 {
    left: 41.66667%;
  }

  .xs-push-6 {
    left: 50%;
  }

  .xs-push-7 {
    left: 58.33333%;
  }

  .xs-push-8 {
    left: 66.66667%;
  }

  .xs-push-9 {
    left: 75%;
  }

  .xs-push-10 {
    left: 83.33333%;
  }

  .xs-push-11 {
    left: 91.66667%;
  }

  .xs-push-12 {
    left: 100%;
  }

  .xs-offset-0 {
    margin-left: 0%;
  }

  .xs-offset-1 {
    margin-left: 8.33333%;
  }

  .xs-offset-2 {
    margin-left: 16.66667%;
  }

  .xs-offset-3 {
    margin-left: 25%;
  }

  .xs-offset-4 {
    margin-left: 33.33333%;
  }

  .xs-offset-5 {
    margin-left: 41.66667%;
  }

  .xs-offset-6 {
    margin-left: 50%;
  }

  .xs-offset-7 {
    margin-left: 58.33333%;
  }

  .xs-offset-8 {
    margin-left: 66.66667%;
  }

  .xs-offset-9 {
    margin-left: 75%;
  }

  .xs-offset-10 {
    margin-left: 83.33333%;
  }

  .xs-offset-11 {
    margin-left: 91.66667%;
  }

  .xs-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 769px) {
  .container,
  .container-fluid {
    padding-left: 24px;
    padding-right: 24px;
  }

  .row {
    margin-left: -24px;
    margin-right: -24px;
  }

  .sm-1,
  .sm-2,
  .sm-3,
  .sm-4,
  .sm-5,
  .sm-6,
  .sm-7,
  .sm-8,
  .sm-9,
  .sm-10,
  .sm-11,
  .sm-12 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .sm-1 {
    width: 8.33333%;
  }

  .sm-2 {
    width: 16.66667%;
  }

  .sm-3 {
    width: 25%;
  }

  .sm-4 {
    width: 33.33333%;
  }

  .sm-5 {
    width: 41.66667%;
  }

  .sm-6 {
    width: 50%;
  }

  .sm-7 {
    width: 58.33333%;
  }

  .sm-8 {
    width: 66.66667%;
  }

  .sm-9 {
    width: 75%;
  }

  .sm-10 {
    width: 83.33333%;
  }

  .sm-11 {
    width: 91.66667%;
  }

  .sm-12 {
    width: 100%;
  }

  .sm-pull-0 {
    right: auto;
  }

  .sm-pull-1 {
    right: 8.33333%;
  }

  .sm-pull-2 {
    right: 16.66667%;
  }

  .sm-pull-3 {
    right: 25%;
  }

  .sm-pull-4 {
    right: 33.33333%;
  }

  .sm-pull-5 {
    right: 41.66667%;
  }

  .sm-pull-6 {
    right: 50%;
  }

  .sm-pull-7 {
    right: 58.33333%;
  }

  .sm-pull-8 {
    right: 66.66667%;
  }

  .sm-pull-9 {
    right: 75%;
  }

  .sm-pull-10 {
    right: 83.33333%;
  }

  .sm-pull-11 {
    right: 91.66667%;
  }

  .sm-pull-12 {
    right: 100%;
  }

  .sm-push-0 {
    left: auto;
  }

  .sm-push-1 {
    left: 8.33333%;
  }

  .sm-push-2 {
    left: 16.66667%;
  }

  .sm-push-3 {
    left: 25%;
  }

  .sm-push-4 {
    left: 33.33333%;
  }

  .sm-push-5 {
    left: 41.66667%;
  }

  .sm-push-6 {
    left: 50%;
  }

  .sm-push-7 {
    left: 58.33333%;
  }

  .sm-push-8 {
    left: 66.66667%;
  }

  .sm-push-9 {
    left: 75%;
  }

  .sm-push-10 {
    left: 83.33333%;
  }

  .sm-push-11 {
    left: 91.66667%;
  }

  .sm-push-12 {
    left: 100%;
  }

  .sm-offset-0 {
    margin-left: 0%;
  }

  .sm-offset-1 {
    margin-left: 8.33333%;
  }

  .sm-offset-2 {
    margin-left: 16.66667%;
  }

  .sm-offset-3 {
    margin-left: 25%;
  }

  .sm-offset-4 {
    margin-left: 33.33333%;
  }

  .sm-offset-5 {
    margin-left: 41.66667%;
  }

  .sm-offset-6 {
    margin-left: 50%;
  }

  .sm-offset-7 {
    margin-left: 58.33333%;
  }

  .sm-offset-8 {
    margin-left: 66.66667%;
  }

  .sm-offset-9 {
    margin-left: 75%;
  }

  .sm-offset-10 {
    margin-left: 83.33333%;
  }

  .sm-offset-11 {
    margin-left: 91.66667%;
  }

  .sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  .md-1,
  .md-2,
  .md-3,
  .md-4,
  .md-5,
  .md-6,
  .md-7,
  .md-8,
  .md-9,
  .md-10,
  .md-11,
  .md-12 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .md-1 {
    width: 8.33333%;
  }

  .md-2 {
    width: 16.66667%;
  }

  .md-3 {
    width: 25%;
  }

  .md-4 {
    width: 33.33333%;
  }

  .md-5 {
    width: 41.66667%;
  }

  .md-6 {
    width: 50%;
  }

  .md-7 {
    width: 58.33333%;
  }

  .md-8 {
    width: 66.66667%;
  }

  .md-9 {
    width: 75%;
  }

  .md-10 {
    width: 83.33333%;
  }

  .md-11 {
    width: 91.66667%;
  }

  .md-12 {
    width: 100%;
  }

  .md-pull-0 {
    right: auto;
  }

  .md-pull-1 {
    right: 8.33333%;
  }

  .md-pull-2 {
    right: 16.66667%;
  }

  .md-pull-3 {
    right: 25%;
  }

  .md-pull-4 {
    right: 33.33333%;
  }

  .md-pull-5 {
    right: 41.66667%;
  }

  .md-pull-6 {
    right: 50%;
  }

  .md-pull-7 {
    right: 58.33333%;
  }

  .md-pull-8 {
    right: 66.66667%;
  }

  .md-pull-9 {
    right: 75%;
  }

  .md-pull-10 {
    right: 83.33333%;
  }

  .md-pull-11 {
    right: 91.66667%;
  }

  .md-pull-12 {
    right: 100%;
  }

  .md-push-0 {
    left: auto;
  }

  .md-push-1 {
    left: 8.33333%;
  }

  .md-push-2 {
    left: 16.66667%;
  }

  .md-push-3 {
    left: 25%;
  }

  .md-push-4 {
    left: 33.33333%;
  }

  .md-push-5 {
    left: 41.66667%;
  }

  .md-push-6 {
    left: 50%;
  }

  .md-push-7 {
    left: 58.33333%;
  }

  .md-push-8 {
    left: 66.66667%;
  }

  .md-push-9 {
    left: 75%;
  }

  .md-push-10 {
    left: 83.33333%;
  }

  .md-push-11 {
    left: 91.66667%;
  }

  .md-push-12 {
    left: 100%;
  }

  .md-offset-0 {
    margin-left: 0%;
  }

  .md-offset-1 {
    margin-left: 8.33333%;
  }

  .md-offset-2 {
    margin-left: 16.66667%;
  }

  .md-offset-3 {
    margin-left: 25%;
  }

  .md-offset-4 {
    margin-left: 33.33333%;
  }

  .md-offset-5 {
    margin-left: 41.66667%;
  }

  .md-offset-6 {
    margin-left: 50%;
  }

  .md-offset-7 {
    margin-left: 58.33333%;
  }

  .md-offset-8 {
    margin-left: 66.66667%;
  }

  .md-offset-9 {
    margin-left: 75%;
  }

  .md-offset-10 {
    margin-left: 83.33333%;
  }

  .md-offset-11 {
    margin-left: 91.66667%;
  }

  .md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-fluid {
    padding-left: 32px;
    padding-right: 32px;
  }

  .row {
    margin-left: -32px;
    margin-right: -32px;
  }

  .lg-1,
  .lg-2,
  .lg-3,
  .lg-4,
  .lg-5,
  .lg-6,
  .lg-7,
  .lg-8,
  .lg-9,
  .lg-10,
  .lg-11,
  .lg-12 {
    padding-left: 32px;
    padding-right: 32px;
  }

  .lg-1 {
    width: 8.33333%;
  }

  .lg-2 {
    width: 16.66667%;
  }

  .lg-3 {
    width: 25%;
  }

  .lg-4 {
    width: 33.33333%;
  }

  .lg-5 {
    width: 41.66667%;
  }

  .lg-6 {
    width: 50%;
  }

  .lg-7 {
    width: 58.33333%;
  }

  .lg-8 {
    width: 66.66667%;
  }

  .lg-9 {
    width: 75%;
  }

  .lg-10 {
    width: 83.33333%;
  }

  .lg-11 {
    width: 91.66667%;
  }

  .lg-12 {
    width: 100%;
  }

  .lg-pull-0 {
    right: auto;
  }

  .lg-pull-1 {
    right: 8.33333%;
  }

  .lg-pull-2 {
    right: 16.66667%;
  }

  .lg-pull-3 {
    right: 25%;
  }

  .lg-pull-4 {
    right: 33.33333%;
  }

  .lg-pull-5 {
    right: 41.66667%;
  }

  .lg-pull-6 {
    right: 50%;
  }

  .lg-pull-7 {
    right: 58.33333%;
  }

  .lg-pull-8 {
    right: 66.66667%;
  }

  .lg-pull-9 {
    right: 75%;
  }

  .lg-pull-10 {
    right: 83.33333%;
  }

  .lg-pull-11 {
    right: 91.66667%;
  }

  .lg-pull-12 {
    right: 100%;
  }

  .lg-push-0 {
    left: auto;
  }

  .lg-push-1 {
    left: 8.33333%;
  }

  .lg-push-2 {
    left: 16.66667%;
  }

  .lg-push-3 {
    left: 25%;
  }

  .lg-push-4 {
    left: 33.33333%;
  }

  .lg-push-5 {
    left: 41.66667%;
  }

  .lg-push-6 {
    left: 50%;
  }

  .lg-push-7 {
    left: 58.33333%;
  }

  .lg-push-8 {
    left: 66.66667%;
  }

  .lg-push-9 {
    left: 75%;
  }

  .lg-push-10 {
    left: 83.33333%;
  }

  .lg-push-11 {
    left: 91.66667%;
  }

  .lg-push-12 {
    left: 100%;
  }

  .lg-offset-0 {
    margin-left: 0%;
  }

  .lg-offset-1 {
    margin-left: 8.33333%;
  }

  .lg-offset-2 {
    margin-left: 16.66667%;
  }

  .lg-offset-3 {
    margin-left: 25%;
  }

  .lg-offset-4 {
    margin-left: 33.33333%;
  }

  .lg-offset-5 {
    margin-left: 41.66667%;
  }

  .lg-offset-6 {
    margin-left: 50%;
  }

  .lg-offset-7 {
    margin-left: 58.33333%;
  }

  .lg-offset-8 {
    margin-left: 66.66667%;
  }

  .lg-offset-9 {
    margin-left: 75%;
  }

  .lg-offset-10 {
    margin-left: 83.33333%;
  }

  .lg-offset-11 {
    margin-left: 91.66667%;
  }

  .lg-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1600px) {
  .xlg-1,
  .xlg-2,
  .xlg-3,
  .xlg-4,
  .xlg-5,
  .xlg-6,
  .xlg-7,
  .xlg-8,
  .xlg-9,
  .xlg-10,
  .xlg-11,
  .xlg-12,
  .xlg-13,
  .xlg-14,
  .xlg-15,
  .xlg-16 {
    padding-left: 32px;
    padding-right: 32px;
  }

  .xlg-1 {
    width: 6.25%;
  }

  .xlg-2 {
    width: 12.5%;
  }

  .xlg-3 {
    width: 18.75%;
  }

  .xlg-4 {
    width: 25%;
  }

  .xlg-5 {
    width: 31.25%;
  }

  .xlg-6 {
    width: 37.5%;
  }

  .xlg-7 {
    width: 43.75%;
  }

  .xlg-8 {
    width: 50%;
  }

  .xlg-9 {
    width: 56.25%;
  }

  .xlg-10 {
    width: 62.5%;
  }

  .xlg-11 {
    width: 68.75%;
  }

  .xlg-12 {
    width: 75%;
  }

  .xlg-13 {
    width: 81.25%;
  }

  .xlg-14 {
    width: 87.5%;
  }

  .xlg-15 {
    width: 93.75%;
  }

  .xlg-16 {
    width: 100%;
  }

  .xlg-pull-0 {
    right: auto;
  }

  .xlg-pull-1 {
    right: 6.25%;
  }

  .xlg-pull-2 {
    right: 12.5%;
  }

  .xlg-pull-3 {
    right: 18.75%;
  }

  .xlg-pull-4 {
    right: 25%;
  }

  .xlg-pull-5 {
    right: 31.25%;
  }

  .xlg-pull-6 {
    right: 37.5%;
  }

  .xlg-pull-7 {
    right: 43.75%;
  }

  .xlg-pull-8 {
    right: 50%;
  }

  .xlg-pull-9 {
    right: 56.25%;
  }

  .xlg-pull-10 {
    right: 62.5%;
  }

  .xlg-pull-11 {
    right: 68.75%;
  }

  .xlg-pull-12 {
    right: 75%;
  }

  .xlg-pull-13 {
    right: 81.25%;
  }

  .xlg-pull-14 {
    right: 87.5%;
  }

  .xlg-pull-15 {
    right: 93.75%;
  }

  .xlg-pull-16 {
    right: 100%;
  }

  .xlg-push-0 {
    left: auto;
  }

  .xlg-push-1 {
    left: 6.25%;
  }

  .xlg-push-2 {
    left: 12.5%;
  }

  .xlg-push-3 {
    left: 18.75%;
  }

  .xlg-push-4 {
    left: 25%;
  }

  .xlg-push-5 {
    left: 31.25%;
  }

  .xlg-push-6 {
    left: 37.5%;
  }

  .xlg-push-7 {
    left: 43.75%;
  }

  .xlg-push-8 {
    left: 50%;
  }

  .xlg-push-9 {
    left: 56.25%;
  }

  .xlg-push-10 {
    left: 62.5%;
  }

  .xlg-push-11 {
    left: 68.75%;
  }

  .xlg-push-12 {
    left: 75%;
  }

  .xlg-push-13 {
    left: 81.25%;
  }

  .xlg-push-14 {
    left: 87.5%;
  }

  .xlg-push-15 {
    left: 93.75%;
  }

  .xlg-push-16 {
    left: 100%;
  }

  .xlg-offset-0 {
    margin-left: 0%;
  }

  .xlg-offset-1 {
    margin-left: 6.25%;
  }

  .xlg-offset-2 {
    margin-left: 12.5%;
  }

  .xlg-offset-3 {
    margin-left: 18.75%;
  }

  .xlg-offset-4 {
    margin-left: 25%;
  }

  .xlg-offset-5 {
    margin-left: 31.25%;
  }

  .xlg-offset-6 {
    margin-left: 37.5%;
  }

  .xlg-offset-7 {
    margin-left: 43.75%;
  }

  .xlg-offset-8 {
    margin-left: 50%;
  }

  .xlg-offset-9 {
    margin-left: 56.25%;
  }

  .xlg-offset-10 {
    margin-left: 62.5%;
  }

  .xlg-offset-11 {
    margin-left: 68.75%;
  }

  .xlg-offset-12 {
    margin-left: 75%;
  }

  .xlg-offset-13 {
    margin-left: 81.25%;
  }

  .xlg-offset-14 {
    margin-left: 87.5%;
  }

  .xlg-offset-15 {
    margin-left: 93.75%;
  }

  .xlg-offset-16 {
    margin-left: 100%;
  }
}
/* = PAGE BLOCKS/STRUCTURE
---------------------------------------------------------------- */
input[type='search'] {
  background: none;
  border: none;
  border-bottom: 1px solid #555555;
  padding: 6px;
  min-height: 38px;
}

/* = !HEADER
---------------------------------------------------------------- */
.branding {
  min-height: 86px;
}

.logo {
  position: absolute;
  top: 8px;
  left: 12px;
  width: 160px;
  margin: 0;
}

.main-menu {
  display: none;
}
.main-menu ul {
  margin: 0;
}
.main-menu a {
  color: #565451;
  text-decoration: none;
}
.main-menu .more-links span {
  vertical-align: middle;
}

.sub-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50000;
  background: rgba(142, 132, 120, 0.99);
  padding: 24px 24px 0;
}
.sub-nav .sub-nav-menu > li > a {
  display: block;
  margin-bottom: 15px;
  font-weight: 100;
  text-decoration: none;
}
.sub-nav .sub-nav-menu > li > a:hover {
  color: white;
}
.sub-nav .sub-titles > li > a::after {
  display: inline-block;
  vertical-align: top;
  content: '';
  width: 0;
  height: 0;
  margin: 10px 0 0 15px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #b41f28;
}
.sub-nav .sub-titles > li > a.active::after {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #b41f28;
  border-top: none;
}
.sub-nav .sub-menu {
  display: none;
}
.sub-nav .sub-menu li {
  display: block;
  margin-bottom: 10px;
}
.sub-nav .sub-menu li:last-child {
  margin-bottom: 20px;
}
.sub-nav .sub-menu li a {
  color: white;
  font-weight: bold;
}

.sub-nav.sub-nav-open {
  display: block;
}

.sub-nav-close,
.search-close {
  display: block;
  text-align: right;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 15px;
  z-index: 9999;
}

.mobile-menu {
  position: absolute;
  top: 30px;
  right: 12px;
  color: #8e8478;
  font-weight: 600;
}
.mobile-menu:hover {
  text-decoration: none;
}
.mobile-menu span {
  margin-left: 6px;
  font-size: 18px;
  vertical-align: middle;
}

/* = !CONTENT
---------------------------------------------------------------- */
.hero-slider {
  position: relative;
  background: #000;
}

.hero-slide {
  position: absolute !important;
  top: 50%;
  left: 0;
  right: 0;
  color: #fff;
  font-size: 26px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  vertical-align: top;
}
.hero-slide span {
  display: none;
}

.hero-intro p {
  line-height: 1.25;
}

.banner {
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.banner.banner-comp.block {
  height: auto;
  overflow: hidden;
}

.page-title {
  margin: -15px 0 0;
}

.mobile-only {
  display: block;
}

@media (min-width: 769px) {
  .page-title {
    margin: -30px 0 0;
  }

  .mobile-only {
    display: none;
  }
}
p.has-drop-cap:not(:focus):first-letter {
  float: left;
  font-size: 4em;
  line-height: 0.68;
  font-weight: 100;
  margin: 0.05em 0.1em 0 0;
  text-transform: uppercase;
  font-style: normal;
}
.page-title .hero-title {
  text-align: left;
  width: 100%;
  margin: 0;
}

.page-title.container-fluid {
  max-width: 100%;
}

.banner img {
  width: 100%;
  position: relative;
  top: 0;
}

.banner.banner-comp .counter {
  left: 0;
  right: 0;
}

.breadcrumbs {
  margin-left: -5px;
}
.breadcrumbs a {
  display: inline-block;
  padding: 0 5px;
}
.breadcrumbs .breadcrumb_last {
  padding-left: 5px;
}

.page-content .gallery .gallery-caption,
.single .content .gallery .gallery-caption {
  font-weight: bold;
  font-size: 12px;
  margin: 10px;
}
.page-content .gallery img,
.single .content .gallery img {
  width: 100%;
}
.page-content .gallery .slick-arrow,
.single .content .gallery .slick-arrow {
  padding: 10px;
  margin-top: -20px;
}
.page-content .gallery .slick-arrow.slick-prev,
.page-content .gallery .slick-arrow.slick-next,
.single .content .gallery .slick-arrow.slick-prev,
.single .content .gallery .slick-arrow.slick-next {
  position: absolute;
  top: 50%;
}
.page-content .gallery .slick-arrow.slick-prev:focus,
.page-content .gallery .slick-arrow.slick-next:focus,
.single .content .gallery .slick-arrow.slick-prev:focus,
.single .content .gallery .slick-arrow.slick-next:focus {
  outline: none;
}
.page-content .gallery .slick-arrow.slick-prev:before,
.page-content .gallery .slick-arrow.slick-next:before,
.single .content .gallery .slick-arrow.slick-prev:before,
.single .content .gallery .slick-arrow.slick-next:before {
  font-size: 12px;
}
.page-content .slick-arrow,
.single .content .slick-arrow {
  z-index: 1;
  background: #db2b36;
  padding: 20px;
  margin-top: -20px;
  border: none;
  color: white;
}
.page-content .slick-arrow.slick-prev,
.single .content .slick-arrow.slick-prev {
  left: 15px;
}
.page-content .slick-arrow.slick-prev:before,
.single .content .slick-arrow.slick-prev:before {
  content: '\f053';
  font-family: 'FontAwesome';
  font-size: 20px;
  line-height: 0;
  text-align: center;
  position: absolute;
  left: 27%;
}
.page-content .slick-arrow.slick-prev:hover,
.page-content .slick-arrow.slick-prev:focus,
.single .content .slick-arrow.slick-prev:hover,
.single .content .slick-arrow.slick-prev:focus {
  background: #8e8478;
}
.page-content .slick-arrow.slick-next,
.single .content .slick-arrow.slick-next {
  right: 15px;
}
.page-content .slick-arrow.slick-next:before,
.single .content .slick-arrow.slick-next:before {
  content: '\f054';
  font-family: 'FontAwesome';
  font-size: 20px;
  line-height: 0;
  text-align: center;
  position: absolute;
  right: 35%;
}
.page-content .slick-arrow.slick-next:hover,
.page-content .slick-arrow.slick-next:focus,
.single .content .slick-arrow.slick-next:hover,
.single .content .slick-arrow.slick-next:focus {
  background: #db2b36;
}
.page-content .slick-slide:focus,
.single .content .slick-slide:focus {
  outline: none;
}
.page-content .slick-slide img,
.single .content .slick-slide img {
  border: none !important;
}
.page-content .slick-dots,
.single .content .slick-dots {
  bottom: 45px;
}
.page-content .slick-dots li button:before,
.single .content .slick-dots li button:before {
  font-size: 12px;
  color: #8e8478;
  opacity: 1;
}
.page-content .slick-dots li.slick-active button:before,
.single .content .slick-dots li.slick-active button:before {
  color: white;
  opacity: 1;
}
.page-content ul,
.single .content ul {
  margin-left: 20px;
  list-style: disc;
}
.page-content ul li,
.single .content ul li {
  position: relative;
  margin-bottom: 0.5em;
  margin-left: 30px;
  list-style: none;
}
.page-content ul li:before,
.single .content ul li:before {
  content: '■';
  position: absolute;
  top: 0.05em;
  left: -20px;
  font-size: 0.8em;
  color: #db2b36;
}
.page-content ul li.blocks-gallery-item:before,
.single .content ul li.blocks-gallery-item:before {
  display: none;
}

.counter {
  font-size: 50px;
  color: #fff;
  text-align: center;
}
.counter li {
  display: inline-block;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
  margin-right: 10px;
  margin-top: 15px;
  line-height: 1.1;
}
.counter li:last-child {
  margin-right: 0;
}
.counter .small-caps,
.counter .date {
  display: block;
  font-size: 25%;
}

.lead {
  margin: 0;
}
.lead br {
  display: none;
}
.home-grid section {
  padding: 30% 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.home-grid .gallery-height {
  padding: 15% 0;
}
.home-grid h2.h2 {
  color: #fff !important;
  margin-bottom: 25px;
  font-weight: 100;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px #525252;
}

.event-block img {
  width: 100%;
  margin: 0;
}
.comp-section-2 {
  color: #565451;
}
.comp-section-2 .centered {
  position: relative;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.comp-section-2 img {
  width: 100%;
  margin: auto;
}
.comp-section-2 .hero-title {
  width: 100%;
  text-align: center;
}
.comp-section-2 p {
  margin: 14px 0 0;
}

.comp-section-4-wrap {
  position: relative;
}

.comp-section-4 {
  position: relative;
  margin: -35px auto -100px;
}
.comp-section-4 .comp-section-4-globe {
  width: 100%;
}

.torch-gif {
  position: absolute;
  top: 33%;
  left: 49.5%;
  width: 6%;
}

.comp-section-7 .item {
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
}
.comp-section-7 .item:hover .hero-title,
.comp-section-7 .item:focus .hero-title {
  margin-left: 0;
}
.comp-section-7 .row-2 .item {
  margin-bottom: 0;
}
.comp-section-7 .row-2 .sm-6.lg-6:first-child {
  padding-right: 7px;
}
.comp-section-7 .row-2 .sm-6.lg-6:last-child {
  padding-left: 7px;
}
.comp-section-7 .hero-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  font-size: 85%;
  letter-spacing: 1px;
  text-align: center;
  padding: 10px 20px;
  margin-left: 0;
  -webkit-transition: margin 0.3s ease;
  transition: margin 0.3s ease;
}

.comp-section-8 .sm-12.lg-4 {
  margin: 0 0 14px;
}

.info .circle-arrow,
.info .news .post-content::after,
.news .info .post-content::after {
  top: 50%;
  margin-top: -25px;
}
.info .prev {
  left: 35px;
}
.info .next {
  right: 35px;
}

.info-block {
  padding-left: 0;
  padding-right: 0;
}

.info-images {
  position: relative;
  max-height: 300px;
  overflow: hidden;
}
.info-images img {
  display: none;
  width: 100%;
  -webkit-transform: translateY(-20%);
  transform: translateY(-20%);
}

.info-block:first-child .fc {
  display: block;
}

.sepia {
  position: absolute;
  top: 0;
  left: auto;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

.info-title {
  z-index: 2;
  position: relative;
  top: -26px;
  display: inline-block;
  width: 90%;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 500;
}
.info-title a {
  display: block;
  padding: 15px 20px;
  background: #8e8478;
  color: #fff;
}
.info-title a:hover {
  background: #db2b36;
  color: #fff;
  text-decoration: none;
}

.hero-title {
  position: relative;
  display: inline-block;
  padding: 8px 12px;
  margin: 0;
  font-size: 10px;
  text-transform: uppercase;
  background: #db2b36;
  color: #fff;
  margin-bottom: 15px;
}

@media (min-width: 769px) {
  .hero-title {
    font-size: 12px;
  }
}

.hero-intro.container.vert-after {
  margin-top: -28px;
}

@media (min-width: 769px) {
  .hero-intro.container.vert-after {
    margin-top: -55px;
  }
}

.news-list .news-secondary:first-child::before {
  height: 0;
}
.news {
  background: whitesmoke;
}
.news-list img {
  margin-bottom: 30px !important;
}
.news.news-list {
  background: transparent;
}
.img-circle::after {
  display: block;
  content: '›';
  top: calc(50% - 12px);
  left: -50px;
}
.news a:hover {
  text-decoration: none;
}
.news a:hover img {
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news a img {
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news a:hover .img-circle::after {
  left: calc(50% - 12px);
}
.news h3 {
  margin-bottom: 5px;
}
.news .post-content {
  color: #555;
  position: relative;
}

.news article {
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.news-secondary img {
  margin: 0 auto;
  width: 100%;
}
.news-secondary h3 {
  margin-top: 0;
}

.post-meta {
  font-weight: 100;
  color: #999;
}

.latest-photos .gallery {
  position: relative;
}
.latest-photos .circle-arrow,
.latest-photos .news .post-content::after,
.news .latest-photos .post-content::after {
  cursor: pointer;
  top: 50%;
  margin-top: -12px;
}
.latest-photos .circle-arrow.next,
.latest-photos .news .next.post-content::after,
.news .latest-photos .next.post-content::after {
  right: 25px;
}
.latest-photos .circle-arrow.prev,
.latest-photos .news .prev.post-content::after,
.news .latest-photos .prev.post-content::after {
  left: 25px;
}

.sidebar {
  text-align: left;
  margin-top: 14px;
}
.sidebar ul.list-unstyled,
.sidebar ul.list-inline,
.sidebar ul {
  list-style: none;
}
.sidebar ul.list-unstyled li:before,
.sidebar ul.list-inline li:before,
.sidebar ul li:before {
  display: none;
}
.sidebar li {
  margin-top: 25px;
}
.sidebar li:first-child {
  margin-top: 0;
}

.subpage-nav {
  display: none;
}

.subpage-nav.children {
  display: block;
}
.subpage-nav.children .children li {
  margin-top: 5px;
}
.subpage-nav.children .children a {
  color: #565451;
}

.slider .slide {
  padding: 10px;
}

.thank-sponsors {
  display: none;
  position: relative;
  width: 525px;
}
.thank-sponsors img {
  width: 175px;
}
.thank-sponsors p {
  float: left;
  color: #cec8be;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 20px;
}
.thank-sponsors a {
  color: #fff;
}

/* !-- Performer Single -- */
.single-performer .hero-title {
  min-width: 55%;
}
.single-performer blockquote {
  position: relative;
  margin: 1.5em auto;
  padding: 0;
  padding-left: 50px;
  border-left: 0;
  font-weight: bold;
}
.single-performer blockquote:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 100%;
  background-image: url('images/quote.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.sidebar-item {
  margin-bottom: 1em;
  border-bottom: 1px solid #eee;
  color: #999;
}
.sidebar-item:last-child {
  border: none;
}

.sidebar-item-title {
  margin-bottom: 0.5em;
  font-size: 1.2em;
  font-weight: 300;
  color: #7c97b5;
}

.sidebar-item-content {
  font-size: 0.85em;
}

.performer-nav {
  margin: 1em auto;
  margin-bottom: 1.5em;
}

.performer-nav-prev,
.performer-nav-next {
  padding: 5px;
  font-size: 1.2em;
  font-weight: 300;
  text-align: center;
  color: #8e8478;
}

/* corporate sponsor */
.sponsor {
  width: 50%;
  padding: 20px;
  float: left;
  text-align: center;
  min-height: 150px;
}
.sponsor img {
  display: inline-block;
  max-height: 70px;
}

/* !-- News and single templates -- */
body.blog .news article {
  margin-bottom: 30px;
  padding-bottom: 30px;
}

body.single-post .news .post-content {
  padding-right: 0;
}
body.single-post .news .post-content::after {
  display: none;
}
body.single-post .post-meta {
  margin-bottom: 1em;
}

.error404 .search-form input[type='search'] {
  display: block;
  width: 100%;
}
.error404 .search-form .btn,
.error404 .search-form .gform_wrapper .gform_footer input.button,
.gform_wrapper .gform_footer .error404 .search-form input.button,
.error404 .search-form .gform_wrapper .gform_footer input[type='submit'],
.gform_wrapper .gform_footer .error404 .search-form input[type='submit'],
.error404 .search-form .gform_wrapper .gform_footer input[type='image'],
.gform_wrapper .gform_footer .error404 .search-form input[type='image'] {
  display: block;
  width: 100%;
  margin: 20px 0;
}

.nav-search {
  position: absolute;
  top: 0;
  right: 200px;
}

.search-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50000;
  background: rgba(142, 132, 120, 0.99);
  padding: 24px 24px 0;
}
.search-overlay .search-stuff {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.search-overlay .search-stuff p {
  color: white;
}
.search-overlay .search-stuff input[type='search'] {
  display: block;
  width: 100%;
}
.search-overlay .search-stuff .btn,
.search-overlay .search-stuff .gform_wrapper .gform_footer input.button,
.gform_wrapper .gform_footer .search-overlay .search-stuff input.button,
.search-overlay .search-stuff .gform_wrapper .gform_footer input[type='submit'],
.gform_wrapper .gform_footer .search-overlay .search-stuff input[type='submit'],
.search-overlay .search-stuff .gform_wrapper .gform_footer input[type='image'],
.gform_wrapper .gform_footer .search-overlay .search-stuff input[type='image'] {
  display: block;
  width: 100%;
  margin: 20px 0;
}

/* !-- Merchandise -- */
.product-grid > ul > li {
  margin: 0 1%;
  margin-bottom: 20px;
  padding: 10px;
  box-sizing: border-box;
  border-bottom: 2px solid #db2b36;
  width: 98%;
}

/* !-- Forms -- */
.gform_wrapper {
  /* /.gform_fields */
}
.gform_wrapper .gform_fields {
  list-style: none;
}
.gform_wrapper .gform_fields li:before {
  content: none;
}
.gform_wrapper .gform_fields .gfield_label {
  color: #db2b36;
}
.gform_wrapper .gform_fields label {
  font-weight: normal;
  letter-spacing: 0 !important;
}
.gform_wrapper .gform_fields ul.gfield_radio li,
.gform_legacy_markup_wrapper ul.gfield_checkbox li {
  overflow: visible;
  font-size: 1.35em;
}
.gform_wrapper .gform_fields input[type='text'],
.gform_wrapper .gform_fields input[type='email'],
.gform_wrapper .gform_fields input[type='date'],
.gform_wrapper .gform_fields input[type='number'],
.gform_wrapper .gform_fields textarea,
.gform_wrapper .gform_fields input[type='password'] {
  border: 1px solid #ccc;
}
.gform_wrapper .gform_fields input[type='text']:focus,
.gform_wrapper .gform_fields input[type='email']:focus,
.gform_wrapper .gform_fields input[type='date']:focus,
.gform_wrapper .gform_fields input[type='number']:focus,
.gform_wrapper .gform_fields textarea:focus,
.gform_wrapper .gform_fields input[type='password']:focus {
  border-color: #7c97b5;
  outline: none;
}

.page-content .gform_wrapper.gravity-theme .gform_previous_button.button, 
.page-content .gform_wrapper.gravity-theme .gform_save_link.button,
.page-content .gform_wrapper.gravity-theme .gform_next_button.button {
  color: #fff;
  background-color: #db2b36;
  border: none;
  padding: 4px 20px;
}
.page-content .gform_wrapper.gravity-theme .gform_previous_button.button, 
.page-content .gform_wrapper.gravity-theme .gform_save_link.button {
  background-color: #999;
}

/* = !FOOTER
---------------------------------------------------------------- */
.newsletter h2 {
  margin-bottom: 14px;
}
.newsletter .btn,
.gform_wrapper .gform_footer .newsletter input.button,
.gform_wrapper .gform_footer .newsletter input[type='submit'],
.gform_wrapper .gform_footer .newsletter input[type='image'],
.newsletter .gform_wrapper .gform_footer input.button,
.newsletter .gform_wrapper .gform_footer input[type='submit'],
.newsletter .gform_wrapper .gform_footer input[type='image'] {
  margin-top: 5px;
  display: block;
}
.newsletter img {
  display: inline-block;
  opacity: 0.5;
}
.newsletter .sm-5.lg-5 {
  text-align: center;
}
.newsletter .centered {
  left: 0;
}
.newsletter .gform_heading {
  display: none;
}
.newsletter .gform_wrapper .top_label .gfield_label {
  display: none;
}
.newsletter input:focus::-webkit-input-placeholder {
  text-indent: 99999px;
}
.newsletter input:focus:-moz-placeholder {
  /* Firefox 18- */
  text-indent: 99999px;
}
.newsletter input:focus::-moz-placeholder {
  /* Firefox 19+ */
  text-indent: 99999px;
}
.newsletter input:focus:-ms-input-placeholder {
  text-indent: 99999px;
}
.newsletter input::-webkit-input-placeholder {
  color: #fff;
}
.newsletter input:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}
.newsletter input::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
.newsletter input:-ms-input-placeholder {
  color: #fff;
}
.newsletter input:focus {
  outline: none;
}
.newsletter input[type='text'],
.newsletter input[type='email'] {
  background-color: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid white;
  width: 100%;
  color: #fff;
  line-height: 35px;
  margin-bottom: 25px;
}

.language {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
}
.language > a {
  position: relative;
  color: #fff;
  background: #cec8be;
  font-size: 14px;
  display: inline-block;
  padding: 5px 10px;
}
.language > a:hover {
  color: #fff;
  text-decoration: none;
  background: #db2b36;
}
.language .nav-search-button {
  left: 4px;
}

#google_translate_element {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
#google_translate_element .goog-te-gadget {
  overflow: hidden;
}
#google_translate_element .goog-te-gadget-simple {
  display: block;
  height: 34px;
  border: none;
  background: transparent;
}
#google_translate_element .goog-te-gadget-simple img {
  display: none;
}
#google_translate_element .goog-te-menu-value span {
  display: none;
}
#google_translate_element .goog-te-menu-value {
  width: 122px;
  height: 30px;
  display: block;
  margin-top: -35px;
}

.colophon {
  margin-top: 25px;
  margin-bottom: 25px;
  text-align: center;
  color: #555;
}
.colophon a {
  color: #555;
}
.colophon a:hover,
.colophon a:focus {
  color: #db2b36;
  text-decoration: none;
}
.colophon .contact li {
  display: block;
  padding-right: 10px;
}
.colophon .social li {
  margin: 14px 0;
  padding-right: 20px;
}
.colophon .social li:last-child {
  padding-right: 0;
}
.colophon .logo-mark {
  width: 75px;
  margin: auto;
}

/* = !SHAME
---------------------------------------------------------------- */
/* = !RESPONSIVE
---------------------------------------------------------------- */
/* = Wide Mobile:479px. Inherits:Default */
@media (min-width: 479px) {
  /* Base & Helpers */
  .one_half,
  .one_third,
  .two_third,
  .three_fourth,
  .one_fourth {
    margin-right: 4%;
    float: left;
    line-height: 1.75;
    position: relative;
  }

  .one_half {
    width: 48%;
  }

  .one_third {
    width: 30.6666%;
  }

  .two_third {
    width: 65.3332%;
  }

  .one_fourth {
    width: 22%;
  }

  .three_fourth {
    width: 74%;
  }

  /* Structure */
  /* Header */
  /* Content */
  .hero-slide {
    font-size: 52px;
  }

  .lead br {
    display: block;
  }

  .comp-section-7 .hero-title {
    bottom: 50px;
    left: 0;
    right: auto;
    width: auto;
    min-width: 225px;
    margin-left: -25px;
    font-size: 100%;
  }

  /* Footer */
}
/* = XS Tablet:569px. Inherits:Default,Wide Mobile */
@media (min-width: 569px) {
  /* Base & Helpers */
  /* Structure */
  /* Header */
  /* Content */
  .hero-slide {
    font-size: 62px;
  }

  .hero-title {
    font-size: 18px;
  }

  .info-block {
    padding-left: 12px;
    padding-right: 12px;
  }

  .info-images .fc {
    display: block;
  }

  .news-secondary {
    display: block;
  }

  .latest-photos {
    height: 400px;
  }

  .comp-section-4 {
    margin: -35px auto -200px;
  }

  .single-performer blockquote {
    padding-left: 70px;
  }

  /*WP Custom Classes*/

  .center-vert .wp-block-column {
    justify-content: center;
    display: flex;
    flex-direction: column;
  }

  /* !-- Merchandise -- */
  .product-grid > ul > li {
    margin: 0 1.5%;
    margin-bottom: 1.5%;
    width: 47%;
  }

  /* Footer */
  .newsletter .btn,
  .gform_wrapper .gform_footer .newsletter input.button,
  .gform_wrapper .gform_footer .newsletter input[type='submit'],
  .gform_wrapper .gform_footer .newsletter input[type='image'],
  .newsletter .gform_wrapper .gform_footer input.button,
  .newsletter .gform_wrapper .gform_footer input[type='submit'],
  .newsletter .gform_wrapper .gform_footer input[type='image'] {
    display: inline-block;
  }
}
/* = SM Small Desktop:769px. Inherits:Default, Wide Mobile, Tablet */
@media (min-width: 769px) {
  /* Base & Helpers */
  /* Structure */
  /* Header */
  .branding {
    min-height: 150px;
  }

  .logo {
    width: 190px;
    top: 10px;
    left: 50%;
    margin-left: -95px;
  }

  .main-menu {
    display: block;
    position: absolute;
    bottom: 20px;
    right: 50%;
    margin-right: -328px;
  }
  .main-menu li {
    position: relative;
    margin-left: 15px;
  }
  .main-menu li:first-child {
    margin: 0;
  }
  .main-menu li:after {
    position: absolute;
    bottom: -6px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: #fff;
    content: ' ';
    -webkit-transition: background 0.2s ease-in;
    transition: background 0.2s ease-in;
  }
  .main-menu li:hover:after {
    background: #db2b36;
  }

  .sub-nav {
    display: none;
    padding: 100px;
  }
  .sub-nav .main-titles {
    display: none;
  }
  .sub-nav .sub-titles {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    vertical-align: top;
  }
  .sub-nav .sub-nav-menu > li > a {
    cursor: pointer;
  }
  .sub-nav .sub-titles > li > a::after {
    margin: 0;
    border: none;
  }
  .sub-nav .sub-titles > li > a.active::after {
    border: none;
  }
  .sub-nav .sub-menu {
    display: block;
    margin-top: 0;
  }
  .sub-nav .sub-menu li {
    display: inline-block;
  }
  .sub-nav .sub-menu li::after {
    content: '|';
    padding-left: 15px;
    padding-right: 10px;
    color: #db2b36;
  }
  .sub-nav .sub-menu li:last-child::after {
    content: '';
    padding-left: 0;
  }

  .sub-nav-close,
  .search-close {
    position: absolute;
    right: 100px;
    margin: 0;
  }

  .mobile-menu {
    display: none;
  }

  /* Content */
  .hero-slide {
    font-size: 86px;
  }

  .hero-title {
    padding: 10px 20px;
    font-size: 22px;
  }

  .page-content ul {
    margin-left: 0;
  }

  .info .prev {
    left: 0;
  }
  .info .next {
    right: 0;
  }

  .info-block:hover a {
    background: #db2b36;
  }
  .info-block:hover .sepia {
    opacity: 0;
  }

  .info-images {
    max-height: none;
  }
  .info-images img {
    -webkit-transform: none;
    transform: none;
  }
  .info-images .sepia {
    display: block;
  }

  .sidebar {
    text-align: right;
    margin-top: 0;
  }

  .counter {
    font-size: 100px;
  }
  .counter li {
    margin-right: 75px;
    margin-top: 25px;
  }

  .comp-section-2 .centered {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  .comp-section-4 {
    margin: -35px auto -400px;
  }

  .torch-gif {
    position: absolute;
    top: 38%;
    left: 49.5%;
    width: 2%;
  }

  .comp-section-7 .row-1 > .sm-6.lg-6:first-child {
    padding-right: 0;
  }
  .comp-section-7 .row-2 {
    margin-top: 32px;
  }
  .comp-section-7 .row-2 .sm-6.lg-6:first-child {
    padding-right: 16px;
  }
  .comp-section-7 .row-2 .sm-6.lg-6:last-child {
    padding-left: 16px;
  }

  .thank-sponsors {
    display: block;
  }
  .home-grid section {
    padding: 10% 0;
  }
  /* Performer single */
  .single-performer blockquote {
    padding-left: 0;
    font-size: 1.3em;
    line-height: 1.5em;
    font-weight: normal;
  }
  .single-performer blockquote:before {
    left: -75px;
  }

  .performer-nav-prev {
    padding-right: 40px;
    border-right: 1px solid #eee;
    text-align: right;
  }

  .performer-nav-next {
    padding-left: 40px;
    border-left: 1px solid #eee;
    text-align: left;
  }

  /* !-- Merchandise -- */
  .product-grid > ul > li {
    margin: 0 1%;
    margin-bottom: 1%;
    width: 31.3333%;
  }

  /* Footer */
  .newsletter img {
    opacity: 1;
  }
  .newsletter .centered {
    left: auto;
  }
  .newsletter .sm-5.lg-5 {
    text-align: right;
  }

  .colophon {
    margin-top: 0;
    margin-bottom: 0;
  }
  .colophon .extra-links {
    text-align: center;
    margin-top: 14px;
  }
  .colophon .contact {
    display: inline;
  }
  .colophon .contact li {
    display: inline-block;
  }
  .colophon .contact li::after {
    content: '•';
    padding-left: 15px;
  }
  .colophon .contact li:last-child::after {
    content: '';
    padding-left: 0;
  }
  .colophon .social {
    display: inline;
    margin: 0 0 0 15px;
  }
  .colophon .social li {
    margin: 0;
  }

  .sponsor {
    width: 50%;
    padding: 20px 50px;
  }
}
/* = MD Desktop. Inherits:Default, Wide Mobile, Tablet, Small Desktop */
@media (min-width: 992px) {
  /* Base & Helpers */
  /* Structure */
  /* Header */
  .logo {
    width: 275px;
    left: 24px;
    margin-left: 0;
  }

  .main-menu {
    display: block;
    position: absolute;
    bottom: 56px;
    right: 24px;
    margin-right: 0;
  }

  /* Content */
  .hero-slide {
    font-size: 112px;
  }

  .page-title .sm-10.lg-4 {
    padding-left: 0;
  }
  .page-title .hero-title {
    text-align: right;
  }

  .comp-section-2 {
    color: #fff;
  }
  .comp-section-2 .centered {
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .comp-section-2 .hero-title {
    text-align: right;
  }
  .comp-section-2 p {
    margin: 0;
  }

  .comp-section-4 {
    margin: -35px auto -525px;
  }

  /* Footer */
}
/* = LG Large:1200px+. Inherits:Default, Wide Mobile, Tablet, Small Desktop, Desktop */
@media (min-width: 1200px) {
  /* Base & Helpers */
  /* Structure */
  /* Header */
  .logo {
    left: 32px;
  }

  .main-menu {
    right: 32px;
  }
  .main-menu li {
    margin-left: 35px;
  }
  .main-menu .more-links span {
    font-size: 21px;
    margin-left: 6px;
  }

  /* Content */
  .hero-slide {
    font-size: 136px;
  }

  .news .post-content {
    padding-right: 100px;
  }
  .img-circle::after {
    display: block;
    position: absolute;
  }

  .comp-section-4 {
    margin: -50px auto -600px;
  }

  .comp-section-8 {
    width: 1180px;
  }
  .comp-section-8 .sm-12.lg-4 {
    margin: 0;
  }

  /* Footer */
  .colophon .sm-12.lg-7 {
    text-align: left;
  }
  .colophon .extra-links {
    text-align: right;
    margin-top: 0;
  }
}
/* = XLG Giant:1600px+. Inherits:Default, Wide Mobile, Tablet, Small Desktop, Desktop, Large */
@media (min-width: 1600px) {
  /* Base & Helpers */
  /* Structure */
  /* Header */
  /* Content */
  .hero-slide {
    font-size: 182px;
  }

  /* Footer */
}
/* = !SLICK STYLES
---------------------------------------------------------------- */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* = !RESPONSIVE UTILITIES
---------------------------------------------------------------- */
@-ms-viewport {
  width: device-width;
}
.visible-xxs,
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}

.visible-xxs-block,
.visible-xxs-inline,
.visible-xxs-inline-block,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 568px) {
  .visible-xxs {
    display: block !important;
  }

  table.visible-xxs {
    display: table;
  }

  tr.visible-xxs {
    display: table-row !important;
  }

  th.visible-xxs,
  td.visible-xxs {
    display: table-cell !important;
  }
}
@media (max-width: 568px) {
  .visible-xxs-block {
    display: block !important;
  }
}

@media (max-width: 568px) {
  .visible-xxs-inline {
    display: inline !important;
  }
}

@media (max-width: 568px) {
  .visible-xxs-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 768px) {
  .visible-xs {
    display: block !important;
  }

  table.visible-xs {
    display: table;
  }

  tr.visible-xs {
    display: table-row !important;
  }

  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 768px) {
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 768px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }

  table.visible-sm {
    display: table;
  }

  tr.visible-sm {
    display: table-row !important;
  }

  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 769px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }

  table.visible-md {
    display: table;
  }

  tr.visible-md {
    display: table-row !important;
  }

  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }

  table.visible-lg {
    display: table;
  }

  tr.visible-lg {
    display: table-row !important;
  }

  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 568px) {
  .hidden-xxs {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 769px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }

  table.visible-print {
    display: table;
  }

  tr.visible-print {
    display: table-row !important;
  }

  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}

.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}

.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  .hidden-print {
    display: none !important;
  }
}
/* = !PRINT
---------------------------------------------------------------- */
/* = ADDED BY KELSEY
---------------------------------------------------------------- */
.tailor-element ul {
  list-style: disc;
}

/******* event calendar style *******/
span.tribe-events-divider {
  padding: 0 5px;
}

.tribe-events-list .tribe-events-loop .tribe-events-event-image {
  width: 15% !important;
}

.tribe-events-list h2.tribe-events-page-title {
  margin-top: 15px;
  background: #db2b36;
  color: #fff;
  text-transform: uppercase;
  padding: 10px 20px;
  font-size: 22px;
}

/*.tribe-bar-disabled {
  display: none;
}*/
.tribe-bar-views-inner.tribe-clearfix {
  padding-bottom: 44px !important;
}

.tribe-events-list-separator-month {
  background-color: #eee0 !important;
  display: block !important;
  font-size: 18px !important;
  font-weight: bold !important;
  margin: 1em 0 0 !important;
  padding: 6px 0px !important;
  text-transform: uppercase !important;
}

.tribe-events-list-separator-month + .type-tribe_events.tribe-events-first {
  padding-top: 1em;
}

h2.tribe-events-page-title {
  display: none;
}

.tribe-event-schedule-details {
  font-size: 17px;
}

.tribe-events-month-event-title a {
  font-size: 15px !important;
}

.single-tribe_events .tribe-events-single-event-title {
  font-size: 22px;
  line-height: 1;
  margin: 0;
  padding: 0;
  /*    background-color: #DB2B36;*/
  color: #2d2d2d;
  /*    padding: 10px 20px !important;
      text-align: center;*/
  text-transform: uppercase;
}

.ticket-button-class {
  background-color: #db2b36;
  padding: 10px;
  color: #fff;
  float: left;
}

.bullet {
  margin-top: 20px;
}

.bullet {
  list-style: square;
}

.board_member h4 {
  font-size: 18px;
  margin-bottom: 0;
}

.officers h3 {
  margin-bottom: 0px;
}

.board_member p {
  font-size: 14px;
  color: #929292;
}

.officers p {
  font-size: 14px;
  color: #929292;
}

/* Friends of IBA Page */

.friends-usa-ibc .text-center {
  text-align: center !important;
}
.ways-to-support .gfield_description {
  margin-bottom: 25px !important;
  font-size: 18px !important;
}

h2.ways-to-support {
  font-size: 28px !important;
  margin-bottom: 10px !important;
  color: #db2b36;
}
.ways-to-support .gfield_label {
  font-size: 18px !important;
  margin-top: 25px;
  margin-bottom: 0 !important;
}
.membership-levels .membership-wrapper {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  display: block;
}

.ways-to-support .ginput_container_checkbox {
  margin-top: 0px;
}

@media only screen and (min-width: 980px) {
  .ways-to-support .one-third {
    width: 30%;
    margin: 0 1.5% !important;
    float: left;
    clear: none !important;
  }
}
.friends-usa-ibc.gform_wrapper .gform_page_footer {
  text-align: center;
}

.friends-usa-ibc .gform_next_button,
.friends-usa-ibc .gform_button {
  text-align: center;
  background: #db2b36;
  color: #fff;
  padding: 10px 20px;
  font-size: 25px !important;
  border: 0;
  width: 100% !important;
  text-transform: uppercase;
}

.mn-btm {
  margin-bottom: 40px;
}

.mn-btm-0 {
  margin-bottom: 0;
}

.friends-usa-ibc .gform_previous_button {
  background: transparent;
  border: 0;
  color: #db2b36;
  text-decoration: underline;
  padding-bottom: 20px;
}

.gform_legacy_markup_wrapper .field_description_below .gfield_description {
  font-size: 16px;
}

.is-style-stripes td {
  padding: 10px;
}
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background: #e5e5e5 !important;
}
