#content2 .left-side {
    padding: 50px 100px;
}

#content2 .left-side h1 {
    color: #263C86;
    margin-bottom: 25px;
}

#content2 .left-side .name {
    font-weight: bold;
    margin-bottom: 0px;
}

#content2 .left-side p {
    text-align: justify;
}

#content2 .left-side .jabatan {
    font-size: 12px;
}

#content2 .right-side {
    position: relative;
}

#content2 .right-side img {
    height: 500px;
    position: absolute;
    bottom: 80px;
    left: 0px;
}

/* FOR LAPTOP SMALL SIZE */

@media screen and (max-width: 1320px) and (min-width: 1024px) {
    #content2 .left-side {
        padding: 25px;
    }
    #content2 .right-side img {
        width: 100%;
        height: auto;
    }
}

/* FOR TABLET DEVICE */

@media screen and (max-width: 1023px) and (min-width: 600px) {
    #content2 .left-side {
        padding: 25px;
    }
    #content2 .right-side {
        text-align: center;
    }
    #content2 .right-side img {
        height: 400px;
        position: relative;
        top: 0px;
    }
}

/* FOR MOBILE DEVICE */

@media screen and (max-width: 600px) {
    #content2 .left-side {
        padding: 25px;
    }
    #content2 .right-side {
        text-align: center;
    }
    #content2 .right-side img {
        height: 300px;
        position: relative;
        top: 0px;
    }
}