:root {
  --default-copy: #1b1a19;
  --headings: #33487e;
  --active-color: #0fb5c3;
  --hover-color: #10c8d8;
  --decorations: #eb1c30;
  --dark-background: #33487e;
  --light-copy: #919090;
  --light-bg: #f4f4f1;
  --dividers: #e0e0e0;
  --white: white;
  --size: 0px;
}

body {
  color: var(--default-copy);
  font-family: Bitstreamveraserif roman, Georgia, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

h1 {
  color: var(--headings);
  margin-top: 0;
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: Montserrat, sans-serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 72px;
}

h2 {
  color: var(--headings);
  margin-top: 0;
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: Montserrat, sans-serif;
  font-size: 46px;
  font-weight: 500;
  line-height: 58px;
}

h3 {
  color: var(--headings);
  margin-top: 0;
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: Montserrat, sans-serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 46px;
}

h4 {
  color: var(--headings);
  margin-top: 0;
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: Montserrat, sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 38px;
}

h5 {
  color: var(--headings);
  margin-top: 0;
  margin-bottom: 8px;
  padding-top: 12px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

h6 {
  color: var(--headings);
  margin-top: 0;
  margin-bottom: 6px;
  padding-top: 8px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}

p {
  color: var(--default-copy);
  margin-bottom: 12px;
}

b, strong {
  font-family: 'Bitstreamveraserif';
  font-weight: 700;
}
h1 b, h1 strong,
h2 b, h2 strong,
h3 b, h3 strong,
h4 b, h4 strong,
h5 b, h5 strong,
h6 b, h6 strong {
  font-family: Montserrat, sans-serif;
}

a {
  color: var(--active-color);
  text-decoration: none;
  transition: all .2s;
}

a:hover {
  color: var(--hover-color);
  text-decoration: underline;
}

ul {
  margin-top: 24px;
  margin-bottom: 24px;
  padding-left: 0;
  font-size: 18px;
  line-height: 30px;
  list-style-type: none;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 20px;
}

li {
  background-image: url('../images/List-dot.svg');
  background-position: 0 11px;
  background-repeat: no-repeat;
  background-size: 6px;
  margin-bottom: 6px;
  padding-left: 24px;
}

li.fake-h1,
li.fake-h2,
li.fake-h3,
li.fake-h4,
li.fake-h5,
li.fake-h6 {
  padding-top: 0;
}

li *:first-child {
  margin-top: 0;
  padding-top: 0;
}

li *:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

label {
  color: var(--headings);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-top: 12px;
  font-family: Raleway;
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
  display: block;
}

blockquote {
  border-left: 4px solid var(--decorations);
  color: var(--headings);
  margin-top: 24px;
  margin-bottom: 24px;
  margin-left: -30px;
  padding: 0 0 0 26px;
  font-size: 26px;
  line-height: 38px;
}

.p-large {
  font-size: 24px;
  line-height: 36px;
}

.p-large.b-margin-36 {
  margin-bottom: 36px;
}

.p-small {
  flex: 0 auto;
  font-size: 14px;
  line-height: 26px;
}

.p-small.invert.opacity {
  color: rgba(255, 255, 255, .7);
  font-weight: 300;
}

.p-small.caption {
  margin-top: -4%;
  margin-bottom: 36px;
}

.utility-page-wrap {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.utility-page-content {
  width: 400px;
  text-align: center;
  flex-direction: column;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.style-guide-color {
  width: 100px;
  height: 100px;
  justify-content: center;
  align-items: center;
  margin-right: 24px;
  display: flex;
}

.style-guide-color.dark-bg {
  background-color: var(--dark-background);
}

.style-guide-color.active-color {
  background-color: var(--active-color);
}

.style-guide-color.headings {
  background-color: var(--headings);
}

.style-guide-color.default-copy {
  background-color: var(--default-copy);
}

.style-guide-color.light-copy {
  background-color: var(--light-copy);
}

.style-guide-color.hover-color {
  background-color: var(--hover-color);
}

.style-guide-color.light-grey-bg {
  background-color: var(--light-bg);
}

.style-guide-color.dividers {
  background-color: var(--dividers);
}

.style-guide-color.accent-color {
  background-color: var(--decorations);
}

.button {
  z-index: 1;
  min-width: 160px;
  background-color: var(--active-color);
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  margin-top: 12px;
  margin-bottom: 12px;
  padding: 16px 48px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  transition: all .25s;
  position: relative;
}

.button:hover {
  background-color: var(--hover-color);
  color: #fff;
  text-decoration: none;
  transform: scale(1.05);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .12);
}

.button.share {
  min-width: auto;
  margin-left: 6px;
  margin-right: 6px;
  padding: 6px 24px 6px 42px;
  font-size: 14px;
  font-weight: 500;
}

.button.share.facebook {
  background-image: url('../images/Facebook-Icon.svg');
  background-position: 18px;
  background-repeat: no-repeat;
}

.button.share.twitter {
  background-image: url('../images/Twitter-Icon.svg');
  background-position: 18px;
  background-repeat: no-repeat;
}

.button.share.linkedin {
  background-image: url('../images/LinkedIn-Icon.svg');
  background-position: 18px;
  background-repeat: no-repeat;
}

.button.horizontal {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 21px;
  padding-bottom: 21px;
}

.button.in-row {
  margin-left: 12px;
  margin-right: 12px;
}

.button.border {
  border: 2px solid var(--active-color);
  color: var(--headings);
  background-color: rgba(0, 0, 0, 0);
  padding-top: 14px;
  padding-bottom: 14px;
}

.button.border:hover {
  border-color: var(--hover-color);
  background-color: var(--hover-color);
  color: var(--white);
}

.button.large {
  min-width: 250px;
  margin-left: 24px;
  margin-right: 24px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.button.dark {
  background-color: var(--dark-background);
}

.section {
  flex-flow: wrap;
  align-content: stretch;
  justify-content: center;
  align-items: stretch;
  padding-top: 5vw;
  padding-bottom: 5vw;
  position: relative;
  overflow: hidden;
}

.section.dark {
  background-color: var(--dark-background);
}

.section.dark.map {
  background-image: linear-gradient(rgba(51, 72, 126, .7), rgba(51, 72, 126, .7)), url('../images/Map.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, contain;
}

.section.narrow {
  padding-top: 2%;
  padding-bottom: 2%;
}

.section.no-t-padding,
.section.white + .section.white:not(.divider),
.section.tint + .section.tint:not(.divider) {
  padding-top: 0%;
}

.section.no-b-padding {
  padding-bottom: 0%;
}

.section.divider {
  border-top: 1px solid var(--dividers);
}

.section._404 {
  height: 100vh;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section.hero-default {
  background-color: var(--active-color);
  padding-top: 108px;
  padding-bottom: 36px;
}

.section.dark {
  background-color: var(--dark-background);
}

.section.hero-image {
  min-height: 50vh;
  background-image: linear-gradient(rgba(51, 72, 126, .4), rgba(51, 72, 126, .4)), linear-gradient(to top, rgba(0, 0, 0, .4), rgba(255, 255, 255, 0)), url('../images/Hero-3.jpg');
  background-position: center;
  background-repeat:  no-repeat;
  background-size:  cover;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.section.hero {
  min-height: 45vh;
  background-color: var(--active-color);
  justify-content: flex-start;
  align-items: center;
  padding-top: 8%;
  padding-bottom: 8%;
  display: flex;
}

.section.tint {
  background-color: var(--light-bg);
}

.section.title {
  background-color: var(--active-color);
  padding-top: 36px;
  padding-bottom: 36px;
}

.section.hero-image-standalone {
  min-height: 50vh;
  background-image: linear-gradient(rgba(51, 72, 126, .4), rgba(51, 72, 126, .4)), linear-gradient(to top, rgba(0, 0, 0, .4), rgba(255, 255, 255, 0)), url('../images/Hero-3.jpg');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.section.hero-image-max {
  min-height: 90vh;
  background-image: linear-gradient(rgba(51, 72, 126, .4), rgba(51, 72, 126, .4)), linear-gradient(to top, rgba(0, 0, 0, .4), rgba(255, 255, 255, 0)), url('../images/Hero-4.jpg');
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.fluid-cell {
  text-align: left;
  flex: 1;
  justify-content: center;
  padding: 2vw;
}

.fluid-cell._67-p {
  width: 66.7%;
  flex: 0 auto;
}

.fluid-cell.no-b-padding {
  padding-bottom: 0%;
}

.fluid-cell._33-p {
  width: 33.3%;
  flex: 0 auto;
}

.fluid-cell._50-p {
  width: 50%;
  flex: 0 auto;
}

.fluid-cell.inline-cta {
  text-align: center;
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 6%;
  margin-bottom: 6%;
  padding: 4%;
  transition: all .2s;
  display: flex;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .04);
}

.fluid-cell.inline-cta:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, .08);
}

.fluid-cell._45-p {
  width: 45%;
  flex: 0 auto;
}

.fluid-cell._25-p {
  width: 25%;
  flex: 0 auto;
}

.fluid-cell.intro {
  width: 70%;
  text-align: center;
  flex: 0 auto;
  margin-left: 15%;
  margin-right: 15%;
}

.fluid-cell.slider-wrap {
  width: 70%;
  flex: 0 auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.fluid-cell.center-object {
  justify-content: center;
  align-items: center;
  display: flex;
}

.fluid-cell.block {
  background-color: var(--dark-background);
  margin: 2%;
  padding: 0%;
}

.fluid-cell.block.tint {
  background-color: var(--light-bg);
}

.fluid-cell.block._33-p {
  width: 29.3%;
}

.fluid-cell._100-p {
  width: 100%;
  flex: 0 auto;
}

.fluid-cell.inline-cta {
  background-color: var(--dark-background);
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 6%;
  margin-bottom: 6%;
  padding: 4%;
  transition: all .2s;
  display: flex;
}

.fluid-cell.inline-cta:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, .08);
}

.fluid-cell._70-p {
  width: 70%;
  flex: 0 auto;
}

.fluid-cell.filter {
  width: 100%;
  flex: 0 auto;
  justify-content: space-between;
  align-items: center;
  padding-top: 0%;
  padding-bottom: 0%;
  display: flex;
}

.fluid-cell.buttons-wrap {
  width: 100%;
  text-align: center;
  flex: 0 auto;
  margin-top: -2px;
  padding-top: 0%;
}

.fluid-cell.counter-block {
  min-width: 160px;
  border: 1px solid var(--dividers);
  text-align: center;
  flex: 0 auto;
  margin: 2vw;
  padding: 2vw 3vw;
}

.fluid-cell.inline-gallery {
  width: 70%;
  flex-flow: wrap;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1vw;
  display: flex;
}

.fluid-cell.logo-wrap,
.fluid-cell.logo-wrap a {
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.fluid-cell.logo-wrap._100-p {
  width: 100%;
}

.fluid-cell.logo-wrap._50-p {
  width: 50%;
}

.fluid-cell.logo-wrap._33-p {
  width: 33%;
}

.fluid-cell.logo-wrap._25-p {
  width: 25%;
}

.fluid-cell.logo-wrap._20-p {
  width: 20%;
}

.fluid-cell.logo-wrap._16-p {
  width: 16.66%;
}

.fluid-cell.cd-intro {
  text-align: center;
  width: 70%;
  padding: 24px;
}

.invert {
  color: #fff;
}

.invert.opacity {
  color: rgba(255, 255, 255, .8);
  color: rgba(255, 255, 255, .7);
}

.subheading {
  color: var(--active-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.subheading.deco {
  background-image: url('../images/Dot.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  padding-left: 36px;
}

.subheading.deco.center {
  background-position: 50% 0;
  padding-top: 36px;
  padding-left: 0;
}

.subheading.date {
  margin-bottom: -6px;
  padding-top: 12px;
  font-size: 16px;
  line-height: 26px;
}

.subheading.dark {
  color: var(--headings);
}

.nav-link {
  color: var(--headings);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  margin-left: 18px;
  margin-right: 18px;
  padding-top: 6px;
  padding-bottom: 6px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  transition: all .2s;
  display: inline-block;
}

.nav-link:hover {
  border-bottom-color: var(--hover-color);
  color: var(--headings);
  text-decoration: none;
}

.nav-link.w--current {
  border-bottom-color: var(--hover-color);
}

.nav-link.last {
  background-image: none;
  background-repeat: repeat;
  margin-right: 0;
  padding-right: 0;
}

.nav-link.floating {
  padding-top: 24px;
  padding-bottom: 24px;
}

.nav-link.language {
  border-bottom-color: var(--decorations);
  background-image: url('../images/Arrow-red-down-icon.svg');
  background-position: 100%;
  background-repeat: no-repeat;
}

.nav-link.button {
  min-width: auto;
  color: var(--white);
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 24px;
  padding-right: 24px;
  font-weight: 600;
}

.container {
  z-index: 3;
  max-width: 1400px;
  flex-wrap: wrap;
  flex: 1;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  padding-left: 4vw;
  padding-right: 4vw;
  display: flex;
}

.container.center-all {
  justify-content: center;
  align-items: center;
}

.container.center {
  justify-content: center;
}

.container.center-vertical {
  align-items: center;
}

.container._w-logos, .container.stretch {
  align-items: stretch;
}

.drop-child-link {
  width: 100%;
  border-bottom: 1px solid var(--dividers);
  color: var(--headings);
  cursor: pointer;
  padding: 14px 24px;
  font-size: 16px;
  transition: all .2s;
}

.drop-child-link:hover {
  background-color: var(--white);
  color: var(--hover-color);
  text-decoration: none;
}

.drop-child-link.last {
  border-bottom-style: none;
}

.drop-child-link.nav {
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-color: rgba(255, 255, 255, .3);
}

.dropdown-list {
  box-shadow: 1px 1px 3px #000;
}

.dropdown-list.w--open {
  box-shadow: 0 12px 36px rgba(0, 0, 0, .12);
}

.dropdown-list.main-nav {
  margin-top: 12px;
  padding: 12px 24px;
  transition: all .2s;
}

.dropdown-list.main-nav.w--open {
  background-color: var(--hover-color);
  top: 12px;
  bottom: auto;
  left: 0%;
  right: auto;
}

.nav-bar {
  background-color: #fff;
  padding-left: 4%;
}

.ordered-item {
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  padding-left: 4px;
}

.fake-h1 {
  color: var(--headings);
  margin-bottom: 24px;
  padding-top: 12px;
  font-family: Montserrat, sans-serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 72px;
}

.fake-h2 {
  color: var(--headings);
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: Montserrat, sans-serif;
  font-size: 46px;
  font-weight: 500;
  line-height: 58px;
}

.fake-h3 {
  color: var(--headings);
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: Montserrat, sans-serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 46px;
}

.fake-h3.no-t-padding {
  padding-top: 0;
}

.fake-h3.invert {
  color: var(--white);
}

.fake-h4 {
  color: var(--headings);
  margin-bottom: 12px;
  padding-top: 12px;
  font-family: Montserrat, sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 38px;
}

.fake-h4.invert {
  color: #fff;
}

.fake-h4._w-bg {
  line-height: 34px;
}

.fake-h5 {
  color: var(--headings);
  margin-bottom: 8px;
  padding-top: 12px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

.fake-h5:hover {
  text-decoration: none;
}

.style-guide-color-block {
  border-top: 1px solid var(--dividers);
  align-items: center;
  margin-top: 24px;
  margin-bottom: 24px;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
}

.style-guide-color-block.first {
  border-top: 1px solid var(--dividers);
  padding-top: 24px;
}

.nav-menu {
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding-top: 36px;
  padding-bottom: 36px;
  padding-right: 4%;
}

.link {
  border-bottom: 1px solid var(--active-color);
  color: var(--headings);
  letter-spacing: 1px;
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  transition: all .2s;
  display: inline-block;
}

.link:hover {
  border-bottom-color: var(--headings);
  color: var(--active-color);
  text-decoration: none;
}

.link.invert {
  color: var(--hover-color);
  border-bottom-color: #fff;
}

.link.invert:hover {
  border-bottom-color: var(--hover-color);
  color: #fff;
}

.link.in-tooltip {
  margin-top: 0;
  font-size: 14px;
  line-height: 20px;
}

.center {
  text-align: center;
}

._50-percent {
  width: 50%;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: var(--active-color);
  border-radius: 100px;
  margin-top: 24px;
  margin-bottom: 12px;
  margin-right: 12px;
  transition: all .2s;
}

.social-icon:hover {
  background-color: var(--hover-color);
}

.social-icon.twitter {
/*  background-image: url('../images/Twitter-Icon.svg');*/
  background-image: url('../images/X-Icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
}

.social-icon.linkedin {
  background-image: url('../images/LinkedIn-Icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
}

.social-icon.facebook {
  background-image: url('../images/Facebook-Icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
}

.social-icon.instagram {
  background-image: url('../images/IG-Icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.social-icon.tiktok {
  background-image: url('../images/TikTok-Icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
}

.fake-h6 {
  color: var(--headings);
  margin-bottom: 6px;
  padding-top: 8px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}

.fake-h6:hover {
  text-decoration: none;
}

.logo-img.float-bar {
  margin-top: 0;
}

.floating-nav-bar {
  z-index: 1111;
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  padding: 12px 4%;
  display: flex;
  position: fixed;
  top: -120px;
  left: 0;
  right: 0;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .04);
}

.footer-link {
  color: rgba(255, 255, 255, .7);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  padding-top: 8px;
  padding-bottom: 8px;
  text-decoration: none;
  display: block;
}

.footer-link:hover {
  border-bottom-color: var(--hover-color);
  color: #fff;
  text-decoration: none;
}

.hide-desktop {
  display: none;
}

.dropdown-nav {
  padding: 0;
}

.dropdown-nav.if-icon {
  padding-right: 24px;
}

.dropdown-nav-link {
  color: var(--headings);
  transition: all .2s;
}

.dropdown-nav-link:hover {
  color: var(--hover-color);
  text-decoration: none;
}

.slide-nav {
  font-size: 10px;
  line-height: 10px;
}

.slider {
  width: auto;
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  margin-bottom: 36px;
  position: static;
}

.right-arrow {
  width: 36px;
  height: 36px;
  background-image: url('../images/Arrow-right.svg');
  background-position: 53%;
  background-repeat: no-repeat;
  margin-top: auto;
  margin-bottom: auto;
  transition: all .2s;
  position: absolute;
  bottom: 0;
  right: 60px;
}

.right-arrow:hover {
  background-image: url('../images/Arrow-right-hover.svg');
  transform: translate(6px);
}

.right-arrow.invert {
  border-color: var(--active-color);
  background-image: url('../images/Arrow-yellow-right-icon.svg');
}

.left-arrow {
  width: 36px;
  height: 36px;
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/Arrow-left.svg');
  background-position: 47%;
  background-repeat: no-repeat;
  margin-top: auto;
  margin-bottom: auto;
  transition: all .2s;
  position: absolute;
  top: 0;
  left: 60px;
}

.left-arrow:hover {
  background-image: url('../images/Arrow-left-hover.svg');
  transform: translate(-6px);
}

.left-arrow.invert {
  border-color: var(--active-color);
  background-image: url('../images/Arrow-yellow-left-icon.svg');
}

.slide {
  text-align: center;
  padding-left: 3px;
  padding-right: 3px;
}

.icon-img {
  margin-bottom: 12px;
}

.logo-desktop {
  margin-top: 18px;
}

.section-bg-img {
  width: 50%;
  height: 100%;
  background-image: url('../images/IMG-2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  overflow: hidden;
}

.link-circle {
  width: 36px;
  height: 36px;
  float: left;
  background-color: var(--active-color);
  border-radius: 36px;
  justify-content: center;
  align-items: center;
  margin-right: 18px;
  display: flex;
  overflow: hidden;
}

.cta-link {
  color: var(--headings);
  text-transform: uppercase;
  align-items: center;
  font-family: Nunito;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  display: inline-block;
}

.cta-link:hover {
  color: var(--active-color);
  text-decoration: none;
}

.link-text {
  float: right;
  margin-top: 8px;
  display: inline-block;
}

.grid-gallery {
  flex-flow: row;
  align-items: stretch;
  display: none;
}

.grid-cell {
  flex-direction: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
}

.hide {
  display: none;
}

.right-arrow-slider {
  width: 36px;
  height: 12px;
  background-image: url('../images/Arrow-right.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  transition: all .2s;
  position: absolute;
  bottom: -36px;
  left: 36px;
}

.right-arrow-slider:hover {
  background-image: url('../images/Arrow-right-hover.svg');
  transform: translate(6px);
}

.slider-gallery {
  height: 100%;
  background-color: var(--white);
  flex-direction: column-reverse;
  align-items: flex-start;
  position: relative;
}

.left-arrow-slider {
  width: 36px;
  height: 12px;
  background-image: url('../images/Arrow-left.svg');
  background-position: 0;
  background-repeat: no-repeat;
  margin-bottom: 0;
  transition: all .2s;
  position: absolute;
  bottom: -36px;
  left: 0;
}

.left-arrow-slider:hover {
  background-image: url('../images/Arrow-left-hover.svg');
  transform: translate(-6px);
}

.avatar-img {
  width: 84px;
  height: 84px;
  border-radius: 100%;
  margin-bottom: 12px;
}

.fake-h2-bg {
  color: #fff;
  margin-bottom: 12px;
  padding-top: 12px;
  line-height: 86px;
}

.pagination {
  justify-content: center;
  align-items: center;
  display: flex;
}

.page-no {
  color: var(--headings);
  border-bottom: 2px solid rgba(255, 255, 255, 0);
  padding: 2px 18px;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  line-height: 28px;
  transition: all .2s;
  display: block;
}

.page-no:hover {
  border-bottom-color: var(--hover-color);
  color: var(--hover-color);
  text-decoration: none;
}

.page-no.current {
  border-bottom: 2px solid var(--active-color);
}

.page-no.current:hover {
  color: var(--headings);
}

.heading-link {
  color: var(--headings);
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  transition: all .2s;
}

.heading-link:hover {
  border-bottom: 1px solid var(--hover-color);
  color: var(--headings);
  text-decoration: none;
}

.thumb-wrap {
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.in-text-img {
  min-width: 100%;
  margin: 6% auto;
  display: block;
}

.hamburger {
  width: 30px;
  height: 36px;
  background-image: url('../images/Hamburger.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  display: none;
}

.hamburger.close {
  background-image: url('../images/Close-icon_1.svg');
}

.menu-mobile {
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  display: none;
}

.right-arrow-2 {
  width: 48px;
  height: 48px;
  background-color: var(--active-color);
  background-image: url('../images/Double-arrow-right-white.svg');
  background-position: 53%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 100px;
  margin-top: auto;
  margin-bottom: auto;
  transition: all .2s;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 60px;
}

.right-arrow-2:hover {
  background-color: var(--hover-color);
}

.left-arrow-2 {
  width: 48px;
  height: 48px;
  background-color: var(--active-color);
  background-image: url('../images/Double-arrow-left-white.svg');
  background-position: 47%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 100px;
  margin-top: auto;
  margin-bottom: auto;
  transition: all .2s;
  position: absolute;
  top: 0;
  left: 60px;
}

.left-arrow-2:hover {
  background-color: var(--hover-color);
}

.number {
  color: var(--headings);
  font-family: Montserrat, sans-serif;
  font-size: 60px;
  font-weight: 800;
  line-height: 72px;
}

.number.invert {
  color: var(--white);
}

.play-button {
  width: 96px;
  height: 96px;
  background-color: rgba(15, 181, 195, .9);
  background-image: url('../images/Play-icon.svg');
  background-position: 54%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 120px;
  position: absolute;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .3);
}

.play-button:hover {
  background-color: var(--hover-color);
  transform: translate(0, -6px);
}

.scroll-down {
  width: 24px;
  height: 48px;
  border: 4px solid var(--white);
  border-radius: 20px;
  position: absolute;
  top: auto;
  bottom: 6%;
  left: auto;
  right: auto;
}

.mouse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--white);
  border-radius: 20px;
  position: absolute;
  top: 8px;
  bottom: auto;
  left: 5px;
  right: auto;
}

.form-item-wrap {
  width: 98%;
  margin-left: 1%;
  margin-right: 1%;
  padding-top: 6px;
  padding-bottom: 6px;
}

.form-item-wrap.half {
  width: 48%;
}

.form-block {
  margin-bottom: 0;
}

.form {
  text-align: left;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.text-field {
  border-style: none none solid;
  border-width: 1px 1px 2px;
  border-color: black black var(--dark-background);
  background-color: var(--light-bg);
  padding: 30px 24px;
  font-size: 16px;
  line-height: 28px;
  transition: all .2s;
}

.text-field:focus {
  border-color: #c52026 #c52026 var(--hover-color);
}

.text-field::-ms-input-placeholder {
  color: var(--light-copy);
}

.text-field::placeholder {
  color: var(--light-copy);
}

.text-field.text-area {
  min-height: 120px;
  padding-top: 18px;
}

.text-field.horizontal {
  margin-bottom: 0;
  margin-right: 24px;
}

.faqs-dropdown {
  display: block;
}

.faqs-toogle {
  width: 100%;
  border-bottom: 1px solid var(--active-color);
  background-image: url('../images/Down-arrow_1.svg');
  background-position: 97%;
  background-repeat: no-repeat;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 0;
  transition: all .2s;
}

.faqs-toogle:hover {
  border-bottom-color: var(--headings);
}

.faqs-toogle.w--open {
  background-image: url('../images/Up-arrow.svg');
  border-bottom-color: #fff;
}

.fags-info {
  background-color: rgba(0, 0, 0, 0);
  position: relative;
}

.subnav-dropdown {
  color: #052135;
  background-color: rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: center;
  margin-right: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  display: flex;
}

.dropdown-toggle {
  width: 100%;
  padding: 6px 24px;
  font-size: 16px;
  line-height: 28px;
}

.dropdown-list-subnav {
  background-color: rgba(0, 0, 0, 0);
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: static;
}

.dropdown-link-x {
  border: 2px solid var(--active-color);
  color: var(--headings);
  text-transform: uppercase;
  cursor: pointer;
  margin-left: 24px;
  margin-right: 0;
  padding-left: 24px;
  padding-right: 24px;
  font-family: Nunito;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  transition: all .2s;
}

.dropdown-link-x:hover {
  border-color: var(--hover-color);
  background-color: var(--hover-color);
  color: var(--white);
  text-decoration: none;
}

.filter-wrap {
  border-top: 1px solid var(--dividers);
  flex-flow: wrap;
  align-content: stretch;
  justify-content: center;
  align-items: stretch;
  padding-top: 2%;
  padding-bottom: 2%;
  position: relative;
}

.filter-wrap.last {
  border-bottom: 1px solid var(--dividers);
}

.filter-container {
  z-index: 3;
  max-width: 1400px;
  flex-wrap: wrap;
  flex: 1;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  padding-left: 4vw;
  padding-right: 4vw;
  display: flex;
}

.hero-bg-img {
  width: 50%;
  height: 100%;
  background-image: url('../images/IMG-1.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  overflow: hidden;
}

.heading-deco {
  background-image: url('../images/Heading-Deco_1.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  padding-top: 42px;
}

.heading-deco.center {
  background-position: 50% 0;
}

.large-hero-h {
  color: var(--white);
  padding-right: 5%;
  font-size: 70px;
  line-height: 82px;
}

.flip-block {
  width: 29.3%;
  height: 430px;
  perspective: 1000px;
  justify-content: center;
  margin: 2%;
  position: relative;
}

.flip-block._4-in-row {
  width: 21%;
}

.flip-block-img {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(2, 2, 2, 0) 25%, rgba(0, 0, 0, .7)), url('../images/Screen-Shot-2020-12-15-at-15.13.07.png');
  background-position: top center;
  background-repeat: repeat, no-repeat;
  background-size: cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.flip-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.flip-copy-wrap {
  z-index: 1;
  position: absolute;
  top: auto;
  bottom: 24px;
  left: 36px;
  right: 36px;
}

.flip-side {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  perspective: 1200px;
  padding: 36px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.flip-side.back {
  background-color: var(--dark-background);
  transform-style: preserve-3d;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.flip-side.front {
  background-color: #fff;
  transform: rotate(0);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .12);
}

.flip-side.front.member {
  text-align: center;
}

.section-gallery {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.gallery-thumb-wrap {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.thumb-in-cell {
  min-width: 100%;
  margin-bottom: 24px;
}

.logo-footer {
  margin-bottom: 36px;
}

.featured-img {
  min-width: 100%;
  display: block;
}

.share-container {
  z-index: 3;
  width: 1400px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 4vw;
  padding-right: 4vw;
  display: flex;
  position: relative;
}

.sticky-share {
  z-index: 999;
  width: 100%;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
  box-shadow: 0 -3px 12px rgba(0, 0, 0, .12);
}

.text-bg {
  background-color: var(--active-color);
  box-shadow: 10px 0 0 0 var(--active-color), -10px 0 0 0 var(--active-color);
  color: var(--white);
}

.nav-drop {
  padding: 0;
}

.nav-drop-list.w--open {
  background-color: var(--white);
  margin-top: 9px;
  box-shadow: 8px 8px 36px rgba(0, 0, 0, .2);
}

.drop-parent-link {
  color: var(--headings);
}

.drop-parent-link:hover {
  color: var(--headings);
  text-decoration: none;
}

.in-cell-block {
  width: 100%;
  padding: 3vw;
}

.in-cell-block.border {
  border: 1px solid var(--dividers);
}

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

.form-horizontal-center {
  flex-direction: row;
  align-content: flex-start;
  align-items: center;
  padding-top: 12px;
  padding-left: 15%;
  padding-right: 15%;
  display: flex;
}

.heading-deco-2 {
  background-image: url('../images/Heading-Deco.svg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  padding-top: 42px;
}

.client-logo-img {
  margin: 18px 30px;
}

.heart-icon {
  margin-top: 24px;
  margin-bottom: 60px;
}

.sub-nav {
  z-index: 5;
  border-bottom: 1px solid var(--dividers);
  text-align: center;
  background-color: #fff;
  flex: 1;
  justify-content: center;
  padding-left: 2%;
  padding-right: 2%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.sub-nav-link {
  color: var(--headings);
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  padding: 24px 18px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  display: inline-block;
}

.sub-nav-link:hover {
  border-bottom-color: var(--hover-color);
  text-decoration: none;
}

.sub-nav-link.w--current {
  border-bottom-color: #24b7c1;
}

.dot-2 {
  width: 12px;
  height: 12px;
  background-color: var(--decorations);
  box-shadow: 0 0 36px 4px var(--decorations);
  border-radius: 24px;
  margin-left: -6px;
  position: absolute;
  top: 60%;
  left: 60%;
}

.map-dots-wrap {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  position: absolute;
}

.dot-3 {
  width: 12px;
  height: 12px;
  background-color: var(--decorations);
  box-shadow: 0 0 36px 4px var(--decorations);
  border-radius: 24px;
  margin-left: -6px;
  position: absolute;
  top: 20%;
  left: 20%;
}

.maptainer {
  max-width: 1200px;
  opacity: 1;
  flex-wrap: wrap;
  flex: 1;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.dot-1 {
  width: 12px;
  height: 12px;
  background-color: var(--decorations);
  box-shadow: 0 0 36px 4px var(--decorations);
  border-radius: 24px;
  margin-left: -6px;
  position: absolute;
  top: 50%;
  left: 50%;
}

.tooltip-text {
  z-index: 999;
  width: 200px;
  height: auto;
  background-color: var(--white);
  text-align: center;
  padding: 18px;
  position: absolute;
  top: 24px;
  left: -750%;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .12);
}

.dot-5 {
  width: 12px;
  height: 12px;
  background-color: var(--decorations);
  box-shadow: 0 0 36px 4px var(--decorations);
  border-radius: 24px;
  margin-left: -6px;
  position: absolute;
  top: 70%;
  left: 90%;
}

.dot-4 {
  width: 12px;
  height: 12px;
  background-color: var(--decorations);
  box-shadow: 0 0 36px 4px var(--decorations);
  border-radius: 24px;
  margin-left: -6px;
  position: absolute;
  top: 30%;
  left: 60%;
}

.show-tooltip {
  width: 300%;
  height: 300%;
  position: relative;
  top: -100%;
  left: -100%;
}

.menu-desktop {
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.form-horizontal {
  flex-direction: row;
  align-content: flex-start;
  align-items: center;
  padding-top: 36px;
  display: flex;
}

.modal-wrapper {
  z-index: 999;
  height: 100%;
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.modal {
  width: 100%;
  max-width: 60vw;
  padding-top: 36px;
  padding-bottom: 36px;
  display: block;
}

.modal.block {
  max-width: 70vw;
  background-color: var(--white);
  padding: 36px;
  position: relative;
  box-shadow: 7px 7px 40px rgba(0, 0, 0, .15);
}

.modal.in-ms-grid {
  max-width: 800px;
  background-color: var(--white);
  padding: 0;
  position: relative;
  box-shadow: 7px 7px 40px rgba(0, 0, 0, .15);

  max-height: 80%;
  display: flex;
  flex-direction: column;
}

.modal.in-ms-grid .modal-content {
  max-height: 100%;
  padding: 36px;
  overflow: scroll;
}

.close {
  width: 36px;
  height: 36px;
  background-color: var(--active-color);
  background-image: url('../images/Close-icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  border-radius: 36px;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  display: block;
}

.close:hover {
  background-color: var(--hover-color);
}

.close.in-block, .close.ms-grid-modal {
  width: 48px;
  height: 48px;
  position: absolute;
  top: -24px;
  bottom: auto;
  left: auto;
  right: -24px;
}

.menu-bar {
  z-index: 1000;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 24px 4vw;
  display: flex;
}

.menu-bar.b-border {
  border-bottom: 1px solid var(--dividers);
}

.avatar {
  width: 144px;
  height: 144px;
  border-radius: 150px;
  margin-top: 6px;
  margin-bottom: 18px;
  object-fit: cover;
  object-position: center top;
}

.tooltip-logo {
  margin-top: 12px;
  margin-bottom: 12px;
}

.slash-span {
  color: var(--dividers);
}

.underline-list-item {
  border-bottom: 1px solid var(--dividers);
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  padding-top: 6px;
  padding-bottom: 12px;
  padding-left: 0;
}

.underline-list-item.last {
  border-bottom-style: none;
}

.cont-gallery-item {
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 1vw;
  display: flex;
  overflow: hidden;
}

._100-p-image {
  min-width: 100%;
}

.list-link {
  color: var(--headings);
  background-image: url('../images/List-Link-Arrows.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  padding-left: 24px;
}

.list-link:hover {
  color: var(--active-color);
  text-decoration: none;
}

.section-bg-deco {
  z-index: -1;
  width: 50%;
  height: 90%;
  background-image: url('../images/Starling-background.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 5%;
  bottom: 0;
  left: auto;
  right: 0;
  overflow: hidden;
}

.back-link {
  color: var(--headings);
  letter-spacing: 1px;
  background-image: url('../images/Back-Arrow-Icon.svg');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-left: 24px;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  transition: all .2s;
  display: inline-block;
}

.back-link:hover {
  color: var(--active-color);
  text-decoration: none;
}

.breadcrumbs-bar {
  z-index: 1000;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  padding-left: 4vw;
  padding-right: 4vw;
  display: flex;
}

.notification-bar {
  width: 100%;
  min-height: 48px;
  background-color: var(--dark-background);
  color: var(--white);
  text-align: center;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
}

.notification-button {
  background-color: var(--active-color);
  color: var(--light-bg);
  margin-left: 12px;
  padding: 0 18px;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  display: inline-block;
}

.notification-button:hover {
  color: #fff;
  text-decoration: none;
}

.map-modal-wrapper {
  z-index: 999;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.overlay-grid {
  z-index: 10;
  width: 100%;
  height: 100%;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template: "Area"
                 "."
                 "."
                 / 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: space-between;
  align-items: stretch;
  justify-items: stretch;
  display: grid;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.gallery-grid-1 {
  width: 100%;
  height: auto;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex: 0 auto;
  grid-template: "IMG-1 IMG-1 IMG-2 IMG-3 ."
                 "IMG-1 IMG-1 IMG-2 IMG-3 ."
                 "IMG-1 IMG-1 IMG-2 IMG-5 IMG-5"
                 "IMG-1 IMG-1 IMG-2 IMG-5 IMG-5"
                 ". IMG-4 IMG-4 IMG-5 IMG-5"
                 ". IMG-4 IMG-4 IMG-5 IMG-5"
                 / minmax(0, 1fr) 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.gallery-grid-1:hover {
  text-decoration: none;
}

.grid-image {
  width: 100%;
  height: 100%;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.masonry-grid-1 {
  width: 100%;
  direction: ltr;
  column-count: 4;
}

.ms-grid-item {
  margin-bottom: 20px;
  display: inline-block;
}

.lightbox-link {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

.ms-grid-image {
  min-width: 100%;
}

.ms-grid-hover {
  background-color: rgba(15, 181, 195, .5);
  background-image: url('../images/Zoom-in.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.ms-grid-no-link {
  position: relative;
  overflow: hidden;
}

.ms-grid-link {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.gallery-grid-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid-text {
  width: 100%;
  height: 100%;
  background-color: var(--dark-background);
  color: var(--white);
  padding: 36px;
}

.gallery-grid-2 {
  width: 100%;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex: 0 auto;
  grid-template: "Area-1 Area-1 Area-1 Area-2 Area-2"
                 / minmax(0, 1fr) 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: grid;
}

.gallery-grid-2.rows-2 {
  grid-template: "Area-1 Area-1 Area-1 Area-2 Area-2"
                 "Area-3 Area-3 Area-4 Area-4 Area-4"
                 / minmax(0, 1fr) 1fr 1fr 1fr 1fr;
}

.gallery-grid-2.rows-3 {
  grid-template: "Area-1 Area-1 Area-1 Area-2 Area-2"
                 "Area-3 Area-3 Area-4 Area-4 Area-4"
                 "Area-5 Area-5 Area-5 Area-6 Area-6"
                 / minmax(0, 1fr) 1fr 1fr 1fr 1fr;
}

.gallery-grid-2.rows-4 {
  grid-template: "Area-1 Area-1 Area-1 Area-2 Area-2"
                 "Area-3 Area-3 Area-4 Area-4 Area-4"
                 "Area-5 Area-5 Area-5 Area-6 Area-6"
                 "Area-7 Area-7 Area-8 Area-8 Area-8"
                 / minmax(0, 1fr) 1fr 1fr 1fr 1fr;
}

.gallery-grid-2.rows-5 {
  grid-template: "Area-1 Area-1 Area-1 Area-2 Area-2"
                 "Area-3 Area-3 Area-4 Area-4 Area-4"
                 "Area-5 Area-5 Area-5 Area-6 Area-6"
                 "Area-7 Area-7 Area-8 Area-8 Area-8"
                 "Area-9 Area-9 Area-9 Area-10 Area-10"
                 / minmax(0, 1fr) 1fr 1fr 1fr 1fr;
}

.gallery-grid-2:hover {
  text-decoration: none;
}

.masonry-grid-2 {
  width: 100%;
  column-count: 3;
}

.masonry-caption {
  background-color: var(--light-bg);
  margin-bottom: 0;
  padding: 24px;
}

.card-button {
  width: 42px;
  height: 42px;
  background-color: var(--light-copy);
  cursor: pointer;
  border-radius: 48px;
  margin-left: auto;
  margin-right: auto;
  transition: all .25s;
  position: absolute;
  top: auto;
  bottom: -9px;
  left: 0%;
  right: 0%;
  overflow: hidden;
  box-shadow: 0 6px 36px rgba(0, 0, 0, .2);
}

.card-button:hover {
  background-color: var(--light-copy);
}

.carousel {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  padding: 12px;
}

.carousel-left-tint {
  z-index: 10;
  width: 100vw;
  height: 120%;
  filter: blur(10px);
  background-color: rgba(255, 255, 255, .6);
  position: absolute;
  top: -10%;
  bottom: 0%;
  left: auto;
  right: 100%;
}

.carousel-right-arrow {
  width: 42px;
  height: 42px;
  background-color: var(--active-color);
  transition: all .2s;
  position: absolute;
  top: -60px;
  bottom: auto;
  left: auto;
  right: 24px;
}

.carousel-right-arrow:hover {
  border-color: #221f1f;
  box-shadow: 0 6px 36px rgba(0, 0, 0, .2);
}

.carousel-item {
  width: 100%;
}

.mask {
  width: 25%;
  overflow: visible;
}

.mask._33-p {
  width: 33.3%;
}

.card-button-icon {
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.card-button-icon.expand {
  background-image: url('../images/Expand-icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.card-button-icon.collapse {
  background-image: url('../images/Collapse-icon.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  display: none;
}

.carousel-left-arrow {
  width: 42px;
  height: 42px;
  background-color: var(--active-color);
  transition: all .2s;
  position: absolute;
  top: -60px;
  bottom: auto;
  left: auto;
  right: 84px;
}

.carousel-left-arrow:hover {
  background-color: var(--hover-color);
  border-color: #221f1f;
  box-shadow: 0 6px 36px rgba(0, 0, 0, .2);
}

.card {
  height: 100%;
  color: #221f1f;
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px 30px 24px;
  font-size: 16px;
  line-height: 26px;
  display: flex;
  box-shadow: 0 11px 48px rgba(0, 0, 0, .1);
}

.expand-all-button {
  color: #221f1f;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 16px;
  line-height: 26px;
  position: absolute;
  top: -54px;
  bottom: auto;
  left: auto;
  right: 160px;
}

.expand-all-button:hover {
  color: #221f1f;
  text-decoration: none;
}

.carousel-cell {
  width: 100%;
  text-align: left;
  flex: 0 auto;
  justify-content: center;
  padding: 12px;
  position: relative;
}

.carousel-cell:hover {
  text-decoration: none;
}

.expandable {
  display: none;
}

.carousel-right-tint {
  z-index: 10;
  width: 100vw;
  height: 120%;
  filter: blur(10px);
  background-color: rgba(255, 255, 255, .6);
  position: absolute;
  top: -10%;
  bottom: 0%;
  left: 100%;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 24px;
}

.icon {
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.ms-grid-modal-wrap {
  z-index: 9999;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.title-block {
  width: 90%;
  padding-top: 48px;
  transition: all .25s;
  display: block;
}

.fluid-cell-2 {
  text-align: left;
  flex: 1;
  justify-content: center;
  padding: 24px 24px 12px;
}

.push-me-down {
  margin-top: 96px;
}

.text-block {
  height: 100%;
  border: 1px solid rgba(0, 0, 0, .15);
  padding: 48px 48px 36px;
  transition: all .25s;
  display: block;
}

.text-block.t-margin {
  margin-top: 4vw;
}

.text-block.invert {
  border-color: rgba(255, 255, 255, .15);
}

.stats-number {
  color: var(--headings);
  padding-top: 12px;
  font-family: Montserrat, sans-serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 72px;
}

.stats-number.invert {
  color: var(--white);
}

.stats-title-image {
  margin-bottom: 42px;
}

.clip-2 {
  padding-left: 24px;
  padding-right: 24px;
  overflow: hidden;
}

.cd-bg {
  background-color: var(--light-bg);
  background-image: linear-gradient(#f4f4f1e3, #f4f4f1e3), url('../images/Map.png');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  position: absolute;
  inset: 0%;
}

.cd-bg.dark {
  background-color: var(--dark-background);
  background-image: linear-gradient(#33487eb0, #33487eb0), url('../images/Map.png');
  background-position: 0 0, 0 0;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.cd-container {
  z-index: 3;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 7vh 48px 10vh;
  display: flex;
  position: relative;
}

.scroll-down-wrap {
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 72px;
  margin-top: 24px;
  margin-left: -18px;
  display: flex;
}

.layer {
  z-index: 1;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: auto 0% 0% auto;
}

.countdown-section {
  color: var(--default-copy);
  place-content: stretch center;
  align-items: flex-start;
  width: 100vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.cd-block {
  background-color: var(--white);
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 180px;
  display: flex;
  box-shadow: 0 20px 40px #0000001a;
}

.cd-wrap {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.countdown {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: center;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.underline-link {
  border-bottom: 1px dashed var(--headings);
}

.underline-link:hover {
  border-bottom-color: var(--hover-color);
  color: var(--headings);
  text-decoration: none;
}

.underline-link.invert {
  color: var(--active-color);
  border-bottom-color: #ffffff4d;
}

.underline-link.invert:hover {
  border-bottom-color: var(--active-color);
  color: var(--white);
}

.cd-number {
  color: var(--headings);
  font-family: Montserrat, sans-serif;
  font-size: 80px;
  font-weight: 800;
  line-height: 80px;
}

.cd-numder-info {
  color: var(--active-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.cd-title {
  font-size: 60px;
  line-height: 66px;
}

.cd-date {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  color: var(--headings);
  justify-content: center;
  align-items: center;
  font-family: Montserrat, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 38px;
  display: flex;
}

.cd-date.invert {
  color: var(--white);
}

.scroll-down-button {
  z-index: 1110;
  background-color: var(--active-color);
  border-radius: 60px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  position: absolute;
  inset: auto auto 30px;
  overflow: hidden;
}

.scroll-down-button:hover {
  background-color: var(--hover-color);
  transform: translate(0, -3px);
}

html.w-mod-js [data-ix="scroll-in"], html.w-mod-js [data-ix="scroll-in-later"] {
  opacity: 0;
  transform: translate(0, 36px);
}

html.w-mod-js [data-ix="hide-float-bar"] {
  opacity: 0;
}

html.w-mod-js [data-ix="nav-hidden"] {
  opacity: 0;
  display: none;
  transform: translate(100vh)scale(.7);
}

html.w-mod-js [data-ix="hide-tooltip"] {
  opacity: 0;
  transform: translate(0, 36px)scale(1.3);
}

html.w-mod-js [data-ix="modal-hidden"] {
  opacity: 0;
  display: none;
  transform: translate(100vh)scale(1.3);
}

@media screen and (min-width: 1440px) {
  .section {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .fluid-cell {
    padding: 24px;
  }

  .container {
    padding-left: 54px;
    padding-right: 54px;
  }

  .masonry-grid-2 {
    column-count: 4;
  }

  .carousel {
    padding: 24px;
  }

  .carousel-left-tint {
    right: 98%;
  }

  .carousel-right-tint {
    left: 98%;
  }

  .cd-container {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
  }

  .cd-date {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}

@media screen and (max-width: 991px) {
  body {
    background-position: -170px -20px;
  }

  h1 {
    font-size: 48px;
    line-height: 60px;
  }

  h2 {
    font-size: 40px;
    line-height: 52px;
  }

  h3 {
    font-size: 30px;
    line-height: 42px;
  }

  h4 {
    font-size: 24px;
    line-height: 36px;
  }

  a:hover {
    color: var(--hover-color);
  }

  .p-small.caption {
    margin-bottom: 24px;
  }

  .section.narrow {
    padding-top: 3%;
    padding-bottom: 3%;
  }

  .section.hero-default {
    padding-top: 84px;
    padding-bottom: 24px;
    position: relative;
  }

  .section.title {
    padding-top: 24px;
    padding-bottom: 24px;
    position: relative;
  }

  .section.hero-image-standalone {
    min-height: 40vh;
  }

  .fluid-cell {
    flex: 1;
  }

  .fluid-cell._67-p._100-p-tablet, .fluid-cell._33-p._100-p-tablet {
    width: 100%;
  }

  .fluid-cell.inline-cta {
    padding: 6%;
  }

  .fluid-cell.intro {
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
  }

  .fluid-cell.slider-wrap {
    width: 80%;
  }

  .fluid-cell.inline-cta {
    padding: 6%;
  }

  .fluid-cell._70-p, .fluid-cell.inline-gallery {
    width: 80%;
  }

  .fluid-cell.cd-intro {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
  }

  .nav-link {
    color: #fff;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    margin-left: 0;
    margin-right: 0;
    padding: 4% 0;
    font-size: 4vw;
    line-height: 100%;
  }

  .nav-link:hover {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, .2);
  }

  .nav-link.w--current {
    color: #fff;
    background-image: none;
    background-repeat: repeat;
    border-bottom-color: rgba(255, 255, 255, .2);
  }

  .nav-link.last {
    background-color: var(--active-color);
    color: #fff;
  }

  .nav-link.language {
    border-bottom-color: rgba(0, 0, 0, 0);
  }

  .menu-button {
    width: 48px;
    height: 48px;
    background-color: var(--hover-color);
    background-image: url('../images/Hamburger-icon.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    border-radius: 48px;
    margin-top: 12px;
    margin-bottom: 12px;
    margin-right: 12px;
    transition: all .2s;
  }

  .menu-button:hover {
    border-color: var(--hover-color);
  }

  .menu-button.w--open {
    background-color: var(--hover-color);
    background-image: url('../images/Close-icon.svg');
  }

  .container {
    perspective: 2200px;
  }

  .drop-child-link {
    color: rgba(255, 255, 255, .7);
    border-top: 1px solid rgba(255, 255, 255, .15);
    border-bottom-style: none;
    padding: 4% 0;
    font-size: 4vw;
    font-weight: 400;
  }

  .drop-child-link:hover {
    background-color: var(--dark-background);
    color: rgba(255, 255, 255, .7);
  }

  .drop-child-link.nav {
    color: #fff;
    background-color: rgba(0, 0, 0, 0);
    border-bottom-color: rgba(255, 255, 255, .2);
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .dropdown-list.w--open {
    box-shadow: none;
    margin-top: 20px;
  }

  .dropdown-list.main-nav {
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0);
  }

  .dropdown-list.main-nav.w--open {
    margin: 20px -4% -20px;
    padding: 0 4%;
  }

  .dropdown-list.main-nav.w--open:hover {
    box-shadow: none;
  }

  .nav-bar {
    background-color: #fff;
    padding: 0 0% 0 3%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .05);
  }

  .fake-h1 {
    font-size: 48px;
    line-height: 60px;
  }

  .fake-h2 {
    font-size: 40px;
    line-height: 52px;
  }

  .fake-h3 {
    font-size: 30px;
    line-height: 42px;
  }

  .fake-h4 {
    font-size: 24px;
    line-height: 36px;
  }

  .fake-h4._w-bg {
    line-height: 31px;
  }

  .nav-menu {
    background-color: var(--active-color);
    padding: 0 0%;
  }

  .link {
    margin-top: 6px;
  }

  .logo-img {
    width: 90px;
    margin-top: 6px;
  }

  .floating-nav-bar {
    display: none;
  }

  .dropdown-nav {
    color: #fff;
    background-image: url('../images/Arrow-Down-Icon.svg');
    background-position: 100%;
    background-repeat: no-repeat;
  }

  .dropdown-nav-link, .dropdown-nav-link:hover {
    color: #fff;
  }

  .right-arrow {
    right: 36px;
  }

  .left-arrow {
    left: 36px;
  }

  .logo-desktop {
    width: 160px;
    margin-top: 6px;
  }

  .right-arrow-slider {
    margin-bottom: 0;
  }

  .gallery-slide {
    margin-right: 6%;
  }

  .left-arrow-slider {
    margin-bottom: 0;
  }

  .fake-h2-bg {
    line-height: 70px;
  }

  .thumb-wrap {
    flex: 1;
  }

  .hamburger {
    display: block;
  }

  .hamburger.close {
    background-image: url('../images/Close-white-icon.svg');
    border-left-style: none;
    margin-top: 3%;
    margin-left: 0;
    margin-right: 4%;
    position: fixed;
    top: 0;
    right: 0;
  }

  .menu-mobile {
    z-index: 100;
    background-color: var(--dark-background);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 72px 4% 4%;
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .right-arrow-2 {
    right: 36px;
  }

  .left-arrow-2 {
    left: 36px;
  }

  .number {
    font-size: 48px;
    line-height: 60px;
  }

  .dropdown-link-x {
    margin-left: 12px;
    padding: 12px 18px;
  }

  .filter-wrap {
    padding-top: 3%;
    padding-bottom: 3%;
  }

  .filter-container {
    perspective: 2200px;
  }

  .heading-deco {
    padding-top: 36px;
  }

  .large-hero-h {
    padding-right: 0%;
    font-size: 48px;
    line-height: 60px;
  }

  .flip-block._4-in-row {
    width: 29.3%;
  }

  .flip-side {
    padding: 24px;
  }

  .nav-drop {
    width: 100%;
    background-image: url('../images/Down-arrow.svg');
    background-position: 96%;
    background-repeat: no-repeat;
    background-size: 24px;
    padding-right: 10vw;
  }

  .nav-drop-list.w--open {
    background-color: var(--dark-background);
    box-shadow: none;
    margin-top: 4%;
    margin-bottom: -4%;
    position: static;
  }

  .drop-parent-link, .drop-parent-link:hover {
    color: var(--white);
  }

  .form-horizontal-center {
    padding-left: 5%;
    padding-right: 5%;
  }

  .client-logo-img {
    width: 90px;
    margin-left: 18px;
    margin-right: 18px;
  }

  .sub-nav {
    flex: 1;
  }

  .sub-nav-link {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 14px;
    line-height: 26px;
  }

  .menu-desktop {
    display: none;
  }

  .form-horizontal {
    flex-direction: column;
    align-items: stretch;
    padding-top: 30px;
  }

  .modal-wrapper {
    align-items: flex-start;
    overflow: scroll;
  }

  .modal {
    max-width: 70vw;
    padding-top: 120px;
    padding-bottom: 48px;
  }

  .modal.block {
    max-width: 80vw;
    padding: 24px;
  }

  .modal.in-ms-grid {
    max-width: 80vw;
  }

  .modal.in-ms-grid .modal-content {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .menu-bar {
    padding: 18px 6vw;
  }

  .section-bg-deco {
    display: none;
  }

  .breadcrumbs-bar {
    padding-top: 18px;
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .notification-button {
    padding-left: 12px;
    padding-right: 12px;
  }

  .map-modal-wrapper {
    overflow: scroll;
  }

  .gallery-grid-1 {
    flex: 1;
    grid-template-columns: minmax(0, 1fr) 1fr 1fr 1fr 1fr 1fr;
    grid-template-areas: "IMG-1 IMG-1 IMG-2 IMG-2 IMG-3 IMG-3"
                         "IMG-1 IMG-1 IMG-2 IMG-2 IMG-3 IMG-3"
                         "IMG-1 IMG-1 IMG-2 IMG-2 IMG-5 IMG-5"
                         "IMG-1 IMG-1 IMG-2 IMG-2 IMG-5 IMG-5"
                         "IMG-4 IMG-4 IMG-2 IMG-2 IMG-5 IMG-5"
                         "IMG-4 IMG-4 IMG-2 IMG-2 IMG-5 IMG-5";
  }

  .masonry-grid-1 {
    column-count: 3;
  }

  .gallery-grid-text {
    padding: 24px 24px 30px;
  }

  .gallery-grid-2 {
    flex: 1;
  }

  .mask {
    width: 50%;
  }

  .title-block {
    width: 100%;
    padding-top: 0;
  }

  .fluid-cell-2 {
    flex: 1;
  }

  .push-me-down {
    margin-top: 0;
  }

  .text-block {
    padding: 36px 36px 24px;
  }

  .stats-number {
    font-size: 48px;
    line-height: 60px;
  }

  .cd-container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .layer {
    justify-content: flex-end;
    align-items: flex-start;
    height: 40%;
  }

  .cd-block {
    width: 160px;
    height: 160px;
  }

  .countdown {
    flex: 1;
  }

  .cd-number {
    font-size: 60px;
    line-height: 60px;
  }

  .cd-date {
    flex-flow: wrap;
    font-size: 24px;
    line-height: 36px;
  }
}

@media screen and (max-width: 767px) {
  body {
    background-position: -300px -20px;
  }

  h1 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 42px;
    line-height: 54px;
  }

  h2 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 34px;
    line-height: 46px;
  }

  h3 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 26px;
    line-height: 38px;
  }

  h4 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 22px;
    line-height: 34px;
  }

  h5 {
    padding-top: 8px;
    font-size: 18px;
    line-height: 28px;
  }

  blockquote {
    margin-left: 0;
    font-size: 20px;
    line-height: 32px;
  }

  .p-large {
    margin-bottom: 18px;
    font-size: 24px;
    line-height: 36px;
  }

  .p-small.caption {
    margin-top: -5%;
  }

  .button {
    margin-bottom: 12px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .button.share {
    width: 36px;
    height: 36px;
    border-radius: 36px;
    padding: 0;
  }

  .button.share.facebook, .button.share.twitter, .button.share.linkedin {
    background-position: 50%;
  }

  .button.horizontal {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .button.in-row {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .button.large {
    margin-top: 9px;
    margin-bottom: 9px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .section {
    padding-top: 6vw;
    padding-bottom: 6vw;
  }

  .section.narrow {
    padding-top: 4%;
    padding-bottom: 4%;
  }

  .section.hero-default {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .section.hero {
    min-height: auto;
    padding-top: 8%;
  }

  .section.hero-image-standalone {
    min-height: 30vh;
  }

  .fluid-cell {
    flex-direction: column;
    justify-content: flex-start;
    padding: 3vw;
  }

  .fluid-cell._67-p, .fluid-cell._33-p, .fluid-cell._50-p {
    width: 100%;
  }

  .fluid-cell.inline-cta {
    margin-top: 8%;
    margin-bottom: 8%;
    padding: 8%;
  }

  .fluid-cell._45-p, .fluid-cell._25-p {
    width: 100%;
  }

  .fluid-cell.intro {
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
  }

  .fluid-cell.slider-wrap {
    width: 94%;
  }

  .fluid-cell.block {
    margin: 3%;
  }

  .fluid-cell.block._33-p {
    width: 94%;
    padding: 5vw 6vw;
  }

  .fluid-cell.inline-cta {
    margin-top: 8%;
    margin-bottom: 8%;
    padding: 8%;
  }

  .fluid-cell._70-p {
    width: 100%;
  }

  .fluid-cell.filter {
    padding-left: 0%;
    padding-right: 0%;
  }

  .fluid-cell.buttons-wrap {
    display: flex;
  }

  .fluid-cell.inline-gallery {
    width: 100%;
  }

  .fluid-cell.logo-wrap {
    width: 50% !important;
  }

  .fluid-cell.cd-intro {
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .subheading {
    background-image: none;
    font-size: 16px;
    line-height: 26px;
  }

  .subheading.date {
    padding-top: 0;
  }

  .container {
    perspective: 5200px;
    flex-direction: column;
    align-items: stretch;
  }

  .container.center-all.reverse-mobile {
    flex-direction: column-reverse;
  }

  .container.center-vertical {
    justify-content: center;
  }

  .container._w-logos {
    flex-direction: row;
  }

  .dropdown-list.main-nav.w--open {
    margin-left: -6%;
    margin-right: -6%;
    padding-left: 6%;
    padding-right: 6%;
  }

  .nav-bar {
    padding-left: 6%;
  }

  .fake-h1 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 42px;
    line-height: 54px;
  }

  .fake-h2 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 34px;
    line-height: 46px;
  }

  .fake-h3 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 26px;
    line-height: 38px;
  }

  .fake-h4 {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 22px;
    line-height: 34px;
  }

  .fake-h4._w-bg {
    line-height: 29px;
  }

  .fake-h5 {
    padding-top: 8px;
    font-size: 18px;
    line-height: 30px;
  }

  .floating-nav-bar {
    padding-left: 6%;
    display: none;
  }

  .hide-mobile {
    display: none;
  }

  .footer-link {
    color: rgba(255, 255, 255, .8);
  }

  .footer-link:hover {
    color: #fff;
  }

  .hide-desktop {
    display: block;
  }

  .icon-img {
    margin-bottom: 0;
  }

  .section-bg-img {
    width: 100%;
    height: 400px;
    margin-top: 4%;
    margin-bottom: -6%;
    position: static;
  }

  .link-circle {
    margin-right: 12px;
  }

  .grid-gallery {
    width: 100%;
    flex-flow: wrap;
    align-items: stretch;
    display: flex;
    overflow: visible;
  }

  .grid-cell {
    width: 44%;
    flex-direction: column;
    justify-content: center;
    margin: 3%;
  }

  .right-arrow-slider, .left-arrow-slider {
    margin-bottom: 0;
  }

  .fake-h2-bg {
    margin-bottom: 8px;
    padding-top: 8px;
    line-height: 61px;
  }

  .thumb-img {
    min-width: 306px;
  }

  .thumb-wrap {
    flex-direction: column;
    justify-content: flex-start;
  }

  .in-text-img {
    margin-top: 8%;
    margin-bottom: 8%;
  }

  .hamburger.close {
    margin-top: 4%;
    margin-right: 6%;
  }

  .menu-mobile {
    padding-bottom: 6%;
    padding-left: 6%;
    padding-right: 6%;
  }

  .right-arrow-2 {
    width: 36px;
    height: 36px;
    display: none;
    right: 36px;
  }

  .left-arrow-2 {
    width: 36px;
    height: 36px;
    display: none;
    left: 36px;
  }

  .number {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 42px;
    line-height: 54px;
  }

  .form-item-wrap {
    padding-top: 3px;
    padding-bottom: 3px;
  }

  .text-field {
    padding: 24px 18px;
  }

  .text-field.horizontal {
    text-align: center;
    margin-right: 0;
  }

  .subnav-dropdown {
    width: 100%;
    background-color: var(--active-color);
    background-image: linear-gradient(to bottom, var(--hover-color), var(--active-color));
    display: block;
  }

  .dropdown-toggle {
    color: var(--white);
    background-image: url('../images/Arrow-Down-Icon.svg');
    background-position: 94%;
    background-repeat: no-repeat;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 6vw;
    font-family: Nunito;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
  }

  .dropdown-list-subnav {
    padding-left: 24px;
    padding-right: 24px;
    display: none;
    position: static;
  }

  .dropdown-list-subnav.w--open {
    flex-direction: column;
    padding-bottom: 24px;
    padding-left: 6vw;
    padding-right: 6vw;
    display: flex;
  }

  .dropdown-link-x {
    width: 100%;
    color: var(--white);
    border-style: none none solid;
    border-bottom-width: 1px;
    border-bottom-color: rgba(255, 255, 255, .2);
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .dropdown-link-x:hover {
    border-bottom-color: var(--white);
    color: var(--white);
    background-color: rgba(0, 0, 0, 0);
    text-decoration: none;
  }

  .filter-wrap {
    border-top-style: none;
    padding-top: 0%;
    padding-bottom: 0%;
  }

  .filter-wrap.last {
    border-bottom-style: none;
  }

  .filter-container {
    perspective: 5200px;
    flex-direction: column;
    align-items: stretch;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-bg-img {
    width: 100%;
    height: 440px;
    margin-top: 2%;
    margin-bottom: -8%;
    position: static;
  }

  .heading-deco {
    margin-top: 6px;
    padding-top: 24px;
  }

  .large-hero-h {
    font-size: 42px;
    line-height: 54px;
  }

  .flip-block {
    width: 94%;
    height: 370px;
    flex-direction: column;
    justify-content: flex-start;
    margin: 3%;
    padding: 3%;
  }

  .gallery-thumb-wrap {
    width: 50%;
    flex: 0 auto;
  }

  .featured-img {
    margin-top: 8%;
    margin-bottom: 8%;
  }

  .share-container {
    padding-left: 6%;
    padding-right: 6%;
  }

  .nav-drop {
    background-size: 18px;
  }

  .in-cell-block {
    padding: 6vw;
  }

  .form-horizontal-center {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding-left: 0%;
    padding-right: 0%;
  }

  .sub-nav {
    box-shadow: none;
    text-align: left;
    border-top: 1px solid #e9eaee;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    margin-bottom: 6%;
    padding: 3% 6%;
    display: flex;
    position: static;
  }

  .sub-nav-link {
    border-top-style: none;
    border-bottom: 1px solid #e9eaee;
    margin-left: 0;
    margin-right: 0;
    padding: 12px 0;
    font-size: 16px;
    line-height: 28px;
  }

  .sub-nav-link:hover {
    border-bottom-color: #e9eaee;
  }

  .sub-nav-link.last {
    border-bottom-style: none;
  }

  .dot-2, .dot-3, .dot-1 {
    width: 10px;
    height: 10px;
  }

  .tooltip-text {
    display: none;
    top: 18px;
    left: -950%;
  }

  .dot-5, .dot-4 {
    width: 10px;
    height: 10px;
  }

  .show-tooltip {
    display: none;
  }

  .form-horizontal {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding-top: 24px;
    padding-left: 0%;
    padding-right: 0%;
  }

  .modal {
    padding-top: 96px;
    padding-bottom: 36px;
  }

  .modal.block, .modal.in-ms-grid {
    max-width: 90vw;
  }

  .close {
    margin-right: 12px;
  }

  .close.in-block, .close.ms-grid-modal {
    right: -36px;
  }

  .menu-bar {
    padding: 9px 7vw;
  }

  .avatar {
    margin-top: 18px;
  }

  .cont-gallery-item {
    width: 50%;
    flex: 0 auto;
    padding: 2vw;
  }

  .breadcrumbs-bar {
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .notification-bar {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 14px;
    line-height: 24px;
  }

  .notification-button {
    margin-left: 6px;
  }

  .gallery-grid-1 {
    height: auto;
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-direction: column;
    flex: 0 auto;
    grid-template-rows: auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto auto;
    grid-template-areas: "IMG-1 IMG-1 IMG-1 IMG-1 IMG-2 IMG-2"
                         "IMG-1 IMG-1 IMG-1 IMG-1 IMG-2 IMG-2"
                         "IMG-1 IMG-1 IMG-1 IMG-1 IMG-2 IMG-2"
                         "IMG-1 IMG-1 IMG-1 IMG-1 IMG-2 IMG-2"
                         "IMG-1 IMG-1 IMG-1 IMG-1 IMG-2 IMG-2"
                         "IMG-1 IMG-1 IMG-1 IMG-1 IMG-2 IMG-2"
                         "IMG-3 IMG-3 IMG-3 IMG-5 IMG-5 IMG-5"
                         "IMG-3 IMG-3 IMG-3 IMG-5 IMG-5 IMG-5"
                         "IMG-3 IMG-3 IMG-3 IMG-5 IMG-5 IMG-5"
                         "IMG-3 IMG-3 IMG-3 IMG-5 IMG-5 IMG-5"
                         "IMG-3 IMG-3 IMG-3 IMG-5 IMG-5 IMG-5"
                         "IMG-3 IMG-3 IMG-3 IMG-5 IMG-5 IMG-5"
                         "IMG-4 IMG-4 IMG-4 IMG-4 IMG-4 IMG-4"
                         "IMG-4 IMG-4 IMG-4 IMG-4 IMG-4 IMG-4"
                         "IMG-4 IMG-4 IMG-4 IMG-4 IMG-4 IMG-4"
                         "IMG-4 IMG-4 IMG-4 IMG-4 IMG-4 IMG-4"
                         "IMG-4 IMG-4 IMG-4 IMG-4 IMG-4 IMG-4";
  }

  .gallery-grid-text {
    padding-bottom: 24px;
  }

  .gallery-grid-2 {
    flex-direction: column;
    flex: 0 auto;
  }

  .masonry-grid-2 {
    column-count: 2;
  }

  .carousel {
    margin-top: 12px;
    padding-top: 60px;
  }

  .carousel-right-arrow {
    top: 0;
    left: 72px;
    right: auto;
  }

  .carousel-item {
    width: 100%;
  }

  .carousel-left-arrow {
    top: 0;
    left: 18px;
    right: auto;
  }

  .card {
    padding: 24px 24px 18px;
  }

  .expand-all-button {
    top: 8px;
    bottom: auto;
    left: auto;
    right: 24px;
  }

  .carousel-cell {
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 8px;
    padding-right: 8px;
  }

  .fluid-cell-2 {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 18px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .text-block.t-margin {
    margin-top: 6vw;
  }

  .stats-number {
    margin-bottom: 8px;
    padding-top: 8px;
    font-size: 42px;
    line-height: 54px;
  }

  .clip-2 {
    padding-left: 12px;
  }

  .layer._1 {
    display: none;
  }

  .cd-block {
    width: 25vw;
    max-width: 160px;
    height: 25vw;
    max-height: 160px;
  }

  .cd-wrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .countdown {
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 3vw;
    padding-left: 3vw;
    padding-right: 3vw;
  }

  .cd-numder-info {
    background-image: none;
    font-size: 16px;
    line-height: 26px;
  }

  .cd-title {
    font-size: 9vw;
    line-height: 9vw;
  }

  .cd-date {
    font-size: 22px;
    line-height: 34px;
  }

  .scroll-down-button.w--current {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  body {
    background-position: -330px -20px;
  }

  blockquote {
    padding-left: 18px;
  }

  .p-large {
    font-size: 22px;
    line-height: 34px;
  }

  .p-small.caption {
    margin-top: -6%;
    margin-bottom: 18px;
  }

  .utility-page-content {
    width: 260px;
  }

  .button {
    padding-left: 36px;
    padding-right: 36px;
  }

  .button.large {
    min-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .section {
    padding-top: 7vw;
    padding-bottom: 7vw;
  }

  .section.dark.map {
    background-image: linear-gradient(to bottom, null, null), url('../images/Map.png');
    background-size: auto, cover;
  }

  .section.narrow {
    padding-top: 5%;
    padding-bottom: 5%;
  }

  .section.hero-default {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .section.hero {
    padding-top: 12%;
  }

  .fluid-cell {
    padding-left: 0;
    padding-right: 0;
  }

  .fluid-cell.inline-cta {
    margin-top: 10%;
    margin-bottom: 10%;
    padding: 10%;
  }

  .fluid-cell.slider-wrap {
    width: 100%;
    margin-bottom: 60px;
  }

  .fluid-cell.block {
    margin-left: 0%;
    margin-right: 0%;
  }

  .fluid-cell.block._33-p {
    width: 100%;
    padding: 6vw 8vw;
  }

  .fluid-cell.inline-cta {
    margin-top: 10%;
    margin-bottom: 10%;
    padding: 10%;
  }

  .fluid-cell.counter-block {
    margin-left: 0;
    margin-right: 0;
  }

  .fluid-cell.inline-gallery {
    padding: 0%;
  }

  .fluid-cell.logo-wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  .fluid-cell.cd-intro {
    padding: 12px 0;
  }

  .nav-link {
    padding-top: 6%;
    padding-bottom: 6%;
    font-size: 6vw;
  }

  .container {
    align-items: stretch;
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .container._w-logos {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .drop-child-link {
    padding-top: 6%;
    padding-bottom: 6%;
    font-size: 6vw;
  }

  .dropdown-list.main-nav.w--open {
    margin-left: -8%;
    margin-right: -9%;
    padding-left: 8%;
    padding-right: 8%;
  }

  .nav-bar {
    padding-left: 8%;
  }

  .floating-nav-bar {
    padding: 3% 24px 3% 8%;
    display: none;
  }

  .slider {
    margin-bottom: 0;
  }

  .right-arrow {
    margin: auto auto 12px;
    display: block;
    bottom: 0;
    left: 0;
    right: -40px;
  }

  .left-arrow {
    margin: auto auto 12px;
    display: block;
    top: auto;
    bottom: 0;
    left: -40px;
    right: 9px;
  }

  .icon-img {
    margin-bottom: 0;
  }

  .section-bg-img {
    height: 300px;
    margin-top: 5%;
    margin-bottom: -7%;
  }

  .grid-gallery {
    min-width: 100px;
    padding-top: 3%;
    padding-bottom: 3%;
  }

  .grid-cell {
    width: 50%;
    align-items: center;
    margin: 0%;
  }

  .right-arrow-slider {
    width: 50%;
    margin-bottom: 0;
    bottom: 0;
    right: 0;
  }

  .left-arrow-slider {
    width: 50%;
    margin-bottom: 0;
    bottom: 0;
    left: 0;
    right: auto;
  }

  .fake-h2-bg {
    line-height: 59px;
  }

  .thumb-wrap {
    margin-bottom: 12px;
  }

  .in-text-img {
    margin-top: 10%;
    margin-bottom: 10%;
  }

  .hamburger.close {
    margin-top: 6%;
    margin-right: 8%;
  }

  .menu-mobile {
    padding: 60px 8% 8%;
  }

  .right-arrow-2 {
    right: 12px;
  }

  .left-arrow-2 {
    left: 12px;
  }

  .play-button {
    width: 84px;
    height: 84px;
    background-position: 56%;
  }

  .form-item-wrap {
    padding-top: 0;
  }

  .form-item-wrap.half {
    width: 98%;
  }

  .form {
    flex-direction: column;
  }

  .dropdown-toggle {
    background-position: 90%;
    padding-left: 8vw;
  }

  .dropdown-list-subnav.w--open {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .filter-container {
    align-items: stretch;
  }

  .hero-bg-img {
    height: 330px;
    margin-top: 4%;
  }

  .flip-block {
    width: 100%;
    height: 430px;
    margin: 3% 0%;
    padding-left: 0;
    padding-right: 0;
  }

  .featured-img {
    margin-top: 10%;
    margin-bottom: 10%;
  }

  .share-container {
    padding-left: 8%;
    padding-right: 8%;
  }

  .nav-drop {
    padding-right: 12vw;
  }

  .nav-drop-list.w--open {
    margin-top: 6%;
    margin-bottom: -6%;
  }

  .in-cell-block {
    padding: 8vw;
  }

  .client-logo-img {
    margin: 12px;
  }

  .sub-nav {
    margin-bottom: 7%;
    padding-left: 8%;
    padding-right: 8%;
  }

  .dot-2, .dot-3, .dot-1 {
    width: 8px;
    height: 8px;
  }

  .tooltip-text {
    left: -1200%;
  }

  .dot-5, .dot-4 {
    width: 8px;
    height: 8px;
  }

  .form-horizontal {
    padding-top: 18px;
  }

  .modal {
    max-width: none;
    margin-left: 8%;
    margin-right: 8%;
    padding-top: 84px;
    padding-bottom: 24px;
  }

  .modal.block {
    margin-left: 0%;
    margin-right: 0%;
    padding: 18px;
  }

  .modal.in-ms-grid .modal-content {
    padding: 18px 24px;
  }

  .close.in-block {
    width: 36px;
    height: 36px;
    right: -30px;
  }

  .menu-bar {
    padding: 4px 8vw;
  }

  .cont-gallery-item {
    width: 100%;
    padding: 3vw 0;
  }

  .back-link {
    font-size: 11px;
    line-height: 17px;
  }

  .breadcrumbs-bar {
    padding-bottom: 18px;
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .notification-bar {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .gallery-grid-1 {
    display: flex;
  }

  .masonry-grid-1 {
    column-count: 2;
  }

  .gallery-grid-2 {
    display: flex;
  }

  .masonry-grid-2 {
    column-count: 1;
  }

  .carousel {
    padding-left: 0;
    padding-right: 0;
  }

  .carousel-right-arrow {
    left: 54px;
  }

  .carousel-item {
    margin-right: 12px;
  }

  .mask {
    width: 100%;
  }

  .carousel-left-arrow {
    left: 0;
  }

  .carousel-cell {
    padding-left: 0;
    padding-right: 0;
  }

  .fluid-cell-2 {
    padding-top: 18px;
    padding-left: 0;
    padding-right: 0;
  }

  .text-block {
    padding: 24px 24px 12px;
  }

  .clip-2 {
    padding-left: 0;
  }

  .cd-container {
    align-items: stretch;
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .cd-block {
    width: 26vw;
    height: 26vw;
  }

  .cd-wrap {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .countdown {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    padding-left: 0;
    padding-right: 0;
  }

  .cd-number {
    font-size: 11vw;
    line-height: 11vw;
  }

  .cd-date {
    grid-column-gap: 2vw;
    grid-row-gap: 2vw;
    font-size: 20px;
    line-height: 30px;
  }

  .scroll-down-button {
    width: 40px;
    height: 40px;
    bottom: 30px;
  }
}

#w-node-_72ea75e0-0e4b-b277-f3f6-c7116c2a5c5a-49495642 {
  grid-area: IMG-4;
}

#w-node-_72ea75e0-0e4b-b277-f3f6-c7116c2a5c5c-49495642 {
  grid-area: IMG-1;
}

#w-node-_72ea75e0-0e4b-b277-f3f6-c7116c2a5c5e-49495642 {
  grid-area: IMG-2;
}

#w-node-_72ea75e0-0e4b-b277-f3f6-c7116c2a5c60-49495642 {
  grid-area: IMG-5;
}

#w-node-_72ea75e0-0e4b-b277-f3f6-c7116c2a5c62-49495642 {
  grid-area: IMG-3;
}

#w-node-_73045917-43b0-ccdb-66fb-3a90a1c359cc-49495642 {
  grid-area: IMG-4;
}

#w-node-_73045917-43b0-ccdb-66fb-3a90a1c359cd-49495642 {
  grid-area: IMG-1;
}

#w-node-_73045917-43b0-ccdb-66fb-3a90a1c359ce-49495642 {
  grid-area: IMG-2;
}

#w-node-_73045917-43b0-ccdb-66fb-3a90a1c359cf-49495642 {
  grid-area: IMG-5;
}

#w-node-_73045917-43b0-ccdb-66fb-3a90a1c359d0-49495642 {
  grid-area: IMG-3;
}

#w-node-c1b86b6a-ff4d-d5c8-19b1-05eb304697ec-49495642 {
  grid-area: Area;
}

#w-node-_0c4aefba-6ae7-fa53-2c65-1de67ec9e842-49495642 {
  grid-area: Area-2;
}

#w-node-_1be50869-55c1-36c3-a81d-f46099a7edea-49495642 {
  grid-area: Area-3;
}

#w-node-b01aedfe-fd2c-0fbc-fe33-2378352cbb88-49495642 {
  grid-area: Area-4;
}

#w-node-_6bdb6f7b-5fd0-85b8-ff22-d10a51bcf039-49495642 {
  grid-area: Area;
}

#w-node-_6bdb6f7b-5fd0-85b8-ff22-d10a51bcf03b-49495642 {
  grid-area: Area-2;
}

#w-node-_6bdb6f7b-5fd0-85b8-ff22-d10a51bcf03d-49495642 {
  grid-area: Area-3;
}

#w-node-_6bdb6f7b-5fd0-85b8-ff22-d10a51bcf03f-49495642 {
  grid-area: Area-4;
}

#w-node-c1b86b6a-ff4d-d5c8-19b1-05eb304697ec-be7286c9 {
  grid-area: Area;
}

#w-node-_0c4aefba-6ae7-fa53-2c65-1de67ec9e842-be7286c9 {
  grid-area: Area-2;
}

#w-node-_1be50869-55c1-36c3-a81d-f46099a7edea-be7286c9 {
  grid-area: Area-3;
}

#w-node-b01aedfe-fd2c-0fbc-fe33-2378352cbb88-be7286c9 {
  grid-area: Area-4;
}

#w-node-_6bdb6f7b-5fd0-85b8-ff22-d10a51bcf039-be7286c9 {
  grid-area: Area;
}

#w-node-_6bdb6f7b-5fd0-85b8-ff22-d10a51bcf03b-be7286c9 {
  grid-area: Area-2;
}

#w-node-_6bdb6f7b-5fd0-85b8-ff22-d10a51bcf03d-be7286c9 {
  grid-area: Area-3;
}

#w-node-_6bdb6f7b-5fd0-85b8-ff22-d10a51bcf03f-be7286c9 {
  grid-area: Area-4;
}

@media screen and (max-width: 991px) {
  #w-node-_72ea75e0-0e4b-b277-f3f6-c7116c2a5c62-49495642, #w-node-_73045917-43b0-ccdb-66fb-3a90a1c359d0-49495642 {
    grid-area: IMG-3;
  }
}


@font-face {
  font-family: 'Bitstreamveraserif';
  src: url('../fonts/BitstreamVeraSerif-Bold.woff2') format('woff2'), url('../fonts/BitstreamVeraSerif-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Bitstreamveraserif roman';
  src: url('../fonts/BitstreamVeraSerif-Roman.woff2') format('woff2'), url('../fonts/BitstreamVeraSerif-Roman.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}