/*logo*/
.loggo{
    position: fixed;
	margin-top: 10px;
	margin-left: 8px;
	border-radius: 3px;
	box-shadow: 0 0 1rem #000;
	z-index: 101;
}
.loggo img{
    display: block;
    max-width: 100%;
    cursor: pointer;
    height: 180px;
    z-index: 998;
    border-radius: 3px;
}

/*screen breaking points */
@media (max-width: 768px;){
    .loggo img{
        height: 105px !important;
    }
}
@media (max-width: 450px;){
    .loggo img{
        height: 29px !important;
    }
}