.your-trusted-parter p {
    text-shadow: 0 0 7px rgba(255, 255, 255, .3), 0 0 3px rgba(255, 255, 255, .3);
    color: black;
    padding-bottom: 0;
    margin-bottom: 0;
    font-size: 45px;
    font-weight: 300;
}

.your-trusted-parter .container {
    color: #e5e5e5;
    font-size: 2.26rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0;
    font-family: var(--alt-font);
}

@media (max-width: 1000px) {
    .your-trusted-parter .container p {
        font-size: 3rem;
    }
}

@media (max-width: 502px) {
    .your-trusted-parter .container p {
        font-size: 1.8rem;
    }

    .your-trusted-parter .container div {
        font-size: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .your-trusted-parter .container {
        flex-direction: row;
        gap: 0rem;
        text-align: left;
    }
}

.your-trusted-parter .animation {
    height: 2.81rem;
    overflow: hidden;
    margin-left: 1rem;
    position: relative;
}

.your-trusted-parter .animation>div {
    animation: text-animation 12s infinite;
    animation-direction: alternate;
}

.your-trusted-parter .animation>div>div {
    height: 2.81rem;
    line-height: 2.81rem;
    padding: 0 0.75rem;
    color: var(--base-color);
    font-weight: 700;
    display: inline-block;
}

@keyframes text-animation {
    0% {
        transform: translateY(0);
    }

    10% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(-2.81rem);
    }

    30% {
        transform: translateY(-2.81rem);
    }

    40% {
        transform: translateY(-5.62rem);
    }

    50% {
        transform: translateY(-5.62rem);
    }

    60% {
        transform: translateY(-8.43rem);
    }

    70% {
        transform: translateY(-8.43rem);
    }

    80% {
        transform: translateY(-11.24rem);
    }

    90% {
        transform: translateY(-11.24rem);
    }

    100% {
        transform: translateY(-14.05rem);
    }
}