/**
* This file is for the Content Carousel Card component.
*/
.paragraph--type--content-carousel:not(.animate) .media::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: #052049;
  opacity: 100%;
}

.paragraph--type--content-carousel.animate .media::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: #052049;
  animation: fadeOut 1.5s forwards;
}

@keyframes fadeOut {
  from {
    opacity: 100%;
  }
  to {
    opacity: 0;
  }
}
.paragraph--type--content-carousel:not(.rounded-image-carousel) .content-carousel-card-wrapper .media-container .corner-detail {
  display: none;
}

.content-carousel-card-wrapper {
  position: relative;
}
@media (min-width: 64em) {
  .content-carousel-card-wrapper.mobile {
    display: none;
  }
}
@media (max-width: 63.99em) {
  .content-carousel-card-wrapper.desktop {
    display: none;
  }
}
.content-carousel-card-wrapper .media {
  aspect-ratio: 127/50;
  overflow: hidden;
  background: linear-gradient(to bottom, #052049 0, rgba(22, 160, 172, 0.5) 50%, rgba(22, 160, 172, 0) 100%);
}
.content-carousel-card-wrapper .media .field,
.content-carousel-card-wrapper .media .field__item {
  height: 100%;
}
.content-carousel-card-wrapper .media img,
.content-carousel-card-wrapper .media video {
  display: block;
  width: 100% !important;
  height: auto;
}
.content-carousel-card-wrapper .media video {
  top: -25%;
  position: relative;
}
.content-carousel-card-wrapper .vector {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 10;
}
.content-carousel-card-wrapper .vector-top {
  top: 0;
}
.content-carousel-card-wrapper .vector-bottom {
  bottom: 0;
  transform: translateY(35%);
}
@media (min-width: 90em) {
  .content-carousel-card-wrapper .vector-bottom {
    transform: translateY(25%);
  }
}
.content-carousel-card-wrapper .video-controls {
  position: absolute;
  display: flex;
  top: 3.3125rem;
  right: 3.4375rem;
  z-index: 10;
}
.content-carousel-card-wrapper .video-controls .control {
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  position: relative;
  width: 2rem;
  height: 2rem;
  font-size: 0;
}
.content-carousel-card-wrapper .video-controls .control:hover,
.content-carousel-card-wrapper .video-controls .control:focus {
  cursor: pointer;
}
.content-carousel-card-wrapper .video-controls .playing {
  background-image: url("../../icon/google/pause.svg");
}
.content-carousel-card-wrapper .video-controls .playing:hover,
.content-carousel-card-wrapper .video-controls .playing:focus {
  background-image: url("../../icon/google/pause-hover.svg");
}
.content-carousel-card-wrapper .video-controls .play-pause:not(.playing) {
  background-image: url("../../icon/google/play.svg");
  background-size: contain;
}
.content-carousel-card-wrapper .video-controls .play-pause:not(.playing):hover,
.content-carousel-card-wrapper .video-controls .play-pause:not(.playing):focus {
  background-image: url("../../icon/google/play-hover.svg");
}
.content-carousel-card-wrapper .video-controls .stop {
  background-image: url("../../icon/google/stop.svg");
}
.content-carousel-card-wrapper .video-controls .stop:hover,
.content-carousel-card-wrapper .video-controls .stop:focus {
  background-image: url("../../icon/google/stop-hover.svg");
}
.content-carousel-card-wrapper .video-controls .muted {
  background-image: url("../../icon/google/audio-off.svg");
}
.content-carousel-card-wrapper .video-controls .muted:hover,
.content-carousel-card-wrapper .video-controls .muted:focus {
  background-image: url("../../icon/google/audio-off-hover.svg");
}
.content-carousel-card-wrapper .video-controls .audio:not(.muted) {
  background-image: url("../../icon/google/audio-on.svg");
}
.content-carousel-card-wrapper .video-controls .audio:not(.muted):hover,
.content-carousel-card-wrapper .video-controls .audio:not(.muted):focus {
  background-image: url("../../icon/google/audio-on-hover.svg");
}
.content-carousel-card-wrapper .content-carousel-card-content {
  background: rgb(20, 130, 140);
  background: linear-gradient(90deg, rgb(20, 130, 140) 0%, rgba(15, 56, 138, 0.8) 100%);
  border-radius: 0 0 4.375rem 0;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  padding: 5rem 2.1875rem 2.5rem 2.5rem;
  width: 28.75rem;
  z-index: 2;
}
.content-carousel-card-wrapper .content-carousel-card-content p {
  margin-bottom: 0;
}
.content-carousel-card-wrapper .content-carousel-card-content .heading {
  font-family: "Helvetica Neue Medium", "HelveticaNeue", "Helvetica", "Arial", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.05rem;
  color: #fff;
}
.content-carousel-card-wrapper .content-carousel-card-content .link {
  margin-top: 2.5rem;
}
.content-carousel-card-wrapper .overlay-image {
  margin: 0 auto;
  width: 10rem;
  max-width: 100%;
}
@media (min-width: 48em) {
  .content-carousel-card-wrapper .overlay-image {
    position: absolute;
    bottom: 4.875rem;
    right: 2.5rem;
    width: auto;
    margin: unset;
  }
}

.content-carousel-card-wrapper.desktop .content-carousel-card-content .link a {
  font-family: "Helvetica Neue Medium", "HelveticaNeue", "Helvetica", "Arial", sans-serif;
  line-height: 1.25;
  letter-spacing: 0;
  transition: all 0.6s ease 0s;
  display: inline-block;
  border-radius: 6.375rem;
  color: #fff;
  border: 0.125rem solid transparent;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  font-size: 1.5rem;
  padding: 0.75rem 1.875rem;
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.content-carousel-card-wrapper.desktop .content-carousel-card-content .link a::before {
  content: "";
  width: 100%;
  height: 100%;
  outline: 0.25rem solid transparent;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
}
.content-carousel-card-wrapper.desktop .content-carousel-card-content .link a:hover {
  color: #052049;
  border-color: #052049;
}
.content-carousel-card-wrapper.desktop .content-carousel-card-content .link a:hover::before {
  outline-color: #052049;
}
.content-carousel-card-wrapper.desktop .content-carousel-card-content .link a:focus {
  outline: 0.125rem solid transparent;
  outline-offset: 0.1875rem;
}
.content-carousel-card-wrapper.desktop .content-carousel-card-content .link a:active {
  border-color: #052049;
  color: #052049;
  outline: 0.125rem solid transparent;
  outline-offset: 0.375rem;
}
.content-carousel-card-wrapper.desktop .content-carousel-card-content .link a:active::before {
  outline: 0.25rem solid #052049;
}
.content-carousel-card-wrapper.desktop .content-carousel-card-content .link a:hover {
  border-color: #fff;
  color: #fff;
  outline-color: #fff;
}
.content-carousel-card-wrapper.desktop .content-carousel-card-content .link a:hover::before {
  outline-color: #fff;
}
.content-carousel-card-wrapper.desktop .content-carousel-card-content .link a:focus {
  outline-color: #fff;
}
.content-carousel-card-wrapper.desktop .content-carousel-card-content .link a:active {
  color: #fff;
  outline-color: #fff;
  border-color: #fff;
}
.content-carousel-card-wrapper.desktop .content-carousel-card-content .link a:active::before {
  outline-color: #fff;
}

.rounded-image-carousel .content-carousel-card-wrapper {
  border-radius: 0 0 4.375rem 0;
  overflow: hidden;
}
.rounded-image-carousel .content-carousel-card-wrapper .media {
  aspect-ratio: 16/9;
}
.rounded-image-carousel .content-carousel-card-wrapper .media-container {
  position: relative;
}
.rounded-image-carousel .content-carousel-card-wrapper .media-container .corner-detail {
  position: absolute;
  z-index: 10;
  top: 1.25rem;
  left: 1.25rem;
}
.rounded-image-carousel .content-carousel-card-wrapper .content-carousel-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0 4.375rem 0 0;
  color: #0f388a;
  top: unset;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  width: 74.5%;
}
.rounded-image-carousel .content-carousel-card-wrapper .content-carousel-card-content .heading {
  font-family: "Helvetica Neue Medium", "HelveticaNeue", "Helvetica", "Arial", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.05rem;
  color: #0f388a;
}
.rounded-image-carousel .content-carousel-card-wrapper .content-carousel-card-content .field--name-field-body {
  color: #000;
}
.rounded-image-carousel .content-carousel-card-wrapper .content-carousel-card-content .link {
  margin-top: 0;
}
.rounded-image-carousel .content-carousel-card-wrapper .vector {
  display: none;
}
.rounded-image-carousel .content-carousel-card-wrapper.mobile {
  border-radius: unset;
}
.rounded-image-carousel .content-carousel-card-wrapper.mobile .media-container {
  border-radius: 0 0 2.5rem 0;
  overflow: hidden;
}
.rounded-image-carousel .content-carousel-card-wrapper.mobile .media-container .corner-detail {
  top: 0.625rem;
  left: 0.625rem;
}
.rounded-image-carousel .content-carousel-card-wrapper.mobile .content-carousel-card-content {
  padding: 0;
  gap: 1.25rem;
}
.rounded-image-carousel .content-carousel-card-wrapper.mobile .content-carousel-card-content .link {
  margin-top: 0;
  padding: 2px;
}
.rounded-image-carousel .content-carousel-card-wrapper.mobile .content-carousel-card-content .link a {
  font-family: "Helvetica Neue Medium", "HelveticaNeue", "Helvetica", "Arial", sans-serif;
  line-height: 1.25;
  letter-spacing: 0;
  transition: all 0.6s ease 0s;
  display: inline-block;
  border-radius: 6.375rem;
  color: #fff;
  border: 0.125rem solid transparent;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  font-size: 1.5rem;
  padding: 0.75rem 1.875rem;
  background-color: transparent;
  color: #0f388a;
  border-color: #0f388a;
  width: 100%;
}
.rounded-image-carousel .content-carousel-card-wrapper.mobile .content-carousel-card-content .link a::before {
  content: "";
  width: 100%;
  height: 100%;
  outline: 0.25rem solid transparent;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
}
.rounded-image-carousel .content-carousel-card-wrapper.mobile .content-carousel-card-content .link a:hover {
  color: #052049;
  border-color: #052049;
}
.rounded-image-carousel .content-carousel-card-wrapper.mobile .content-carousel-card-content .link a:hover::before {
  outline-color: #052049;
}
.rounded-image-carousel .content-carousel-card-wrapper.mobile .content-carousel-card-content .link a:focus {
  outline: 0.125rem solid transparent;
  outline-offset: 0.1875rem;
}
.rounded-image-carousel .content-carousel-card-wrapper.mobile .content-carousel-card-content .link a:active {
  border-color: #052049;
  color: #052049;
  outline: 0.125rem solid transparent;
  outline-offset: 0.375rem;
}
.rounded-image-carousel .content-carousel-card-wrapper.mobile .content-carousel-card-content .link a:active::before {
  outline: 0.25rem solid #052049;
}
.rounded-image-carousel .content-carousel-card-wrapper.mobile .content-carousel-card-content .link a:focus {
  outline-color: #0f388a;
}
.rounded-image-carousel .content-carousel-card-wrapper.mobile .content-carousel-card-content .link a:active {
  outline-color: #0f388a;
}
.rounded-image-carousel .content-carousel-card-wrapper.desktop .content-carousel-card-content .link a {
  font-family: "Helvetica Neue Medium", "HelveticaNeue", "Helvetica", "Arial", sans-serif;
  line-height: 1.25;
  letter-spacing: 0;
  transition: all 0.6s ease 0s;
  display: inline-block;
  border-radius: 6.375rem;
  color: #fff;
  border: 0.125rem solid transparent;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  font-size: 1.5rem;
  padding: 0.75rem 1.875rem;
  background-color: transparent;
  color: #0f388a;
  border-color: #0f388a;
}
.rounded-image-carousel .content-carousel-card-wrapper.desktop .content-carousel-card-content .link a::before {
  content: "";
  width: 100%;
  height: 100%;
  outline: 0.25rem solid transparent;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
}
.rounded-image-carousel .content-carousel-card-wrapper.desktop .content-carousel-card-content .link a:hover {
  color: #052049;
  border-color: #052049;
}
.rounded-image-carousel .content-carousel-card-wrapper.desktop .content-carousel-card-content .link a:hover::before {
  outline-color: #052049;
}
.rounded-image-carousel .content-carousel-card-wrapper.desktop .content-carousel-card-content .link a:focus {
  outline: 0.125rem solid transparent;
  outline-offset: 0.1875rem;
}
.rounded-image-carousel .content-carousel-card-wrapper.desktop .content-carousel-card-content .link a:active {
  border-color: #052049;
  color: #052049;
  outline: 0.125rem solid transparent;
  outline-offset: 0.375rem;
}
.rounded-image-carousel .content-carousel-card-wrapper.desktop .content-carousel-card-content .link a:active::before {
  outline: 0.25rem solid #052049;
}
.rounded-image-carousel .content-carousel-card-wrapper.desktop .content-carousel-card-content .link a:focus {
  outline-color: #0f388a;
}
.rounded-image-carousel .content-carousel-card-wrapper.desktop .content-carousel-card-content .link a:active {
  outline-color: #0f388a;
}

.content-carousel-card-wrapper.mobile .media-container {
  position: relative;
}
.content-carousel-card-wrapper.mobile .media-container svg {
  display: block;
}
.content-carousel-card-wrapper.mobile .video-content {
  margin-bottom: 2.625rem;
}
.content-carousel-card-wrapper.mobile .video-controls {
  bottom: -2.625rem;
  top: unset;
  right: 50%;
  transform: translateX(50%);
}
.content-carousel-card-wrapper.mobile .video-controls .playing {
  background-image: url("../../icon/google/pause-navy.svg");
}
.content-carousel-card-wrapper.mobile .video-controls .playing:hover,
.content-carousel-card-wrapper.mobile .video-controls .playing:focus {
  background-image: url("../../icon/google/pause-hover.svg");
}
.content-carousel-card-wrapper.mobile .video-controls .play-pause:not(.playing) {
  background-image: url("../../icon/google/play-navy.svg");
}
.content-carousel-card-wrapper.mobile .video-controls .play-pause:not(.playing):hover,
.content-carousel-card-wrapper.mobile .video-controls .play-pause:not(.playing):focus {
  background-image: url("../../icon/google/play-hover.svg");
}
.content-carousel-card-wrapper.mobile .video-controls .stop {
  background-image: url("../../icon/google/stop-navy.svg");
}
.content-carousel-card-wrapper.mobile .video-controls .stop:hover,
.content-carousel-card-wrapper.mobile .video-controls .stop:focus {
  background-image: url("../../icon/google/stop-hover.svg");
}
.content-carousel-card-wrapper.mobile .video-controls .muted {
  background-image: url("../../icon/google/audio-off-navy.svg");
}
.content-carousel-card-wrapper.mobile .video-controls .muted:hover,
.content-carousel-card-wrapper.mobile .video-controls .muted:focus {
  background-image: url("../../icon/google/audio-off-hover.svg");
}
.content-carousel-card-wrapper.mobile .video-controls .audio:not(.muted) {
  background-image: url("../../icon/google/audio-on-navy.svg");
}
.content-carousel-card-wrapper.mobile .video-controls .audio:not(.muted):hover,
.content-carousel-card-wrapper.mobile .video-controls .audio:not(.muted):focus {
  background-image: url("../../icon/google/audio-on-hover.svg");
}
.content-carousel-card-wrapper.mobile .content-carousel-card-content-container {
  margin-top: 1.25rem;
}
.content-carousel-card-wrapper.mobile .content-carousel-card-content {
  background: none;
  border-radius: unset;
  color: #052049;
  padding: 0;
  position: relative;
  width: unset;
  padding: 0 1.25rem;
}
.content-carousel-card-wrapper.mobile .content-carousel-card-content .heading {
  font-size: 2rem;
  color: #0f388a;
}

.paragraph--type--content-carousel:not(.rounded-image-carousel) .content-carousel-card-wrapper.mobile .link {
  margin-top: 1.5rem;
}
.paragraph--type--content-carousel:not(.rounded-image-carousel) .content-carousel-card-wrapper.mobile .link a {
  font-family: "Helvetica Neue Medium", "HelveticaNeue", "Helvetica", "Arial", sans-serif;
  line-height: 1.25;
  letter-spacing: 0;
  transition: all 0.6s ease 0s;
  display: inline-block;
  border-radius: 6.375rem;
  color: #fff;
  border: 0.125rem solid transparent;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  font-size: 1.5rem;
  padding: 0.75rem 1.875rem;
  background-color: transparent;
  color: #14828c;
  border-color: #14828c;
  width: 100%;
}
.paragraph--type--content-carousel:not(.rounded-image-carousel) .content-carousel-card-wrapper.mobile .link a::before {
  content: "";
  width: 100%;
  height: 100%;
  outline: 0.25rem solid transparent;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
}
.paragraph--type--content-carousel:not(.rounded-image-carousel) .content-carousel-card-wrapper.mobile .link a:hover {
  color: #052049;
  border-color: #052049;
}
.paragraph--type--content-carousel:not(.rounded-image-carousel) .content-carousel-card-wrapper.mobile .link a:hover::before {
  outline-color: #052049;
}
.paragraph--type--content-carousel:not(.rounded-image-carousel) .content-carousel-card-wrapper.mobile .link a:focus {
  outline: 0.125rem solid transparent;
  outline-offset: 0.1875rem;
}
.paragraph--type--content-carousel:not(.rounded-image-carousel) .content-carousel-card-wrapper.mobile .link a:active {
  border-color: #052049;
  color: #052049;
  outline: 0.125rem solid transparent;
  outline-offset: 0.375rem;
}
.paragraph--type--content-carousel:not(.rounded-image-carousel) .content-carousel-card-wrapper.mobile .link a:active::before {
  outline: 0.25rem solid #052049;
}
.paragraph--type--content-carousel:not(.rounded-image-carousel) .content-carousel-card-wrapper.mobile .link a:focus {
  outline-color: #14828c;
}
.paragraph--type--content-carousel:not(.rounded-image-carousel) .content-carousel-card-wrapper.mobile .link a:active {
  color: #052049;
  border-color: #052049;
  outline: 0.125rem solid #14828c;
}
.paragraph--type--content-carousel:not(.rounded-image-carousel) .content-carousel-card-wrapper.mobile .link a:active::before {
  outline-color: #052049;
}
/*# sourceMappingURL=content-carousel-card.css.map */
