.services__wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--Gap-30);
}


.services__end-cart {
    position: relative;
    padding: var(--Padding-30);
    border-radius: 5px;
    overflow: hidden;
    background-color: var(--Primary);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--Gap-70);
    justify-content: space-between;
}
.services__end-cart__title {
    position: relative;
    color: var(--Head-secondary);
    margin-bottom: var(--Margin-15);
    text-transform: uppercase;
}
.services__end-cart__text {
    position: relative;
    color: var(--Main-text-secondary);
    width: 382px;
    max-width: 100%;
}

.services__end-cart__logo {
    position: absolute;
    bottom: var(--Padding-10);
    left: var(--Padding-10);

    max-width: calc(100% - (var(--Padding-10) * 2) );
    max-height: calc(100% - (var(--Padding-10) * 2) );
}


@media(max-width: 1000px) {
    .services__wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width: 460px) {
    .services__wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}