body {
	margin: 0;
	padding: 0;
	border: 0;
	background: #0f2135;
	color: #fff;
	font-size: 12px;
	font-family: 'Open Sans', sans-serif;
	overflow-x: hidden;  /* Prevent scroll on narrow devices */
}

div{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    }
    
    a{
    text-decoration: none;
    color: #fff;
    border: 0;
    }
    
    a:hover{
    text-decoration: underline;
    }
    
    img{
    border: 0;
    }


#wrapper{
    display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: flex-start;
    padding: 5px;
}

#bot{
    padding: 5px;
    position: relative;
}

#wrapper > div, #bot > div{
   width: 33.33333%;
   padding: 4px 5px;

}
#wrapper > div img, #bot > div img{
    width: 100%;
    height: auto;
 }

#tod{
    display: none;

}

#bot > div#logo{
    position: absolute;
    right: 10px;
    bottom: 10px;
}



@media only screen and (max-width: 992px) {




    #wrapper > div, #bot > div{
        width: 50%;
     }

     #bot{
        display: none;
     }


     #tod{
        display: block;
    
    }




}



@media only screen and (max-width: 480px) {




    #wrapper > div, #bot > div{
        width: 100%;
     }

     #bot{
        display: block;
     }


     #tod{
        display: none;
    
    }

    #bot > div#logo{
        display: none;
    }
    

}