#profit {
    margin-top: -10px;
    width: 100%;
    background-color: #79c4cd;
    padding: 20px 0px 20px 0px;
}

.profit-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.profit-container {
    width: 25%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profit-img {
    width: 75px;
}

.profit-text {
    color: white;
}

.profit-text p {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0 !important;
}

.profit-text h2 {
    font-size: 18px;
    margin-bottom: 0 !important;
}

/* Mobile */
@media (max-width: 767px) {
    #profit .container {
        padding: 25px 16px 20px 16px;
    }

    .profit-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .profit-container {
        width: 100%;
        justify-content: center;
    }
}

/* Tablet */
@media (max-width: 1023px) and (min-width: 768px) {
    .profit-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .profit-container {
        width: 100%;
        justify-content: center;
    }
}
