/*!
Theme Name: CVC Custom Theme 2024
Author: Daniel Hindmarsh c/o AM FM Inc.
Author URI: https://amfm.ca
Description: Custom Theme Developed by AMFM Inc. to provide homepage restyling and header/footer updates. Version 1.1.1 Adding template and styles for the 2024 Digital Annual Report
Version: 1.1.1
*/
/* Vytal Custom Colours */
/* Underscores Color Vars */
/* CVC Custom Colours */
@import url("https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* Theme Font Variables */
/* These styels override the default slide transitions of the bootstrap carousel, changing it to a fade
instead of a slide effect.

https://codepen.io/transportedman/pen/NPWRGq <- Source

*/
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@100..900&display=swap");
.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition-property: opacity;
  transition-duration: var(--slideSpeed, 2s);
}

.carousel-fade .carousel-inner .active {
  opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-control {
  z-index: 2;
}

/*
  WHAT IS NEW IN 3.3: "Added transforms to improve carousel performance in modern browsers."
  now override the 3.3 new styles for modern browsers & apply opacity
  */
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-fade .carousel-inner > .item.next,
  .carousel-fade .carousel-inner > .item.active.right {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .carousel-fade .carousel-inner > .item.prev,
  .carousel-fade .carousel-inner > .item.active.left {
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .carousel-fade .carousel-inner > .item.next.left,
  .carousel-fade .carousel-inner > .item.prev.right,
  .carousel-fade .carousel-inner > .item.active {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
#hero-carousel.hero-2023 {
  --slideSpeed: 1s;
}
#hero-carousel.hero-2023 .item .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  display: grid;
  place-content: center;
}
#hero-carousel.hero-2023 .item .container .cvc-carousel-hero-content {
  display: grid;
  height: 100%;
  align-items: center;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  #hero-carousel.hero-2023 .item .container .cvc-carousel-hero-content {
    font-size: clamp(3rem, 2.2778rem + 2.963vw, 4.5rem);
    grid-template-columns: min(15vw, 500px) min(var(--content-length, 20ch), 20ch);
  }
}
@media (min-width: 1200px) {
  #hero-carousel.hero-2023 .item .container .cvc-carousel-hero-content {
    grid-template-columns: min(10vw, 500px) min(var(--content-length, 25ch), 25ch);
    font-size: clamp(4.5rem, 0rem + 3.75vw, 6rem);
  }
}
#hero-carousel.hero-2023 .item .container .cvc-carousel-hero-content img {
  display: none;
  transition: all 0.75s;
  scale: 0.8;
}
@media (min-width: 768px) {
  #hero-carousel.hero-2023 .item .container .cvc-carousel-hero-content img {
    display: block;
    aspect-ratio: 1;
    width: 75%;
    place-self: center;
    transform: scale(0.5);
    opacity: 0;
  }
}
#hero-carousel.hero-2023 .item .container .cvc-carousel-hero-content .iconwrap {
  place-self: center;
}
#hero-carousel.hero-2023 .item .container .cvc-carousel-hero-content h3 {
  font-family: "AvenirLT-Black", sans-serif;
  font-size: 2.75rem;
  justify-self: start;
  font-weight: 900;
  max-width: 30ch;
  transition: opacity 2s;
  text-wrap: balance;
  text-transform: capitalize;
  letter-spacing: 0.25rem;
  opacity: 0;
}
@media (min-width: 768px) {
  #hero-carousel.hero-2023 .item .container .cvc-carousel-hero-content h3 {
    font-size: clamp(3rem, 2.2778rem + 2.963vw, 4.5rem);
  }
}
@media (min-width: 1200px) {
  #hero-carousel.hero-2023 .item .container .cvc-carousel-hero-content h3 {
    font-size: clamp(4.5rem, 0rem + 3.75vw, 6rem);
  }
}
#hero-carousel.hero-2023 .item .container .cvc-carousel-hero-content h3 small {
  color: black;
  font-family: "AvenirLT-Light", sans-serif;
}
#hero-carousel.hero-2023 .item .container .cvc-carousel-hero-content .big-stat {
  font-size: 1.5em;
}
#hero-carousel.hero-2023 .item.active .cvc-carousel-hero-content h3 {
  opacity: 1;
}
#hero-carousel.hero-2023 .item.active .cvc-carousel-hero-content h3 small {
  font-size: 1.8rem;
}
#hero-carousel.hero-2023 .item.active .cvc-carousel-hero-content img {
  transform: scale(1);
  opacity: 1;
}
#hero-carousel.hero-2023 .carousel-indicators {
  --indicator-size: 1.25rem;
  height: calc(var(--indicator-size, 1rem) * 2);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  display: flex;
  padding: 1rem;
  padding-top: 2rem;
}
#hero-carousel.hero-2023 .carousel-indicators li {
  height: var(--indicator-size, 1rem);
  width: var(--indicator-size, 1rem);
  aspect-ratio: 1;
  transition-property: height, width;
  transition-duration: 0.25s;
  place-self: center;
  margin-right: 0.8rem;
}
#hero-carousel.hero-2023 .carousel-indicators li:last-of-type {
  margin-right: 0;
}
#hero-carousel.hero-2023 .carousel-indicators li.active {
  height: calc(var(--indicator-size, 1rem) * 1.5);
  width: calc(var(--indicator-size, 1rem) * 1.5);
  background-color: rgba(255, 255, 255, 0);
  background-image: url("assets/img/cvcHeartIcon-filled.svg");
  background-repeat: no-repeat;
  border-radius: 0%;
}

#container {
  background-image: none !important;
}

.homepage-2023 {
  background: #fff;
}

.heart-pattern {
  position: relative;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 69.9%, rgba(255, 255, 255, 0) 70%), url("assets/img/heartPattern.svg");
  background-size: auto, clamp(7rem, 2.1053rem + 4.9342vw, 10rem);
  background-position: top var(--heart-offset, 10rem) left 0;
}

.grey-gradient {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
}

[class*=cvc-imgbox-img-] .elementor-image-box-wrapper {
  display: grid !important;
  grid-template-columns: repeat(12, 1fr);
  position: relative;
}
[class*=cvc-imgbox-img-] .elementor-image-box-wrapper .elementor-image-box-img {
  display: none;
}
@media (min-width: 768px) {
  [class*=cvc-imgbox-img-] .elementor-image-box-wrapper .elementor-image-box-img {
    display: block;
    border-radius: 3.5rem;
    grid-row: 1;
    height: 100%;
    position: relative;
    z-index: 10;
  }
  [class*=cvc-imgbox-img-] .elementor-image-box-wrapper .elementor-image-box-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
[class*=cvc-imgbox-img-] .elementor-image-box-wrapper .elementor-image-box-content {
  min-height: 270px;
  height: fit-content;
  position: relative;
  z-index: 15;
  border-radius: 3.5rem;
  padding: 3.5rem;
  padding-block: var(--centering-padding, 3.5rem);
  height: 100%;
  grid-column: 1/-1;
  grid-row: 1;
}
@media (min-width: 576px) {
  [class*=cvc-imgbox-img-] .elementor-image-box-wrapper .elementor-image-box-content {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 2fr;
  }
}
[class*=cvc-imgbox-img-] .elementor-image-box-wrapper .elementor-image-box-content > * {
  color: #fff;
  font-family: "AvenirLT-Book", sans-serif;
}
[class*=cvc-imgbox-img-] .elementor-image-box-wrapper .elementor-image-box-content h3 {
  font-size: clamp(4rem, -3.1111rem + 6.9444vw, 8rem);
  font-family: "AvenirLT-Black", sans-serif;
  text-align: start;
  text-transform: uppercase;
  align-self: start;
  margin: 0;
  margin-bottom: 2rem;
}
@media (min-width: 576px) {
  [class*=cvc-imgbox-img-] .elementor-image-box-wrapper .elementor-image-box-content h3 {
    text-align: end;
    margin-bottom: 0;
  }
}
[class*=cvc-imgbox-img-] .elementor-image-box-wrapper .elementor-image-box-content p {
  padding-top: 0.75rem;
  font-size: clamp(1.2rem, -0.5778rem + 1.7361vw, 2.2rem);
  text-align: start;
}
[class*=cvc-imgbox-img-] .elementor-image-box-wrapper .elementor-image-box-content a.btn {
  display: block;
  font-size: clamp(1.2rem, -0.5778rem + 1.7361vw, 2.2rem);
  width: fit-content;
  margin-top: 2rem;
  padding: 0.5rem 1.5rem 0.25rem 1.5rem;
}

.cvc-imgbox-img-left {
  margin-block: var(--inline-spacer, 3rem);
  margin-top: calc(var(--block-spacer, 5rem) * 2);
}
@media (min-width: 768px) {
  .cvc-imgbox-img-left .elementor-image-box-wrapper .elementor-image-box-img {
    grid-column: 1/6;
    position: relative;
    top: -25%;
  }
}
.cvc-imgbox-img-left .elementor-image-box-wrapper .elementor-image-box-content {
  background: #000;
}
@media (min-width: 768px) {
  .cvc-imgbox-img-left .elementor-image-box-wrapper .elementor-image-box-content {
    grid-column: -1/4;
  }
}
.cvc-imgbox-img-left .elementor-image-box-wrapper .elementor-image-box-content a.btn {
  background-color: #bc204b;
}

.cvc-imgbox-img-right {
  margin-block: var(--inline-spacer, 3rem);
  margin-bottom: calc(var(--block-spacer, 5rem) * 2);
}
@media (min-width: 768px) {
  .cvc-imgbox-img-right .elementor-image-box-wrapper .elementor-image-box-img {
    grid-column: -1/-6;
    top: 25%;
  }
}
.cvc-imgbox-img-right .elementor-image-box-wrapper .elementor-image-box-content {
  background: #bc204b;
}
@media (min-width: 768px) {
  .cvc-imgbox-img-right .elementor-image-box-wrapper .elementor-image-box-content {
    grid-column: 1/-4;
  }
}
.cvc-imgbox-img-right .elementor-image-box-wrapper .elementor-image-box-content a.btn {
  background-color: #000;
}

.cvc-icon-box-row .elementor-widget-wrap {
  display: grid !important;
  gap: calc(var(--inline-spacer, 3rem) * 2);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 576px) {
  .cvc-icon-box-row .elementor-widget-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .cvc-icon-box-row .elementor-widget-wrap {
    grid-template-columns: repeat(6, 1fr);
  }
}
.cvc-icon-box-row .elementor-widget-wrap .cvc-hmpg-icon-box .elementor-icon-box-wrapper {
  position: relative;
}
.cvc-icon-box-row .elementor-widget-wrap .cvc-hmpg-icon-box .elementor-icon-box-wrapper .elementor-icon-box-icon {
  position: relative;
  aspect-ratio: 1;
}
.cvc-icon-box-row .elementor-widget-wrap .cvc-hmpg-icon-box .elementor-icon-box-wrapper .elementor-icon-box-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  aspect-ratio: 1;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 3.5rem;
  transform-origin: top left;
  transform: scale(90%);
  transition-property: transform, top, left;
  transition-duration: 0.5s;
}
.cvc-icon-box-row .elementor-widget-wrap .cvc-hmpg-icon-box .elementor-icon-box-wrapper .elementor-icon-box-icon a svg {
  overflow: scroll;
  position: absolute;
  bottom: 0;
  right: 0;
  transform-origin: bottom center;
  transform: scale(80%);
  width: 100%;
  height: 100%;
  transition-property: transform, bottom, right, stroke, transform-origin;
  transition-duration: 0.5s;
}
.cvc-icon-box-row .elementor-widget-wrap .cvc-hmpg-icon-box .elementor-icon-box-wrapper .elementor-icon-box-icon a svg path,
.cvc-icon-box-row .elementor-widget-wrap .cvc-hmpg-icon-box .elementor-icon-box-wrapper .elementor-icon-box-icon a svg line,
.cvc-icon-box-row .elementor-widget-wrap .cvc-hmpg-icon-box .elementor-icon-box-wrapper .elementor-icon-box-icon a svg circle,
.cvc-icon-box-row .elementor-widget-wrap .cvc-hmpg-icon-box .elementor-icon-box-wrapper .elementor-icon-box-icon a svg polyline,
.cvc-icon-box-row .elementor-widget-wrap .cvc-hmpg-icon-box .elementor-icon-box-wrapper .elementor-icon-box-icon a svg rect {
  transition-property: stroke;
  transition-duration: 0.5s;
}
.cvc-icon-box-row .elementor-widget-wrap .cvc-hmpg-icon-box .elementor-icon-box-wrapper .elementor-icon-box-title {
  font-family: "AvenirLT-Black", sans-serif;
  text-transform: uppercase;
  font-size: clamp(2rem, 1.1111rem + 0.8681vw, 2.5rem);
  line-height: 1.15;
}
.cvc-icon-box-row .elementor-widget-wrap .cvc-hmpg-icon-box .elementor-icon-box-wrapper .elementor-icon-box-title a {
  transition-property: color;
  transition-duration: 0.5s;
}
.cvc-icon-box-row .elementor-widget-wrap .cvc-hmpg-icon-box .elementor-icon-box-wrapper .elementor-icon-box-title a:hover {
  color: #000;
}
.cvc-icon-box-row .elementor-widget-wrap .cvc-hmpg-icon-box .elementor-icon-box-wrapper .elementor-icon-box-description {
  color: #000;
  text-decoration: underline;
  font-family: "AvenirLT-Black", sans-serif;
  font-size: clamp(1.2rem, -0.5778rem + 1.7361vw, 2.2rem);
}
.cvc-icon-box-row .elementor-widget-wrap .cvc-hmpg-icon-box .elementor-icon-box-wrapper a::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.cvc-icon-box-row .elementor-widget-wrap .cvc-hmpg-icon-box .elementor-icon-box-wrapper:hover .elementor-icon-box-icon::before {
  transform: scale(70%);
  top: 10%;
  left: 10%;
}
.cvc-icon-box-row .elementor-widget-wrap .cvc-hmpg-icon-box .elementor-icon-box-wrapper:hover .elementor-icon-box-icon svg {
  transform: scale(85%);
  bottom: 10%;
  right: 10%;
}

#news-and-updates .main-headline h2 {
  font-family: "AvenirLT-Black", sans-serif;
  font-size: 4rem;
  text-align: center;
  text-transform: uppercase;
  color: #000;
}
#news-and-updates .cvc-hmpg-news {
  padding-block: var(--block-spacer, 5rem);
  --hover-timing: 0.25s;
  --article-y-offset: 0;
  --column-offsets: 0%;
  --grid-columns: 1;
}
@media (min-width: 576px) {
  #news-and-updates .cvc-hmpg-news {
    --grid-columns: 2;
    --column-offsets: 5%;
  }
}
@media (min-width: 768px) {
  #news-and-updates .cvc-hmpg-news {
    --grid-columns: 3;
    --article-y-offset: 20%;
  }
}
#news-and-updates .cvc-hmpg-news .elementor-posts-container {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  grid-template-columns: repeat(var(--grid-columns, 1), 1fr) !important;
  column-gap: calc(var(--inline-spacer, 3rem) * 2);
}
@media (min-width: 1200px) {
  #news-and-updates .cvc-hmpg-news .elementor-posts-container {
    column-gap: calc(var(--inline-spacer, 3rem) * 4);
  }
}
#news-and-updates .cvc-hmpg-news article {
  overflow: visible !important;
  display: grid !important;
  grid-template-columns: 100%;
}
#news-and-updates .cvc-hmpg-news article .elementor-post__thumbnail__link {
  margin: 0 !important;
  aspect-ratio: 4/3;
  padding: 0 !important;
  translate: var(--img-x-offset, 10%) 0;
  transition-property: translate;
  transition-duration: var(--hover-timing, 1s);
}
#news-and-updates .cvc-hmpg-news article .elementor-post__thumbnail {
  border-radius: 3.5rem;
  aspect-ratio: 4/3;
  height: 100%;
  width: 100%;
  object-fit: cover;
  margin: 0;
  padding: 0 !important;
  transition-property: translate, border-radius;
  transition-duration: var(--hover-timing, 1s);
}
#news-and-updates .cvc-hmpg-news article .elementor-post__text {
  border-radius: 3.5rem;
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: var(--post-bg-color, #000);
  padding: 2.625rem;
  translate: var(--content-x-offset, 10%) -20%;
  transition-property: translate, border-radius;
  transition-duration: var(--hover-timing, 1s);
  display: grid;
}
#news-and-updates .cvc-hmpg-news article .elementor-post__text h3 > a {
  color: #fff !important;
  font-family: "AvenirLT-Black", sans-serif;
  font-size: clamp(2rem, -0.1081rem + 5.4054vw, 3rem);
  text-transform: capitalize;
}
@media (min-width: 576px) {
  #news-and-updates .cvc-hmpg-news article .elementor-post__text h3 > a {
    font-size: clamp(1.2rem, -1.8157rem + 5.2356vw, 2.2rem);
  }
}
@media (min-width: 768px) {
  #news-and-updates .cvc-hmpg-news article .elementor-post__text h3 > a {
    font-size: clamp(0.8rem, -2.367rem + 4.1237vw, 1.2rem);
  }
}
@media (min-width: 1200px) {
  #news-and-updates .cvc-hmpg-news article .elementor-post__text h3 > a {
    font-size: clamp(1.2rem, -4.2rem + 4.5vw, 3rem);
  }
}
#news-and-updates .cvc-hmpg-news article .elementor-post__text h3 > a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#news-and-updates .cvc-hmpg-news article .elementor-post__text .elementor-post__read-more {
  align-self: end;
  font-family: "AvenirLT-Light", sans-serif;
  margin-block: 0.75rem;
  margin-bottom: var(--safari-bump, 0.75rem);
  text-decoration: underline !important;
}
#news-and-updates .cvc-hmpg-news article .elementor-post__text .elementor-post__read-more:hover {
  color: #bc204b;
}
@media (min-width: 1200px) {
  #news-and-updates .cvc-hmpg-news article .elementor-post__text .elementor-post__read-more {
    font-size: clamp(1.2rem, -1.2rem + 2vw, 2rem);
  }
}
#news-and-updates .cvc-hmpg-news article .elementor-post__text .elementor-post__meta-data {
  margin: 0;
  margin-block: 1rem;
  text-align: left;
  align-self: start;
}
@media (min-width: 1400px) {
  #news-and-updates .cvc-hmpg-news article .elementor-post__text .elementor-post__meta-data {
    display: inline;
  }
}
#news-and-updates .cvc-hmpg-news article .elementor-post__text .elementor-post__meta-data span {
  margin-inline: 0.5rem;
  border-radius: 3.5rem;
  font-size: clamp(1.2rem, -1.2rem + 2vw, 2rem);
}
#news-and-updates .cvc-hmpg-news article .elementor-post__text .elementor-post__excerpt {
  display: none;
}
@media (min-width: 1400px) {
  #news-and-updates .cvc-hmpg-news article .elementor-post__text .elementor-post__excerpt {
    display: inline;
  }
}
#news-and-updates .cvc-hmpg-news article:nth-child(1) {
  --img-x-offset: calc(var(--column-offsets) * (-1));
  --content-x-offset: var(--column-offsets);
}
#news-and-updates .cvc-hmpg-news article:nth-child(even) {
  --post-bg-color: #bc204b;
  --img-x-offset: var(--column-offsets);
  --content-x-offset: calc(var(--column-offsets) * (-1));
  transform: translateY(var(--article-y-offset, 20%));
}
#news-and-updates .cvc-hmpg-news article:nth-child(even) .elementor-post__read-more:hover {
  color: #000;
}
#news-and-updates .cvc-hmpg-news article:nth-child(3n+3) {
  --img-x-offset: var(--column-offsets);
  --content-x-offset: calc(var(--column-offsets) * (-1));
}
#news-and-updates .cvc-hmpg-news article:hover {
  --img-x-offset: 0;
  --content-x-offset: 0;
}
#news-and-updates .cvc-hmpg-news article:hover .elementor-post__thumbnail {
  border-radius: 3.5rem 3.5rem 0 0;
}
#news-and-updates .cvc-hmpg-news article:hover .elementor-post__text {
  border-radius: 0 0 3.5rem 3.5rem;
}

.homepage-row {
  padding-inline: var(--inline-margin, 2rem);
  padding-block: var(--block-spacer, 5rem);
}

#news-and-updates {
  overflow: hidden;
}

:root {
  --inline-spacer: 3rem;
}
@media (min-width: 768px) {
  :root {
    --inline-margin: max(2rem, calc((100vw - 823px) / 2));
  }
}
@media (min-width: 1200px) {
  :root {
    --inline-margin: max(3rem, calc((100vw - 1600px) / 2));
    --block-spacer: 10rem;
  }
}

.elementor-image-box-content p {
  height: fit-content;
}

#navigation .collapse.navbar-collapse.js-navbar-collapse > ul {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  overflow: hidden;
}
@media (min-width: 768px) {
  #navigation .collapse.navbar-collapse.js-navbar-collapse > ul {
    flex-direction: row;
  }
}

#navigation .collapse.navbar-collapse.js-navbar-collapse {
  overflow: hidden;
}

.ar-timeline-container {
  min-height: 200px;
}

.annual-report-listings {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3.5rem;
  row-gap: 5rem;
  padding-block-end: 5rem;
}
@media (min-width: 576px) {
  .annual-report-listings {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .annual-report-listings {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .annual-report-listings {
    grid-template-columns: repeat(4, 1fr);
  }
}

.annual-report-listing-single {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 1rem;
  background-color: #fff;
  width: 70%;
  margin-inline: auto;
  box-shadow: 3.7px 3.7px 2.2px rgba(0, 0, 0, 0.015), 8px 8px 5.3px rgba(0, 0, 0, 0.019), 13.7px 13.7px 10px rgba(0, 0, 0, 0.022), 22.5px 22.5px 17.9px rgba(0, 0, 0, 0.025), 40px 40px 33.4px rgba(0, 0, 0, 0.03), 100px 100px 80px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}
@media (min-width: 576px) {
  .annual-report-listing-single {
    width: 100%;
  }
}
.annual-report-listing-single:hover {
  transform: translateX(-5px) translateY(-5px);
  box-shadow: 9.7px 15.1px 2.2px rgba(0, 0, 0, 0.015), 16.5px 25.8px 5.3px rgba(0, 0, 0, 0.019), 21.8px 34.1px 10px rgba(0, 0, 0, 0.022), 28.1px 43.8px 17.9px rgba(0, 0, 0, 0.025), 41.7px 65px 33.4px rgba(0, 0, 0, 0.03), 100px 156px 80px rgba(0, 0, 0, 0.05);
}
.annual-report-listing-single:hover img.annual-report-listing-cover-img {
  opacity: 1;
}
.annual-report-listing-single .title-and-year {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 5rem;
  padding: 1rem;
  flex-grow: 1;
}
.annual-report-listing-single .title-and-year p {
  margin: 0;
  padding: 0;
}
.annual-report-listing-single .title-and-year a.annual-report-listing-report-link, .annual-report-listing-single .title-and-year .annual-report-listing-title-no-link {
  font-family: "AvenirLT-Black", sans-serif;
  margin-inline-end: 1rem;
  line-height: 1.25;
  text-decoration: none !important;
}
.annual-report-listing-single .title-and-year a.annual-report-listing-report-link::after, .annual-report-listing-single .title-and-year .annual-report-listing-title-no-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}
.annual-report-listing-single img.annual-report-listing-cover-img {
  width: 100%;
  aspect-ratio: 8.5/11;
  object-fit: cover;
  border-radius: 1rem 1rem 0 0;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.annual-report-listing-single a.annual-report-listing-pdf-link {
  display: flex;
  justify-content: space-between;
  font-size: 1.3rem;
  align-items: center;
  grid-template-columns: 1fr 3rem;
  padding-inline: 1rem;
  color: white !important;
  letter-spacing: 0.0125rem;
  font-family: "AvenirLT-Black", sans-serif;
  text-decoration: none !important;
  border-radius: 0 0 10px 10px;
  background-color: #C11F4B;
  transition: all 0.2s;
}
.annual-report-listing-single a.annual-report-listing-pdf-link img {
  max-width: 40px;
  padding: 5px;
  aspect-ratio: 1;
}
.annual-report-listing-single a.annual-report-listing-pdf-link:hover {
  background-color: #000;
}

.annual-report-listing-inner-card {
  position: relative;
  flex-grow: 1;
}

.annual-report-listing-single-wrapper {
  margin-block: 5rem;
}

#header.cvc-new-header-styles {
  background: linear-gradient(to right, #fff 20%, rgba(255, 255, 255, 0) 100%), url(assets/img/line-pattern.png) !important;
  padding-block: 2rem !important;
}
#header.cvc-new-header-styles #site-functions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 5rem !important;
  gap: 1rem;
}
@media (min-width: 768px) {
  #header.cvc-new-header-styles #site-functions {
    margin-top: 0 !important;
    grid-template-columns: repeat(5, 1fr);
  }
}
#header.cvc-new-header-styles #site-functions a {
  margin: 0 !important;
}
@media (min-width: 768px) {
  #header.cvc-new-header-styles #site-functions :nth-child(1) {
    grid-column: 3;
  }
}
#header.cvc-new-header-styles #site-functions :nth-child(4) {
  grid-column: 1/-1;
}
@media (min-width: 768px) {
  #header.cvc-new-header-styles #site-functions :nth-child(4) {
    grid-column: 4/-1;
  }
}
#header.cvc-new-header-styles #site-functions form > * {
  margin: 0 !important;
  padding: 0 !important;
}
#header.cvc-new-header-styles #site-functions #search-box {
  max-width: unset !important;
}

#footer {
  padding: 2rem var(--inline-margin, 2rem) 1rem var(--inline-margin, 2rem) !important;
  display: grid;
}
#footer #footer-copyright {
  align-self: end;
  justify-self: end;
  margin: 0;
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-family: "AvenirLT-Book", sans-serif;
  padding: 0;
}
#footer #cvc-footer-logo img {
  width: 100%;
}
#footer #uofa-footer-logo {
  padding: 0;
  padding-bottom: 1rem;
  flex-grow: 1;
  display: grid;
}
#footer #uofa-footer-logo img {
  width: 100%;
  max-width: 125px;
  justify-self: end;
}
#footer #external-links {
  display: grid;
  grid-template-columns: 1fr repeat(4, 1fr) 2fr 2fr;
}
@media (min-width: 768px) {
  #footer #external-links {
    display: flex;
  }
}
#footer #external-links a:nth-of-type(1),
#footer #external-links a:nth-of-type(2),
#footer #external-links a:nth-of-type(3),
#footer #external-links a:nth-of-type(4),
#footer #external-links a:nth-of-type(5) {
  aspect-ratio: 1;
  padding: 1rem;
  max-width: 50px;
  place-self: center;
}
@media (min-width: 768px) {
  #footer #external-links a:nth-of-type(1) {
    grid-column: 1;
  }
}
#footer #external-links a:nth-of-type(6) {
  grid-column: -2/-1;
}
#footer #external-links a:nth-of-type(6) h4 {
  text-transform: uppercase;
  font-family: "AvenirLT-Black", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.0625rem;
  text-align: left;
}
@media (min-width: 768px) {
  #footer #external-links a:nth-of-type(6) h4 {
    font-size: 1rem;
  }
}
#footer #external-links a:nth-of-type(6):hover {
  color: #fff;
}
#footer #external-links img {
  height: 100%;
  width: 100%;
}
#footer a {
  align-self: center;
}
@media (min-width: 768px) {
  #footer a:first-of-type {
    justify-self: center;
  }
}
@media (min-width: 768px) {
  #footer a:last-of-type {
    justify-self: end;
  }
}

:root {
  --brickHeight: clamp(6rem, 5.7573rem + 0.6472vw, 7rem);
}

[data-brick-color=black][data-brick-size="1"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-black.svg);
}

[data-brick-color=black][data-brick-size="2"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-2-post-black.svg);
}

[data-brick-color=black][data-brick-size="4"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-4-post-black.svg);
}

[data-brick-color=black][data-brick-size="8"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-8-post-black.svg);
}

[data-brick-color=black][data-brick-size="6"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-black.svg);
}

[data-brick-color=black][data-brick-size="10"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-black.svg);
}

[data-brick-color=blue][data-brick-size="1"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-blue.svg);
}

[data-brick-color=blue][data-brick-size="2"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-2-post-blue.svg);
}

[data-brick-color=blue][data-brick-size="4"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-4-post-blue.svg);
}

[data-brick-color=blue][data-brick-size="8"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-8-post-blue.svg);
}

[data-brick-color=blue][data-brick-size="6"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-blue.svg);
}

[data-brick-color=blue][data-brick-size="10"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-blue.svg);
}

[data-brick-color=grey][data-brick-size="1"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-grey.svg);
}

[data-brick-color=grey][data-brick-size="2"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-2-post-grey.svg);
}

[data-brick-color=grey][data-brick-size="4"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-4-post-grey.svg);
}

[data-brick-color=grey][data-brick-size="8"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-8-post-grey.svg);
}

[data-brick-color=grey][data-brick-size="6"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-grey.svg);
}

[data-brick-color=grey][data-brick-size="10"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-grey.svg);
}

[data-brick-color=ivory][data-brick-size="1"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-ivory.svg);
}

[data-brick-color=ivory][data-brick-size="2"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-2-post-ivory.svg);
}

[data-brick-color=ivory][data-brick-size="4"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-4-post-ivory.svg);
}

[data-brick-color=ivory][data-brick-size="8"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-8-post-ivory.svg);
}

[data-brick-color=ivory][data-brick-size="6"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-ivory.svg);
}

[data-brick-color=ivory][data-brick-size="10"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-ivory.svg);
}

[data-brick-color=pink][data-brick-size="1"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-pink.svg);
}

[data-brick-color=pink][data-brick-size="2"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-2-post-pink.svg);
}

[data-brick-color=pink][data-brick-size="4"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-4-post-pink.svg);
}

[data-brick-color=pink][data-brick-size="8"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-8-post-pink.svg);
}

[data-brick-color=pink][data-brick-size="6"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-pink.svg);
}

[data-brick-color=pink][data-brick-size="10"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-pink.svg);
}

[data-brick-color=red][data-brick-size="1"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-red.svg);
}

[data-brick-color=red][data-brick-size="2"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-2-post-red.svg);
}

[data-brick-color=red][data-brick-size="4"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-4-post-red.svg);
}

[data-brick-color=red][data-brick-size="8"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-8-post-red.svg);
}

[data-brick-color=red][data-brick-size="6"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-red.svg);
}

[data-brick-color=red][data-brick-size="10"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-red.svg);
}

[data-brick-color=white][data-brick-size="1"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-white.svg);
}

[data-brick-color=white][data-brick-size="2"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-2-post-white.svg);
}

[data-brick-color=white][data-brick-size="4"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-4-post-white.svg);
}

[data-brick-color=white][data-brick-size="8"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-8-post-white.svg);
}

[data-brick-color=white][data-brick-size="6"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-white.svg);
}

[data-brick-color=white][data-brick-size="10"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-white.svg);
}

[data-brick-color=yellow][data-brick-size="1"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-yellow.svg);
}

[data-brick-color=yellow][data-brick-size="2"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-2-post-yellow.svg);
}

[data-brick-color=yellow][data-brick-size="4"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-4-post-yellow.svg);
}

[data-brick-color=yellow][data-brick-size="8"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-8-post-yellow.svg);
}

[data-brick-color=yellow][data-brick-size="6"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-yellow.svg);
}

[data-brick-color=yellow][data-brick-size="10"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-yellow.svg);
}

[data-brick-color=cyan][data-brick-size="1"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-cyan.svg);
}

[data-brick-color=cyan][data-brick-size="2"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-2-post-cyan.svg);
}

[data-brick-color=cyan][data-brick-size="4"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-4-post-cyan.svg);
}

[data-brick-color=cyan][data-brick-size="8"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-8-post-cyan.svg);
}

[data-brick-color=cyan][data-brick-size="6"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-cyan.svg);
}

[data-brick-color=cyan][data-brick-size="10"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-cyan.svg);
}

[data-brick-color=outline][data-brick-size="1"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-outline.svg);
}

[data-brick-color=outline][data-brick-size="2"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-2-post-outline.svg);
}

[data-brick-color=outline][data-brick-size="4"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-4-post-outline.svg);
}

[data-brick-color=outline][data-brick-size="8"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-8-post-outline.svg);
}

[data-brick-color=outline][data-brick-size="6"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-outline.svg);
}

[data-brick-color=outline][data-brick-size="10"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-outline.svg);
}

[data-brick-color=outline-black][data-brick-size="1"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-outline-black.svg);
}

[data-brick-color=outline-black][data-brick-size="2"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-2-post-outline-black.svg);
}

[data-brick-color=outline-black][data-brick-size="4"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-4-post-outline-black.svg);
}

[data-brick-color=outline-black][data-brick-size="8"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-8-post-outline-black.svg);
}

[data-brick-color=outline-black][data-brick-size="6"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-outline-black.svg);
}

[data-brick-color=outline-black][data-brick-size="10"] {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-1-post-outline-black.svg);
}

[data-brick-size="1"] {
  --brick-size: 1;
}

[data-brick-size="2"] {
  --brick-size: 2;
}

[data-brick-size="3"] {
  --brick-size: 3;
}

[data-brick-size="4"] {
  --brick-size: 4;
}

[data-brick-size="5"] {
  --brick-size: 5;
}

[data-brick-size="6"] {
  --brick-size: 6;
}

[data-brick-size="7"] {
  --brick-size: 7;
}

[data-brick-size="8"] {
  --brick-size: 8;
}

[data-brick-size="9"] {
  --brick-size: 9;
}

[data-brick-size="10"] {
  --brick-size: 10;
}

[data-brick-size="11"] {
  --brick-size: 11;
}

[data-brick-color=white] {
  --brick-text-color: black;
}

[data-brick-color=outline] {
  filter: grayscale(100) brightness(100);
  clip-path: none !important;
}

[data-brick-color=outline-black] {
  clip-path: none !important;
}

#annual-report-2023 {
  overflow-x: hidden;
  position: relative;
  z-index: 1;
  width: 100%;
}
#annual-report-2023 section {
  width: 100%;
}
#annual-report-2023 h1, #annual-report-2023 h2, #annual-report-2023 h3, #annual-report-2023 h4, #annual-report-2023 h5, #annual-report-2023 h6 {
  font-family: "Bebas Neue", sans-serif;
  text-wrap: balance;
}
#annual-report-2023 h1 {
  font-size: 10rem;
}
#annual-report-2023 p.elementor-icon-box-description {
  font-size: clamp(1.5rem, 1.3786rem + 0.3236vw, 2rem) !important;
}
#annual-report-2023 .brick {
  position: relative;
  --postHeight: calc(var(--brickHeight) * 0.14285714);
  --fontSize: calc((var(--brickHeight) - var(--postHeight)) * 0.25);
  height: var(--brickHeight);
  aspect-ratio: calc(4 * var(--brick-size))/7;
  background-image: var(--brick-image);
  background-repeat: no-repeat;
  display: grid;
  font-size: var(--fontSize);
  color: var(--brick-text-color, white);
  clip-path: polygon(0 1%, 100% 1%, 100% 100%, 0% 100%);
}
#annual-report-2023 .brick > * {
  font-size: inherit;
  text-transform: uppercase;
  font-family: "AvenirLT-Black", sans-serif;
  line-height: 1;
  margin-top: calc(0.75 * var(--brickHeight) - 2 * var(--postHeight));
  margin-inline: auto;
  text-align: center;
}
#annual-report-2023 .brick > *.multi-line-brick-text {
  margin-top: calc(0.75 * var(--brickHeight) - 2.65 * var(--postHeight));
  font-size: calc(var(--fontSize) * 0.9);
}
#annual-report-2023 .brick.connected {
  margin-top: calc(var(--postHeight) * -1.1);
}
#annual-report-2023 .brick.connected:nth-of-type(1) {
  z-index: 12;
}
#annual-report-2023 .brick.connected:nth-of-type(2) {
  z-index: 11;
}
#annual-report-2023 .brick.connected:nth-of-type(3) {
  z-index: 10;
}
#annual-report-2023 .brick.connected:nth-of-type(4) {
  z-index: 9;
}
#annual-report-2023 .brick.connected:nth-of-type(5) {
  z-index: 8;
}
#annual-report-2023 .brick.connected:nth-of-type(6) {
  z-index: 7;
}
#annual-report-2023 .brick.connected:nth-of-type(7) {
  z-index: 6;
}
#annual-report-2023 .brick.connected:nth-of-type(8) {
  z-index: 5;
}
#annual-report-2023 .brick.connected:nth-of-type(9) {
  z-index: 4;
}
#annual-report-2023 .brick.connected:nth-of-type(10) {
  z-index: 3;
}
#annual-report-2023 .brick.connected:nth-of-type(11) {
  z-index: 2;
}
#annual-report-2023 .brick.connected:nth-of-type(12) {
  z-index: 1;
}
#annual-report-2023 .brick-container {
  display: flex;
}
#annual-report-2023 #hero .hero-heading-group {
  display: grid;
  place-content: center;
  margin-block: 5rem;
}
@media (min-width: 992px) {
  #annual-report-2023 #hero .hero-heading-group {
    margin-block: 14rem;
  }
}
#annual-report-2023 #hero .hero-text-and-graphic {
  display: grid;
  grid-template-columns: min-content min-content;
}
#annual-report-2023 #hero .hero-text {
  align-self: flex-end;
}
#annual-report-2023 #hero .hero-text h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(7rem, 3.1165rem + 15.534vw, 23rem);
  color: #000;
  line-height: 0.8;
}
#annual-report-2023 #hero .hero-text h2 {
  font-size: clamp(1rem, 0.1505rem + 3.3981vw, 4.5rem);
  font-family: "AvenirLT-Black", sans-serif;
  color: #000;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  line-height: 0.75;
}
#annual-report-2023 #hero .hero-graphic {
  --brickHeight:clamp(30px, 0.9648rem + 3.8835vw, 90px);
  align-self: flex-end;
  display: grid;
  width: fit-content;
  height: min-content;
  grid-template-columns: repeat(5, calc(4 * var(--brickHeight) / 7));
  transform: translateX(calc(var(--brickHeight) * -0.5));
}
#annual-report-2023 #hero .hero-graphic > .brick {
  opacity: 0;
  transform: translateY(-200%);
}
#annual-report-2023 #hero .hero-graphic > div:nth-child(1) {
  grid-row: 1;
  column-span: 2;
}
#annual-report-2023 #hero .hero-graphic > div:nth-child(2) {
  grid-column: 3;
}
#annual-report-2023 #hero .hero-graphic > div:nth-child(3) {
  grid-column: 2;
}
#annual-report-2023 #hero .hero-graphic > div:nth-child(4) {
  grid-column: 1;
}
#annual-report-2023 #hero .hero-graphic > div:nth-child(5) {
  grid-column: 1;
}
#annual-report-2023 #hero .table-of-contents {
  padding-block-start: 5rem;
  font-size: clamp(1.5rem, 1.3786rem + 0.3236vw, 2rem);
  color: #000;
  gap: 5rem;
}
@media (min-width: 768px) {
  #annual-report-2023 #hero .table-of-contents {
    display: flex;
    padding-block-start: 15rem;
  }
}
#annual-report-2023 #hero .table-of-contents .column {
  display: flex;
  flex-direction: column;
}
#annual-report-2023 #hero .table-of-contents a {
  color: inherit;
  padding-block-end: 1rem;
  font-weight: 800;
  text-decoration: underline;
  transition: color 0.2s;
}
#annual-report-2023 #hero .table-of-contents a:hover {
  color: #C11F4B;
  text-decoration: none;
}
#annual-report-2023 .ar-2023-quote h3 {
  font-family: "AvenirLT-Black", sans-serif;
  font-size: 4rem;
}
#annual-report-2023 .ar-2023-quote p {
  font-family: "AvenirLT-Book", sans-serif;
  font-size: 2rem;
}
#annual-report-2023 #co-directors-msg-content {
  font-size: clamp(1.5rem, 1.3786rem + 0.3236vw, 2rem);
}
#annual-report-2023 #co-directors-msg-content a {
  color: #000;
  text-decoration: underline !important;
  transition: color 0.2s;
}
#annual-report-2023 #co-directors-msg-content a:hover {
  color: #fff;
}
#annual-report-2023 button.read-more-btn {
  border: none;
  outline: none;
  background-color: rgba(255, 255, 255, 0);
  padding: 0;
  color: #000;
  text-transform: none;
  font-weight: 800;
  font-size: inherit;
  text-decoration: underline;
  transition: color 0.2s;
}
#annual-report-2023 button.read-more-btn:hover {
  cursor: pointer;
  color: #fff;
}
#annual-report-2023 .ar-timeline-container {
  display: flex;
  border-top: 15dvh solid #C11F4B;
  width: fit-content;
  min-height: 100dvh;
  flex-direction: column;
  padding-bottom: 0;
  padding-block: 0;
  scrollbar-color: #C11F4B #fff;
}
@media (min-width: 992px) {
  #annual-report-2023 .ar-timeline-container {
    flex-direction: row;
  }
}
#annual-report-2023 .ar-timeline-container .timeline-intro {
  padding-inline: calc(var(--brickHeight) / 2 + 18px);
  padding-block: 5rem;
  padding-block-end: 10rem;
}
#annual-report-2023 .ar-timeline-container .timeline-intro h2 {
  font-family: "AvenirLT-Black", sans-serif !important;
  color: #000;
  max-width: 20ch;
  font-size: clamp(3.125rem, -0.5276rem + 9.7403vw, 9.125rem);
  font-weight: 400;
  line-height: 1;
}
#annual-report-2023 .ar-timeline-container .timeline-intro h2 span {
  color: #C11F4B;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4.5rem, -0.3701rem + 12.987vw, 12.5rem);
  font-weight: 400;
}
@media (min-width: 992px) {
  #annual-report-2023 .ar-timeline-container .timeline-intro {
    min-width: 40dvw;
    padding-block: unset;
    padding-top: calc(var(--brickHeight) / 2);
    border-bottom: 15dvh solid #C11F4B;
    padding-block: 15rem;
    padding-block-end: 20rem;
  }
  #annual-report-2023 .ar-timeline-container .timeline-intro h2 {
    font-family: "AvenirLT-Black", sans-serif !important;
    color: #000;
    max-width: 9ch;
    font-size: 6.125rem;
    font-weight: 400;
    line-height: 1;
    margin-inline: auto;
  }
  #annual-report-2023 .ar-timeline-container .timeline-intro h2 span {
    color: #C11F4B;
    font-family: "Bebas Neue", sans-serif;
    font-size: 9.5rem;
    font-weight: 400;
  }
}
#annual-report-2023 .ar-timeline-container .timeline-item {
  position: relative;
  padding-top: calc(var(--brickHeight) / 1.5);
  padding-inline: calc(var(--brickHeight) / 2);
  padding-bottom: calc(var(--brickHeight) * 2);
  border-top: 1px solid black;
  width: 100dvw;
  display: grid;
  gap: 3rem;
}
@media (min-width: 992px) {
  #annual-report-2023 .ar-timeline-container .timeline-item {
    border-top: none;
    min-width: 80dvw;
    width: auto;
    grid-template-columns: 1fr 1fr;
    padding-bottom: unset;
    border-bottom: 15dvh solid #C11F4B;
  }
  #annual-report-2023 .ar-timeline-container .timeline-item::after {
    content: "";
    position: absolute;
    height: 100%;
    border-left: 1px solid black;
    z-index: -1;
  }
}
#annual-report-2023 .ar-timeline-container .timeline-item .brick {
  --brickHeight: clamp(6rem, 5.1505rem + 2.2654vw, 9.5rem);
  position: absolute;
  left: calc(var(--brickHeight) / 2);
  top: calc(var(--brickHeight) * -1 + 1px);
}
@media (min-width: 992px) {
  #annual-report-2023 .ar-timeline-container .timeline-item .brick {
    left: -1px;
    top: 0;
    transform: translateY(calc(-50% - var(--postHeight)));
  }
}
#annual-report-2023 .ar-timeline-container .timeline-item .timeline-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
}
@media (min-width: 768px) {
  #annual-report-2023 .ar-timeline-container .timeline-item .timeline-heading {
    font-size: 6rem;
    margin-top: 0;
    margin-bottom: 3rem;
  }
}
@media (min-width: 992px) {
  #annual-report-2023 .ar-timeline-container .timeline-item .timeline-heading {
    font-size: clamp(3rem, -0.2069rem + 3.2328vw, 6rem);
  }
}
#annual-report-2023 .ar-timeline-container .timeline-item p {
  font-family: "AvenirLT-Book", sans-serif;
  font-size: clamp(1.5rem, 1.3786rem + 0.3236vw, 2rem);
}
@media (min-width: 992px) {
  #annual-report-2023 .ar-timeline-container .timeline-item p {
    font-size: 2dvh;
  }
}
#annual-report-2023 .ar-timeline-container .timeline-item p b {
  font-family: "AvenirLT-Black", sans-serif;
}
#annual-report-2023 .ar-timeline-container .timeline-item p a {
  color: #000;
  text-decoration: underline !important;
  transition: color 0.2s;
}
#annual-report-2023 .ar-timeline-container .timeline-item p a:hover {
  color: #C11F4B;
}
#annual-report-2023 .ar-timeline-container .timeline-item img {
  object-fit: contain;
  width: 100%;
  max-height: 740px;
  max-width: 500px;
  margin-inline: auto;
}
#annual-report-2023 .ar-timeline-container .timeline-item figure {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 2rem;
  margin-inline: auto;
  flex-direction: column;
  margin-inline: auto;
  gap: 1rem;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  #annual-report-2023 .ar-timeline-container .timeline-item figure {
    flex-direction: row;
    justify-content: flex-start;
    gap: 5rem;
    width: 620px;
  }
}
#annual-report-2023 .ar-timeline-container .timeline-item figure img {
  object-fit: cover;
  object-position: top center;
  width: 200px;
  aspect-ratio: 1;
  border-radius: 20rem;
  margin: 0;
  padding: 0;
}
@media (min-width: 992px) {
  #annual-report-2023 .ar-timeline-container .timeline-item figure img {
    width: min(200px, 15dvh);
  }
}
#annual-report-2023 .ar-timeline-container .timeline-item figure figcaption h3 {
  font-size: clamp(3rem, 1.1737rem + 4.8701vw, 6rem);
}
@media (min-width: 992px) {
  #annual-report-2023 .ar-timeline-container .timeline-item figure figcaption h3 {
    font-size: clamp(3rem, -0.2069rem + 3.2328vw, 6rem);
    width: 17ch;
  }
}
#annual-report-2023 .ar-timeline-container .timeline-item figure figcaption h4 {
  font-family: "AvenirLT-Book", sans-serif;
  font-size: clamp(1.5rem, 0.431rem + 1.0776vw, 2.5rem);
  width: 30ch;
}
#annual-report-2023 .ar-timeline-container .timeline-item figure.figure-alt {
  flex-direction: column;
}
#annual-report-2023 .ar-timeline-container .timeline-item figure.figure-alt img {
  max-width: 400px;
  width: 70dvw;
}
#annual-report-2023 .ar-timeline-container .timeline-item figure.figure-alt h3 {
  width: fit-content;
}
#annual-report-2023 .ar-timeline-container .timeline-outro {
  display: none;
}
@media (min-width: 992px) {
  #annual-report-2023 .ar-timeline-container .timeline-outro {
    display: block;
    min-width: 10dvw;
    border-bottom: 15dvh solid #C11F4B;
  }
}
#annual-report-2023 .jump-section-btn-container {
  display: none;
}
@media (min-width: 992px) {
  #annual-report-2023 .jump-section-btn-container {
    position: fixed;
    display: flex;
    opacity: 0;
    visibility: hidden;
    align-items: center;
    gap: 2rem;
    bottom: 5rem;
    left: 10px;
    z-index: 200;
  }
  #annual-report-2023 .jump-section-btn-container a {
    display: grid;
    place-content: center;
    font-size: 3.5rem;
    width: 7rem;
    color: #fff;
    background-color: #000;
    outline: 3px solid #fff;
    border-radius: 20rem;
    aspect-ratio: 1;
    transition: all 0.5s;
  }
  #annual-report-2023 .jump-section-btn-container a:hover {
    color: #000;
    background-color: #fff;
    outline: 3px solid #000;
  }
  #annual-report-2023 .jump-section-btn-container .prev-arrow {
    transform: rotate(180deg);
  }
  #annual-report-2023 .jump-section-btn-container p {
    margin: 0;
    font-size: 3rem;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    line-height: 1;
  }
}
#annual-report-2023 .ar-headline-with-para .elementor-icon-box-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(5.45rem, 4.4791rem + 2.589vw, 9.45rem);
  padding: 0;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  max-width: 12ch;
}
#annual-report-2023 .ar-headline-with-para .elementor-icon-box-description {
  font-family: "AvenirLT-Light", sans-serif;
  font-size: clamp(1rem, 0.7573rem + 0.6472vw, 2rem);
  margin-block: 2rem;
}
#annual-report-2023 .ar-headline-with-para a {
  display: block;
  color: #000;
  font-family: "AvenirLT-Black", sans-serif;
  text-decoration: underline !important;
  transition: color 0.2s;
  margin-top: 2rem;
}
#annual-report-2023 .ar-headline-with-para a:hover, #annual-report-2023 .ar-headline-with-para a:focus {
  color: #ddd3b9;
}
#annual-report-2023 .ar-bio-box {
  display: flex;
  margin-bottom: 60px;
}
#annual-report-2023 .ar-bio-box img {
  border-radius: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
#annual-report-2023 .ar-bio-box .elementor-image-box-wrapper {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 2rem;
}
#annual-report-2023 .ar-bio-box .elementor-image-box-content {
  align-self: center;
}
#annual-report-2023 .ar-bio-box .elementor-image-box-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 3.2718rem + 1.9417vw, 7rem);
  margin: 0;
  padding: 0;
  line-height: 1;
}
#annual-report-2023 .ar-bio-box .elementor-image-box-description {
  font-family: "AvenirLT-Book", sans-serif;
  font-size: clamp(1rem, 0.7573rem + 0.6472vw, 2rem);
  font-weight: 600;
  margin: 0;
  padding: 0;
  line-height: 1;
}
#annual-report-2023 #about-the-cvc {
  color: #000;
}
#annual-report-2023 #about-the-cvc h2 {
  font-size: clamp(5.45rem, 4.4791rem + 2.589vw, 9.45rem);
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
}
#annual-report-2023 #about-the-cvc h3 {
  color: inherit;
  font-size: clamp(4rem, 3.2718rem + 1.9417vw, 7rem);
  max-width: 16ch;
}
#annual-report-2023 #about-the-cvc p {
  color: #000;
  font-family: "AvenirLT-Book", sans-serif;
  font-size: clamp(1.5rem, 1.3786rem + 0.3236vw, 2rem);
  max-width: 45ch;
}
#annual-report-2023 #about-the-cvc p a {
  color: #000;
  text-decoration: underline !important;
  transition: color 0.2s;
}
#annual-report-2023 #about-the-cvc p a:hover {
  color: #C11F4B;
  text-decoration: none !important;
}
#annual-report-2023 #about-the-cvc li {
  font-size: clamp(1.5rem, 1.3786rem + 0.3236vw, 2rem);
  color: #000;
}
#annual-report-2023 #about-the-cvc li a {
  font-size: clamp(1.5rem, 1.3786rem + 0.3236vw, 2rem);
  color: #000;
  text-decoration: underline !important;
  transition: color 0.2s;
}
#annual-report-2023 #about-the-cvc li a:hover {
  color: #C11F4B;
  text-decoration: none !important;
}
#annual-report-2023 .bricks-grid {
  --brickHeight: calc( (700 / (45* 4 ) ) * 1vw);
  display: grid;
  grid-template-columns: repeat(45, calc(4 * var(--brickHeight) / 7));
  grid-template-rows: repeat(6, var(--brickHeight));
}
#annual-report-2023 .bricks-grid > .brick:nth-child(1) {
  grid-row: 1;
  grid-column: 30;
}
#annual-report-2023 .bricks-grid > .brick:nth-child(2) {
  grid-row: 1;
  grid-column: 42;
}
#annual-report-2023 .bricks-grid > .brick:nth-child(3) {
  grid-row: 2;
  grid-column: 33;
}
#annual-report-2023 .bricks-grid > .brick:nth-child(4) {
  grid-row: 3;
  grid-column: 28;
}
#annual-report-2023 .bricks-grid > .brick:nth-child(5) {
  grid-row: 3;
  grid-column: 40;
}
#annual-report-2023 .bricks-grid > .brick:nth-child(6) {
  grid-row: 4;
  grid-column: 2;
}
#annual-report-2023 .bricks-grid > .brick:nth-child(7) {
  grid-row: 4;
  grid-column: 12;
}
#annual-report-2023 .bricks-grid > .brick:nth-child(8) {
  grid-row: 4;
  grid-column: 31;
}
#annual-report-2023 .bricks-grid > .brick:nth-child(9) {
  grid-row: 4;
  grid-column: 36;
}
#annual-report-2023 .bricks-grid > .brick:nth-child(10) {
  grid-row: 4;
  grid-column: 43;
}
#annual-report-2023 .bricks-grid > .brick:nth-child(11) {
  grid-row: 5;
  grid-column: 5;
}
#annual-report-2023 .bricks-grid > .brick:nth-child(12) {
  grid-row: 5;
  grid-column: 10;
}
#annual-report-2023 .bricks-grid > .brick:nth-child(13) {
  grid-row: 5;
  grid-column: 18;
}
#annual-report-2023 .bricks-grid > .brick:nth-child(14) {
  grid-row: 5;
  grid-column: 25;
}
#annual-report-2023 .bricks-grid > .brick:nth-child(15) {
  grid-row: 5;
  grid-column: 39;
}
#annual-report-2023 .bricks-grid > .brick:nth-child(16) {
  grid-row: 6;
  grid-column: 1;
}
#annual-report-2023 .bricks-grid > .brick:nth-child(17) {
  grid-row: 6;
  grid-column: 16;
}
#annual-report-2023 .bricks-grid > .brick:nth-child(18) {
  grid-row: 6;
  grid-column: 44;
}
#annual-report-2023 .bricks-grid > .brick {
  grid-row: 6;
}
#annual-report-2023 .by-the-numbers h2 {
  color: #fff;
  font-weight: 400;
  font-size: clamp(5.45rem, 4.4791rem + 2.589vw, 9.45rem);
  line-height: 1;
  max-width: 15ch;
}
#annual-report-2023 .by-the-numbers .stat-heading h3 {
  color: #000;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 3.2718rem + 1.9417vw, 5rem);
  max-width: 30ch;
  font-weight: 400;
  line-height: 1;
  text-align: left;
}
#annual-report-2023 .by-the-numbers .elementor-widget-wrap.elementor-element-populated {
  padding: 0 0 0 3rem !important;
}
#annual-report-2023 .by-the-numbers .elementor-counter {
  display: flex;
  color: #fff !important;
  font-family: "Bebas Neue", sans-serif;
}
#annual-report-2023 .by-the-numbers .elementor-counter .elementor-counter-number, #annual-report-2023 .by-the-numbers .elementor-counter .elementor-counter-title, #annual-report-2023 .by-the-numbers .elementor-counter .elementor-counter-number-suffix {
  color: #000;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 3.2718rem + 1.9417vw, 7rem);
  font-weight: 400;
  line-height: 1;
  text-align: left;
}
#annual-report-2023 .by-the-numbers .research-area-brick-graphics {
  position: relative;
}
#annual-report-2023 .by-the-numbers .research-area-brick-graphics .brick:nth-child(1) {
  margin-inline: auto;
}
@media (min-width: 768px) {
  #annual-report-2023 .by-the-numbers .research-area-brick-graphics .brick:nth-child(1) {
    margin-inline: unset;
  }
}
#annual-report-2023 .by-the-numbers .research-area-brick-graphics .brick:nth-child(2), #annual-report-2023 .by-the-numbers .research-area-brick-graphics .brick:nth-child(3) {
  position: absolute;
  top: 0;
  display: none;
}
@media (min-width: 992px) {
  #annual-report-2023 .by-the-numbers .research-area-brick-graphics .brick:nth-child(2), #annual-report-2023 .by-the-numbers .research-area-brick-graphics .brick:nth-child(3) {
    display: block;
  }
}
#annual-report-2023 .by-the-numbers .research-area-brick-graphics .brick:nth-child(2) {
  transform: rotate(30deg);
  top: 20%;
  right: 30%;
}
#annual-report-2023 .by-the-numbers .research-area-brick-graphics .brick:nth-child(3) {
  transform: rotate(-20deg);
  top: 80%;
  right: 10%;
}
@media (min-width: 768px) {
  #annual-report-2023 .by-the-numbers .research-area-brick-graphics .brick:nth-child(3) {
    display: block;
  }
}
#annual-report-2023 #research-areas svg {
  width: 100%;
  max-height: 90dvh;
}
#annual-report-2023 g.research-area {
  transform-origin: 0% 25%;
}
#annual-report-2023 .bar-chart-wrapper {
  position: relative;
  margin-inline: auto;
  padding-block: 10rem;
  padding-inline: 1rem;
  font-size: 1.5rem;
  --graph-label-offset:0px;
  --graph-border-color: #ffF;
  --graph-border-width: 2px;
  --graph-marker-size: 2rem;
}
@media (min-width: 768px) {
  #annual-report-2023 .bar-chart-wrapper {
    --graph-label-offset:335px;
  }
}
#annual-report-2023 .bar-chart-wrapper hr {
  display: block;
  border-top: var(--graph-border-width) solid var(--graph-border-color);
  width: calc(100% - var(--graph-label-offset) + 2px);
  position: relative;
  top: 0;
  left: calc(var(--graph-label-offset) - 2px);
  margin: 0;
  padding: 0;
}
#annual-report-2023 .bar-chart-wrapper .chart-title {
  width: calc(100% - var(--graph-label-offset));
  margin-left: var(--graph-label-offset);
  text-align: center;
  color: var(--graph-border-color);
  font-family: "AvenirLT-Black", sans-serif;
  font-size: clamp(1.25rem, 0.8252rem + 1.1327vw, 3rem);
  line-height: 1.5;
  font-weight: 400;
  text-transform: uppercase;
}
#annual-report-2023 .bar-chart-wrapper .graph-markers {
  display: flex;
  justify-content: space-between;
  width: calc(100% - var(--graph-label-offset));
  margin-left: var(--graph-label-offset);
  margin-bottom: var(--graph-marker-size);
  font-family: "AvenirLT-Black", sans-serif;
  font-weight: 400;
  font-size: var(--graph-marker-size);
  color: var(--graph-border-color);
}
#annual-report-2023 .bar-chart-wrapper .graph-marker {
  position: relative;
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  aspect-ratio: 1;
  height: calc(var(--graph-marker-size) * 1.5);
  text-align: center;
}
#annual-report-2023 .bar-chart-wrapper .graph-marker::after {
  position: absolute;
  content: "";
  width: var(--graph-border-width);
  height: var(--graph-marker-size);
  top: calc(var(--graph-marker-size) * 1.5 + var(--graph-border-width));
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--graph-border-color);
}
#annual-report-2023 .bar-chart-wrapper .graph-marker.lower-bound {
  transform: translateX(calc(-50% - var(--graph-border-width) / 2));
}
#annual-report-2023 .bar-chart-wrapper .graph-marker.upper-bound {
  transform: translateX(50%);
}
#annual-report-2023 .horizontal-bar-chart {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  row-gap: var(--graph-marker-size);
  align-items: center;
  width: 100%;
  font-size: inherit;
  align-items: center;
}
#annual-report-2023 .horizontal-bar-chart .long-line > span {
  display: block;
  width: 32ch;
}
#annual-report-2023 .horizontal-bar-chart .long-line::after {
  height: 50%;
  top: 100%;
}
@media (min-width: 768px) {
  #annual-report-2023 .horizontal-bar-chart .long-line::after {
    top: 0;
  }
}
#annual-report-2023 .horizontal-bar-chart li {
  position: relative;
  font-size: inherit;
  font-family: "AvenirLT-Black", sans-serif;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  padding-left: 1rem;
  --bar-width: var(--data-bar-value);
}
#annual-report-2023 .horizontal-bar-chart li span {
  display: block;
  margin: 0;
  font-size: 1rem;
  padding-top: 0.45rem;
  line-height: 1.1;
  width: 32ch;
}
@media (min-width: 768px) {
  #annual-report-2023 .horizontal-bar-chart li span {
    font-size: inherit;
    text-align: right;
  }
}
#annual-report-2023 .horizontal-bar-chart li:nth-of-type(even) {
  color: #fff;
}
#annual-report-2023 .horizontal-bar-chart li:before {
  content: "";
  position: absolute;
  border-right: var(--graph-border-width) solid var(--graph-border-color);
  height: calc(100% + 2rem);
  top: 0;
  left: calc(var(--graph-label-offset) - var(--graph-border-width));
}
@media (min-width: 768px) {
  #annual-report-2023 .horizontal-bar-chart li:last-child:before {
    height: 100%;
  }
}
#annual-report-2023 .horizontal-bar-chart li:after {
  position: absolute;
  top: calc(var(--graph-marker-size) + var(--graph-marker-size) / 4);
  left: var(--graph-label-offset);
  content: "";
  display: block;
  background-color: currentColor;
  width: calc(var(--bar-width) / var(--graph-max-value) * (100% - var(--graph-label-offset)));
  height: 76%;
}
@media (min-width: 768px) {
  #annual-report-2023 .horizontal-bar-chart li:after {
    top: 0;
    height: 100%;
  }
}
#annual-report-2023 #counting-stats-block .black-brick {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-2-post-black.svg);
}
#annual-report-2023 #counting-stats-block .blue-brick {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-2-post-blue.svg);
}
#annual-report-2023 #counting-stats-block .grey-brick {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-2-post-grey.svg);
}
#annual-report-2023 #counting-stats-block .ivory-brick {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-2-post-ivory.svg);
}
#annual-report-2023 #counting-stats-block .pink-brick {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-2-post-pink.svg);
}
#annual-report-2023 #counting-stats-block .red-brick {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-2-post-red.svg);
}
#annual-report-2023 #counting-stats-block .white-brick {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-2-post-white.svg);
}
#annual-report-2023 #counting-stats-block .yellow-brick {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-2-post-yellow.svg);
}
#annual-report-2023 #counting-stats-block .cyan-brick {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-2-post-cyan.svg);
}
#annual-report-2023 #counting-stats-block .outline-brick {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-2-post-outline.svg);
}
#annual-report-2023 #counting-stats-block .outline-black-brick {
  --brick-image: url(assets/img/annualReport/svg/cvc-2023-ar_brick-2-post-outline-black.svg);
}
#annual-report-2023 #counting-stats-block .elementor-counter {
  margin-left: 100px;
  flex-direction: column;
  position: relative;
}
@media (min-width: 768px) {
  #annual-report-2023 #counting-stats-block .elementor-counter {
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
  }
}
#annual-report-2023 #counting-stats-block .elementor-counter::before {
  position: absolute;
  bottom: 30%;
  left: -60px;
  display: block;
  content: "";
  --postHeight: calc(var(--brickHeight) * 0.14285714);
  --fontSize: calc((var(--brickHeight) - var(--postHeight)) * 0.25);
  --brick-size:2;
  --brickHeight: 40px;
  height: var(--brickHeight);
  aspect-ratio: calc(4 * var(--brick-size))/7;
  background-image: var(--brick-image);
  background-repeat: round;
}
@media (min-width: 768px) {
  #annual-report-2023 #counting-stats-block .elementor-counter::before {
    bottom: 0px;
  }
}
@media (min-width: 992px) {
  #annual-report-2023 #counting-stats-block .elementor-counter::before {
    left: -100px;
    --brickHeight: clamp(5rem, 2.7864rem + 3.2362vw, 7rem);
  }
}
#annual-report-2023 #counting-stats-block .elementor-counter-number, #annual-report-2023 #counting-stats-block .elementor-counter-number-suffix {
  font-size: clamp(2rem, 0.0867rem + 5.102vw, 4rem);
}
@media (min-width: 992px) {
  #annual-report-2023 #counting-stats-block .elementor-counter-number, #annual-report-2023 #counting-stats-block .elementor-counter-number-suffix {
    font-size: clamp(7rem, 5.301rem + 4.5307vw, 14rem);
    line-height: 0.75;
    align-self: flex-end;
  }
}
#annual-report-2023 #counting-stats-block .elementor-counter-number-wrapper {
  text-align: left;
  justify-content: flex-start;
  flex-grow: unset;
}
#annual-report-2023 #counting-stats-block .elementor-counter-number-suffix {
  color: #000;
  font-size: clamp(2rem, 0.0867rem + 5.102vw, 4rem);
  align-self: flex-end;
  margin: 0;
  margin-right: 0.25rem;
  width: max-content;
}
@media (min-width: 992px) {
  #annual-report-2023 #counting-stats-block .elementor-counter-number-suffix {
    font-size: clamp(7rem, 5.301rem + 4.5307vw, 14rem);
  }
}
#annual-report-2023 #counting-stats-block .elementor-counter-title {
  font-family: "AvenirLT-Book", sans-serif;
  font-size: clamp(1.1rem, 0.239rem + 2.2959vw, 2rem);
  line-height: 1.1;
  max-width: 36ch;
  order: 2;
}
@media (min-width: 992px) {
  #annual-report-2023 #counting-stats-block .elementor-counter-title {
    font-size: clamp(1.2rem, 0.6175rem + 1.5534vw, 3.6rem);
  }
}
#annual-report-2023 .research-highlights-section-title h2 {
  font-size: clamp(8rem, 6.7864rem + 3.2362vw, 13rem);
  line-height: 1;
  font-weight: 400;
}
#annual-report-2023 .research-highlights-section-title .brick-graphic {
  position: relative;
  display: none;
}
@media (min-width: 768px) {
  #annual-report-2023 .research-highlights-section-title .brick-graphic {
    display: block;
  }
}
#annual-report-2023 .research-highlights-section-title .brick-graphic .brick {
  position: absolute;
  top: 100px;
}
#annual-report-2023 .research-highlights-section-title .brick-graphic .brick:nth-child(1) {
  transform: rotate(-15deg);
  left: 20%;
}
#annual-report-2023 .research-highlights-section-title .brick-graphic .brick:nth-child(2) {
  right: 0;
  transform: rotate(20deg);
}
#annual-report-2023 .research-highlights .research-highlight-title {
  font-family: "AvenirLT-Black", sans-serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 2.1146rem + 1.2945vw, 4.6rem);
  margin-block: 4rem;
}
#annual-report-2023 .research-highlights .research-highlight-excerpt {
  font-size: clamp(1.5rem, 1.3786rem + 0.3236vw, 2rem);
  font-family: "AvenirLT-Book", sans-serif;
}
#annual-report-2023 .research-highlights .research-highlight-authors {
  font-size: clamp(1rem, 0.7573rem + 0.6472vw, 2rem);
  font-family: "AvenirLT-Book", sans-serif;
  font-style: italic;
}
#annual-report-2023 .research-highlights .research-highlight a {
  display: block;
  color: #000;
  text-decoration: underline !important;
  font-family: "AvenirLT-Black", sans-serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.1359rem + 0.9709vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.15;
}
#annual-report-2023 .research-highlights .research-highlight a:hover {
  color: #C11F4B;
}
#annual-report-2023 .research-highlights .research-highlight img {
  margin-top: 2rem;
}
#annual-report-2023 #pub-by-domain-title {
  position: relative;
  display: none;
}
@media (min-width: 992px) {
  #annual-report-2023 #pub-by-domain-title {
    display: block;
  }
}
#annual-report-2023 #pub-by-domain-title .brick {
  position: absolute;
}
@media (min-width: 768px) {
  #annual-report-2023 #pub-by-domain-title .brick:nth-child(1) {
    right: 10%;
    top: -300px;
  }
}
#annual-report-2023 #pub-by-domain-title .brick:nth-child(2) {
  right: 5%;
  transform: rotate(45deg);
}
#annual-report-2023 #pub-by-domain-title .brick:nth-child(3) {
  right: 15%;
  top: 20px;
  transform: rotate(15deg);
}
#annual-report-2023 #pub-by-research-area-title {
  position: relative;
  display: none;
}
@media (min-width: 992px) {
  #annual-report-2023 #pub-by-research-area-title {
    display: block;
  }
}
#annual-report-2023 #pub-by-research-area-title .brick {
  position: absolute;
}
#annual-report-2023 #pub-by-research-area-title .brick:nth-child(1) {
  --brickHeight:152px;
  right: 10%;
  top: -450px;
}
#annual-report-2023 #pub-by-research-area-title .brick:nth-child(2) {
  right: 15%;
  top: -150px;
  transform: rotate(115deg);
}
#annual-report-2023 #pub-by-research-area-title .brick:nth-child(3) {
  right: 5%;
  top: -650px;
  transform: rotate(-15deg);
}
#annual-report-2023 #pub-by-research-area-title .brick:nth-child(4) {
  right: 8%;
  top: 20px;
  transform: rotate(17deg);
}
#annual-report-2023 #pub-by-research-area-title .brick:nth-child(5) {
  left: 40%;
  top: 20px;
  transform: rotate(-15deg);
}
#annual-report-2023 #num-of-pub-accent {
  position: relative;
}
#annual-report-2023 #num-of-pub-accent .brick {
  position: absolute;
}
#annual-report-2023 #num-of-pub-accent .brick:nth-child(1) {
  transform: rotate(-33deg);
}
#annual-report-2023 #acknowledgements {
  padding-block: 10rem;
}
#annual-report-2023 #acknowledgements h2 {
  color: #fff;
  padding: 0;
  margin: 0;
  line-height: 1;
  font-size: clamp(5rem, 4.4175rem + 1.5534vw, 7.4rem);
  font-weight: 400;
}
#annual-report-2023 #acknowledgements h3 {
  font-family: "AvenirLT-Book", sans-serif;
}
#annual-report-2023 #acknowledgements li {
  font-size: clamp(1.5rem, 1.3786rem + 0.3236vw, 2rem) !important;
}
#annual-report-2023 #acknowledgements #brick-heart-image {
  background-image: url("assets/img/annualReport/svg/cvc-2023-ar_brick-heart.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  filter: brightness(100);
}

[data-brick-color=outline] {
  --brickHeight:110px;
}
@media (min-width: 768px) {
  [data-brick-color=outline] {
    --brickHeight:152px !important;
  }
}

#research-highlights-brick-filler-container .elementor-widget-container {
  height: 100%;
}
#research-highlights-brick-filler-container .brick-filler {
  position: relative;
  height: 100%;
}
#research-highlights-brick-filler-container .brick-filler .brick {
  position: absolute;
}
#research-highlights-brick-filler-container .brick-filler .brick:nth-of-type(1) {
  transform: rotate(-15deg);
  right: 10%;
}
#research-highlights-brick-filler-container .brick-filler .brick:nth-of-type(2) {
  transform: rotate(30deg);
  left: 25%;
  top: 25%;
}
#research-highlights-brick-filler-container .brick-filler .brick:nth-of-type(3) {
  transform: rotate(-65deg);
  left: 10%;
  top: 45%;
}
#research-highlights-brick-filler-container .brick-filler .brick:nth-of-type(4) {
  transform: rotate(25deg);
  right: 25%;
  top: 70%;
}

#closing-remarks-content {
  font-size: clamp(1.5rem, 1.3786rem + 0.3236vw, 2rem);
}
#closing-remarks-content #closing-read-more-content {
  display: none;
}

.plax-image {
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  .plax-image {
    background-position: 50% -600px;
  }
}

#cvc-brick-heart {
  transform: scale(75%);
}

.num-emphasis {
  font-weight: 900;
  font-size: 10rem;
}

#annual-report-2024 {
  --inlineMargin: 5em;
  --cvcPurple: #791157;
  --cvcTeal: #01a8a5;
  --cvcYellow: #ecb95a;
  --cvcDrkYellow: #e6a323;
  --cvcRed: #c31f4b;
  --cvcDrkRed: #b41a45;
  --cvcGrey: #585858;
  font-size: clamp(1.2rem, 1.103rem + 0.414vw, 1.6rem);
}
@media (min-width: 1200px) {
  #annual-report-2024 {
    --inlineMargin: 12.5em;
  }
}
#annual-report-2024 a {
  color: inherit;
  text-decoration: underline;
  font-weight: 600;
}
#annual-report-2024 a:hover {
  text-decoration: none;
}
#annual-report-2024 section.placeholder {
  position: relative;
  z-index: 10;
  display: grid;
  place-content: center;
  background-color: #676767 !important;
  color: white !important;
  min-height: 30dvh;
  border: 0 dotted orangered;
  border-bottom-width: 3px;
}
#annual-report-2024 section.placeholder:nth-of-type(1) {
  border-top-width: 3px;
}
#annual-report-2024 #titleSection {
  position: relative;
  background: var(--cvcRed);
  height: 95dvh;
  padding-inline: var(--inlineMargin);
  padding-block-start: calc(var(--inlineMargin) / 2);
  overflow: hidden;
}
#annual-report-2024 #titleSection .reportTitle {
  position: relative;
  color: #e6a323;
  z-index: 2;
}
#annual-report-2024 #titleSection .reportTitle h1.title {
  color: inherit;
  margin: 0;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 300;
  font-size: 3.6875em;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  max-width: 14ch;
  text-wrap: unset;
}
@media (min-width: 768px) {
  #annual-report-2024 #titleSection .reportTitle h1.title {
    font-size: 4.6875em;
  }
}
@media (max-height: 450px) {
  #annual-report-2024 #titleSection .reportTitle {
    position: absolute;
    top: 1rem;
  }
}
#annual-report-2024 #titleSection .annualReport {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  display: grid;
  align-items: center;
  justify-items: center;
  height: 90vh;
  color: var(--cvcDrkRed);
  z-index: 1;
}
@media (min-width: 768px) {
  #annual-report-2024 #titleSection .annualReport {
    bottom: 1rem;
    left: unset;
    right: 0;
    top: unset;
    transform: translateY(0%) translateX(0%);
  }
}
@media (min-width: 992px) {
  #annual-report-2024 #titleSection .annualReport {
    left: unset;
    right: 0;
  }
}
#annual-report-2024 #titleSection .annualReport h2 {
  grid-column: 1/-1;
  grid-row: 1/-1;
  color: inherit;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 50vw;
  font-weight: 400;
  line-height: 0.85;
  margin: 0;
  text-transform: uppercase;
  max-width: 6ch;
}
@media (min-width: 768px) {
  #annual-report-2024 #titleSection .annualReport h2 {
    font-size: calc(40vh - 3rem);
  }
}
@media (min-width: 1200px) {
  #annual-report-2024 #titleSection .annualReport h2 {
    font-size: 47.5dvh;
  }
}
@media (max-height: 600px) {
  #annual-report-2024 #titleSection .annualReport h2 {
    font-size: calc(60vh - 3rem);
  }
}
#annual-report-2024 #titleSection h3.year {
  display: flex;
  justify-content: space-between;
  grid-column: 1/-1;
  grid-row: 1/-1;
  z-index: 3;
  color: #f6537e;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 5.1575em;
  font-weight: 600;
  text-align: justify;
  width: 50%;
  margin: 0;
}
@media (max-height: 400px) {
  #annual-report-2024 #titleSection h3.year {
    position: absolute;
    bottom: 200px;
    right: 0;
  }
}
#annual-report-2024 #titleSection .animatedSection {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(33%);
  margin-inline-end: -100dvw;
  z-index: 2;
}
@media (min-width: 768px) {
  #annual-report-2024 #titleSection .animatedSection {
    margin-inline: calc(var(--inlineMargin) * -1);
  }
}
#annual-report-2024 #coDirectorMessage h1,
#annual-report-2024 #coDirectorMessage h2,
#annual-report-2024 #coDirectorMessage h3,
#annual-report-2024 #coDirectorMessage h4,
#annual-report-2024 #coDirectorMessage h5,
#annual-report-2024 #coDirectorMessage h6 {
  color: var(--cvcGrey);
}
#annual-report-2024 #coDirectorMessage .sectionHero {
  position: relative;
  height: 50dvh;
  overflow: hidden;
}
#annual-report-2024 #coDirectorMessage .sectionHero img.heroImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#annual-report-2024 #coDirectorMessage .sectionHero .gradientOverlay {
  position: absolute;
  left: 0;
  top: 0;
  outline: 2px solid red;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #808080, rgba(255, 255, 255, 0));
  mix-blend-mode: multiply;
}
#annual-report-2024 #coDirectorMessage .sectionHero .headingIcon {
  position: absolute;
  bottom: -10px;
  left: calc(var(--inlineMargin) - 4em);
  width: 40dvw;
  max-width: 380px;
  padding: 0;
}
#annual-report-2024 #coDirectorMessage .sectionHero .headingIcon svg {
  max-height: 45dvh;
}
#annual-report-2024 #coDirectorMessage .sectionHero .headingIcon .cls-1 {
  fill: #c31f4b;
}
#annual-report-2024 #coDirectorMessage .sectionHero .headingIcon .cls-2 {
  fill: #01a8a5;
}
@media (min-width: 768px) {
  #annual-report-2024 #coDirectorMessage .sectionHero .headingIcon {
    width: 20dvw;
  }
}
#annual-report-2024 #coDirectorMessage .sectionHero .sectionHeading {
  position: absolute;
  left: var(--inlineMargin);
  bottom: 0;
}
#annual-report-2024 #coDirectorMessage .sectionHero .sectionHeading h2 {
  font-size: 2em;
  font-family: "Big Shoulders Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  max-width: 14ch;
  text-wrap: unset;
  margin: 0;
}
@media (min-width: 768px) {
  #annual-report-2024 #coDirectorMessage .sectionHero .sectionHeading h2 {
    font-size: 2.8125em;
  }
}
@media (min-width: 992px) {
  #annual-report-2024 #coDirectorMessage .sectionHero .sectionHeading h2 {
    font-size: 2.8125em;
  }
}
@media (min-width: 1900px) {
  #annual-report-2024 #coDirectorMessage .sectionHero .sectionHeading h2 {
    font-size: 3.8125em;
  }
}
#annual-report-2024 #coDirectorMessage .sectionCopy {
  display: grid;
  grid-template-columns: auto auto;
  padding-inline: var(--inlineMargin);
  padding-block: 6.25em;
  padding-block-end: 12.5em;
}
@media (min-width: 768px) {
  #annual-report-2024 #coDirectorMessage .sectionCopy {
    grid-template-columns: minmax(auto, max-content) minmax(auto, max-content);
    column-gap: 2.5em;
    row-gap: 1.25em;
  }
}
@media (min-width: 992px) {
  #annual-report-2024 #coDirectorMessage .sectionCopy {
    column-gap: 5em;
    row-gap: 2.5em;
  }
}
@media (min-width: 1200px) {
  #annual-report-2024 #coDirectorMessage .sectionCopy {
    column-gap: 10em;
    row-gap: 5em;
  }
}
#annual-report-2024 #coDirectorMessage .sectionCopy .quote {
  grid-column: 1/-1;
  font-family: "Big Shoulders Display", sans-serif;
}
#annual-report-2024 #coDirectorMessage .sectionCopy .quote blockquote {
  border: 0;
  margin: 0;
  padding: 0;
  font-style: normal;
  font-weight: 900;
  font-size: 2.8125em;
  color: var(--cvcGrey);
  max-width: 32ch;
}
#annual-report-2024 #coDirectorMessage .sectionCopy .quote p {
  font-weight: 100;
  font-size: 1.5625em;
}
#annual-report-2024 #coDirectorMessage .sectionCopy .letter {
  grid-column: 1/-1;
}
@media (min-width: 768px) {
  #annual-report-2024 #coDirectorMessage .sectionCopy .letter {
    grid-column: unset;
  }
}
@media (min-width: 768px) {
  #annual-report-2024 #coDirectorMessage .sectionCopy .headshots {
    display: flex;
    flex-direction: column;
  }
}
#annual-report-2024 #coDirectorMessage .sectionCopy .headshots > div {
  column-gap: 2em;
  align-items: end;
  margin-block-end: 2em;
}
@media (min-width: 768px) {
  #annual-report-2024 #coDirectorMessage .sectionCopy .headshots > div {
    display: grid;
    grid-template-columns: minmax(10dvw, 270px) minmax(auto, max-content);
  }
}
#annual-report-2024 #coDirectorMessage .sectionCopy .headshots > div img {
  width: 100%;
  justify-self: end;
}
#annual-report-2024 #coDirectorMessage .sectionCopy .headshots > div h4,
#annual-report-2024 #coDirectorMessage .sectionCopy .headshots > div h5 {
  margin: 0;
  font-family: "Big Shoulders Display", sans-serif;
}
#annual-report-2024 #coDirectorMessage .sectionCopy .headshots > div h4 {
  text-transform: capitalize;
  font-size: 2.1875em;
  font-weight: 900;
}
#annual-report-2024 #coDirectorMessage .sectionCopy .headshots > div h5 {
  font-size: 1.5625em;
  font-weight: 200;
}
#annual-report-2024 #coDirectorMessage .sectionCopy .signatures {
  display: none;
  align-items: end;
  gap: 1em;
}
@media (min-width: 768px) {
  #annual-report-2024 #coDirectorMessage .sectionCopy .signatures {
    align-items: center;
    grid-template-columns: repeat(3, 1fr);
  }
}
#annual-report-2024 #coDirectorMessage .sectionCopy .signatures h4,
#annual-report-2024 #coDirectorMessage .sectionCopy .signatures h5 {
  margin: 0;
  font-family: "Big Shoulders Display", sans-serif;
}
#annual-report-2024 #coDirectorMessage .sectionCopy .signatures h4 {
  text-transform: capitalize;
  font-size: 1.875em;
  font-weight: 900;
}
#annual-report-2024 #coDirectorMessage .sectionCopy .signatures h5 {
  font-size: 1.375em;
  font-weight: 200;
}
#annual-report-2024 #coDirectorMessage .sectionCopy .signatures img {
  max-width: 25dvw;
  margin-block-end: 1em;
  padding-inline-start: 1em;
}
@media (min-width: 768px) {
  #annual-report-2024 #coDirectorMessage .sectionCopy .signatures img {
    max-width: unset;
    max-width: 5dvw;
  }
}
#annual-report-2024 #coDirectorMessage .sectionCopy .signatures .name,
#annual-report-2024 #coDirectorMessage .sectionCopy .signatures .credentials {
  display: none;
}
@media (min-width: 768px) {
  #annual-report-2024 #coDirectorMessage .sectionCopy .signatures .name,
  #annual-report-2024 #coDirectorMessage .sectionCopy .signatures .credentials {
    display: block;
  }
}
#annual-report-2024 #coDirectorMessage .sectionCopy h3,
#annual-report-2024 #coDirectorMessage .sectionCopy h4 {
  font-family: "Big Shoulders Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  text-transform: uppercase;
}
#annual-report-2024 #coDirectorMessage .sectionCopy h3 {
  font-size: 4.8125em;
  color: var(--cvcTeal);
}
#annual-report-2024 #coDirectorMessage .sectionCopy h4 {
  font-size: 2.8125em;
}
#annual-report-2024 #coDirectorMessage .sectionCopy p {
  font-size: 1em;
  max-width: 80ch;
}
#annual-report-2024 #aboutTheCVC .sectionHero {
  position: relative;
  height: 50dvh;
  overflow: hidden;
}
#annual-report-2024 #aboutTheCVC .sectionHero img.heroImage {
  width: 100%;
  object-fit: cover;
}
#annual-report-2024 #aboutTheCVC .sectionHero .animatedIcon {
  position: absolute;
  bottom: 0;
  left: var(--inlineMargin);
  width: 40dvw;
}
@media (max-height: 400px) {
  #annual-report-2024 #aboutTheCVC .sectionHero .animatedIcon {
    width: 20dvw;
  }
}
#annual-report-2024 #aboutTheCVC .sectionHero .animatedIcon img {
  transform: translateY(14%) translateX(-14%);
  width: 100%;
  object-fit: contain;
}
@media (min-width: 768px) {
  #annual-report-2024 #aboutTheCVC .sectionHero .animatedIcon {
    width: 20dvw;
  }
}
#annual-report-2024 #aboutTheCVC .sectionCopy {
  display: grid;
  grid-template-columns: auto;
  padding-inline: var(--inlineMargin);
  padding-block: 6.25em;
  padding-block-end: 25em;
}
@media (min-width: 768px) {
  #annual-report-2024 #aboutTheCVC .sectionCopy {
    grid-template-columns: minmax(auto, max-content) minmax(auto, max-content);
    column-gap: 2.5em;
    row-gap: 1.25em;
  }
}
@media (min-width: 992px) {
  #annual-report-2024 #aboutTheCVC .sectionCopy {
    column-gap: 5em;
    row-gap: 2.5em;
  }
}
@media (min-width: 1200px) {
  #annual-report-2024 #aboutTheCVC .sectionCopy {
    column-gap: 10em;
    row-gap: 5em;
  }
}
#annual-report-2024 #aboutTheCVC .sectionCopy > :first-child {
  grid-column: 1/-1;
}
#annual-report-2024 #aboutTheCVC .sectionCopy h3,
#annual-report-2024 #aboutTheCVC .sectionCopy h4 {
  font-family: "Big Shoulders Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  text-transform: uppercase;
}
#annual-report-2024 #aboutTheCVC .sectionCopy h3 {
  font-size: 4.8125em;
  color: var(--cvcTeal);
}
#annual-report-2024 #aboutTheCVC .sectionCopy h4 {
  font-size: 2.8125em;
}
#annual-report-2024 #aboutTheCVC .sectionCopy p {
  font-size: 1em;
  max-width: 45ch;
}
#annual-report-2024 #yearInReview {
  position: relative;
  background-color: var(--cvcRed);
  padding-block: 2.5em;
}
#annual-report-2024 #yearInReview .gearBoxTop,
#annual-report-2024 #yearInReview .gearBoxBottom {
  position: absolute;
  z-index: 500;
  top: 0;
  left: 10dvw;
  width: 30vw;
  pointer-events: none;
}
#annual-report-2024 #yearInReview .gearBoxTop svg,
#annual-report-2024 #yearInReview .gearBoxBottom svg {
  width: 100%;
  height: 100%;
}
#annual-report-2024 #yearInReview .gearBoxTop .cyanGear,
#annual-report-2024 #yearInReview .gearBoxTop .purpleGear,
#annual-report-2024 #yearInReview .gearBoxBottom .cyanGear,
#annual-report-2024 #yearInReview .gearBoxBottom .purpleGear {
  transform-box: fill-box;
  transform-origin: center;
}
@media (min-width: 768px) {
  #annual-report-2024 #yearInReview .gearBoxTop,
  #annual-report-2024 #yearInReview .gearBoxBottom {
    width: 20vw;
  }
}
#annual-report-2024 #yearInReview div.title {
  position: absolute;
  top: 0;
  left: var(--inlineMargin);
  transform: translateY(-100%);
}
#annual-report-2024 #yearInReview div.title h2 {
  color: var(--cvcRed);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 3.8215em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-block-end: -0.1em;
}
#annual-report-2024 #yearInReview .gearBoxTop {
  transform: translateY(-50%);
  left: unset;
  right: 10dvw;
}
#annual-report-2024 #yearInReview .gearBoxBottom {
  height: fit-content;
  top: 100%;
  transform: scaleX(-100%) translateY(-50%);
}
@media (min-width: 768px) {
  #annual-report-2024 #yearInReview .gearBoxBottom {
    left: 20dvw;
  }
}
#annual-report-2024 #yearInReviewScrollContainer {
  overflow-x: scroll;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}
#annual-report-2024 #yearInReviewContainer {
  --itemWidth: 100dvw;
  background-color: white;
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(var(--numOfItems), 1fr);
}
@media (min-width: 992px) {
  #annual-report-2024 #yearInReviewContainer {
    --itemWidth: 80dvw;
    margin-inline: 10rem;
    border-radius: 35em;
  }
}
#annual-report-2024 .timeLineItem {
  position: relative;
  width: var(--itemWidth);
  display: flex;
  flex-direction: column;
  padding-block: 1em;
  padding-inline: 3em;
  scroll-snap-align: start;
}
@media (min-width: 992px) {
  #annual-report-2024 .timeLineItem:first-of-type {
    padding-inline-start: 20em;
  }
  #annual-report-2024 .timeLineItem:last-of-type {
    padding-inline-end: var(--inlineMargin);
  }
}
@media (min-width: 1300px) {
  #annual-report-2024 .timeLineItem {
    display: grid;
    grid-template-columns: 1fr 4fr 3fr;
    gap: 3em;
    padding-block: 5em;
  }
}
#annual-report-2024 .timeLineItem::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  height: 75%;
  transform: translateY(-50%);
  border-right: 2px solid #e8e8e8;
}
#annual-report-2024 .timeLineItem:last-of-type::after {
  display: none;
}
#annual-report-2024 .timeLineItem .dateContainer {
  order: 1;
  font-size: 0.75em;
  margin-block-start: 0.75em;
}
@media (min-width: 1300px) {
  #annual-report-2024 .timeLineItem .dateContainer {
    order: unset;
  }
}
#annual-report-2024 .timeLineItem .dateContainer p {
  background-color: var(--pillColor, var(--cvcPurple));
  text-align: center;
  border-radius: 1em;
  padding: 0.25em;
  color: white;
  width: 12ch;
}
#annual-report-2024 .timeLineItem .copyContainer {
  order: 3;
  padding-block-end: 1em;
}
@media (min-width: 1300px) {
  #annual-report-2024 .timeLineItem .copyContainer {
    order: unset;
    padding-block: unset;
  }
}
#annual-report-2024 .timeLineItem .copyContainer h3 {
  margin: 0;
  font-family: "Big Shoulders Display", sans-serif;
  font-optical-sizing: auto;
  font-size: 2.125em;
  text-wrap: balance;
  margin-block: 0.5em;
}
#annual-report-2024 .timeLineItem .copyContainer button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  text-transform: capitalize;
  text-decoration: underline;
}
#annual-report-2024 .timeLineItem .copyContainer button:hover {
  text-decoration: none;
}
#annual-report-2024 .timeLineItem .copyContainer a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
}
#annual-report-2024 .timeLineItem .copyContainer a:hover {
  text-decoration: none;
}
#annual-report-2024 .timeLineItem .imageContainer {
  order: 2;
  max-height: 30vh;
}
@media (min-width: 768px) {
  #annual-report-2024 .timeLineItem .imageContainer {
    max-height: 60vh;
  }
}
@media (min-width: 1300px) {
  #annual-report-2024 .timeLineItem .imageContainer {
    max-height: 30vh;
    order: unset;
  }
}
@media (max-height: 400px) {
  #annual-report-2024 .timeLineItem .imageContainer:has(.landscape) {
    max-height: unset;
    height: 50vh;
  }
}
@media (max-height: 400px) {
  #annual-report-2024 .timeLineItem .imageContainer:not(:has(:is(.landscape, .logo))) {
    max-height: unset;
    height: 50vh;
  }
}
#annual-report-2024 .timeLineItem .imageContainer img {
  object-fit: cover;
  width: 100%;
  border-radius: 20vw;
  height: 100%;
  object-position: top center;
}
@media (min-width: 1200px) {
  #annual-report-2024 .timeLineItem .imageContainer img {
    height: unset;
    object-fit: contain;
  }
}
@media (min-width: 1200px) and (max-width: 1300px) {
  #annual-report-2024 .timeLineItem .imageContainer img {
    height: 100%;
    object-fit: cover;
  }
}
#annual-report-2024 .timeLineItem .imageContainer img.port {
  max-width: 30vw;
  object-fit: cover;
  width: unset;
  height: 100%;
}
@media (min-width: 768px) {
  #annual-report-2024 .timeLineItem .imageContainer img.port {
    max-width: 15vw;
    max-height: 25vw;
  }
}
#annual-report-2024 .timeLineItem .imageContainer img.logo {
  max-width: 50dvw;
  border-radius: 0;
  object-fit: contain;
}
#annual-report-2024 .timeLineItem .timeLineNav {
  justify-self: center;
  width: fit-content;
  grid-column: -1/-2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
  align-items: end;
  justify-items: center;
  order: 4;
  flex-grow: 1;
}
@media (min-width: 576px) {
  #annual-report-2024 .timeLineItem .timeLineNav {
    align-self: end;
    margin-inline-end: calc(50px - 1em);
  }
}
@media (min-width: 1300px) {
  #annual-report-2024 .timeLineItem .timeLineNav {
    order: unset;
  }
}
#annual-report-2024 .timeLineItem .timeLineNav button {
  padding: 0;
  border: none;
  background-color: #585858;
  font-size: 1.25em;
  height: 2.5em;
  aspect-ratio: 1;
}
#annual-report-2024 .timeLineItem .timeLineNav button:hover {
  filter: brightness(1.5);
}
#annual-report-2024 .timeLineItem .timeLineNav .timeLineNextBtn {
  grid-column: -1/-2;
}
#annual-report-2024 .timeLineItem .timeLineNav .timeLinePrevBtn {
  grid-column: 1/2;
}
#annual-report-2024 .timeLineItem:first-of-type .timeLinePrevBtn {
  display: none;
}
#annual-report-2024 .timeLineItem:first-of-type .copyContainer button {
  display: none;
}
#annual-report-2024 .timeLineItem:last-of-type .timeLineNextBtn {
  display: none;
}
#annual-report-2024 .timeLineItem:nth-of-type(2n) {
  --pillColor: var(--cvcTeal);
}
#annual-report-2024 .timeLineItem:nth-of-type(3n) {
  --pillColor: var(--cvcYellow);
}
#annual-report-2024 .timeLineItem:nth-of-type(4n) {
  --pillColor: var(--cvcRed);
}
#annual-report-2024 #byTheNumbers2024 .sectionHero {
  position: relative;
  height: 50dvh;
  overflow: hidden;
}
#annual-report-2024 #byTheNumbers2024 .sectionHero img.heroImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#annual-report-2024 #byTheNumbers2024 .sectionHero .animatedIcon {
  position: absolute;
  bottom: 0;
  left: calc(var(--inlineMargin) - 3em);
  width: 60dvw;
}
#annual-report-2024 #byTheNumbers2024 .sectionHero .animatedIcon img {
  transform: translateY(14%) translateX(-14%);
  width: 100%;
  object-fit: contain;
}
@media (min-width: 768px) {
  #annual-report-2024 #byTheNumbers2024 .sectionHero .animatedIcon {
    width: 30dvw;
  }
}
@media (max-height: 450px) {
  #annual-report-2024 #byTheNumbers2024 .sectionHero .animatedIcon {
    width: 20dvw;
  }
}
#annual-report-2024 #byTheNumbers2024 .sectionHero .headingIcon {
  position: absolute;
  bottom: -10px;
  left: calc(var(--inlineMargin) - 4em);
  width: 40dvw;
  max-width: 380px;
  padding: 0;
}
#annual-report-2024 #byTheNumbers2024 .sectionHero .headingIcon .cls-1 {
  fill: #c31f4b;
}
#annual-report-2024 #byTheNumbers2024 .sectionHero .headingIcon .cls-2 {
  fill: #01a8a5;
}
@media (min-width: 768px) {
  #annual-report-2024 #byTheNumbers2024 .sectionHero .headingIcon {
    width: 20dvw;
  }
}
#annual-report-2024 #byTheNumbers2024 .sectionHero .sectionHeading {
  position: absolute;
  left: calc(var(--inlineMargin));
  bottom: 0;
}
#annual-report-2024 #byTheNumbers2024 .sectionHero .sectionHeading h2 {
  font-size: 2.8125em;
  font-family: "Big Shoulders Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  max-width: 14ch;
  text-wrap: unset;
  margin: 0;
}
@media (min-width: 1900px) {
  #annual-report-2024 #byTheNumbers2024 .sectionHero .sectionHeading h2 {
    font-size: 3.8125em;
  }
}
#annual-report-2024 #byTheNumbers2024 .sectionHero .gradientOverlay {
  position: absolute;
  left: 0;
  top: 0;
  outline: 2px solid red;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #808080, rgba(255, 255, 255, 0));
  mix-blend-mode: multiply;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent {
  position: relative;
  padding-inline: var(--inlineMargin);
  padding-block-start: var(--inlineMargin);
}
#annual-report-2024 #byTheNumbers2024 .sectionContent h3 {
  margin: 0;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent h3.chartTitle {
  background: var(--backgroundColor, #000);
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800;
  font-size: 1.75em;
  width: 100%;
  max-width: 24ch;
  color: #fff;
  padding: 0.5em;
  display: grid;
  justify-content: center;
  border-radius: 2.1875em;
}
@media (min-width: 768px) {
  #annual-report-2024 #byTheNumbers2024 .sectionContent h3.chartTitle {
    font-size: 2.1875em;
  }
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .titleAndStat {
  margin-block-end: calc(var(--inlineMargin) / 2);
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .titleAndStat h3,
#annual-report-2024 #byTheNumbers2024 .sectionContent .titleAndStat h4 {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800;
  color: var(--cvcGrey);
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .titleAndStat h3 {
  font-size: 2.8125em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .titleAndStat h3 span {
  justify-self: end;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .titleAndStat h4 {
  font-size: 1.875em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph {
  padding-block: var(--inlineMargin);
  display: none;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-1 {
  font-size: 30px;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-1,
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-2,
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-3,
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-4,
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-5,
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-6 {
  fill: #fff;
  font-family: Montserrat-Medium, Montserrat;
  font-weight: 500;
  isolation: isolate;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-7 {
  fill: #00a8a5;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-8 {
  fill: #c3204b;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-2 {
  font-size: 25px;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-9 {
  fill: #781257;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-3 {
  font-size: 35px;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-10 {
  fill: #e6a323;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-11 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-12 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-13 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-14 {
  fill: #961238;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-15 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-16 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-17 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-18 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-19 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-20 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-4 {
  font-size: 16px;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-21 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-22 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-23 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-24 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-25 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-26 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-5 {
  font-size: 20px;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-27 {
  fill: #087472;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-28 {
  letter-spacing: -0.02em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-29 {
  letter-spacing: -0.02em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-30 {
  letter-spacing: -0.02em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-31 {
  letter-spacing: -0.02em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-32 {
  letter-spacing: -0.01em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-33 {
  letter-spacing: -0.01em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-34 {
  letter-spacing: -0.02em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-35 {
  letter-spacing: -0.02em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-36 {
  letter-spacing: -0.02em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-37 {
  letter-spacing: -0.01em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-38 {
  letter-spacing: -0.01em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-39 {
  letter-spacing: -0.02em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-40 {
  letter-spacing: -0.02em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-41 {
  letter-spacing: -0.01em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-42 {
  letter-spacing: -0.06em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-6 {
  font-size: 12px;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-43 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-44 {
  letter-spacing: -0.01em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-45 {
  letter-spacing: -0.01em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-46 {
  letter-spacing: -0.01em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-47 {
  letter-spacing: -0.01em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-48 {
  letter-spacing: -0.01em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-49 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-50 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-51 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-52 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-53 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-54 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-55 {
  letter-spacing: 0.08em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-56 {
  letter-spacing: 0.02em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-57 {
  letter-spacing: 0.01em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-58 {
  letter-spacing: 0.01em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-59 {
  letter-spacing: 0.01em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-60 {
  letter-spacing: 0.01em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-61 {
  letter-spacing: 0.01em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-62 {
  letter-spacing: 0.01em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-63 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph svg .cls-64 {
  letter-spacing: 0em;
}
@media (min-width: 768px) {
  #annual-report-2024 #byTheNumbers2024 .sectionContent #gearGraph {
    display: block;
  }
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph {
  padding-block: var(--inlineMargin);
  margin-inline: calc(var(--inlineMargin) * -1 + 1em);
}
@media (min-width: 768px) {
  #annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph {
    display: none;
  }
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-1 {
  fill: #00a8a5;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-2 {
  fill: #c3204b;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-3 {
  font-size: 9px;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-3,
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-4,
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-5,
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-6,
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-7 {
  fill: #fff;
  font-family: Montserrat-Medium, Montserrat;
  font-weight: 500;
  isolation: isolate;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-8 {
  fill: #781257;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-9 {
  fill: #e6a323;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-4 {
  font-size: 11px;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-10 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-5 {
  font-size: 18px;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-11 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-12 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-13 {
  fill: #961238;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-14 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-15 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-16 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-17 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-18 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-19 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-20 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-21 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-22 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-6 {
  font-size: 20px;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-23 {
  fill: #087472;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-24 {
  letter-spacing: -0.02em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-25 {
  letter-spacing: -0.02em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-26 {
  letter-spacing: -0.02em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-27 {
  letter-spacing: -0.01em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-28 {
  letter-spacing: -0.02em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-29 {
  letter-spacing: -0.02em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-30 {
  letter-spacing: -0.02em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-31 {
  letter-spacing: -0.02em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-32 {
  letter-spacing: -0.01em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-33 {
  letter-spacing: -0.01em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-34 {
  letter-spacing: -0.02em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-35 {
  letter-spacing: -0.02em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-36 {
  letter-spacing: -0.01em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-37 {
  letter-spacing: -0.06em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-38 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-39 {
  letter-spacing: -0.01em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-40 {
  letter-spacing: -0.01em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-41 {
  letter-spacing: -0.01em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-42 {
  letter-spacing: -0.01em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-43 {
  letter-spacing: -0.01em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-44 {
  letter-spacing: -0.01em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-45 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-46 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-47 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-48 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-7 {
  font-size: 6px;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-49 {
  letter-spacing: 0.08em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-50 {
  letter-spacing: 0.02em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-51 {
  letter-spacing: 0.02em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-52 {
  letter-spacing: 0.01em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-53 {
  letter-spacing: 0.01em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-54 {
  letter-spacing: 0.01em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #vertGearGraph svg .cls-55 {
  letter-spacing: 0em;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent [id$=-gear] {
  animation: rotation 30s infinite linear;
  animation-direction: reverse;
  transform-origin: center;
  transform-box: fill-box;
  scale: 100%;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .bar-chart-wrapper {
  position: relative;
  margin-inline: calc(var(--inlineMargin) * -1 + 1em);
  padding-block: 10rem;
  padding-inline: 1rem;
  font-size: 1.5rem;
  --graph-label-offset: 0px;
  --graph-border-color: #000;
  --graph-border-width: 2px;
  --graph-marker-size: 2rem;
}
@media (min-width: 768px) {
  #annual-report-2024 #byTheNumbers2024 .sectionContent .bar-chart-wrapper {
    margin-inline: auto;
    --graph-label-offset: 335px;
  }
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .bar-chart-wrapper hr {
  display: block;
  border-top: var(--graph-border-width) solid var(--graph-border-color);
  width: calc(100% - var(--graph-label-offset) + 2px);
  position: relative;
  top: 0;
  left: calc(var(--graph-label-offset) - 2px);
  margin: 0;
  padding: 0;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .bar-chart-wrapper .chart-title {
  width: calc(100% - var(--graph-label-offset));
  margin-left: var(--graph-label-offset);
  text-align: center;
  color: var(--graph-border-color);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(1.25rem, 0.8252rem + 1.1327vw, 3rem);
  line-height: 1.5;
  font-weight: 400;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .bar-chart-wrapper .graph-markers {
  display: flex;
  justify-content: space-between;
  width: calc(100% - var(--graph-label-offset));
  margin-left: var(--graph-label-offset);
  margin-bottom: var(--graph-marker-size);
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 400;
  font-size: var(--graph-marker-size);
  color: var(--graph-border-color);
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .bar-chart-wrapper .graph-marker {
  position: relative;
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  aspect-ratio: 1;
  height: calc(var(--graph-marker-size) * 1.5);
  text-align: center;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .bar-chart-wrapper .graph-marker::after {
  position: absolute;
  content: "";
  width: var(--graph-border-width);
  height: var(--graph-marker-size);
  top: calc(var(--graph-marker-size) * 1.5 + var(--graph-border-width));
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--graph-border-color);
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .bar-chart-wrapper .graph-marker.lower-bound {
  transform: translateX(calc(-50% - var(--graph-border-width) / 2));
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .bar-chart-wrapper .graph-marker.upper-bound {
  transform: translateX(50%);
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .horizontal-bar-chart {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  row-gap: var(--graph-marker-size);
  align-items: center;
  width: 100%;
  font-size: inherit;
  align-items: center;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .horizontal-bar-chart .long-line > span {
  display: block;
  width: 32ch;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .horizontal-bar-chart .long-line::after {
  height: 50%;
  top: 100%;
}
@media (min-width: 768px) {
  #annual-report-2024 #byTheNumbers2024 .sectionContent .horizontal-bar-chart .long-line::after {
    top: 0;
  }
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .horizontal-bar-chart li {
  position: relative;
  font-size: 1.125em;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 700;
  margin: 0;
  padding: 0;
  padding-left: 1rem;
  --bar-width: var(--data-bar-value);
  color: var(--cvcTeal);
  --graph-border-color: var(--cvcTeal);
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .horizontal-bar-chart li span {
  display: block;
  margin: 0;
  font-size: 1em;
  padding-top: 0.45rem;
  line-height: 1.1;
  width: 40ch;
  color: black;
}
@media (min-width: 768px) {
  #annual-report-2024 #byTheNumbers2024 .sectionContent .horizontal-bar-chart li span {
    font-size: inherit;
    text-align: right;
  }
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .horizontal-bar-chart li:first-of-type {
  margin-block-start: var(--graph-marker-size);
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .horizontal-bar-chart li:nth-of-type(even) {
  --graph-border-color: var(--cvcRed);
  color: var(--cvcRed);
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .horizontal-bar-chart li:before {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: calc(var(--graph-label-offset) - var(--graph-border-width));
}
@media (min-width: 768px) {
  #annual-report-2024 #byTheNumbers2024 .sectionContent .horizontal-bar-chart li:before {
    border-right: var(--graph-border-width) solid var(--graph-border-color);
  }
}
@media (min-width: 768px) {
  #annual-report-2024 #byTheNumbers2024 .sectionContent .horizontal-bar-chart li:last-child:before {
    height: 100%;
  }
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .horizontal-bar-chart li:after {
  position: absolute;
  top: calc(var(--graph-marker-size) + var(--graph-marker-size) / 4);
  left: var(--graph-label-offset);
  content: "";
  display: block;
  background-color: currentColor;
  width: calc(var(--bar-width) / var(--graph-max-value) * (100% - var(--graph-label-offset)));
  height: 76%;
  border-radius: 0 2rem 2rem 0;
}
@media (min-width: 768px) {
  #annual-report-2024 #byTheNumbers2024 .sectionContent .horizontal-bar-chart li:after {
    top: 0;
    height: 100%;
  }
}
@media (min-width: 768px) {
  #annual-report-2024 #byTheNumbers2024 .sectionContent .horizontal-bar-chart li {
    font-size: 1.125em;
  }
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #pubByDomainChart {
  margin-block-end: var(--inlineMargin);
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #pubByDomainChart li {
  color: var(--cvcYellow);
  --graph-border-color: var(--cvcYellow);
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #pubByDomainChart li:nth-of-type(even) {
  --graph-border-color: var(--cvcPurple);
  color: var(--cvcPurple);
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .countingStats {
  position: relative;
  background-color: #f5f5f5;
  margin-inline: calc(var(--inlineMargin) * -1);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-inline-end: 2em;
  padding-block: var(--inlineMargin);
}
@media (min-width: 992px) {
  #annual-report-2024 #byTheNumbers2024 .sectionContent .countingStats {
    padding-inline-end: var(--inlineMargin);
  }
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .countingStats .gearBoxTop,
#annual-report-2024 #byTheNumbers2024 .sectionContent .countingStats .gearBoxBottom {
  position: absolute;
  width: 30vw;
  z-index: 500;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .countingStats .gearBoxTop svg,
#annual-report-2024 #byTheNumbers2024 .sectionContent .countingStats .gearBoxBottom svg {
  width: 100%;
  height: 100%;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .countingStats .gearBoxTop {
  width: 40vw;
  top: 0;
  left: var(--inlineMargin);
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  #annual-report-2024 #byTheNumbers2024 .sectionContent .countingStats .gearBoxTop {
    width: 15vw;
  }
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .countingStats .gearBoxBottom {
  bottom: 0;
  right: var(--inlineMargin);
  transform: translateY(50%);
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .countingStats .cyanGear,
#annual-report-2024 #byTheNumbers2024 .sectionContent .countingStats .purpleGear {
  transform-box: fill-box;
  transform-origin: center;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .statBar {
  display: flex;
  align-items: center;
  column-gap: 1.5em;
  background-color: var(--categoryColor, #000);
  width: var(--bar-width);
  border-radius: 0 7em 7em 0;
  padding-inline: var(--inlineMargin) 2em;
  padding-block: 0.5em;
  height: 85px;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .statBar h3,
#annual-report-2024 #byTheNumbers2024 .sectionContent .statBar p {
  color: #fff;
  font-family: "Big Shoulders Display", sans-serif;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .statBar h3 {
  font-size: 3em;
  font-weight: 800;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .statBar p {
  margin: 0;
  font-size: 1em;
  text-wrap: balance;
  line-height: 1.15;
}
@media (min-width: 768px) {
  #annual-report-2024 #byTheNumbers2024 .sectionContent .statBar {
    column-gap: 2rem;
    flex-direction: row;
    align-items: center;
    height: unset;
  }
  #annual-report-2024 #byTheNumbers2024 .sectionContent .statBar h3 {
    font-size: 7.0625em;
  }
  #annual-report-2024 #byTheNumbers2024 .sectionContent .statBar p {
    font-size: 1.825em;
    margin: 0;
  }
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .countUpStat-4,
#annual-report-2024 #byTheNumbers2024 .sectionContent .countUpStat-5 {
  flex-direction: column;
  align-items: start;
}
@media (min-width: 768px) {
  #annual-report-2024 #byTheNumbers2024 .sectionContent .countUpStat-4,
  #annual-report-2024 #byTheNumbers2024 .sectionContent .countUpStat-5 {
    flex-direction: row;
    align-items: center;
  }
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .countUpStat-1 {
  --bar-width: 60%;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .countUpStat-2 {
  --bar-width: 70%;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .countUpStat-3 {
  --bar-width: 80%;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .countUpStat-4 {
  --bar-width: 90%;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent .countUpStat-5 {
  --bar-width: 95%;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent h3:has(#countStat1) {
  width: 2ch;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent h3:has(#countStat2) {
  width: 5ch;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent h3:has(#countStat3) {
  width: 6ch;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent h3:has(#countStat4), #annual-report-2024 #byTheNumbers2024 .sectionContent h3:has(#countStat5) {
  display: flex;
  align-items: center;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #countStat4,
#annual-report-2024 #byTheNumbers2024 .sectionContent #countStat5 {
  display: block;
  width: 3ch;
}
#annual-report-2024 #byTheNumbers2024 .sectionContent #countStat5 {
  width: 1.5ch;
}
@media (min-width: 768px) {
  #annual-report-2024 #byTheNumbers2024 .sectionContent .suffix {
    display: flex;
    flex-direction: column;
    font-size: 0.35em;
    width: 6ch;
  }
}
@media (min-width: 1440px) {
  #annual-report-2024 #byTheNumbers2024 .sectionContent .suffix {
    display: inline;
    width: unset;
    font-size: unset;
  }
}
#annual-report-2024 #researchHighlights .sectionHero {
  position: relative;
  height: 50dvh;
  overflow: hidden;
}
#annual-report-2024 #researchHighlights .sectionHero img.heroImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#annual-report-2024 #researchHighlights .sectionHero .animatedIcon {
  position: absolute;
  bottom: 0;
  left: calc(var(--inlineMargin) - 4em);
  width: 60dvw;
}
#annual-report-2024 #researchHighlights .sectionHero .animatedIcon img {
  transform: translateY(14%) translateX(-14%);
  width: 100%;
  object-fit: contain;
}
@media (min-width: 768px) {
  #annual-report-2024 #researchHighlights .sectionHero .animatedIcon {
    width: 25dvw;
  }
}
#annual-report-2024 #researchHighlights .sectionHero .headingIcon {
  position: absolute;
  bottom: -10px;
  left: calc(var(--inlineMargin) - 4em);
  width: 40dvw;
  max-width: 380px;
  padding: 0;
}
#annual-report-2024 #researchHighlights .sectionHero .headingIcon .cls-1 {
  fill: #c31f4b;
}
#annual-report-2024 #researchHighlights .sectionHero .headingIcon .cls-2 {
  fill: #01a8a5;
}
@media (min-width: 768px) {
  #annual-report-2024 #researchHighlights .sectionHero .headingIcon {
    width: 20dvw;
  }
}
#annual-report-2024 #researchHighlights .sectionHero .sectionHeading {
  position: absolute;
  left: var(--inlineMargin);
  bottom: 0;
}
#annual-report-2024 #researchHighlights .sectionHero .sectionHeading h2 {
  font-size: 2.8125em;
  font-family: "Big Shoulders Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  max-width: 14ch;
  text-wrap: unset;
  margin: 0;
}
@media (min-width: 1900px) {
  #annual-report-2024 #researchHighlights .sectionHero .sectionHeading h2 {
    font-size: 3.8125em;
  }
}
#annual-report-2024 #researchHighlights .sectionHero .gradientOverlay {
  position: absolute;
  left: 0;
  top: 0;
  outline: 2px solid red;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #808080, rgba(255, 255, 255, 0));
  mix-blend-mode: multiply;
}
#annual-report-2024 #researchHighlights .researchHighlights {
  display: grid;
  gap: 5em;
  padding: var(--inlineMargin);
}
#annual-report-2024 #researchHighlights .researchHighlight {
  display: grid;
  align-items: center;
}
@media (min-width: 992px) {
  #annual-report-2024 #researchHighlights .researchHighlight {
    display: flex;
    justify-content: center;
    gap: 4rem;
  }
}
#annual-report-2024 #researchHighlights .researchHighlight .categoryPill {
  color: #fff;
  padding: 0.5em 1.5em;
  border-radius: 2ch;
  width: fit-content;
  min-width: 15ch;
  background-color: var(--categoryColor, black);
}
#annual-report-2024 #researchHighlights .researchHighlight > div {
  display: grid;
}
#annual-report-2024 #researchHighlights .researchHighlight h3 {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 900;
  font-size: 2em;
  color: var(--cvcGrey);
  margin-block-end: 0.75em;
  width: 100%;
}
@media (min-width: 576px) {
  #annual-report-2024 #researchHighlights .researchHighlight h3 {
    font-size: 2.8125em;
    max-width: 35ch;
  }
}
@media (min-width: 576px) {
  #annual-report-2024 #researchHighlights .researchHighlight p {
    max-width: 60ch;
  }
}
#annual-report-2024 #researchHighlights .researchHighlight li {
  max-width: 40ch;
  margin-block-end: 1em;
}
#annual-report-2024 #researchHighlights .researchHighlight .featureImage {
  width: 100%;
  max-height: 390px;
  max-width: 590px;
  aspect-ratio: 19/13;
  object-fit: cover;
  border-radius: 3em;
  margin-block-end: 3em;
}
@media (min-width: 768px) {
  #annual-report-2024 #researchHighlights .researchHighlight .featureImage {
    border-radius: 5em;
  }
}
@media (min-width: 992px) {
  #annual-report-2024 #researchHighlights .researchHighlight .featureImage {
    width: 35dvw;
    margin-block-end: unset;
  }
}
@media (min-width: 1500px) {
  #annual-report-2024 #researchHighlights .researchHighlight .featureImage {
    width: 45dvw;
  }
}
#annual-report-2024 #researchHighlights .researchHighlight:nth-of-type(even) {
  flex-direction: row-reverse;
}
#annual-report-2024 #acknowledgements .sectionHero {
  position: relative;
  height: 50dvh;
  overflow: hidden;
}
#annual-report-2024 #acknowledgements .sectionHero img.heroImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}
#annual-report-2024 #acknowledgements .sectionHero .animatedIcon {
  position: absolute;
  bottom: 0;
  left: var(--inlineMargin);
  width: 40dvw;
}
#annual-report-2024 #acknowledgements .sectionHero .animatedIcon img {
  width: 100%;
  object-fit: contain;
}
@media (min-width: 768px) {
  #annual-report-2024 #acknowledgements .sectionHero .animatedIcon {
    width: 30dvw;
  }
}
#annual-report-2024 #acknowledgements .sectionCopy {
  display: grid;
  grid-template-columns: auto;
  padding-inline: var(--inlineMargin);
  padding-block: 10rem;
}
@media (min-width: 768px) {
  #annual-report-2024 #acknowledgements .sectionCopy {
    grid-template-columns: 5fr 3fr;
    column-gap: 2.5em;
    row-gap: 1.25em;
  }
}
@media (min-width: 992px) {
  #annual-report-2024 #acknowledgements .sectionCopy {
    column-gap: 5em;
    row-gap: 2.5em;
  }
}
@media (min-width: 1200px) {
  #annual-report-2024 #acknowledgements .sectionCopy {
    column-gap: 10em;
    row-gap: 5em;
  }
}
#annual-report-2024 #acknowledgements .sectionCopy > :first-child {
  grid-column: 1/-1;
}
#annual-report-2024 #acknowledgements .sectionCopy h3,
#annual-report-2024 #acknowledgements .sectionCopy h4 {
  font-family: "Big Shoulders Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  text-transform: uppercase;
  text-wrap: balance;
}
#annual-report-2024 #acknowledgements .sectionCopy h3 {
  color: var(--cvcTeal);
  font-size: 3.5em;
}
@media (min-width: 768px) {
  #annual-report-2024 #acknowledgements .sectionCopy h3 {
    font-size: 4.8125em;
  }
}
#annual-report-2024 #acknowledgements .sectionCopy h4 {
  font-size: 1.875em;
  margin-block-end: 1em;
}
#annual-report-2024 #acknowledgements .sectionCopy p {
  font-size: 1em;
  max-width: 45ch;
}
#annual-report-2024 #acknowledgements .sectionCopy ul {
  list-style: none;
  width: 100%;
}
#annual-report-2024 #acknowledgements .sectionCopy li {
  position: relative;
  width: 100%;
  max-width: 55ch;
  margin-block-end: 2em;
}
#annual-report-2024 #acknowledgements .sectionCopy li:before {
  position: absolute;
  content: "";
  aspect-ratio: 1;
  top: 0.25em;
  left: -2em;
  height: 0.75em;
  border-radius: 1em;
  background-color: var(--cvcYellow);
}
#annual-report-2024 #acknowledgements .gearsGraphic {
  width: 100%;
}
#annual-report-2024 #acknowledgements .cls-1 {
  fill: none;
}
#annual-report-2024 #acknowledgements .cls-2 {
  fill: #00a8a5;
  animation: rotation 5s infinite linear;
  animation-direction: reverse;
}
#annual-report-2024 #acknowledgements .cls-3 {
  fill: #e6a324;
  animation: rotation 7s infinite linear;
}
#annual-report-2024 #acknowledgements .cls-4 {
  fill: #781c58;
  animation: rotation 10s infinite linear;
  animation-direction: reverse;
}
#annual-report-2024 #acknowledgements .cls-2,
#annual-report-2024 #acknowledgements .cls-3,
#annual-report-2024 #acknowledgements .cls-4,
#annual-report-2024 #acknowledgements .cls-5 {
  transform-box: fill-box;
  transform-origin: center;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
html {
  min-height: 100%;
}

body {
  position: relative;
  height: 100%;
}

#annualReportNavContainer {
  position: absolute;
  top: 310px;
  right: 0;
  height: calc(100% - 310px);
  z-index: 999;
}
@media (min-width: 768px) {
  #annualReportNavContainer {
    top: 188px;
    height: calc(100% - 188px);
  }
}

#annualReportNavBtn {
  position: sticky;
  top: 20px;
  border: 0;
  background: none;
  padding: 0;
}
#annualReportNavBtn svg {
  width: 70px;
}
@media (min-width: 1200px) {
  #annualReportNavBtn svg {
    width: 185px;
  }
}
#annualReportNavBtn svg .cls-1 {
  fill: #00a8a5;
}
#annualReportNavBtn svg .cls-2 {
  fill: #fff;
}
#annualReportNavBtn svg #gear {
  transform-origin: center;
}

#annualReportNavMenu {
  --sideMenuWidth: 100dvw;
  position: fixed;
  top: 0;
  left: 100dvw;
  z-index: 999;
  background-color: #00a8a5;
  width: var(--sideMenuWidth);
  height: 100dvh;
  transition: left 500ms;
  padding: 1em;
}
@media (min-width: 576px) {
  #annualReportNavMenu {
    --sideMenuWidth: 50dvw;
  }
}
@media (min-width: 1200px) {
  #annualReportNavMenu {
    --sideMenuWidth: 30dvw;
  }
}
#annualReportNavMenu.nav-open {
  left: calc(100% - var(--sideMenuWidth));
}
#annualReportNavMenu ul {
  display: grid;
  place-content: center;
  width: 100%;
  height: calc(100% - 2em);
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 2.8125em;
}
#annualReportNavMenu .nav-link {
  font-family: "Big Shoulders Display", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
}
#annualReportNavMenu .nav-link:hover, #annualReportNavMenu .nav-link:focus {
  text-decoration: underline;
}
#annualReportNavMenu button {
  border: 0;
  background: none;
  padding: 0;
  aspect-ratio: 1;
  border: 1px solid #fff;
  height: 2em;
}

body,
button,
input,
select,
textarea {
  color: #404040;
  font-family: "AvenirLT-Book", sans-serif;
  font-size: 22.4px;
  font-size: 1.4rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

p {
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

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

big {
  font-size: 125%;
}

blockquote,
q {
  quotes: "" "";
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

nav {
  font-size: 0.9em;
}

.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}

.infinity-end.neverending .site-footer {
  display: block;
}

.carousel {
  height: 500px;
}

.carousel-caption {
  z-index: 10;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 200px;
  width: 50%;
  padding: 0;
  text-align: left;
  text-shadow: none;
}

.carousel-caption h3 {
  font-family: "AvenirLT-Light", sans-serif;
  font-size: 3.5em;
  color: #fff;
  line-height: 1;
}

.carousel-caption h3 small {
  color: #fff;
  font-size: 40%;
  line-height: 0.6;
}

.carousel-caption h3 big {
  font-size: 150%;
}

.carousel-caption p {
  color: #fff;
  font-size: 1.5em;
}

.carousel .item {
  height: 500px;
  background-size: cover, cover;
  background-position: center center, center center;
}

.iconwrap {
  height: 200px;
  padding-top: 20px;
  padding-left: 240px;
  background-size: contain;
  background-position: left top;
  background-repeat: no-repeat;
}

.carousel-inner > .item > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 500px;
}

.carousel-control,
.carousel-control.right,
.carousel-control.left {
  background-image: none;
}

.carousel-indicators {
  bottom: 0;
  background: #fff;
  margin-bottom: 0;
  color: #000;
  width: auto;
  margin: 0 auto;
  padding: 5px 5px 0 5px;
}

.carousel-indicators li {
  background-color: #000;
}

.carousel-indicators li.active {
  background-color: #bc204b;
}

@media only screen and (max-width: 1024px) {
  .carousel-caption {
    width: 66%;
  }
}
@media only screen and (max-width: 768px) {
  .carousel,
  .carousel .item {
    height: 350px;
  }
  .carousel-caption {
    width: 75%;
  }
  .carousel-caption h3 {
    font-size: 3em;
    margin-top: 50px;
  }
  .carousel-caption .iconwrap h3 {
    margin-top: 20px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right {
    font-size: 20px;
  }
  #site-functions {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 480px) {
  .carousel-caption {
    height: 100%;
  }
  .carousel-caption .iconwrap {
    padding-left: 0;
    padding-top: 100px;
    margin-top: 20px;
    background-size: 40%;
    height: auto;
  }
  .carousel-caption .iconwrap h3 {
    margin-top: 20px;
  }
  .carousel-caption h3 {
    font-size: 2em;
    margin-top: 120px;
  }
  #header a.btn {
    margin-left: 5px;
    font-size: 10px;
    padding: 10px;
  }
  ul.subpages li {
    margin-bottom: 20px;
  }
}
.navbar-nav > li > .dropdown-menu {
  border: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

#navigation .navbar-default .navbar-nav > li > a:hover,
#navigation .navbar-default .navbar-nav > li > a:focus {
  color: #000;
}

ul.nav li.dropdown:hover ul.dropdown-menu {
  display: block;
}

.mega-dropdown {
  position: static !important;
}

.mega-dropdown-menu {
  padding: 40px;
  width: 100%;
  box-shadow: none;
  -webkit-box-shadow: none;
  color: #fff;
  background-color: #bc204b;
  background-image: url("assets/img/line-pattern.png");
  line-height: 2em;
}

.mega-dropdown-menu a {
  color: #fff;
}

.mega-dropdown-menu a:hover,
.mega-dropdown-menu a:focus {
  background: none;
  color: #000;
  text-decoration: none;
}

.mega-dropdown-menu .tab-content {
  border-left: 1px solid #fff;
  padding-left: 3em;
}

.mega-dropdown-menu h3 a {
  color: #fff;
  text-decoration: none;
}

.mega-dropdown-menu > li > ul {
  padding: 0;
  margin: 0;
}

.mega-dropdown-menu > li > ul > li {
  list-style: none;
}

.mega-dropdown-menu > li > ul > li > a {
  color: #fff;
}

.mega-dropdown-menu > li ul > li > a:hover,
.mega-dropdown-menu > li ul > li > a:focus {
  background: none;
  color: #000;
}

@media only screen and (min-width: 768px) {
  .mega-dropdown-menu .is-table-row {
    display: table;
  }
  .mega-dropdown-menu .is-table-row [class*=col-] {
    float: none;
    display: table-cell;
    vertical-align: top;
  }
}
.btn {
  border-radius: 0;
  border: none;
  padding: 0.5em 2em;
  text-decoration: none !important;
}

.btn-default {
  background-color: #000;
  color: #fff !important;
}

.btn-default:hover,
.btn-default:focus {
  background-color: #4d4c4c;
  color: #fff;
}

.btn-red {
  background-color: #bc204b;
  color: #fff;
}

.btn-red:hover,
.btn-red:focus {
  background-color: #e45e83;
  color: #fff;
}

.is-table-row {
  display: table;
}

.is-table-row [class*=col-] {
  float: none;
  display: table-cell;
  vertical-align: top;
}

.box-shadow {
  -webkit-box-shadow: 0px 0px 10px #888;
  box-shadow: 0px 0px 10px #888;
}

strong {
  font-family: "AvenirLT-Black", sans-serif;
}

#content #breadcrumbs,
#breadcrumbs {
  letter-spacing: 0.1em;
  margin-bottom: 5em;
}

#content #breadcrumbs a,
#breadcrumbs a {
  color: #000;
  text-decoration: none;
}

#content #breadcrumbs a:hover,
#content #breadcrumbs a:focus,
#breadcrumbs a:hover,
#breadcrumbs a:focus {
  color: #bc204b;
}

.fluid-row {
  padding-right: 15px;
  padding-left: 15px;
  position: absolute;
  width: 100%;
  left: 0;
}

#content a:not(.elementor-button) {
  text-decoration: underline;
  color: #000;
}

#content a:hover,
#content a:focus {
  color: #bc204b;
}

dl dt {
  font-family: "AvenirLT-Black", sans-serif;
}

.img-pull-left {
  width: 45%;
  margin-right: 5%;
  float: left;
  height: auto;
}

.img-pull-right {
  width: 45%;
  margin-left: 5%;
  float: right;
  height: auto;
}

ul.tags {
  list-style: none;
  padding-left: 0;
}

ul.tags a {
  color: #333;
  text-decoration: underline;
}

ul.tags a:hover {
  color: #bc204b;
}

ul.tags li {
  list-style: none;
  display: inline;
}

ul.tags li:after {
  content: ", ";
}

ul.tags li:last-child:after {
  content: "";
}

.alignnone {
  max-width: 100%;
  height: auto;
  display: block;
}

.search-result {
  margin-top: 50px;
}

.screen-reader-text {
  display: none;
}

#pubmed-search h4 {
  width: auto;
  float: left;
  margin-right: 15px;
  margin-top: 5px;
}

select.form-control {
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  border: none;
  width: 50%;
}

select.form-control.btn-default {
  background-image: linear-gradient(45deg, transparent 50%, white 50%), linear-gradient(135deg, white 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

#header {
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, #fff), to(rgba(255, 255, 255, 0))), url("assets/img/line-pattern.png"), url("assets/img/diamond-pattern.png");
  background: linear-gradient(to right, #fff 20%, rgba(255, 255, 255, 0) 100%), url("assets/img/line-pattern.png"), url("assets/img/diamond-pattern.png");
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#00ffffff",GradientType=1 ), url("assets/img/line-pattern.png"), url("assets/img/diamond-pattern.png");
  padding: 3em;
}

#header .btn {
  border: none;
  padding: 0.5em 2em;
}

#header .btn:hover {
  color: #fff;
}

#header a.btn {
  margin-left: 1em;
}

#header #search-box {
  margin-top: 1em;
  max-width: 300px;
  float: right;
}

#search-box .form-control {
  border-radius: 0;
}

@media (max-width: 992px) {
  #navigation .container {
    width: auto;
  }
}
#navigation {
  background-color: #bc204b;
  color: #fff;
}

#navigation .container {
  padding: 0;
}

#navigation .navbar {
  margin-bottom: 0;
}

#navigation .navbar-default {
  border: none;
  background: none;
}

#navigation .navbar-default .navbar-collapse {
  border: none;
  line-height: 0;
  text-align: center;
  padding: 0;
}

#navigation .navbar-default .navbar-collapse .navbar-nav {
  float: none;
  display: inline-block;
}

#navigation .navbar-default .navbar-nav > li {
  float: none;
  display: inline-block;
}

#navigation .navbar-default .navbar-nav > li > a {
  color: #fff;
}

#navigation .navbar-default .navbar-nav > .open > a,
#navigation .navbar-default .navbar-nav > .open > a:focus,
#navigation .navbar-default .navbar-nav > .open > a:hover {
  color: #000;
  background: #bc204b;
}

#navigation .dropdown-menu {
  border: 0;
  border-radius: 0;
  width: 100%;
  margin-left: 0%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "AvenirLT-Light", sans-serif;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #000;
  text-decoration: none !important;
}

h1 a:hover,
h1 a:focus,
h2 a:hover,
h2 a:focus,
h3 a:hover,
h3 a:focus,
h4 a:hover,
h4 a:focus,
h5 a:hover,
h5 a:focus,
h6 a:hover,
h6 a:focus {
  color: #bc204b;
  text-decoration: none;
}

h1,
h2 {
  color: #bc204b;
}

.entry-header > h1,
.entry-header > h2,
.entry-header > h3,
.entry-header > h4,
.entry-header > h5,
.entry-header > h6 {
  margin-top: 0;
}

#content .sidebar {
  background-color: #bc204b;
  color: #fff;
  padding: 1em;
  margin-top: 1em;
}

#content .sidebar h4 {
  color: #fff;
  margin-top: 0;
  padding: 10px 15px;
}

#content .sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#content .sidebar ul li {
  list-style: none;
  margin: 0 0 0.5em 0;
  padding: 0;
}

#content .sidebar ul li a {
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
}

#content .sidebar ul li a:hover,
#content .sidebar ul li a:focus {
  color: #000;
}

#content .sidebar ul li.active a {
  color: #000;
  text-decoration: none;
}

.right-photo-block {
  margin-bottom: 3em;
}

.right-photo-block .text {
  padding-top: 2em;
  padding-bottom: 2em;
}

#content {
  min-height: 80dvh;
  background-image: url("assets/img/line-pattern.png"), -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(255, 255, 255, 0)), to(#fff)), url("assets/img/diamond-pattern.fade.png");
  background-image: url("assets/img/line-pattern.png"), linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, #fff 100%), url("assets/img/diamond-pattern.fade.png");
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#00ffffff",GradientType=0 ), url("assets/img/line-pattern.png"), url("assets/img/diamond-pattern.fade.png");
  background-repeat: repeat, no-repeat, repeat-x;
}

#content .row {
  background-color: #fff;
  padding-top: 1em;
}

.search-highlight {
  background-color: rgba(251, 255, 0, 0.4);
}

.meta {
  color: #888;
  margin-bottom: 0;
}

.entry-meta {
  margin-bottom: 1em;
}

.post-thumbnail {
  margin-bottom: 4em;
}

.post-navigation,
.posts-navigation {
  margin-top: 2em;
  padding-top: 2em;
  border-top: 1px solid #aaa;
}

.post-navigation h2,
.posts-navigation h2 {
  display: none;
}

.post-navigation .nav-previous,
.post-navigation .nav-next,
.posts-navigation .nav-previous,
.posts-navigation .nav-next {
  width: 33%;
}

.post-navigation .nav-previous a,
.post-navigation .nav-next a,
.posts-navigation .nav-previous a,
.posts-navigation .nav-next a {
  background-color: #000;
  color: #fff !important;
  border: none;
  padding: 1em;
  display: inline-block;
  text-decoration: none !important;
}

.post-navigation .nav-previous a:hover,
.post-navigation .nav-previous a:focus,
.post-navigation .nav-next a:hover,
.post-navigation .nav-next a:focus,
.posts-navigation .nav-previous a:hover,
.posts-navigation .nav-previous a:focus,
.posts-navigation .nav-next a:hover,
.posts-navigation .nav-next a:focus {
  background-color: #bc204b;
}

.post-navigation .nav-previous,
.posts-navigation .nav-previous {
  float: left;
}

.post-navigation .nav-previous a::before,
.posts-navigation .nav-previous a::before {
  content: "<";
  padding-right: 0.5em;
}

.post-navigation .nav-next,
.posts-navigation .nav-next {
  float: right;
  text-align: right;
}

.post-navigation .nav-next a::after,
.posts-navigation .nav-next a::after {
  content: ">";
  padding-left: 0.5em;
}

hr.hr-heavy {
  border-top: 2px solid #333;
}

.links {
  margin-top: 2em;
}

.links a.btn {
  margin-right: 1em;
}

#extras h2 {
  text-align: center;
  border-bottom: 1px solid;
}

#extras ul {
  padding-left: 0;
}

#extras li {
  list-style-type: none;
}

#extras #news {
  background: #bc204b;
  border: 1px solid #bc204b;
  color: #fff;
  padding: 0 2em;
}

#extras #news h2,
#extras #news h3,
#extras #news a {
  color: #fff;
}

#extras #news h3 {
  margin-bottom: 0;
}

#extras #news .meta {
  color: #000;
}

#extras #twitter {
  padding: 0 2em;
  border: 1px solid #000;
}

#extras #twitter h2,
#extras #twitter h3 {
  color: #000;
}

.facts .figure {
  text-align: center;
  padding: 2em;
}

.facts .figure img {
  display: block;
  max-width: 50%;
  height: auto;
  margin: 0 auto 1em auto;
}

.facts .figure .stat {
  font-size: 3.5em;
  color: #bc204b;
  margin-bottom: 0;
}

.facts .figure .description {
  font-size: 1.1em;
  color: #333;
}

.issuu {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
  margin-bottom: 100px;
}

.issuu iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#pub-menu {
  background-color: #bc204b;
  padding: 1em;
  margin-bottom: 20px;
}

#pub-menu li {
  color: #fff;
}

#pub-menu li h4 {
  padding: 10px 15px;
}

#pub-menu li a {
  color: #fff;
  text-decoration: none;
}

#pub-menu li a:focus,
#pub-menu li a:hover {
  background: none !important;
  color: #000 !important;
}

#pub-menu.tab-menu > li > h4 {
  padding: 0;
}

#pub-menu.tab-menu > li > h4:hover,
#pub-menu.tab-menu > li > h4:focus {
  color: #fff;
}

#pub-menu li.active {
  color: #000;
}

#pub-menu li.active a {
  color: #000;
}

#pub-menu li.active a:focus,
#pub-menu li.active a:hover {
  background: none !important;
  color: #000 !important;
}

#pubmed-search {
  background: #bc204b;
  color: #fff;
  padding: 2em;
}

#pubmed-search h4 {
  font-family: "AvenirLT-Black", sans-serif;
}

#pubmed-search input {
  border-radius: 0;
}

#pubmed-search input.form-control {
  border: 1px solid #000;
  background: #fff;
  text-align: center;
  color: #333;
}

#pubmed-search a {
  text-decoration: none;
  color: #fff;
}

#pubmed-search a:hover,
#pubmed-search a:focus {
  color: #000;
}

#cvc-signoff {
  margin-top: 150px;
}

#footer {
  background: #000;
  color: #fff;
  padding: 4em 3em;
}

#footer .border {
  border-left: 1px solid #fff;
}

#footer .footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

#footer .footer-nav li {
  list-style: none;
}

#footer .footer-nav a {
  color: #fff;
  text-decoration: none;
}

#footer .footer-nav a:hover,
#footer .footer-nav a:focus {
  color: #bc204b;
}

#footer .footer-logo {
  max-height: 6em;
  max-width: 200px;
}

#content .popout-boxes,
.popout-boxes {
  color: #fff;
}

#content .popout-boxes .popout-box a.popout-button,
.popout-boxes .popout-box a.popout-button {
  padding: 3em 1em;
  margin: 2em 0 0 0;
  display: block;
  color: #fff;
  text-decoration: none;
  min-height: 200px;
}

#content .popout-boxes .popout-box a.popout-button img,
.popout-boxes .popout-box a.popout-button img {
  width: 100%;
}

#content .popout-boxes .popout-box a.popout-button p,
.popout-boxes .popout-box a.popout-button p {
  text-align: center;
  font-size: 1.1em;
}

#content .popout-boxes .popout-box a.popout-button h3,
.popout-boxes .popout-box a.popout-button h3 {
  color: #fff;
  text-align: center;
}

#content .popout-boxes .popout-box a.popout-button-0,
#content .popout-boxes .popout-box a.popout-button-2,
#content .popout-boxes .popout-box a.popout-button-5,
#content .popout-boxes .popout-box a.popout-button-7,
#content .popout-boxes .popout-box a.popout-button-8,
#content .popout-boxes .popout-box a.popout-button-10,
#content .popout-boxes .popout-box a.popout-button-13,
#content .popout-boxes .popout-box a.popout-button-15,
.popout-boxes .popout-box a.popout-button-0,
.popout-boxes .popout-box a.popout-button-2,
.popout-boxes .popout-box a.popout-button-5,
.popout-boxes .popout-box a.popout-button-7,
.popout-boxes .popout-box a.popout-button-8,
.popout-boxes .popout-box a.popout-button-10,
.popout-boxes .popout-box a.popout-button-13,
.popout-boxes .popout-box a.popout-button-15 {
  background: #bc204b;
}

#content .popout-boxes .popout-box a.popout-button-0:hover,
#content .popout-boxes .popout-box a.popout-button-2:hover,
#content .popout-boxes .popout-box a.popout-button-5:hover,
#content .popout-boxes .popout-box a.popout-button-7:hover,
#content .popout-boxes .popout-box a.popout-button-8:hover,
#content .popout-boxes .popout-box a.popout-button-10:hover,
#content .popout-boxes .popout-box a.popout-button-13:hover,
#content .popout-boxes .popout-box a.popout-button-15:hover,
.popout-boxes .popout-box a.popout-button-0:hover,
.popout-boxes .popout-box a.popout-button-2:hover,
.popout-boxes .popout-box a.popout-button-5:hover,
.popout-boxes .popout-box a.popout-button-7:hover,
.popout-boxes .popout-box a.popout-button-8:hover,
.popout-boxes .popout-box a.popout-button-10:hover,
.popout-boxes .popout-box a.popout-button-13:hover,
.popout-boxes .popout-box a.popout-button-15:hover {
  background: #333;
}

#content .popout-boxes .popout-box a.popout-button-1,
#content .popout-boxes .popout-box a.popout-button-3,
#content .popout-boxes .popout-box a.popout-button-4,
#content .popout-boxes .popout-box a.popout-button-6,
#content .popout-boxes .popout-box a.popout-button-9,
#content .popout-boxes .popout-box a.popout-button-11,
#content .popout-boxes .popout-box a.popout-button-12,
#content .popout-boxes .popout-box a.popout-button-14,
.popout-boxes .popout-box a.popout-button-1,
.popout-boxes .popout-box a.popout-button-3,
.popout-boxes .popout-box a.popout-button-4,
.popout-boxes .popout-box a.popout-button-6,
.popout-boxes .popout-box a.popout-button-9,
.popout-boxes .popout-box a.popout-button-11,
.popout-boxes .popout-box a.popout-button-12,
.popout-boxes .popout-box a.popout-button-14 {
  background: #000;
}

#content .popout-boxes .popout-box a.popout-button-1:hover,
#content .popout-boxes .popout-box a.popout-button-3:hover,
#content .popout-boxes .popout-box a.popout-button-4:hover,
#content .popout-boxes .popout-box a.popout-button-6:hover,
#content .popout-boxes .popout-box a.popout-button-9:hover,
#content .popout-boxes .popout-box a.popout-button-11:hover,
#content .popout-boxes .popout-box a.popout-button-12:hover,
#content .popout-boxes .popout-box a.popout-button-14:hover,
.popout-boxes .popout-box a.popout-button-1:hover,
.popout-boxes .popout-box a.popout-button-3:hover,
.popout-boxes .popout-box a.popout-button-4:hover,
.popout-boxes .popout-box a.popout-button-6:hover,
.popout-boxes .popout-box a.popout-button-9:hover,
.popout-boxes .popout-box a.popout-button-11:hover,
.popout-boxes .popout-box a.popout-button-12:hover,
.popout-boxes .popout-box a.popout-button-14:hover {
  background: #333;
}

#content .popout-boxes .popout-box .popout,
.popout-boxes .popout-box .popout {
  border: 1px solid #000;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin: 0 calc(1em + 1px);
  color: #000;
  padding: 1em;
  min-width: calc(100% - 30px);
}

#content .bios .popout-box a.popout-button {
  border: 1px solid #000;
  padding: 0;
}

#content .bios .popout-box a.popout-button h3,
#content .bios .popout-box a.popout-button p {
  margin-left: 20px;
  margin-right: 20px;
}

#content .bios .popout-box a.popout-button hr {
  margin: 20px;
}

#content .bios .popout-box a.popout-button .popout {
  font-size: 0.8em;
}

.conference-list .event {
  border-top: 1px solid #000;
  margin-top: 3em;
  padding-top: 3em;
}

#content ul.subpages,
ul.subpages {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 4em;
}

#content ul.subpages li,
ul.subpages li {
  display: inline-block;
  list-style-type: none;
}

#content ul.subpages a,
ul.subpages a {
  color: #fff;
  background-color: #bc204b;
  padding: 0.75em 2em 0.5em;
  text-decoration: none;
}

#content ul.subpages a:hover,
#content ul.subpages a:focus,
ul.subpages a:hover,
ul.subpages a:focus {
  background-color: #e45e83;
  text-decoration: none;
}

#content ul.subpages li.current_page_item a,
ul.subpages li.current_page_item a {
  background-color: #000;
}

#content ul.subpages li.current_page_item a:hover,
#content ul.subpages li.current_page_item a:focus,
ul.subpages li.current_page_item a:hover,
ul.subpages li.current_page_item a:focus {
  background-color: #333;
}

#map-canvas {
  width: 100%;
  height: 400px;
}

.contacts p {
  font-size: 0.9em;
}

.contacts h2.header-row {
  background: #000;
  color: #fff;
  font-size: 1.4em;
  padding: 1em 1em 1em 10%;
  margin: 0.5em -15px;
}

.contacts h5 {
  font-family: "AvenirLT-Black", sans-serif;
}

.contacts h5 small {
  font-family: "AvenirLT-Light", sans-serif;
}

.contacts .contact-image {
  padding-right: 0;
  padding-top: 0.7em;
}

.contacts .contact-image img {
  border: 1px solid #000;
}

.twitter-feed.thirds li {
  width: 33.333333%;
  padding: 0 15px;
  float: left;
}

.twitter-feed.thirds ul {
  overflow: hidden;
}

.twitter-feed li {
  margin-top: 30px;
}

.twitter-feed .user {
  float: left;
  margin-right: 15px;
}

.twitter-feed .user span:nth-child(2),
.twitter-feed .user span:nth-child(3) {
  display: none;
}

.twitter-feed .interact {
  display: none;
}

.twitter-feed .tweet {
  font-size: 1.4em;
  word-wrap: break-word;
}

@media all and (max-width: 990px) {
  .twitter-feed.thirds li {
    width: 50%;
  }
}
@media all and (max-width: 767px) {
  .twitter-feed.thirds li {
    width: 100%;
  }
}
.tweets-slider.large p {
  font-size: 24px;
  line-height: 32px;
}

.tweets-slider.large .timePosted {
  font-size: 14px;
}

@media all and (max-width: 990px) {
  .tweets-slider.large p {
    font-size: 18px;
    line-height: 24px;
  }
}
@media all and (max-width: 767px) {
  .tweets-slider.large p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  #cvc-signoff img {
    max-width: 100%;
  }
  #footer {
    text-align: center;
  }
  #footer .border {
    border: none;
  }
  #footer .footer-logo {
    margin: 20px auto;
  }
}
