.section-supply_chain{
    padding-bottom: 30px;
}

.section-supply_chain .block-title{
    margin-bottom: 30px;
}

.section-supply_chain .block-title .title{
    color: var(--text_color_two);
    font-size: 40px;
}

.banner-supply{
    width: 95%;
    background: #9db7c9;
    display: flex;
    margin-bottom: 60px;
    height: 350px;
}

.banner-supply .img-wrap{
    height: auto;
    width: 70%;
}

.banner-supply .intro-supply{
    width: 30%;
    padding: 40px;
    text-align: center;
    margin: 5% 0;
    color: var(--text_color_two);
}

.block-supply_chain{
    background: var(--text_color_two);
    padding: 24px;
    margin-bottom: 8%;
}

.item-supply{
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.item-supply .img-wrap{
    height: 330px;
}

.item-supply .img-wrap img{
    transition: transform 0.5s ease;
}

.item-supply .img-wrap img:hover{
    transform: scale(1.08);
}

.item-supply .box-supply{
    position: absolute;
    bottom: 7%;
    padding: 20px;
    transform: translateY(115px);
    transition: 1.2s;
}

.item-supply .box-supply:hover{
    transform: translateY(0);
    transition: 1.2s;
    
}

.item-supply .info {
    display: flex;
    flex-direction: column;
}

.item-supply .box-supply .text-while{
    color: var(--text_color_two);
    font-size: 28px;
    font-weight: 500;
    height: 100px;
    text-shadow: 0px 4px 3px rgb(0 0 0 / 40%), 0px 8px 13px rgb(0 0 0 / 10%), 0px 18px 23px rgb(0 0 0 / 10%);
}

.item-supply .box-supply .content{
    min-height: 70px;
    color: var(--text_color_two);
    
}