.strengths {
    align-items: start;
    gap: 40px;
    width: 100%;
    margin-top: 12.5rem;
}

.strengths__left {
    display: grid;
    grid-template-columns: .55fr 1fr;
    gap: 2.5rem;
}

.strengths__heading {
    position: sticky;
    top: 160px;
    align-self: start;
    font-size: 3.125rem;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--black);
}

.strengths__effect {
    position: absolute;
    top: -165px;
    right: 0px;
    height: 100%;
    width: 100%;
    z-index: 999;
}

.strengths__cards {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.strengths__card {
    background: rgba(55, 61, 77, 1);
    border-radius: 0.25rem;
    padding: 3.125rem;
}

.strengths__card-head {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
}

.strengths__card-title {
    margin-left: 1.25rem;
    font-size: 1.75rem;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
}

.strengths__card-line {
    flex: 1 1 auto;
    height: 1px;
    margin-left: 1.25rem;
    background: var(--line);
}

.strengths__row {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3.75rem;
}

.strengths__row:last-child {
    margin-bottom: 0;
}

.strengths__row-title {
    flex: 0 0 40%;
    font-size: 1.375rem;
    line-height: 1.375rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
}

.strengths__row-text {
    flex: 1 1 auto;
    font-size: 1.125rem;
    line-height: 1.4;
    color: var(--white);
}

.strengths__image {
    width: 100%;
    height: auto;
    align-self: start;
}

@media(max-width: 1024px) {
    .strengths__heading { position: static; }
}

@media(max-width:768px) {
.strengths__row { flex-direction: column; }
}