#division-sidebar {
    position: fixed;
    right: 0;
    z-index: 999;
    display: flex;
    flex-direction: row;
}
#division-sidebar .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 3.5rem;
    height: 13rem;
    box-sizing: border-box;
    cursor: pointer;
}
#division-sidebar .title img {
    width: 1.4rem;
    margin-bottom: 0.5rem;
    transform: rotate(-90deg);
    transition: transform 0.8s;
}
#division-sidebar .title.expanded img {
    transform: rotate(90deg);
}
#division-sidebar #division_list a {
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.highlight .profile img {
    height: 100%;
}

.list .item_title img {
    width: 100%;
}
.list .item_title div {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
    text-align: center;
}

/* Desktop Style */
@media screen and (min-width: 769px) {

    .sub_title {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-top: 2rem;
    }
    .sub_title h2 {
        margin-top: 0;
    }
    .sub_title .desc {
        margin-left: 7.7rem;
        color: #707070;
        font-size: 1.5rem;
    }

    #division-sidebar {
        top: 8.65rem;
    }
    #division-sidebar .title {
        padding-top: 1.5rem;
        background-color: #84aae9;
        border-radius: 2rem 0 0 2rem;
        border-right: 0.5rem solid #0040ad;
    }
    #division-sidebar .title div {
        font-size: 1.6rem;
        font-weight: bold;
        text-align: center;
        line-height: 1.4;
    }
    #division-sidebar #division_list {
        min-width: 17rem;
        height: calc(100vh - 5rem);
        margin-top: -3.65rem;
        margin-right: -20.5rem;
        padding: 1.75rem;
        background-color: rgba(0, 64, 173, 0.8);
    }
    #division-sidebar #division_list a {
        font-size: 1.6rem;
        line-height: 2;
    }

    .highlight {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        margin-top: 4.05rem;
        margin-left: 3.425rem;
    }
    .highlight .profile {
        width: 15.3rem;
        height: 15.3rem;
        border-radius: 7.65rem;
        overflow: hidden;
    }
    .highlight .title_and_name {
        margin-left: 3.65rem;
        font-size: 2.5rem;
    }

    .list {
        margin: 1.35rem 0 28rem 2rem;
    }
    .list .item {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-top: 4.3rem;
    }
    .list .item_title {
        position: relative;
        min-width: 19.35rem;
        max-width: 19.35rem;
    }
    .list .item_title div {
        font-size: 1.6rem;
    }
    .list .list_bullet {
        margin-left: 2.75rem;
        margin-right: 1.45rem;
    }
    .list .item_value {
        line-height: 1.5;
    }

    .bg-icon {
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: -1;
    }

}

/* Mobile Style */
@media only screen and (max-width: 768px) {

    .sub_title h2 {
        margin-top: 2rem;
    }
    .sub_title .desc {
        margin: 2rem auto 0 auto;
        color: #707070;
        font-size: 1.5rem;
        text-align: center;
        line-height: 1.5;
    }
    .sub_title .desc span {
        display: block;
    }

    #division-sidebar {
        top: 1rem;
    }
    #division-sidebar .title {
        padding: 1.5rem 1rem 0 1rem;
        background-color: rgba(132, 170, 233, 0.8);
        border-radius: 7rem 0 0 7rem;
    }
    #division-sidebar .title div {
        font-size: 1.6rem;
        font-weight: bold;
        text-align: center;
        line-height: 1.4;
    }
    #division-sidebar #division_list {
        width: min(50vw, 256px);
        height: 100vh;
        margin-top: -1rem;
        margin-right: max(-50vw, -256px);
        padding: 1.75rem;
        box-sizing: border-box;
        background-color: rgba(0, 64, 173, 0.8);
    }
    #division-sidebar #division_list a {
        font-size: 1.5rem;
        line-height: 3;
    }

    .highlight {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 2.8rem;
    }
    .highlight .profile {
        width: 12rem;
        height: 12rem;
        border-radius: 6rem;
        overflow: hidden;
    }
    .highlight .title_and_name {
        margin-top: 2rem;
        font-size: 1.8rem;
    }

    .list {
        width: 75%;
        margin: 2.8rem auto 0 auto;
    }
    .list .item {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 1.4rem;
    }
    .list .item_title {
        position: relative;
        min-width: 15rem;
        max-width: 15rem;
    }
    .list .item_title div {
        font-size: 1.5rem;
    }
    .list .list_bullet {
        display: none;
    }
    .list .item_value {
        margin-top: 1rem;
        font-size: 1.3rem;
        line-height: 1.2;
    }

    .bg-icon {
        width: 100%;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        z-index: -1;
    }

}
