@charset "UTF-8";
/*!
Theme Name: 2-starter
Theme URI: http://underscores.me/...ish
Author: Justin LaFountain
Author URI: http://jlafountain.com
Description: A starter theme with bootstrap and Platforma.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: starter
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

*/
/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# 3rd Party Libraries
--------------------------------------------------------------*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  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);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.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;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face {
  font-family: 'slick';
  src: url('./fonts/slick.eot');
  src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'),
    url('./fonts/slick.woff') format('woff'),
    url('./fonts/slick.ttf') format('truetype'),
    url('./fonts/slick.svg#slick') format('svg');
  font-weight: normal;
  font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir='rtl'] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: '←';
}
[dir='rtl'] .slick-prev:before {
  content: '→';
}

.slick-next {
  right: -25px;
}
[dir='rtl'] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: '→';
}
[dir='rtl'] .slick-next:before {
  content: '←';
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '•';
  width: 20px;
  height: 20px;
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/*!
 * Bootstrap Grid v4.0.0 (https://getbootstrap.com)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
@-ms-viewport {
  width: device-width;
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

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

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*='col-'] {
  padding-right: 0;
  padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

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

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

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

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

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

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}

/*! lightslider - v1.1.6 - 2016-10-25
* https://github.com/sachinchoolur/lightslider
* Copyright (c) 2016 Sachin N; Licensed MIT */
/*! lightslider - v1.1.3 - 2015-04-14
* https://github.com/sachinchoolur/lightslider
* Copyright (c) 2015 Sachin N; Licensed MIT */
/** /!!! core css Should not edit !!!/**/
.lSSlideOuter {
  overflow: hidden;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.lightSlider:before,
.lightSlider:after {
  content: ' ';
  display: table;
}

.lightSlider {
  overflow: hidden;
  margin: 0;
}

.lSSlideWrapper {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.lSSlideWrapper > .lightSlider:after {
  clear: both;
}

.lSSlideWrapper .lSSlide {
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  -webkit-transition: all 1s;
  -webkit-transition-property: -webkit-transform, height;
  -moz-transition-property: -moz-transform, height;
  transition-property: transform, height;
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
}

.lSSlideWrapper .lSFade {
  position: relative;
}

.lSSlideWrapper .lSFade > * {
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: 9;
  margin-right: 0;
  width: 100%;
}

.lSSlideWrapper.usingCss .lSFade > * {
  opacity: 0;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: inherit !important;
  transition-duration: inherit !important;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: inherit !important;
  transition-timing-function: inherit !important;
}

.lSSlideWrapper .lSFade > *.active {
  z-index: 10;
}

.lSSlideWrapper.usingCss .lSFade > *.active {
  opacity: 1;
}

/** /!!! End of core css Should not edit !!!/**/
/* Pager */
.lSSlideOuter .lSPager.lSpg {
  margin: 10px 0 0;
  padding: 0;
  text-align: center;
}

.lSSlideOuter .lSPager.lSpg > li {
  cursor: pointer;
  display: inline-block;
  padding: 0 5px;
}

.lSSlideOuter .lSPager.lSpg > li a {
  background-color: #222222;
  border-radius: 30px;
  display: inline-block;
  height: 8px;
  overflow: hidden;
  text-indent: -999em;
  width: 8px;
  position: relative;
  z-index: 99;
  -webkit-transition: all 0.5s linear 0s;
  transition: all 0.5s linear 0s;
}

.lSSlideOuter .lSPager.lSpg > li:hover a,
.lSSlideOuter .lSPager.lSpg > li.active a {
  background-color: #428bca;
}

.lSSlideOuter .media {
  opacity: 0.8;
}

.lSSlideOuter .media.active {
  opacity: 1;
}

/* End of pager */
/** Gallery */
.lSSlideOuter .lSPager.lSGallery {
  list-style: none outside none;
  padding-left: 0;
  margin: 0;
  overflow: hidden;
  transform: translate3d(0px, 0px, 0px);
  -moz-transform: translate3d(0px, 0px, 0px);
  -ms-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate3d(0px, 0px, 0px);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.lSSlideOuter .lSPager.lSGallery li {
  overflow: hidden;
  -webkit-transition: border-radius 0.12s linear 0s 0.35s linear 0s;
  transition: border-radius 0.12s linear 0s 0.35s linear 0s;
}

.lSSlideOuter .lSPager.lSGallery li.active,
.lSSlideOuter .lSPager.lSGallery li:hover {
  border-radius: 5px;
}

.lSSlideOuter .lSPager.lSGallery img {
  display: block;
  height: auto;
  max-width: 100%;
}

.lSSlideOuter .lSPager.lSGallery:before,
.lSSlideOuter .lSPager.lSGallery:after {
  content: ' ';
  display: table;
}

.lSSlideOuter .lSPager.lSGallery:after {
  clear: both;
}

/* End of Gallery*/
/* slider actions */
.lSAction > a {
  width: 32px;
  display: block;
  top: 50%;
  height: 32px;
  background-image: url('../img/controls.png');
  cursor: pointer;
  position: absolute;
  z-index: 99;
  margin-top: -16px;
  opacity: 0.5;
  -webkit-transition: opacity 0.35s linear 0s;
  transition: opacity 0.35s linear 0s;
}

.lSAction > a:hover {
  opacity: 1;
}

.lSAction > .lSPrev {
  background-position: 0 0;
  left: 10px;
}

.lSAction > .lSNext {
  background-position: -32px 0;
  right: 10px;
}

.lSAction > a.disabled {
  pointer-events: none;
}

.cS-hidden {
  height: 1px;
  opacity: 0;
  filter: alpha(opacity=0);
  overflow: hidden;
}

/* vertical */
.lSSlideOuter.vertical {
  position: relative;
}

.lSSlideOuter.vertical.noPager {
  padding-right: 0px !important;
}

.lSSlideOuter.vertical .lSGallery {
  position: absolute !important;
  right: 0;
  top: 0;
}

.lSSlideOuter.vertical .lightSlider > * {
  width: 100% !important;
  max-width: none !important;
}

/* vertical controlls */
.lSSlideOuter.vertical .lSAction > a {
  left: 50%;
  margin-left: -14px;
  margin-top: 0;
}

.lSSlideOuter.vertical .lSAction > .lSNext {
  background-position: 31px -31px;
  bottom: 10px;
  top: auto;
}

.lSSlideOuter.vertical .lSAction > .lSPrev {
  background-position: 0 -31px;
  bottom: auto;
  top: 10px;
}

/* vertical */
/* Rtl */
.lSSlideOuter.lSrtl {
  direction: rtl;
}

.lSSlideOuter .lightSlider,
.lSSlideOuter .lSPager {
  padding-left: 0;
  list-style: none outside none;
}

.lSSlideOuter.lSrtl .lightSlider,
.lSSlideOuter.lSrtl .lSPager {
  padding-right: 0;
}

.lSSlideOuter .lightSlider > *,
.lSSlideOuter .lSGallery li {
  float: left;
}

.lSSlideOuter.lSrtl .lightSlider > *,
.lSSlideOuter.lSrtl .lSGallery li {
  float: right !important;
}

/* Rtl */
@-webkit-keyframes rightEnd {
  0% {
    left: 0;
  }
  50% {
    left: -15px;
  }
  100% {
    left: 0;
  }
}

@keyframes rightEnd {
  0% {
    left: 0;
  }
  50% {
    left: -15px;
  }
  100% {
    left: 0;
  }
}

@-webkit-keyframes topEnd {
  0% {
    top: 0;
  }
  50% {
    top: -15px;
  }
  100% {
    top: 0;
  }
}

@keyframes topEnd {
  0% {
    top: 0;
  }
  50% {
    top: -15px;
  }
  100% {
    top: 0;
  }
}

@-webkit-keyframes leftEnd {
  0% {
    left: 0;
  }
  50% {
    left: 15px;
  }
  100% {
    left: 0;
  }
}

@keyframes leftEnd {
  0% {
    left: 0;
  }
  50% {
    left: 15px;
  }
  100% {
    left: 0;
  }
}

@-webkit-keyframes bottomEnd {
  0% {
    bottom: 0;
  }
  50% {
    bottom: -15px;
  }
  100% {
    bottom: 0;
  }
}

@keyframes bottomEnd {
  0% {
    bottom: 0;
  }
  50% {
    bottom: -15px;
  }
  100% {
    bottom: 0;
  }
}

.lSSlideOuter .rightEnd {
  -webkit-animation: rightEnd 0.3s;
  animation: rightEnd 0.3s;
  position: relative;
}

.lSSlideOuter .leftEnd {
  -webkit-animation: leftEnd 0.3s;
  animation: leftEnd 0.3s;
  position: relative;
}

.lSSlideOuter.vertical .rightEnd {
  -webkit-animation: topEnd 0.3s;
  animation: topEnd 0.3s;
  position: relative;
}

.lSSlideOuter.vertical .leftEnd {
  -webkit-animation: bottomEnd 0.3s;
  animation: bottomEnd 0.3s;
  position: relative;
}

.lSSlideOuter.lSrtl .rightEnd {
  -webkit-animation: leftEnd 0.3s;
  animation: leftEnd 0.3s;
  position: relative;
}

.lSSlideOuter.lSrtl .leftEnd {
  -webkit-animation: rightEnd 0.3s;
  animation: rightEnd 0.3s;
  position: relative;
}

/*/  GRab cursor */
.lightSlider.lsGrab > * {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.lightSlider.lsGrabbing > * {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
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-color: 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-search-cancel-button,
input[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  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;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex='-1']:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: '';
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Style Tile
--------------------------------------------------------------*/
body {
  font-family: open-sans, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  color: #5f605f;
}

ul,
ol {
  margin: 0 0 0em 0em;
  padding: 0 0 0 1.5em;
  margin-bottom: 20px;
}

ul.special {
  list-style: none;
  margin: 0 0 0em 0em;
  padding: 0 0 0 1.5em;
  margin-bottom: 20px;
}
ul.special li {
  margin-bottom: 20px;
  line-height: 140%;
  position: relative;
}
ul.special li:after {
  content: '';
  width: 15px;
  position: absolute;
  height: 15px;
  background: url(img/paw.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: -24px;
  top: 1px;
}

img {
  max-width: 100%;
}

p {
  line-height: 160%;
}
p a {
  color: #000;
}
p a:hover {
  opacity: 0.9;
  color: #c92b3d;
}
p a:visited {
  color: #c92b3d;
}

a {
  text-decoration: none;
}

hr {
  background: rgba(0, 0, 0, 0.2) !important;
  height: 1px !important;
}

h1 {
  font-size: 2.8em;
  letter-spacing: 1px;
  line-height: 120%;
  font-family: nobel, sans-serif;
  font-weight: 500;
  color: #c92b3d;
}
@media all and (min-width: 62em) {
  h1 {
    font-size: 2.3em;
  }
}

h2 {
  text-transform: uppercase;
  margin: 20px 0;
  font-weight: 500;
  font-family: nobel, sans-serif;
  font-size: 2.1em;
}
h2 .smaller {
  display: block;
  font-size: 0.8em;
}

h4 {
  font-size: 1em;
}
@media all and (min-width: 62em) {
  h4 {
    font-size: 20px;
  }
}

.primary-bg {
  background: url('./img/blue-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
}

.red-bg {
  background-color: #c92b3d;
}

.gray-bg {
  background: #f3f3f3;
}

.black-bg {
  background: #000;
}

.btn {
  font-family: 'montserrat';
  display: inline-block;
  font-size: 1em;
  line-height: 1.6em;
  padding: 12px 25px;
  font-weight: 500;
  border-radius: 5px;
  text-align: center;
  border: none;
  margin-top: 20px;
  width: 100%;
}
@media all and (min-width: 62em) {
  .btn {
    width: auto;
  }
}
.btn.btn-1 {
  background: #c92b3d;
  transition: 0.2s;
  color: #fff;
  border: 2px solid #c92b3d;
}
.btn.btn-1:hover {
  color: #c92b3d;
  transition: 0.2s;
  background: transparent;
}
.btn.btn-2 {
  background: transparent;
  border: 1px solid #fff;
  transition: 0.2s;
  color: #fff;
}
.btn.btn-2:hover {
  background: #fff;
  transition: 0.2s;
  color: #c92b3d;
}
.btn.btn-3 {
  background: transparent;
  border: 2px solid #fff;
  transition: 0.2s;
  color: #fff;
}
.btn.btn-3:hover {
  background: #fff;
  transition: 0.2s;
  color: #c92b3d;
}

.btn.btn-small {
  padding: 13px 30px;
  line-height: 1;
  height: auto;
}

.btn.no-padding {
  padding-left: 0;
  padding-right: 0;
}

#footer-full-content .donate-btn-footer {
  margin-bottom: 30px;
}
@media all and (min-width: 62em) {
  #footer-full-content .donate-btn-footer {
    display: none;
  }
}

.utility-btn {
  color: #000;
  background: #ffc439;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 30px;
  font-weight: bold;
}

/*--------------------------------------------------------------
# Starter Classes
--------------------------------------------------------------*/
.space {
  padding-top: 50px;
}

.xxspace {
  padding: 40px 0;
}

.no-mt {
  margin-top: 0;
}

.white-text {
  color: #fff;
}

.dark-text {
  color: #000;
}

@media all and (min-width: 75em) {
  .show-mobile {
    display: none;
  }
}

.hide-mobile {
  display: none;
}
@media all and (min-width: 75em) {
  .hide-mobile {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Header & Navigation
--------------------------------------------------------------*/
.utility-nav {
  padding: 8px 0px 0px 0px;
  display: none;
  background: #c92b3d;
}
@media all and (min-width: 62em) {
  .utility-nav {
    display: block;
    padding: 14px 15px 15px 0px;
  }
}
.utility-nav ul {
  width: 95%;
  margin: 0 auto;
  max-width: 1300px;
  list-style-type: none;
  text-align: right;
}
.utility-nav ul li {
  display: inline-block;
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #c92b3d;
}
.utility-nav ul li:last-of-type {
  margin-right: 0px;
  border-right: none;
  padding-right: 0px;
}
.utility-nav ul li a {
  color: #fff;
  font-weight: 600;
  font-size: 0.8em;
}
.utility-nav ul li a.utility-btn {
  color: #000;
}
.utility-nav ul li .search img {
  width: 15px;
  height: 15px;
}
.utility-nav ul li:first-of-type a {
  padding: 5px 20px !important;
}
.utility-nav .search {
  max-width: 15px;
}

.doc-header {
  background: #fff;
  position: relative;
  z-index: 9999;
  transition: background 0.4s;
}
.doc-header .header-container {
  width: 95%;
  margin: 0 auto;
  max-width: 1300px;
}
.doc-header.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  transition: background 0.4s;
}

.header-navigation {
  display: none;
}
@media all and (min-width: 62em) {
  .header-navigation {
    display: block;
  }
}
.header-navigation ul {
  list-style: none;
  position: relative;
  margin: 0px;
  text-align: right;
  padding: 0;
}
.header-navigation ul li {
  display: inline-block;
  position: relative;
}
.header-navigation ul li.menu-item-has-children:hover .sub-menu {
  display: inline-block;
}
.header-navigation ul li.current-menu-parent a {
  color: #c92b3d;
}
.header-navigation ul li.current-menu-item a {
  color: #c92b3d;
}
.header-navigation ul li .sub-menu {
  position: absolute;
  display: none;
  top: 100%;
  min-width: 100%;
  left: 0px;
  background: rgba(255, 255, 255, 0.98);
  text-align: center;
  transition: 0.3s;
  box-shadow: 0px 3px 50px rgba(0, 0, 0, 0.1);
  padding: 10px;
}
.header-navigation ul li .sub-menu li {
  display: block;
  position: relative;
  text-align: left;
}
.header-navigation ul li .sub-menu li a {
  color: #000;
  font-weight: 600;
  font-size: 0.8em;
  white-space: nowrap;
}
.header-navigation ul li .sub-menu li a:hover {
  color: #c92b3d;
  transition: 0.3s;
  cursor: pointer;
}
.header-navigation ul li .sub-menu li a:hover:after {
  content: ' ';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 2px;
  transition: 0.3s;
  background: transparent;
}
.header-navigation ul li a {
  color: #000;
  text-decoration: none;
  display: inline-block;
  font-size: 0.75em;
  font-weight: 600;
  padding: 10px 4px;
  outline: none;
  transition: 0.3s;
  position: relative;
}
@media all and (min-width: 62em) {
  .header-navigation ul li a {
    font-size: 0.8em;
  }
}
@media all and (min-width: 81.25em) {
  .header-navigation ul li a {
    font-size: 0.9em;
  }
}
.header-navigation ul li a:hover {
  color: #c92b3d;
  transition: 0.3s;
}
.header-navigation ul li a:hover:after {
  content: ' ';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transition: 0.3s;
  background: #c92b3d;
}

.mobile-nav {
  padding-left: 0px;
}

.mobile-navigation {
  position: fixed;
  width: 275px;
  background: #c92b3d;
  left: 0px;
  transform: translateX(-100%);
  transition: 0.4s;
  top: 0px;
  z-index: 9999;
  padding: 20px 0px;
  height: 100%;
}
.mobile-navigation li.menu-item-has-children .sub-menu {
  transition: 0.6s;
}
.mobile-navigation li.menu-item-has-children:hover .sub-menu {
  max-height: 700px;
  transition: 0.6s;
}
.mobile-navigation li.menu-item-has-children:hover .sub-menu a {
  background: #b42737;
}
.mobile-navigation.open {
  transform: translateX(0%);
  transition: 0.4s;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
}
.mobile-navigation .mobile-logo {
  width: 100%;
  padding-left: 10px;
  padding-bottom: 20px;
}
.mobile-navigation .mobile-logo a {
  display: inline-block;
}
.mobile-navigation .mobile-logo img {
  max-width: 70%;
}
.mobile-navigation .mobile-utility-nav ul {
  margin: 0;
  padding: 0;
}
.mobile-navigation .mobile-utility-nav ul li {
  margin: 0;
  padding: 0;
}
.mobile-navigation .mobile-utility-nav ul li a {
  margin: 0;
  padding: 12px 10px;
  text-align: left;
  font-size: 1em;
  display: block;
  width: 100%;
  float: left;
  background: rgba(0, 0, 0, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}
.mobile-navigation .mobile-utility-nav ul li:last-of-type a {
  border-right: none;
}
.mobile-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.mobile-navigation ul li.menu-item-has-children > a {
  position: relative;
}
.mobile-navigation ul li.menu-item-has-children > a:after {
  content: ' ';
  width: 8px;
  height: 11px;
  position: absolute;
  right: 15px;
  top: 18px;
  background-image: url(img/white-arrow-more.png);
  transform-origin: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s;
}
.mobile-navigation ul li.menu-item-has-children > a:hover:after {
  right: 10px;
  transition: 0.3s;
}
.mobile-navigation ul li a {
  display: inline-block;
  color: #fff;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile-navigation ul li ul {
  max-height: 0px;
  overflow: hidden;
}

.mobile-btn {
  display: inline-block;
  position: absolute;
  display: block;
  right: 20px;
  top: 25px;
  color: #c92b3d !important;
}
@media all and (min-width: 62em) {
  .mobile-btn {
    display: none;
  }
}
.mobile-btn svg {
  fill: #c92b3d;
}

.main-logo img {
  max-width: 170px;
  padding-bottom: 10px;
}
@media all and (min-width: 62em) {
  .main-logo img {
    max-width: 300px;
  }
}
@media all and (min-width: 75em) {
  .main-logo img {
    max-width: 350px;
  }
}

/*--------------------------------------------------------------
# Homepage
--------------------------------------------------------------*/
.homepage-secondary-section {
  padding: 50px 0;
}

.home-tri-column {
  text-align: center;
}
.home-tri-column-section {
  padding: 10px 50px;
}
.home-tri-column img {
  max-width: 30%;
}
.home-tri-column p {
  text-align: left;
}
.home-tri-column ul {
  text-align: left;
}
.home-tri-column h3 {
  text-transform: uppercase;
}
.home-tri-column .border-right {
  position: relative;
}
.home-tri-column .border-right:after {
  position: absolute;
  content: '';
  right: 0px;
  top: 50%;
  width: 2px;
  background: rgba(0, 0, 0, 0.1);
  height: 50%;
  transform: translateY(-50%);
}

.static-dotate-btn {
  padding-top: 10px;
}

.homepage-bottom-section {
  color: #fff;
  padding: 80px 0;
}
.homepage-bottom-section p {
  margin-bottom: 40px;
  font-size: 14px;
}

.homepage-social-section h2 {
  color: #5f605f;
  margin: 80px 10px 40px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #555;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}
.footer a {
  color: #fff;
}
@media all and (min-width: 62em) {
  .footer {
    text-align: inherit;
  }
}
.footer-copyright {
  background: #484848;
  padding: 10px 0;
}
.footer-copyright a {
  color: #fff;
}
.footer-copyright p {
  margin-bottom: 0px;
  font-size: 0.8em;
  margin-top: 0px;
}
.footer-copyright ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-copyright ul li {
  display: inline-block;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #fff;
  font-size: 0.8em;
}
.footer-copyright ul li:last-of-type {
  border-right: none;
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer ul li {
  color: #000;
}
.footer ul li a {
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  font-size: 0.9em;
  padding: 2px 0;
}
.footer ul li a:hover {
  opacity: 0.8;
}
.footer ul li.menu-item-has-children > a {
  font-weight: bold;
  margin-bottom: 5px;
  margin-top: 10px;
  color: #fff;
}
.footer .footer-white {
  font-weight: bold;
  margin-bottom: 5px;
  margin-top: 10px;
  color: #fff;
  display: block;
  padding-top: 20px;
}
.footer .widgettitle {
  color: #fff;
  font-weight: bold;
  font-size: 1em;
}
.footer .shop {
  color: #000;
  background: #fff;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 30px;
  font-weight: bold;
}
.footer .footer-images {
  margin: 30px 0;
}
.footer .footer-images img {
  max-height: 60px;
  margin: 5px;
}

#back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9999;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 30px;
  background: #f5f5f5;
  color: #444;
  cursor: pointer;
  border: 0;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s ease-out;
  opacity: 0;
}

#back-to-top:hover {
  background: #e9ebec;
}

#back-to-top.show {
  opacity: 1;
}

/*--------------------------------------------------------------
# Homepage Hero
--------------------------------------------------------------*/
.homepage-hero {
  background: url(img/hero-image.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  margin-right: 0;
}
.homepage-hero:after {
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  content: ' ';
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
}
@media all and (min-width: 62em) {
  .homepage-hero:after {
    width: 50%;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.65+90 */
    background: -moz-linear-gradient(
      left,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.65) 90%,
      rgba(0, 0, 0, 0.65) 100%
    );
    /* FF3.6-15 */
    background: -webkit-linear-gradient(
      left,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.65) 90%,
      rgba(0, 0, 0, 0.65) 100%
    );
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.65) 90%,
      rgba(0, 0, 0, 0.65) 100%
    );
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=1);
    /* IE6-9 */
  }
}
.homepage-hero-right {
  position: relative;
  z-index: 2;
  padding: 100px 50px;
}
@media all and (min-width: 62em) {
  .homepage-hero-right {
    padding: 100px 50px;
  }
}
.homepage-hero-right ul {
  list-style: none;
  text-align: center;
}
.homepage-hero-right ul li:last-of-type a {
  border-bottom: none;
}
.homepage-hero-right ul li a {
  color: #fff;
  font-size: 2em;
  text-transform: uppercase;
  display: block;
  padding: 30px 0;
  border-bottom: 2px solid #c92b3d;
  line-height: 130%;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.et-db #et-boc .et_pb_module p a {
  color: #c92b3d !important;
}

.aboutHeroSection .et_pb_section {
  position: relative !important;
}

.aboutHeroSection .et_pb_fullwidth_code {
  position: absolute !important;
  top: 0 !important;
  right: 15% !important;
}

.aboutHeroSocial {
  background: #fff !important;
  margin: auto;
  padding: 5px !important;
}
.aboutHeroSocial .iconWrapper {
  padding: 0 5px !important;
}
.aboutHeroSocial img {
  height: 12px !important;
}

.aboutList li {
  list-style: none !important;
  line-height: 1.7em;
  margin: 20px !important;
  position: relative !important;
}
.aboutList li ul {
  padding-bottom: 0 !important;
}
.aboutList li ul li {
  list-style: circle !important;
  margin: 0 !important;
}
.aboutList li ul li:after {
  background: none !important;
}

.aboutList li:after {
  content: '' !important;
  width: 15px !important;
  position: absolute !important;
  height: 15px !important;
  background: url(img/paw.svg) !important;
  background-position: center !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  left: -24px !important;
  top: 1px !important;
}

.contactList p {
  margin: 0 0 0 40px !important;
  padding: 0 !important;
}

.contactList ul {
  padding: 0 !important;
  margin: 0 !important;
}
.contactList ul li {
  font-weight: bold;
}

.aboutAssistantSection .et_pb_row {
  max-width: none !important;
}

.aboutBulletsSection h3 {
  font-family: nobel, sans-serif !important;
}

.aboutAssistantSection .et_pb_column_3 {
  margin-right: 0 !important;
  width: 50% !important;
}
.aboutAssistantSection .et_pb_column_3 .et_pb_image_wrap {
  height: 500px !important;
  width: 100% !important;
  object-fit: cover !important;
}
.aboutAssistantSection .et_pb_column_3 .et_pb_image_wrap img {
  height: 500px !important;
  width: 100% !important;
  object-fit: cover !important;
}

.aboutAssistantSection .et_pb_column_4 {
  padding: 4% !important;
  width: 50% !important;
}

.aboutAssistantSection h3 {
  font-family: nobel, sans-serif !important;
}

.aboutAssistantSection .aboutDropdown .et_pb_toggle_title {
  padding-left: 24px !important;
}

.aboutAssistantSection .aboutDropdown .et_pb_toggle_title::after {
  content: '' !important;
  width: 15px !important;
  position: absolute !important;
  height: 15px !important;
  background: url(img/paw.svg) !important;
  background-position: center !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  left: 0 !important;
  top: -3px !important;
}

.aboutAssistantSection
  .aboutDropdown
  .et_pb_toggle_close
  .et_pb_toggle_title::before {
  content: ' ' !important;
  position: absolute !important;
  right: 24px !important;
  top: 10px !important;
  left: auto !important;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #c92b3d;
}

.aboutAssistantSection .aboutDropdown #accordion h3 {
  width: fit-content;
}

.aboutAssistantSection
  .aboutDropdown
  .et_pb_toggle_open
  .et_pb_toggle_title::before {
  content: ' ' !important;
  display: block !important;
  position: absolute !important;
  right: 24px !important;
  top: 10px !important;
  left: auto !important;
  font-size: 16px !important;
  color: #ccc !important;
  width: 0 !important;
  height: 0 !important;
  border-left: 8px solid transparent !important;
  border-right: 8px solid transparent !important;
  border-bottom: 8px solid #c92b3d !important;
}

.aboutAssistantSection .aboutDropdown .et_pb_accordion_item {
  margin: 0 !important;
  padding-left: 0 !important;
}
.aboutAssistantSection
  .aboutDropdown
  .et_pb_accordion_item
  .et_pb_toggle_content {
  margin: 0 !important;
  padding: 0 0 0 24px !important;
}
.aboutAssistantSection .aboutDropdown .et_pb_accordion_item h5 {
  width: fit-content;
  font-family: nobel, sans-serif;
}
.aboutAssistantSection .aboutDropdown .et_pb_accordion_item p {
  font-size: 14px;
}

.h3Large {
  font-family: nobel, sans-serif !important;
}

#staffAccordion {
  max-width: 1080px;
  padding: 0 10px;
  margin: 95px auto;
}
#staffAccordion h3 {
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
  color: #5f605f;
  font-size: 24px;
  font-weight: normal;
  font-family: nobel, sans-serif;
  display: inline;
  margin: 30px 0;
}
#staffAccordion h5 {
  text-transform: uppercase;
  font-size: 17px;
  color: #c92b3d;
  margin: 0;
  font-family: nobel, sans-serif;
}
#staffAccordion .profileWrapper {
  display: flex;
  margin-top: 30px;
  background: #f3f3f3;
  padding: 20px;
  box-sizing: border-box;
}
#staffAccordion .dropdownImg img {
  min-width: 140px;
  max-width: 140px;
  margin-right: 30px;
}
#staffAccordion .dropdownCategoryGroup {
  position: relative;
}
#staffAccordion .dropdownCategoryGroup p {
  color: #5f605f;
  font-family: open-sans, sans-serif;
  font-size: 14px;
  line-height: 1.7em;
  margin-bottom: 20px;
}
#staffAccordion .dropdownTitleWrapper {
  outline: none;
  margin-top: 30px;
}
#staffAccordion .arrowDown .arrow {
  position: relative;
  top: -17px;
  left: 15px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #c92b3d;
  cursor: pointer;
}
#staffAccordion .arrowUp .arrow {
  position: relative;
  top: 10px;
  left: 15px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #c92b3d;
  cursor: pointer;
}
#staffAccordion .panel {
  display: none;
}
#staffAccordion .accordion {
  display: none;
}

.shirtSizes {
  display: flex;
}
.shirtSizes .shirtCol {
  padding: 10px 30px !important;
}
.shirtSizes h6 {
  font-weight: bold !important;
  font-size: 14px;
}
.shirtSizes p {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 11px;
}

.shopItemInfo {
  margin-bottom: 0 !important;
}
.shopItemInfo h2 {
  margin-bottom: 10px !important;
}
.shopItemInfo ul {
  margin: 0 0 0 24px !important;
  padding: 0 !important;
}
.shopItemInfo ul li {
  list-style: none !important;
  margin-bottom: 5px !important;
  position: relative !important;
}
.shopItemInfo ul li ul {
  padding-bottom: 0 !important;
}
.shopItemInfo ul li ul li {
  list-style: circle !important;
  margin: 0 !important;
}
.shopItemInfo ul li ul li:after {
  background: none !important;
}
.shopItemInfo ul li:after {
  content: '' !important;
  width: 15px !important;
  position: absolute !important;
  height: 15px !important;
  background: url(img/paw.svg) !important;
  background-position: center !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  left: -24px !important;
  top: 1px !important;
}

.trainingProgram {
  box-sizing: border-box !important;
  display: flex;
}
.trainingProgram h3 {
  font-size: 20px;
}
.trainingProgram li {
  font-size: 14px;
  margin: 15px !important;
}
.trainingProgram .et_pb_column_4 {
  padding: 0 !important;
  margin-right: 0 !important;
}
.trainingProgram .et_pb_text {
  padding: 30px 10px !important;
}
.trainingProgram .et_pb_image_wrap {
  height: 500px !important;
  width: 100% !important;
  object-fit: cover !important;
}
.trainingProgram .et_pb_image_wrap img {
  height: 500px !important;
  width: 100% !important;
  object-fit: cover !important;
}

.emRed {
  color: #c92b3d !important;
}

@media (min-width: 981px) {
  .et-db #et-boc .et_pb_gutters3 .et_pb_column,
  .et-db #et-boc .et_pb_gutters3.et_pb_row .et_pb_column {
    margin-right: 0 !important;
  }
}

@media (max-width: 600px) {
  #staffAccordion .profileWrapper {
    flex-wrap: wrap;
  }
}

@media (max-width: 980px) {
  .aboutAssistantSection .et_pb_column_3 {
    width: 100% !important;
  }
  .aboutAssistantSection .et_pb_column_4 {
    width: 100% !important;
  }
}

/*--------------------------------------------------------------
# Teams Page
--------------------------------------------------------------*/
.threeColCentered {
  display: flex;
  justify-content: center;
}

/*--------------------------------------------------------------
# Training Page
--------------------------------------------------------------*/
.twoColImgText {
  display: flex !important;
  align-items: center;
}

.trainingImg {
  margin-top: 64px !important;
}

.trainingList h3 {
  font-size: 20px;
}

.trainingHeader {
  font-size: 0.85em !important;
}

.trainingSection h3 {
  font-size: 24px;
}

@media (max-width: 980px) {
  .twoColImgText {
    flex-wrap: wrap;
  }
  .trainingImg {
    margin-top: 0 !important;
  }
}

/*--------------------------------------------------------------
# Donate Page
--------------------------------------------------------------*/
.indent {
  display: block;
  margin: 0 80px !important;
}

/*--------------------------------------------------------------
# Tributes Page
--------------------------------------------------------------*/
.tributes .tributeWrapper {
  display: flex;
  margin: 30px auto;
  background: #f3f3f3;
  padding: 20px;
  box-sizing: border-box;
  max-width: 1080px;
}
.tributes .tributeWrapper h5 {
  text-transform: uppercase;
  font-size: 17px;
  color: #c92b3d;
  margin: 0;
  font-family: nobel, sans-serif;
}
.tributes .tributeWrapper .tributeImg img {
  min-width: 140px;
  max-width: 140px;
  margin-right: 30px;
}
.tributes .tributeWrapper .panel {
  display: none;
}
.tributes .tributeWrapper .accordion {
  display: none;
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contactList {
  display: flex;
  justify-content: center;
}

.contactForm .gform_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.contactForm form {
  /* max-width: 600px !important; */
}

.contactForm ul {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center;
}
.contactForm ul li {
  margin: 0 0 20px !important;
  box-sizing: border-box;
  width: calc(50% - 20px) !important;
}

.contactForm #field_1_2 {
  width: calc(50% - 20px) !important;
  margin-right: 5px !important;
}

.contactForm #field_1_3 {
  width: calc(50% - 20px) !important;
  margin-left: 5px !important;
}

.contactForm #field_1_5 #input_1_5_container {
  display: flex !important;
  width: 100% !important;
}

.contactForm #field_1_8 {
  width: calc(100% - 30px) !important;
}
.contactForm #field_1_8 .ginput_left {
  margin-right: 5px !important;
  width: calc(50% - 5px) !important;
}
.contactForm #field_1_8 .ginput_right {
  margin-left: 5px !important;
  width: calc(50% - 5px) !important;
}
.contactForm #field_1_8 label {
  margin-bottom: 20px !important;
}

.contactForm #input_1_5_2_container label {
  margin-bottom: 20px !important;
}

.contactForm #field_1_1,
.contactForm #field_1_11,
.contactForm #field_1_5,
.contactForm #field_1_7,
.contactForm #field_1_9,
.contactForm #field_1_10 {
  width: calc(100% - 30px) !important;
}
.contactForm #field_1_1 .ginput_left,
.contactForm #field_1_11 .ginput_left,
.contactForm #field_1_5 .ginput_left,
.contactForm #field_1_7 .ginput_left,
.contactForm #field_1_9 .ginput_left,
.contactForm #field_1_10 .ginput_left {
  margin-right: 5px !important;
  width: calc(50% - 5px) !important;
}
.contactForm #field_1_1 .ginput_right,
.contactForm #field_1_11 .ginput_right,
.contactForm #field_1_5 .ginput_right,
.contactForm #field_1_7 .ginput_right,
.contactForm #field_1_9 .ginput_right,
.contactForm #field_1_10 .ginput_right {
  margin-left: 5px !important;
  width: calc(50% - 5px) !important;
}
.contactForm #field_1_1 #input_1_9,
.contactForm #field_1_11 #input_1_9,
.contactForm #field_1_5 #input_1_9,
.contactForm #field_1_7 #input_1_9,
.contactForm #field_1_9 #input_1_9,
.contactForm #field_1_10 #input_1_9 {
  font-size: 12px;
  border: 1px solid #c92b3d;
  border-radius: 5px;
}

.contactForm .gform_footer {
  width: calc(100% - 30px) !important;
  margin-left: 15px !important;
  margin-top: 20px !important;
}

.contactForm #input_1_8_5_container {
  padding: 0 !important;
}

.contactForm #gform_1 input {
}

@media (max-width: 641px) {
  .contactForm #field_1_1,
  .contactForm #field_1_2,
  .contactForm #field_1_3,
  .contactForm #field_1_11,
  .contactForm #field_1_5,
  .contactForm #field_1_7,
  .contactForm #field_1_8,
  .contactForm #field_1_9,
  .contactForm #field_1_10 {
    margin: 0 !important;
    width: calc(100% - 30px) !important;
  }
  .contactForm #field_1_1 .ginput_left,
  .contactForm #field_1_2 .ginput_left,
  .contactForm #field_1_3 .ginput_left,
  .contactForm #field_1_11 .ginput_left,
  .contactForm #field_1_5 .ginput_left,
  .contactForm #field_1_7 .ginput_left,
  .contactForm #field_1_8 .ginput_left,
  .contactForm #field_1_9 .ginput_left,
  .contactForm #field_1_10 .ginput_left {
    width: 100% !important;
    margin: 0 0 20px 0 !important;
  }
  .contactForm #field_1_1 .ginput_right,
  .contactForm #field_1_2 .ginput_right,
  .contactForm #field_1_3 .ginput_right,
  .contactForm #field_1_11 .ginput_right,
  .contactForm #field_1_5 .ginput_right,
  .contactForm #field_1_7 .ginput_right,
  .contactForm #field_1_8 .ginput_right,
  .contactForm #field_1_9 .ginput_right,
  .contactForm #field_1_10 .ginput_right {
    width: 100% !important;
    margin: 0 !important;
  }
  .contactForm #field_1_5 #input_1_5_container {
    flex-wrap: wrap;
  }
}

/*--------------------------------------------------------------
# Homepage Hero
--------------------------------------------------------------*/
.feature {
  padding: 0 30px;
}
.feature ul {
  margin-right: 10px;
  padding: 0;
}

p a {
  color: #c92b3d;
}

.tab {
  margin-bottom: 15px;
}
.tab-header {
  background: #c92b3d;
  color: #fff;
  padding: 8px 20px;
  position: relative;
}
.tab-header h4 {
  font-size: 1em;
  font-weight: bold;
  color: #fff;
}
.tab-header-btn {
  color: #fff;
  font-size: 2.1em;
  position: absolute;
  display: inline-block;
  height: 20px;
  width: 20px;
  right: 20px;
  bottom: 12px;
  line-height: 0.5em;
  transform-origin: center center;
  transition: transform 0.2s;
  transition-delay: 0.1s;
}
.tab-header:hover {
  cursor: pointer;
}
.tab-content {
  background: #fff;
  max-height: 0px;
  overflow: hidden;
  transition: 0.5s ease-out;
}
.tab-content-inner {
  padding: 30px;
  border: 2px solid #c92b3d;
}

.tab.open .tab-header-btn {
  transform: rotate(45deg);
}

.tab.open .tab-content {
  max-height: 800px;
  overflow-y: hidden;
  transition: 0.5s ease-in;
}

.related-products {
  background: #c92b3d;
  color: #fff;
}

.dark-text {
  color: #000;
}

.center {
  text-align: center;
  margin-top: 20px;
}

.space {
  margin-top: 30px;
}

.sm-center {
  text-align: center;
}
@media all and (min-width: 62em) {
  .sm-center {
    text-align: inherit;
  }
}

.blue-text {
  color: #c92b3d;
}

.bg-image {
  background-size: cover;
  background-repeat: no-repeat;
}

.p-lr {
  padding: 0px;
}
@media all and (min-width: 62em) {
  .p-lr {
    padding-left: 10%;
    padding-right: 10%;
  }
}

.error-404 {
  margin-top: 30px;
}
.error-404 h1 {
  margin-bottom: 40px;
}
.error-404 input[type='search'] {
  border-radius: 0px;
  border: 0px;
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  font-size: 1em;
  display: inline-block;
  background: #efefef;
  width: 70%;
}
.error-404 input[type='search']:active {
  outline: 0;
}
.error-404 input[type='submit'] {
  border-radius: 0px;
  border: 0px;
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  background: #000;
  font-size: 1em;
  color: #fff;
  display: inline-block;
  margin-left: -5px;
}

.search-section {
  text-align: center;
  background: #c92b3d;
  overflow: hidden;
  position: absolute;
  padding: 20px 0;
  left: 0;
  width: 100%;
  box-shadow: 0px -5px 10px black;
  display: none;
}
.search-section-container {
  margin: 0 auto;
}
.search-section input[type='search'] {
  border-radius: 0px;
  border: 0px;
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  font-size: 1em;
  display: inline-block;
  width: 70%;
}
.search-section input[type='search']:active {
  outline: 0;
}
.search-section input[type='submit'] {
  border-radius: 0px;
  border: 0px;
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  background: #000;
  font-size: 1em;
  color: #fff;
  display: inline-block;
  margin-left: -5px;
}

#btn-login {
  font-family: inherit;
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.6em;
  padding: 9px 25px;
  font-weight: 500;
  border-radius: 0px;
  text-align: center;
  border: none;
  margin: 10px 0px;
  width: 100%;
}
@media all and (min-width: 62em) {
  #btn-login {
    width: auto;
  }
}
#btn-login.btn-1 {
  background: #c92b3d;
  transition: 0.2s;
  color: #fff;
  border: 2px solid #c92b3d;
}
#btn-login.btn-1:hover {
  color: #c92b3d;
  transition: 0.2s;
  background: transparent;
}

.sticky + .site-content {
  padding-top: 67px;
}
@media all and (min-width: 62em) {
  .sticky + .site-content {
    padding-top: 124px;
  }
}

.entry-content {
  padding-top: 0px;
  margin-top: 0px;
}

input[type='text'],
input[type='email'],
input[type='url'],
input[type='password'],
input[type='search'],
input[type='number'],
input[type='tel'],
input[type='range'],
input[type='date'],
input[type='month'],
input[type='week'],
input[type='time'],
input[type='datetime'],
input[type='datetime-local'],
input[type='color'],
textarea {
  color: #000;
  border: 1px solid #000;
  border-radius: 0px;
  padding: 8px 5px;
}

.gform_wrapper label.gfield_label {
  font-weight: 500 !important;
}

.gform_wrapper .gform_footer input.button,
.gform_wrapper .gform_footer input[type='submit'] {
  font-family: inherit;
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.6em;
  padding: 9px 25px;
  font-weight: 500;
  border-radius: 0px;
  text-align: center;
  border: none;
  margin: 10px 0px;
  width: 100%;
  background: #c92b3d;
  transition: 0.2s;
  color: #fff;
  border: 2px solid #c92b3d;
}
@media all and (min-width: 62em) {
  .gform_wrapper .gform_footer input.button,
  .gform_wrapper .gform_footer input[type='submit'] {
    width: auto;
  }
}
.gform_wrapper .gform_footer input.button:hover,
.gform_wrapper .gform_footer input[type='submit']:hover {
  color: #c92b3d;
  transition: 0.2s;
  background: transparent;
}

.white-form-button .gform_footer input.button,
.white-form-button .gform_footer input[type='submit'] {
  font-family: inherit;
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.6em;
  padding: 9px 25px;
  font-weight: 500;
  border-radius: 0px;
  text-align: center;
  border: none;
  margin: 10px 0px;
  width: 100%;
  background: #fff;
  transition: 0.2s;
  color: #000;
  border: 2px solid #fff;
}
@media all and (min-width: 62em) {
  .white-form-button .gform_footer input.button,
  .white-form-button .gform_footer input[type='submit'] {
    width: auto;
  }
}
.white-form-button .gform_footer input.button:hover,
.white-form-button .gform_footer input[type='submit']:hover {
  color: #fff;
  transition: 0.2s;
  background: transparent;
}

.white-form-button .gfield_label {
  color: #fff;
  font-size: 0.9em;
}

.white-form-button input[type='text'],
.white-form-button input[type='email'],
.white-form-button input[type='url'],
.white-form-button input[type='password'],
.white-form-button input[type='search'],
.white-form-button input[type='number'],
.white-form-button input[type='tel'],
.white-form-button input[type='range'],
.white-form-button input[type='date'],
.white-form-button input[type='month'],
.white-form-button input[type='week'],
.white-form-button input[type='time'],
.white-form-button input[type='datetime'],
.white-form-button input[type='datetime-local'],
.white-form-button input[type='color'],
.white-form-button textarea {
  color: #000;
  border: 1px solid #fff;
  border-radius: 0px;
  padding: 8px 5px;
}

.gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield select {
  margin-left: 1px;
  padding: 6px;
  border-radius: 0px;
  -webkit-appearance: none;
}
.gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield select:focus {
  outline: none;
}

.slider-item p a {
  color: #fff;
}
.slider-item p a:hover {
  color: #000;
}
.slider-item p a:visited {
  color: #fff;
}

.socials a img {
  max-width: 25px;
  max-height: 18px;
}

.lower {
  text-transform: lowercase;
}

.close-btn {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0px;
  display: inline-block;
  right: 0px;
  text-align: center;
  padding: 10px;
  z-index: 9999;
}
.close-btn img {
  width: 100%;
  max-width: 15px;
}

.new-header-logo-svg {
  max-width: 280px;
  display: none;
}
@media all and (min-width: 30em) {
  .new-header-logo-svg {
    max-width: 230px;
    display: inline-block;
  }
}
@media all and (min-width: 62em) {
  .new-header-logo-svg {
    max-width: 280px;
  }
}
.new-header-logo-svg img {
  width: 100%;
}
.new-header-logo-svg-mobile img {
  width: 130px;
}
@media all and (min-width: 30em) {
  .new-header-logo-svg-mobile img {
    display: none;
  }
}
@media screen and (max-width: 350px) {
  .new-header-logo-svg-mobile img {
    width: 97px;
  }
}
@media all and (min-width: 30em) {
  .new-header-logo-svg-mobile {
    display: none;
  }
}

.privacy-policy {
  background: #c92b3d;
  padding: 12px 30px;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 2147483647;
  display: none;
  box-shadow: 0px -1px 3px rgba(0, 0, 0, 0.2);
}
.privacy-policy.open {
  display: block;
}
.privacy-policy a.white-text {
  color: #fff !important;
  text-decoration: underline;
}
.privacy-policy p {
  margin-bottom: 0px;
  font-size: 0.9em;
}
.privacy-policy .privacy-btn {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 10px 20px;
  font-size: 0.9em;
  text-transform: uppercase;
}

.new-footer-logo-svg img {
  width: 100%;
}

.h-50 {
  height: 50px;
}

.secondary-header {
  width: 100%;
  background-size: cover;
  position: relative;
  height: 250px;
  background-position: center;
}
@media all and (min-width: 62em) {
  .secondary-header {
    height: 400px;
  }
}
.secondary-header h1 {
  text-align: center;
  color: #fff;
  padding: 157px 0 120px;
  transform: skew(-3deg, -8deg) !important;
  font-size: 4em;
  text-shadow: 0px 0px 10px #000;
}
.secondary-header-alt {
  background: #c92b3d;
  text-align: right;
  margin-bottom: 20px;
}
.secondary-header-alt .container {
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
}
.secondary-header-alt h1 {
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 42px;
}
.secondary-header-alt .aboutHeroSocial {
  position: absolute;
  top: 0px;
  right: 30px;
}

.secondary-page-title {
  padding-top: 30px;
}

.accordion {
  background-color: #fff;
  color: #20558a;
  cursor: pointer;
  padding: 15px 0;
  line-height: 20px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1.2em;
  transition: 0.4s;
  border-radius: 0px;
  outline: none;
  text-transform: uppercase;
  font-weight: bold;
  color: #c92b3d;
}
.accordion:after {
  font-weight: bold;
  position: absolute;
  top: 15px;
  right: 10px;
  content: ' + ' !important;
  color: #000;
  height: 15px;
  width: 15px;
}
.accordion.active:after {
  font-weight: bold;
  float: right;
  margin-left: 5px;
  content: ' - ' !important;
  color: #000;
  height: 15px;
  width: 15px;
}
.accordion p {
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.panel {
  background-color: white;
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.panel.active {
  max-height: 500px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 0px solid rgba(0, 0, 0, 0.1);
  transition: max-height 0.2s ease-in;
}

.breadcrumbs {
  color: #333;
  background: #ebebeb;
  font-family: nobel, sans-serif;
  font-weight: 400;
  font-size: 0.8em;
  padding: 15px 0;
}
.breadcrumbs ul {
  margin: 0;
  padding: 0;
}
.breadcrumbs .breadcrumb_last {
  font-weight: 500;
}
.breadcrumbs a {
  color: #333;
  font-weight: 500;
}

.search-link {
  border-right: none !important;
}

.search-result {
  margin-top: 30px;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-family: nobel, sans-serif;
  font-size: 1.5em;
  color: #000;
}
.search-result a {
  color: #000;
}
.search-result-title span {
  font-family: nobel, sans-serif;
  font-style: italic;
  font-size: 1em;
}

body.search .posts-navigation {
  width: 100%;
  padding-top: 30px;
}
body.search .posts-navigation a {
  color: #c92b3d;
  font-weight: 600;
  position: relative;
  border: 2px solid #c92b3d;
  padding: 10px 30px;
  display: inline-block;
  text-transform: capitalize;
  border-radius: 3px;
}
body.search .posts-navigation a:before {
  content: '<< ';
}

.nav-links a {
  color: #c92b3d;
  font-family: nobel, sans-serif;
  font-weight: 500;
  display: inline-block;
  padding: 10px 30px;
  margin-top: 20px;
}

.search-box {
  display: none !important;
}
.search-box form {
  display: none;
}
.search-box.open {
  display: inline-block !important;
}
.search-box.open form {
  display: block;
}
.search-box .search-field {
  border: none;
  padding: 0px 8px;
  height: 30px;
  outline: none !important;
  margin: 0px;
  background: #f6f6f6;
  vertical-align: bottom;
}
.search-box .search-submit {
  margin: 0px;
  margin-left: -4px;
  outline: 0px;
  border: none;
  height: 30px;
  line-height: 30px;
  padding: 0 20px;
  background: #c92b3d;
  border-radius: 0px;
  color: #fff;
}

.photo-title {
  color: #c92b3d;
  font-weight: 600;
  padding: 15px 0;
}

.homepage-slideshow .slide {
  min-height: 300px;
  background-size: cover;
  position: relative;
  background-position: bottom left;
}
@media all and (min-width: 62em) {
  .homepage-slideshow .slide {
    min-height: 600px;
  }
}
.homepage-slideshow .slide:after {
  position: absolute;
  content: ' ';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(201, 43, 61, 0.7);
  z-index: 0;
}
@media all and (min-width: 62em) {
  .homepage-slideshow .slide {
    background-position: center;
  }
}
.homepage-slideshow .slide .caption {
  position: absolute;
  display: inline-block;
  z-index: 2;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.homepage-slideshow .slide .caption p {
  margin-bottom: 0px;
}
.homepage-slideshow .slide .caption h1 {
  font-size: 3.5em;
  line-height: 1em;
  font-family: nobel, sans-serif;
  color: #fff;
  font-style: italic;
  margin-bottom: 30px;
}
@media all and (min-width: 62em) {
  .homepage-slideshow .slide .caption h1 {
    font-size: 7em;
  }
}

.slick-dotted.slick-slider {
  margin-bottom: 0px;
}

.slick-next {
  right: 25px;
  width: 50px;
  height: 80px;
  display: none !important;
}
.slick-next:before {
  content: ' ';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(img/arrow-next.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media all and (min-width: 62em) {
  .slick-next {
    display: block !important;
  }
}

.slick-prev {
  left: 25px;
  width: 50px;
  height: 80px;
  z-index: 999;
  display: none !important;
}
@media all and (min-width: 62em) {
  .slick-prev {
    display: block !important;
  }
}
.slick-prev:before {
  content: ' ';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(img/arrow-prev.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.slick-dots {
  bottom: 20px;
}
.slick-dots li button:before {
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 0;
  content: ' ';
  width: 15px;
  height: 15px;
  background: #fff;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 1;
}
.slick-dots li.slick-active button:before {
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 0;
  content: ' ';
  width: 15px;
  height: 15px;
  background: #c92b3d;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 1;
}

.home-banner {
  background: #f6d44c;
  text-align: center;
  padding: 5px 0 10px;
}
@media all and (min-width: 62em) {
  .home-banner {
    padding: 25px 0 5px;
  }
}
.home-banner h2 {
  font-weight: 600;
  line-height: 1em;
  margin-bottom: 0;
  font-size: 1.8em;
  margin-top: 0;
}
.home-banner p {
  margin-bottom: 0px;
  font-size: 1.1em;
  color: #c92b3d;
}
.home-banner .stock-disclaimer {
  margin: 10px 0;
  color: #c92b3d;
}
.home-banner-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 20px 0;
}
@media all and (min-width: 62em) {
  .home-banner-section {
    border-bottom: none;
    padding: 0px;
  }
}

article {
  background: #dedeed !important;
}
article .entry-title {
  font-size: 1em !important;
}
article .entry-title a {
  font-size: 1em !important;
  color: #ff0042 !important;
}

.homepage-top-banner {
  background: #f6d44c;
}
.homepage-top-banner h2 {
  text-align: center;
  margin: 0;
  font-size: 1.9em;
  padding: 40px 0;
  font-weight: 400;
}

.callout-section {
  padding: 70px 0;
  text-align: center;
}
@media all and (min-width: 62em) {
  .callout-section {
    padding: 150px 0;
  }
}
.callout-section h2 {
  color: #fff;
  font-weight: 400;
  margin-bottom: 30px;
}
.callout-section h3 {
  color: #fff;
  font-family: nobel, sans-serif;
  font-size: 1.7em;
  font-style: italic;
}
.callout-section.homepage-1 {
  background-image: url('./img/homepage-1-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.callout-section.homepage-1 .homepage-1-overlay {
  position: absolute;
  top: 0;
  left: 0;
  content: ' ';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.89);
  line-height: 20px;
  z-index: -1;
}
.callout-section.homepage-1 .homepage-1-logo {
  padding: 20px 15px;
}
@media all and (min-width: 62em) {
  .callout-section.homepage-1 .homepage-1-logo {
    padding: 0px;
  }
}
.callout-section.homepage-2 {
  background-image: url('./img/group-retouched.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 70px 0;
  position: relative;
  z-index: 1;
}
@media all and (min-width: 62em) {
  .callout-section.homepage-2 {
    padding: 200px 0;
  }
}
.callout-section.homepage-2 .homepage-2-overlay {
  position: absolute;
  top: 0;
  left: 0;
  content: ' ';
  width: 100%;
  height: 100%;
  background-color: rgba(201, 43, 61, 0.7);
  line-height: 20px;
  z-index: -1;
}
.callout-section.homepage-3 {
  background-image: url('./img/stock-doc-patient.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 70px 0;
  position: relative;
  z-index: 1;
}
@media all and (min-width: 62em) {
  .callout-section.homepage-3 {
    padding: 200px 0;
  }
}
.callout-section.homepage-3 .homepage-3-overlay {
  position: absolute;
  top: 0;
  left: 0;
  content: ' ';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  line-height: 20px;
  z-index: -1;
}

.in-the-news {
  padding: 80px 0 0px;
  display: none;
}
@media all and (min-width: 62em) {
  .in-the-news {
    display: inline-block;
  }
}
.in-the-news h2 {
  font-weight: 600;
}
.in-the-news h3 {
  font-family: nobel, sans-serif;
  font-weight: 500 !important;
  letter-spacing: 1px;
  color: #000 !important;
  line-height: 125%;
  font-size: 1.5em;
  margin-bottom: 10px;
}
.in-the-news a {
  color: #000;
  font-weight: 500;
}
.in-the-news .news-release {
  padding: 15px;
  margin-bottom: 15px;
}
.in-the-news .news-release:nth-child(-n + 4) .news-release-inner {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.in-the-news .news-release-inner {
  height: 100%;
  padding-bottom: 10px;
}

.news-letter {
  padding: 50px 0;
}
.news-letter-tagline-left {
  border-right: 2px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 15px 15px;
}
@media all and (min-width: 62em) {
  .news-letter-tagline-left {
    padding: 15px 0;
  }
}
.news-letter-tagline-right {
  padding-left: 20px;
}
@media all and (min-width: 62em) {
  .news-letter-tagline-right {
    padding-left: 40px;
  }
}
.news-letter-tagline-right h3 {
  font-weight: 400;
  font-size: 1em;
  font-family: nobel, sans-serif;
  color: #c92b3d;
}
@media all and (min-width: 62em) {
  .news-letter-tagline-right h3 {
    font-size: 1.8em;
  }
}
.news-letter-tagline-right h3 span {
  font-family: nobel, sans-serif;
  font-style: italic;
  font-size: 1.4em;
}
.news-letter-tagline-right h4 {
  font-family: nobel, sans-serif;
  font-style: italic;
  font-size: 1.2em;
  margin-top: 5px;
  color: #c92b3d;
}
@media all and (min-width: 62em) {
  .news-letter-tagline-right h4 {
    font-size: 1.8em;
  }
}
.news-letter .email-signup {
  border-bottom: 1px solid #b7b9ba;
}
.news-letter .email-signup input {
  border: none;
}
.news-letter .email-signup input[type='text'] {
  padding: 20px 0;
  font-size: 1.1em;
  color: #b7b9ba;
  outline: none !important;
  width: calc(100% - 45px);
}
.news-letter .email-signup input[type='submit'] {
  padding: 20px;
  float: right;
  background-image: url('./img/signup-arrow.png');
  background-repeat: no-repeat;
  background-position: center;
  outline: none !important;
  background-color: #fff;
}

.page-heading h1 {
  font-weight: 500 !important;
  text-transform: uppercase !important;
  font-family: nobel, sans-serif !important;
  color: #c92b3d !important;
  margin-bottom: 15px !important;
}

.page-heading h3 {
  font-family: nobel, sans-serif;
  font-style: italic !important;
  font-size: 1.8em !important;
  line-height: 130% !important;
  margin-top: 5px !important;
  color: #c92b3d !important;
}

.three-column h3 {
  font-weight: 500 !important;
  text-transform: initial !important;
  font-family: nobel, sans-serif !important;
  /* text-transform: !important; */
  color: #000 !important;
  line-height: 140% !important;
  font-size: 1.5em !important;
  position: relative;
  margin-bottom: 30px !important;
}
.three-column h3:after {
  content: ' ';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 30%;
  height: 1px;
  transition: 0.3s;
  background: #000;
}

.we-care-list h4 {
  font-family: nobel, sans-serif;
  font-style: italic !important;
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #c92b3d !important;
}

.case-studies h1 {
  margin: 20px 0;
}

.case-studies .case-study {
  padding: 0;
  margin-bottom: 20px;
}
.case-studies .case-study:nth-child(3n + 3) .case-study-inner-content {
  border-right: none;
}
.case-studies .case-study-inner {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 15px 0px 30px;
}
.case-studies .case-study-inner-content {
  height: 100%;
  padding: 0px 20px 0px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.case-studies .case-study-inner h2 {
  font-family: nobel, sans-serif;
  font-size: 1.5em;
  color: #000;
  line-height: 125%;
}
.case-studies .case-study-inner h2 a {
  color: #000;
  font-weight: 500;
}
.case-studies .case-study-inner img {
  width: 100%;
}
.case-studies .case-study-inner .learn-more-link {
  font-family: nobel, sans-serif !important;
  color: #000 !important;
  font-weight: 500 !important;
}

.strategic-approach {
  padding: 50px 0px 50px 0;
  background: #000;
  margin-top: 0px;
}
.strategic-approach .btn {
  border: 2px solid #fff;
  font-weight: 500;
  font-family: nobel, sans-serif;
}
.strategic-approach a {
  color: #fff;
  transition: 0.3s;
}
.strategic-approach a:hover {
  color: #c92b3d;
  transition: 0.3s;
}
.strategic-approach a i {
  padding-right: 10px;
}

.case-study-footer {
  overflow: hidden;
}

.case-study-section-single-hero {
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 600px;
  background-position: center;
  position: relative;
}
.case-study-section-single-hero:after {
  position: absolute;
  content: ' ';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #c92b3d;
  opacity: 0.7;
  z-index: 1;
}
.case-study-section-single-hero .caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 99;
}
.case-study-section-single-hero .caption h1 {
  color: #fff;
  text-transform: uppercase;
  font-size: 3em;
}
.case-study-section-single-hero .caption h4 {
  color: #fff;
  font-family: nobel, sans-serif;
  font-style: italic;
  font-size: 1.6em;
}

.contact-hero {
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 500px;
  background-position: center;
  position: relative;
}
.contact-hero:after {
  position: absolute;
  content: ' ';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #c92b3d;
  opacity: 0.7;
  z-index: 1;
}
.contact-hero .caption {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 99;
}
.contact-hero .caption h1 {
  color: #fff;
  text-transform: uppercase;
  font-size: 3em;
}
.contact-hero .caption h4 {
  color: #fff;
  font-family: nobel, sans-serif;
  font-style: italic;
  font-size: 1.6em;
}

.case-study-section-single h2 {
  font-family: nobel, sans-serif;
  position: relative;
  font-size: 1.5em;
  text-transform: uppercase;
  color: #000;
  padding-bottom: 15px;
}
.case-study-section-single h2:after {
  position: absolute;
  content: ' ';
  width: 10%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #000;
}

.case-study-testimonial {
  background: #ebebeb;
  padding: 100px 0;
  background-position: center;
}
.case-study-testimonial-image {
  width: 150px;
  height: 150px;
  background-size: cover;
  border-radius: 50%;
  margin: 0 auto;
}
.case-study-testimonial h3 {
  font-family: nobel, sans-serif;
  color: #000;
  font-weight: 500;
  padding: 20px 0;
  text-align: center;
  font-size: 1.5em;
  line-height: 120%;
}
.case-study-testimonial p {
  text-align: center;
}

.secondary-default-hero {
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
  background-position: center;
  position: relative;
}
.secondary-default-hero:after {
  position: absolute;
  content: ' ';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #c92b3d;
  opacity: 0.5;
  z-index: 1;
}

.leadership-team {
  padding-top: 30px;
}
.leadership-team-member-inner {
  padding: 15px;
}
.leadership-team-member-content {
  padding: 10px 0;
}
.leadership-team-member-content h4 {
  line-height: 110%;
  margin-bottom: 8px;
  font-size: 1.1em;
}
.leadership-team-member-content h4 a {
  font-family: nobel, sans-serif;
  font-weight: 500;
}
.leadership-team-member-content h5 {
  font-size: 0.9em;
}

.leadership-intro {
  padding-top: 30px;
}
.leadership-intro .container {
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 25px;
}

.leadership-hero {
  height: 200px;
  background-size: cover;
  background-position: top center;
}
@media all and (min-width: 62em) {
  .leadership-hero {
    height: 350px;
  }
}

.leadership-section-single {
  padding-top: 40px;
}
.leadership-section-single h1 {
  font-size: 2em;
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 5px;
}
.leadership-section-single h1:after {
  position: absolute;
  content: ' ';
  width: 15%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #c92b3d;
}
.leadership-section-single h3 {
  font-family: nobel, sans-serif;
  font-style: italic;
  margin-bottom: 20px;
}

.more-leadership {
  padding-bottom: 30px;
}
.more-leadership h2 {
  font-size: 2em;
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 5px;
}
.more-leadership h2:after {
  position: absolute;
  content: ' ';
  width: 15%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #c92b3d;
}
.more-leadership h3 {
  font-family: nobel, sans-serif;
  color: #c92b3d;
  font-weight: 500;
  padding: 15px 0;
}
.more-leadership-inner {
  padding: 10px 0;
}
.more-leadership-content h4 {
  font-weight: 500;
  font-family: nobel, sans-serif;
}
.more-leadership-content h4 a {
  font-weight: 500;
  font-size: 0.8em;
  color: #000;
}
.more-leadership-content h5 {
  font-family: nobel, sans-serif;
  font-style: italic;
}

.theme-content-structure h3 {
  font-weight: 500 !important;
  text-transform: initial !important;
  font-family: nobel, sans-serif !important;
  color: #000 !important;
  font-size: 1.5em !important;
  text-transform: uppercase !important;
  position: relative;
  line-height: 125% !important;
}
.theme-content-structure h3:after {
  content: ' ';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 120px;
  height: 1px;
  transition: 0.3s;
  background: #000;
}

.theme-content-structure p {
  font-family: nobel, sans-serif !important;
}

.theme-content-structure h5 {
  font-weight: 600 !important;
  text-transform: inherit !important;
  font-family: nobel, sans-serif !important;
  color: #333 !important;
  font-size: 1.1em !important;
  position: relative;
  margin-bottom: 10px !important;
  line-height: 140% !important;
}

.theme-content-structure h6 {
  font-weight: 500 !important;
  font-family: nobel, sans-serif !important;
  color: #333 !important;
  font-size: 1em !important;
  padding-bottom: 4px !important;
}

.et-db #et-boc .et_pb_blurb_content ol,
.et-db #et-boc .et_pb_blurb_content ul,
.et-db #et-boc .et_pb_code ol,
.et-db #et-boc .et_pb_code ul,
.et-db #et-boc .et_pb_fullwidth_header .header-content ol,
.et-db #et-boc .et_pb_fullwidth_header .header-content ul,
.et-db #et-boc .et_pb_newsletter_description_content ol,
.et-db #et-boc .et_pb_newsletter_description_content ul,
.et-db #et-boc .et_pb_promo_description ol,
.et-db #et-boc .et_pb_promo_description ul,
.et-db #et-boc .et_pb_slide_content ol,
.et-db #et-boc .et_pb_slide_content ul,
.et-db #et-boc .et_pb_tab ol,
.et-db #et-boc .et_pb_tab ul,
.et-db #et-boc .et_pb_team_member_description ol,
.et-db #et-boc .et_pb_team_member_description ul,
.et-db #et-boc .et_pb_testimonial_description_inner ol,
.et-db #et-boc .et_pb_testimonial_description_inner ul,
.et-db #et-boc .et_pb_text ol,
.et-db #et-boc .et_pb_text ul,
.et-db #et-boc .et_pb_toggle_content ol,
.et-db #et-boc .et_pb_toggle_content ul {
  margin-top: 0px !important;
  margin-bottom: 15px;
  margin-left: 25px;
}

.hentry {
  margin: 0px;
}

.gotham-title h2 {
  font-weight: 500 !important;
  text-transform: uppercase !important;
  font-family: nobel, sans-serif !important;
  color: #c92b3d !important;
  font-size: 1.6em !important;
}

.back-to-jobs {
  color: #000;
  transition: 0.3s;
}
.back-to-jobs:hover {
  color: #c92b3d !important;
  transition: 0.3s;
}
.back-to-jobs:visited {
  color: #000;
  transition: 0.3s;
}

.job-openings {
  background: #000;
  padding: 30px 0 50px;
}
.job-openings .job-listing a {
  color: #fff !important;
  transition: 0.3s !important;
}
.job-openings .job-listing a:hover {
  color: #c92b3d !important;
  transition: 0.3s !important;
}

.job-listing h4 a {
  color: #fff !important;
  transition: 0.3s !important;
}
.job-listing h4 a:hover {
  color: #c92b3d !important;
  transition: 0.3s !important;
}

.job-listing-title h2 {
  text-transform: uppercase !important;
  margin: 20px 0 !important;
  text-align: center !important;
  font-weight: 500 !important;
  font-family: 'Gotham A', 'Gotham B' !important;
  color: #173963 !important;
}

#gform_1 .gfield_label {
  display: none;
}

#gform_1 input[type='text'] {
  border: none !important;
  width: 100% !important;
  border-bottom: 1px solid #c92b3d !important;
  margin: 10px 0 !important;
  padding: 0px 10px !important;
  min-height: 24px;
}

#gform_1 .ginput_container_select {
  position: relative;
}
#gform_1 .ginput_container_select:after {
  content: ' ';
  position: absolute;
  right: 0;
  top: 20px;
  width: 0px;
  height: 0px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #c92b3d;
  background: transparent;
}

#gform_1 select {
  border: none !important;
  width: 100% !important;
  border-bottom: 1px solid #c92b3d !important;
  margin: 10px 0 !important;
  padding: 0px 10px !important;
  background: #fff;
  position: relative;
  height: 24px;
  line-height: 24px;
}

#gform_1 input[type='submit'] {
  font-family: nobel, sans-serif;
  display: inline-block;
  font-size: 1em;
  line-height: 1.6em;
  padding: 12px 55px;
  font-weight: 400;
  border-radius: 5px;
  text-align: center;
  border: none;
  margin-top: 40px;
  text-transform: uppercase;
  background: transparent;
  transition: 0.2s;
  color: #c92b3d;
  border: 1px solid #c92b3d;
}
#gform_1 input[type='submit']:hover {
  color: #fff;
  background: #c92b3d !important;
  transition: 0.2s;
}

#gform_1 input:focus,
#gform_1 select:focus,
#gform_1 textarea:focus {
  outline: none;
  box-shadow: none;
}

#gform_1 .textarea {
  max-height: 150px;
  margin-top: 10px;
  padding: 10px;
  background: #f6f6f6;
}

#gform_1 .gfield_error {
  background-color: transparent;
  border: 0;
}

#gform_1 .gfield_validation_message {
  color: #5f605f;
}

#gform_1 .gfield_description {
  padding-top: 0;
}

#gform_2 .gfield_label {
  display: none;
}

#gform_2 input[type='text'] {
  border: none !important;
  width: 100% !important;
  border-bottom: 1px solid #c92b3d !important;
  margin: 10px 0 !important;
  padding-left: 0px 10px !important;
}

#gform_2 .ginput_container_select {
  position: relative;
}
#gform_2 .ginput_container_select:after {
  content: ' ';
  position: absolute;
  right: 0;
  top: 25px;
  width: 0px;
  height: 0px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #c92b3d;
  background: transparent;
}

#gform_2 select {
  border: none !important;
  width: 100% !important;
  border-bottom: 1px solid #c92b3d !important;
  margin: 10px 0 !important;
  padding-left: 0px 10px !important;
  background: #fff;
  position: relative;
}

#gform_2 input[type='submit'] {
  font-family: nobel, sans-serif;
  display: inline-block;
  font-size: 1em;
  line-height: 1.6em;
  padding: 12px 55px;
  font-weight: 400;
  border-radius: 5px;
  text-align: center;
  border: none;
  margin-top: 40px;
  text-transform: uppercase;
  background: transparent;
  transition: 0.2s;
  color: #c92b3d;
  border: 1px solid #c92b3d;
}
#gform_2 input[type='submit']:hover {
  color: #fff;
  background: #c92b3d !important;
  transition: 0.2s;
}

#gform_2 .textarea {
  max-height: 150px;
  margin-top: 10px;
  padding: 10px;
  background: #f6f6f6;
  border: none;
}

.customer-login-form input[type='text'] {
  border: none !important;
  width: 100% !important;
  background: transparent;
  border-bottom: 1px solid #c92b3d !important;
  margin: 10px 0 !important;
  padding-left: 0px 10px !important;
  display: block;
}

.customer-login-form input[type='password'] {
  border: none !important;
  width: 100% !important;
  background: transparent;
  border-bottom: 1px solid #c92b3d !important;
  margin: 10px 0 !important;
  padding-left: 0px 10px !important;
  display: block;
}

.customer-login-form input[type='submit'] {
  font-family: nobel, sans-serif !important;
  display: inline-block !important;
  font-size: 1em !important;
  line-height: 1.6em !important;
  padding: 12px 55px !important;
  font-weight: 400 !important;
  border-radius: 5px !important;
  text-align: center !important;
  border: none !important;
  margin-top: 20px !important;
  text-transform: uppercase !important;
  background: transparent !important;
  transition: 0.2s !important;
  color: #c92b3d !important;
  border: 1px solid #c92b3d !important;
}
.customer-login-form input[type='submit']:hover {
  color: #fff !important;
  background: #c92b3d !important;
  transition: 0.2s !important;
}

.et_pb_module a {
  color: #c92b3d !important;
}

.footer-contact .linkedin {
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 10px;
}
.footer-contact .linkedin i {
  margin-right: 10px;
  padding: 0;
}

.footer-contact .email i {
  margin-right: 10px;
}

.footer-contact p {
  margin-bottom: 20px;
}
.footer-contact p a {
  color: #fff;
}

.footer-contact a {
  color: #000;
}

.et-db #et-boc .et_pb_divider_0:before {
  border-top-color: rgba(0, 0, 0, 0.1) !important;
}

.post-password-form {
  padding-top: 50px;
  width: 100%;
  margin: 0 auto;
}
@media all and (min-width: 62em) {
  .post-password-form {
    width: 50%;
  }
}
.post-password-form input[type='text'] {
  border: none !important;
  width: 100% !important;
  background: #efefef;
  border-bottom: 1px solid #c92b3d !important;
  margin: 10px 0 !important;
  padding-left: 0px 10px !important;
  display: block;
}
.post-password-form input[type='password'] {
  border: none !important;
  width: 100% !important;
  background: #f2f2f2;
  border-bottom: 1px solid #c92b3d !important;
  margin: 10px 0 !important;
  padding-left: 0px 10px !important;
  display: block;
}
.post-password-form input[type='submit'] {
  font-family: nobel, sans-serif !important;
  display: inline-block !important;
  font-size: 1em !important;
  line-height: 1.6em !important;
  padding: 12px 55px !important;
  font-weight: 400 !important;
  border-radius: 5px !important;
  text-align: center !important;
  border: none !important;
  margin-top: 20px !important;
  text-transform: uppercase !important;
  background: transparent !important;
  transition: 0.2s !important;
  color: #c92b3d !important;
  border: 1px solid #c92b3d !important;
}
.post-password-form input[type='submit']:hover {
  color: #fff !important;
  background: #c92b3d !important;
  transition: 0.2s !important;
}

.news {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 10px;
  margin-bottom: 20px;
}
.news a {
  color: #c92b3d;
}
.news img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 300px;
  text-align: center;
  vertical-align: middle;
}
.news .news-inner-content-image {
  text-align: center;
  background: #dedede;
}

.pt-30 {
  padding-top: 30px;
}

.wp-block-columns.col_gray {
  background: #f3f3f3;
  padding: 45px;
  margin: 60px 0px;
}
.wp-block-columns.col_gray a {
  display: inline-block;
}
hr.wp-block-separator.has-text-color.has-background.has-cyan-bluish-gray-background-color.has-cyan-bluish-gray-color.is-style-wide.margin_top_bottom {
  background: none;
  border: none;
}
.padding_bottom_80 {
  padding-bottom: 60px;
  clear: both;
}

.padding_top_80 {
  padding-top: 60px;
  clear: both;
}

ul.my-grid-layout {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
  padding-top: 20px;
}
ul.my-grid-layout a.image img {
  width: 100%;
  height: auto;
}
ul.my-grid-layout a.excerpt-more {
  color: #c92b3d;
  display: block;
  padding-top: 20px;
}
ul.my-grid-layout a.title {
  color: #c92b3d;
  display: block;
  padding-bottom: 25px;
  padding-top: 10px;
  font-weight: bold;
  font-size: 22px;
  text-transform: uppercase;
}
ul.my-grid-layout a.image {
  width: 50%;
  float: left;
  padding-right: 30px;
}
ul.my-grid-layout a.excerpt-more:after {
  content: '»';
  /* font-family: 'ETMODULES'; */
  padding-left: 5px;
}
.margin_top_bottom {
  margin-top: 60px;
  margin-bottom: 60px;
  clear: both;
}
.news_head_tags ul li.active a {
  border-color: #000;
  color: #000;
}
.news_head_tags ul li a {
  padding: 8px 15px;
  margin: 5px;
  border: 2px solid #c92b3d;
  color: #c92b3d;
  font-weight: 600;
  display: block;
}
.news_head_tags {
  padding-top: 60px;
}
.news_head_tags ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
  padding: 0px;
}
.news img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
ul.aboutList.two_col_text {
  column-count: 2;
  column-gap: 40px;
  column-rule: 1px solid #ddd;
}
a.cat_toggle {
  width: 40px;
  height: 40px;
  padding: 5px;
  border: 2px solid #c92b3d;
  background: url(https://petshelpingpeople.org/wp-content/uploads/2021/07/m3.png)
    center center / 20px no-repeat;
  margin: 0 auto;
}
a.cat_toggle.active {
  background: url(https://petshelpingpeople.org/wp-content/uploads/2021/07/close.png)
    center center / 20px no-repeat;
}
a.cat_toggle {
  display: none;
}
.cateory_b {
  position: absolute;
  top: 40px;
  right: 0px;
  background: #c92b3d;
  padding: 10px 20px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}
.news .news-inner-content-image {
  position: relative;
}
.tributes {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.tributes .tributeWrapper {
  width: 31%;

  flex-direction: column;
  align-items: center;
  margin: 10px;
  text-align: center;
}
@media only screen and (max-width: 990px) {
  .tributes .tributeWrapper {
    width: 100%;
    margin: 0px;
  }
}
@media only screen and (max-width: 768px) {
  ul.my-grid-layout a.image {
    width: 100%;
  }
  a.cat_toggle {
    display: block;
  }
  ul.aboutList.two_col_text {
    column-count: 1;
    column-gap: 0px;
  }
  .news_head_tags ul {
    display: none;
    padding: 0px 20px;
  }
  .news_head_tags ul li a,
  .news_head_tags ul li {
    display: block;
    width: 100%;
  }
}

.ph-block-image {
  margin-top: -20px;
}
.ph-block-image img {
  display: block;
}
.ph-block-image-bg {
  background-size: cover;
  background-position: center center;
  margin: 0;
}

.donate-block hr {
  height: auto !important;
  width: 100%;
  margin-bottom: 20px;
}
.donate-block-wraptitle {
  width: 75%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: #eeeeee;
  margin-top: 0;
  padding: 15px 15px 15px;
  border-radius: 5px;
}
.donate-block-wraptitle h5 {
  font-size: 40px;
  margin: 0px 0px 0px;

  color: #000;
}
.donate-block-wraptitle p {
  color: #f56400;
}
.donate-blockform h5 {
  font-size: 40px;
  text-align: left;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #000;
}
.formdonate {
  width: 75%;
}
.more-waysdonate {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-top: 50px;
  margin-bottom: 50px;
}
.img-wrap {
  margin-top: -20px;
}
.donate-block-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: #fff0e5;
  margin-top: 50px;
  padding: 30px 30px 40px;
  border-radius: 5px;
}
.more-ways {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-top: 50px;
  margin-bottom: 50px;
}
.donate-block-wrap h3,
.more-ways h3 {
  line-height: 1em;
  padding-bottom: 10px;
  font-weight: 600;
  text-align: center;
  margin-top: 0;
  font-size: 27px;
  text-transform: uppercase;
  color: #40403f;
  padding: 0;
  margin-bottom: 35px;
}
.more-ways h3 {
  margin-bottom: 0;
}
.donate-block {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 0 30px;
  align-items: center;
}
.more-ways .donate-block {
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  padding: 25px 0 30px 0;
  max-width: 95%;
}
.donate-block h4 {
  position: relative;
  margin: 0;
  font-size: 24px;
  color: #40403f;
  font-weight: 600;
  margin-bottom: 5px;
}
/* .more-ways .donate-block h4 {
  margin-left: 30px;
} */
.donate-block h4:before {
  content: '' !important;
  width: 20px !important;
  position: absolute !important;
  height: 20px !important;
  background: url(https://petshelpingpeople.org/wp-content/themes/2-starter/img/paw.svg) !important;
  background-position: center !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  left: -30px !important;
  top: 8px !important;
}
.more-ways .donate-block img {
  height: auto;
}

.donate-block.border-righ {
  position: relative;
}
.donate-block.border-right::after {
  content: '';
  width: 1px;
  height: 100%;
  background-color: #e7cab4;
  position: absolute;
  top: 0;
  right: -15px;
}
.donate-block p {
  font-size: 16px;
  color: #5e5f5f;
  line-height: 22px;
  margin-bottom: 20px;
}
.donate-block span {
  font-size: 18px;
  color: #5e5f5f;
}
.btn-fill,
.btn-fill.wp-block-button a {
  font-size: 15px;
  line-height: 15px;
  font-weight: 600;
  color: #000;
  padding: 8px 30px;
  background-color: #ffc300;
  border-radius: 14px;
  display: inline-flex;
}
.btn-fill.wp-block-button {
  padding: 0;
  background: transparent;
  border-radius: 0;
}
.donate-block ul {
  padding-left: 0;
  margin-bottom: 0;
}
.donate-block ul li {
  list-style: none;
  margin-bottom: 5px;
}
.donate-block ul li p {
  margin: 0;
}
.donate-block ul li:last-child {
  margin-bottom: 0;
}
.donate-block p a {
  border-bottom: 1px solid;
}
.no-border {
  border: 0 !important;
}
.mt-4 {
  margin-top: 20px !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.more-ways .right {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .donate-block.border-right::after {
    content: none;
  }
  .donate-block {
    margin-bottom: 30px;
  }
  .more-ways .donate-block {
    margin-bottom: 0;
  }
  .more-ways .donate-block {
    max-width: 100%;
  }
  .donate-block-wrap {
    padding: 30px 10px;
  }
}
/* Ways to give */
.donate-block h4:before {
  display: inline-block;
  position: static !important;
  margin-right: 10px;
}
@media(min-width: 768px){
  .donate-block.border-right:after {
    right: 0;
  }
  .donate-block-wrap > .row > div:nth-last-child(1):nth-child(odd) {
    margin: 40px auto 0 auto;
  }
  .donate-block-wrap > .row > div:nth-last-child(even) .donate-block:after {
    background: transparent;
  }
}
@media(min-width: 992px){
  .donate-block-wrap > .row > div:nth-last-child(1):nth-child(odd) {
    margin: 0;
  }
  .donate-block-wrap > .row > div:nth-last-child(even) .donate-block:after {
    background: #E7CAB4;
  }
}

.col_gray_block {
  background: #f3f3f3;
  padding: 45px;
  margin: 60px 0px;
}

.col_gray_block:after {
  display: table;
  clear: both;
  content: "";
}

.col_gray_block a {
  display: inline-block;
}

.php-gray-block {
  background: #f3f3f3;
  position: relative;
  min-height: 500px;
}

.php-gray-block .aboutList {
  font-size: 14px;
  line-height: 1.2;
}

.php-image-left-col {
  width: 100%;
  height: 60vw;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .php-image-left-col {
    position: absolute;
    top: 0;
    right: calc(50% + 15px);
    bottom: 0;
    left: 0;
    overflow: hidden;
    height: auto;
    width: auto;
    margin-top: 0;
  }
}

.secondary-header-alt-bg {
  background-size: cover;
  background-position: center center;
}
.secondary-header-alt-bg .container {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (min-width: 768px) {
  .secondary-header-alt-bg .container {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}

.entry-content .wp-block-separator {
  border: 0;
  border-bottom: 1px solid #5f605f;
}

.ph-block-dropdown {

}
.ph-block-dropdown-item {
  margin-bottom: 30px;
}
.ph-block-dropdown-visible-title {
  color: #5f605f;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}
.ph-block-dropdown-visible-title:before {
  content: url(/wp-content/themes/2-starter/img/paw.svg);
  display: inline-block;
  vertical-align: middle;
  width: 15px;
  height: 15px;
  margin: -3px 10px 0 0;
}
.ph-block-dropdown-visible-title:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  border-top: 8px solid #C92B3D;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  margin: -2px 0 0 11px;
}
.ph-block-dropdown-content {
  display: none;
}
.ph-block-dropdown-title {

}
.ph-block-dropdown-hidden-text {
  font-size: 14px;
  line-height: 22.4px;
}
.ph-block-dropdown-hidden-text p {
  margin: 0;
}

.ph-block-dropdown-item.active .ph-block-dropdown-visible-title:after {
  border-top: 0;
  border-bottom: 8px solid #C92B3D;
}

.ph-block-dropdown-item-alt {

}
.ph-block-dropdown-item-alt .ph-block-dropdown-visible-title {
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
  color: #5f605f;
  font-size: 24px;
  font-weight: normal;
  font-family: nobel, sans-serif;
  margin: 30px 0;
}
.ph-block-dropdown-item-alt .ph-block-dropdown-visible-title:before {
  display: none;
}
.ph-block-dropdown-item-alt .ph-block-dropdown-visible-title:after {
  margin-top: -10px;
}
.ph-block-dropdown-item-alt .ph-block-dropdown-content > div {
  margin-top: 30px;
  background: #f3f3f3;
  padding: 20px;
}
.ph-block-dropdown-item-alt .ph-block-dropdown-content > div:after {
  content: "";
  display: table;
  clear: both;
}
.ph-block-dropdown-item-alt .ph-block-dropdown-title {
  text-transform: uppercase;
  font-size: 17px;
  color: #c92b3d;
  margin: 0;
  font-family: nobel, sans-serif;
  font-weight: 700;
}
.ph-block-dropdown-item-alt img {
  min-width: 140px;
  max-width: 140px;
  margin-bottom: 20px;
}
.ph-block-dropdown-item-alt .ph-block-dropdown-hidden-text p {
  margin: 14px 0 20px 0;
}

@media(min-width: 768px) {
  .ph-block-dropdown-item-alt img {
    margin-bottom: 0;
    margin-right: 30px;
    float: left;
  }
  .ph-block-dropdown-item-alt img ~ .ph-block-dropdown-title,
  .ph-block-dropdown-item-alt img ~ .ph-block-dropdown-hidden-text {
    padding-left: 170px;
  }
}

.ph-single-title-red {
  padding: 50px 0;
  text-align: center;
  background: #C92B3D;
  color: #fff !important;
}
.ph-single-title-red > * {
  padding: 0 !important;
  margin: 0 !important;
}

/* Placement Opportunities page */
.map-container {
  width: 100%;
  max-width: 1300px;
  padding: 0 15px;
  margin: 0 auto;
}
.ph-map-wrapper {
  display: flex;
  border: 1px solid #E7EAED;
  min-height: 80vw;
}
.ph-map {
  flex: 1 1 100%
}
.ph-map-wrapper .ph-map-office > div {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}
.ph-map-office {
  flex: 0 0 0;
  transition: all 0.3s ease-in-out;
}
.ph-map-office-close {
  position: absolute;
  z-index: 5;
  border: 0;
  background-color: transparent;
  padding: 10px;
  cursor: pointer;
  right: -15px;
  top: -15px;
}
.ph-map-wrapper.active .ph-map-office {
  padding: 15px;
  position: fixed;
  background-color: #fff;
  z-index: 9999;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  box-shadow: 0 0 0 200px rgba(0, 0, 0, 0.5);
  overflow: auto;
}
.ph-map-wrapper.visible .ph-map-office > div {
  opacity: 1;
  display: block;
}
.ph-map-office .ph-city-office-details {
  column-count: unset;
}
.ph-map-office .ph-city-office {
  border: 0;
  margin: 0;
  padding: 0;
}
.ph-map-office .ph-print-all {
  text-align: center;
}
.ph-map-filters {
  padding-bottom: 24px;
}
.ph-map-city-select {
  font-size: 16px;
  line-height: 22px;
  color: #5F605F;
}
.ph-map-city-select label {
  font-weight: 700;
  padding-right: 15px;
}
.ph-map-city-select select {
  border: 1px solid #979797;
  padding: 10px 50px 10px 10px;
  border-radius: 8px;
  -webkit-appearance: none; 
  appearance: none;
  background-image: url(./img/map/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: right 10px top 5px;
  min-width: 150px;
  width: 100%;
  margin-top: 5px;
}
.ph-map-city-select select::-ms-expand {
  display: none;
}
.ph-map-city-select select:focus {
  outline: none;
  background-color: rgba(95, 95, 95, 0.1);
}
.ph-map-city-checkbox {
  margin-top: 10px;
  align-items: center;
  color: #5F605F;
}
.ph-map-city-checkbox > div:first-child {
  font-weight: 700;
  padding-bottom: 8px;
  font-size: 16px;
  line-height: 22px;
}
.ph-map-city-checkbox img {
  width: 24px;
  height: 24px;
  margin-right: 6px;
}
.ph-map-city-checkbox label {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 19px;
  cursor: pointer;
  user-select: none;
}
.ph-map-city-checkbox input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.ph-map-city-checkbox label:before {
  content: url(./img/map/checkbox-empty.svg);
  display: block;
  margin-top: 2px;
  margin-right: 7px;
  width: 28px;
}
.ph-map-city-checkbox input:checked + label:before {
  content: url(./img/map/checkbox-checked.svg);
}
.ph-map-offices {
  padding-bottom: 35px;
}
.ph-map-city {

}
.ph-map-city h4 {
  font-size: 20px;
  line-height: 28px;
  color: #0E0E0E;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 30px;
}
.ph-city-offices {

}
.ph-city-office {
  border-bottom: 1px solid #E7EAED;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.ph-city-office-title {
  position: relative;
  display: block;
  padding-left: 50px;
  min-height: 40px;
  color: #5F605F;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 20px;
  text-align: left;
  background-color: transparent;
  border: 0;
}
.ph-city-office-title span {
  display: block;
  font-weight: 400;
}
.ph-city-office-title img {
  position: absolute;
  left: 0;
  top: 2px;
}
.ph-city-office-details {
  font-size: 15px;
  line-height: 20px;
}
.ph-city-office-detail-item {
  padding-bottom: 21px;
}
.ph-city-office-detail-item div {

}
.ph-city-office-detail-item div:first-child {
  font-weight: 700;
}
.ph-city-office-detail-item div:last-child {
  padding-top: 6px;
}
.ph-city-office-detail-item span {
  display: block
}
.ph-city-office-detail-item a {
  color: #5F605F;
  text-decoration: underline;
  text-transform: lowercase;
}
.ph-print-all {
  text-align: right;
  padding: 36px 0 2px 0;
}
.ph-print-all button {
  border: 0;
  background-color: transparent;
  display: inline-flex;
  align-items: center;
  color: #1A73E8;
  font-size: 15px;
  line-height: 22px;
  font-weight: 700;
}
.ph-print-all button img {
  margin-right: 8px;
}

.ph-offices-not-found {
  text-align: center;
  padding-top: 35px;
}
.ph-offices-not-found button {
  display: block;
  width: 150px;
  margin: 20px auto;
  border: 1px solid #1A73E8;
  background-color: transparent;
  color: #1A73E8;
  font-weight: 700;
  padding: 7px;
  border-radius: 4px;
}
.ph-map-not-initialized .ph-offices-not-found {
  display: none;
}

@media(min-width: 768px) {
  .ph-map-filters {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .ph-map-city-select {
    margin-right: 30px;
  }
  .ph-map-city-checkbox {
    margin-top: 0;
  }
  .ph-map-city-checkbox > div:first-child {
    padding-right: 15px;
    padding-bottom: 0;
  }
  .ph-city-office-details {
    column-count: 2;
  }
  .ph-city-office-detail-item {
    padding-bottom: 21px;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
  }
  .ph-map-wrapper.active .ph-map-office {
    padding: 30px;
    left: 180px;
    right: 180px;
  }
  .ph-map-office-close {
    right: -30px;
    top: -30px;
  }
}

@media(min-width: 992px) {
  .ph-map-wrapper {
    min-height: 60vh;
  }
  .ph-map-filters {
    align-items: center;
  }
  .ph-map-city-select select {
    width: auto;
    margin-top: 0;
  }
  .ph-map-city-checkbox {
    display: flex;
    margin-top: 0;
  }
  .ph-map-city-checkbox > div:last-child {
    margin-left: 35px;
  }
  .ph-city-office-detail-item {
    display: flex;
  }
  .ph-city-office-detail-item div:first-child {
    flex: 0 0 190px;
    text-align: right;
  }
  .ph-city-office-detail-item div:last-child {
    padding-left: 17px;
    padding-top: 0;
  }
  .ph-map-wrapper.active .ph-map-office {
    position: static;
    z-index: 1;
    box-shadow: none;
    flex: 0 0 540px;
  }
}

.ph-footer-social {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
.ph-footer-social > div {
  padding-right: 16px;
}
.ph-footer-social img {
  height: 32px;
  display: block;
}
@media(min-width: 768px) {
  .ph-footer-social {
    justify-content: flex-start;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.header-navigation .menu-item-has-children > a {
  position: relative;
  padding-right: 20px;
}
.header-navigation .menu-item-has-children > a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 16px;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><polygon points='12 17.414 3.293 8.707 4.707 7.293 12 14.586 19.293 7.293 20.707 8.707 12 17.414'/></svg>");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  right: 4px;
  top: 14px;
}
.header-navigation .menu-item-has-children > a:hover:before {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><polygon fill='%23c92b3d' points='12 17.414 3.293 8.707 4.707 7.293 12 14.586 19.293 7.293 20.707 8.707 12 17.414'/></svg>");
}