/*---------- Cover (start) ----------*/
.businessCover {
    width: 100%;
    height: 750px;
    background: url(../img/businessCover.jpg) center 75% no-repeat;
    background-size: cover;
}
/*---------- Cover (end) ----------*/

/*---------- bussiness (start) ----------*/
.bussiness {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.bussiness .item {
    width: 49%;
    min-height: 150px;
    margin: 0 0 20px;
    padding: 25px 30px;
    box-sizing: border-box;
    position: relative;
    border-top: solid 1px #005bac;
    background: rgba(0, 128, 255, 0.1);
}

.bussiness .item .title {
    margin: 0 0 10px;
    font-weight: bold;
    font-size: 20px;
    color: #005bac;
}

.bussiness .item .tri {
    width: 0;
    height: 0;
    position: absolute;
    right: 0;
    top: 0;
    border-style: solid;
    border-width: 0 30px 30px 0;
    border-color: transparent #005bac transparent transparent;    
}

/*---------- bussiness (end) ----------*/

/*---------- RWD (start) ----------*/
@media screen and (min-width: 1601px) and (max-width: 1920px) {
}

@media screen and (min-width: 1367px) and (max-width: 1600px) {
    .businessCover {
        height: 600px;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1366px) {
    .businessCover {
        height: 500px;
    }
}

@media screen and (min-width: 1px) and (max-width: 1200px) {
    .businessCover {
        height: 150px;
        background: url(../img/businessCover.jpg) 61% 75% no-repeat;
        background-size: cover;
    }
    
    .businessCover .slogan {
        width: 90%;
        top: 10px;
        bottom: auto;
        text-align: left;
    }
    
    .bussiness .item {
        width: 100%;
    }
}
/*---------- RWD (end) ----------*/