.header{
    width: 100%;
    height: 987px;
    background-image: url('../images/ctw_bg_1.jpg');
    background-size: cover;
    position: relative;
}

.header-text{
    width: 261px;
    height: 528px;
}

@keyframes floatingLand {
    0% {
        transform: translateY(0%);
    }
    50% {
        transform: translateY(-5%);
    }
    100% {
        transform: translateY(-0%);
    }
}

.header-land{
    width: 450px;
    height: 484px;
    margin-left: 50px;
    animation: floatingLand 2.5s ease-in-out infinite;
}

.item{
    width: 100%;
    height: 909px;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.item-title{
    display: block;
    width: 508px;
    height: 119px
}

.item-content{
    width: 100%;
    height: 100%;
    margin-top: 75px;
    display: flex;
    justify-content: center;
}

.image-container{
    position: relative;
    width: 200px;
    height: 563px;
    margin: 0 25px;
    cursor: pointer;
}

.image{
    position: absolute;
    width: 201px;
    height: 563px;
    transition: transform 0.3s ease-in-out;
}

.image-shadow{
    position: absolute;
    width: 201px;
    height: 563px;
    opacity: 0;
    transition: transform 0.3s ease-in-out;
}

.image-container:hover .image-shadow{
    opacity: 1;
    transform: scale(1.1);
}

.image-container:hover .image{
    transform: scale(1.1);
}

.footer{
    width: 100%;
    height: 663px;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.popup-content{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-mobile{
    background-image: url("../images/mobile.png");
    width: 373px;
    height: 811px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-mobile-content{
    width: 348px;
    height: 781px;
    border-radius: 35px;
    overflow: hidden;
}

.popup-mobile-content-body{
    width: 365px;
    height: 781px;
    border-radius: 35px;
    overflow-y: scroll;
}

.popup-image{
    width: 348px;
    height: auto;
    border-radius: 35px;
}

