.end-page-cta-container {
    display: flex;
    padding: 60px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    align-self: stretch;
}

.ripple-wrapper {
    position: relative;
    display: inline-block;
}

.ripple-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* or fixed size */
    height: auto;
}

.ripple-1 {
    transform: translate(7px, 7px);
    opacity: 0.3;
}

.ripple-2 {
    transform: translate(14px, 14px);
    opacity: 0.6;
    animation-delay: 1.25s;
}

.main-text {
    position: relative;
    z-index: 2;
}
.ripple-1,
.ripple-2 {
    animation: rippleFade 2.5s ease-in-out infinite;
}

@keyframes rippleFade {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
    }
}
.end-page-cta-container p {
    align-self: stretch;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    font-family: Cairo;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px; /* 100% */
    margin-top: 32px;
    margin-bottom: 24px;
}
.end-page-cta-box {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
}
.end-page-cta-box a:first-child {
    display: flex;
    padding: 13.676px 20.514px;
    justify-content: center;
    align-items: center;
    gap: 7.598px;
    align-self: stretch;
    color: #0fba89;
    font-family: Cairo;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
    letter-spacing: -0.16px;
    background: #fff;
}
.end-page-cta-box a:nth-child(2) {
    display: flex;
    padding: 13.676px 20.514px;
    justify-content: center;
    align-items: center;
    gap: 7.598px;
    align-self: stretch;
    border: 3px solid #fff;
    color: #fff;
    font-family: Cairo;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
    letter-spacing: -0.16px;
}

.svg-marquee-container {
    width: 100%;
    overflow: hidden;
    background: transparent;
    height: 80px;
    position: relative;
}

.svg-marquee-track {
    display: flex;
    width: max-content;
    gap: 32px; /* spacing between logos */
    align-items: center;
    will-change: transform;
}

.svg-box {
    flex-shrink: 0;
    width: 61px;
    height: 61px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svg-box.small {
    width: 30px;
    height: 30px;
}

.svg-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
@media only screen and (max-width: 768px) {
    .end-page-cta-container {
        padding: 40px 0px;
    }
    .end-page-cta-container p {
        font-size: 20px;
        margin-top: 32px;
        margin-bottom: 24px;
        padding: 0 32px;
    }
    .end-page-cta-box {
        gap: 32px;
        padding: 0 32px;
        align-self: stretch;
        flex-wrap: wrap;
        flex-direction: column-reverse;
        margin-bottom: 15px;
    }

    .svg-marquee-container {
        height: 30px;
    }
    .svg-box {
        width: 25.837px;
        height: 25.837px;
    }
}
