#repreve.mixins.hover-fill-effect {
  /**
     * Adds a hover fill effect to a selector. Takes a specified 
     * background color and text color to be applied.
     */
  /**
     * Overrides the background color and text color specified by the
     * add mixin.
     */
}

/**
 * Sets a selector to act like a column-layout. This includes rules for
 * clearing nested columns etc...
 */

/**
 * Sets a selector to act like a column. Takes an optional width
 * parameter, but will default to 100% width if ommitted.
 */

/**
 * Sets a selector to act like a 50% column.
 */

/**
 * Sets a selector to act like a 33.33% column.
 */

/**
 * Sets a selector to act like a 25% column.
 */

/**
 * Updates a column's width to the specified width.
 */

/**
 * Sets a column's width to 100%.
 */

/**
 * Sets a columns width to 50%.
 */

/**
 * Sets a columns width to 33.33%;
 */

/**
 * Sets a columns width to 25%.
 */

.bg-green {
  background-color: #7dbe00;
}

.bg-dark-grey {
  background-color: #202020;
}

.bg-light-grey {
  background-color: #efefef;
}

.bg-white {
  background-color: #efefef;
}

.heading-lg {
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 800;
  font-style: normal;
  font-size: 38px;
  line-height: 40px;
  text-transform: uppercase;
}

.heading-md {
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
  line-height: 28px;
  text-transform: uppercase;
}

.heading-sm {
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
}

.body-text {
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
}

.body-text.bold {
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 700;
  font-style: normal;
}

.body-text-sm {
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  line-height: 18px;
}

.text-dark-grey {
  color: #202020 !important;
}

.text-light-grey {
  color: #efefef !important;
}

.text-green {
  color: #7dbe00 !important;
}

.text-white {
  color: #fff;
}

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

/**
 * Colorizes the selector with specific colors for :hover and
 * up states.
 */

.btn {
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 500;
  font-style: normal;
  background-color: #202020;
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 200;
  display: inline-block;
  padding-top: 25px;
  padding-right: 50px;
  padding-bottom: 25px;
  padding-left: 50px;
  border-radius: 3px;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  border: 0;
}

.btn .effect-layer-background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 201;
  display: block;
  width: 200%;
  height: 150%;
  background-color: #7dbe00;
  -webkit-transform: translateX(-25%) translateY(120%) rotate(-15deg);
  transform: translateX(-25%) translateY(120%) rotate(-15deg);
  transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn .effect-layer-foreground {
  position: relative;
  z-index: 202;
  transition: color .2s linear;
}

.btn:hover .effect-layer-background,
.btn:focus .effect-layer-background,
.btn:active .effect-layer-background,
.btn.active .effect-layer-background {
  -webkit-transform: translateX(-25%) translateY(-10%) rotate(0);
  transform: translateX(-25%) translateY(-10%) rotate(0);
}

.btn:hover .effect-layer-foreground,
.btn:focus .effect-layer-foreground,
.btn:active .effect-layer-foreground,
.btn.active .effect-layer-foreground {
  color: #fff;
}

.btn:focus,
.btn:active {
  outline: 0;
}

.btn.btn-dark-grey-to-green {
  background-color: #202020;
  color: #fff;
}

.btn.btn-dark-grey-to-green .effect-layer-background {
  background-color: #7dbe00;
}

.btn.btn-dark-grey-to-green:hover .effect-layer-foreground,
.btn.btn-dark-grey-to-green:focus .effect-layer-foreground,
.btn.btn-dark-grey-to-green.active .effect-layer-foreground {
  color: #fff;
}

.btn.btn-white-to-green {
  background-color: #fff;
  color: #202020;
}

.btn.btn-white-to-green .effect-layer-background {
  background-color: #7dbe00;
}

.btn.btn-white-to-green:hover .effect-layer-foreground,
.btn.btn-white-to-green:focus .effect-layer-foreground,
.btn.btn-white-to-green.active .effect-layer-foreground {
  color: #fff;
}

.btn.btn-white-to-dark-grey {
  background-color: #fff;
  color: #202020;
}

.btn.btn-white-to-dark-grey .effect-layer-background {
  background-color: #202020;
}

.btn.btn-white-to-dark-grey:hover .effect-layer-foreground,
.btn.btn-white-to-dark-grey:focus .effect-layer-foreground,
.btn.btn-white-to-dark-grey.active .effect-layer-foreground {
  color: #fff;
}

.btn.btn-on-green {
  background-color: #202020;
  color: #fff;
}

.btn.btn-on-green .effect-layer-background {
  background-color: #fff;
}

.btn.btn-on-green:hover .effect-layer-foreground,
.btn.btn-on-green:focus .effect-layer-foreground,
.btn.btn-on-green.active .effect-layer-foreground {
  color: #202020;
}

.btn.btn-on-light-grey {
  background-color: #202020;
  color: #fff;
}

.btn.btn-on-light-grey .effect-layer-background {
  background-color: #7dbe00;
}

.btn.btn-on-light-grey:hover .effect-layer-foreground,
.btn.btn-on-light-grey:focus .effect-layer-foreground,
.btn.btn-on-light-grey.active .effect-layer-foreground {
  color: #fff;
}

.btn.btn-on-dark-grey {
  background-color: #fff;
  color: #202020;
}

.btn.btn-on-dark-grey .effect-layer-background {
  background-color: #7dbe00;
}

.btn.btn-on-dark-grey:hover .effect-layer-foreground,
.btn.btn-on-dark-grey:focus .effect-layer-foreground,
.btn.btn-on-dark-grey.active .effect-layer-foreground {
  color: #fff;
}

@media (max-width: 600px) {
  .btn {
    padding-top: 20px;
    padding-right: 30px;
    padding-bottom: 20px;
    padding-left: 30px;
    font-size: 13px;
  }
}

/**
 * Colorizes the selector with specific colors for :hover and
 * up states.
 */

.btn-outlined {
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 500;
  font-style: normal;
  border-color: #202020;
  color: #202020;
  position: relative;
  overflow: hidden;
  z-index: 200;
  display: inline-block;
  padding-top: 10px;
  padding-right: 30px;
  padding-bottom: 10px;
  padding-left: 30px;
  border-radius: 3px;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
  cursor: pointer;
}

.btn-outlined:hover {
  color: #202020;
}

.btn-outlined .effect-layer-background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 201;
  display: block;
  width: 200%;
  height: 150%;
  background-color: #202020;
  -webkit-transform: translateX(-25%) translateY(120%) rotate(-15deg);
  transform: translateX(-25%) translateY(120%) rotate(-15deg);
  transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-outlined .effect-layer-foreground {
  position: relative;
  z-index: 202;
  transition: color .2s linear;
}

.btn-outlined:hover .effect-layer-background,
.btn-outlined:focus .effect-layer-background,
.btn-outlined:active .effect-layer-background,
.btn-outlined.active .effect-layer-background {
  -webkit-transform: translateX(-25%) translateY(-10%) rotate(0);
  transform: translateX(-25%) translateY(-10%) rotate(0);
}

.btn-outlined:hover .effect-layer-foreground,
.btn-outlined:focus .effect-layer-foreground,
.btn-outlined:active .effect-layer-foreground,
.btn-outlined.active .effect-layer-foreground {
  color: #fff;
}

.btn-outlined:focus,
.btn-outlined:active {
  outline: 0;
}

.btn-outlined.btn-outlined-dark-grey {
  border-color: #202020;
  color: #202020;
}

.btn-outlined.btn-outlined-dark-grey:hover {
  color: #202020;
}

.btn-outlined.btn-outlined-dark-grey .effect-layer-background {
  background-color: #202020;
}

.btn-outlined.btn-outlined-dark-grey:hover .effect-layer-foreground,
.btn-outlined.btn-outlined-dark-grey:focus .effect-layer-foreground,
.btn-outlined.btn-outlined-dark-grey.active .effect-layer-foreground {
  color: #fff;
}

.btn-outlined.btn-outlined-white {
  border-color: #fff;
  color: #fff;
}

.btn-outlined.btn-outlined-white:hover {
  color: #fff;
}

.btn-outlined.btn-outlined-white .effect-layer-background {
  background-color: #fff;
}

.btn-outlined.btn-outlined-white:hover .effect-layer-foreground,
.btn-outlined.btn-outlined-white:focus .effect-layer-foreground,
.btn-outlined.btn-outlined-white.active .effect-layer-foreground {
  color: #202020;
}

.btn-outlined.btn-on-green {
  border-color: #fff;
  color: #fff;
}

.btn-outlined.btn-on-green:hover {
  color: #fff;
}

.btn-outlined.btn-on-green .effect-layer-background {
  background-color: #fff;
}

.btn-outlined.btn-on-green:hover .effect-layer-foreground,
.btn-outlined.btn-on-green:focus .effect-layer-foreground,
.btn-outlined.btn-on-green.active .effect-layer-foreground {
  color: #202020;
}

.btn-outlined.btn-on-light-grey {
  background-color: #202020;
  color: #202020;
}

.btn-outlined.btn-on-light-grey .effect-layer-background {
  background-color: #202020;
}

.btn-outlined.btn-on-light-grey:hover .effect-layer-foreground,
.btn-outlined.btn-on-light-grey:focus .effect-layer-foreground,
.btn-outlined.btn-on-light-grey.active .effect-layer-foreground {
  color: #fff;
}

.btn-outlined.btn-on-dark-grey {
  border-color: #fff;
  color: #fff;
}

.btn-outlined.btn-on-dark-grey:hover {
  color: #fff;
}

.btn-outlined.btn-on-dark-grey .effect-layer-background {
  background-color: #fff;
}

.btn-outlined.btn-on-dark-grey:hover .effect-layer-foreground,
.btn-outlined.btn-on-dark-grey:focus .effect-layer-foreground,
.btn-outlined.btn-on-dark-grey.active .effect-layer-foreground {
  color: #202020;
}

.btn-outlined.disabled {
  opacity: .65;
  cursor: default;
}

.btn-outlined.disabled .effect-layer-background {
  background-color: #7dbe00 !important;
}

.btn-outlined.disabled:hover .effect-layer-foreground,
.btn-outlined.disabled:focus .effect-layer-foreground,
.btn-outlined.disabled.active .effect-layer-foreground {
  color: #fff !important;
}

.form-control {
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 500;
  font-style: normal;
  padding-top: 5px;
  padding-left: 15px;
  margin-bottom: 5px;
  width: 100%;
  height: 45px;
  font-size: 14px;
  color: #202020;
  background-color: #fff;
  border: none;
  border-radius: 0;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-control:focus {
  padding-left: 11px;
  border-left: 4px solid #202020;
  background-color: #efefef;
}

.has-error .form-control {
  padding-left: 29px;
  background-image: url('/static/images/form-error-icon.png');
  background-repeat: no-repeat;
  background-position: 14px center;
  background-size: 6px 20px;
}

.has-error .form-control:focus {
  padding-left: 25px;
  background-position: 10px center;
}

.control-label {
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 500;
  font-style: normal;
  display: inline-block;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: normal;
  color: #ffffff;
  text-transform: uppercase;
}

.control-label-caption {
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  line-height: 18px;
  color: #202020;
}

.control-label-caption a,
.control-label-caption a:visited,
.control-label-caption a:active,
.control-label-caption a:hover {
  color: #202020;
}

.control-label-caption.control-label-caption-note {
  dispay: block;
  margin-top: 10px;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

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

.checkbox-group {
  display: block;
  padding: 12px 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
}

.checkbox-group .control-label {
  cursor: pointer;
  margin-bottom: 0;
}

.checkbox-group .control-label-caption {
  display: block;
  padding-left: 22px;
  text-transform: none;
}

.radio-group {
  display: block;
  padding: 0;
}

.radio-group .control-label {
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  line-height: 18px;
  vertical-align: top;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.08);
  padding: 12px 15px;
  border-radius: 8px;
  cursor: pointer;
  color: #202020;
  width: 30%;
}

.form-error-messaging {
  position: relative;
  padding: 40px;
  border-radius: 6px;
  background-color: #202020;
}

.form-error-messaging h2 {
  margin-top: 0;
  color: #7dbe00;
  text-align: center;
}

.form-error-messaging p {
  color: #ffffff;
}

.form-error-messaging ul {
  margin: 0;
  padding: 0 0 0 65px;
  list-style-type: bullet;
}

.form-error-messaging ul li {
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 500;
  font-style: normal;
  padding-top: 5px;
  font-size: 14px;
  color: #7dbe00;
}

.form-error-messaging:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -20px;
  left: 50px;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-top: 25px solid #202020;
}

h1 {
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 800;
  font-style: normal;
  font-size: 38px;
  line-height: 40px;
  text-transform: uppercase;
}

h2 {
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
  line-height: 28px;
  text-transform: uppercase;
}

h3 {
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
}

p {
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
}

p.bold {
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 700;
  font-style: normal;
}

p .bold {
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 700;
  font-style: normal;
}

.content-container {
  position: relative;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
  max-width: 1100px;
  /** Size **/
  /** Color **/
}

.content-container.content-container-narrow {
  padding-right: 75px;
  padding-left: 75px;
  max-width: 800px;
}

@media (max-width: 768px) {
  .content-container.content-container-narrow {
    padding-right: 6%;
    padding-left: 6%;
  }
}

.content-container.content-container-green {
  background-color: #7dbe00;
}

.content-container.content-container-light-grey {
  background-color: #efefef;
}

.content-container.content-container-dark-grey {
  background-color: #202020;
}

.content-container-angle {
  position: absolute;
  left: 0;
  width: 100%;
  height: 58px;
  background-image: url('/images/graphics/content-container-angles.png');
  background-repeat: no-repeat;
  background-size: 1100px 348px;
}

.content-container-angle.angle-top {
  top: -58px;
}

.content-container-angle.angle-top.angle-green {
  background-position: 0 0;
}

.content-container-angle.angle-top.angle-light-grey {
  background-position: 0 -116px;
}

.content-container-angle.angle-top.angle-dark-grey {
  background-position: 0 -232px;
}

.content-container-angle.angle-bottom {
  bottom: -58px;
}

.content-container-angle.angle-bottom.angle-green {
  background-position: 0 -58px;
}

.content-container-angle.angle-bottom.angle-light-grey {
  background-position: 0 -174px;
}

.content-container-angle.angle-bottom.angle-dark-grey {
  background-position: 0 -290px;
}

.column-layout:before,
.column-layout:after {
  content: " ";
  display: table;
}

.column-layout:after {
  clear: both;
}

.column-layout .column {
  display: block;
  float: left;
  width: 100%;
  vertical-align: top;
}

.column-layout .column.column-full {
  width: 100%;
}

.column-layout .column.column-half {
  width: 50%;
}

.column-layout .column.column-third {
  width: 33.33%;
}

.column-layout .column.column-fourth {
  width: 25%;
}

@media (max-width: 600px) {
  .column-layout .column.column-full,
  .column-layout .column.column-half,
  .column-layout .column.column-third,
  .column-layout .column.column-fourth {
    width: 100%;
  }
}

.page-report {
  position: relative;
}

.page-report:after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 400px;
  background-color: #202020;
  z-index: 1;
}

.page-report header {
  padding-top: 100px;
  position: relative;
  z-index: 3;
  text-align: center;
}

.page-report article.report {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  margin-top: 100px;
  padding: 50px;
  max-width: 1000px;
  background-color: #fff;
}

@media (max-width: 1000px) {
  .page-report {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-report article.report {
    padding: 25px;
  }
}

table.line-item-list table.line-item-list caption,
table.line-item-list tbody,
table.line-item-list tfoot,
table.line-item-list thead,
table.line-item-list tr,
table.line-item-list th,
table.line-item-list td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

table.line-item-list {
  width: 100%;
}

table.line-item-list tr {
  width: 100%;
}

table.line-item-list td {
  margin: 0;
  padding: 12px 0 12px 0;
  border-bottom: 3px solid #efefef;
  vertical-align: middle;
  line-height: 1.8rem;
}

table.line-item-list tr.item-child td.label {
  padding-left: 90px;
  font-size: 1rem;
}

table.line-item-list td.label {
  width: 45%;
  padding-left: 50px;
  font-size: 1.2rem;
}

table.line-item-list td.value {
  width: 55%;
  padding-right: 50px;
  text-align: right;
  font-family: verdana, helvetica, sans-serif;
  font-size: 1.2rem;
  letter-spacing: .1rem;
}

@media (max-width: 1000px) {
  table.line-item-list td.label {
    width: 60%;
  }

  table.line-item-list td.value {
    width: 40%;
  }

  table.line-item-list td.label,
  table.line-item-list td.value,
  table.line-item-list tr.item-child td.label,
  table.line-item-list tr.item-child {
    padding-left: 0;
    padding-right: 0;
  }
}

article.report > section {
  margin-top: 100px;
}

article.report > section h1 {
  padding-left: 20px;
}

@media (max-width: 800px) {
  article.report > section h1 {
    font-size: 1.8rem;
    text-align: center;
  }
}

article.report p.summary {
  padding: 20px 25% 20px 20px;
  background-color: #efefef;
}

article.report p.summary:before {
  content: 'Note: ';
  font-weight: bold;
}

@media (max-width: 800px) {
  article.report p.summary {
    padding-right: 20px;
  }
}

article.report header.report-header {
  padding-top: 20px;
  text-align: center;
}

article.report header.report-header .logo-pb9 {
  display: inline-block;
  width: 162.5px;
  height: auto;
}

article.report footer.report-footer {
  margin-top: 150px;
  text-align: center;
}

header.page-report-header {
  color: #fff;
  letter-spacing: .3px;
}

header.page-report-header .logo-repreve {
  display: inline-block;
  width: 181px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: Helvetica, sans-serif;
}

p {
  line-height: 1.5rem;
}

p a,
p a:hover,
p a:visited,
p a:active {
  color: #7dbe00;
  text-decoration: none;
  font-weight: bold;
}

.photo {
  width: 100%;
  height: auto;
}

.logo-repreve {
  width: 181px;
  height: 56px;
}

.logo-pb9 {
  width: 250px;
  height: 244px;
}

blockquote {
  text-align: center;
  margin: 0;
}

blockquote:before {
  content: '';
  margin: 0 auto 30px auto;
  display: block;
  width: 59px;
  height: 44px;
  background-image: url('/images/quotation-mark@2x.jpg');
  background-repeat: no-repeat;
  background-size: 59px 44px;
}

blockquote p {
  font-size: 1rem;
  line-height: 1.5rem;
}

blockquote footer {
  color: #919191;
  font-size: 1rem;
  font-style: italic;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 400;
  display: none;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0px;
  width: 100%;
  height: 100%;
}

.overlay.overlay-show {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.overlay .overlay-background {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}

.overlay .overlay-content {
  position: relative;
  z-index: 201;
}

.overlay .btn-close {
  position: fixed;
  z-index: 400;
  top: 10px;
  right: 10px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  width: 45px;
  height: 45px;
  cursor: pointer;
}

.overlay .btn-close:before {
  z-index: 300;
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
  line-height: 28px;
  text-transform: uppercase;
  content: "X";
  font-size: 1.25rem;
}

.overlay .btn-close:hover {
  color: #202020;
}

.overlay-photo {
  overflow-y: auto;
}

.overlay-photo .photo-container {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.overlay-photo .photo-container img {
  display: block;
  width: 100%;
  height: auto;
}

.overlay-video {
  /**
     * Embed responsively styles pulled from http://abeautifulsite.net
     * http://www.abeautifulsite.net/how-to-embed-youtubevimeo-videos-responsively/
     */
}

.overlay-video .embed-container {
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.overlay-video .embed-container iframe,
.overlay-video .embed-container object,
.overlay-video .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.social-menu {
  padding: 0;
  list-style: none;
  text-align: center;
}

.social-menu li {
  display: inline-block;
}

.social-menu .social-icon-btn {
  margin: 0;
  display: inline-block;
  width: 36px;
  height: 36px;
  background-color: #202020;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.1s linear;
}

.social-menu .social-icon-btn:hover {
  background-color: #7dbe00;
}

.social-menu .social-icon {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-image: url('/images/social-icons-white.png');
  background-repeat: no-repeat;
  background-size: 108px 36px;
}

.social-menu .social-icon.social-icon-twitter {
  background-position: 0 0;
}

.social-menu .social-icon.social-icon-instagram {
  background-position: -36px 0;
}

.social-menu .social-icon.social-icon-facebook {
  background-position: -72px 0;
}

.page-home.page-overlay-show {
  overflow-y: hidden;
  width: 100%;
  height: 100%;
}

.page {
  margin: 0 auto;
  max-width: 1100px;
}

.menu-bar {
  position: fixed;
  z-index: 300;
  width: 100%;
  max-width: 1100px;
  padding: 25px 0;
  background-color: rgba(255, 255, 255, 0.98);
}

.menu-bar .logo-repreve {
  display: block;
  margin: 0 auto;
  width: 181px;
}

.menu-bar .social-menu {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  margin: 0;
  position: absolute;
  top: 35px;
  right: 0;
}

.menu-bar .social-menu li {
  padding-left: 5px;
}

.menu-bar .social-menu li a.menu-item {
  display: inline-block;
  margin-top: 10px;
  margin-right: 20px;
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 500;
  font-style: normal;
  color: #202020;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
}

.menu-bar .social-menu li a.menu-item:hover {
  color: #7dbe00;
}

@media (max-width: 1115px) {
  .menu-bar .social-menu {
    right: 15px;
  }
}

@media (max-width: 800px) {
  .menu-bar {
    padding-top: 15px 6%;
  }

  .menu-bar .social-menu {
    display: none;
  }
}

.header {
  padding: 150px 20px 410px 20px;
  max-width: 1100px;
  min-height: 700px;
  background-image: url('/images/header.jpg');
  background-repeat: no-repeat;
  background-size: 1100px 537px;
  background-position: bottom center;
  text-align: center;
}

.header .heading {
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
  line-height: 28px;
  text-transform: uppercase;
}

.header .heading .title {
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 800;
  font-style: normal;
  font-size: 38px;
  line-height: 40px;
  text-transform: uppercase;
  margin-top: 10px;
  display: block;
  color: #7dbe00;
  font-size: 50px;
  line-height: 42px;
}

.header .intro {
  padding: 0 18%;
  color: #919191;
  line-height: 22px;
  text-align: left;
}

.header .btn-watch-video {
  margin: 30px 10px 0 10px;
  box-shadow: 3px 5px 8px rgba(0, 0, 0, 0.2);
}

.header .btn-view-auction {
  margin: 20px 10px 0 10px;
  box-shadow: 3px 5px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 500px) {
  .header {
    padding-top: 80px;
    padding-left: 20px;
    padding-bottom: 220px;
    background-size: 550px 269px;
  }

  .header .logo-repreve {
    margin-bottom: 10px;
  }

  .header .intro {
    padding: 0;
    font-size: .8rem;
    line-height: 18px;
    text-align: left;
  }

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

  .header .heading .title {
    font-size: 25px;
    line-height: 25px;
  }
}

section.auction-details {
  position: relative;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
  max-width: 1100px;
  /** Size **/
  /** Color **/
  padding-right: 20%;
  padding-left: 20%;
  background-color: #202020;
  color: #fff;
}

section.auction-details.content-container-narrow {
  padding-right: 75px;
  padding-left: 75px;
  max-width: 800px;
}

@media (max-width: 768px) {
  section.auction-details.content-container-narrow {
    padding-right: 6%;
    padding-left: 6%;
  }
}

section.auction-details.content-container-green {
  background-color: #7dbe00;
}

section.auction-details.content-container-light-grey {
  background-color: #efefef;
}

section.auction-details.content-container-dark-grey {
  background-color: #202020;
}

section.auction-details h1 {
  text-align: center;
}

section.auction-details h1 .scribble {
  position: relative;
}

section.auction-details h1 .scribble:after {
  content: '';
  position: absolute;
  display: block;
  top: 5px;
  left: 0;
  width: 24px;
  height: 32px;
  background-image: url('/images/scribble@2x.png');
  background-repeat: no-repeat;
  background-size: 24px 32px;
}

@media (max-width: 800px) {
  section.auction-details {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 500px) {
  section.auction-details {
    padding-right: 6%;
    padding-left: 6%;
  }
}

section.auction-items {
  position: relative;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
  max-width: 1100px;
  /** Size **/
  /** Color **/
  padding-bottom: 0;
}

section.auction-items.content-container-narrow {
  padding-right: 75px;
  padding-left: 75px;
  max-width: 800px;
}

@media (max-width: 768px) {
  section.auction-items.content-container-narrow {
    padding-right: 6%;
    padding-left: 6%;
  }
}

section.auction-items.content-container-green {
  background-color: #7dbe00;
}

section.auction-items.content-container-light-grey {
  background-color: #efefef;
}

section.auction-items.content-container-dark-grey {
  background-color: #202020;
}

section.auction-items h1 {
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
  line-height: 28px;
  text-transform: uppercase;
  text-align: center;
}

section.auction-items h1 .title {
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 800;
  font-style: normal;
  font-size: 38px;
  line-height: 40px;
  text-transform: uppercase;
  margin-top: 10px;
  display: block;
  color: #7dbe00;
  font-size: 50px;
}

section.auction-items .items {
  margin-top: 50px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

section.auction-items .items .items-item {
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin: 0 0 20px 0;
  padding: 20px 0;
  width: 250px;
  background-color: #7dbe00;
  text-align: center;
}

section.auction-items .items .items-item .thumb {
  margin-bottom: 10px;
  width: 150px;
  height: 235px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: 210ms ease-out;
}

section.auction-items .items .items-item .thumb:hover {
  -webkit-transform: scale(1.36, 1.36) translateY(32px);
  transform: scale(1.36, 1.36) translateY(32px);
  cursor: pointer;
}

section.auction-items .items .items-item .title {
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
  line-height: 28px;
  text-transform: uppercase;
  margin: 10px 0 0 0;
  font-size: 1.1rem;
  line-height: 1rem;
  color: #fff;
  font-weight: normal;
}

section.auction-items .items .items-item .details {
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  margin: 0 0 5px 0;
  color: #202020;
  text-transform: none;
  font-size: 0.8rem;
}

section.auction-items .items .items-item .countdown {
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  line-height: 18px;
  margin: 0 0 25px 0;
  font-weight: bold;
}

@media (min-width: 901px) {
  section.auction-items .items .items-item {
    -webkit-flex: 0 0 23.2%;
    -ms-flex: 0 0 23.2%;
    flex: 0 0 23.2%;
    margin-right: 2.4%;
  }

  section.auction-items .items .items-item:nth-child(4n) {
    margin-right: 0;
  }
}

@media (max-width: 900px) {
  section.auction-items .items .items-item {
    -webkit-flex: 0 0 32%;
    -ms-flex: 0 0 32%;
    flex: 0 0 32%;
    margin-right: 2%;
  }

  section.auction-items .items .items-item:nth-child(4n) {
    margin-right: 2%;
  }

  section.auction-items .items .items-item:nth-child(3n) {
    margin-right: 0;
  }
}

@media (max-width: 700px) {
  section.auction-items .items .items-item {
    -webkit-flex: 0 0 48%;
    -ms-flex: 0 0 48%;
    flex: 0 0 48%;
    margin-right: 4%;
  }

  section.auction-items .items .items-item:nth-child(4n) {
    margin-right: 4%;
  }

  section.auction-items .items .items-item:nth-child(3n) {
    margin-right: 4%;
  }

  section.auction-items .items .items-item:nth-child(2n) {
    margin-right: 0;
  }
}

@media (max-width: 500px) {
  section.auction-items .items .items-item {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-right: 0;
  }

  section.auction-items .items .items-item:nth-child(4n) {
    margin-right: 0;
  }

  section.auction-items .items .items-item:nth-child(3n) {
    margin-right: 0;
  }

  section.auction-items .items .items-item:nth-child(2n) {
    margin-right: 0;
  }
}

section.social-cta {
  position: relative;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
  max-width: 1100px;
  /** Size **/
  /** Color **/
  padding-right: 18%;
  padding-left: 18%;
  background-color: #efefef;
  text-align: center;
}

section.social-cta.content-container-narrow {
  padding-right: 75px;
  padding-left: 75px;
  max-width: 800px;
}

@media (max-width: 768px) {
  section.social-cta.content-container-narrow {
    padding-right: 6%;
    padding-left: 6%;
  }
}

section.social-cta.content-container-green {
  background-color: #7dbe00;
}

section.social-cta.content-container-light-grey {
  background-color: #efefef;
}

section.social-cta.content-container-dark-grey {
  background-color: #202020;
}

section.social-cta p {
  font-size: 1.1rem;
  line-height: 1.75rem;
}

section.social-cta .btn {
  margin-top: 20px;
}

@media (max-width: 500px) {
  section.social-cta {
    padding-right: 6%;
    padding-left: 6%;
  }
}

section.main-quote {
  position: relative;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
  max-width: 1100px;
  /** Size **/
  /** Color **/
  padding-right: 18%;
  padding-left: 18%;
  padding-bottom: 0;
}

section.main-quote.content-container-narrow {
  padding-right: 75px;
  padding-left: 75px;
  max-width: 800px;
}

@media (max-width: 768px) {
  section.main-quote.content-container-narrow {
    padding-right: 6%;
    padding-left: 6%;
  }
}

section.main-quote.content-container-green {
  background-color: #7dbe00;
}

section.main-quote.content-container-light-grey {
  background-color: #efefef;
}

section.main-quote.content-container-dark-grey {
  background-color: #202020;
}

@media (max-width: 500px) {
  section.main-quote {
    padding-right: 6%;
    padding-left: 6%;
  }
}

section.background {
  position: relative;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
  max-width: 1100px;
  /** Size **/
  /** Color **/
  padding-right: 75px;
  padding-left: 75px;
  max-width: 800px;
  padding-bottom: 150px;
}

section.background.content-container-narrow {
  padding-right: 75px;
  padding-left: 75px;
  max-width: 800px;
}

@media (max-width: 768px) {
  section.background.content-container-narrow {
    padding-right: 6%;
    padding-left: 6%;
  }
}

section.background.content-container-green {
  background-color: #7dbe00;
}

section.background.content-container-light-grey {
  background-color: #efefef;
}

section.background.content-container-dark-grey {
  background-color: #202020;
}

@media (max-width: 768px) {
  section.background {
    padding-right: 6%;
    padding-left: 6%;
  }
}

section.background .logo-pb9 {
  display: block;
  margin: 0 auto 50px auto;
}

section.background .gallery {
  margin-top: 50px;
  margin-bottom: 50px;
}

section.background .gallery img {
  display: block;
}

section.background h2 {
  text-transform: none;
}

section.background .btn-visit-container {
  margin-top: 50px;
  text-align: center;
}

section.background p a {
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 28px;
  color: #202020;
  text-decoration: underline;
}

section.background p a.bold {
  font-family: 'Gotham A', 'Gotham B';
  font-weight: 700;
  font-style: normal;
}

.footer {
  position: relative;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
  max-width: 1100px;
  /** Size **/
  /** Color **/
  padding-right: 75px;
  padding-left: 75px;
  max-width: 800px;
  background-color: #efefef;
  text-align: center;
  padding-bottom: 30px;
}

.footer.content-container-narrow {
  padding-right: 75px;
  padding-left: 75px;
  max-width: 800px;
}

@media (max-width: 768px) {
  .footer.content-container-narrow {
    padding-right: 6%;
    padding-left: 6%;
  }
}

.footer.content-container-green {
  background-color: #7dbe00;
}

.footer.content-container-light-grey {
  background-color: #efefef;
}

.footer.content-container-dark-grey {
  background-color: #202020;
}

@media (max-width: 768px) {
  .footer {
    padding-right: 6%;
    padding-left: 6%;
  }
}

.footer .logo-repreve {
  display: block;
  margin: 0 auto 20px auto;
}

.footer .social-menu li {
  padding: 3px;
}

.footer a {
  margin: 10px;
  color: #202020;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .65rem;
  font-weight: bold;
  letter-spacing: .05rem;
}

.footer a:hover {
  color: #7dbe00;
}

@media (max-width: 400px) {
  .footer a {
    display: block;
  }
}

.page-press .press-header {
  position: relative;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
  max-width: 1100px;
  /** Size **/
  /** Color **/
  padding-top: 30px;
}

.page-press .press-header.content-container-narrow {
  padding-right: 75px;
  padding-left: 75px;
  max-width: 800px;
}

@media (max-width: 768px) {
  .page-press .press-header.content-container-narrow {
    padding-right: 6%;
    padding-left: 6%;
  }
}

.page-press .press-header.content-container-green {
  background-color: #7dbe00;
}

.page-press .press-header.content-container-light-grey {
  background-color: #efefef;
}

.page-press .press-header.content-container-dark-grey {
  background-color: #202020;
}

.page-press .press-header .logo-repreve {
  display: block;
  margin: 0 auto;
  width: 181px;
}

.page-press .press-header .logo-pb9 {
  display: block;
  margin: 100px auto 0 auto;
  width: 250px;
}

.page-press .press-logos {
  padding-right: 12%;
  padding-left: 12%;
  list-style: none;
  text-align: center;
}

.page-press .press-logos li {
  display: inline-block;
  vertical-align: middle;
  padding: 20px;
}

@media (max-width: 850px) {
  .page-press .press-logos {
    padding-right: 6%;
    padding-left: 6%;
  }
}

@media (max-width: 600px) {
  .page-press .press-logos {
    padding-right: 2%;
    padding-left: 2%;
  }

  .page-press .press-logos li {
    padding: 10px;
    width: 30%;
    height: auto;
  }

  .page-press .press-logos li img {
    display: inline-block;
    width: 100%;
    height: auto;
  }
}

.page-press .press-item {
  position: relative;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
  max-width: 1100px;
  /** Size **/
  /** Color **/
  padding-right: 18%;
  padding-left: 18%;
}

.page-press .press-item.content-container-narrow {
  padding-right: 75px;
  padding-left: 75px;
  max-width: 800px;
}

@media (max-width: 768px) {
  .page-press .press-item.content-container-narrow {
    padding-right: 6%;
    padding-left: 6%;
  }
}

.page-press .press-item.content-container-green {
  background-color: #7dbe00;
}

.page-press .press-item.content-container-light-grey {
  background-color: #efefef;
}

.page-press .press-item.content-container-dark-grey {
  background-color: #202020;
}

.page-press .press-item .press-logo {
  display: block;
  margin-bottom: 20px;
}

.page-press .press-item h2 {
  font-size: 22px;
  text-align: left;
}

.page-press .press-item p {
  margin: 0;
}

.page-press .press-item p.podcast-link {
  margin-bottom: 20px;
}

.page-press .press-item .video-container {
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.page-press .press-item .video-container iframe,
.page-press .press-item .video-container object,
.page-press .press-item .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 500px) {
  .page-press .press-item {
    padding-right: 6%;
    padding-left: 6%;
  }
}