/* Breadcrumb */
.breadcrumb-manual {
  padding: 15px 68px;
  font-size: 14px;
  height: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 4px;
  column-gap: 4px;
}

.breadcrumb-manual a {
  color: #0F6CBD;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
}

.breadcrumb-manual span {
  color: #424242;
  font-size: 12px;
  font-weight: 400;
  margin: 0 4px;
}

.breadcrumb-manual span:last-child {
  font-weight: 600;
}

/* GLOBAL CSS */
.page-container {
  margin: 0 auto;
  padding: 0px 0px 32px 0px;
  box-sizing: border-box;
}

.shimmer {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      #f6f7f8 0%,
      #edeef1 20%,
      #f6f7f8 40%,
      #f6f7f8 100%);
  background-size: 800px 100%;
  animation: shimmerAnimation 1.5s infinite linear;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

@keyframes shimmerAnimation {
  0% {
    background-position: -800px 0;
  }

  100% {
    background-position: 800px 0;
  }
}

.hidden {
  display: none;
}

.content-section,
.page-wrapper,
.cards-wrapper,
.go-to-market .wrapper,
.engagements-types,
.partner-support {
  max-width: 1400px;
  padding-left: 68px;
  padding-right: 68px;
  margin: 0 auto;
}

.content-section,
.go-to-market,
.go-to-market .wrapper,
.go-to-market h2,
.go-to-market p,
.go-to-market .sales-journey,
.go-to-market .step,
.go-to-market .step h3,
.go-to-market .step p {
  text-align: left !important;
  justify-content: flex-start;
  align-items: flex-start;
}

.partner-support {
  padding-top: 40px;
}

.partner-support h2,
.go-to-market h2 {
  margin-top: 0;
}

/* Content Section or Hero Section */
.content-section {
  display: flex;
  justify-content: space-between !important;
  gap: 40px;
  padding-top: 10px;
  padding-bottom: 32px;
  flex-wrap: wrap;
}

.content-section .text-content {
  flex: 1 1 60%;
  font-size: 16px;
  color: #333;
}

.content-section .text-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #242424;
  margin-top: 0;
}

.content-section .text-content p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 16px;
  color: #242424;

}

.content-section .image-content {
  flex: 1 1 35%;
  display: flex;
  justify-content: right;
}

.content-section .image-content img {
  max-width: 100%;
  height: 250px;
  border-radius: 4px;
}

/* Sales Journey */
.sales-journey h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px !important;
}

.journey {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.step {
  flex: 1;
  padding: 0 15px;
  margin-bottom: 40px;
}

.step .icon {
  width: 70px;
  height: 70px;
  border: 2px solid #0F6CBD;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  background: #fff;
  position: relative;
  z-index: 2;
}

.sales-journey .step h3 {
  font-size: 16px !important;
  font-weight: 600;
  margin: 10px 0 5px !important;
}

.step p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Dynamic Connector in Journey */
.dynamic-line {
  position: absolute;
  background: #0F6CBD;
  z-index: 1;
}

@media (min-width: 769px) {
  .dynamic-line {
    top: 50%;
    height: 2px;
  }
}

/* Featured Resources */
.resources {
  padding: 40px 0px;
  background-color: #EBF3FC;
}

.resources h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 0px;
  color: #242424;
}

.resources p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 6px;
  color: #242424;
}

.resource-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
  align-items: stretch;
}

.resource-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  gap: 12px;
  background-color: white;
  border-radius: 2.91px;
  padding: 10px;
  box-shadow:
    0px 0px 2px rgba(0, 0, 0, 0.12),
    0px 2px 4px rgba(0, 0, 0, 0.14);
}

.resource-card .image-content {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.resource-card .image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.resource-card .card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.resource-card .card-content h3 {
  margin: 0 0 8px 0;
  font-weight: 600;
  font-size: 14px;
  color: #272727;
}

.resource-card .card-content p.date {
  margin: 0 0 6px 0;
  font-weight: 400;
  font-size: 14px;
  color: #616161;
}

.resource-card .dynamic-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.resource-card .dynamic-content p {
  margin: 0 0 6px 0;
  font-weight: 400;
  font-size: 14px;
  color: #242424;
}

.resource-card .dynamic-content .links-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: auto;
}

.resource-card .dynamic-content .links-container a.bottom-link {
  color: #0f6cbd;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
}

.resource-card .dynamic-content .links-container a.bottom-link:hover {
  text-decoration: none !important;
}

/* Partner Story Cards */
.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.cards-wrapper .resource-card .card-content h3 {
  font-size: 20px !important;
  font-weight: 500 !important;
  line-height: 28px;
}

.cards-wrapper .resource-card .image-content {
  flex: none;
  height: 160px;
}

.cards-wrapper .resource-card:hover .image-content img,
.cards-wrapper .solution-card:hover::before {
  transform: scale(1.1);
}

.cards-wrapper .solution-card-button .solution-card::before {
  background-image: url(https://images.pexels.com/photos/5380664/pexels-photo-5380664.jpeg?auto=compress&amp;cs=tinysrgb&amp;w=600);
}

.cards-wrapper .solution-card-button {
  background: none;
  border: none;
  padding: 0;
  min-width: 190px;
  min-height: 250px;
  display: flex;
  width: 100%;
}

.cards-wrapper .solution-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.cards-wrapper .solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
  z-index: 0;
}

.cards-wrapper .solution-card:hover::before {
  transform: scale(1.1);
}

.cards-wrapper .solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0F6CBD 0%, transparent 100%);
  opacity: 0.;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.cards-wrapper .solution-card .card-content {
  padding: 15px;
  position: relative;
  z-index: 2;
  text-align: left;
}

.cards-wrapper .solution-card .card-content h3 {
  font-size: 28px !important;
  font-weight: 600 !important;
  color: #fff;
  margin: 0;
}

.cards-wrapper .solution-card .card-content p {
  font-size: 16px;
  color: #fff;
  margin: 0;
}

/* Go to market or Solution Plays Section */
.go-to-market {
  padding-top: 40px;
  padding-bottom: 40px;
}

.go-to-market h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}

.go-to-market p {
  font-size: 14px;
  margin-bottom: 24px;
}

.go-to-market h3 {
  font-size: 24px;
  font-weight: 600;
  color: #242424;
  margin-bottom: 8px;
}

/* Overview Cards or Solution Play Cards */
.overview-card-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
  margin-inline: auto;
}

.overview-card {
  display: flex;
  flex-direction: row;
  justify-self: start;
  background-color: white;
  border-radius: 2.91px;
  padding: 10px;
  box-shadow:
    0px 0px 2px rgba(0, 0, 0, 0.12),
    0px 2px 4px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  max-width: calc((1400px - 20px) /2);
  width: 100%;
}

.overview-card .image-content {
  flex: 0 0 40% !important;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  border-radius: 2px;
}

.overview-card .image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview-card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px;
  gap: 8px;
  vertical-align: top;
}

.overview-card .card-content h3 {
  margin: 0 0 8px 0;
  font-weight: 600;
  font-size: 14px;
  color: #272727;
}

.overview-card .card-content p {
  margin: 0 0 6px 0;
  font-weight: 400;
  font-size: 14px;
  color: #242424;
}

.overview-card .card-content a {
  font-size: 14px;
  font-weight: 500;
  color: #1976d2;
  text-decoration: none;
}

/* Accordion Styles */
.accordion {
  margin-top: 20px;
}

.accordion .card {
  border-top: 1px solid #d1cccc;
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  margin-bottom: 0;
  background-color: #fff;
  box-shadow: none;
  overflow: hidden;
}

.accordion .card:last-child {
  border-bottom: 1px solid #d1cccc;
}

.lock-icon {
  margin: 0;
  flex-shrink: 0;
  vertical-align: middle;
  width: 20px;
  height: 20px;
}

.accordion .card-header {
  width: 100%;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  background-color: #ffffff;
  color: #242424;
  border: none;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.accordion .card-header:hover {
  background-color: #edf0f4;
}

.accordion .card-header .number {
  font-size: 14px;
  font-weight: 600;
  color: #242424;
  margin-right: 48px;
}

.accordion .card-header .label {
  font-size: 16px;
  font-weight: 600;
  color: #242424;
}

.accordion .arrow {
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  background-color: #0f6cbd;
  border-radius: 4px;
  margin-left: auto;
  margin-right: 10px;
  flex-shrink: 0;
}

.accordion .card-body {
  display: none;
  flex-direction: column;
  padding: 20px 90px;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  border-top: 1px solid #e0e0e0;
  background-color: #fff;
}

.accordion .card-body a {
  font-size: 14px;
  font-weight: 400;
  color: #0f6cbd;
  text-decoration: none;
}

.accordion .card-body a:hover {
  color: #0f6cbd;
  text-decoration: none !important;
}

.accordion .card-body p {
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 10px;
}

.accordion .card-body p svg {
  flex-shrink: 0;
  margin-right: 4px;
}

.accordion .card-body p img {
  flex-shrink: 0;
  margin-right: 4px;
  float: left;
  margin-bottom: 10px;
}

.accordion .card.open .card-body {
  display: block;
}

.accordion .card-body .item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}

.accordion .card-body .item:last-child {
  margin-bottom: 0;
}

.accordion .card-body .item .svg {
  flex-shrink: 0;
  margin-right: 4px;
}

.accordion .card-body .item .content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.accordion .card-body .item .content .link-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tag {
  display: inline-block;
  background-color: #ebf3fc;
  color: #0f6cbd;
  border: 1px solid #b4d6fa;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 12px;
  white-space: nowrap;
}

.accordion .card-body .item .content .desc {
  font-size: 13px;
  color: #555;
  margin-top: 4px;
}

/* Carousel Wrapper CSS */
.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  margin-top: 20px;
  box-sizing: border-box;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
  gap: 0px;
  padding-right: 2px;
}

.carousel-track .main-card {
  flex-shrink: 0;
  width: calc(100% - 2px);
  background: white;
  display: flex;
  flex: 0 0 100%;
  box-sizing: border-box;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  /* box-shadow:
      0px 0px 2px rgba(0, 0, 0, 0.12),
      0px 2px 4px rgba(0, 0, 0, 0.14); */
  overflow: hidden;
  position: relative;
  min-height: 460px;
  max-height: 500px;
}

.carousel-track .main-card.active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-track .main-card .card-badge {
  position: absolute;
  top: 24px;
  left: 12px;
  background: transparent;
  color: #0f6cbd;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  z-index: 2;
  margin-bottom: 10px;
}

.carousel-track .main-card .home-text-content {
  flex: 1;
  padding: 40px 12px 24px;
  display: flex;
  flex-direction: column;
}

.carousel-track .main-card .text-content {
  flex: 1;
  padding: 20px 12px 24px;
  display: flex;
  flex-direction: column;
}

.carousel-track .main-card .text-content h3 {
  font-size: 28px;
  font-weight: 600;
  margin-top: 20px;
}

.carousel-track .main-card .home-text-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 20px;
}

.carousel-track .main-card .home-text-content p {
  font-size: 14px;
  margin: 12px 0;
  color: #444;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.carousel-track .main-card .home-text-content a {
  color: #0f6cbd;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  /* margin-bottom: 6px; */
  text-decoration: none !important;
}

.carousel-track .main-card .home-text-content a:hover {
  text-decoration: none !important;
}

.carousel-track .main-card .image-content {
  flex: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
  position: relative;
}

.carousel-track .main-card .image-content img {
  width: 100%;
  height: 100%;
  /* max-height: 100%; */
  object-fit: cover;
}

.carousel-track .main-card .award-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: "Segoe UI", sans-serif;
  font-size: 15px;
}

.carousel-track .main-card .award-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding-bottom: 8px;
}

.carousel-track .main-card .award-title {
  color: #333;
  font-size: 14px;
  font-weight: 400;
}

.carousel-track .main-card .award-separator {
  height: 16px;
  width: 1px;
  background-color: #ccc;
  margin: 0 12px;
}

.carousel-track .main-card .award-link {
  color: #0f6cbd;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.carousel-track .main-card .award-link .arrow {
  font-size: 14px;
  color: #0f6cbd;
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  /* margin-top: 10px; */
  flex-wrap: nowrap;
}

.play-pause-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #0f6cbd;
  padding: 5px;
}

/* .play-pause-btn:hover {
    opacity: 0.8;
  } */

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 5px;
}

.dot {
  height: 12px;
  width: 12px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  width: 24px;
  border-radius: 12px;
  background-color: #0f6cbd;
}

@media (max-width: 1024px) {
  .content-section {
    flex-direction: column;
    gap: 20px !important;
  }

  .content-section .text-content {
    padding: 0;
  }

  .content-section .image-content {
    order: -1;
    width: 100%;
    justify-content: center;
  }

  .content-section .image-content img {
    max-width: 100%;
    height: auto;
    max-height: 300px !important;
  }

  .content-section .video-section {
    width: 100%;
    display: flex;
    justify-content: center;
    order: -1;
  }

  .content-section .video-section iframe {
    width: 100%;
    max-width: 560px;
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
  }

  /* Carousel Wrapper */
  .carousel-track {
    width: 100%;
    gap: 0px;
  }

  .main-card {
    flex-direction: column;
    height: auto;
    max-height: none !important;
  }

  .carousel-track .main-card .image-content {
    order: -1;
    padding: 0;
  }

  .carousel-track .main-card .image-content img {
    height: 280px;
    border-radius: 8px 8px 0 0;
  }

  .carousel-track .main-card .text-content {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .cards-wrapper .resource-card .image-content {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {

  .breadcrumb-manual,
  .content-section,
  .page-wrapper,
  .cards-wrapper,
  .go-to-market .wrapper,
  .engagements-types,
  .partner-support {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  /* Carousel Wrapper */
  .carousel-track {
    width: 99.9%;
    gap: 0px;
  }

  .main-card {
    flex-direction: column;
    flex: 0 0 100%;
    height: auto;
    width: 100%;
  }

  .carousel-track .main-card .image-content img {
    max-height: 100%;
  }

  .carousel-track .main-card .text-content {
    padding: 20px;
  }

  /* Accordion Style */
  .accordion .card-body {
    padding: 20px 15px !important;
  }

  /* Overview or Solution Play Cards */
  .overview-card-wrapper {
    padding: 0 !important;
  }

  .overview-card {
    flex-direction: column !important;
    height: 100%;
  }

  .overview-card .image-content {
    width: 100%;
    height: 200px;
    flex: none !important;
  }

  .overview-card .card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .overview-card .card-content .dynamic-content {
    margin-top: auto;
  }
}

@media (max-width: 480px) {
  .carousel-track {
    gap: 0px;
    padding-right: 1px;
    width: 100%;
  }

  .carousel-track .main-card .text-content {
    padding: 16px;
  }

  .carousel-track .main-card .text-content h3 {
    font-size: 18px;
  }

  .carousel-track .main-card .text-content p,
  .carousel-track .main-card .text-content a {
    font-size: 13px;
  }

  .carousel-controls {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  .play-pause-btn {
    font-size: 18px;
  }

  .dot {
    height: 12px;
    width: 12px;
  }
}

@media (max-width: 468px) {

  .breadcrumb-manual,
  .content-section,
  .page-wrapper,
  .cards-wrapper,
  .go-to-market .wrapper,
  .engagements-types,
  .partner-support {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Overview Card Wrapper changed to 1 fr */
  .overview-card-wrapper {
    grid-template-columns: 1fr !important;
  }

  /* Accordion Styles */
  .accordion .card-body .item {
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
  }

  .accordion .card-header .number {
    font-size: 14px;
    margin-right: 20px;
  }
}