

/* MINBAN */
.banner-content-top {
    position: absolute;
    /* Position it absolutely within the banner */
    top: 5rem;
    /* Align it to the top */
    left: 50%;
    /* Center it horizontally */
    transform: translateX(-50%);
    /* Shift it left by half its width */
    text-align: center;
    /* Center the text */
    padding: 10px;
    /* Optional: add some padding */
}

.main .banner-border .banner-subtitle,
.main .banner-border .banner-title span,
.main .banner-border .banner-link {
    color: black;
    /* Change text color to black */
}

.banner-content-right {
    position: absolute;
    /* Position it absolutely within the banner */
    top: 50%;
    /* Center it vertically */
    right: 5rem;
    /* Adjust the distance from the right edge */
    transform: translateY(-50%);
    /* Adjust for the height of the content */
    text-align: right;
    /* Align text to the right */
}