/* Responsive Image */
.headImgDesktop {
    width:100%;
    display: block;
}

.headImgMobile {
    width:100%;
    display: none;
}

@media (max-width: 768px) {
    .headImgDesktop {
        display: none;
    }

    .headImgMobile {
        display: block;
    }
}