

/* hiding on phone */

@media screen and (max-width: 481px) {

.hide_on_phone {

display: none !important;

}

}

/* hiding on tablet */

@media screen and (max-width: 1025px) {

@media screen and (min-width: 481px) {

.hide_on_tablet {

display: none !important;

}

}

}

/* hiding on laptop */

@media screen and (max-width: 1250px) {

@media screen and (min-width: 800px) {

.hide_on_laptop {

display: none !important;

}

}

}

/* hiding on desktop */

@media screen and (min-width: 1251px) {

.hide_on_desktop {

display: none !important;

}

}