.about-bg-wrapper {
  padding-top: var(--pos-gap-section-section);
  margin-top: calc(var(--pos-gap-section-section) * -1);
}

.philosophy-cards-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: var(--pos-gap-card-card);
  z-index: 1;
}

.philosophy-card {
  width: 100%;
  padding: var(--pos-padding-cards-boxes);
  display: flex;
  justify-content: center;
  border-radius: 3px;
  position: relative;
}

.philosophy-card-text-content {
  display: flex;
  flex-direction: column;
  gap: var(--pos-gap-text-content);
}

.philosophy-card::after {
  content: "";
  position: absolute;
  top: -28px;
  right: -36px;
  background-repeat: no-repeat;
  height: clamp(0px, 130%, 420px);
  width: clamp(0px, 130%, 420px);
  background-size: contain;
  pointer-events: none;
}

/* icon fix */
#philosophy-icon2 path:not(:first-child) {
  stroke-width: 0.6;
}

.card-hero-container {
  display: flex;
  justify-content: space-between;
  height: 200px;
}

.card-hero-container canvas {
  scale: 1.4;
  margin-bottom: 40px;
  margin-right: 40px;
}

.card-hero-container .card-icon-container {
  align-self: flex-end;
  padding-bottom: 40px;
}

@media (max-width: 1300px) {
  .philosophy-cards-container {
    flex-direction: column;
  }
}

