.content {
    margin-bottom: 70px;
}

.mobile-content {
    display: none;
}

.village-banner,
.castle-banner,
.island-banner {
    background-image: url(../image/village\ bg.jpg);
    background-size: cover;
    background-position: center;
    min-height: 800px;
    display: flex;
    align-items: flex-end;
}

.village-banner div,
.castle-banner div,
.island-banner div {
    width: 50%;
    margin-left: 10%;
    margin-bottom: 2%;
}

.castle-banner {
    background-image: url(../image/castle\ bg.jpg);
}

.island-banner {
    background-image: url(../image/island\ bg.jpg);
}

.image-container {
    width: 80%;
    margin: 5% auto;
}

.container-row,
.container-column {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.container-row:last-child {
    margin-bottom: 0;
}

.container-row.island {
    flex-direction: row-reverse;
}

.container-row img,
.container-column img {
    border: 2px solid #FFFFFF;
}

.container-column {
    flex-direction: column;
    gap: 10px;
}

.container-column.island {
    gap: 6%;
}

.next-page {
    position: absolute;
    right: -2%;
}

/*Tablet*/
@media screen and (max-width:768px) {

    .container-column {
        gap: 2px;
    }

    .container-column.island {
        gap: 10px
    }

    .village-banner,
    .castle-banner,
    .island-banner {
        min-height: 500px;
        justify-content: center;
        text-align: center;
    }

    .village-banner div,
    .castle-banner div,
    .island-banner div {
        width: 70%;
        margin-left: 0px;
    }

    .previous-page {
        margin-left: 7%;
    }
}

/*Mobile*/
@media screen and (max-width:414px) {

    .content {
        display: none;
    }

    .mobile-content {
        display: block;
        margin-bottom: 15%;
    }

    .village-banner div,
    .castle-banner div,
    .island-banner div {
        text-align: left;
        width: 85%;
    }

    .image-container {
        width: 85%;
    }

    .container-row div {
        width: 50%;
    }

    .container-row p {
        margin: 0px;
    }

    .container-column {
        gap: 10px;
        margin: 0%;
    }

    .container-row {
        gap: 10px;
        margin-bottom: 10px;
    }

    .container-column div {
        width: 100%;
    }
}