/* .home-business__container{
    min-height: 560px;
}

@media screen and (max-width: 960px) {
    .home-business__container{
        min-height: auto;
    }
} */


.home-business{
    padding: 120px 0;
    background: url(../img/business-bg.jpg);
}

.home-business-inner{
    max-width: 1280px;
    padding: 0 20px;
    margin: 0 auto;
}

.home-business-head{
    text-align: center;
    margin-bottom: 80px;
    color: #fff;
}

.home-business-title{
    font-size: 48px;
    margin-bottom: 16px;
}

.home-business-subtitle{
    font-size: 20px;
}

.home-business-flex{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0 160px;
}

.home-business-item{
    width: calc(50% - 80px);
    min-height: 560px;
    padding: 56px 0;
    background-color: #fff;
    color: #001a43;
    text-align: center;
}

.home-business-item-title{
    font-size: 45px;
}

.home-business-item-subtitle{
    font-size: 20px;
    padding-bottom: 8px;
    position: relative;
    margin-bottom: 16px;
}

.home-business-item-subtitle::after{
    content: "";
    width: 32px;
    height: 2px;
    background: #001a43;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-margin{
    width: 100%;
    height: 360px;
    background-image: url(../img/business-photo.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top 0% left 50%;
}


@media screen and (max-width: 960px) {
    .home-business{
        padding: 40px 0;
    }

    .home-business-inner{
        padding: 0 15px;
    }

    .home-business-head{
        margin-bottom: 40px;
    }

    .home-business-title{
        font-size: 32px;
        margin-bottom: 0;
    }

    .home-business-subtitle{
        font-size: 16px;
    }

    .home-business-flex{
        display: block;
    }

    .home-business-item{
        width: 100%;
        min-height: auto;
        padding: 40px 0;
        margin-bottom: 40px;
    }

    .home-business-item-title{
        font-size: 24px;
    }

    .home-business-item-subtitle{
        font-size: 14px;
        padding-bottom: 8px;
        position: relative;
        margin-bottom: 16px;
    }

    .home-business-item-subtitle::after{
        content: "";
        width: 32px;
        height: 2px;
        background: #001a43;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .home-business-item-text{
        font-size: 14px;
    }

    .section-margin{
        height: 180px;
    }
}