#primary section.about-intro {
    padding-top: 0;
    padding-bottom: 0;
}

.about-intro__container {
    position: relative;
}

.about-intro__title span {
    display: block;
}

.about-intro__bg-ellipse-wrapper {
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center;
    z-index: -1;
    animation: rotateClockwise 10s linear infinite;
}

.about-intro__bg-ellipse {
    width: clamp(369px, 42.02vw, 618px);
    height: auto;
    animation: pulseScale 10s ease-in-out infinite;
}

@keyframes rotateClockwise {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulseScale {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(3.5);
    }
}

.about-intro__inner {
    display: flex;
    height: 100%;
    min-height: 880px;
    position: relative;
    justify-content: center;
    z-index: 2;
}

.about-intro__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 323px;
}

.about-intro__title {
    color: var(--additional-dark-background);
    text-align: center;
}

.about-intro__description {
    color: var(--grey-600);
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    max-width: 783px;
}

.about-intro__bg-item {
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: center;
    width: 956px;
    height: 956px;
}

@media screen and (max-width: 1024px) {
    .about-intro__inner {
        min-height: 812px;
    }

    .about-intro__content {
        margin-top: 192px;
    }
}

@media screen and (max-width: 768px) {
    .about-intro__description {
        font-size: 18px;
    }

    .about-intro__content {
        gap: 40px;
    }

    .about-intro__bg-item {
        left: 0;
        transform: unset;
    }
}
