@charset "UTF-8";
/*! sanitize.css v3.3.0 | CC0 1.0 Public Domain | github.com/10up/sanitize.css */
@import url("https://fonts.googleapis.com/css2?family=Sorts+Mill+Goudy:ital@0;1&display=swap");
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

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

b, strong {
  font-weight: bolder;
}

button {
  -webkit-appearance: button;
  overflow: visible;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
button:-moz-focusring, input:-moz-focusring {
  outline: 1px dotted ButtonText;
}

button, select {
  text-transform: none;
}

details {
  display: block;
}

html {
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

hr {
  overflow: visible;
}

input {
  -webkit-border-radius: 0;
}
input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
}
input[type=number] {
  width: auto;
}
input[type=search] {
  -webkit-appearance: textfield;
}
input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

main {
  display: block;
}

pre {
  overflow: auto;
}

progress {
  display: inline-block;
}

summary {
  display: block;
}

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

template {
  display: none;
}

textarea {
  overflow: auto;
}

[hidden] {
  display: none;
}

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

* {
  font-size: inherit;
  line-height: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

button, input, select, textarea {
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
}

* {
  margin: 0;
  padding: 0;
}

*, :after, :before {
  border-style: solid;
  border-width: 0;
}

[tabindex], a, area, button, input, label, select, textarea {
  touch-action: manipulation;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}
select::-ms-expand {
  display: none;
}
select::-ms-value {
  color: currentColor;
}

svg {
  fill: currentColor;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

[hidden][aria-hidden=false] {
  clip: rect(0 0 0 0);
  display: inherit;
  position: absolute;
}
[hidden][aria-hidden=false]:focus {
  clip: auto;
}

* {
  background-repeat: var(--background-repeat, no-repeat);
}

:root {
  background-color: var(--root-background-color, #fff);
  box-sizing: var(--root-box-sizing, border-box);
  color: var(--root-color, #000);
  cursor: var(--root-cursor, default);
  font: var(--root-font-size, 100%)/var(--root-line-height, 1.5) var(--root-font-family, sans-serif);
}

a {
  -webkit-text-decoration: var(--anchor-text-decoration, none);
          text-decoration: var(--anchor-text-decoration, none);
}

audio, canvas, iframe, img, svg, video {
  vertical-align: var(--media-element-vertical-align, middle);
}

button, input, select, textarea {
  background-color: var(--form-element-background-color, transparent);
  color: var(--form-element-color, inherit);
}

[type=button], [type=date], [type=datetime-local], [type=datetime], [type=email], [type=month], [type=number], [type=password], [type=reset], [type=search], [type=submit], [type=tel], [type=text], [type=time], [type=url], [type=week], button, select, textarea {
  min-height: var(--form-element-min-height, 1.5em);
}

code, kbd, pre, samp {
  font-family: var(--monospace-font-family, monospace), monospace;
}

nav ol, nav ul {
  list-style: var(--nav-list-style, none);
}

small {
  font-size: var(--small-font-size, 75%);
}

table {
  border-collapse: var(--table-border-collapse, collapse);
  border-spacing: var(--table-border-spacing, 0);
}

textarea {
  resize: var(--textarea-resize, vertical);
}

::selection {
  background-color: var(--selection-background-color, #b3d4fc);
  color: var(--selection-color, #fff);
  text-shadow: var(--selection-text-shadow, none);
}

:root {
  --red: #a31c35;
  --gutter: -.75rem;
  --linkColor: #998c71;
  --linkHover: #3b362b;
  --margin: 1.5rem;
  --v_medium: 48em;
  --grayLight: #ededed;
  --grayDuch: #4d4d4f;
  --grayDark: #3E4159;
  --white: #fff;
  --sansSerif: 'Proxima Nova',sans-serif;
  --textColor: #3f3f3f;
}

/* ========================================================================= */
/* !SASS VARIABLES & MIXINS */
/* ========================================================================= */
/*
    // Use Case: $b (second) variable is optional and defaults to 'max-width'

    @include break(1100){
        h1{
            background: red;
        }
    }

    // Output
    @media screen and (max-width: 1100px) {
        h1 { background: red; }
    }

    // Also, if you want to specify the 2nd variable for break type (i.e., min-height)

    @include break(1100, 'min-height'){
        h1 {
            background:red;
        }
    }

    // Output
    @media screen and (min-height: 1100px) {
        h1 { background: red; }
    }
*/
/*
    // inline SVGs
    // usage: background-image: inline-svg('<svg><!-- your svg code --></svg>');
*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

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

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

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

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

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

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

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

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

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

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

.slick-slide img {
  display: block;
}

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

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

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

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

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

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

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

.slick-slider,
.slick-list,
.slick-track {
  height: 100%;
}

.slick-slide {
  opacity: 0.1;
  transition: opacity 0.5s linear;
}
.slick-slide .content {
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.slick-active {
  opacity: 0.5;
}

.slick-center {
  opacity: 1;
}
.slick-center .content {
  opacity: 1;
  transition: opacity 0.3s ease-in;
}

.slick-prev,
.slick-next {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 1%;
  font-size: 28px;
  margin-top: -58px;
  padding: 16px;
  cursor: pointer;
  color: var(--red);
}
.slick-prev:focus,
.slick-next:focus {
  color: var(--linkHover) !important;
  outline: none !important;
}
.slick-prev:hover,
.slick-next:hover {
  color: var(--linkHover) !important;
}
.slick-prev:active,
.slick-next:active {
  color: var(--linkColor) !important;
}

.slick-next {
  left: auto;
  right: 1%;
}

@media (--v_small) {
  .slick-prev,
  .slick-next {
    bottom: 35%;
  }
  .slick-prev {
    left: 5%;
  }
  .slick-next {
    right: 5%;
  }
}
@media (min-width: var(--v_medium)) {
  .slick-prev,
  .slick-next {
    bottom: 20%;
  }
  .slick-prev {
    left: 20%;
  }
  .slick-next {
    right: 20%;
  }
}
/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

html,
body {
  background: var(--grayLight);
  min-height: 100%;
  min-width: 100%;
  text-align: center;
}

:where(p) {
  font-weight: 400;
}

@media (min-width: 48em) {
  body {
    padding-top: 80px;
  }
}
::selection {
  background: var(--grayDuch);
  text-shadow: none;
}

hr {
  clear: both;
  border: 0;
  border-bottom: 1px solid var(--white);
  border-top: 1px solid #DDD;
  display: block;
  height: 0;
  margin: 0 0 1em;
  padding: 0;
}

footer {
  vertical-align: top;
}

a,
a:visited {
  color: var(--linkColor);
}
a:hover, a:focus,
a:visited:hover,
a:visited:focus {
  color: var(--linkHover);
}
a:active,
a:visited:active {
  color: #000;
}
img {
  max-width: 100%;
}

.page-content-home .timeline {
  transition: max-height 1s;
  overflow: hidden;
  max-height: 0;
}
.page-content-home .timeline.active {
  max-height: 700px;
}
.page-content-home .timeline .timelinelist {
  box-shadow: none !important;
}

#content {
  min-height: 550px;
}

#page {
  transition: opacity 0.4s linear;
}

.page-appear {
  opacity: 0.01;
}

.page-appear.page-appear-active {
  opacity: 1;
  transition: opacity 0.5s ease-in;
}

.page-enter {
  opacity: 0.01;
}

.page-enter.page-enter-active {
  opacity: 1;
  transition: opacity 500ms ease-in;
}

.page-leave {
  opacity: 1;
}

.page-leave.page-leave-active {
  opacity: 0.01;
  transition: opacity 300ms ease-in;
}

.strategyFooter footer a {
  margin-top: 0 !important;
}

.articlesContainer {
  background: var(--white);
  padding-bottom: 3em;
}

.showmoreContainer {
  background: var(--white);
  padding: 0 var(--margin) var(--margin);
  width: 100%;
  text-align: center;
}

.showmore {
  background: var(--grayLight);
  clear: both;
  color: #fff;
  display: block;
  margin: 0 auto;
  padding-top: 12px;
  position: relative;
  width: 110px;
  height: 35px;
  text-align: center;
  text-indent: -9999em;
}
.showmore::after {
  content: " ";
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 12px solid var(--white);
  height: 0;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
}
.showmore:hover {
  background-color: var(--grayDark);
}

.newstitle {
  padding-bottom: 0 !important;
}
@media (min-width: 48em) {
  .newstitle {
    padding-bottom: 1.5rem !important;
  }
}

/** /
.breakoutStrategyPage + section {
  box-shadow: inset 0 -10px 10px -10px rgba(0,0,0,0.30);
}
/**/
/*
@styleguide

# Clearfix

Use the clearfix class to clear floated items: .u-cf

<div class="u.cf"></div>

	<div class="u.cf"></div>
*/
.u-cf::after {
  content: " ";
  display: block;
  clear: both;
}

/* @end */
.u-wrap {
  margin: 0 auto;
  max-width: 1024px;
  /*overflow: hidden;*/
  padding: 0 0.75rem;
}
.u-wrap::after {
  content: " ";
  display: block;
  clear: both;
}

.u-wrap-rel {
  margin: 0 auto;
  max-width: 1024px;
  /*overflow: hidden;*/
  overflow: auto;
  padding: 0 0.75rem;
}
.u-wrap-rel::after {
  content: " ";
  display: block;
  clear: both;
}

body {
  font-size: 100%;
  line-height: 1.5;
  color: var(--textColor);
  font-family: var(--sansSerif);
  fill: var(--textColor);
}

h1,
h2,
h3,
.section-team-grid--content-inner h2,
h4,
.section-breakout--content h1 small,
h5 {
  clear: both;
  font-weight: normal;
  margin: 0 0 var(--gutter);
}
h1 a, h1 a:visited,
h2 a,
h2 a:visited,
h3 a,
.section-team-grid--content-inner h2 a,
h3 a:visited,
h4 a,
.section-breakout--content h1 small a,
h4 a:visited,
h5 a,
h5 a:visited {
  text-decoration: none;
}
h1.title_rule,
h2.title_rule,
h3.title_rule,
h4.title_rule,
.section-breakout--content h1 small.title_rule,
h5.title_rule {
  margin-bottom: 2rem;
  position: relative;
}
h1.title_rule::after,
h2.title_rule::after,
h3.title_rule::after,
h4.title_rule::after,
.section-breakout--content h1 small.title_rule::after,
h5.title_rule::after {
  background: var(--red);
  bottom: var(--gutter);
  content: " ";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 95px;
  z-index: 1;
}
h1 {
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 2.1px;
  line-height: 1.333333333;
  text-transform: uppercase;
}
h1.title_rule::after {
  height: 4px;
  width: 40px;
}

h2 {
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 2px;
  margin-bottom: 1.071428571rem;
  text-transform: uppercase;
}

h3, .section-team-grid--content-inner h2 {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0.785714286em;
}

h4, .section-breakout--content h1 small {
  color: var(--red);
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

h5 {
  font-size: 1rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 2px;
}

p {
  margin: 0 0 var(--margin);
}
p.nomargin {
  margin: 0 !important;
}
@media (min-width: var(--v_medium)) {
  h1 br,
  h2 br,
  h3 br,
  .section-team-grid--content-inner h2 br,
  h4 br,
  .section-breakout--content h1 small br,
  h5 br,
  p br {
    display: block;
  }
}
dfn,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 1em 0;
}

cite {
  font-style: normal;
  padding: 8px 0;
}

address {
  margin: 0 0 var(--margin);
}

pre {
  background: var(--black);
  color: var(--grayLighter);
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 0.9em;
  margin: 0 0 var(--margin);
  max-width: 100%;
  padding: 1em;
  overflow: auto;
}

abbr, acronym {
  cursor: help;
}

mark, ins {
  background: #fff9c0;
  text-decoration: none;
}

.main a {
  text-decoration: underline;
}
.main dt {
  font-weight: bold;
}
.main dd {
  margin: 0 1em var(--margin);
}
.main table {
  margin: 0 0 var(--margin);
  width: 100%;
}
.main th {
  font-weight: bold;
}
.main ul, .main ol {
  margin: 0 0 var(--margin) var(--margin);
}
.main ul {
  list-style: disc;
}
.main ol {
  list-style: decimal;
}
.main li {
  margin-bottom: var(--gutter);
}
.main li > ul, .main li > ol {
  margin-bottom: 0;
  margin-left: 1em;
}
@media (min-width: var(--v_medium)) {
  .main br {
    display: block;
  }
}

.main img {
  height: auto;
  margin: 0 0 var(--margin);
  max-width: 100%;
}

.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}

.alignnone,
img.alignnone,
figure.alignnone,
dl.alignnone,
.alignnone img {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  height: auto;
}

@media (--v_small) {
  .alignleft,
  img.alignleft,
  figure.alignleft,
  dl.alignleft {
    display: inline;
    float: left;
    margin-left: 0em;
    margin-right: var(--margin);
  }
  .alignright,
  img.alignright,
  figure.alignright,
  dl.alignright {
    display: inline;
    float: right;
    margin-left: var(--margin);
    margin-right: 0em;
  }
  .aligncenter,
  img.aligncenter,
  figure.aligncenter,
  dl.aligncenter {
    clear: both;
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
}
/******************************************************************
CAPTIONS
******************************************************************/
.wp-caption {
  max-width: 100%;
  background: var(--grayLight);
  font-size: 0.75em;
  padding: 0.333333333em 0;
  text-align: center;
}
.wp-caption.alignleft {
  margin-right: var(--margin);
}
.wp-caption.alignright {
  margin-left: var(--margin);
}
.wp-caption.aligncenter {
  margin-right: auto;
  margin-left: auto;
}
.wp-caption {
  /* images inside wp-caption */
}
.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}
.wp-caption p.wp-caption-text {
  font-size: 0.9em;
  margin: 4px 0 7px;
  text-align: center;
}

/******************************************************************
HTML5 IMAGE GALLERY
******************************************************************/
.gallery {
  text-align: justify;
}
.gallery .gallery-item {
  margin: 0;
  width: 50%;
  display: inline-block;
  vertical-align: top;
  padding: 0.5em;
}
.gallery img {
  display: block;
  transform: translateZ(0);
}
.gallery .gallery-caption {
  text-align: left;
  padding: 0.25em 0;
}
.gallery:after {
  content: "";
  display: inline-block;
  width: 100%;
}
@media (min-width: var(--v_medium)) {
  .gallery .gallery-item {
    width: 25%;
  }
  .gallery img:hover {
    opacity: 0.7;
    transition: opacity 0.2s ease;
  }
}

/* Text meant only for screen readers. */
.u-screenReaderText {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.u-screenReaderText:focus {
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  display: block;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

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

/**
 * @license
 * MyFonts Webfont Build ID 2817155, 2014-05-23T09:09:10-0400
 *
 * The fonts listed in this notice are subject to the End User License
 * Agreement(s) entered into by the website owner. All other parties are
 * explicitly restricted from using the Licensed Webfonts(s).
 *
 * You may obtain a valid license at the URLs below.
 *
 * Webfont: Proxima Nova Light by Mark Simonson
 * URL: http://www.myfonts.com/fonts/marksimonson/proxima-nova/light/
 *
 * Webfont: Proxima Nova Italic by Mark Simonson
 * URL: http://www.myfonts.com/fonts/marksimonson/proxima-nova/regular-it/
 *
 * Webfont: Proxima Nova SemiBold by Mark Simonson
 * URL: http://www.myfonts.com/fonts/marksimonson/proxima-nova/semibold/
 *
 * Webfont: Proxima Nova Regular by Mark Simonson
 * URL: http://www.myfonts.com/fonts/marksimonson/proxima-nova/regular/
 *
 * Webfont: Proxima Nova Bold by Mark Simonson
 * URL: http://www.myfonts.com/fonts/marksimonson/proxima-nova/bold/
 *
 *
 * License: http://www.myfonts.com/viewlicense?type=web&buildid=2817155
 * Licensed pageviews: 1,000,000
 * Webfonts copyright: Copyright (c) Mark Simonson, 2005. All rights reserved.
 *
 * 2014 MyFonts Inc
*/
/* @import must be at top of file, otherwise CSS will not work */
/*@import url("//hello.myfonts.net/count/2afc83");*/
@font-face {
  font-family: "Proxima Nova";
  src: url("/wp-content/themes/jrd-dcmllc/ui/fonts/ProximaNova.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("/wp-content/themes/jrd-dcmllc/ui/fonts/ProximaNova-italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("/wp-content/themes/jrd-dcmllc/ui/fonts/ProximaNova-italic.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("/wp-content/themes/jrd-dcmllc/ui/fonts/ProximaNova-semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Proxima Nova";
  src: url("/wp-content/themes/jrd-dcmllc/ui/fonts/ProximaNova-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "duch";
  src: url("/wp-content/themes/jrd-dcmllc/ui/fonts/duch.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "duch" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-download:before {
  content: "\e900";
}

.icon-menu:before {
  content: "\e901";
}

.icon-chevron-thin-right:before {
  content: "\e902";
}

.icon-chevron-thin-left:before {
  content: "\e903";
}

/**


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

[class^='icon-'],
[class*=' icon-'] {
  font-family: connect !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-c_volunteer::before {
  content: '\e900';
}

.icon-c_food::before {
  content: '\e901';
}

.icon-c_transportation::before {
  content: '\e902';
}

.icon-c_mobility::before {
  content: '\e903';
}

.icon-c_vision::before {
  content: '\e904';
}

.icon-c_supports::before {
  content: '\e905';
}

.icon-c_physical::before {
  content: '\e906';
}

.icon-c_spiritual::before {
  content: '\e907';
}

.icon-c_emotional::before {
  content: '\e908';
}

.icon-c_home::before {
  content: '\e909';
}

.icon-c_financial::before {
  content: '\e90a';
}

.icon-c_socialization::before {
  content: '\e90b';
}

.icon-tree::before {
  content: '\e60b';
}

.icon-play_circle_outline::before {
  content: '\e01d';
}

.icon-phone::before {
  content: '\e03f';
}

.icon-add_circle::before {
  content: '\e06b';
}

.icon-down::before {
  content: '\e10f';
}

.icon-left::before {
  content: '\e110';
}

.icon-right::before {
  content: '\e111';
}

.icon-up::before {
  content: '\e112';
}

.icon-cancel::before {
  content: '\e205';
}

.icon-share::before {
  content: '\e25a';
}

.icon-star::before {
  content: '\e260';
}

.icon-star_half::before {
  content: '\e261';
}

.icon-star_outline::before {
  content: '\e262';
}

.icon-check_circle::before {
  content: '\e281';
}

.icon-description::before {
  content: '\e288';
}

.icon-event::before {
  content: '\e28c';
}

.icon-favorite::before {
  content: '\e291';
}

.icon-favorite_outline::before {
  content: '\e292';
}

.icon-home::before {
  content: '\e29e';
}

.icon-print::before {
  content: '\e2c1';
}

.icon-paper-clip::before {
  content: '\e001';
}

.icon-mail::before {
  content: '\e002';
}

.icon-link::before {
  content: '\e005';
}

.icon-search::before {
  content: '\e036';
}

.icon-comment::before {
  content: '\e076';
}

.icon-tag::before {
  content: '\e085';
}

.icon-close::before {
  content: '\e117';
}

.icon-menu::before {
  content: '\e120';
}
/**/
.active .icon-menu::before, .active .icon-search::before {
  content: "\e117";
}

svg {
  fill: currentColor;
}
svg.icon {
  display: inline-block;
  vertical-align: baseline;
}
svg use {
  pointer-events: none;
}

html, body {
  scroll-behavior: smooth;
}

.logo-wrap {
  color: #4d4d4f;
  float: none;
  height: 40px;
  margin: 0 auto;
  max-width: 290px;
  padding: 20px;
  width: 80%;
  z-index: 10000;
}

.logo-wrap a {
  color: #4d4d4f;
  display: block;
  line-height: 1;
}

.logo-wrap img, .logo-wrap svg {
  color: #4d4d4f;
  display: block;
  width: 100%;
  height: 40px;
}

@media (min-width: 48em) {
  .logo-wrap {
    float: left;
    width: 25%;
  }
}
.menu-toggle {
  color: #998c71;
  cursor: pointer;
  display: block;
  float: left;
  font-size: 1.5rem;
  height: 3rem;
  left: 0;
  line-height: 3rem;
  margin: 0.7em 0 0;
  padding: 0;
  position: absolute;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  top: 0;
  transition: all 0.3s ease-in-out;
  width: 3rem;
  z-index: 900;
}

.menu-toggle:active, .menu-toggle:focus, .menu-toggle:hover {
  color: #3b362b;
  outline: none;
}

.menu-toggle._16xRj6momwWoh2vPbdatHv {
  background: #000;
  color: #fff;
}

@media (min-width: 48em) {
  .menu-toggle {
    display: none !important;
    left: -50px;
  }
}
#_2kPInPGq9GoqLIJ5MFYbVc {
  transition: transform 2s ease-in-out;
}

body.openDrawer #page {
  transform: translateX(260px);
}

#navOverlay {
  background-color: #fff;
  bottom: 0;
  display: none;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 9999;
}

.main-nav {
  clear: none;
  margin: 0;
  padding: 0;
  width: auto;
}

.main-nav > ul {
  background: #f2f1ee;
  box-shadow: inset -26px 20px 21px -25px rgba(0, 0, 0, 0.35);
  display: block;
  bottom: 0;
  font-size: 0.8em;
  left: 0;
  padding-top: 0;
  position: fixed;
  text-align: center;
  top: 0;
  transform: translateX(-260px);
  width: 260px;
  z-index: 9999;
}

.main-nav li {
  display: block;
  letter-spacing: 1.5px;
  position: relative;
  text-transform: uppercase;
}

.main-nav li a, .main-nav li a:visited {
  color: #454329;
  display: block;
  height: 60px;
  line-height: 60px;
  padding: 0.25em 1em 0;
  text-decoration: none;
  vertical-align: middle !important;
  background-position: 0 0;
}

.current-menu-item a, .current-menu-item a:visited {
  background-color: #3d4146;
  color: #fff !important;
  cursor: default;
  transition: none;
}

@media (min-width: 48em) {
  .main-nav {
    clear: none;
    display: block !important;
    float: right;
    margin: 0;
    text-align: right;
    width: auto;
  }
  .main-nav ul {
    display: block;
    max-height: auto;
    padding: 0;
  }
  .main-nav li {
    display: inline-block;
    border: none;
    padding: 0;
  }
  .main-nav li a {
    background-image: linear-gradient(180deg, transparent 50%, #3d4146 0);
    background-size: 100% 205%;
    display: block;
    height: 80px;
    letter-spacing: 1px;
    line-height: 80px;
    padding: 6px 0.5rem 0;
    transition: background-color 0.3s ease-in-out, background-position 0.2s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.2s linear;
  }
  .main-nav li a:focus, .main-nav li a:hover {
    background-position: 0 100%;
    color: #fff !important;
  }
}
@media (min-width: 64em) {
  .main-nav li {
    padding: 0;
  }
  .main-nav li a {
    letter-spacing: 1.5px;
    padding: 6px 1rem 0;
  }
}
@media (min-width: 48em) {
  .main-nav > ul {
    background: transparent;
    box-shadow: none;
    bottom: auto;
    display: inline-block;
    float: right;
    left: auto;
    position: relative;
    text-align: right;
    top: auto;
    transform: none;
    width: auto;
  }
}
.site-header {
  background: #f2f1ee;
  box-shadow: 0 -5px 15px 5px rgba(0, 0, 0, 0.25);
  height: 80px;
  margin: 0;
  padding: 0;
  text-align: center;
}

@media (min-width: 48em) {
  .site-header {
    left: 0;
    position: fixed;
    text-align: left;
    top: 0;
    width: 100%;
    z-index: 2999;
  }
}
.header-wrap {
  padding-right: 0;
}

.site-footer {
  background: #ededed;
  padding: 3rem 0;
  text-align: center;
}
.site-footer .footer-flex {
  text-align: center !important;
}
.site-footer .footer-flex:after {
  content: " ";
  display: block;
  clear: both;
}

.site-footer > div {
  padding: 0 !important;
}

.site-footer .footer-company-name, .site-footer .footer-address, .site-footer .footer-address a, .site-footer .footer-phone, .site-footer .footer-email {
  color: #3f3f3f;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.3;
  margin: 0 0.75rem;
  vertical-align: middle;
}

.site-footer .footer-company-name {
  font-family: "Sorts Mill Goudy", Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.site-footer .footer-address {
  font-style: normal;
}

.site-footer .footer-address > a {
  margin: 0;
}

.site-footer .footer-address span {
  float: left;
  margin-right: 5px;
}

.site-footer .footer-address span:last-child {
  margin-right: 0;
}

@media screen and (max-width: 960px) {
  .footer-company-name {
    display: block !important;
    margin-bottom: 0.5rem !important;
  }
}
@media (min-width: 48em) {
  .site-footer .footer-company-name, .site-footer .footer-address, .site-footer .footer-phone, .site-footer .footer-email {
    border-right: 1px solid #3f3f3f;
    margin: 0 0.75rem 0 0;
    padding: 0 0.75rem 0 0;
  }
  .site-footer .footer-address br {
    display: none;
  }
  .site-footer .footer-email {
    border-right: none !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
  }
}
.section-banner {
  margin: 0 auto;
  position: relative;
  text-align: center;
  overflow: hidden;
  width: 100%;
}
.section-banner img {
  display: block;
  margin-bottom: 0 !important;
}

.section-banner--image {
  transition: opacity 0.1s linear;
}

.section-banner--content {
  background: #fff;
  padding: 1.5rem 1.5rem 0.01rem;
  text-align: center;
  width: 100%;
}
.section-banner--content h2 {
  color: #998c71;
  font-size: 1.125rem;
  font-weight: 800;
  text-transform: uppercase;
}
.section-banner--content p {
  font-style: oblique;
  font-family: "Sorts Mill Goudy", Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 1.375rem;
}

@media (min-width: 48em) {
  .section-banner img {
    margin: 0;
    width: 100%;
  }
  .section-banner--content {
    background: transparent;
    left: 50%;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: 5%;
    transform: translateX(-50%);
    width: 50%;
    z-index: 200;
  }
  .section-banner--content p {
    font-size: 1rem;
  }
}
@media (min-width: 64em) {
  .section-banner--content {
    top: 10%;
  }
  .section-banner--content p {
    font-size: 1.375rem;
  }
}
.section-simple {
  overflow: auto;
}

.section-simple--content {
  margin-bottom: 0;
}
.section-simple--content p:last-child {
  margin-bottom: 0;
}

.section-simple--button1 {
  margin-bottom: 0;
}

.bg-dark {
  color: #fff !important;
}
.bg-dark h1 {
  color: #fff !important;
}
.bg-dark h2 {
  color: #fff !important;
}
.bg-dark h3, .bg-dark .section-team-grid--content-inner h2, .section-team-grid--content-inner .bg-dark h2 {
  color: #fff !important;
}
.bg-dark h4, .bg-dark .section-breakout--content h1 small, .section-breakout--content h1 .bg-dark small {
  color: #fff !important;
}
.bg-dark h5 {
  color: #fff !important;
}
.bg-dark .section-simple--button1 {
  border-color: #fff;
  color: #fff;
}

.shadow-top {
  box-shadow: inset 0 15px 10px -10px rgba(0, 0, 0, 0.3);
}

.shadow-bottom {
  box-shadow: inset 0 -10px 10px -10px rgba(0, 0, 0, 0.3);
}

@media (min-width: 48em) {
  .section-simple--content {
    font-weight: 400;
    margin: 0 auto;
    max-width: 60%;
  }
}
.white-padding {
  background-color: #f2f1ee;
  padding: 4.5rem 0;
}

.section-simple--button2 {
  background: transparent;
  border: 1px solid #3f3f3f;
  color: #3f3f3f;
  cursor: pointer;
  display: inline-block;
  font-family: "Sorts Mill Goudy", Georgia, Cambria, Times New Roman, Times, serif;
  font-size: 1.125rem;
  letter-spacing: 1.4px;
  line-height: 3rem;
  margin: 1.5rem auto;
  width: 15rem;
  max-width: 100%;
  padding: 0.3rem 1rem 0;
  position: relative;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: all 0.15s ease-in-out;
  vertical-align: middle;
}
.section-simple--button2:active {
  background: transparent;
  border: 1px solid #3f3f3f;
  color: #3f3f3f;
  cursor: pointer;
  display: inline-block;
  font-family: "Sorts Mill Goudy", Georgia, Cambria, Times New Roman, Times, serif;
  font-size: 1.125rem;
  letter-spacing: 1.4px;
  line-height: 3rem;
  margin: 1.5rem auto;
  width: 15rem;
  max-width: 100%;
  padding: 0.3rem 1rem 0;
  position: relative;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: all 0.15s ease-in-out;
  vertical-align: middle;
}
.section-simple--button2:active:focus {
  background: #3d4146 !important;
  border-color: #3d4146 !important;
  color: #fff !important;
}
.section-simple--button2:active:hover {
  background: #3d4146 !important;
  border-color: #3d4146 !important;
  color: #fff !important;
}
.section-simple--button2:visited {
  background: transparent;
  border: 1px solid #3f3f3f;
  color: #3f3f3f;
  cursor: pointer;
  display: inline-block;
  font-family: "Sorts Mill Goudy", Georgia, Cambria, Times New Roman, Times, serif;
  font-size: 1.125rem;
  letter-spacing: 1.4px;
  line-height: 3rem;
  margin: 1.5rem auto;
  width: 15rem;
  max-width: 100%;
  padding: 0.3rem 1rem 0;
  position: relative;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: all 0.15s ease-in-out;
  vertical-align: middle;
}
.section-simple--button2:visited:focus {
  background: #3d4146 !important;
  border-color: #3d4146 !important;
  color: #fff !important;
}
.section-simple--button2:visited:hover {
  background: #3d4146 !important;
  border-color: #3d4146 !important;
  color: #fff !important;
}
.section-simple--button2:focus {
  background: #3d4146 !important;
  border-color: #3d4146 !important;
  color: #fff !important;
}
.section-simple--button2:hover {
  background: #3d4146 !important;
  border-color: #3d4146 !important;
  color: #fff !important;
}

@media (min-width: 30em) {
  .section-simple--button2 {
    min-width: 15rem;
    width: auto;
  }
}
.section-breakout {
  padding: 0 !important;
  text-align: left;
}

.section-breakout + section {
  padding-top: 1.5rem;
}

.section-breakout--img {
  margin-bottom: 1.5rem;
}
.section-breakout--img img {
  max-width: 400px;
  margin: 0 auto var(--margin);
  display: block;
}

@media (min-width: 48em) {
  .section-breakout--img {
    display: inline-block;
    padding: 0.75rem;
    text-align: left;
    vertical-align: top;
    width: 34%;
  }
  .section-breakout--img img {
    margin-left: -20%;
    margin-top: -16%;
    width: 118%;
  }
}
.section-breakout--content {
  overflow: hidden;
  padding-bottom: 0.75rem;
  text-align: center;
  vertical-align: top;
}
.section-breakout--content p {
  margin: 0;
}
.section-breakout--content h1 {
  font-family: "Sorts Mill Goudy", Georgia, Cambria, "Times New Roman", Times, serif;
  font-weight: 400;
  margin-bottom: 1rem;
  position: relative;
}
.section-breakout--content h1:after {
  background: #9a9997;
  bottom: -5.6px;
  bottom: -0.35rem;
  content: " ";
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 40px;
  z-index: 1;
}
.section-breakout--content h1 small {
  font-family: "ProximaNova", sans-serif;
  letter-spacing: 0;
  display: block;
}

.section-breakout--content h2 {
  color: #a31c35;
  margin: 0;
}

@media (min-width: 48em) {
  .section-breakout--content {
    display: inline-block;
    padding: 0.75rem;
    text-align: left;
    width: 22%;
  }
  .section-breakout--content h1 {
    margin-bottom: 2rem;
  }
  .section-breakout--content h1:after {
    bottom: -12px;
    bottom: -0.75rem;
    left: 0;
    transform: none;
  }
}
.section-investment-feature {
  background-color: #f2f1ee;
}
.section-investment-feature header {
  margin-bottom: 1.5rem;
}
.section-investment-feature section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.investment-item {
  display: block;
  padding-bottom: 3rem;
  text-align: left;
  vertical-align: top;
  width: 100%;
}
.investment-item img {
  float: none;
  height: auto;
  margin: 0 auto;
  max-width: 340px;
  width: 100%;
}
.investment-item img.fit {
  aspect-ratio: 23/15;
  object-fit: cover;
  margin-bottom: 15px;
}
.investment-item img:first-child {
  margin-bottom: 15px;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.investment-item img:nth-child(2), .investment-item img:only-of-type {
  margin-bottom: 15px;
  width: 100%;
  height: 75px;
  object-fit: contain;
}
.investment-item img.realized-logo {
  object-position: left center;
}
.investment-item p {
  margin-bottom: 0;
  margin-top: 0.75rem;
}
.investment-item a {
  display: block;
  font-size: 0.9em;
  font-weight: 600;
  margin-top: 0.75rem;
  text-decoration: none;
  text-transform: uppercase;
}

@media (min-width: 30em) {
  .investment-item {
    flex-basis: calc(50% - 15px);
    display: inline-block;
    padding-bottom: 0;
  }
}
@media (min-width: 48em) {
  .investment-item {
    flex-basis: calc(33.33333% - 20px);
    padding-bottom: 0;
  }
}
@media (min-width: 64em) {
  .investment-item {
    padding-bottom: 0;
  }
}
.teamtabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0 30px;
  max-width: 930px;
}
.teamtabs:has(.investment-item) {
  gap: 30px;
}

.section-team-grid {
  background-color: #fff;
  text-align: left;
  padding-top: 0;
}

.section-team-grid--item {
  transition: padding-bottom 0.5s ease-in-out;
  width: 100%;
  vertical-align: top;
  z-index: 200;
}

.team-tabs-expand {
  padding-bottom: 1300px;
  z-index: 2000;
}

@media (min-width: 30em) {
  .team-tabs-expand {
    padding-bottom: 1030px;
  }
  .section-team-grid--item {
    display: inline-block;
    flex-basis: calc(50% - 15px);
  }
}
@media (min-width: 48em) {
  .team-tabs-expand {
    padding-bottom: 980px;
  }
  .section-team-grid--item {
    display: inline-block;
    flex-basis: calc(33.333% - 20px);
  }
}
.section-team-grid--box {
  cursor: pointer;
  opacity: 1;
  transition: padding-bottom 0.6s ease-in-out;
  vertical-align: top;
  z-index: 200;
}
.section-team-grid--box:focus {
  opacity: 0.8;
}
.section-team-grid--box:hover {
  opacity: 0.8;
}

.section-team-grid--photo {
  background-color: #f2f1ee;
  height: 0;
  margin: 0.75rem auto;
  max-width: 400px;
  overflow: hidden;
  padding-bottom: 86%;
  padding-top: 1px;
  position: relative;
  vertical-align: top;
  width: 100%;
}
.section-team-grid--photo img {
  height: auto;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.section-team-grid--content {
  margin-top: 1.5rem;
  min-height: 6em;
}

.section-team-grid--content-inner {
  min-height: 2.5em;
  margin: 0;
  vertical-align: top;
  border-left: 4px solid #a31c35;
  padding-left: 0.75rem;
  text-align: left;
}
.section-team-grid--content-inner h2 {
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 4px;
  text-transform: uppercase;
  vertical-align: middle;
}

.section-team-grid--title {
  font-size: 0.9em;
  line-height: 1.2;
  margin-bottom: 0;
  vertical-align: top;
}

.section-team-grid--more {
  background: #f2f1ee;
  box-shadow: inset 0 4px 34px -5px rgba(0, 0, 0, 0.5);
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 200;
}

._2JUSiTQ0THUH85nvQiQ01E {
  display: none;
}

.reuXxBNyCW7M5_CvZAcbq {
  display: block;
}

.section-team-grid--expandable {
  max-height: 0;
  overflow: hidden !important;
  position: relative;
  transition: all 0.4s ease-out;
  width: 100%;
}
.section-team-grid--expandable.team-tabs-expanded {
  transition-duration: 0.6s;
  transition-timing-function: ease-in;
}

.section-team-grid--before {
  border-top: 10px solid #fff;
  box-sizing: border-box;
  content: " ";
  display: none;
  height: 0;
  line-height: 0;
  position: absolute;
  transition: all 0.5s ease-out;
  top: 0;
  z-index: 9999;
}

.section-team-grid--after {
  border-top: 10px solid #fff;
  box-sizing: border-box;
  content: " ";
  display: none;
  height: 0;
  line-height: 0;
  position: absolute;
  transition: all 0.5s ease-out;
  top: 0;
  z-index: 9999;
}

.section-team-grid--before.section-team-grid--before {
  border-right: 10px solid transparent;
  left: 0;
  width: 25%;
}

.section-team-grid--after.section-team-grid--before {
  border-right: 10px solid transparent;
  left: 0;
  width: 25%;
}

.section-team-grid--before.section-team-grid--after {
  border-left: 10px solid transparent;
  right: 0;
  width: 75%;
}

.section-team-grid--after.section-team-grid--after {
  border-left: 10px solid transparent;
  right: 0;
  width: 75%;
}

.team-tabs-expanded {
  max-height: 2000px;
}
.team-tabs-expanded .section-team-grid--before {
  display: block;
}
.team-tabs-expanded .section-team-grid--after {
  display: block;
}

ul.section-team-grid--list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 1.5rem;
  padding: 0 1.5rem 1.5rem;
  letter-spacing: 2px;
}
ul.section-team-grid--list li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.section-team-grid--more-content {
  margin-top: 1.5rem;
  padding: 0 1.5rem 1.5rem;
  margin-top: 0;
}
.section-team-grid--more-content h2 {
  font-size: 1.1rem;
  font-weight: 600;
}

.section-team-grid--email {
  color: #a31c35;
  font-weight: 600;
}
.section-team-grid--email a {
  color: #3f3f3f;
  font-weight: 400;
  text-decoration: none !important;
}

li.section-team-grid--pdf {
  display: block;
  padding-top: 1em !important;
}
li.section-team-grid--pdf a {
  font-size: 0.8em;
  font-weight: 600;
  text-decoration: none !important;
  text-transform: uppercase;
}

@media (min-width: 48em) {
  .team-tabs-expanded {
    height: auto;
  }
  .section-team-grid--more-content {
    float: left;
    width: 65%;
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1.5rem;
  }
  ul.section-team-grid--list {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1.5rem;
    float: right;
    width: 35%;
  }
}
.section-investment-grid {
  background-color: #fff;
}

.section-investment-grid--category {
  background: #fff;
  text-align: left;
}
.section-investment-grid--category h1 {
  border-bottom: 1px solid #9a9997;
  font-weight: 400;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  margin-bottom: 15px;
}
.section-investment-grid--category h1 span {
  color: #a31c35;
  font-weight: 600;
}

@media (min-width: 48em) {
  .section-investment-grid--category h1 {
    margin-left: 3rem;
    margin-right: 3rem;
  }
}
.section-banner-story {
  margin: 0 auto;
  position: relative;
  text-align: center;
  overflow: hidden;
  width: 100%;
}
.section-banner-story img {
  display: block;
  margin-bottom: 0 !important;
}

.Gvd2ZKt_ZV23TA6YB47MI {
  transition: opacity 0.1s linear;
}

.section-banner-story--content {
  background: #fff;
  padding: 1.5rem 1.5rem 0.01rem;
  text-align: center;
  width: 100%;
}
.section-banner-story--content h2 {
  color: #998c71;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
}
.section-banner-story--content p {
  font-style: oblique;
  font-family: "Sorts Mill Goudy", Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 1.375rem;
}

.section-banner-story--caption {
  background-color: #3d4146;
  color: #fff;
  font-size: 1.1em;
  padding: 1.5rem;
  text-align: center;
  transition: opacity 0.3s linear;
}
.section-banner-story--caption div:nth-child(1) {
  display: none;
}
.section-banner-story--caption div:nth-child(2) {
  display: block;
}

.section-banner-story--graphics {
  position: relative;
}

.section-banner-story--graphics-inner {
  left: 29.7%;
  position: absolute;
  top: 33%;
  width: 8.6%;
}
.section-banner-story--graphics-inner .section-banner-story--button {
  border: 2px solid #998c71;
  border-radius: 50%;
  display: none;
  height: 20px;
  right: -10%;
  position: absolute;
  top: -10%;
  transition: all 0.3s;
  width: 20px;
}
.section-banner-story--graphics-inner .section-banner-story--button:after {
  background: #998c71;
  content: " ";
  display: block;
  height: 50%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 50%;
  width: 2px;
}
.section-banner-story--graphics-inner .section-banner-story--button:before {
  background: #998c71;
  content: " ";
  display: block;
  height: 50%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 50%;
  height: 2px;
}
.section-banner-story--graphics-inner .section-banner-story--outline {
  opacity: 0.4;
  transition: opacity 0.1s linear;
  width: 100%;
}

@media (min-width: 48em) {
  .section-banner-story img {
    margin: 0;
    width: 100%;
  }
  .section-banner-story--content {
    background: transparent;
    left: 50%;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: 5%;
    transform: translateX(-50%);
    width: 50%;
    z-index: 200;
  }
  .section-banner-story--content p {
    font-size: 1rem;
  }
  .section-banner-story--caption {
    background-color: rgba(61, 65, 70, 0.9);
    bottom: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
  }
  .section-banner-story--caption div:nth-child(1) {
    display: block;
  }
  .section-banner-story--caption div:nth-child(2) {
    display: none;
  }
  .section-banner-story--graphics-inner {
    cursor: pointer;
  }
  .section-banner-story--graphics-inner .section-banner-story--button {
    display: block;
    height: 30px;
    width: 30px;
  }
  .section-banner-story--graphics-inner .section-banner-story--outline {
    opacity: 0;
  }
  .section-banner-story--graphics-inner:focus .section-banner-story--button {
    background: #998c71;
  }
  .section-banner-story--graphics-inner:focus .section-banner-story--button:after {
    background-color: #fff;
  }
  .section-banner-story--graphics-inner:focus .section-banner-story--button:before {
    background-color: #fff;
  }
  .section-banner-story--graphics-inner:focus .section-banner-story--outline {
    opacity: 0.4;
  }
  .section-banner-story--graphics-inner:hover .section-banner-story--button {
    background: #998c71;
  }
  .section-banner-story--graphics-inner:hover .section-banner-story--button:after {
    background-color: #fff;
  }
  .section-banner-story--graphics-inner:hover .section-banner-story--button:before {
    background-color: #fff;
  }
  .section-banner-story--graphics-inner:hover .section-banner-story--outline {
    opacity: 0.4;
  }
  .story-expanded .section-banner-story--caption {
    opacity: 1 !important;
  }
}
@media (min-width: 64em) {
  .section-banner-story--content {
    top: 10%;
  }
  .section-banner-story--content p {
    font-size: 1.375rem;
  }
}
.section-news-grid--item {
  border-bottom: 1px solid #9a9997;
  display: block;
  padding: 3rem 0;
  vertical-align: top;
}
.section-news-grid--item:has(+ .showmoreContainer) {
  border-bottom: none;
}
.section-news-grid--item section {
  vertical-align: top;
}
.section-news-grid--item:last-child {
  border: none;
}
.section-news-grid--item h2 {
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  text-transform: none;
}
.section-news-grid--item:after {
  content: " ";
  display: block;
  clear: both;
}

.section-news-grid--date {
  font-size: 0.8em;
  font-weight: 400;
}

.section-news-grid--img {
  width: 100%;
}
.section-news-grid--img img {
  max-width: 100%;
  width: 100% !important;
}

.news-expand {
  font-size: 0.9em;
  font-weight: 600;
  text-decoration: none !important;
  text-transform: uppercase;
}

.news-expander {
  position: relative;
  top: 6px;
}
.news-expander:before {
  border-style: solid;
  border-width: 0.15em 0.15em 0 0;
  content: "";
  display: inline-block;
  height: 0.45em;
  left: 0.15em;
  position: relative;
  top: 0.15em;
  transform: rotate(-45deg);
  transition: all 0.1s ease-in-out;
  vertical-align: top;
  width: 0.45em;
}

.news-expander-before-add:before {
  left: 0;
  transform: rotate(45deg);
}

.news-expanded:before {
  top: 0;
  transform: rotate(135deg);
}

.section-news-grid--content {
  vertical-align: top;
}

@media (min-width: 48em) {
  .section-news-grid--item {
    margin: 0 3rem;
    padding: 3rem 0;
  }
  .section-news-grid--img {
    display: inline-block;
    float: left;
    padding: 0 1.5rem 0 0;
    width: 40%;
  }
  .section-news-grid--content {
    display: inline-block;
    float: right;
    padding: 0 0 0 1.5rem;
    width: 60%;
  }
}
.section-news-grid {
  background: #fff;
  overflow: auto;
  padding-top: 0;
  padding-bottom: 0;
  text-align: left;
}

.section-left-tab {
  --gutter: 0.75rem;
  background: #fff;
  padding-bottom: 0;
  padding-top: 0;
}
.section-left-tab:after {
  content: " ";
  display: block;
  clear: both;
}

.left-tab-heading {
  clear: both;
  font-size: 1rem;
  margin-bottom: 2em;
  width: 100%;
  border-bottom: 1px solid #9a9997;
  font-weight: 400;
}
.left-tab-heading span {
  color: #a31c35;
  font-weight: 600;
}

.left-tab-content {
  margin-bottom: 0;
  vertical-align: top !important;
  compose: single;
}
.left-tab-content h3, .left-tab-content .section-team-grid--content-inner h2, .section-team-grid--content-inner .left-tab-content h2 {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.left-tab-content p {
  margin-bottom: 2.5rem;
}
.left-tab-content em {
  font-size: 0.9em;
}

.left-tab-content-1col {
  margin-bottom: 0;
  vertical-align: top !important;
}
.left-tab-content-1col h3, .left-tab-content-1col .section-team-grid--content-inner h2, .section-team-grid--content-inner .left-tab-content-1col h2 {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.left-tab-content-1col p {
  margin-bottom: 2.5rem;
}
.left-tab-content-1col em {
  font-size: 0.9em;
}

.left-tab-section-active {
  background: #ededed;
  box-shadow: inset 0 6px 15px 0 rgba(0, 0, 0, 0.16);
  clear: both;
  overflow: hidden;
  padding: 1.5rem;
  text-align: left;
  vertical-align: top;
  width: 100%;
  display: block;
}

.left-tab-section {
  height: 0;
  overflow: hidden;
  padding: 0;
  display: none;
}

.left-tab-highlighter {
  background: #fff;
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
  vertical-align: middle;
  width: 100%;
  transition: 0.15s;
}
.left-tab-highlighter .hl-content {
  height: 100%;
  padding: 0.75rem 1.5rem;
  position: relative;
  width: 100%;
}
.left-tab-highlighter:focus {
  cursor: pointer;
}
.left-tab-highlighter:focus .hl-content:after {
  display: none;
}
.left-tab-highlighter:hover {
  cursor: pointer;
}
.left-tab-highlighter:hover .hl-content:after {
  display: none;
}
.left-tab-highlighter:focus + div .hl-content:after {
  display: none;
}
.left-tab-highlighter:hover + div .hl-content:after {
  display: none;
}

.hl-abbrev {
  border-radius: 50%;
  display: inline-block;
  font-size: 1.05em;
  height: 50px;
  line-height: 50px;
  margin-right: 0.75rem;
  text-align: center;
  vertical-align: middle;
  width: 50px;
}

.highlight-red {
  color: #a31c35;
}
.highlight-red .hl-content:after {
  display: none;
}
.highlight-red span {
  background-color: #a31c35;
  color: #fff;
}
.highlight-red:focus {
  background-color: #a31c35;
  color: #fff;
}
.highlight-red:focus span {
  background-color: #fff;
  color: #a31c35;
}
.highlight-red:hover {
  background-color: #a31c35;
  color: #fff;
}
.highlight-red:hover span {
  background-color: #fff;
  color: #a31c35;
}
.highlight-red.active {
  background-color: #a31c35;
  color: #fff;
}
.highlight-red.active .hl-content:after {
  display: none;
}
.highlight-red.active span {
  background-color: #fff;
  color: #a31c35;
}
.highlight-red + div + div .hl-content:after {
  display: none !important;
}

.highlight-gray {
  color: #3d3d38;
}
.highlight-gray:focus {
  background-color: #3d3d38;
  color: #fff;
}
.highlight-gray:focus span {
  background-color: #fff;
  color: #3d3d38;
}
.highlight-gray:hover {
  background-color: #3d3d38;
  color: #fff;
}
.highlight-gray:hover span {
  background-color: #fff;
  color: #3d3d38;
}
.highlight-gray span {
  background-color: #3d3d38;
  color: #fff;
}
.highlight-gray.active {
  background-color: #3d3d38;
  color: #fff;
}
.highlight-gray.active .hl-content:after {
  display: none;
}
.highlight-gray.active span {
  background-color: #fff;
  color: #3d3d38;
}
.highlight-gray + div + div .hl-content:after {
  display: none !important;
}

.highlight-green {
  color: #40503e;
}
.highlight-green span {
  background-color: #40503e;
  color: #fff;
}
.highlight-green:focus {
  background-color: #40503e;
  color: #fff;
}
.highlight-green:focus span {
  background-color: #fff;
  color: #40503e;
}
.highlight-green:hover {
  background-color: #40503e;
  color: #fff;
}
.highlight-green:hover span {
  background-color: #fff;
  color: #40503e;
}
.highlight-green.active {
  background-color: #40503e;
  color: #fff;
}
.highlight-green.active .hl-content:after {
  display: none;
}
.highlight-green.active span {
  background-color: #fff;
  color: #40503e;
}
.highlight-green + div + div .hl-content:after {
  display: none !important;
}

.highlight-blue {
  color: #233752;
}
.highlight-blue:focus {
  background-color: #233752;
  color: #fff;
}
.highlight-blue:focus span {
  background-color: #fff;
  color: #233752;
}
.highlight-blue:hover {
  background-color: #233752;
  color: #fff;
}
.highlight-blue:hover span {
  background-color: #fff;
  color: #233752;
}
.highlight-blue span {
  background-color: #233752;
  color: #fff;
}
.highlight-blue.active {
  background-color: #233752;
  color: #fff;
}
.highlight-blue.active .hl-content:after {
  display: none;
}
.highlight-blue.active span {
  background-color: #fff;
  color: #233752;
}
.highlight-blue.active + div + div .hl-content:after {
  display: none !important;
}

@media (min-width: 48em) {
  .left-tab-section-active {
    clear: none;
    display: inline-block;
    float: right;
    min-height: 620px;
    padding: 3rem;
    width: 60%;
  }
  .left-tab-section-active > div {
    max-width: 552px;
    width: 100%;
  }
  .left-tab-section {
    height: auto;
    padding: 3rem;
  }
  .mt0 {
    margin-top: 0;
  }
  .lt-2 {
    margin-top: -98px;
  }
  .lt-3 {
    margin-top: -196px;
  }
  .lt-4 {
    margin-top: -294px;
  }
  .left-tab-content {
    display: inline-block;
    padding-right: 2em;
    vertical-align: top;
    width: 50%;
    margin-bottom: 3.75rem;
  }
  .left-tab-content-1col {
    margin-bottom: 3.75rem;
  }
  .left-tab-highlighter {
    clear: left;
    display: block;
    float: left;
    position: relative;
    text-align: left;
    width: 40%;
  }
  .left-tab-highlighter .hl-content {
    float: right;
    max-width: 370px;
    padding: 1.5rem 0 1.5rem 1.5rem;
    width: 100%;
  }
  .left-tab-highlighter .hl-content:after {
    background: #233752;
    top: 0;
    content: " ";
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    width: 85%;
    z-index: 1;
  }
  .hl-abbrev {
    border-radius: 50%;
    display: inline-block;
    font-size: 1.05em;
    height: 50px;
    line-height: 50px;
    margin-right: 0.75rem;
    text-align: center;
    vertical-align: middle;
    width: 50px;
  }
}
.styled-table {
  font-size: 0.9rem;
  margin-bottom: 4.5rem !important;
  text-align: center;
}
.styled-table p {
  margin-bottom: 0;
}
.styled-table th {
  font-weight: 400;
}
.styled-table th[scope=col] {
  padding: 12px 0;
  width: 20%;
}
.styled-table th[scope=col] img {
  margin: 4px 0 0;
  max-width: 82%;
}
.styled-table th[scope=row] {
  font-size: 0.75rem;
  text-align: left;
  width: 25%;
  border-bottom: 1px solid #998c71;
  padding: 15px 3px;
}
.styled-table td {
  border-bottom: 1px solid #998c71;
  padding: 15px 3px;
  font-size: 0.8rem;
}
.styled-table tr td:last-child {
  color: #9a9997;
}

.timeline-dot, .milestone h2:after, .timeline:after {
  width: 12px;
  height: 12px;
  background-color: #9A9997;
  border-radius: 50%;
  content: "";
  display: block;
}

.timeline--wrap {
  padding: 0 0 70px 0;
  box-shadow: inset 0 20px 20px -20px rgba(0, 0, 0, 0.3), inset 0 -20px 20px -20px rgba(0, 0, 0, 0.05);
}
.timeline {
  position: relative;
  padding-top: 70px;
  padding-bottom: 60px;
}
@media (max-width: 640px) {
  .timeline {
    padding-bottom: 0;
  }
}
.timeline:before {
  content: "";
  position: absolute;
  left: calc(50% - 1px);
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #9A9997;
}
@media (max-width: 640px) {
  .timeline:before {
    left: 5px;
    height: calc(100% + 70px);
  }
}
.timeline:after {
  position: absolute;
  bottom: -6px;
  left: calc(50% - 6px);
}
@media (max-width: 640px) {
  .timeline:after {
    display: none;
  }
}
.timeline--decades {
  background-color: #3D4146;
  position: sticky;
  top: 80px;
  z-index: 5;
  overflow-x: scroll;
}
@media (max-width: 767px) {
  .timeline--decades {
    top: 0;
  }
}
.timeline--decades .decade {
  padding: 16px 19px;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  color: #B0B4BA;
  transition: 0.15s;
  display: block;
  text-decoration: none;
}
.timeline--decades .decade:hover {
  color: #fff;
}
.timeline--decades .decade.active {
  background-color: #A31C35;
  color: #fff;
}
.timeline--decades-inner {
  margin: 0 auto;
  width: fit-content;
  display: flex;
  gap: 4px;
  justify-content: flex-start;
}

.decade-marker {
  scroll-margin-top: 120px;
}

.milestone {
  display: flex;
  margin: 40px 0;
  gap: 64px;
  text-align: left;
  align-items: center;
}
.milestone--text {
  flex-basis: calc(100% - 32px);
}
.milestone--image {
  flex-basis: calc(100% - 32px);
}
.milestone--image img {
  width: 100%;
  height: auto;
  aspect-ratio: 468/312;
  object-fit: cover;
  margin: 0;
}
.milestone h2 {
  font-size: 22px;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 35px;
  color: #A31C35;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0;
}
.milestone h2:before, .milestone h2:after {
  position: absolute;
  content: "";
  display: block;
}
.milestone h2:before {
  left: 0;
  width: calc(100% + 32px);
  height: 1px;
  background-color: #9A9997;
  bottom: -5px;
}
.milestone h2:after {
  right: -32px;
  top: calc(100% - 1px);
  transform: translateX(50%);
}
.milestone p {
  font-size: 16px;
  line-height: 24px;
  color: #3f3f3f;
}
@media (min-width: 641px) {
  .milestone:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .milestone:nth-of-type(even) h2:before {
    left: auto;
    right: 0;
  }
  .milestone:nth-of-type(even) h2:after {
    right: auto;
    left: -32px;
    transform: translateX(-50%);
  }
}
.milestone.future {
  padding: 36px 0 64px;
  width: min(582px, 100%);
  margin: 0 auto;
  text-align: center;
  display: block;
}
.milestone.future h2:before {
  width: calc(100% - 80px);
  left: 40px;
}
.milestone.future h2:after {
  display: none;
}
@media (max-width: 640px) {
  .milestone {
    padding-left: 28px;
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 30px;
  }
  .milestone h2:before {
    width: calc(100% + 28px);
    left: -28px;
  }
  .milestone h2:after {
    left: -34px;
  }
  .milestone.future {
    text-align: left;
    padding-left: 28px;
    padding-top: 0;
  }
  .milestone.future h2:before {
    width: calc(100% + 28px);
    left: -28px;
  }
  .milestone.future h2:after {
    display: block;
  }
}

.page-404 {
  padding-top: 100px;
}
.page-404 h1 {
  color: #a31c35;
  font-size: 2rem;
  margin-bottom: 1em;
}
.page-404 p {
  max-width: 650px;
  margin: 0 auto;
}

.team-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 30px;
}
.team-new--box {
  cursor: pointer;
}
.team-new--box:hover {
  opacity: 0.8;
}
.team-new--wrap {
  background: #fff;
}
.team-new--photo {
  margin-bottom: 1.5rem;
  padding-top: 40px;
}
.team-new--photo img {
  aspect-ratio: 30/29;
  object-fit: cover;
  width: 100%;
  margin: 0;
  display: block;
}
.team-new--content-inner {
  min-height: 2.5em;
  margin: 0;
  vertical-align: top;
  border-left: 4px solid #a31c35;
  padding-left: 0.75rem;
  text-align: left;
}
.team-new--content-inner h2 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 4px;
  text-transform: uppercase;
  vertical-align: middle;
}
.team-new--title {
  font-size: 0.9em;
  line-height: 1.2;
  margin-bottom: 0;
  vertical-align: top;
}
.team-new--more {
  text-align: left;
  position: relative;
}
.team-new--more:before {
  content: "";
  position: absolute;
  inset: 0 -50vw;
  background: #f2f1ee;
  box-shadow: inset 0 4px 34px -5px rgba(0, 0, 0, 0.5);
}
.team-new--more.active .team-new--more-arrow-left,
.team-new--more.active .team-new--more-arrow-right {
  display: block;
}
.team-new--more.active .team-new--more-inner {
  max-height: 2000px;
  transition: 0.6s ease-in-out;
}
.team-new--more:nth-of-type(3n + 1) {
  --right-offset: 83.33%;
  --left-offset: 16.66%;
}
.team-new--more:nth-of-type(3n + 2) {
  --right-offset: 50%;
  --left-offset: 50%;
}
.team-new--more:nth-of-type(3n + 3) {
  --right-offset: 16.66%;
  --left-offset: 83.33%;
}
.team-new--more-arrow-left {
  border-top: 10px solid #fff;
  box-sizing: border-box;
  height: 0;
  line-height: 0;
  position: absolute;
  transition: all 0.5s ease-out;
  top: 0;
  z-index: 9999;
  width: 100vw;
  transform: skew(-45deg);
  transform-origin: top right;
  right: var(--right-offset);
  display: none;
}
.team-new--more-arrow-right {
  border-top: 10px solid #fff;
  box-sizing: border-box;
  height: 0;
  line-height: 0;
  position: absolute;
  transition: all 0.5s ease-out;
  top: 0;
  z-index: 9999;
  width: 100vw;
  transform: skew(45deg);
  transform-origin: top left;
  left: var(--left-offset);
  display: none;
}
.team-new--more-inner {
  display: flex;
  flex-direction: row-reverse;
  position: relative;
  z-index: 2;
  max-height: 0;
  overflow: hidden;
}
.team-new--list {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1.5rem;
  flex-basis: 35%;
}
.team-new--list li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.team-new--more-content {
  flex-basis: 65%;
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1.5rem;
}
.team-new--pdf {
  display: block;
  padding-top: 1em !important;
}
.team-new--pdf a {
  font-size: 0.8em;
  font-weight: 600;
  text-decoration: none !important;
  text-transform: uppercase;
}
.team-new--email {
  color: #a31c35;
  font-weight: 600;
}
.team-new--email a {
  color: #3f3f3f;
  font-weight: 400;
  text-decoration: none !important;
}

@media screen and (min-width: 769px) {
  .team-new--box:nth-of-type(1) {
    grid-area: gb1-1;
  }
  .team-new--more:nth-of-type(1) {
    grid-area: gm1;
  }
  .team-new--box:nth-of-type(2) {
    grid-area: gb1-2;
  }
  .team-new--more:nth-of-type(2) {
    grid-area: gm1;
  }
  .team-new--box:nth-of-type(3) {
    grid-area: gb1-3;
  }
  .team-new--more:nth-of-type(3) {
    grid-area: gm1;
  }
  .team-new--box:nth-of-type(4) {
    grid-area: gb2-1;
  }
  .team-new--more:nth-of-type(4) {
    grid-area: gm2;
  }
  .team-new--box:nth-of-type(5) {
    grid-area: gb2-2;
  }
  .team-new--more:nth-of-type(5) {
    grid-area: gm2;
  }
  .team-new--box:nth-of-type(6) {
    grid-area: gb2-3;
  }
  .team-new--more:nth-of-type(6) {
    grid-area: gm2;
  }
  .team-new--box:nth-of-type(7) {
    grid-area: gb3-1;
  }
  .team-new--more:nth-of-type(7) {
    grid-area: gm3;
  }
  .team-new--box:nth-of-type(8) {
    grid-area: gb3-2;
  }
  .team-new--more:nth-of-type(8) {
    grid-area: gm3;
  }
  .team-new--box:nth-of-type(9) {
    grid-area: gb3-3;
  }
  .team-new--more:nth-of-type(9) {
    grid-area: gm3;
  }
  .team-new--box:nth-of-type(10) {
    grid-area: gb4-1;
  }
  .team-new--more:nth-of-type(10) {
    grid-area: gm4;
  }
  .team-new--box:nth-of-type(11) {
    grid-area: gb4-2;
  }
  .team-new--more:nth-of-type(11) {
    grid-area: gm4;
  }
  .team-new--box:nth-of-type(12) {
    grid-area: gb4-3;
  }
  .team-new--more:nth-of-type(12) {
    grid-area: gm4;
  }
  .team-new--box:nth-of-type(13) {
    grid-area: gb5-1;
  }
  .team-new--more:nth-of-type(13) {
    grid-area: gm5;
  }
  .team-new--box:nth-of-type(14) {
    grid-area: gb5-2;
  }
  .team-new--more:nth-of-type(14) {
    grid-area: gm5;
  }
  .team-new--box:nth-of-type(15) {
    grid-area: gb5-3;
  }
  .team-new--more:nth-of-type(15) {
    grid-area: gm5;
  }
  .team-new--box:nth-of-type(16) {
    grid-area: gb6-1;
  }
  .team-new--more:nth-of-type(16) {
    grid-area: gm6;
  }
  .team-new--box:nth-of-type(17) {
    grid-area: gb6-2;
  }
  .team-new--more:nth-of-type(17) {
    grid-area: gm6;
  }
  .team-new--box:nth-of-type(18) {
    grid-area: gb6-3;
  }
  .team-new--more:nth-of-type(18) {
    grid-area: gm6;
  }
  .team-new--box:nth-of-type(19) {
    grid-area: gb7-1;
  }
  .team-new--more:nth-of-type(19) {
    grid-area: gm7;
  }
  .team-new--box:nth-of-type(20) {
    grid-area: gb7-2;
  }
  .team-new--more:nth-of-type(20) {
    grid-area: gm7;
  }
  .team-new--box:nth-of-type(21) {
    grid-area: gb7-3;
  }
  .team-new--more:nth-of-type(21) {
    grid-area: gm7;
  }
  .team-new--box:nth-of-type(22) {
    grid-area: gb8-1;
  }
  .team-new--more:nth-of-type(22) {
    grid-area: gm8;
  }
  .team-new--box:nth-of-type(23) {
    grid-area: gb8-2;
  }
  .team-new--more:nth-of-type(23) {
    grid-area: gm8;
  }
  .team-new--box:nth-of-type(24) {
    grid-area: gb8-3;
  }
  .team-new--more:nth-of-type(24) {
    grid-area: gm8;
  }
  .team-new--box:nth-of-type(25) {
    grid-area: gb9-1;
  }
  .team-new--more:nth-of-type(25) {
    grid-area: gm9;
  }
  .team-new--box:nth-of-type(26) {
    grid-area: gb9-2;
  }
  .team-new--more:nth-of-type(26) {
    grid-area: gm9;
  }
  .team-new--box:nth-of-type(27) {
    grid-area: gb9-3;
  }
  .team-new--more:nth-of-type(27) {
    grid-area: gm9;
  }
  .team-new--box:nth-of-type(28) {
    grid-area: gb10-1;
  }
  .team-new--more:nth-of-type(28) {
    grid-area: gm10;
  }
  .team-new--box:nth-of-type(29) {
    grid-area: gb10-2;
  }
  .team-new--more:nth-of-type(29) {
    grid-area: gm10;
  }
  .team-grid--more:nth-of-type(3n + 1) {
    --right-offset: 83.33%;
    --left-offset: 16.66%;
  }
  .team-grid--more:nth-of-type(3n + 2) {
    --right-offset: 50%;
    --left-offset: 50%;
  }
  .team-grid--more:nth-of-type(3n + 3) {
    --right-offset: 16.66%;
    --left-offset: 83.33%;
  }
  .team-new {
    grid-template-areas:  'gb1-1 gb1-2 gb1-3' 'gm1 gm1 gm1' 'gb2-1 gb2-2 gb2-3' 'gm2 gm2 gm2' 'gb3-1 gb3-2 gb3-3' 'gm3 gm3 gm3' 'gb4-1 gb4-2 gb4-3' 'gm4 gm4 gm4' 'gb5-1 gb5-2 gb5-3' 'gm5 gm5 gm5' 'gb6-1 gb6-2 gb6-3' 'gm6 gm6 gm6' 'gb7-1 gb7-2 gb7-3' 'gm7 gm7 gm7' 'gb8-1 gb8-2 gb8-3' 'gm8 gm8 gm8' 'gb9-1 gb9-2 gb9-3' 'gm9 gm9 gm9' 'gb10-1 gb10-2 gb10-3' 'gm10 gm10 gm10';
  }
  .team-new--list {
    padding-top: 45px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 768px) {
  .team-new--box:nth-of-type(1) {
    grid-area: gb1-1;
  }
  .team-new--more:nth-of-type(1) {
    grid-area: gm1;
  }
  .team-new--box:nth-of-type(2) {
    grid-area: gb1-2;
  }
  .team-new--more:nth-of-type(2) {
    grid-area: gm1;
  }
  .team-new--box:nth-of-type(3) {
    grid-area: gb2-1;
  }
  .team-new--more:nth-of-type(3) {
    grid-area: gm2;
  }
  .team-new--box:nth-of-type(4) {
    grid-area: gb2-2;
  }
  .team-new--more:nth-of-type(4) {
    grid-area: gm2;
  }
  .team-new--box:nth-of-type(5) {
    grid-area: gb3-1;
  }
  .team-new--more:nth-of-type(5) {
    grid-area: gm3;
  }
  .team-new--box:nth-of-type(6) {
    grid-area: gb3-2;
  }
  .team-new--more:nth-of-type(6) {
    grid-area: gm3;
  }
  .team-new--box:nth-of-type(7) {
    grid-area: gb4-1;
  }
  .team-new--more:nth-of-type(7) {
    grid-area: gm4;
  }
  .team-new--box:nth-of-type(8) {
    grid-area: gb4-2;
  }
  .team-new--more:nth-of-type(8) {
    grid-area: gm4;
  }
  .team-new--box:nth-of-type(9) {
    grid-area: gb5-1;
  }
  .team-new--more:nth-of-type(9) {
    grid-area: gm5;
  }
  .team-new--box:nth-of-type(10) {
    grid-area: gb5-2;
  }
  .team-new--more:nth-of-type(10) {
    grid-area: gm5;
  }
  .team-new--box:nth-of-type(11) {
    grid-area: gb6-1;
  }
  .team-new--more:nth-of-type(11) {
    grid-area: gm6;
  }
  .team-new--box:nth-of-type(12) {
    grid-area: gb6-2;
  }
  .team-new--more:nth-of-type(12) {
    grid-area: gm6;
  }
  .team-new--box:nth-of-type(13) {
    grid-area: gb7-1;
  }
  .team-new--more:nth-of-type(13) {
    grid-area: gm7;
  }
  .team-new--box:nth-of-type(14) {
    grid-area: gb7-2;
  }
  .team-new--more:nth-of-type(14) {
    grid-area: gm7;
  }
  .team-new--box:nth-of-type(15) {
    grid-area: gb8-1;
  }
  .team-new--more:nth-of-type(15) {
    grid-area: gm8;
  }
  .team-new--box:nth-of-type(16) {
    grid-area: gb8-2;
  }
  .team-new--more:nth-of-type(16) {
    grid-area: gm8;
  }
  .team-new--box:nth-of-type(17) {
    grid-area: gb9-1;
  }
  .team-new--more:nth-of-type(17) {
    grid-area: gm9;
  }
  .team-new--box:nth-of-type(18) {
    grid-area: gb9-2;
  }
  .team-new--more:nth-of-type(18) {
    grid-area: gm9;
  }
  .team-new--box:nth-of-type(19) {
    grid-area: gb10-1;
  }
  .team-new--more:nth-of-type(19) {
    grid-area: gm10;
  }
  .team-new--box:nth-of-type(20) {
    grid-area: gb10-2;
  }
  .team-new--more:nth-of-type(20) {
    grid-area: gm10;
  }
  .team-new--box:nth-of-type(21) {
    grid-area: gb11-1;
  }
  .team-new--more:nth-of-type(21) {
    grid-area: gm11;
  }
  .team-new--box:nth-of-type(22) {
    grid-area: gb11-2;
  }
  .team-new--more:nth-of-type(22) {
    grid-area: gm11;
  }
  .team-new--box:nth-of-type(23) {
    grid-area: gb12-1;
  }
  .team-new--more:nth-of-type(23) {
    grid-area: gm12;
  }
  .team-new--box:nth-of-type(24) {
    grid-area: gb12-2;
  }
  .team-new--more:nth-of-type(24) {
    grid-area: gm12;
  }
  .team-new--box:nth-of-type(25) {
    grid-area: gb13-1;
  }
  .team-new--more:nth-of-type(25) {
    grid-area: gm13;
  }
  .team-new--box:nth-of-type(26) {
    grid-area: gb13-2;
  }
  .team-new--more:nth-of-type(26) {
    grid-area: gm13;
  }
  .team-new--box:nth-of-type(27) {
    grid-area: gb14-1;
  }
  .team-new--more:nth-of-type(27) {
    grid-area: gm14;
  }
  .team-new--box:nth-of-type(28) {
    grid-area: gb14-2;
  }
  .team-new--more:nth-of-type(28) {
    grid-area: gm14;
  }
  .team-new--box:nth-of-type(29) {
    grid-area: gb15-1;
  }
  .team-new--more:nth-of-type(29) {
    grid-area: gm15;
  }
  .team-new {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:  'gb1-1 gb1-2' 'gm1 gm1' 'gb2-1 gb2-2' 'gm2 gm2' 'gb3-1 gb3-2' 'gm3 gm3' 'gb4-1 gb4-2' 'gm4 gm4' 'gb5-1 gb5-2' 'gm5 gm5' 'gb6-1 gb6-2' 'gm6 gm6' 'gb7-1 gb7-2' 'gm7 gm7' 'gb8-1 gb8-2' 'gm8 gm8' 'gb9-1 gb9-2' 'gm9 gm9' 'gb10-1 gb10-2' 'gm10 gm10' 'gb11-1 gb11-2' 'gm11 gm11' 'gb12-1 gb12-2' 'gm12 gm12' 'gb13-1 gb13-2' 'gm13 gm13' 'gb14-1 gb14-2' 'gm14 gm14' 'gb15-1 gb15-2' 'gm15 gm15' 'gb16-1 gb16-2' 'gm16 gm16';
  }
  .team-new--more:nth-of-type(2n + 1) {
    --right-offset: 75%;
    --left-offset: 25%;
  }
  .team-new--more:nth-of-type(2n + 2) {
    --right-offset: 25%;
    --left-offset: 75%;
  }
  .team-new--box:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(1) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--more:nth-of-type(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(4) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(5) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--more:nth-of-type(6) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(7) {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(8) {
    -ms-grid-row: 5;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(8) {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--more:nth-of-type(9) {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(10) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(10) {
    -ms-grid-row: 8;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(11) {
    -ms-grid-row: 7;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(11) {
    -ms-grid-row: 8;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--more:nth-of-type(12) {
    -ms-grid-row: 8;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(13) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(13) {
    -ms-grid-row: 10;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(14) {
    -ms-grid-row: 9;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(14) {
    -ms-grid-row: 10;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--more:nth-of-type(15) {
    -ms-grid-row: 10;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(16) {
    -ms-grid-row: 11;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(16) {
    -ms-grid-row: 12;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(17) {
    -ms-grid-row: 11;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(17) {
    -ms-grid-row: 12;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--more:nth-of-type(18) {
    -ms-grid-row: 12;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(19) {
    -ms-grid-row: 13;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(19) {
    -ms-grid-row: 14;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(20) {
    -ms-grid-row: 13;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(20) {
    -ms-grid-row: 14;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--more:nth-of-type(21) {
    -ms-grid-row: 14;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(22) {
    -ms-grid-row: 15;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(22) {
    -ms-grid-row: 16;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(23) {
    -ms-grid-row: 15;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(23) {
    -ms-grid-row: 16;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--more:nth-of-type(24) {
    -ms-grid-row: 16;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(25) {
    -ms-grid-row: 17;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(25) {
    -ms-grid-row: 18;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(26) {
    -ms-grid-row: 17;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(26) {
    -ms-grid-row: 18;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--more:nth-of-type(27) {
    -ms-grid-row: 18;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(28) {
    -ms-grid-row: 19;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(28) {
    -ms-grid-row: 20;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(29) {
    -ms-grid-row: 19;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(29) {
    -ms-grid-row: 20;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
}
@media screen and (min-width: 769px){
  .team-new--box:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(1) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .team-new--more:nth-of-type(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(4) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(5) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .team-new--more:nth-of-type(6) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(7) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(7) {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(8) {
    -ms-grid-row: 5;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(8) {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(9) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
  .team-new--more:nth-of-type(9) {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(10) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(10) {
    -ms-grid-row: 8;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(11) {
    -ms-grid-row: 7;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(11) {
    -ms-grid-row: 8;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(12) {
    -ms-grid-row: 7;
    -ms-grid-column: 3;
  }
  .team-new--more:nth-of-type(12) {
    -ms-grid-row: 8;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(13) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(13) {
    -ms-grid-row: 10;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(14) {
    -ms-grid-row: 9;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(14) {
    -ms-grid-row: 10;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(15) {
    -ms-grid-row: 9;
    -ms-grid-column: 3;
  }
  .team-new--more:nth-of-type(15) {
    -ms-grid-row: 10;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(16) {
    -ms-grid-row: 11;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(16) {
    -ms-grid-row: 12;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(17) {
    -ms-grid-row: 11;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(17) {
    -ms-grid-row: 12;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(18) {
    -ms-grid-row: 11;
    -ms-grid-column: 3;
  }
  .team-new--more:nth-of-type(18) {
    -ms-grid-row: 12;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(19) {
    -ms-grid-row: 13;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(19) {
    -ms-grid-row: 14;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(20) {
    -ms-grid-row: 13;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(20) {
    -ms-grid-row: 14;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(21) {
    -ms-grid-row: 13;
    -ms-grid-column: 3;
  }
  .team-new--more:nth-of-type(21) {
    -ms-grid-row: 14;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(22) {
    -ms-grid-row: 15;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(22) {
    -ms-grid-row: 16;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(23) {
    -ms-grid-row: 15;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(23) {
    -ms-grid-row: 16;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(24) {
    -ms-grid-row: 15;
    -ms-grid-column: 3;
  }
  .team-new--more:nth-of-type(24) {
    -ms-grid-row: 16;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(25) {
    -ms-grid-row: 17;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(25) {
    -ms-grid-row: 18;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(26) {
    -ms-grid-row: 17;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(26) {
    -ms-grid-row: 18;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(27) {
    -ms-grid-row: 17;
    -ms-grid-column: 3;
  }
  .team-new--more:nth-of-type(27) {
    -ms-grid-row: 18;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(28) {
    -ms-grid-row: 19;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(28) {
    -ms-grid-row: 20;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(29) {
    -ms-grid-row: 19;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(29) {
    -ms-grid-row: 20;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(1) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(3) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(4) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(5) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(5) {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(6) {
    -ms-grid-row: 5;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(6) {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(7) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(7) {
    -ms-grid-row: 8;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(8) {
    -ms-grid-row: 7;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(8) {
    -ms-grid-row: 8;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(9) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(9) {
    -ms-grid-row: 10;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(10) {
    -ms-grid-row: 9;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(10) {
    -ms-grid-row: 10;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(11) {
    -ms-grid-row: 11;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(11) {
    -ms-grid-row: 12;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(12) {
    -ms-grid-row: 11;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(12) {
    -ms-grid-row: 12;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(13) {
    -ms-grid-row: 13;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(13) {
    -ms-grid-row: 14;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(14) {
    -ms-grid-row: 13;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(14) {
    -ms-grid-row: 14;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(15) {
    -ms-grid-row: 15;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(15) {
    -ms-grid-row: 16;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(16) {
    -ms-grid-row: 15;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(16) {
    -ms-grid-row: 16;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(17) {
    -ms-grid-row: 17;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(17) {
    -ms-grid-row: 18;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(18) {
    -ms-grid-row: 17;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(18) {
    -ms-grid-row: 18;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(19) {
    -ms-grid-row: 19;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(19) {
    -ms-grid-row: 20;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .team-new--box:nth-of-type(20) {
    -ms-grid-row: 19;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(20) {
    -ms-grid-row: 20;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
}
@media only screen and (min-width: 480px) and (max-width: 768px){
  .team-new--box:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(1) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(2) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(3) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(4) {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(5) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(5) {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(6) {
    -ms-grid-row: 5;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(6) {
    -ms-grid-row: 6;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(7) {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(7) {
    -ms-grid-row: 8;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(8) {
    -ms-grid-row: 7;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(8) {
    -ms-grid-row: 8;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(9) {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(9) {
    -ms-grid-row: 10;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(10) {
    -ms-grid-row: 9;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(10) {
    -ms-grid-row: 10;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(11) {
    -ms-grid-row: 11;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(11) {
    -ms-grid-row: 12;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(12) {
    -ms-grid-row: 11;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(12) {
    -ms-grid-row: 12;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(13) {
    -ms-grid-row: 13;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(13) {
    -ms-grid-row: 14;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(14) {
    -ms-grid-row: 13;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(14) {
    -ms-grid-row: 14;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(15) {
    -ms-grid-row: 15;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(15) {
    -ms-grid-row: 16;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(16) {
    -ms-grid-row: 15;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(16) {
    -ms-grid-row: 16;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(17) {
    -ms-grid-row: 17;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(17) {
    -ms-grid-row: 18;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(18) {
    -ms-grid-row: 17;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(18) {
    -ms-grid-row: 18;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(19) {
    -ms-grid-row: 19;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(19) {
    -ms-grid-row: 20;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(20) {
    -ms-grid-row: 19;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(20) {
    -ms-grid-row: 20;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(21) {
    -ms-grid-row: 21;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(21) {
    -ms-grid-row: 22;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(22) {
    -ms-grid-row: 21;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(22) {
    -ms-grid-row: 22;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(23) {
    -ms-grid-row: 23;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(23) {
    -ms-grid-row: 24;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(24) {
    -ms-grid-row: 23;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(24) {
    -ms-grid-row: 24;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(25) {
    -ms-grid-row: 25;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(25) {
    -ms-grid-row: 26;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(26) {
    -ms-grid-row: 25;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(26) {
    -ms-grid-row: 26;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(27) {
    -ms-grid-row: 27;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(27) {
    -ms-grid-row: 28;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(28) {
    -ms-grid-row: 27;
    -ms-grid-column: 2;
  }
  .team-new--more:nth-of-type(28) {
    -ms-grid-row: 28;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .team-new--box:nth-of-type(29) {
    -ms-grid-row: 29;
    -ms-grid-column: 1;
  }
  .team-new--more:nth-of-type(29) {
    -ms-grid-row: 30;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
}
@media screen and (max-width: 768px) {
  .team-new--more-inner {
    flex-direction: column;
  }
  .team-new--more-content {
    margin: 0;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .team-new--list {
    margin: 0 !important;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .team-new {
    grid-template-columns: 1fr;
  }
}
#main {
  overflow: hidden;
}