.partners-title {
    color: #fff;
    font-family: var(--e-global-typography-secondary-font-family);
    font-size: 16px;
    font-weight: 600;
    line-height: 36px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.partners-container--all {
    display: flex;
    width: 100%;
}

.partners-container--all .partners-list {
    flex: 1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partners-container--all .partners-list .partner-item {
    width: 160px;
    height: 100px;
    flex-shrink: 0;
    flex-grow: 0;
    background: #ffffff;
    padding: 8px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.partners-container--all .partners-list .partner-item a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners-container--all .partners-list .partner-item a img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.partners-container--all .partners-button {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
}

.partners-container--all .partners-button .dropdown-cta {
    width: 60px;
    aspect-ratio: 1;
    border-radius: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partners-container--all .partners-button .dropdown-cta svg {
    width: 20px;
}

.partners-container--all .partners-button .dropdown-cta svg path {
    stroke-dasharray: 15 15;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.35s ease-in, opacity 0.5s ease-out;
    transition-delay: 0.1s;
}

.partners-container--all .partners-button .dropdown-cta svg line {
    stroke-dasharray: 10 10;
    stroke-dashoffset: -10;
    stroke: var(--e-global-color-text);
    transition: stroke-dashoffset 0.35s ease-in;
}

.partners-container--all .partners-button.is-active .dropdown-cta svg path {
    stroke-dashoffset: -14;
    transition-delay: 0s;
}

.partners-container--all .partners-button.is-active .dropdown-cta svg line {
    stroke-dashoffset: 0;
    transition-delay: 0.1s;
}
