/* ============ Business Profile ============
 ========================================= */
.business-profile {
    overflow-x: hidden;
}

.business-profile .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.business-profile .container .content {
    max-width: 535px;
    overflow-x: hidden;
}

.business-profile .container .content h2 {
    font-size: 49px;
    font-weight: 700;
    line-height: 66px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.business-profile .container .content p {
    font-size: 18px;
    color: var(--text-color);
    line-height: 30px;
}

.business-profile .container .content .folders-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.business-profile .container .folder-image {
    overflow-x: hidden;
    max-width: 300px;
}

.business-profile .container .folder-image img {
    width: 100%;
}
@media screen and (max-width: 992px) {
    .business-profile .container {
        flex-direction: column-reverse;
    }

    .business-profile .container .content {
        max-width: 100%;
        text-align: center;
    }

    .business-profile .container .content h2 {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .business-profile .container .content .folders-btns {
        justify-content: center;
    }
}
