svg {
  width: 600px;
  height: 120px;
}

path {
  stroke: var(--color-purple-light);
  stroke-width: 7px;
  stroke-linecap: round;
  fill: none;
}
.svg-wave{
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}
.svg-wave-2{
  top: 80px
}
#founders-story {
    position: relative;
    color: #fff;
    padding-top: 0;
}

#founders-story .container {
    max-width: 1180px;
}

.top-content-story {
    margin: 80px 0 0;
    display: block;
    max-width: 1114px;
}

#founders-story::before {
    position: absolute;
    content: '';
    width: 100%;
    background: var(--color-purple);
    display: block;
    z-index: 0;
    top: 130px;
    height: calc(100% - 130px);
}

#founders-story::after {
    content: '';
    background: var(--color-purple-light);
    top: 0px;
    left: 0;
    width: calc(50vw - 780px);
    height: 200px;
    display: block;
    position: absolute;
    z-index: 0;
}

#founders-story .container {
    position: relative;
    z-index: 2;
}

.block-content-story {
    display: inline-block;
    width: 100%;
    margin-bottom: 50px;
}

.block-content-story.mb-3 {
    margin-bottom: 30px;
}

.rounded-images-section {
    text-align: center;
    margin: 100px 0;
    position: relative;
}

.rounded-images-section::before {
    content: '';
    background: url(./imgs/line.svg) center center no-repeat;
    background-size: contain;
    width: 100%;
    height: 59px;
    max-width: 606px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: table;
    top: calc(50% - 30px);
    z-index: 0;
}

@keyframes moving {
    0% {
        transform: translate(0, 0)
    }
    50% {
        transform: translate(-200px, 0)
    }
    100% {
        transform: translate(0, 0)
    }
}

.rounded-images-section::after {
    /* content: '';
    background: url(./imgs/Group-76664.svg) center center no-repeat;
    background-size: cover;
    width: 100%;
    height: 59px;
    max-width: 173px;
    position: absolute;
    left: auto;
    right: 385px;
    margin: 0 auto;
    display: table;
    top: calc(50% - 31px);
    z-index: 0;
    animation: moving 5s infinite linear; */
}

.block-content-story {
    max-width: 500px;
}

.wrapper-images-rounded {
    position: relative;
    z-index: 1;
}

.wrapper-images-rounded::before {
    animation: rotation 5s infinite linear;
    content: '';
    background: url(./imgs/planete.svg?v1);
    width: 227px;
    height: 227px;
    display: block;
    position: absolute;
    top: calc(50% - 113.5px);
    left: calc(50% - 113.5px);
    z-index: -1;
}

@keyframes rotation-reverse {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(359deg);
    }
}

.wrapper-images-rounded.radu-image::before {
    animation: rotation-reverse 5s infinite linear;
}

@media screen and (min-width:992px) {
    #founders-story h1 {
        font-size: 150px;
        line-height: 1;
    }
    .single-paragraph {
        margin-top: 100px;
    }
}

@media screen and (max-width:991px) {
    #founders-story::before {
        top: 45px;
        height: calc(100% - 45px)
    }
    .title-founders-styory h1 {
        line-height: 50px;
    }
    .top-content-story {
        margin-top: 30px;
    }
    .rounded-images-section {
        margin: 30px 0
    }
    .rounded-images-section::after,
    .rounded-images-section::before {
        display: none;
    }
    #founders-story {
        padding-bottom: 40px
    }
    img[alt="Bogdan"] {
        max-height: 170px
    }
    .wrapper-images-rounded::before {
        width: calc(100% + 40px);
        height: calc(100% + 40px);
        left: -20px;
        top: -20px;
        background-size: cover;
    }
    .svg-wave{
      display: none;
    }
}

.block-content-story h3 {
    font-size: var(--font-size-h3);
}
