#philosophy {
    position: relative;
    overflow: hidden;
  }

  .philosophy-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
  }
  
  .philosophy-image-container {
    width: 50%;
    position: relative;
    overflow: visible;
  }

  .philosophy-image-container img {
    position: relative;
    top: 0;
    left: -10%;

  }
  
  .philosphy-text-container {
    width: 50%;
    margin: 0 40px;
    z-index: 3;
  }
  
  .philosophy-card {
    padding: 40px;
    border-radius: 25px;
    width: 80%;
    margin: 0 auto;
    background: white;
    box-shadow: 0px 0px 25px -5px rgb(233, 233, 233);
    max-width: 700px;
  }
  
  .philosophy-card h3 {
    margin: 10px 0 20px 0;
  }
  
  .philosophy-back {
    position: absolute;
    top: 30%;
    right: -10%;
    width: 500px;
    z-index: 1;
  }
  
  .philosophy-back img {
    width: 100%;
  }
  
  #philosophy .purple-circle {
    position: absolute;
    bottom: 5%;
    right: 30%;
    border: 3px solid var(--purple);
    border-radius: 50%;
    width: 70px;
    height: 70px;
  
    animation-name: purple-circle;
    animation-duration: 100s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }
  
  @keyframes purple-circle {
    0% {
      transform: translate(0px, -0px);
    }
    33% {
      transform: translate(-250px, -153px);
    }
    66% {
      transform: translate(-580px, -60px);
    }
    100% {
      transform: translate(0px, -0px);
    }
  }

  #scroll {
    display: none;
  }