.top-box{
    background-image: url("../img/contactus/banner-bg.png");
}
.contactInfo{
    width: 100%;
    height: 648px;
    padding-top: 25px;
    box-sizing: border-box;
}
.contact-infoBox{
    margin-top: 41px;
    width: 100%;
    height: 714px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
}
.contact-infoItem{
    width: 705px;
    height: 342px;
    background-image: url("../img/contactus/branch-img.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.05);
    padding: 21px 35px;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.5s;
}
.contact-infoItem:hover{
    background-image: url("../img/contactus/branch-img-blue.png");
}
.contact-infoItem:hover .infoItem-name{
    color: #FFFFFF;
}
.contact-infoItem:hover .infoItem-address{
    color: #FFFFFF;
}
.contact-infoItem:hover .infoItem-email{
    color: #FFFFFF;
}
.contact-infoItem:hover .infoItem-phone{
    color: #FFFFFF;
}
.contact-infoItem:hover .infoItem-time{
    color: #FFFFFF;
}
.infoItem-imgBox{
    position: relative;
    width:  75px;
    height: 75px;
    margin-bottom: 9px;
}
.info-bigCircle{
    position: absolute;
    width: 75px;
    height: 75px;
}
.info-smallCircle{
    position: absolute;
    width: 62px;
    height: 62px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.info-phone{
    position: absolute;
    width: 32px;
    height: 32px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.infoItem-name{
    font-size: 30px;
    font-weight: 400;
    line-height: 43px;
    color: #000000;
    margin-bottom: 17px;
}
.infoItem-address{
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #333333;
    margin-top: 7px;
}
.infoItem-email{
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #333333;
    margin-bottom: 7px;
}
.infoItem-phone{
    font-size: 40px;
    font-weight: 500;
    line-height: 53px;
    color: #006FBC;
    margin-bottom: 7px;
}
.infoItem-time{
    font-size: 18px;
    font-weight: 300;
    line-height: 25px;
    color: #666666;
}
.circle-rotate{
    animation: rotate 20s linear infinite;
}
@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);
    }
}
@media screen and (max-width: 1600px){
  .container-public{
  		width: 85% !important;
  }
  .contact-infoItem{
  		width: 48%;
  }
}