
.sales-counter__s {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 200px;
    color: black;
    text-align: center;
    margin: 50px auto;
    padding: 5px 20%;
}

@media only screen and (max-width: 768px) {
    .sales-counter__s {
        padding: 5px 2px;
        flex-direction: column;
        height: auto;
    }
}

.sales-counter__s h1 {
    font-size: 3rem;
    font-weight: bold;
}

.sales-counter__s div {
    @media only screen and (max-width: 768px) {
        margin-bottom: 20px;
    }
}

.gradient-orange-font {
    background: -webkit-linear-gradient(60deg,#F8A86D, #D75A00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-green-font {
    background: -webkit-linear-gradient(60deg,#AEC6AC, #6DB267);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-blue-font {
    background: -webkit-linear-gradient(60deg,#0054A1, #00315F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}