.js-tabcontent[aria-hidden="true"] {
  display: none;
}

.site-content>.container {
  position: static;
}

/* scaling-image-slide-out */

.scaling-image-slide-out-wrapper .scaling-image-slide-out-trigger {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  cursor: pointer;
}

.scaling-image-slide-out-wrapper .scaling-image-slide-out-trigger .main-image {
  max-height: 100px;
  transition: transform 0.2s;
}

.scaling-image-slide-out-trigger .main-image:hover,
.scaling-image-slide-out-trigger.active .main-image {
  transform: scale(2);
}

.scaling-image-slide-out-wrapper .scaling-image-slide-out-content {
  overflow: hidden;
  transition-delay: 0s;
  max-height: 0;
  margin: 15px;
  z-index: 2;
}

.scaling-image-slide-out-wrapper .scaling-image-slide-out-content.active {
  max-height: 100%;
  max-height: 5000px;
  transition-delay: 0s;
  z-index: 3;
}

.scaling-image-slide-out-wrapper .scaling-image-slide-out-content .scaling-image-slide-out-content-row {
  display: flex;
  flex-flow: wrap;
}

.scaling-image-slide-out-wrapper .scaling-image-slide-out-content .scaling-image-slide-out-content-row .col {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 300px;
  max-width: 100%;
  padding: 15px;
}

.scaling-image-slide-out-wrapper .image-overlay-wrapper {
  max-width: 340px;
  position: relative;
}

.scaling-image-slide-out-wrapper .image-overlay-wrapper .column-image {
  display: block;
  width: 100%;
  height: auto;
}

.scaling-image-slide-out-wrapper .image-overlay-wrapper .image-link:focus {
  outline: #000000 dotted 1px;
}

.scaling-image-slide-out-wrapper .image-overlay-wrapper .overlay-black {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.5s ease;
  background-color: rgba(0, 0, 0, 0.9);
}

.scaling-image-slide-out-wrapper .image-overlay-wrapper .overlay-content {
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.scaling-image-slide-out-wrapper .image-overlay-wrapper .overlay-black,
.scaling-image-slide-out-wrapper .image-overlay-wrapper .overlay-content {
  transition: opacity 0.25s ease-in-out;
}

.scaling-image-slide-out-wrapper .image-overlay-wrapper:hover>.overlay-black,
.scaling-image-slide-out-wrapper .image-link:focus .image-overlay-wrapper>.overlay-black {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .scaling-image-slide-out-wrapper .scaling-image-slide-out-content {
    grid-area: content;
  }
  .scaling-image-slide-out-wrapper {
    display: -ms-grid;
    display: grid;
    grid-template-areas: "item item item item" "content content content content";
		grid-template-columns: 1fr 1fr 1fr 1fr;
		-ms-grid-columns: 1fr 1fr 1fr 1fr;
    -ms-grid-rows: 1fr;
	}

	/* trigger */
	.scaling-image-slide-out-wrapper .scaling-image-slide-out-trigger:first-child {
		-ms-grid-column: 1;
		-ms-grid-column-span: 1;
	}
	.scaling-image-slide-out-wrapper .scaling-image-slide-out-trigger:nth-child(3) {
		-ms-grid-column: 2;
		-ms-grid-column-span: 1;
	}
	.scaling-image-slide-out-wrapper .scaling-image-slide-out-trigger:nth-child(5) {
		-ms-grid-column: 3;
		-ms-grid-column-span: 1;
	}

	.scaling-image-slide-out-wrapper .scaling-image-slide-out-trigger:nth-child(7) {
		-ms-grid-column: 4;
		-ms-grid-column-span: 1;
	}

	.scaling-image-slide-out-wrapper .scaling-image-slide-out-content {
		-ms-grid-column: 1;
		-ms-grid-column-span: 4;
		-ms-grid-row: 2;
	}

  .scaling-image-slide-out-wrapper .scaling-image-slide-out-content {
    transition: max-height .5s ease-out;
  }
  .scaling-image-slide-out-wrapper .scaling-image-slide-out-content.active {
    transition: max-height 1s ease-in;
  }
}

/* Card Slideout Trigger */

.card-slide-out-wrapper .card-slide-out-trigger {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  min-height: 150px;
  background: #fefefe;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-decoration: none;
  margin: 15px;
  cursor: pointer;
  position: relative;
}

.card-slide-out-wrapper .card-slide-out-trigger.active .card-slide-out-indicator {
  border-bottom: 10px solid #222;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  height: 0;
  position: absolute;
  bottom: -15px;
  left: 50%;
  width: 0;
}

@media (min-width: 768px) {
  .card-slide-out-wrapper .card-slide-out-trigger.active .card-slide-out-indicator {
    bottom: -15px;
  }
}

.card-slide-out-wrapper .card-slide-out-trigger:hover,
.card-slide-out-wrapper .card-slide-out-trigger:focus,
.card-slide-out-wrapper .card-slide-out-trigger.active {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15), 0 1px 5px rgba(0, 0, 0, 0.4);
}

.card-slide-out-wrapper .card-slide-out-trigger:focus {
  outline: #000000 dotted 1px;
}

.card-slide-out-wrapper .card-slide-out-trigger .slide-out-col-4 {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 40%;
}

.card-slide-out-wrapper .card-slide-out-trigger .slide-out-col-6 {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 60%;
}

.card-slide-out-wrapper .card-slide-out-trigger .main-image {
  display: block;
  margin: 0 auto;
  padding: 15px;
}

.card-slide-out-wrapper .card-slide-out-trigger .slide-out-trigger-content-wrapper {
  padding: 15px;
}

.card-slide-out-wrapper .card-slide-out-trigger .main-image {
  max-width: 120px;
}

.card-slide-out-wrapper .card-slide-out-trigger .slide-out-trigger-content-wrapper h3 {
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.card-slide-out-wrapper .card-slide-out-trigger .slide-out-trigger-content-wrapper .card-slide-out-trigger-descrption {
  color: #555555;
}

.card-slide-out-wrapper .card-slide-out-content {
  overflow: hidden;
  transition-delay: 0s;
  max-height: 0;

  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15), 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fefefe;
  margin: 0 15px;
  z-index: 2;
}

.card-slide-out-wrapper .card-slide-out-content.active {
  max-height: 100%;
  max-height: 300vh;
  transition-delay: 0s;
  z-index: 3;
}

.card-slide-out-wrapper .card-slide-out-content .card-slide-out-content-inner-wrapper {
  position: relative;
}

.card-slide-out-wrapper .card-slide-out-content .card-slide-out-content-inner-wrapper button.close {
  position: absolute;
  right: 0;
  cursor: pointer;
  background: 0 0;
  border: 0;
  -webkit-appearance: none;
}

.card-slide-out-wrapper .card-slide-out-content .card-slide-out-content-inner-wrapper .close {
  float: right;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
  padding: 10px;
}

.card-slide-out-wrapper .card-slide-out-content .card-slide-out-content-inner-wrapper .close:hover,
.card-slide-out-wrapper .card-slide-out-content .card-slide-out-content-inner-wrapper .close:focus,
.card-slide-out-wrapper .card-slide-out-content .card-slide-out-content-inner-wrapper .close:active {
  opacity: 0.8;
}

.card-slide-out-wrapper .card-slide-out-content .card-slide-out-content-inner-wrapper .card-slide-out-tablist {
  display: flex;
  padding: 0;
}

.card-slide-out-wrapper .card-slide-out-content .card-slide-out-content-inner-wrapper .card-slide-out-tablist li {
  flex: 1;
  text-align: center;
  list-style: none;
  margin: 0;
}

.card-slide-out-wrapper .card-slide-out-content .card-slide-out-content-inner-wrapper .card-slide-out-tablist li a {
  display: block;
  width: 100%;
  padding: 20px 0;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  text-decoration: none;
  border-left: 0.5px solid #cacaca;
  color: inherit;
}

.card-slide-out-wrapper .card-slide-out-content .card-slide-out-content-inner-wrapper .card-slide-out-tablist li:first-child a {
  border-left: none;
}

.card-slide-out-wrapper .card-slide-out-content .card-slide-out-content-inner-wrapper .card-slide-out-tablist li a:focus {
  outline: #000000 dotted 1px;
}

.card-slide-out-wrapper .card-slide-out-content .card-slide-out-content-inner-wrapper .card-slide-out-tablist li:last-child a {
  border-right: none;
}

.card-slide-out-wrapper .card-slide-out-content .card-slide-out-content-inner-wrapper .card-slide-out-tablist li a[aria-selected="false"] {
  background: #ebebeb;
  color: #7e7e7e !important;
  border-bottom: 1px solid #cacaca;
}

.card-slide-out-wrapper .card-slide-out-content .card-slide-out-content-inner-wrapper .card-slide-out-tablist li a[aria-selected="false"]:hover {
  color: #3e3e3e !important;
}

.card-slide-out-wrapper .card-slide-out-content .card-slide-out-content-inner-wrapper .card-slide-out-content-row {
  display: flex;
  flex-flow: wrap;
}

.card-slide-out-wrapper .card-slide-out-content .card-slide-out-content-inner-wrapper .card-slide-out-content-row .card-slide-out-content-column {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 33.3333%;
  flex-basis: 300px;
  max-width: 100%;
  position: relative;
}

.card-slide-out-wrapper .card-slide-out-content .card-slide-out-content-inner-wrapper .card-slide-out-content-row .card-slide-out-content-column .text-based-col {
  padding-right: 15px;
  font-size: 18px;
}

.card-slide-out-wrapper .card-slide-out-content .card-slide-out-content-inner-wrapper .card-slide-out-content-row .card-slide-out-content-column:last-child .text-based-col {
  padding-right: 0;
}

.card-slide-out-wrapper .card-slide-out-content .card-slide-out-content-inner-wrapper .card-slide-out-content-row .card-slide-out-content-column .text-based-col {
  padding-right: 15px;
}

.card-slide-out-wrapper .card-slide-out-content .card-slide-out-content-inner-wrapper .accordion-tab-content {
  padding: 2em;
}

.card-slide-out-wrapper .card-slide-out-content .card-slide-out-content-inner-wrapper .accordion-tab-content ul > li ul > li {
  list-style: disc;
  margin-left: 15px;
}

@media (min-width: 768px) {
  .card-slide-out-wrapper .card-slide-out-content .card-slide-out-content-inner-wrapper .accordion-tab-content {
    padding: 3em 5em;
  }
}

.card-slide-out-wrapper .card-slide-out-content .card-slide-out-content-inner-wrapper .accordion-tab-content .no-tab-heading {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  padding: 15px 0;
}

.card-slide-out-wrapper {
  display: block;
}

.card-slide-out-content-column .image-overlay-wrapper .image-link:focus {
  outline: #000000 dotted 1px;
}

.card-slide-out-content-column .image-overlay-wrapper .overlay-black {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.5s ease;
  background-color: rgba(0, 0, 0, 0.9);
}
.card-slide-out-content-column .image-overlay-wrapper .column-image {
	width: 100%;
}

.card-slide-out-content-column .image-overlay-wrapper .overlay-content {
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  width: 85%;
}

.card-slide-out-content-column .image-overlay-wrapper .overlay-black,
.card-slide-out-content-column .image-overlay-wrapper .overlay-content {
  transition: opacity 0.25s ease-in-out;
}

.card-slide-out-content-column .image-overlay-wrapper:hover>.overlay-black,
.card-slide-out-content-column a:focus>.image-overlay-wrapper>.overlay-black,
.card-slide-out-content-column .image-link:focus .image-overlay-wrapper>.overlay-black {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .card-slide-out-content {
    grid-area: content;
  }
  .card-slide-out-wrapper {
    display: -ms-grid;
    display: grid;
    grid-template-areas: "item item item" "content content content";
    -ms-grid-columns: 1fr 1fr 1fr;
    -ms-grid-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr;
	}

	/* trigger */
  .card-slide-out-wrapper .card-slide-out-trigger:first-child {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .card-slide-out-wrapper .card-slide-out-trigger:nth-child(3) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
  .card-slide-out-wrapper .card-slide-out-trigger:nth-child(5) {
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
	}


  .card-slide-out-wrapper .card-slide-out-content {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    -ms-grid-row: 2;
	}

  .card-slide-out-wrapper .card-slide-out-content {
    transition: max-height .5s ease-out;
  }
  .card-slide-out-wrapper .card-slide-out-content.active {
    transition: max-height 1s ease-in;
  }
}