/* To Top button */
#scrollToTop {
    position:fixed;
    right: 20px;
    bottom: 50px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    /* background-color: #3498db; */
    border: 2px solid #11aff1;
    text-indent:-9999px;
    display:none;
    -webkit-border-radius:60px;
    -moz-border-radius:60px;
    border-radius:60px;
    z-index: 1;
}
#scrollToTop span {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border:8px solid transparent;
    border-bottom-color:#11aff1;
}
#scrollToTop:hover {
    background-color:#11aff1;
    opacity:1;filter:"alpha(opacity=100)";
    -ms-filter:"alpha(opacity=100)";
}

#scrollToTop:hover > span{
    border-bottom-color:#ffffff;
}
/* end To top button */
@media only screen and (max-width: 992px) {
    /*Make the button background white - 8thJune21*/
    .navbar-color
    {
    	background: white !important;
    }
    /*end Make the button background white*/
    /* Make image responsive - 9thJune21 */
    .img-size-adjust{
        width: 100% !important;
        height: 100% !important;
    }
    #toTop {
        bottom: 45px;
    }
    /* end Make image responsive - 9thJune21 */
}