/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 19 2023 | 21:39:56 */
/*
container that holds the four ways to trade slider block
padding-top centers it with the image that it is on top of
display none hides it on larger devices
*/ 
.ways-to-trade {
	z-index: 1;
	padding-top: 100px;
	display: none;
}

/*
reveals on smaller devices
*/ 
@media (max-width: 767px) {
	.ways-to-trade {
	display: block
}
  
}

