.sales__container {
    display: flex;
    align-items: center;
    gap: 24px;
}

.sales__block {
    width: 50%;
    padding: 35px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    background-position: center;
    background-size: cover;
    min-height: 244px;
    border: 1px solid #F4F3F1;
    transition: all .3s ease;
}

.sales__block:hover {
    border: 1px solid var(--accent-color);
    transform: translateY(-6px);
}

.sales__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 140%;
}

.sales__title b {
    font-weight: 600;
    color: var(--accent-color);
}

.sales__button {
    align-self: flex-start;
}

@media (max-width:900px) {
    .sales__container {
        flex-direction: column;
    }
    .sales__block {
        width: 100%;
        padding: 15px;
    }

    .sales__text {
        font-weight: 16px;
    }
}