#banner {
    background-color: #4e555b;
}

#banner .carousel-inner {
    height: 700px;
}

#banner .carousel-inner .desc-wrap {
    position: absolute;
    color: #fff;
    height: 700px;
    top: 270px;
    bottom: 0;
    left: 0;
    right: 0;
}

#banner .carousel-inner img {
    height: 700px;
    object-fit: cover;
    /*filter:brightness(80%);*/
}

#product {
    background: #FFFFFF;
}

#product .product-card {
    padding: 30px 35px;
    border-radius: 10px;
    margin-bottom: 40px;
    margin-top: 30px;
    box-shadow: 0px 5px 25px rgba(218, 211, 211, 0.3);
}

#product .product-card .icon {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    margin-top: -60px;
}

#product .product-card .icon img {
    width: 100%;
    height: 100%;
    border: 1px solid #eee;
    border-radius: 15px;
}

#product .product-card p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

#introduce {
    height: 332px;
    background: rgb(6, 7, 12) url('/static/index/images/index-our-strengths.jpg') no-repeat center;
}

#evolve {
    background: #FFFFFF;
}

#evolve .card {
    border: 0;
    box-shadow: 0px 5px 25px rgba(218, 211, 211, 0.3);
    margin-bottom: 40px;
}

#evolve .card img {
    width: 100%;
    height: 200px;
    transition: transform 0.6s;
}

#evolve .card img:hover {
    /*transform: scale(1.1);*/
}

#evolve .card-text{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

#partners {
    background: #f8f8f8;
}

#partners .logos-wrap {
    position: relative;
    height: 200px;
}

@keyframes move {
    0% {
        left: 0;
    }
    100% {
        left: -100%;
    }
}

#partners .logos-wrap .logos {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    padding: 25px 15px;
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
    animation: 30s move infinite linear;
    -webkit-animation: 30s move infinite linear;
}

#partners .logos-wrap .logos li {
    list-style: none;
    display: inline;
    margin-right: 20px;
    padding: 10px 5px;
    box-shadow: 0px 5px 25px rgba(218, 211, 211, 0.3);
}

#partners .logos-wrap .logos li img {
    height: 60px;
}