@mixin mobile {
@media screen and (max-width: 768px) {
@content;
}
@mixin tablet {
@media screen and (min-width: 769px) and (max-width: 1024px) {
@mixin desktop {
@media screen and (min-width: 1025px) {