/*
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/
/* Table of Content
==================================================
	#Reset & Basics
	#Basic Styles
	#Site Styles
	#Typography
	#Links
	#Lists
	#Images
	#Buttons
	#Forms
	#Misc */
/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* #Basic Styles
================================================== */
body {
  background: #fff;
  font: 14px/21px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #444;
  -webkit-font-smoothing: antialiased;
  /* Fix for webkit rendering */
  -webkit-text-size-adjust: 100%;
}
/* #Typography
================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #181818;
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: normal;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-weight: inherit;
}
h1 {
  font-size: 46px;
  line-height: 50px;
  margin-bottom: 14px;
}
h2 {
  font-size: 35px;
  line-height: 40px;
  margin-bottom: 10px;
}
h3 {
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 8px;
}
h4 {
  font-size: 21px;
  line-height: 30px;
  margin-bottom: 4px;
}
h5 {
  font-size: 17px;
  line-height: 24px;
}
h6 {
  font-size: 14px;
  line-height: 21px;
}
.subheader {
  color: #777;
}
p {
  margin: 0 0 20px 0;
}
p img {
  margin: 0;
}
p.lead {
  font-size: 21px;
  line-height: 27px;
  color: #777;
}
em {
  font-style: italic;
}
strong {
  font-weight: bold;
  color: #333;
}
small {
  font-size: 80%;
}
/*	Blockquotes  */
blockquote,
blockquote p {
  font-size: 17px;
  line-height: 24px;
  color: #777;
  font-style: italic;
}
blockquote {
  margin: 0 0 20px;
  padding: 9px 20px 0 19px;
  border-left: 1px solid #ddd;
}
blockquote cite {
  display: block;
  font-size: 12px;
  color: #555;
}
blockquote cite:before {
  content: "\2014 \0020";
}
blockquote cite a,
blockquote cite a:visited,
blockquote cite a:visited {
  color: #555;
}
hr {
  border: solid #ddd;
  border-width: 1px 0 0;
  clear: both;
  margin: 10px 0 30px;
  height: 0;
}
/* #Links
================================================== */
a,
a:visited {
  color: #333;
  text-decoration: underline;
  outline: 0;
}
a:hover,
a:focus {
  color: #000;
}
p a,
p a:visited {
  line-height: inherit;
}
/* #Lists
================================================== */
ul,
ol {
  margin-bottom: 20px;
}
ul {
  list-style: none outside;
}
ol {
  list-style: decimal;
}
ol,
ul.square,
ul.circle,
ul.disc {
  margin-left: 30px;
}
ul.square {
  list-style: square outside;
}
ul.circle {
  list-style: circle outside;
}
ul.disc {
  list-style: disc outside;
}
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 4px 0 5px 30px;
  font-size: 90%;
}
ul ul li,
ul ol li,
ol ol li,
ol ul li {
  margin-bottom: 6px;
}
li {
  line-height: 18px;
  margin-bottom: 12px;
}
ul.large li {
  line-height: 21px;
}
li p {
  line-height: 21px;
}
/* #Images
================================================== */
img.scale-with-grid {
  max-width: 100%;
  height: auto;
}
/* #Buttons
================================================== */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  background: #eee;
  /* Old browsers */
  background: #eee -moz-linear-gradient(top, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  /* FF3.6+ */
  background: #eee -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.2)), color-stop(100%, rgba(0, 0, 0, 0.2)));
  /* Chrome,Safari4+ */
  background: #eee -webkit-linear-gradient(top, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  /* Chrome10+,Safari5.1+ */
  background: #eee -o-linear-gradient(top, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  /* Opera11.10+ */
  background: #eee -ms-linear-gradient(top, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  /* IE10+ */
  background: #eee linear-gradient(top, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  /* W3C */
  border: 1px solid #aaa;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  color: #444;
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  text-decoration: none;
  text-shadow: 0 1px rgba(255, 255, 255, 0.75);
  cursor: pointer;
  margin-bottom: 20px;
  line-height: normal;
  padding: 8px 10px;
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
  color: #222;
  background: #ddd;
  /* Old browsers */
  background: #ddd -moz-linear-gradient(top, rgba(255, 255, 255, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
  /* FF3.6+ */
  background: #ddd -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.3)), color-stop(100%, rgba(0, 0, 0, 0.3)));
  /* Chrome,Safari4+ */
  background: #ddd -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
  /* Chrome10+,Safari5.1+ */
  background: #ddd -o-linear-gradient(top, rgba(255, 255, 255, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
  /* Opera11.10+ */
  background: #ddd -ms-linear-gradient(top, rgba(255, 255, 255, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
  /* IE10+ */
  background: #ddd linear-gradient(top, rgba(255, 255, 255, 0.3) 0%, rgba(0, 0, 0, 0.3) 100%);
  /* W3C */
  border: 1px solid #888;
  border-top: 1px solid #aaa;
  border-left: 1px solid #aaa;
}
.button:active,
button:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
  border: 1px solid #666;
  background: #ccc;
  /* Old browsers */
  background: #ccc -moz-linear-gradient(top, rgba(255, 255, 255, 0.35) 0%, rgba(10, 10, 10, 0.4) 100%);
  /* FF3.6+ */
  background: #ccc -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0.35)), color-stop(100%, rgba(10, 10, 10, 0.4)));
  /* Chrome,Safari4+ */
  background: #ccc -webkit-linear-gradient(top, rgba(255, 255, 255, 0.35) 0%, rgba(10, 10, 10, 0.4) 100%);
  /* Chrome10+,Safari5.1+ */
  background: #ccc -o-linear-gradient(top, rgba(255, 255, 255, 0.35) 0%, rgba(10, 10, 10, 0.4) 100%);
  /* Opera11.10+ */
  background: #ccc -ms-linear-gradient(top, rgba(255, 255, 255, 0.35) 0%, rgba(10, 10, 10, 0.4) 100%);
  /* IE10+ */
  background: #ccc linear-gradient(top, rgba(255, 255, 255, 0.35) 0%, rgba(10, 10, 10, 0.4) 100%);
  /* W3C */
}
.button.full-width,
button.full-width,
input[type="submit"].full-width,
input[type="reset"].full-width,
input[type="button"].full-width {
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: center;
}
/* Fix for odd Mozilla border & padding issues */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/* #Forms
================================================== */
form {
  margin-bottom: 20px;
}
fieldset {
  margin-bottom: 20px;
}
input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
  border: 1px solid #ccc;
  padding: 6px 4px;
  outline: none;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  font: 13px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #777;
  margin: 0;
  width: 210px;
  max-width: 100%;
  display: block;
  margin-bottom: 20px;
  background: #fff;
}
select {
  padding: 0;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus {
  border: 1px solid #aaa;
  color: #444;
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
textarea {
  min-height: 60px;
}
label,
legend {
  display: block;
  font-weight: bold;
  font-size: 13px;
}
select {
  width: 220px;
}
input[type="checkbox"] {
  display: inline;
}
label span,
legend span {
  font-weight: normal;
  font-size: 13px;
  color: #444;
}
/* #Misc
================================================== */
.remove-bottom {
  margin-bottom: 0 !important;
}
.half-bottom {
  margin-bottom: 10px !important;
}
.add-bottom {
  margin-bottom: 20px !important;
}
/* used in .relprop mixin to translate px to vw */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.clearfix:after {
  clear: both;
}
@media screen and (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}
.stratum {
  padding-left: 4.76190476vw;
  padding-right: 4.76190476vw;
}
@media (min-width: 768px) {
  .stratum {
    padding-left: 6.94444444vw;
  }
}
@media (min-width: 768px) {
  .stratum {
    padding-right: 6.94444444vw;
  }
}
section.stratum + section.stratum {
  margin-top: 9.52380952vw;
}
@media (min-width: 768px) {
  section.stratum + section.stratum {
    margin-top: 4.16666667vw;
  }
}
section.stratum.default + #site-footer {
  margin-top: 9.52380952vw;
}
@media (min-width: 768px) {
  section.stratum.default + #site-footer {
    margin-top: 4.16666667vw;
  }
}
img {
  max-width: 100%;
  height: auto;
}
object,
iframe,
.wp-caption {
  max-width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
}
iframe {
  width: 100%;
}
.alignleft {
  float: left;
  margin-top: 1.19047619vw;
  margin-right: 7.14285714vw;
  margin-bottom: 7.14285714vw;
  margin-left: 0;
}
@media (min-width: 768px) {
  .alignleft {
    margin-top: 0.34722222vw;
  }
}
@media (min-width: 768px) {
  .alignleft {
    margin-right: 2.08333333vw;
  }
}
@media (min-width: 768px) {
  .alignleft {
    margin-bottom: 2.08333333vw;
  }
}
.alignright {
  float: right;
  margin-top: 1.19047619vw;
  margin-left: 7.14285714vw;
  margin-bottom: 7.14285714vw;
  margin-right: 0;
}
@media (min-width: 768px) {
  .alignright {
    margin-top: 0.34722222vw;
  }
}
@media (min-width: 768px) {
  .alignright {
    margin-left: 2.08333333vw;
  }
}
@media (min-width: 768px) {
  .alignright {
    margin-bottom: 2.08333333vw;
  }
}
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 480px) {
  .alignleft,
  .alignright {
    float: none;
    margin: 15px auto;
    display: block;
  }
}
.video-container {
  width: 100%;
  position: relative;
  cursor: pointer;
}
.video-container img.video-play-overlay {
  z-index: 9;
  width: 11.9047619vw;
  height: 11.9047619vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media (min-width: 768px) {
  .video-container img.video-play-overlay {
    width: 6.94444444vw;
  }
}
@media (min-width: 768px) {
  .video-container img.video-play-overlay {
    height: 6.94444444vw;
  }
}
.video-container .strut {
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}
.video-container iframe {
  z-index: 9;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.gallery .gallery-item img {
  max-width: 90%;
  border: none 0 !important;
}
.gallery .gallery-item .gallery-caption {
  font-size: 0.8em;
  color: #999999;
}
.wp-caption,
.wp-caption > p {
  font-size: 1em;
  margin-top: 5px;
  color: #777;
  font-style: italic;
  text-align: center;
}
.wp-caption > p:last-of-type {
  margin-bottom: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  background-color: #fff;
  color: #333333;
}
a,
a:visited {
  color: inherit;
  text-decoration: underline;
}
a:hover {
  color: #000;
  text-decoration: none;
}
a img {
  border: 0 none;
}
body {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
}
p {
  line-height: 137.5%;
  margin: 0;
  margin-top: 7.14285714vw;
  margin-bottom: 7.14285714vw;
}
@media (min-width: 768px) {
  p {
    margin-top: 2.08333333vw;
  }
}
@media (min-width: 768px) {
  p {
    margin-bottom: 2.08333333vw;
  }
}
p,
li,
td,
th,
label {
  font-size: 3.80952381vw;
}
@media (min-width: 768px) {
  p,
  li,
  td,
  th,
  label {
    font-size: 1.25vw;
  }
}
li {
  line-height: 137.5%;
}
h1,
h2,
h3,
h4,
h5 {
  margin-top: 1em;
  line-height: 120%;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  color: inherit;
}
h1,
.panel-block .copy h2 {
  font-size: 7.61904762vw;
  font-weight: 900;
}
@media (min-width: 768px) {
  h1,
  .panel-block .copy h2 {
    font-size: 2.91666667vw;
  }
}
h2 {
  font-size: 6.47619048vw;
  font-weight: 700;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.5vw;
  }
}
h3 {
  font-size: 6.0952381vw;
  font-weight: 300;
}
@media (min-width: 768px) {
  h3 {
    font-size: 2.22222222vw;
  }
}
h4 {
  font-size: 5.71428571vw;
  font-weight: 400;
  color: #808080;
}
@media (min-width: 768px) {
  h4 {
    font-size: 1.66666667vw;
  }
}
h5 {
  font-size: 5vw;
  font-weight: 900;
}
@media (min-width: 768px) {
  h5 {
    font-size: 1.38888889vw;
  }
}
a.btn,
a.btn:visited,
input[type="submit"],
button,
input[type="button"] {
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  font-size: 3.80952381vw;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #333333;
  color: #fff;
  padding-top: 3.80952381vw;
  padding-right: 5.71428571vw;
  padding-bottom: 3.80952381vw;
  padding-left: 5.71428571vw;
  border: solid 1px #333333;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  border-radius: 0;
  text-decoration: none;
  font-weight: 700;
  text-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}
@media (min-width: 768px) {
  a.btn,
  a.btn:visited,
  input[type="submit"],
  button,
  input[type="button"] {
    font-size: 1.11111111vw;
  }
}
@media (min-width: 768px) {
  a.btn,
  a.btn:visited,
  input[type="submit"],
  button,
  input[type="button"] {
    padding-top: 0.69444444vw;
  }
}
@media (min-width: 768px) {
  a.btn,
  a.btn:visited,
  input[type="submit"],
  button,
  input[type="button"] {
    padding-right: 2.08333333vw;
  }
}
@media (min-width: 768px) {
  a.btn,
  a.btn:visited,
  input[type="submit"],
  button,
  input[type="button"] {
    padding-bottom: 0.69444444vw;
  }
}
@media (min-width: 768px) {
  a.btn,
  a.btn:visited,
  input[type="submit"],
  button,
  input[type="button"] {
    padding-left: 2.08333333vw;
  }
}
a.btn:hover,
a.btn:visited:hover,
input[type="submit"]:hover,
button:hover,
input[type="button"]:hover {
  opacity: 0.9;
  background: #000;
  color: #fff;
  cursor: pointer;
}
a.btn.ghost,
a.btn:visited.ghost,
input[type="submit"].ghost,
button.ghost,
input[type="button"].ghost {
  background-color: transparent;
}
a.btn.ghost:hover,
a.btn:visited.ghost:hover,
input[type="submit"].ghost:hover,
button.ghost:hover,
input[type="button"].ghost:hover {
  opacity: 1;
  background-color: rgba(216, 216, 216, 0.3);
}
a.btn.icon-left i,
a.btn:visited.icon-left i,
input[type="submit"].icon-left i,
button.icon-left i,
input[type="button"].icon-left i {
  margin-right: 10px;
}
a.btn.icon-right i,
a.btn:visited.icon-right i,
input[type="submit"].icon-right i,
button.icon-right i,
input[type="button"].icon-right i {
  margin-left: 10px;
}
a.btn + a.btn,
a.btn + a.btn:visited,
a.btn + input[type="submit"],
a.btn + button,
a.btn + input[type="button"],
a.btn:visited + a.btn,
a.btn:visited + a.btn:visited,
a.btn:visited + input[type="submit"],
a.btn:visited + button,
a.btn:visited + input[type="button"],
input[type="submit"] + a.btn,
input[type="submit"] + a.btn:visited,
input[type="submit"] + input[type="submit"],
input[type="submit"] + button,
input[type="submit"] + input[type="button"],
button + a.btn,
button + a.btn:visited,
button + input[type="submit"],
button + button,
button + input[type="button"],
input[type="button"] + a.btn,
input[type="button"] + a.btn:visited,
input[type="button"] + input[type="submit"],
input[type="button"] + button,
input[type="button"] + input[type="button"] {
  margin-left: 3.57142857vw;
}
@media (min-width: 768px) {
  a.btn + a.btn,
  a.btn + a.btn:visited,
  a.btn + input[type="submit"],
  a.btn + button,
  a.btn + input[type="button"],
  a.btn:visited + a.btn,
  a.btn:visited + a.btn:visited,
  a.btn:visited + input[type="submit"],
  a.btn:visited + button,
  a.btn:visited + input[type="button"],
  input[type="submit"] + a.btn,
  input[type="submit"] + a.btn:visited,
  input[type="submit"] + input[type="submit"],
  input[type="submit"] + button,
  input[type="submit"] + input[type="button"],
  button + a.btn,
  button + a.btn:visited,
  button + input[type="submit"],
  button + button,
  button + input[type="button"],
  input[type="button"] + a.btn,
  input[type="button"] + a.btn:visited,
  input[type="button"] + input[type="submit"],
  input[type="button"] + button,
  input[type="button"] + input[type="button"] {
    margin-left: 1.38888889vw;
  }
}
.acf_panel ul li,
.acf_panel ol li {
  margin-left: 25px;
}
.acf_panel ul {
  list-style: disc;
}
.acf_panel ol {
  list-style: decimal;
}
blockquote {
  margin-top: 7.14285714vw;
  margin-bottom: 7.14285714vw;
  margin-left: 0vw;
  margin-right: 0vw;
  padding-left: 4.76190476vw;
  border-left: solid 5px #333333;
}
@media (min-width: 768px) {
  blockquote {
    margin-top: 2.08333333vw;
  }
}
@media (min-width: 768px) {
  blockquote {
    margin-bottom: 2.08333333vw;
  }
}
@media (min-width: 768px) {
  blockquote {
    margin-left: 3.47222222vw;
  }
}
@media (min-width: 768px) {
  blockquote {
    margin-right: 3.47222222vw;
  }
}
@media (min-width: 768px) {
  blockquote {
    padding-left: 1.38888889vw;
  }
}
blockquote p {
  margin-top: 7.14285714vw;
  margin-bottom: 7.14285714vw;
  font-size: 4.28571429vw;
  line-height: 155.55555556%;
}
@media (min-width: 768px) {
  blockquote p {
    margin-top: 2.08333333vw;
  }
}
@media (min-width: 768px) {
  blockquote p {
    margin-bottom: 2.08333333vw;
  }
}
@media (min-width: 768px) {
  blockquote p {
    font-size: 1.66666667vw;
  }
}
blockquote p:first-of-type {
  margin-top: 0;
}
blockquote p:last-of-type {
  margin-bottom: 0;
}
.excerpt {
  margin-top: 0;
}
input[type="checkbox"]:checked {
  -webkit-filter: grayscale(100%);
}
.no-js #nav-trigger {
  display: none;
  /*don't display if no javascript*/
}
.js #toggling-nav {
  display: none;
  /*hide the nav until shown if javascript*/
}
@media screen and (min-width: 960px) {
  .js #nav-trigger {
    display: none;
  }
  .js #toggling-nav {
    display: block;
  }
}
#site-header {
  padding: 0;
}
#brand {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 8.80952381vw;
  padding-right: 7.14285714vw;
  padding-bottom: 6.42857143vw;
  padding-left: 7.14285714vw;
}
#brand .logolink {
  width: 35.71428571vw;
}
@media (min-width: 768px) {
  #brand .logolink {
    width: 14.58333333vw;
  }
}
#brand .logolink img {
  display: block;
}
#brand #menu-toggle {
  display: block;
  cursor: pointer;
  font-size: 7.14285714vw;
  font-family: 'Font Awesome 5 Free';
}
@media (min-width: 768px) {
  #brand #menu-toggle {
    font-size: 2.08333333vw;
  }
}
#brand #menu-toggle:hover {
  text-decoration: none;
}
#nav-panel {
  max-height: 0;
  overflow: hidden;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  transition: max-height 0.5s, padding-top 0.5s, padding-bottom 0.5s;
  transition-timing-function: ease-in-out;
  padding-right: 7.14285714vw;
  padding-left: 7.14285714vw;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(145deg, #128b75 20%, #c01e5b 80%);
  background-size: 150% 200%;
  animation: MoveBG 10s ease 0s infinite;
}
#nav-panel.expanded {
  max-height: 150vh;
  padding-top: 9.52380952vw;
  padding-bottom: 9.52380952vw;
}
@media (min-width: 768px) {
  #nav-panel.expanded {
    padding-top: 2.77777778vw;
  }
}
@media (min-width: 768px) {
  #nav-panel.expanded {
    padding-bottom: 2.77777778vw;
  }
}
#nav-panel a,
#nav-panel a:visited {
  color: #fff;
  text-decoration: none;
}
#nav-panel .menu-label {
  font-size: 4.28571429vw;
  font-weight: 700;
}
@media (min-width: 768px) {
  #nav-panel .menu-label {
    font-size: 1.25vw;
  }
}
#nav-panel .menu-main-navigation-container {
  border-bottom: 2px solid #9eb0b0;
}
#nav-panel > div > ul {
  margin-top: 4.76190476vw;
  margin-bottom: 4.76190476vw;
}
@media (min-width: 768px) {
  #nav-panel > div > ul {
    margin-top: 0vw;
  }
}
@media (min-width: 768px) {
  #nav-panel > div > ul {
    margin-bottom: 0vw;
  }
}
#nav-panel > div > ul li {
  font-size: 3.57142857vw;
  line-height: 226.66666667%;
  font-weight: 700;
  margin: 0;
}
@media (min-width: 768px) {
  #nav-panel > div > ul li {
    font-size: 1.11111111vw;
  }
}
#nav-panel > div > ul li.menu-item-has-children {
  /*
				& > a:after {				
					font-family: @fa;
					display: inline-block;
					content: "\f0d7"; //caret-down
					transition: transform .5s ease 0s;
					.rp(margin-left,8,8);
					cursor: pointer;
				}
				*/
}
#nav-panel > div > ul li.menu-item-has-children i {
  transition: transform 0.5s ease 0s;
  margin-left: 1.9047619vw;
  cursor: pointer;
}
@media (min-width: 768px) {
  #nav-panel > div > ul li.menu-item-has-children i {
    margin-left: 0.55555556vw;
  }
}
#nav-panel > div > ul li.menu-item-has-children.expanded > i {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
#nav-panel > div > ul li.menu-item-has-children.expanded > .sub-menu {
  max-height: 150vh;
}
#nav-panel > div > ul li .sub-menu {
  margin-top: 0;
  max-height: 0;
  transition: max-height 0.7s, opacity 0.2s;
  transition-timing-function: ease;
  overflow: hidden;
}
#nav-panel #searchform div {
  margin-top: 7.14285714vw;
  margin-bottom: 7.14285714vw;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  #nav-panel #searchform div {
    margin-top: 2.08333333vw;
  }
}
@media (min-width: 768px) {
  #nav-panel #searchform div {
    margin-bottom: 2.08333333vw;
  }
}
#nav-panel #searchform div input,
#nav-panel #searchform div button {
  height: 40px;
  margin: 0;
  display: inline-block;
  font-size: 3.57142857vw;
  font-weight: 700;
  appearance: none;
  -webkit-appearance: none;
  border: 0 none;
  background: #fff;
}
@media (min-width: 768px) {
  #nav-panel #searchform div input,
  #nav-panel #searchform div button {
    font-size: 1.04166667vw;
  }
}
#nav-panel #searchform div input[type="text"] {
  flex-grow: 1;
  padding: 0 10px;
}
#nav-panel #searchform div input[type="text"]:-moz-placeholder {
  color: #000;
}
#nav-panel #searchform div input[type="text"]::-moz-placeholder {
  color: #000;
}
#nav-panel #searchform div input[type="text"]:-ms-input-placeholder {
  color: #000;
}
#nav-panel #searchform div input[type="text"]::-webkit-input-placeholder {
  color: #000;
}
#nav-panel #searchform div button[type="submit"] {
  color: #333333;
  width: 7.14285714vw;
  height: 35px;
  font-family: 'Font Awesome 5 Free';
  padding: 0;
  border: 0 none;
  margin-right: 2px;
}
@media (min-width: 768px) {
  #nav-panel #searchform div button[type="submit"] {
    width: 2.08333333vw;
  }
}
@-webkit-keyframes MoveBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-moz-keyframes MoveBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-o-keyframes MoveBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes MoveBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
ul.social {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
}
ul.social li {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
ul.social li {
  font-size: 24px;
  margin-right: 15px;
}
ul.social li:last-of-type {
  margin-right: 0;
}
ul.social li a:hover,
ul.social li a:visited:hover {
  color: rgba(255, 255, 255, 0.7);
}
/*@media (min-width:@tablet-portrait) {
	#nav-panel ul.social {
		display: none;
	}
}*/
@media (min-width: 768px) {
  #site-header {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 14.93055556vw;
    padding-left: 6.94444444vw;
    padding-right: 6.94444444vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
  }
  #brand {
    flex-grow: 0;
    padding: 0;
  }
  #brand #menu-toggle {
    display: none;
  }
  #nav-panel {
    flex-grow: 1;
    max-height: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    animation: none;
    padding: 0;
    overflow: visible;
  }
  #nav-panel .menu-main-navigation-container {
    border-bottom: 0;
    width: 75.72815534%;
    flex-shrink: 0;
    flex-grow: 0;
  }
  #nav-panel .menu-main-navigation-container a,
  #nav-panel .menu-main-navigation-container a:visited,
  #nav-panel .menu-main-navigation-container i {
    color: #333333;
  }
  #nav-panel .menu-main-navigation-container > ul > li:last-of-type {
    margin-right: 1.73611111vw;
  }
  #nav-panel .menu-meta-navigation-container {
    flex-grow: 1;
  }
  #nav-panel .menu-meta-navigation-container > ul {
    border-right: solid 1px #fff;
    /*ul {
					a, a:visited, i, span {
						color: @grey;
					}
				}*/
  }
  #nav-panel .menu-meta-navigation-container > ul > li:last-of-type {
    margin-right: 0;
    padding-right: 0.69444444vw;
  }
  #nav-panel #searchform {
    width: 2.91262136%;
    overflow: visible;
    margin: 0;
    position: relative;
  }
  #nav-panel #searchform > div {
    position: absolute;
    overflow: hidden;
    justify-content: flex-end;
    bottom: 0;
    transform: translateY(50%);
    right: 0;
    margin: 0;
    background-color: transparent;
    height: 2.08333333vw;
    width: 1.38888889vw;
  }
  #nav-panel #searchform > div input,
  #nav-panel #searchform > div button[type="submit"] {
    height: 2.08333333vw;
    color: #fff;
    background-color: transparent;
  }
  #nav-panel #searchform.expanded > div {
    background-color: #fff;
    transition: transform 0.5s, width 0.5s, background-color 0.5s;
    transform: translateY(-100%);
    width: 17.36111111vw;
  }
  #nav-panel #searchform.expanded > div input,
  #nav-panel #searchform.expanded > div button[type="submit"] {
    color: #333333;
    background-color: #fff;
    transition: color 0.5s, background-color 0.5s;
    transition-delay: 0.5s;
    transition-timing-function: ease-in-out;
  }
  #nav-panel > div > ul {
    margin: 0;
    padding: 0;
    text-align: right;
  }
  #nav-panel > div > ul li {
    list-style: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  #nav-panel > div > ul > .menu-item-has-children > .sub-menu {
    position: absolute;
    top: 200%;
    right: 0;
    width: 14.86111111vw;
    padding: 1.11111111vw;
    border-left: 0 none;
    border-right: 0 none;
    -webkit-box-shadow: 0px 0px 18px 3px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 0px 18px 3px rgba(0, 0, 0, 0.4);
  }
  #nav-panel > div > ul > .menu-item-has-children > .sub-menu .menu-item-has-children {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  #nav-panel > div > ul > .menu-item-has-children > .sub-menu .menu-item-has-children.expanded {
    background-color: #e6e6e6;
  }
  #nav-panel > div > ul > .menu-item-has-children > .sub-menu .menu-item-has-children.expanded i {
    padding-left: 0.41666667vw;
  }
  #nav-panel > div > ul li {
    display: inline-block;
    margin-right: 0.69444444vw;
    line-height: 100%;
  }
  #nav-panel > div > ul li ul.sub-menu {
    border-left: solid 5px #e6e6e6;
    border-right: solid 5px #e6e6e6;
    display: block;
    z-index: 999;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: left;
    width: 100%;
    opacity: 0;
    background-color: #fff;
  }
  #nav-panel > div > ul li ul.sub-menu li {
    display: block;
    margin: 0;
    padding: 0;
    border-top: solid 1px #cccccc;
    text-transform: none;
    line-height: 120%;
  }
  #nav-panel > div > ul li ul.sub-menu li:first-of-type {
    border-top: none 0;
  }
  #nav-panel > div > ul li ul.sub-menu li a,
  #nav-panel > div > ul li ul.sub-menu li span {
    display: block;
    padding: 0.41666667vw;
    color: #000;
  }
  #nav-panel > div > ul li ul.sub-menu li a:hover {
    background-color: #cccccc;
  }
  #nav-panel > div > ul li.menu-item-has-children {
    position: relative;
  }
  #nav-panel > div > ul li.menu-item-has-children.expanded > .sub-menu {
    z-index: 1000;
    margin-bottom: 0.55555556vw;
    max-height: 150vh;
    opacity: 1;
  }
}
@media (min-width: 768px) {
  .tl-accent {
    position: relative;
  }
  .tl-accent:before,
  .tl-accent:after {
    background-color: #e6e6e6;
    width: 1.11111111vw;
    height: 6.94444444vw;
    position: absolute;
    display: block;
    content: '';
  }
  .tl-accent:after {
    height: 1.11111111vw;
    width: 6.94444444vw;
  }
}
.tl-accent:before,
.tl-accent:after {
  top: -1.38888889vw;
  left: -1.38888889vw;
}
@media (min-width: 768px) {
  .bl-accent {
    position: relative;
  }
  .bl-accent:before,
  .bl-accent:after {
    background-color: #e6e6e6;
    width: 1.11111111vw;
    height: 6.94444444vw;
    position: absolute;
    display: block;
    content: '';
  }
  .bl-accent:after {
    height: 1.11111111vw;
    width: 6.94444444vw;
  }
}
.bl-accent:before,
.bl-accent:after {
  bottom: -1.38888889vw;
  left: -1.38888889vw;
}
@media (min-width: 768px) {
  .tr-accent {
    position: relative;
  }
  .tr-accent:before,
  .tr-accent:after {
    background-color: #e6e6e6;
    width: 1.11111111vw;
    height: 6.94444444vw;
    position: absolute;
    display: block;
    content: '';
  }
  .tr-accent:after {
    height: 1.11111111vw;
    width: 6.94444444vw;
  }
}
.tr-accent:before,
.tr-accent:after {
  top: -1.38888889vw;
  right: -1.38888889vw;
}
@media (min-width: 768px) {
  .br-accent {
    position: relative;
  }
  .br-accent:before,
  .br-accent:after {
    background-color: #e6e6e6;
    width: 1.11111111vw;
    height: 6.94444444vw;
    position: absolute;
    display: block;
    content: '';
  }
  .br-accent:after {
    height: 1.11111111vw;
    width: 6.94444444vw;
  }
}
.br-accent:before,
.br-accent:after {
  bottom: -1.38888889vw;
  right: -1.38888889vw;
}
.swatch {
  display: none;
}
@media (min-width: 768px) {
  .swatch {
    display: block;
    z-index: -1;
    position: absolute;
    top: -14.93055556vw;
    width: 24.30555556vw;
    right: 0;
    bottom: 0;
    background-size: 200% 250%;
    animation: MoveBG 10s ease 0s infinite;
    background-color: #cccccc;
  }
}
#site-footer {
  background-color: #333333;
  color: #b3b3b3;
  margin-top: 7.14285714vw;
  padding-top: 16.66666667vw;
  padding-bottom: 16.66666667vw;
  padding-left: 7.14285714vw;
  padding-right: 7.14285714vw;
}
@media (min-width: 768px) {
  #site-footer {
    margin-top: 5.55555556vw;
  }
}
@media (min-width: 768px) {
  #site-footer {
    padding-top: 7.98611111vw;
  }
}
@media (min-width: 768px) {
  #site-footer {
    padding-bottom: 6.25vw;
  }
}
@media (min-width: 768px) {
  #site-footer {
    padding-left: 6.94444444vw;
  }
}
@media (min-width: 768px) {
  #site-footer {
    padding-right: 6.94444444vw;
  }
}
#site-footer p {
  margin-top: 5.95238095vw;
  margin-bottom: 5.95238095vw;
  font-size: 3.80952381vw;
}
@media (min-width: 768px) {
  #site-footer p {
    margin-top: 1.73611111vw;
  }
}
@media (min-width: 768px) {
  #site-footer p {
    margin-bottom: 1.73611111vw;
  }
}
@media (min-width: 768px) {
  #site-footer p {
    font-size: 1.11111111vw;
  }
}
#site-footer strong {
  color: #b3b3b3;
}
#site-footer a {
  color: #b3b3b3;
  text-decoration: underline;
}
#site-footer h5 {
  color: #fff;
  margin-top: 0;
}
#site-footer .social a {
  color: #fff;
}
#site-footer .logos {
  margin-top: 9.52380952vw;
  margin-bottom: 9.52380952vw;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.38095238vw;
}
@media (min-width: 768px) {
  #site-footer .logos {
    margin-top: 2.77777778vw;
  }
}
@media (min-width: 768px) {
  #site-footer .logos {
    margin-bottom: 2.77777778vw;
  }
}
@media (min-width: 768px) {
  #site-footer .logos {
    padding: 0.69444444vw;
  }
}
#site-footer .logos li {
  margin-bottom: 0;
  margin-left: 10px;
}
#site-footer .logos li:first-of-type {
  margin-left: 0;
}
#site-footer .logos img {
  display: block;
}
#site-footer .toes {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
#site-footer .toes > div {
  width: 45%;
  flex-shrink: 0;
  flex-grow: 0;
  margin-bottom: 7.14285714vw;
}
@media (min-width: 768px) {
  #site-footer .toes > div {
    margin-bottom: 2.08333333vw;
  }
}
#site-footer .toes p,
#site-footer .toes li {
  font-size: 3.33333333vw;
}
@media (min-width: 768px) {
  #site-footer .toes p,
  #site-footer .toes li {
    font-size: 1.04166667vw;
  }
}
#site-footer .toes h5 + p,
#site-footer .toes h5 + ul {
  margin-top: 3.57142857vw;
}
@media (min-width: 768px) {
  #site-footer .toes h5 + p,
  #site-footer .toes h5 + ul {
    margin-top: 1.04166667vw;
  }
}
@media screen and (min-width: 768px) {
  #site-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  #site-footer .footer-minutae {
    width: 27.77777778vw;
    flex-grow: 0;
    flex-shrink: 0;
  }
  #site-footer .social {
    margin-top: 4.86111111vw;
  }
  #site-footer .toes {
    width: 41.66666667vw;
    flex-grow: 0;
    flex-shrink: 0;
  }
  #site-footer .toes > div {
    width: 27.77777778%;
    margin-left: 5.55555556%;
  }
  #site-footer .toes li {
    margin-bottom: 0.41666667vw;
  }
  #site-footer .legal {
    width: 100%;
  }
}
.filtered-search label {
  font-weight: 300;
}
.filtered-search input[type="text"],
.filtered-search input[type="submit"],
.filtered-search select {
  height: 10.23809524vw;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 3.57142857vw;
  padding-right: 3.57142857vw;
}
@media (min-width: 768px) {
  .filtered-search input[type="text"],
  .filtered-search input[type="submit"],
  .filtered-search select {
    height: 2.98611111vw;
  }
}
@media (min-width: 768px) {
  .filtered-search input[type="text"],
  .filtered-search input[type="submit"],
  .filtered-search select {
    padding-left: 1.04166667vw;
  }
}
@media (min-width: 768px) {
  .filtered-search input[type="text"],
  .filtered-search input[type="submit"],
  .filtered-search select {
    padding-right: 1.04166667vw;
  }
}
.filtered-search input[type="text"],
.filtered-search select {
  font-size: 4.28571429vw;
}
@media (min-width: 768px) {
  .filtered-search input[type="text"],
  .filtered-search select {
    font-size: 1.25vw;
  }
}
.filtered-search select {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.filtered-search .search-head {
  margin-bottom: 7.14285714vw;
}
@media (min-width: 768px) {
  .filtered-search .search-head {
    margin-bottom: 3.47222222vw;
  }
}
.filtered-search .searchgroup {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.filtered-search .searchgroup input[name="s"] {
  font-family: 'Font Awesome 5 Free', 'Lato', Helvetica, Arial, sans-serif;
  margin: 0;
  flex-grow: 1;
}
.filtered-search .searchgroup input[type="submit"] {
  color: #333333;
  margin: 0;
  font-family: 'Font Awesome 5 Free', 'Lato', Helvetica, Arial, sans-serif;
}
.filtered-search .search-body .filters > h3,
.filtered-search .search-body .results > h3 {
  font-size: 5.23809524vw;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 4.76190476vw;
}
@media (min-width: 768px) {
  .filtered-search .search-body .filters > h3,
  .filtered-search .search-body .results > h3 {
    font-size: 1.94444444vw;
  }
}
@media (min-width: 768px) {
  .filtered-search .search-body .filters > h3,
  .filtered-search .search-body .results > h3 {
    margin-bottom: 1.38888889vw;
  }
}
.filtered-search .search-body .filters {
  margin-bottom: 11.9047619vw;
}
@media (min-width: 768px) {
  .filtered-search .search-body .filters {
    margin-bottom: 0vw;
  }
}
.filtered-search .search-body .filters h4 {
  font-size: 4.28571429vw;
  color: #333333;
  margin-bottom: 3.57142857vw;
  margin-top: 5.95238095vw;
}
@media (min-width: 768px) {
  .filtered-search .search-body .filters h4 {
    font-size: 1.45833333vw;
  }
}
@media (min-width: 768px) {
  .filtered-search .search-body .filters h4 {
    margin-bottom: 1.04166667vw;
  }
}
@media (min-width: 768px) {
  .filtered-search .search-body .filters h4 {
    margin-top: 1.73611111vw;
  }
}
.filtered-search .search-body .filters .accordion {
  background-color: #f3f3f3;
}
.filtered-search .search-body .filters .accordion h5 {
  font-size: 4.28571429vw;
  font-weight: normal;
  background-color: #808080;
  color: #fff;
  padding-top: 1.9047619vw;
  padding-right: 2.38095238vw;
  padding-bottom: 1.9047619vw;
  padding-left: 2.38095238vw;
}
@media (min-width: 768px) {
  .filtered-search .search-body .filters .accordion h5 {
    font-size: 1.25vw;
  }
}
@media (min-width: 768px) {
  .filtered-search .search-body .filters .accordion h5 {
    padding-top: 0.83333333vw;
  }
}
@media (min-width: 768px) {
  .filtered-search .search-body .filters .accordion h5 {
    padding-right: 1.04166667vw;
  }
}
@media (min-width: 768px) {
  .filtered-search .search-body .filters .accordion h5 {
    padding-bottom: 0.83333333vw;
  }
}
@media (min-width: 768px) {
  .filtered-search .search-body .filters .accordion h5 {
    padding-left: 1.04166667vw;
  }
}
.filtered-search .search-body .filters .accordion h5 i {
  float: right;
  transition: transform 0.5s ease 0s;
}
.filtered-search .search-body .filters .accordion h5.spun i {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.filtered-search .search-body .filters .accordion .chord {
  display: none;
  padding: 5.95238095vw;
}
@media (min-width: 768px) {
  .filtered-search .search-body .filters .accordion .chord {
    padding: 1.73611111vw;
  }
}
.filtered-search .search-body .filters .accordion .chord > div:first-child > h4 {
  margin-top: 0;
}
.filtered-search .search-body .filters .accordion .chord i {
  color: #808080;
  margin-right: 2.38095238vw;
}
@media (min-width: 768px) {
  .filtered-search .search-body .filters .accordion .chord i {
    margin-right: 0.69444444vw;
  }
}
.filtered-search .search-body .results .search-record {
  border: solid 2px #333333;
  margin-bottom: 7.14285714vw;
}
@media (min-width: 768px) {
  .filtered-search .search-body .results .search-record {
    margin-bottom: 2.08333333vw;
  }
}
.filtered-search .search-body .results .search-record .image {
  width: 100%;
  padding-bottom: 56%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border: solid 2px #fff;
  flex-shrink: 0;
}
.filtered-search .search-body .results .search-record .copy {
  flex-grow: 1;
  position: relative;
  padding-top: 5.95238095vw;
  padding-right: 7.14285714vw;
  padding-bottom: 5.95238095vw;
  padding-left: 7.14285714vw;
}
@media (min-width: 768px) {
  .filtered-search .search-body .results .search-record .copy {
    padding-top: 1.73611111vw;
  }
}
@media (min-width: 768px) {
  .filtered-search .search-body .results .search-record .copy {
    padding-right: 2.08333333vw;
  }
}
@media (min-width: 768px) {
  .filtered-search .search-body .results .search-record .copy {
    padding-bottom: 1.73611111vw;
  }
}
@media (min-width: 768px) {
  .filtered-search .search-body .results .search-record .copy {
    padding-left: 2.08333333vw;
  }
}
.filtered-search .search-body .results .search-record .copy .subhead {
  font-weight: 700;
  font-size: 4.28571429vw;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .filtered-search .search-body .results .search-record .copy .subhead {
    font-size: 1.25vw;
  }
}
.filtered-search .search-body .results .search-record .copy .subhead > *:last-of-type {
  text-align: right;
}
.filtered-search .search-body .results .search-record .copy h3 {
  margin-top: 3.57142857vw;
  margin-bottom: 3.57142857vw;
  font-size: 5.95238095vw;
  font-weight: 700;
}
@media (min-width: 768px) {
  .filtered-search .search-body .results .search-record .copy h3 {
    margin-top: 1.04166667vw;
  }
}
@media (min-width: 768px) {
  .filtered-search .search-body .results .search-record .copy h3 {
    margin-bottom: 1.04166667vw;
  }
}
@media (min-width: 768px) {
  .filtered-search .search-body .results .search-record .copy h3 {
    font-size: 1.94444444vw;
  }
}
.filtered-search .search-body .results .search-record .copy h4 {
  font-weight: 700;
  font-style: italic;
  font-size: 4.28571429vw;
  color: #333333;
}
@media (min-width: 768px) {
  .filtered-search .search-body .results .search-record .copy h4 {
    font-size: 1.25vw;
  }
}
.filtered-search .search-body .results .search-record .copy p {
  font-size: 3.80952381vw;
  margin-top: 3.57142857vw;
  margin-bottom: 3.57142857vw;
  line-height: 120%;
}
@media (min-width: 768px) {
  .filtered-search .search-body .results .search-record .copy p {
    font-size: 1.25vw;
  }
}
@media (min-width: 768px) {
  .filtered-search .search-body .results .search-record .copy p {
    margin-top: 1.04166667vw;
  }
}
@media (min-width: 768px) {
  .filtered-search .search-body .results .search-record .copy p {
    margin-bottom: 1.04166667vw;
  }
}
.filtered-search .search-body .results .search-record .copy .btn {
  background-color: #333333;
  margin-top: 3.57142857vw;
}
@media (min-width: 768px) {
  .filtered-search .search-body .results .search-record .copy .btn {
    margin-top: 0vw;
  }
}
.filtered-search .search-body .results .search-record .copy .btn.ghost {
  background-color: transparent;
  color: #333333;
}
.filtered-search .search-body .results .search-record .copy i {
  color: #808080;
  margin-right: 2.38095238vw;
}
@media (min-width: 768px) {
  .filtered-search .search-body .results .search-record .copy i {
    margin-right: 0.69444444vw;
  }
}
.filtered-search .search-body .results > h3:not(:first-child) {
  margin-top: 11.9047619vw;
}
@media (min-width: 768px) {
  .filtered-search .search-body .results > h3:not(:first-child) {
    margin-top: 4.16666667vw;
  }
}
.filtered-search .search-body .results p.initial {
  text-align: center;
  padding: 9.52380952vw;
  padding-left: 5.95238095vw;
  padding-right: 5.95238095vw;
  font-style: italic;
  font-size: 4.76190476vw;
  color: #808080;
  border: dashed 2px #e6e6e6;
}
@media (min-width: 768px) {
  .filtered-search .search-body .results p.initial {
    padding: 6.94444444vw;
  }
}
@media (min-width: 768px) {
  .filtered-search .search-body .results p.initial {
    padding-left: 10.41666667vw;
  }
}
@media (min-width: 768px) {
  .filtered-search .search-body .results p.initial {
    padding-right: 10.41666667vw;
  }
}
@media (min-width: 768px) {
  .filtered-search .search-body .results p.initial {
    font-size: 1.66666667vw;
  }
}
@media (min-width: 768px) {
  .filtered-search .search-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.04166667vw;
  }
  .filtered-search .search-head .left-ear p {
    margin: 0;
  }
  .filtered-search .search-head .right-ear {
    width: 50%;
  }
  .filtered-search .search-body {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .filtered-search .search-body .filters {
    flex-shrink: 0;
    flex-grow: 0;
    width: 30.64516129%;
    margin-right: 3.22580645%;
  }
  .filtered-search .search-body .results {
    flex-grow: 1;
  }
  .filtered-search .search-body .results .search-record {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
  .filtered-search .search-body .results .search-record .image {
    width: 24.3902439%;
    padding-bottom: 0;
  }
  .filtered-search .search-body .results .search-record .copy .btn {
    position: absolute;
    right: 2.08333333vw;
    bottom: 1.73611111vw;
    min-width: 12.15277778vw;
  }
  .filtered-search .search-body .results p.initial {
    text-align: center;
    padding: 6.94444444vw;
    padding-left: 10.41666667vw;
    padding-right: 10.41666667vw;
    font-style: italic;
    font-size: 1.66666667vw;
    color: #808080;
    border: dashed 2px #e6e6e6;
  }
}
.filtered-search.classes .search-body .filters .Subject .inputs {
  column-count: 2;
}
.filtered-search.classes .search-body .filters .overflow {
  max-height: 300px;
  overflow-y: auto;
  border: solid 1px #cccccc;
  padding: 2.38095238vw;
  margin-left: -2.38095238vw;
  margin-right: -2.38095238vw;
}
@media (min-width: 768px) {
  .filtered-search.classes .search-body .filters .overflow {
    padding: 0.69444444vw;
  }
}
@media (min-width: 768px) {
  .filtered-search.classes .search-body .filters .overflow {
    margin-left: -0.69444444vw;
  }
}
@media (min-width: 768px) {
  .filtered-search.classes .search-body .filters .overflow {
    margin-right: -0.69444444vw;
  }
}
.filtered-search.classes .search-body .filters .OtherCategoryName .overflow {
  display: none;
  margin-top: 2.38095238vw;
  margin-left: 7.14285714vw;
}
@media (min-width: 768px) {
  .filtered-search.classes .search-body .filters .OtherCategoryName .overflow {
    margin-top: 0.69444444vw;
  }
}
@media (min-width: 768px) {
  .filtered-search.classes .search-body .filters .OtherCategoryName .overflow {
    margin-left: 2.08333333vw;
  }
}
.filtered-search.classes .search-body .filters .OtherCategoryName .overflow .instr {
  margin: 0;
  margin-bottom: 1.19047619vw;
  font-style: italic;
}
@media (min-width: 768px) {
  .filtered-search.classes .search-body .filters .OtherCategoryName .overflow .instr {
    margin-bottom: 0.34722222vw;
  }
}
.filtered-search.classes .search-body .filters .OtherCategoryName .inputs {
  column-count: 2;
}
.filtered-search.classes .search-body .filters .AgeAddOn .inputs {
  column-count: 2;
}
.filtered-search.classes .search-body .filters fieldset {
  max-height: 100px;
  overflow-y: auto;
  border: solid 1px #cccccc;
  padding: 2.38095238vw;
  margin-right: -2.38095238vw;
}
.filtered-search.classes .search-body .filters fieldset:before,
.filtered-search.classes .search-body .filters fieldset:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.filtered-search.classes .search-body .filters fieldset:after {
  clear: both;
}
.filtered-search.classes .search-body .filters fieldset:before,
.filtered-search.classes .search-body .filters fieldset:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.filtered-search.classes .search-body .filters fieldset:after {
  clear: both;
}
@media (min-width: 768px) {
  .filtered-search.classes .search-body .filters fieldset {
    padding: 0.69444444vw;
  }
}
@media (min-width: 768px) {
  .filtered-search.classes .search-body .filters fieldset {
    margin-right: -0.69444444vw;
  }
}
.filtered-search.classes .search-body .results h3 a {
  text-decoration: none;
  font-size: 3.80952381vw;
}
@media (min-width: 768px) {
  .filtered-search.classes .search-body .results h3 a {
    font-size: 1.25vw;
  }
}
.filtered-search.classes .search-body .results .search-record.skills-beginner,
.filtered-search.classes .search-body .results .search-record.skills-all-levels,
.filtered-search.classes .search-body .results .search-record.skills-beg-int {
  border-color: #128b75;
}
.filtered-search.classes .search-body .results .search-record.skills-beginner .skills i,
.filtered-search.classes .search-body .results .search-record.skills-all-levels .skills i,
.filtered-search.classes .search-body .results .search-record.skills-beg-int .skills i {
  color: #128b75;
}
.filtered-search.classes .search-body .results .search-record.skills-intermediate,
.filtered-search.classes .search-body .results .search-record.skills-int-adv {
  border-color: #cd9b2a;
}
.filtered-search.classes .search-body .results .search-record.skills-intermediate .skills i,
.filtered-search.classes .search-body .results .search-record.skills-int-adv .skills i {
  color: #cd9b2a;
}
.filtered-search.classes .search-body .results .search-record.skills-advanced {
  border-color: #c82c26;
}
.filtered-search.classes .search-body .results .search-record.skills-advanced .skills i {
  color: #c82c26;
}
.filtered-search.classes .search-body .results .search-record .copy p,
.filtered-search.classes .search-body .results .search-record .copy .classtime,
.filtered-search.classes .search-body .results .search-record .copy .skillage {
  font-size: 3.80952381vw;
  margin-top: 3.57142857vw;
  margin-bottom: 3.57142857vw;
  line-height: 120%;
}
@media (min-width: 768px) {
  .filtered-search.classes .search-body .results .search-record .copy p,
  .filtered-search.classes .search-body .results .search-record .copy .classtime,
  .filtered-search.classes .search-body .results .search-record .copy .skillage {
    font-size: 1.25vw;
  }
}
@media (min-width: 768px) {
  .filtered-search.classes .search-body .results .search-record .copy p,
  .filtered-search.classes .search-body .results .search-record .copy .classtime,
  .filtered-search.classes .search-body .results .search-record .copy .skillage {
    margin-top: 1.04166667vw;
  }
}
@media (min-width: 768px) {
  .filtered-search.classes .search-body .results .search-record .copy p,
  .filtered-search.classes .search-body .results .search-record .copy .classtime,
  .filtered-search.classes .search-body .results .search-record .copy .skillage {
    margin-bottom: 1.04166667vw;
  }
}
.filtered-search.classes .search-body .results .search-record .copy .classtime,
.filtered-search.classes .search-body .results .search-record .copy .skillage {
  font-weight: 700;
  max-width: 70%;
}
.filtered-search.classes .search-body .results .search-record .copy .skillage {
  margin-bottom: 0;
}
.filtered-search.classes .search-body .results .search-record .copy .skillage .skills {
  margin-right: 3.57142857vw;
}
@media (min-width: 768px) {
  .filtered-search.classes .search-body .results .search-record .copy .skillage .skills {
    margin-right: 1.04166667vw;
  }
}
.filtered-search.calendar .search-body .filters .EventType:not(.activefilter),
.filtered-search.calendar .search-body .filters .DateRange:not(.activefilter) {
  opacity: 0.4;
}
.filtered-search.calendar .search-body .filters .EventType label {
  display: inline-block;
  text-transform: uppercase;
}
.filtered-search.calendar .search-body .filters .EventType label + .filtered-search.calendar .search-body .filters .EventType label {
  margin-left: 2.38095238vw;
}
@media (min-width: 768px) {
  .filtered-search.calendar .search-body .filters .EventType label + .filtered-search.calendar .search-body .filters .EventType label {
    margin-left: 1.04166667vw;
  }
}
.filtered-search.calendar .search-body .filters .EventType label input {
  display: none;
}
.filtered-search.calendar .search-body .filters .EventType label span {
  border: solid 1px;
  border-color: #333333;
  padding: 1.19047619vw;
  padding-left: 3.57142857vw;
  padding-right: 3.57142857vw;
  display: inline-block;
  cursor: pointer;
}
@media (min-width: 768px) {
  .filtered-search.calendar .search-body .filters .EventType label span {
    padding: 0.34722222vw;
  }
}
@media (min-width: 768px) {
  .filtered-search.calendar .search-body .filters .EventType label span {
    padding-left: 1.04166667vw;
  }
}
@media (min-width: 768px) {
  .filtered-search.calendar .search-body .filters .EventType label span {
    padding-right: 1.04166667vw;
  }
}
.filtered-search.calendar .search-body .filters .EventType label :checked + span {
  background-color: transparent;
}
.filtered-search.calendar .search-body .filters .EventType label input[value="exhibition"] + span {
  border-color: #4688a2;
  color: #4688a2;
}
.filtered-search.calendar .search-body .filters .EventType label input[value="exhibition"]:checked + span {
  background-color: #4688a2;
  color: #fff;
}
.filtered-search.calendar .search-body .filters .EventType label input[value="event"] + span {
  border-color: #c82c26;
  color: #c82c26;
}
.filtered-search.calendar .search-body .filters .EventType label input[value="event"]:checked + span {
  background-color: #c82c26;
  color: #fff;
}
.filtered-search.calendar .search-body .filters .Or {
  position: relative;
  height: 1px;
  margin: 2em 0 1em;
}
.filtered-search.calendar .search-body .filters .Or h4 {
  position: absolute;
  width: 100%;
  top: 0;
  transform: translateY(-50%);
  margin: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 0.5em;
}
.filtered-search.calendar .search-body .filters .Or h4:before,
.filtered-search.calendar .search-body .filters .Or h4:after {
  content: '';
  height: 1px;
  background: #333333;
  display: inline-block;
  flex-grow: 1;
}
.filtered-search.calendar .search-body .filters .DateRange #date_range {
  width: 100%;
}
.filtered-search.calendar .search-body .filters .DateRange .Wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: solid 1px #cccccc;
}
.filtered-search.calendar .search-body .filters .DateRange .Wrap input {
  flex-shrink: 1;
  width: 42%;
  margin: 0;
  border: none 0;
}
.filtered-search.calendar .search-body .filters .DateRange .Wrap span {
  width: 6%;
}
.filtered-search.calendar .search-body .filters .DateRange .Wrap i {
  width: 10%;
}
.filtered-search.calendar .search-body .results .day-header ul {
  margin-bottom: 0;
}
.filtered-search.calendar .search-body .results .day-header li {
  overflow: visible;
  position: relative;
  padding-left: 9%;
  margin-bottom: 2.38095238vw;
  line-height: 130%;
}
@media (min-width: 768px) {
  .filtered-search.calendar .search-body .results .day-header li {
    margin-bottom: 0.69444444vw;
  }
}
.filtered-search.calendar .search-body .results .day-header li i {
  position: absolute;
  top: 0;
  left: 0;
  width: 9%;
  line-height: 130%;
}
.filtered-search.calendar .search-body .results .day-header i {
  color: #c82c26;
  margin-right: 2.38095238vw;
}
@media (min-width: 768px) {
  .filtered-search.calendar .search-body .results .day-header i {
    margin-right: 0.69444444vw;
  }
}
.filtered-search.calendar .search-body .results .search-record.type-event {
  border-color: #c82c26;
}
.filtered-search.calendar .search-body .results .search-record.type-exhibition {
  border-color: #4688a2;
}
.filtered-search.calendar .search-body .results .day-header + .search-record {
  margin-top: 4.76190476vw;
}
@media (min-width: 768px) {
  .filtered-search.calendar .search-body .results .day-header + .search-record {
    margin-top: 1.38888889vw;
  }
}
@media (min-width: 768px) {
  .filtered-search.calendar .search-body .results .day-header {
    column-count: 2;
  }
  .filtered-search.calendar .search-body .results .search-record .copy h3 {
    margin-bottom: 2.77777778vw;
  }
}
.tabs {
  overflow: hidden;
}
.tabs a {
  border-bottom: solid 2px #e6e6e6;
  display: inline-block;
  padding: 2.38095238vw;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 768px) {
  .tabs a {
    padding: 0.69444444vw;
  }
}
.tabs a:hover,
.tabs a.active {
  color: #000;
  border-bottom-color: #c82c26;
}
.tabcontent {
  display: none;
  margin-top: 3.57142857vw;
}
@media (min-width: 768px) {
  .tabcontent {
    margin-top: 1.04166667vw;
  }
}
table.display {
  margin-top: 7.14285714vw;
  margin-bottom: 7.14285714vw;
  table-layout: auto;
  width: 100%;
}
@media (min-width: 768px) {
  table.display {
    margin-top: 2.08333333vw;
  }
}
@media (min-width: 768px) {
  table.display {
    margin-bottom: 2.08333333vw;
  }
}
table.display td,
table.display th {
  padding: 2.38095238vw;
}
@media (min-width: 768px) {
  table.display td,
  table.display th {
    padding: 1.38888889vw;
  }
}
table.display thead {
  background-color: #f3f3f3;
}
table.display thead th {
  text-align: left;
  padding-left: 2.38095238vw;
  padding-right: 2.38095238vw;
}
@media (min-width: 768px) {
  table.display thead th {
    padding-left: 1.38888889vw;
  }
}
@media (min-width: 768px) {
  table.display thead th {
    padding-right: 1.38888889vw;
  }
}
table.display tbody tr {
  border-top: solid 1px #cccccc;
}
.tablewrap {
  max-width: 100%;
  overflow-x: auto;
}
.deckwrapper {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 0vw;
  padding-right: 0vw;
  margin-left: -4.76190476vw;
  margin-right: -4.76190476vw;
}
@media (min-width: 768px) {
  .deckwrapper {
    padding-left: 6.94444444vw;
  }
}
@media (min-width: 768px) {
  .deckwrapper {
    padding-right: 6.94444444vw;
  }
}
@media (min-width: 768px) {
  .deckwrapper {
    margin-left: -6.94444444vw;
  }
}
@media (min-width: 768px) {
  .deckwrapper {
    margin-right: -6.94444444vw;
  }
}
.deckwrapper .ctrls {
  display: none;
}
.deckwrapper:before,
.deckwrapper:after {
  pointer-events: none;
  content: '';
  position: absolute;
  display: none;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 14.28571429vw;
  z-index: 9;
}
.deckwrapper:before {
  left: 0;
  background-image: -webkit-linear-gradient(0deg, #fff, rgba(255, 255, 255, 0));
  background-image: -moz-linear-gradient(0deg, #fff, rgba(255, 255, 255, 0));
  background-image: -ms-linear-gradient(0deg, #fff, rgba(255, 255, 255, 0));
  background-image: -o-linear-gradient(0deg, #fff, rgba(255, 255, 255, 0));
  background-image: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}
.deckwrapper:after {
  right: 0;
  background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0), #fff);
  background-image: -moz-linear-gradient(0deg, rgba(255, 255, 255, 0), #fff);
  background-image: -ms-linear-gradient(0deg, rgba(255, 255, 255, 0), #fff);
  background-image: -o-linear-gradient(0deg, rgba(255, 255, 255, 0), #fff);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff);
}
.deckwrapper ul.deck {
  list-style: none;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  gap: 4.76190476vw;
  margin-bottom: 9.52380952vw;
  padding-left: 14.28571429vw;
  padding-right: 14.28571429vw;
  overflow-x: auto;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
@media (min-width: 768px) {
  .deckwrapper ul.deck {
    gap: 1.38888889vw;
  }
}
@media (min-width: 768px) {
  .deckwrapper ul.deck {
    margin-bottom: 4.16666667vw;
  }
}
.deckwrapper ul.deck::-webkit-scrollbar {
  display: none;
}
.deckwrapper ul.deck li {
  flex-shrink: 0;
  flex-grow: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 0;
  margin-bottom: 0;
  background-color: #f3f3f3;
  width: 71.42857143vw;
}
@media (min-width: 768px) {
  .deckwrapper ul.deck li {
    width: 27.77777778vw;
  }
}
.deckwrapper ul.deck li .image {
  position: relative;
  padding-bottom: 56%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.deckwrapper ul.deck li .image .tag {
  position: absolute;
  right: 0;
  bottom: 7.14285714vw;
  display: inline-block;
  min-width: 1px;
  padding: 1.9047619vw;
  color: #fff;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .deckwrapper ul.deck li .image .tag {
    bottom: 2.08333333vw;
  }
}
@media (min-width: 768px) {
  .deckwrapper ul.deck li .image .tag {
    padding: 0.55555556vw;
  }
}
.deckwrapper ul.deck li .copy {
  padding: 4.76190476vw;
  padding-top: 7.14285714vw;
  padding-bottom: 7.14285714vw;
  border-top: solid 10px #fff;
}
@media (min-width: 768px) {
  .deckwrapper ul.deck li .copy {
    padding: 1.38888889vw;
  }
}
@media (min-width: 768px) {
  .deckwrapper ul.deck li .copy {
    padding-top: 2.08333333vw;
  }
}
@media (min-width: 768px) {
  .deckwrapper ul.deck li .copy {
    padding-bottom: 2.08333333vw;
  }
}
.deckwrapper ul.deck li .copy h4 {
  margin-top: 0;
  font-weight: 700;
  color: #333333;
}
.deckwrapper ul.deck li .copy .subtitle {
  color: #808080;
  font-weight: 700;
  margin-top: 4.76190476vw;
}
@media (min-width: 768px) {
  .deckwrapper ul.deck li .copy .subtitle {
    margin-top: 1.38888889vw;
  }
}
.deckwrapper ul.deck li .copy .subtitle + p {
  margin-top: 0;
}
.deckwrapper ul.deck li .copy p {
  line-height: 110%;
  font-size: 3.80952381vw;
}
@media (min-width: 768px) {
  .deckwrapper ul.deck li .copy p {
    font-size: 1.11111111vw;
  }
}
@media (min-width: 768px) {
  .deckwrapper:before,
  .deckwrapper:after {
    display: none;
  }
  .deckwrapper ul.deck {
    padding: 0;
  }
  .deckwrapper ul.deck li.card {
    width: 32%;
  }
  .deckwrapper ul.deck li.card + .deckwrapper ul.deck li.card {
    margin-left: 2%;
  }
  .deckwrapper .ctrls {
    display: block;
    color: #f3f3f3;
  }
  .deckwrapper .prev,
  .deckwrapper .next {
    position: absolute;
    width: 2.77777778vw;
    font-size: 3.61111111vw;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    cursor: pointer;
  }
  .deckwrapper .prev {
    left: 2.77777778vw;
  }
  .deckwrapper .next {
    right: 2.77777778vw;
  }
}
.pagination {
  text-align: center;
  clear: both;
  padding: 30px 0;
  position: relative;
}
.pagination span,
.pagination a {
  display: inline-block;
  margin: 0 4px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 1.4em;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #e6e6e6;
}
.pagination a:hover {
  color: #fff;
  background: #cccccc;
}
.pagination .current {
  background: #cccccc;
  color: #fff;
}
form {
  margin-bottom: 0;
}
.nf-form-fields-required {
  display: none;
}
.panel-form .nf-form-content {
  padding: 0;
  max-width: none;
}
.panel-form .nf-form-content .listradio-wrap .nf-field-element label:after,
.panel-form .nf-form-content .list-select-wrap .nf-field-element > div,
.panel-form .nf-form-content input:not([type=button]),
.panel-form .nf-form-content textarea {
  background: #fcfcfc;
}
.panel-form .nf-form-content label {
  font-size: 3.57142857vw;
}
@media (min-width: 768px) {
  .panel-form .nf-form-content label {
    font-size: 1.25vw;
  }
}
.panel-form .nf-breadcrumbs li a {
  font-size: 10px;
  margin-right: 6px;
  padding: 3px 8px;
}
@media (min-width: 768px) {
  .panel-form .nf-breadcrumbs li a {
    font-size: 1.11111111vw;
    margin-right: 0.69444444vw;
    padding: 0.69444444vw;
  }
}
@media (min-width: 1200px) {
  .panel-form .nf-breadcrumbs li a {
    font-size: 15px;
    margin-right: 8px;
    padding: 8px 10px;
  }
}
section.panel-bg {
  padding-top: 4.76190476vw;
  padding-bottom: 4.76190476vw;
}
@media (min-width: 768px) {
  section.panel-bg {
    padding-top: 2.77777778vw;
  }
}
@media (min-width: 768px) {
  section.panel-bg {
    padding-bottom: 4.16666667vw;
  }
}
.panel-hero.panel-hero-empty {
  padding-bottom: 0;
  padding-top: 0;
}
.panel-hero.panel-hero-empty .social {
  display: none;
}
.panel-hero {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 16.66666667vw;
  padding-left: 7.14285714vw;
  padding-right: 7.14285714vw;
}
.panel-hero .herofooter {
  display: none;
}
@media (min-width: 768px) {
  .panel-hero {
    padding-top: 0vw;
  }
}
@media (min-width: 768px) {
  .panel-hero {
    padding-left: 6.94444444vw;
  }
}
@media (min-width: 768px) {
  .panel-hero {
    padding-right: 6.94444444vw;
  }
}
.panel-hero .image {
  width: 100vw;
  position: relative;
  margin-left: -7.14285714vw;
  margin-right: -7.14285714vw;
  margin-top: 7.14285714vw;
}
.panel-hero .image img {
  display: block;
}
.panel-hero .breadcrumb {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  height: 12.38095238vw;
  padding-left: 7.14285714vw;
  padding-right: 7.14285714vw;
  line-height: 12.38095238vw;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 4.28571429vw;
  min-width: 35.71428571vw;
  display: inline-block;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
@media (min-width: 768px) {
  .panel-hero .breadcrumb {
    height: 3.61111111vw;
  }
}
@media (min-width: 768px) {
  .panel-hero .breadcrumb {
    padding-left: 6.94444444vw;
  }
}
@media (min-width: 768px) {
  .panel-hero .breadcrumb {
    padding-right: 2.08333333vw;
  }
}
@media (min-width: 768px) {
  .panel-hero .breadcrumb {
    line-height: 3.61111111vw;
  }
}
@media (min-width: 768px) {
  .panel-hero .breadcrumb {
    font-size: 1.25vw;
  }
}
@media (min-width: 768px) {
  .panel-hero .breadcrumb {
    min-width: 14.58333333vw;
  }
}
.panel-hero .breadcrumb a {
  text-decoration: none;
}
.panel-hero .breadcrumb a:hover {
  color: inherit;
  text-decoration: underline;
}
.panel-hero .copy .metatitle {
  margin-top: 11.42857143vw;
  font-size: 4.28571429vw;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .panel-hero .copy .metatitle {
    margin-top: 6.94444444vw;
  }
}
@media (min-width: 768px) {
  .panel-hero .copy .metatitle {
    font-size: 1.25vw;
  }
}
.panel-hero .copy h1 {
  margin-top: 11.42857143vw;
}
@media (min-width: 768px) {
  .panel-hero .copy h1 {
    margin-top: 6.94444444vw;
  }
}
.panel-hero .copy .metatitle + h1 {
  margin-top: 1.42857143vw;
}
@media (min-width: 768px) {
  .panel-hero .copy .metatitle + h1 {
    margin-top: 0.69444444vw;
  }
}
.panel-hero .copy p {
  font-size: 4.28571429vw;
}
@media (min-width: 768px) {
  .panel-hero .copy p {
    font-size: 1.25vw;
  }
}
.panel-hero .copy .subtitle {
  font-size: 4.28571429vw;
  font-style: italic;
}
@media (min-width: 768px) {
  .panel-hero .copy .subtitle {
    font-size: 1.25vw;
  }
}
.panel-hero .hours {
  margin-top: 9.52380952vw;
  color: #128b75;
  font-weight: 700;
  font-size: 4.28571429vw;
}
@media (min-width: 768px) {
  .panel-hero .hours {
    margin-top: 0vw;
  }
}
@media (min-width: 768px) {
  .panel-hero .hours {
    font-size: 1.11111111vw;
  }
}
.panel-hero .hours i {
  font-size: 150%;
  margin-right: 10px;
  vertical-align: middle;
}
.panel-hero.image-full .image {
  padding-bottom: 36%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.panel-hero.image-full .buttongroup {
  background-color: #808080;
  text-align: center;
  padding: 4.76190476vw;
}
@media (min-width: 768px) {
  .panel-hero.image-full .buttongroup {
    padding: 0vw;
  }
}
@media (min-width: 768px) {
  .panel-hero {
    flex-direction: row-reverse;
    padding-bottom: 8.68055556vw;
  }
  .panel-hero .image {
    width: 49.65277778vw;
    margin: 0;
  }
  .panel-hero .image img:not(.video-play-overlay) {
    width: 100%;
  }
  .panel-hero .image .video-container {
    width: 100%;
  }
  .panel-hero .copy {
    width: 30.55555556vw;
  }
  .panel-hero .copy h1 {
    margin-top: 6.94444444vw;
  }
  .panel-hero .herofooter {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 2.77777778vw;
    padding-left: 6.94444444vw;
    padding-right: 6.94444444vw;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    left: 0;
  }
  .panel-hero .herofooter .hours {
    order: 2;
  }
  .panel-hero .herofooter ul.social {
    order: 1;
  }
  .panel-hero.image-full {
    display: block;
  }
  .panel-hero.image-full .image {
    width: 100%;
  }
  .panel-hero.image-full .copy {
    position: absolute;
    bottom: 8.68055556vw;
    left: 6.94444444vw;
    background-color: rgba(51, 51, 51, 0.9);
    color: #fff;
    padding: 2.77777778vw;
    width: 43.05555556vw;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .panel-hero.image-full .copy strong {
    color: #fff;
  }
  .panel-hero.image-full .copy a:hover,
  .panel-hero.image-full .copy a:visited:hover {
    color: #fff;
    text-decoration: none;
  }
  .panel-hero.image-full .copy > *:first-child {
    margin-top: 0;
  }
  .panel-hero.image-full .copy .copytext > *:last-child {
    margin-bottom: 0;
  }
  .panel-hero.image-full .copy .buttongroup {
    background-color: transparent;
    position: absolute;
    right: -38.88888889vw;
    bottom: 2.77777778vw;
  }
}
.panel-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 0;
}
.panel-block .image {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.panel-block .image img {
  display: block;
}
.panel-block .image.second-image img:not(.second) {
  width: 100%;
}
.panel-block .image.second-image img.second {
  width: 35.71428571vw;
  position: absolute;
  z-index: 99;
  border: solid #fff 5px;
}
@media (min-width: 768px) {
  .panel-block .image.second-image img.second {
    width: 16.66666667vw;
  }
}
.panel-block .image.second-image.second-bl {
  padding-bottom: 17.85714286vw;
  padding-left: 7.61904762vw;
}
@media (min-width: 768px) {
  .panel-block .image.second-image.second-bl {
    padding-bottom: 8.33333333vw;
  }
}
@media (min-width: 768px) {
  .panel-block .image.second-image.second-bl {
    padding-left: 3.125vw;
  }
}
.panel-block .image.second-image.second-bl img.second {
  bottom: -5px;
  left: -5px;
}
.panel-block .copy .metatitle {
  font-size: 4.28571429vw;
  font-weight: 700;
}
@media (min-width: 768px) {
  .panel-block .copy .metatitle {
    font-size: 1.25vw;
  }
}
.panel-block .copy .metatitle + h2 {
  margin-top: 1.42857143vw;
}
@media (min-width: 768px) {
  .panel-block .copy .metatitle + h2 {
    margin-top: 0.69444444vw;
  }
}
.panel-block .copy p {
  font-size: 4.28571429vw;
}
@media (min-width: 768px) {
  .panel-block .copy p {
    font-size: 1.25vw;
  }
}
.panel-block .copy .subtitle {
  font-size: 4.28571429vw;
  font-style: italic;
}
@media (min-width: 768px) {
  .panel-block .copy .subtitle {
    font-size: 1.25vw;
  }
}
.panel-block.col-placement-txt .copy {
  color: #fff;
  padding: 4.76190476vw;
  padding-top: 0;
  padding-bottom: 9.52380952vw;
}
@media (min-width: 768px) {
  .panel-block.col-placement-txt .copy {
    padding: 4.16666667vw;
  }
}
.panel-block.full {
  margin-left: -4.76190476vw;
  margin-right: -4.76190476vw;
}
@media (min-width: 768px) {
  .panel-block.full {
    margin-left: 0vw;
  }
}
@media (min-width: 768px) {
  .panel-block.full {
    margin-right: 0vw;
  }
}
@media (min-width: 768px) {
  .panel-block {
    position: relative;
    flex-direction: row-reverse;
    align-items: stretch;
  }
  .panel-block .image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .panel-block .image.w-33 {
    width: 33%;
  }
  .panel-block .image.w-50 {
    width: 50%;
  }
  .panel-block .image.w-58 {
    width: 58%;
  }
  .panel-block .image img:not(.video-play-overlay), .panel-block .image picture {
    width: 100%;
  }
  .panel-block .image .video-container {
    width: 100%;
  }
  .panel-block .copy {
    margin-top: 0;
    flex-grow: 1;
  }
  .panel-block .copy h2:first-child,
  .panel-block .copy .metatitle:first-child {
    margin-top: 0;
  }
  .panel-block.col-placement-img {
    align-items: center;
    padding-top: 4.86111111vw;
    padding-bottom: 4.86111111vw;
  }
  .panel-block.col-placement-img .swatch {
    top: 0;
    width: 34.72222222vw;
  }
  .panel-block.col-placement-img .image {
    margin-left: 4.86111111vw;
  }
  .panel-block.img-placement-left {
    flex-direction: row;
  }
  .panel-block.col-placement-img.img-placement-left .swatch {
    left: 0;
    right: auto;
  }
  .panel-block.col-placement-img.img-placement-left .image {
    margin-right: 4.86111111vw;
    margin-left: 0;
  }
  .panel-block:not(.full).col-placement-img.tl .image:before,
  .panel-block:not(.full).col-placement-img.tl .image:after {
    top: -1.38888889vw;
    left: -1.38888889vw;
  }
  .panel-block:not(.full).col-placement-img.tl .image:before,
  .panel-block:not(.full).col-placement-img.tl .image:after {
    top: -1.38888889vw;
    left: -1.38888889vw;
  }
  .panel-block:not(.full).col-placement-img.tr .image:before,
  .panel-block:not(.full).col-placement-img.tr .image:after {
    top: -1.38888889vw;
    right: -1.38888889vw;
  }
  .panel-block:not(.full).col-placement-img.tr .image:before,
  .panel-block:not(.full).col-placement-img.tr .image:after {
    top: -1.38888889vw;
    right: -1.38888889vw;
  }
  .panel-block:not(.full).col-placement-img.bl .image:before,
  .panel-block:not(.full).col-placement-img.bl .image:after {
    bottom: -1.38888889vw;
    left: -1.38888889vw;
  }
  .panel-block:not(.full).col-placement-img.bl .image:before,
  .panel-block:not(.full).col-placement-img.bl .image:after {
    bottom: -1.38888889vw;
    left: -1.38888889vw;
  }
  .panel-block:not(.full).col-placement-img.br .image:before,
  .panel-block:not(.full).col-placement-img.br .image:after {
    bottom: -1.38888889vw;
    right: -1.38888889vw;
  }
  .panel-block:not(.full).col-placement-img.br .image:before,
  .panel-block:not(.full).col-placement-img.br .image:after {
    bottom: -1.38888889vw;
    right: -1.38888889vw;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-right.tl .copy:before,
  .panel-block:not(.full).col-placement-txt.img-placement-right.tl .copy:after {
    top: -1.38888889vw;
    left: -1.38888889vw;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-right.tl .copy:before,
  .panel-block:not(.full).col-placement-txt.img-placement-right.tl .copy:after {
    top: -1.38888889vw;
    left: -1.38888889vw;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-right.tr .image:before,
  .panel-block:not(.full).col-placement-txt.img-placement-right.tr .image:after {
    top: -1.38888889vw;
    right: -1.38888889vw;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-right.tr .image:before,
  .panel-block:not(.full).col-placement-txt.img-placement-right.tr .image:after {
    top: -1.38888889vw;
    right: -1.38888889vw;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-right.bl .copy:before,
  .panel-block:not(.full).col-placement-txt.img-placement-right.bl .copy:after {
    bottom: -1.38888889vw;
    left: -1.38888889vw;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-right.bl .copy:before,
  .panel-block:not(.full).col-placement-txt.img-placement-right.bl .copy:after {
    bottom: -1.38888889vw;
    left: -1.38888889vw;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-right.br .image:before,
  .panel-block:not(.full).col-placement-txt.img-placement-right.br .image:after {
    bottom: -1.38888889vw;
    right: -1.38888889vw;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-right.br .image:before,
  .panel-block:not(.full).col-placement-txt.img-placement-right.br .image:after {
    bottom: -1.38888889vw;
    right: -1.38888889vw;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-left.tl .image:before,
  .panel-block:not(.full).col-placement-txt.img-placement-left.tl .image:after {
    top: -1.38888889vw;
    left: -1.38888889vw;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-left.tl .image:before,
  .panel-block:not(.full).col-placement-txt.img-placement-left.tl .image:after {
    top: -1.38888889vw;
    left: -1.38888889vw;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-left.tr .copy:before,
  .panel-block:not(.full).col-placement-txt.img-placement-left.tr .copy:after {
    top: -1.38888889vw;
    right: -1.38888889vw;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-left.tr .copy:before,
  .panel-block:not(.full).col-placement-txt.img-placement-left.tr .copy:after {
    top: -1.38888889vw;
    right: -1.38888889vw;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-left.bl .image:before,
  .panel-block:not(.full).col-placement-txt.img-placement-left.bl .image:after {
    bottom: -1.38888889vw;
    left: -1.38888889vw;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-left.bl .image:before,
  .panel-block:not(.full).col-placement-txt.img-placement-left.bl .image:after {
    bottom: -1.38888889vw;
    left: -1.38888889vw;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-left.br .copy:before,
  .panel-block:not(.full).col-placement-txt.img-placement-left.br .copy:after {
    bottom: -1.38888889vw;
    right: -1.38888889vw;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-left.br .copy:before,
  .panel-block:not(.full).col-placement-txt.img-placement-left.br .copy:after {
    bottom: -1.38888889vw;
    right: -1.38888889vw;
  }
  .panel-block.full {
    padding-left: 0;
    padding-right: 0;
  }
  .panel-block.full .copy:only-child {
    padding-left: 6.94444444vw;
    padding-right: 6.94444444vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .panel-block:not(.full).col-placement-img.tl .image {
    position: relative;
  }
  .panel-block:not(.full).col-placement-img.tl .image:before,
  .panel-block:not(.full).col-placement-img.tl .image:after {
    background-color: #e6e6e6;
    width: 1.11111111vw;
    height: 6.94444444vw;
    position: absolute;
    display: block;
    content: '';
  }
  .panel-block:not(.full).col-placement-img.tl .image:after {
    height: 1.11111111vw;
    width: 6.94444444vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .panel-block:not(.full).col-placement-img.tl .image {
    position: relative;
  }
  .panel-block:not(.full).col-placement-img.tl .image:before,
  .panel-block:not(.full).col-placement-img.tl .image:after {
    background-color: #e6e6e6;
    width: 1.11111111vw;
    height: 6.94444444vw;
    position: absolute;
    display: block;
    content: '';
  }
  .panel-block:not(.full).col-placement-img.tl .image:after {
    height: 1.11111111vw;
    width: 6.94444444vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .panel-block:not(.full).col-placement-img.tr .image {
    position: relative;
  }
  .panel-block:not(.full).col-placement-img.tr .image:before,
  .panel-block:not(.full).col-placement-img.tr .image:after {
    background-color: #e6e6e6;
    width: 1.11111111vw;
    height: 6.94444444vw;
    position: absolute;
    display: block;
    content: '';
  }
  .panel-block:not(.full).col-placement-img.tr .image:after {
    height: 1.11111111vw;
    width: 6.94444444vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .panel-block:not(.full).col-placement-img.tr .image {
    position: relative;
  }
  .panel-block:not(.full).col-placement-img.tr .image:before,
  .panel-block:not(.full).col-placement-img.tr .image:after {
    background-color: #e6e6e6;
    width: 1.11111111vw;
    height: 6.94444444vw;
    position: absolute;
    display: block;
    content: '';
  }
  .panel-block:not(.full).col-placement-img.tr .image:after {
    height: 1.11111111vw;
    width: 6.94444444vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .panel-block:not(.full).col-placement-img.bl .image {
    position: relative;
  }
  .panel-block:not(.full).col-placement-img.bl .image:before,
  .panel-block:not(.full).col-placement-img.bl .image:after {
    background-color: #e6e6e6;
    width: 1.11111111vw;
    height: 6.94444444vw;
    position: absolute;
    display: block;
    content: '';
  }
  .panel-block:not(.full).col-placement-img.bl .image:after {
    height: 1.11111111vw;
    width: 6.94444444vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .panel-block:not(.full).col-placement-img.bl .image {
    position: relative;
  }
  .panel-block:not(.full).col-placement-img.bl .image:before,
  .panel-block:not(.full).col-placement-img.bl .image:after {
    background-color: #e6e6e6;
    width: 1.11111111vw;
    height: 6.94444444vw;
    position: absolute;
    display: block;
    content: '';
  }
  .panel-block:not(.full).col-placement-img.bl .image:after {
    height: 1.11111111vw;
    width: 6.94444444vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .panel-block:not(.full).col-placement-img.br .image {
    position: relative;
  }
  .panel-block:not(.full).col-placement-img.br .image:before,
  .panel-block:not(.full).col-placement-img.br .image:after {
    background-color: #e6e6e6;
    width: 1.11111111vw;
    height: 6.94444444vw;
    position: absolute;
    display: block;
    content: '';
  }
  .panel-block:not(.full).col-placement-img.br .image:after {
    height: 1.11111111vw;
    width: 6.94444444vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .panel-block:not(.full).col-placement-img.br .image {
    position: relative;
  }
  .panel-block:not(.full).col-placement-img.br .image:before,
  .panel-block:not(.full).col-placement-img.br .image:after {
    background-color: #e6e6e6;
    width: 1.11111111vw;
    height: 6.94444444vw;
    position: absolute;
    display: block;
    content: '';
  }
  .panel-block:not(.full).col-placement-img.br .image:after {
    height: 1.11111111vw;
    width: 6.94444444vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .panel-block:not(.full).col-placement-txt.img-placement-right.tl .copy {
    position: relative;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-right.tl .copy:before,
  .panel-block:not(.full).col-placement-txt.img-placement-right.tl .copy:after {
    background-color: #e6e6e6;
    width: 1.11111111vw;
    height: 6.94444444vw;
    position: absolute;
    display: block;
    content: '';
  }
  .panel-block:not(.full).col-placement-txt.img-placement-right.tl .copy:after {
    height: 1.11111111vw;
    width: 6.94444444vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .panel-block:not(.full).col-placement-txt.img-placement-right.tl .copy {
    position: relative;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-right.tl .copy:before,
  .panel-block:not(.full).col-placement-txt.img-placement-right.tl .copy:after {
    background-color: #e6e6e6;
    width: 1.11111111vw;
    height: 6.94444444vw;
    position: absolute;
    display: block;
    content: '';
  }
  .panel-block:not(.full).col-placement-txt.img-placement-right.tl .copy:after {
    height: 1.11111111vw;
    width: 6.94444444vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .panel-block:not(.full).col-placement-txt.img-placement-right.tr .image {
    position: relative;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-right.tr .image:before,
  .panel-block:not(.full).col-placement-txt.img-placement-right.tr .image:after {
    background-color: #e6e6e6;
    width: 1.11111111vw;
    height: 6.94444444vw;
    position: absolute;
    display: block;
    content: '';
  }
  .panel-block:not(.full).col-placement-txt.img-placement-right.tr .image:after {
    height: 1.11111111vw;
    width: 6.94444444vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .panel-block:not(.full).col-placement-txt.img-placement-right.tr .image {
    position: relative;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-right.tr .image:before,
  .panel-block:not(.full).col-placement-txt.img-placement-right.tr .image:after {
    background-color: #e6e6e6;
    width: 1.11111111vw;
    height: 6.94444444vw;
    position: absolute;
    display: block;
    content: '';
  }
  .panel-block:not(.full).col-placement-txt.img-placement-right.tr .image:after {
    height: 1.11111111vw;
    width: 6.94444444vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .panel-block:not(.full).col-placement-txt.img-placement-right.bl .copy {
    position: relative;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-right.bl .copy:before,
  .panel-block:not(.full).col-placement-txt.img-placement-right.bl .copy:after {
    background-color: #e6e6e6;
    width: 1.11111111vw;
    height: 6.94444444vw;
    position: absolute;
    display: block;
    content: '';
  }
  .panel-block:not(.full).col-placement-txt.img-placement-right.bl .copy:after {
    height: 1.11111111vw;
    width: 6.94444444vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .panel-block:not(.full).col-placement-txt.img-placement-right.bl .copy {
    position: relative;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-right.bl .copy:before,
  .panel-block:not(.full).col-placement-txt.img-placement-right.bl .copy:after {
    background-color: #e6e6e6;
    width: 1.11111111vw;
    height: 6.94444444vw;
    position: absolute;
    display: block;
    content: '';
  }
  .panel-block:not(.full).col-placement-txt.img-placement-right.bl .copy:after {
    height: 1.11111111vw;
    width: 6.94444444vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .panel-block:not(.full).col-placement-txt.img-placement-right.br .image {
    position: relative;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-right.br .image:before,
  .panel-block:not(.full).col-placement-txt.img-placement-right.br .image:after {
    background-color: #e6e6e6;
    width: 1.11111111vw;
    height: 6.94444444vw;
    position: absolute;
    display: block;
    content: '';
  }
  .panel-block:not(.full).col-placement-txt.img-placement-right.br .image:after {
    height: 1.11111111vw;
    width: 6.94444444vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .panel-block:not(.full).col-placement-txt.img-placement-right.br .image {
    position: relative;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-right.br .image:before,
  .panel-block:not(.full).col-placement-txt.img-placement-right.br .image:after {
    background-color: #e6e6e6;
    width: 1.11111111vw;
    height: 6.94444444vw;
    position: absolute;
    display: block;
    content: '';
  }
  .panel-block:not(.full).col-placement-txt.img-placement-right.br .image:after {
    height: 1.11111111vw;
    width: 6.94444444vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .panel-block:not(.full).col-placement-txt.img-placement-left.tl .image {
    position: relative;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-left.tl .image:before,
  .panel-block:not(.full).col-placement-txt.img-placement-left.tl .image:after {
    background-color: #e6e6e6;
    width: 1.11111111vw;
    height: 6.94444444vw;
    position: absolute;
    display: block;
    content: '';
  }
  .panel-block:not(.full).col-placement-txt.img-placement-left.tl .image:after {
    height: 1.11111111vw;
    width: 6.94444444vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .panel-block:not(.full).col-placement-txt.img-placement-left.tl .image {
    position: relative;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-left.tl .image:before,
  .panel-block:not(.full).col-placement-txt.img-placement-left.tl .image:after {
    background-color: #e6e6e6;
    width: 1.11111111vw;
    height: 6.94444444vw;
    position: absolute;
    display: block;
    content: '';
  }
  .panel-block:not(.full).col-placement-txt.img-placement-left.tl .image:after {
    height: 1.11111111vw;
    width: 6.94444444vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .panel-block:not(.full).col-placement-txt.img-placement-left.tr .copy {
    position: relative;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-left.tr .copy:before,
  .panel-block:not(.full).col-placement-txt.img-placement-left.tr .copy:after {
    background-color: #e6e6e6;
    width: 1.11111111vw;
    height: 6.94444444vw;
    position: absolute;
    display: block;
    content: '';
  }
  .panel-block:not(.full).col-placement-txt.img-placement-left.tr .copy:after {
    height: 1.11111111vw;
    width: 6.94444444vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .panel-block:not(.full).col-placement-txt.img-placement-left.tr .copy {
    position: relative;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-left.tr .copy:before,
  .panel-block:not(.full).col-placement-txt.img-placement-left.tr .copy:after {
    background-color: #e6e6e6;
    width: 1.11111111vw;
    height: 6.94444444vw;
    position: absolute;
    display: block;
    content: '';
  }
  .panel-block:not(.full).col-placement-txt.img-placement-left.tr .copy:after {
    height: 1.11111111vw;
    width: 6.94444444vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .panel-block:not(.full).col-placement-txt.img-placement-left.bl .image {
    position: relative;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-left.bl .image:before,
  .panel-block:not(.full).col-placement-txt.img-placement-left.bl .image:after {
    background-color: #e6e6e6;
    width: 1.11111111vw;
    height: 6.94444444vw;
    position: absolute;
    display: block;
    content: '';
  }
  .panel-block:not(.full).col-placement-txt.img-placement-left.bl .image:after {
    height: 1.11111111vw;
    width: 6.94444444vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .panel-block:not(.full).col-placement-txt.img-placement-left.bl .image {
    position: relative;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-left.bl .image:before,
  .panel-block:not(.full).col-placement-txt.img-placement-left.bl .image:after {
    background-color: #e6e6e6;
    width: 1.11111111vw;
    height: 6.94444444vw;
    position: absolute;
    display: block;
    content: '';
  }
  .panel-block:not(.full).col-placement-txt.img-placement-left.bl .image:after {
    height: 1.11111111vw;
    width: 6.94444444vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .panel-block:not(.full).col-placement-txt.img-placement-left.br .copy {
    position: relative;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-left.br .copy:before,
  .panel-block:not(.full).col-placement-txt.img-placement-left.br .copy:after {
    background-color: #e6e6e6;
    width: 1.11111111vw;
    height: 6.94444444vw;
    position: absolute;
    display: block;
    content: '';
  }
  .panel-block:not(.full).col-placement-txt.img-placement-left.br .copy:after {
    height: 1.11111111vw;
    width: 6.94444444vw;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .panel-block:not(.full).col-placement-txt.img-placement-left.br .copy {
    position: relative;
  }
  .panel-block:not(.full).col-placement-txt.img-placement-left.br .copy:before,
  .panel-block:not(.full).col-placement-txt.img-placement-left.br .copy:after {
    background-color: #e6e6e6;
    width: 1.11111111vw;
    height: 6.94444444vw;
    position: absolute;
    display: block;
    content: '';
  }
  .panel-block:not(.full).col-placement-txt.img-placement-left.br .copy:after {
    height: 1.11111111vw;
    width: 6.94444444vw;
  }
}
.panel-staff .tabs {
  margin-top: 9.52380952vw;
}
@media (min-width: 768px) {
  .panel-staff .tabs {
    margin-top: 2.77777778vw;
  }
}
.panel-staff table td em {
  font-style: normal;
  color: #808080;
  display: block;
  font-size: smaller;
}
.panel-spotlight {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 0;
  /*
	&.col-placement-txt {
		.copy {
			color: #fff;
			.rp(padding,20,60);
			padding-top: 0;
			.devsize(padding-bottom,40);
		}
	}
	*/
}
.panel-spotlight .image {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.panel-spotlight .image img:not(.video-play-overlay) {
  width: 100%;
  display: block;
}
.panel-spotlight .copy {
  color: #fff;
  padding: 4.76190476vw;
  padding-top: 0;
  padding-bottom: 9.52380952vw;
  /*
		h2:first-child, .metatitle:first-child {
			margin-top: 0;
		}
		.metatitle {
			.rp(font-size,18,18);
			font-weight: @bold;
		}
		.metatitle + h2 {
			.rp(margin-top,6,10);
		}
		p {
			.rp(font-size,18,18);
		}
		.subtitle {
			.rp(font-size,18,18);
			font-style: italic;
		}
		*/
}
@media (min-width: 768px) {
  .panel-spotlight .copy {
    padding: 4.16666667vw;
  }
}
.panel-spotlight .copy blockquote {
  color: #fff;
  border-left-color: #808080;
  padding-top: 0;
  font-size: 5.71428571vw;
  line-height: 130%;
  font-weight: normal;
}
@media (min-width: 768px) {
  .panel-spotlight .copy blockquote {
    font-size: 1.73611111vw;
  }
}
.panel-spotlight .copy .source {
  font-size: 3.80952381vw;
  text-transform: uppercase;
  line-height: 110%;
}
@media (min-width: 768px) {
  .panel-spotlight .copy .source {
    font-size: 1.11111111vw;
  }
}
.panel-spotlight.full {
  margin-left: -4.76190476vw;
  margin-right: -4.76190476vw;
}
@media (min-width: 768px) {
  .panel-spotlight.full {
    margin-left: 0vw;
  }
}
@media (min-width: 768px) {
  .panel-spotlight.full {
    margin-right: 0vw;
  }
}
@media (min-width: 768px) {
  .panel-spotlight {
    position: relative;
    flex-direction: row-reverse;
    align-items: center;
    /*
		&.col-placement-img {
			align-items: center;
			.monsize(padding-top,70);
			.monsize(padding-bottom,70);
            .swatch {	
				top: 0;
                .monsize(width,500);
            }
			.image {
				.monsize(margin-left,70);
			}
		}
		*/
    /*
		&.col-placement-img.img-placement-left {
			.swatch {
				left: 0;
				right: auto;
			}
			.image {
				.monsize(margin-right,70);
				margin-left: 0;
			}
		}
		*/
    /*&.full {
			padding-left: 0;
			padding-right: 0;
			.copy:only-child {
				.monsize(padding-left,160);
				.monsize(padding-right,160);
			}
		}*/
  }
  .panel-spotlight .image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 0;
    flex-shrink: 0;
  }
  .panel-spotlight .image.w-25 {
    width: 25%;
  }
  .panel-spotlight .image.w-33 {
    width: 33%;
  }
  .panel-spotlight .image.w-50 {
    width: 50%;
  }
  .panel-spotlight .image.w-58 {
    width: 58%;
  }
  .panel-spotlight .image img:not(.video-play-overlay) {
    width: 100%;
  }
  .panel-spotlight .image .video-container {
    width: 100%;
  }
  .panel-spotlight .copy {
    background-color: transparent;
    margin-top: 0;
    flex-grow: 1;
    padding: 0;
  }
  .panel-spotlight .copy blockquote {
    margin: 0;
    margin-bottom: 1.38888889vw;
    padding-right: 0;
    padding-left: 2.08333333vw;
  }
  .panel-spotlight .swatch {
    width: 100%;
    top: 1.38888889vw;
    bottom: 1.38888889vw;
    left: 0;
  }
  .panel-spotlight.img-placement-right .copy {
    padding-right: 3.47222222vw;
  }
  .panel-spotlight.img-placement-left {
    flex-direction: row;
  }
  .panel-spotlight.img-placement-left .copy {
    padding-left: 3.47222222vw;
  }
}
.panel-cards .deckwrapper ul.deck li .image {
  position: relative;
  padding-bottom: 56%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.panel-cards .deckwrapper ul.deck li .image .tag {
  position: absolute;
  right: 0;
  bottom: 7.14285714vw;
  display: inline-block;
  min-width: 1px;
  padding: 1.9047619vw;
  color: #fff;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .panel-cards .deckwrapper ul.deck li .image .tag {
    bottom: 2.08333333vw;
  }
}
@media (min-width: 768px) {
  .panel-cards .deckwrapper ul.deck li .image .tag {
    padding: 0.55555556vw;
  }
}
.panel-cards .deckwrapper ul.deck li .copy {
  padding: 4.76190476vw;
  padding-top: 7.14285714vw;
  padding-bottom: 7.14285714vw;
  border-top: solid 10px #fff;
}
@media (min-width: 768px) {
  .panel-cards .deckwrapper ul.deck li .copy {
    padding: 1.38888889vw;
  }
}
@media (min-width: 768px) {
  .panel-cards .deckwrapper ul.deck li .copy {
    padding-top: 2.08333333vw;
  }
}
@media (min-width: 768px) {
  .panel-cards .deckwrapper ul.deck li .copy {
    padding-bottom: 2.08333333vw;
  }
}
.panel-cards .deckwrapper ul.deck li .copy h4 {
  margin-top: 0;
  font-weight: 700;
  color: #333333;
}
.panel-cards .deckwrapper ul.deck li .copy .subtitle {
  color: #808080;
  font-weight: 700;
  margin-top: 4.76190476vw;
}
@media (min-width: 768px) {
  .panel-cards .deckwrapper ul.deck li .copy .subtitle {
    margin-top: 1.38888889vw;
  }
}
.panel-cards .deckwrapper ul.deck li .copy .subtitle + p {
  margin-top: 0;
}
.panel-cards .deckwrapper ul.deck li .copy p {
  line-height: 110%;
  font-size: 3.80952381vw;
}
@media (min-width: 768px) {
  .panel-cards .deckwrapper ul.deck li .copy p {
    font-size: 1.11111111vw;
  }
}
.panel-featured.panel-bg h2 {
  text-align: center;
  margin-bottom: 4.76190476vw;
}
@media (min-width: 768px) {
  .panel-featured.panel-bg h2 {
    margin-bottom: 3.47222222vw;
  }
}
.panel-featured.panel-bg .deckwrapper .ctrls a {
  color: #fff;
  text-shadow: 0px 0px 3px rgba(150, 150, 150, 0.5);
}
.panel-featured.panel-bg .deckwrapper .ctrls a:hover {
  color: #333333;
}
.panel-featured .deckwrapper ul.deck li {
  position: relative;
}
.panel-featured .deckwrapper ul.deck li .image {
  padding-bottom: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.panel-featured .deckwrapper ul.deck li .overlay {
  position: absolute;
  width: 100%;
  top: 77.5%;
  bottom: 0;
  background-color: rgba(242, 242, 242, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: top 0.5s;
}
.panel-featured .deckwrapper ul.deck li .overlay h4 {
  text-transform: uppercase;
  color: #333333;
  margin: 0;
  font-weight: 700;
  text-align: center;
  padding-left: 2.38095238vw;
  padding-right: 2.38095238vw;
}
@media (min-width: 768px) {
  .panel-featured .deckwrapper ul.deck li .overlay h4 {
    padding-left: 0.69444444vw;
  }
}
@media (min-width: 768px) {
  .panel-featured .deckwrapper ul.deck li .overlay h4 {
    padding-right: 0.69444444vw;
  }
}
.panel-featured .deckwrapper ul.deck li .overlay a {
  opacity: 0;
  filter: alpha(opacity=0);
  max-height: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  transition: all 0.5s;
  color: #333333;
  padding-top: 0;
  padding-bottom: 0;
}
.panel-featured .deckwrapper ul.deck li .overlay a:hover {
  background-color: #fff;
}
.panel-featured .deckwrapper ul.deck li:hover .overlay {
  top: 0;
}
.panel-featured .deckwrapper ul.deck li:hover .overlay a {
  opacity: 1;
  filter: alpha(opacity=100);
  max-height: 100px;
  margin-top: 7.14285714vw;
  padding-top: 3.80952381vw;
  padding-bottom: 3.80952381vw;
}
@media (min-width: 768px) {
  .panel-featured .deckwrapper ul.deck li:hover .overlay a {
    margin-top: 2.08333333vw;
  }
}
@media (min-width: 768px) {
  .panel-featured .deckwrapper ul.deck li:hover .overlay a {
    padding-top: 0.69444444vw;
  }
}
@media (min-width: 768px) {
  .panel-featured .deckwrapper ul.deck li:hover .overlay a {
    padding-bottom: 0.69444444vw;
  }
}
.panel-gallery {
  text-align: center;
}
.panel-gallery h2 {
  font-weight: 300;
}
.panel-gallery .feature img:not(.video-play-overlay) {
  width: 100%;
  display: block;
}
.panel-gallery .gallery ul {
  list-style: none;
}
.panel-gallery .gallery li {
  margin-left: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 4.76190476vw;
}
@media (min-width: 768px) {
  .panel-gallery .gallery li {
    margin-top: 1.38888889vw;
  }
}
.panel-gallery .gallery li img {
  display: block;
  width: 100%;
}
.panel-gallery .gallery.crop-square li,
.panel-gallery .gallery.crop-framed li {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.panel-gallery .gallery.crop-square li:after,
.panel-gallery .gallery.crop-framed li:after {
  content: '';
  display: inline-block;
  padding-bottom: 100%;
}
.panel-gallery .gallery.crop-framed li {
  background-size: contain;
  border: solid 1px #f3f3f3;
}
@media (min-width: 768px) {
  .panel-gallery .gallery ul {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .panel-gallery .gallery.crop-framed ul {
    align-items: stretch;
  }
  .panel-gallery .gallery-2col li {
    width: 49%;
    margin-right: 2%;
  }
  .panel-gallery .gallery-2col li:nth-child(2n) {
    margin-right: 0;
  }
  .panel-gallery .gallery-3col li {
    width: 32%;
    margin-right: 2%;
  }
  .panel-gallery .gallery-3col li:nth-child(3n) {
    margin-right: 0;
  }
  .panel-gallery .gallery-4col li {
    width: 23.5%;
    margin-right: 2%;
  }
  .panel-gallery .gallery-4col li:nth-child(4n) {
    margin-right: 0;
  }
  .panel-gallery .gallery-5col li {
    width: 18.4%;
    margin-right: 2%;
  }
  .panel-gallery .gallery-5col li:nth-child(5n) {
    margin-right: 0;
  }
}
.panel-form .blurb {
  margin-bottom: 2.38095238vw;
  padding-bottom: 1px;
}
@media (min-width: 768px) {
  .panel-form .blurb {
    margin-bottom: 1.38888889vw;
  }
}
.panel-hero-carousel {
  padding-left: 0 !important;
  padding-right: 0 !important;
  position: relative;
}
.panel-hero-carousel ul.carousel {
  list-style: none;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 9.52380952vw;
  overflow-x: auto;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
/*
	.panel-hero-carousel .mobilebg {
		background-size: cover;
		background-position: center center;
		background-repeat: no-repeat;				
		position: absolute;
		top: 0; left: 0; bottom: 0; right: 0;
		height: 100%; width: 100%;
	}
*/
	.panel-hero-carousel .slidebg {
		position: absolute;
		object-fit: cover;
		top: 0; left: 0; bottom: 0; right: 0;
		height: 100%; width: 100%;
	}
	/*.panel-hero-carousel .slidebg img {
		object-fit: cover;
		height: 100%; width: 100%;
	}*/
	/* mobile /////*/
	@media (max-width: 475px) {
		.panel-hero-carousel .tabletbg,
		.panel-hero-carousel .desktopbg {
			display: none !important;
		}	
	}
	/* tablet /////*/
	@media (min-width:476px) and (max-width: 767px) {
		.panel-hero-carousel .mobilebg,
		.panel-hero-carousel .desktopbg {
			display: none !important;
		}
	}
	/* desktop /////*/
	@media (min-width: 768px) {
		.panel-hero-carousel .mobilebg,
		.panel-hero-carousel .tabletbg {
			display: none !important;
		}
	}
	


@media (min-width: 768px) {
  .panel-hero-carousel ul.carousel {
    margin-bottom: 2.08333333vw;
  }
}
.panel-hero-carousel ul.carousel::-webkit-scrollbar {
  display: none;
}
.panel-hero-carousel ul.carousel li {
  flex-shrink: 0;
  flex-grow: 0;
  margin: 0;
  width: 100%;
  padding-top: 82.18527316%;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: none;
}
.panel-hero-carousel ul.carousel li .copy {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  max-width: 60%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 4.76190476vw;
}
@media (min-width: 768px) {
  .panel-hero-carousel ul.carousel li .copy {
    padding: 2.77777778vw;
  }
}
.panel-hero-carousel ul.carousel li .copy .metatitle,
.panel-hero-carousel ul.carousel li .copy .subtitle,
.panel-hero-carousel ul.carousel li .copy .copytext {
  display: none;
}
.panel-hero-carousel ul.carousel li .copy .metatitle,
.panel-hero-carousel ul.carousel li .copy .subtitle {
  font-size: 4.76190476vw;
}
@media (min-width: 768px) {
  .panel-hero-carousel ul.carousel li .copy .metatitle,
  .panel-hero-carousel ul.carousel li .copy .subtitle {
    font-size: 1.38888889vw;
  }
}
.panel-hero-carousel ul.carousel li .copy h2 {
  font-weight: 900;
  line-height: 110%;
  margin: 0;
  font-size: 7.14285714vw;
}
.panel-hero-carousel ul.carousel li .copy h2 a {
  text-decoration: none;
}
.panel-hero-carousel ul.carousel li .copy h2 a:hover {
  color: #fff;
}
@media (min-width: 768px) {
  .panel-hero-carousel ul.carousel li .copy h2 {
    font-size: 2.36111111vw;
  }
}
.panel-hero-carousel ul.carousel li .copy p {
  line-height: 110%;
}
.panel-hero-carousel .ctrls a {
  display: block;
  width: 25px;
  height: 35px;
  color: #fff;
  background: rgba(109, 110, 113, 0.6);
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  top: 33.49168646%;
  left: 0;
  font-size: 5.71428571vw;
}
@media (min-width: 768px) {
  .panel-hero-carousel .ctrls a {
    font-size: 3.33333333vw;
  }
}
.panel-hero-carousel .ctrls a.next {
  left: auto;
  right: 0;
}
.panel-hero-carousel .herofooter {
  display: flex;
  justify-content: flex-end;
  padding-right: 4.76190476vw;
  margin-bottom: 0vw;
}
@media (min-width: 768px) {
  .panel-hero-carousel .herofooter {
    padding-right: 6.94444444vw;
  }
}
@media (min-width: 768px) {
  .panel-hero-carousel .herofooter {
    margin-bottom: 4.16666667vw;
  }
}
@media (min-width: 768px) {
  .panel-hero-carousel:before,
  .panel-hero-carousel:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
  }
  .panel-hero-carousel:after {
    clear: both;
  }
  .panel-hero-carousel:before,
  .panel-hero-carousel:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
  }
  .panel-hero-carousel:after {
    clear: both;
  }
  .panel-hero-carousel ul.carousel li {
    padding-top: 39.42232631%;
  }
  .panel-hero-carousel ul.carousel li .copy {
    max-width: 51.8%;
    padding-top: 24px;
    padding-bottom: 24px;
    bottom: auto;
    top: 56%;
  }
  .panel-hero-carousel ul.carousel li .copy .metatitle,
  .panel-hero-carousel ul.carousel li .copy .subtitle {
    display: block;
  }
  .panel-hero-carousel ul.carousel li .copy .metatitle {
    margin-bottom: 0.5em;
  }
  .panel-hero-carousel ul.carousel li .copy .subtitle {
    margin: 0.4em 0 0.6em;
  }
  .panel-hero-carousel ul.carousel li .copy .copytext {
    display: block;
  }
  .panel-hero-carousel ul.carousel li .copy .copytext p {
    margin-top: 0.5em;
    margin-bottom: 0;
  }
  .panel-hero-carousel .ctrls a {
    width: 45px;
    height: 55px;
    transform: translateY(-50%);
    left: 16px;
  }
  .panel-hero-carousel .ctrls a.next {
    left: auto;
    right: 16px;
  }
}
