.product {
    background-color: #fafafc;
}

.product_top {
    padding: 55px 0;
}

.product_top h2{
    margin-bottom: 8px;
}

.product_title{
    font-size: 18px;
    font-weight: 500;
    color: #777C96;
    display: flex;
    align-items: center;
}

.product_title span{
    transition: all ease 0.3s;
}

.product_title:hover{
    color:#2DD4E0;
}

.product_icon {
    font-size: 18px;
   margin-right: 10px;
   transition: all ease 0.3s;
   /* height: 18px; */
}

.product_border {
    margin-bottom: 60px;
}

.product_border:hover span{
    color: #2DD4E0 !important;
}

.product_border:hover i{
    color: #2DD4E0 !important;
}

.product_detail {
     width: 100%;
     height: 145px;
     padding: 18px 0 23px 0;
     margin: 0 -6px;
}

.product_bigbox{
    float: left;
    width: 33.33333333%;
    height: 115px;
    padding:0 6px 16px;
}

.product_bgcbox {
    width: 100%;
    height: 100%;
    padding: 16px 24px 16px 16px;
    background-color: #fff;
    position: relative;
}

.animate_box {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: all ease 0.3s;
}

.product_bgcbox i{
    font-size: 0px;
    color:  #2DD4E0;
    position: absolute;
    right: 20px;
}
.product_bgcbox:hover i{
    font-size: 28px;
    transition: all ease 0.3s;
}
.animate_box img{
    width: 60px;
    height: 60px;
    transition: all ease 0.4s;
    opacity: 1;
}

.product_bgcbox:hover img{
    transform:translate(-20px);
    opacity: 0;
}


.product_bgcbox:hover .box_text{
    transform:translate(-20px);
    transition-duration:0.2s;
}


.animate_box .box_text{
    margin-left: 2%;
    transition: all ease 0.2s;
}

.product_bgcbox:hover h4{
    color: #2DD4E0 !important;
}

.product_bgcbox h4 {
    font-size: 20px;
    color: #393f56;
    margin-bottom: 4px;
    transition: all ease 0.3s;
}

.product_bgcbox p {
    font-size: 12px;
    color: #999db1;
}