.container{
    width: 100%;
    height: 100vh;
    background-image: url("../img/bussiness/img-bg2.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 101px;
    transition: all 0.5s;
    box-sizing: border-box;
}
.item-box{
    width: 100%;
    height: 100%;
    display: flex;
}
.bussiness-item{
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    transition: all 0.5s;
    padding: 0px 120px;
}

.item-iconBox{
    width: 150px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: center;
    transition: all 0.5s;
}
.item-circle{
    width: 147px;
    height: 147px;
}
.item-icon{
    position: absolute;
    top: 35px;
    width: 82px;
}
.item-title{
    margin-top: 47px;
    font-size: 25px;
    font-weight: 400;
    line-height: 41px;
    color: #FFFFFF;
}
.item-text{
    width: 100%;
    min-height: 1px;
    margin-top: 40px;
    font-size: 22px;
    font-weight: 400;
    line-height: 41px;
    color: #FFFFFF;
    text-align: center;
    display: none;
    transition: all 0.5s;
}
.showText{
    display: block !important;
}
.item-more{
    display: none;
    align-items: center;
    margin-top: 38px;
}
.more-text{
    font-size: 20px;
    font-weight: 400;
    line-height: 41px;
    color: #FFFFFF;
    margin-right: 13px;
}
.more-arrow{
    width: 51px;
    height: 51px;
    border-radius: 51px;
    border: 1px solid #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.5s;
}
.more-arrow:hover{
    background-color: #FFFFFF;
}
.arrow-icon{
    width: 19px;
    height: 10px;
}
.showMore{
    display: flex !important;
}
.circle-rotate{
    animation: rotate 10s linear infinite;
}
.navbar-list .navbar-active{
	color: #FFFFFF;
  	font-weight: 700;
  	opacity: 1;
}
@keyframes rotate{
    0% {
        transform: rotate(0deg);
    }
    20% {
        transform: rotate(72deg);
    }
    40% {
        transform: rotate(144deg);
    }
    60%{
        transform: rotate(216deg);
    }
    80%{
        transform: rotate(288deg);
    }
    100%{
        transform: rotate(360deg);
    }
}