.header{
    width: 100%;
    height: 989px;
    background-image: url('../images/hb_bg_1.jpg');
    background-size: cover;
    position: relative;
}

.header-text{
    width: 261px;
    height: 503px;
}

@keyframes floatingLand {
    0% {
        transform: translateY(0%);
    }
    50% {
        transform: translateY(-5%);
    }
    100% {
        transform: translateY(-0%);
    }
}

.header-land{
    width: 450px;
    height: 424px;
    margin-left: 50px;
    animation: floatingLand 2.5s ease-in-out infinite;
}

.item{
    width: 100%;
    height: 4323px;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.item-title{
    display: block;
    width: 508px;
    height: 112px
}

.item-content{
    width: 100%;
    height: 612px;
    margin-top: 75px;
    display: flex;
    justify-content: center;
}

.image{
    width: 359px;
    height: 612px;
    margin: 0 25px;
    transition: transform 0.3s ease-in-out;
}

.image:hover{
    transform: scale(1.1);
}

.footer{
    width: 100%;
    height: 722px;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
