/** @format */
/* Audit Section */
.audit {
    display: flex;
    justify-content: space-between;
    padding: 5rem 5rem 0rem 5rem;
}

.text-audit {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    justify-content: center;
    align-items: center;
}

.text-audit h3 {
    font-size: 1.7rem;
    text-transform: uppercase;
}

.text-audit p {
    color: var(--gray);
}

.audit-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.audit-img img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: 25px;
}

@media (min-width: 1000px) {
    .bubble-container {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
    }
}

@media (max-width: 1000px) {
    .bubble-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 1fr;
    }

    .audit {
        padding: 2rem;
    }

    .audit-img img {
        width: 90%;
        height: 20rem;
    }

    .top {
        margin-bottom: 3rem;
    }
}

@media (max-width: 750px) {
    .bubble-container {
        grid-template-columns: repeat(1, 1fr);
        margin: 1rem;
        padding: 0rem;
    }

    .text-audit {
        flex-direction: row;
        width: 100%;
        align-items: start;
        margin-bottom: 4rem;
    }

    .audit {
        flex-direction: column;
    }

    .top {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .top p {
        width: 100%;
    }
}

@media (max-width: 530px) {
    .bubble-container {
        margin-bottom: 5rem;
    }

    .text-audit {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .audit-img img {
        border-radius: 15px;
    }
}

@media (max-width: 470px) {
    .why-us {
        padding: 1rem;
    }
}
