header{
    width: 100%;
    height: 150px;
    background-image: url(../img/bg-forest-project.png);
    position: relative;
}
header p{
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%);
}
main{
    width: 100%;
    /* min-height: calc(100vh - 150px); */
    background-image: url(../img/bg-paper.png);
}
.product-section{
    display: flex;
    flex-direction: column;
}
.product-item{
    display: flex;
    margin: 5vh 0;
}
.product-item > img{
    width: 15vw;
    border-radius: 10px;
    margin-right: 5vw;
}
.item-info{
    display: flex;;
    flex-direction: column;
    color: #17403F;
}
.info-icon{
    width: 3vw;
}
.info-title{
    font-weight: bold;
    font-size: 28px;
    margin: 2vh 0;
}
.info-desc{
    font-size: 16px;
    margin-bottom: 1vh;
}