.nowrap {
    white-space: nowrap;
}

.text-bold {
    font-family: "Inter Bold", Arial, sans-serif;
}

.text-semibold {
    font-family: "Inter SemiBold", Arial, sans-serif;
}

.household-business {
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.42857143;
}

.household-business p {
    font-family: "Inter", Arial, sans-serif;
}

.text-medium {
    font-family: "Inter Medium", Arial, sans-serif;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.common-padding {
    padding: 60px 0;
}

@media screen and (max-width: 1024px) {
    br {
        display: none;
    }
}

@media screen and (max-width: 979px) {
    .common-padding {
        padding: 40px 0;
    }
}

@media screen and (max-width: 767px) {
    .common-padding {
        padding: 30px 0;
    }
}

/* Color Definitions */
.color-primary {
    background: var(--xanh, linear-gradient(90deg, #257D5F -3.91%, #6EC3A1 100.26%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Bootstrap override for 24 columns */
@media screen and (min-width: 1310px) {
    .household-business .container {
        width: 1310px;
    }
}

/* #region hero */
.hero {
    background: linear-gradient(135deg, #FFFAF2 0%, #FFFAF2 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 630px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(267deg, rgba(255, 255, 255, 0.80) 5.8%, #FEEAFF 93.71%), linear-gradient(105deg, #FEEAFF 25.82%, #FEEAFF 84.29%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    min-height: 429px;
}

.hero-left {
    padding-right: 20px;
    max-width: 835px;
}

.hero .hero-title {
    font-family: "Inter Bold", Arial, sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 1.4;
    color: #1F1F1F;
    margin-bottom: 32px;
    margin-top: 0;
    letter-spacing: -0.02em;
}

.hero-description {
    margin-bottom: 40px;
}

.description-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: flex-start;
}

.tick-icon {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.description-item span {
    font-family: "Inter", Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    max-width: 686px;
    color: rgba(0, 0, 0, 0.75);
}

.description-item strong {
    font-weight: 700;
    font-family: "Inter SemiBold", Arial, sans-serif;
}

.hero-actions {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    align-items: center;
}

.btn {
    border: none;
    border-radius: 12px;
    padding: 14px 20px;
    font-family: "Inter", Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 48px;
    text-decoration: none;
    justify-content: center;
}

.btn-primary {
    background: var(--Primary-CTA, linear-gradient(90deg, #FF5100 -3.91%, #FFA100 100.26%));
    box-shadow: 0px 0px 12px 0px rgba(187, 103, 0, 0.1);
    max-width: 152px
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    background: #FFFFFF;
    color: #006FFF;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    border-radius: 12px;
    text-align: center;
    /* button dropshadow */
    box-shadow: 0px 0px 12px 0px rgba(31, 20, 132, 0.10), 0px 12px 24px 0px rgba(52, 38, 255, 0.10);
    /* max-width: 106px; */
}

.btn-secondary:hover {
    opacity: 0.9;
}

.btn-video {
    background: transparent;
    color: #006FFF;
    border: none;
    padding: 13px 16px;
    position: relative;
    max-width: 172px;
}

.color-secondary {
    background: linear-gradient(90deg, #006FFF -3.91%, #6625FF 100.26%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-video::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
}

.btn-video:hover {
    background: linear-gradient(90deg, #006FFF -3.91%, #6625FF 100.26%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.hero-right {
    position: relative;
    position: absolute;
    right: -2%;
    top: 9%;
    cursor: pointer;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 12px;
}

img#icW {
    position: absolute;
    bottom: -2px;
    left: 0px;
    z-index: 2;
}

/* Mobile Responsive */
@media screen and (max-width: 979px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 0px;
        text-align: center;
    }

    .hero-left {
        padding-right: 0;
        order: 2;
    }

    img#icW {
        display: none;
    }

    .hero-right {
        order: 2;
        position: relative;
    }

    .hero .hero-title {
        font-size: 36px;
    }

    .hero-actions {
        grid-template-columns: 1fr;
        gap: 12px;
    }

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

@media screen and (max-width: 767px) {
    .hero .hero-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .description-item span {
        font-size: 16px;
        text-align: left;
    }

    .hero-actions {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }

    .hero-actions a {
        width: 160px;
        min-width: 160px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
        height: 44px;
    }

    .hero-content {
        display: block;
    }
}

/* endregion */

/* #region features */
.features {
    background: #FFFFFF;
}

.features-header {
    text-align: center;
    margin-bottom: 48px;
}

.household-business .common-title {
    font-family: "Inter Bold", Arial, sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    color: #1F1F1F;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    margin-top: 0;
}

.features-subtitle {
    font-family: "Inter", Arial, sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.5;
    color: #1F1F1F;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.08);
    gap: 20px;
}

.feature-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-content {
    display: grid;
    gap: 20px;
}

.feature-title {
    font-family: "Inter SemiBold", Arial, sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.33;
    color: #1F1F1F;
    margin: 0;
}

.feature-list {
    display: grid;
    gap: 16px;
}

.feature-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: flex-start;
}

.feature-tick {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.feature-item span {
    font-family: "Inter", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #1F1F1F;
}

/* Mobile Responsive */
@media screen and (max-width: 979px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .common-title {
        font-size: 32px;
    }

    .features-subtitle {
        font-size: 20px;
    }

    .feature-title {
        font-size: 20px;
    }
}

@media screen and (max-width: 767px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .common-title {
        font-size: 28px;
    }

    .features-subtitle {
        font-size: 18px;
    }

    .features-header {
        margin-bottom: 32px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-title {
        font-size: 18px;
    }

    .feature-item span {
        font-size: 14px;
    }
}

/* endregion */

/* #region solution */
.solution {
    
background: linear-gradient(180deg, #FFF -42.03%, #DBEDE6 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* .solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(hkd-tra-sua/bg-solution.webp);
    z-index: 1;
} */

.solution .container {
    position: relative;
    z-index: 2;
}

.solution-header {
    text-align: center;
    margin-bottom: 48px;
}

#icW3 {
    position: absolute;
    bottom: -2px;
    left: 0;
    z-index: 1;
    width: 1110px;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.solution-left {
    padding-right: 20px;
}

.solution-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #257D5F;
}

.solution-card-header {
    margin-bottom: 20px;
}

.solution-card-title {
    font-family: "Inter Bold", Arial, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.33;
    color: #1F1F1F;
    margin: 0;
}

.solution-card-body {
    display: grid;
    gap: 24px;
}

.solution-features {
    display: grid;
    gap: 16px;
}

.solution-feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: flex-start;
}

.solution-tick {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.solution-feature span {
    font-family: "Inter", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #212121;
}

.solution-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.solution-right {
    position: relative;
}

.solution-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.main-solution-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.solution-download {
    background: transparent;
    border-radius: 20px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
}

.download-text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-image {
    height: 63px;
    width: auto;
    max-width: 219px;
}

.download-qr {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-code {
    width: 64px;
    height: 64px;
    border-radius: 4px;
}

.download-stores {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.store-badge {
    height: 27.15px;
    width: auto;
    border-radius: 4px;
}

/* Mobile Responsive */
@media screen and (max-width: 979px) {
    .solution-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .solution-left {
        padding-right: 0;
        order: 2;
    }

    .solution-right {
        order: 1;
    }

    .solution-download {
        position: static;
        padding: 16px 20px;
        border-radius: 20px;
        justify-content: center;
    }

    .solution-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 767px) {
    .solution-card {
        padding: 20px;
    }

    .solution-card-title {
        font-size: 20px;
    }

    .solution-feature span {
        font-size: 14px;
    }

    #icW3 {
        display: none;
    }

    .solution-actions {
        flex-direction: column;
        gap: 12px;
        max-width: 160px;
        margin: auto;
    }

    .solution-actions .btn {
        width: 100%;
        justify-content: center;
    }


    .download-image {
        height: 36px;
        max-width: 100px;
    }

    .download-stores {
        flex-direction: row;
        gap: 8px;
        justify-content: center;
    }
}

/* endregion */

/* #region order-management */
.order-management {
    background: #FFFFFF;
}


.order-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.order-left {
    padding-right: 20px;
}

.order-right {
    padding-left: 20px;
}

.order-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #257D5F;
}

.order-card-header {
    margin-bottom: 20px;
}

.order-card-title {
    font-family: "Inter Bold", Arial, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.33;
    color: #1F1F1F;
    margin: 0;
}

.order-card-body {
    display: grid;
    gap: 24px;
}

.order-features {
    display: grid;
    gap: 16px;
}

.order-feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: flex-start;
}

.order-tick {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.order-feature span {
    font-family: "Inter", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #212121;
}

.order-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.order-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.main-order-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.order-download {
    background: transparent;
    border-radius: 20px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
}

/* Mobile Responsive */
@media screen and (max-width: 979px) {
    .order-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .order-left {
        padding-right: 0;
        order: 1;
    }

    .order-right {
        padding-left: 0;
        order: 2;
    }

    .order-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .order-download {
        position: static;
        padding: 16px 20px;
        border-radius: 20px;
        justify-content: center;
    }
}

@media screen and (max-width: 767px) {
    .order-card {
        padding: 20px;
    }

    .order-card-title {
        font-size: 20px;
    }

    .order-feature span {
        font-size: 14px;
    }

    .order-actions {
        flex-direction: column;
        gap: 12px;
        max-width: 160px;
        margin: auto;
    }

    .order-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* endregion */

/* #region professional-solution */
.professional-solution {
    
background: linear-gradient(180deg, #FFF -42.03%, #DBEDE6 100%);
    position: relative;
}

#icW2 {
    position: absolute;
    bottom: -2px;
    left: 0;
    z-index: 1;
    width: 1110px;
}

.professional-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.professional-left {
    padding-right: 20px;
}

.professional-right {
    padding-left: 20px;
}

.professional-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #257D5F;
}

.professional-card-header {
    margin-bottom: 20px;
}

.professional-card-title {
    font-family: "Inter Bold", Arial, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.33;
    color: #1F1F1F;
    margin: 0;
}

.professional-card-body {
    display: grid;
    gap: 24px;
}

.professional-features {
    display: grid;
    gap: 16px;
}

.professional-feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: flex-start;
}

.professional-tick {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.professional-feature span {
    font-family: "Inter", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #212121;
}

.professional-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.professional-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.main-professional-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Mobile Responsive */
@media screen and (max-width: 1300px) {
    #icW2 {
        width: 900px;
    }
}

@media screen and (max-width: 979px) {
    #icW2 {
        width: 700px;
    }

    .professional-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .professional-left {
        padding-right: 0;
        order: 2;
    }

    .professional-right {
        padding-left: 0;
        order: 1;
    }

    .professional-actions {
        justify-content: center;
        flex-wrap: wrap;
    }


}

@media screen and (max-width: 767px) {
    #icW2 {
        display: none;
    }

    .professional-card {
        padding: 20px;
    }

    .professional-card-title {
        font-size: 20px;
    }

    .professional-feature span {
        font-size: 14px;
    }

    .professional-actions {
        flex-direction: column;
        gap: 12px;
        max-width: 160px;
        margin: auto;
    }

    .professional-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* endregion */

/* #region chain-solution */
.chain-solution {
    background: #FFFFFF;
}

.chain-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.chain-left {
    padding-right: 20px;
}

.chain-right {
    padding-left: 20px;
}

.chain-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #257D5F;
}

.chain-card-header {
    margin-bottom: 20px;
}

.chain-card-title {
    font-family: "Inter Bold", Arial, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.33;
    color: #1F1F1F;
    margin: 0;
}

.chain-card-body {
    display: grid;
    gap: 24px;
}

.chain-features {
    display: grid;
    gap: 16px;
}

.chain-feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: flex-start;
}

.chain-tick {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.chain-feature span {
    font-family: "Inter", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #212121;
}

.chain-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.chain-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.main-chain-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Mobile Responsive */
@media screen and (max-width: 979px) {
    .chain-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .chain-left {
        padding-right: 0;
        order: 1;
    }

    .chain-right {
        padding-left: 0;
        order: 2;
    }

    .chain-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 767px) {
    .chain-card {
        padding: 20px;
    }

    .chain-card-title {
        font-size: 20px;
    }

    .chain-feature span {
        font-size: 14px;
    }

    .chain-actions {
        flex-direction: column;
        gap: 12px;
        max-width: 160px;
        margin: auto;
    }

    .chain-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* endregion */

/* #region peace-of-mind */
.peace-of-mind {
    background: url('/mshopkeeper/images/business/van-phong-pham/bg-peace.webp') no-repeat center center;
    background-size: cover;
}

.peace-header {
    margin-bottom: 80px;
}

.peace-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.peace-card {
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 8px 40px 0px #CFFFEB;
    padding: 48px 40px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 336px;
}

.peace-icon {
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 72px;
    background: #FFFFFF;
    border: 2px solid #DFEFE9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.peace-icon img {
    width: 72px;
    height: 72px;
}

.peace-card-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
    height: 100%;
}

.peace-card-title {
    font-family: "Inter SemiBold", Arial, sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.33;
    color: #212121;
    margin-bottom: 20px !important;
}

.peace-card-description {
    font-family: "Inter", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #212121;
    margin: 0;
    flex-grow: 1;
}

.peace-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: "Inter Bold", Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    /* background: linear-gradient(90deg, #FF5100 0%, #FFA100 100%); */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: auto;
}

.peace-arrow {
    width: 16px;
    height: 15px;
}

.peace-link:hover {
    opacity: 0.8;
}

/* Mobile Responsive */
@media screen and (max-width: 979px) {
    .peace-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .peace-header {
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 767px) {
    .peace-card {
        padding: 40px 24px 24px;
    }

    .peace-card-title {
        font-size: 20px;
    }

    .peace-card-description {
        font-size: 14px;
    }

    .peace-link {
        font-size: 18px;
    }

    .peace-header {
        margin-bottom: 40px;
    }
}

/* endregion */

/* #region implementation-steps */
.implementation-steps {
    background: #FFFFFF;
}

.steps-header {
    text-align: center;
    margin-bottom: 80px;
}

.steps-subtitle {
    font-family: "Inter", Arial, sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.5;
    color: #1F1F1F;
    margin: 0 0 16px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card, a.step-card {
    background: #FFFFFF;
    border: 2px dashed #257D5F;
    border-radius: 12px;
    padding: 32px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.step-icon img {
    width: 48px;
    height: 48px;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
}

.step-title {
    font-family: "Inter Bold", Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    color: #212121;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.step-cursor {
    width: 33px;
    height: 53px;
    position: absolute;
    right: 0;
    bottom: -21px;
}

.step-description {
    font-family: "Inter", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #666666;
    margin: 0;
    text-align: left;
}

.step-description span {
    /* color: #FD5621; */
    text-decoration: none;
}

/* Mobile Responsive */
@media screen and (max-width: 1199px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 979px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .steps-header {
        margin-bottom: 60px;
    }

    .step-card {
        padding: 28px 20px 20px;
    }
}

@media screen and (max-width: 767px) {
    .steps-header {
        margin-bottom: 40px;
    }

    .step-card {
        padding: 24px 16px 16px;
    }

    .step-cursor {
        width: 33px;
        height: 30px;
        position: absolute;
        right: 0;
        bottom: -18px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-description {
        font-size: 14px;
    }

    .step-icon img {
        width: 40px;
        height: 40px;
    }
}

/* endregion */

/* #region customer-logos */
.customer-logos {
    background: #FFFFFF;
}

.customer-header {
    text-align: center;
    margin-bottom: 80px;
}

.customer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 36px;
}

.customer-card {
    box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.08);
}

.customer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 12px 48px 0px rgba(0, 0, 0, 0.12);
}

.customer-logo {
    height: auto;
}

/* Mobile Responsive */
@media screen and (max-width: 1199px) {
    .customer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 979px) {
    .customer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .customer-header {
        margin-bottom: 60px;
    }

    .customer-card {
        padding: 20px;
        min-height: 100px;
    }
}

@media screen and (max-width: 767px) {
    .customer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0px;
    }

    .customer-header {
        margin-bottom: 40px;
    }

    .customer-card {
        padding: 0;
        min-height: 80px;
        box-shadow: unset;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .customer-logo {
        max-height: 60px;
    }
}

/* endregion */

/*#region News */
.news-wrap {
    margin-top: 12px;
}
.news {
    background-color: #F0F1FF;
}
.news-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 10px 20px 0px #0000000F;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0px;
}
.news-item .news-logo img {
    width: initial;
    height: initial;
}
.news .ni-date {
    opacity: 0;
  }
.ni-title {
    color: #000;
    padding: 8px 0 8px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: none;
}

.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
}
.ni-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ni-image {
    max-height: 200px;
    overflow: hidden;
}

.posts .ni-bottom {
    justify-content: flex-end;
}

.posts {
    background-color: #F7F9FF;
}

.ni-logo {
    flex-shrink: 0;
    max-width: 70px;
    max-height: 23px;
}

.ni-logo img {
    width: initial;
    height: initial;
}

.ni-date {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #586074;
}

.ni-date img {
    width: 16px;
    height: 16px;
}

@media (max-width: 979px) {
    .news-wrap {
        margin-top: 24px;
    }
}

/*#endregion */

/*#region Register */
#register {
    background-color: #F7F9FF;
    color: #fff;
}

#register .container {
    background: url(/mshopkeeper/images/business/van-phong-pham/bg-register.webp) no-repeat center center;
    background-size: cover;
    padding: 75px 135px 112px;
    border-radius: 20px;
}

.register-wrap {
    display: flex;
    gap: 50px;
}

.register-wrap>div {
    flex: 1;
}

.register-title {
    font-size: 36px;
    padding-bottom: 30px;
}

.register-des {
    margin-top: 16px;
}

.register-item {
    display: flex;
    gap: 12px;
    padding-bottom: 20px;
}

.register-item .ri-icon {
    flex-shrink: 0;
}

.ri-title {
    font-size: 18px;
    padding-bottom: 8px;
}

#register form[lz-id='8bce39d1-7742-4448-9169-3581d4416a77'].private-form {
    border-radius: 20px !important;
}

#register form[lz-id='8bce39d1-7742-4448-9169-3581d4416a77'].private-form .submit-wrapper .btn-form-submit {
    background: linear-gradient(90deg, #FF5100 -3.91%, #FFA200 100.26%) !important;
}

@media (min-width: 1600px) {
    #register .container {
        width: 1550px;
    }
}

.certificate {
    background-color: #fff;
    padding: 36px 0;
    max-width: 1280px;
    margin: -80px auto 0;
    display: flex;
    justify-content: center;
    border-radius: 12px;
}

.certificate-wrap {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    width: 800px;
}

.certificate-item {
    display: flex;
    align-items: center;
}

form[lz-id='8bce39d1-7742-4448-9169-3581d4416a77'].private-form .form-row .field-wrapper .field-inner {
    color: #111827;
}


@media screen and (min-width: 1309px){
    .register-left {
        min-width: 676px;
    }
}

.register-list {
    max-width: 510px;
}

@media (max-width: 1500px) {
    #register .container {
        padding: 75px 60px 112px;
    }
}

@media (max-width: 979px) {
    #register .container {
        padding: 16px;
        border-radius: 8px;
    }

    .register-wrap {
        flex-direction: column;
    }

    .register-title {
        font-size: 24px;
        padding-bottom: 16px;
        text-align: center;
    }

    .register-item {
        padding-bottom: 16px;
    }

    .certificate {
        margin: 24px 16px;
        width: auto;
        padding: 0 16px
    }

    .certificate-wrap {
        width: 100%;

    }

    .register-des {
        margin-top: 12px;
    }

        .register-left {
            min-width: unset;
        }

    .register-list {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .register-title {
        font-size: 20px;
    }

    .ri-title {
        font-size: 16px;
    }


}

/*#endregion */