/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/


.content-desktop {
    display: block;
}

.content-mobile {
    display: none;
}

@media only screen and (max-width: 768px) {
    .content-desktop {
        display: none;
    }
    .content-mobile {
    display: block;
    }
}