/* desktop css */
@media only screen and (min-width:1280px)
 {
.home1
 {

    margin-top:-60px;
 }

 .home22
 {
   margin-top:20px; 
    width:120px;
    height:50px;
    margin-left:1200px;
 }

 .home23
 {
   margin-top:20px; 
   width:150px;
   margin-right:1200px;
 } 

 .home24
 {
    width:200px;
 }  

}
/* desktop css*/
 

/* laptop css */
 @media screen and (min-width: 480px)
 {

 .home1
 {

    margin-top:-60px;
 }

 .home22
 {
   margin-top:20px; 
    width:120px;
    height:50px;
    margin-left:400px;
 }

 .home23
 {
   margin-top:20px; 
   width:150px;
   margin-right:500px;
 } 

 .home24
 {
    width:200px;
 }  

}
/* desktop css */

/* mobile css */
 @media only screen and (max-width: 600px)
 {
.home2
 {

    display: none;

 }
 .home23
 {
    width:250px;
    margin-top: 20px;
    
 }
 .home24
 {
    width:200px;
    margin-top: 20px;
    margin-left:60px;
 }        

 }

 /* mobile css */