

.tablet-grid-6{
  grid-template-columns: repeat(6, 1fr); 
}

.tablet-grid-5{
  grid-template-columns: repeat(5, 1fr); 
}

.tablet-grid-4{
  grid-template-columns: repeat(4, 1fr); 
}

.tablet-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.tablet-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.tablet-grid-1 {
  grid-template-columns: repeat(1, 1fr);
}


.tablet-span-1 {
  grid-column: span 1;
}
.tablet-span-2 {
  grid-column: span 2;
}
.tablet-span-3 {
  grid-column: span 3;
}
.tablet-span-4 {
  grid-column: span 4;
}
.tablet-span-5 {
  grid-column: span 5;
}

.tablet-gone{ display:none; }

.content .main-content{
  width: calc(100% - 300px);
  padding-right: 30px; 
}


footer nav.contacts{
  display:flex;
  flex-wrap:wrap; 
  gap: 25px; 
}