#small {
 display: none;
}

#small1 {
 display: none;
}

#standart {
 display: none;
}

#standart1 {
 display: none;
}

#big {
 display: none;
}

@media screen and (max-width:400px) {
 #small {
  display: flex;
 }

 #small1 {
  display: none;
 }

 #standart {
  display: none;
 }

 #standart1 {
  display: none;
 }

 #big {
  display: none;
 }
}

@media screen and (min-width:401px) and (max-width:600px) {
 #small {
  display: none;
 }

 #small1 {
  display: flex;
 }

 #standart {
  display: none;
 }

 #standart1 {
  display: none;
 }

 #big {
  display: none;
 }
}

@media screen and (min-width:601px) and (max-width:800px) {
 #small {
  display: none;
 }

 #small1 {
  display: none;
 }

 #standart {
  display: flex;
 }

 #standart1 {
  display: none;
 }

 #big {
  display: none;
 }
}

@media screen and (min-width:801px) and (max-width:950px) {
 #small {
  display: none;
 }

 #small1 {
  display: none;
 }

 #standart {
  display: none;
 }

 #standart1 {
  display: flex;
 }

 #big {
  display: none;
 }
}

@media screen and (min-width:951px) {
 #small {
  display: none;
 }

 #small1 {
  display: none;
 }

 #standart {
  display: none;
 }

 #standart1 {
  display: none;
 }

 #big {
  display: flex;
 }
}