body 
{
    margin:0px;
    padding:0px;
    font-size:13px;
    text-align:justify;
    background-color:#000;  
    background-image: url(/bg.jpg);
    font:14px Helvetica,sans-serif;line-height:normal;
    background-repeat: no-repeat;
    background-size: 100%;
      background-attachment: fixed, fixed;   
}

/* ===== ПЛИТА: максимум 4 колонки, адаптив, без «чёрных полублоков» ===== */
.plita {
  column-count: 4;
  column-gap: 15px;
  padding: 15px;
  line-height: 0;
  overflow: visible;
}

.plita .boxx {
  display: inline-block;
  width: 100% !important;     /* перекрыть ширины темы */
  margin: 0 0 15px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  page-break-inside: avoid;
  contain: paint;
}

/* Карта: без тёмного фона, мягкий hover (без transform) */
.plita .boxx > a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: transparent;     /* вместо #0f0f0f */
  box-shadow: 0 6px 14px rgba(0,0,0,0.14);
  transition: box-shadow .18s ease, filter .18s ease;
}
.plita .boxx:hover { z-index: 3; }
.plita .boxx > a:hover {
  transform: none !important;
  filter: brightness(1.03) contrast(1.02);
  box-shadow: 0 12px 26px rgba(0,0,0,0.22);
}
.plita .boxx > a:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(255,122,0,0.55),
    0 10px 24px rgba(0,0,0,0.28);
}

/* Изображение: заполняет ширину, высота — по содержимому */
.plita .boxx img {
  display: block;
  width: 100%;
  height: auto !important;     /* перекрыть фикс. высоты темы */
  object-fit: cover;
  background-color: #fff;      /* чтобы прозрачные PNG/WebP не давали тёмный фон */
  backface-visibility: hidden;
}

/* Внутренний контейнер: убираем min-height темы */
.plita .short {
  min-height: 0 !important;    /* перекрывает .short { min-height:200px } */
  line-height: 0;
  padding: 0;
  display: block;
}

/* Заголовок под картинкой: базовый (моб. — всегда виден) */
.plita .boxx .hed {
  background: #fff;
  color: #1f1f1f;
  font-weight: 800;
  line-height: 1.3;
  padding: 10px 12px;
  margin: 0;
  border-top: 1px solid #f0f0f0;
  font-size: clamp(13px, 1.6vw, 16px);
  text-wrap: balance;

  display: -webkit-box;
  -webkit-line-clamp: 3;       /* до 3 строк */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ПК: показывать заголовок только при наведении, меньше шрифт и прозрачность 0.8 */
@media (hover:hover) and (pointer:fine) {
  .plita .boxx .hed {
    font-size: clamp(12px, 1.2vw, 14px);
    opacity: 0;                /* скрыт по умолчанию */
    max-height: 0;
    padding: 0 12px;
    border-top: 0;
    visibility: hidden;
    transition:
      opacity .18s ease,
      max-height .18s ease,
      padding .18s ease,
      border-top-color .18s ease;
  }
  .plita .boxx > a:hover .hed,
  .plita .boxx > a:focus-visible .hed {
    opacity: .8;               /* прозрачность блока с текстом */
    max-height: 120px;         /* ~3 строки */
    padding: 8px 12px 10px;
    border-top: 1px solid #f0f0f0;
    visibility: visible;
  }
}

/* Тёмная тема */
@media (prefers-color-scheme: dark) {
  .plita .boxx > a {
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  }
  .plita .boxx .hed {
    background: #1f1f1f;
    color: #f2f2f2;
    border-top-color: #2a2a2a;
  }
}

/* Адаптив: 4 → 3 → 2 → 1 колонки */
@media (max-width: 1366px) { .plita { column-count: 3; } }
@media (max-width: 1024px) { .plita { column-count: 2; } }
@media (max-width: 560px)  { .plita { column-count: 1; } }

/* Жёстко перекрываем старые ширины .boxx из темы */
@media (max-width: 1280px),
(max-width: 1024px),
(max-width: 430px) {
  .plita .boxx { width: 100% !important; }
}

/* Меньше анимаций */
@media (prefers-reduced-motion: reduce) {
  .plita .boxx > a { transition: none; }
}

.ensite {margin:10px; float:right;}
.pisiis {position:absolute; right:0; top:60px;}
.pisun {padding:15px; float:left; font-weight:bold; background-color:#ff4200; color:#fff; border-left: 1px dotted #fff;padding:16px;}
.mask {margin-top:20px; }
.mask  span {margin: 0 10px;}
.title {position:relative; float:left; width:100%;}

.full {
     width:57%; 
    float:left;
  --accent: #ff7a00;
  --accent-700: #e26600;
  --accent-100: #fff4e8;
  --text: #1f1f1f;
  --muted: #5a5a5a;
  --radius: 14px;

  color: var(--text);
  font: 400 16px/1.75 system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: #fff;
  border: 1px solid #ffe1cc;
  border-radius: var(--radius);
  padding: 1%;
  margin: 24px auto;
  box-shadow: 0 10px 28px rgba(255, 122, 0, 0.09);
}


.full h1 {
  line-height: 1.15;     /* было больше из-за базового line-height контейнера */
  margin-top: 0;
  margin-bottom: 12px;
    color:#000;  
}

/* Чуть свободнее на узких экранах, чтобы не слипалось */
@media (max-width: 560px) {
  .full h1 { line-height: 1.2; }
}

.full h2 {
  margin: 0 0 14px;
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--accent);
  text-wrap: balance;
    text-align:left;
}
.full span h2
{font-size:14px; color:#000; margin:0;
}
/* Абзацы */
.full p {
  margin: 0 0 12px;
  color: var(--text);
}
.full p + p { margin-top: 6px; }
.full strong { color: var(--accent-700); font-weight: 700; }
.full em { color: var(--muted); }

/* Ссылки */
.full a {
  color: var(--accent-700);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}
.full a:hover { color: var(--accent); }

/* Разделители */
.full hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ffd1ad, transparent);
  margin: 18px 0 14px;
}

/* Нумерованные списки с аккуратными метками */
.full ol {
  list-style: none;
  counter-reset: item;
  padding: 0;
  margin: 14px 0 6px;
  display: grid;
  gap: 10px;
}
.full ol li {
  position: relative;
  counter-increment: item;
  background: var(--accent-100);
  border: 1px solid #ffd7b3;
  border-radius: 12px;
  padding: 12px 12px 12px 52px;
  color: var(--text);
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}
.full ol li:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(255, 122, 0, 0.12);
}
.full ol li::before {
  content: counter(item);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(226, 102, 0, 0.45);
}

/* Вложенные списки (чуть легче) */
.full ol ol {
  margin-top: 8px;
  gap: 8px;
}
.full ol ol li {
  background: #fffaf3;
  border-color: #ffe4c7;
}
.full ol ol li::before {
  background: #ffa24d;
}

/* Адаптивность */
@media (max-width: 560px) {
  .full { padding: 18px 16px 16px; border-radius: 12px; }
  .full h2 { font-size: clamp(20px, 5.6vw, 26px); }
  .full ol li { padding-left: 48px; }
  .full ol li::before { left: 10px; width: 26px; height: 26px; font-size: 13px; }
}

/* Тёмная тема */
@media (prefers-color-scheme: dark) {
  .full {
    --text: #f2f2f2;
    --muted: #c7c7c7;
    --accent-100: #35210d;
    background: #171717;
    border-color: #3a2817;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  }
  .full hr {
    background: linear-gradient(90deg, transparent, #5a3a1f, transparent);
  }
  .full ol li {
    border-color: #50361f;
  }
}
.bodys {
    position: relative;
    column-count: 2;
  column-gap: 15px;
  padding: 15px;
  line-height: 0;
}
.bodys p {display:block;}
.bodys img
{
  border-radius: 12px;
}
.fimg {
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
  break-inside: avoid;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  line-height: 0;
   position:relative;
}

.fimg span
{
    display: none;
    position:absolute;
    bottom:15px;
    left:5px;
    background-color:#fff;
    opacity:0.8;
    border-radius:10px;
    padding:8px 12px;
}

.fimg:hover span {
  display: block; /* Показываем span при наведении */
}

.finger {position:absolute; top:5px; right:5px; color:#f2f2f2; font-size:16px!important; }
.bodys h2 {display:inline; font-size:14px !important;}


    @media screen and (max-width: 1024px)
    {
        .fimg span {display:block;}
        .title {padding-top:60px;}
       .bodys > div { grid-template-columns: 1fr;gap:5px;} 
         .fimg {width: 100%;height: auto; color:#0066cc;}
        .fimg img { min-width: 100% !important;  object-fit: cover;  height: auto!important;}
        .pisiis {width:100%; background-color:#ff4200; top:0;}
       
}
  

.short {min-height:200px;}
.gran
{
    margin: 0 auto;
    position: relative;
    width: 80%;
      
}
.bg {float:left;  margin-top:100px; margin-left: -1px; width:100%; min-height:1000px;  }
.head
{ 
    float:left;
    height:100px;
  background-color:#1c1c1c;

}
.head, .pg {  float:left; width:100%;  border-left:1px solid #ffaeae; width: 100%;    border-right:1px solid #ffaeae; box-shadow: 0 0 10px rgba(0,0,0,0.5);}
.pg {margin-top:35px; background-color:#fff;}

.static {background-color:#333; float:left; padding:2%; width:96%;}
.headm ul
{
    margin:0;padding:0;   float:left; margin-left:10%;

}

.logos, .logosm
{
    margin-left:2%;
    float:left;   
    margin-top:20px;
    font-size:22px;
    color:#fff;
    padding-top:10px;
}
.topchik {text-align:center; margin-top:10px;}
.topchik img {border:5px solid #ff4200; border-radius:10px; width:calc(100% - 10px);}
.logos { cursor:pointer;   }

.headm ul li
{
    list-style-type: none;
    text-transform: uppercase;
    float:left;
    padding:0px 0px 0px 20px;
    color:#fff;
    font-size:16px;
}
.horizontal { width:100%;   background-color: #ff4200; height:10px; float:left;}
.active
{
    border-bottom:solid 4px #e42755; 
    background-color: rgb(255,255,255,0.1);
}
.headm a, .menblock a
{
    color:#fff;   
}

.headm a:hover
{
    color:#da2b59;   
}

.menblock a
{
    width:96%;
    display:block;
    float:left;
    padding:1%;  
    font-size:15px; 

}

.menblock a:hover
{

    background: rgb(221, 6, 87,0.4);  
}

.menblock
{
    width:16.5%;  
    float:left;

}

.mit
{
    float:left;
    width:100%;
}


a
{
    letter-spacing: -1px;   text-decoration:none;  
    font-size:16px;
}

.mainmenu
{
    margin-top:5px;
    background-color:#333;
    padding:2%;
    float:left;
    color:#fff;
    text-transform: uppercase;
    font-size:18px;
    margin:0 auto;  

}



.pcol
{

 
    float:left;
    width:100%;
}


.catblok h2
{
    margin:20px;
    color:#000;
    font-size:26px;
    width:100%;
    float:left;

}

.catm
{
    color:#da2b59;
    font-size:20px;
    float:right;
    width:96%;
    background:#333;
    display:block;
    text-align:center;
    margin:2%;
    padding:1%;


}
.pgl
{
    float:left;
    width:20%; 


}

.cpr
{
    color:#fff;
    float:left;
    text-align:center;   
    width:100%;
    background-color:#040507;
}


.rsort
{
    float:right; 
    width:50%;
    text-align:right;
}
.zagl
{
    background:#354746;
    height:40px;
    padding-top:10px;
    padding-bottom:10px;
    text-align:center;
    width:100%;
}



.zagl a
{
    color:#fff; 
    font-weight:bold;
    font-size:26px;
}

.nav  
{
    margin-left:-10px;

    background:#da2b59;  
    color:#fff;
    height:30px;
    font-weight:bold;
    font-size:14px;
    padding-top:20px;
    padding-bottom:10px;
    padding-left:25px;
    text-transform:uppercase;
    margin-bottom:10px;
    margin-left:0px;
}


.nav a
{
    color:#fff;   
    display:inline ;
}



.cato
{   
    padding:1% 1% 1% 1%;

    background:#dddddd;
    float:left;
    width:98%;

}



.cato img
{
    margin:10px;   
    border:solid 1px #da2b59;   
    float:left;
    border-radius:10px;

}

.cato ul
{
    list-style-type:square; 
    color:#910222;  
}

.cato h1
{
    color:#000;   
}

h1 , h2 , h3
{

    margin-top:0px;
    margin-bottom:0px;

}

h1
{
    font-size:30px;   
    color:#fff;  
    display:blockl
        float:left;
}

h2
{
    font-size:16px; 

}

a {color:#494949; }

.boxx
{

    width:16.6%;
    display:block; 
    float:left;
    background-color:#FFF; 
    margin-bottom:10px; 
}

.boxx a
{
    display:block;
    padding:3%;

}

.boxx2
{
    width:100%;
    float:left;
}

.boxx img
{
    width:100%;   
}

.short
{
    position:relative;  
    width:100%;
    float:left;


}

.short img
{
    width:100%;   
    border-radius:10px;
}


.boxx:hover
{
    background-color:#ededed;  
    transition: 0.3s linear;

}


.shortvideo
{
    width:100%;
    position:relative  
}



.hed 
{
 background-color:#040507;
    opacity:0.9;
    position:absolute;
    bottom:30px;
    text-align:center;
    font-size:15px;
width:98%;
    padding:1%;
    vertical-align: middle;
    font-weight:bold;
}
.boxx a
{color:#fff;
}
.hed2
{
    margin-top:20px;
    text-align:center;
    font-size:18px;
    padding:8px;
    height:20px;
    overflow:hidden;
    background:#354746;
    color:#fff;
    opacity:0.8;
}

.opisis
{
    padding:20px;
    font-size:12px;
}

.zakl
{
    margin-top:-20px;

    float:right;   
    padding-right:20px;
    padding-left:20px;

}
.title h1
{

    margin-left:20px;
    text-align:left;
    margin-bottom:-10px;
}

.body
{

    padding:10px;

}

.body img
{
    margin-top:10px;
    border:1px solid #da2b59;
    width:100%;
}

.body h2
{
    text-align:center;   
}



.relleft
{
    width:20%; 
    float:left;
    overflow:hidden; 
}

.rellright
{
    width:20%; 
    float:right; 
    overflow:hidden;   
}
.opisanie img {float:right; margin-left:10px;border-radius:150px; border:8px solid #ff99b4;}
.opisanie
{
    float:left;
    width:95%;
    padding:2%;
    background-color:#fff;
}

.opisanie h1
{
    color:#333;    
}

.mini_opisanie
{
    margin-top:10px;
    font-size:12px;   
}

.shct
{
    padding-bottom:5px;   

}


.shct a
{
    font-weight:bold;
    color:#910222;  
}


/* Навигация  */

.navi
{
    text-align:center;
    width:100%;
    float:left;
    padding-bottom:20px;
    margin-top:10px;
}
.navi span,.navi a
{
    border:solid 1px #ff4475;
    padding:10px;
    background-color:#ff6934;
    color:#ffffff;
    font-weight:bold;
    text-decoration:none;
    float:left;
    margin:2px; 
}

.navi a:hover
{
    background:#ff4200;   
}

.navi span
{
    background-color:#ff4200;     
}

#go-top {
    display:block;
    width:77px;
    height:77px;
    position:fixed;
    left:400px;

    bottom:100px;
    background:url(/uploads/posts/2014-06/1401943728_go-top.png) no-repeat 0 0;
    cursor:pointer;
    opacity:0.8;
}
#go-top:hover {
    opacity:1;
}

.catsfull a
{
    background:#000;
    color:#fff;
    padding:10px;
    border-radius:3px;  
    float:left;
    margin:5px;
}

.catsfull a:hover
{
    background:#333;    
}

.comments
{
    padding:2%;
    width:96%;
    float:left;
    font-size:16px; 
    overflow:hidden; 
}

.bcom
{
    background-color:#ffffff; 
    width:90%;
    border-radius:10px;
    margin-top:20px;
    margin-bottom:20px;
    padding:50px;  
    float:left;
}

.autor
{
    font-weight:bold;  
    font-size:14px;
}

.baseform
{
    width:100%;
    float:left;  
    margin-bottom:20px;
}


.relphoto
{
    float:left;  
    margin-left:15px;
    width:200px;
}

.relphoto img
{
    border:1px solid #da2b59; 
    border-radius:3px;
}
.reltitle
{
    height:40px;
    text-align:center;
}

.sform
{
    float:right;   
}

.saml
{
    float:left;   
    width:100%;
}

.asdwew
{

    bottom:0px;
    background-color:#e74d3c; 
    float:left;  
    padding:5px;
    border-radius:3px;
    color:#fff;
}

.asdwew a
{
    color:#fff;
}

.shtext
{
    float:left;  
    height:100px;
    font-size:12px;
}



.baseform
{
    width:100%;
    float:left;  
    margin-bottom:20px;
    font-weight:bold;
    color:#696969;
}

.baseform  span
{
    display:block;
    margin-top:20px;
    margin-bottom:5px;
}

.fbutton
{
    padding:8px; 
    font-size:16px;   
    color:#333;
}


textarea, .f_wide, .textin
{
    display:block;
    width:100%;

    padding:6px 12px;
    font-size:14px;
    color:#555;
    vertical-align:middle;
    background-color:#fff;
    border:1px solid #ccc;
    border-radius:4px;
    -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);
    -webkit-transition:border-color ease-in-out .15s,
        box-shadow ease-in-out .15s;
    transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

input:focus, textarea:focus, .textin:focus
{
    border-color:#66afe9;
    outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,0.6);
    box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,0.6)
}

.ssr
{
    font-size:16px;
    font-weight:bold;
    float:left;
    width:100%;
    padding:10px;
}

.d18
{
    width:110px;
    float:right;


    margin-right:-180px;
    height:60px;
    background:url(/uploads/posts/2017-03/1489143917_18.png) no-repeat;
    float:right;
    padding-left:60px;
}

.shopisikar
{ position:absolute;
    bottom:50px;width:80%;z-index:100500;background:#fff;font-size:12px;padding:5%;display:none;color:#000;
}

.shortime
{
    position:absolute;  top:10px;z-index:100501;background: url(/time.png) no-repeat #000; background-position:5px 10px;  color:#fff; font-size:12px;padding:3%; padding-left:20px; opacity:0.7;width:30px;
}


.minimi{height:130px;font-size:12px;}
.votes{width:21px; color:#fff;position:absolute; z-index:1005200;bottom:15px;margin-left:10px;padding:1%;font-size:15px;background:#000; opacity:0.6;text-align:center}.votes2{  clear:both; color:#fff;padding:8px;font-size:25px;background:#ff4200;text-align:center;float:left}.votes2 a {font-size:25px;} .votes a,.votes2 a{font-weight:bold;color:#fff;text-decoration:none}.votes a:hover,.votes2 a:hover{color:#d68c78}
.vidosik {
    position:absolute;
    width:35px;
    height:36px;
    top:35%;
    left:45%;
    z-index:100600;
    background: url(/play.png) no-repeat rgba(173, 57, 22, 0.5);
    border-radius:50px;  
}

.boxx:hover .vidosik {display:none;}

.podborka {text-align:center;
}

.podborka img
{
    width:100%;   
}



.menu{display:block;
}

.menu div
{
    margin-left:-40px;
}

.menu li{
    float:left;
    width:24%;
 display: inline; /* Отображать как строчный элемент */
    margin-right: 5px; /* Отступ слева */

}

.menu li:first-child{margin-left:0;}

.menu li a {
    text-decoration:none;
    padding:10px;
    margin-left:-30px;
    display:block;
    color:#333;
    width:100%;

    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    -ms-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}

.menu li a:hover, .menu li:hover > a{color:#ffffff;
    background:#f9c885;
}

.menu ul {display: none;
    margin: 0;
    padding: 0;
    width: 100%;
    position: absolute;
    top: 43px;
    left: 0px;
    background: #ffffff;
}

.menu ul li {display:block;
    float: none;
    background:none;
    margin:0;
    padding:0;
}
.menu ul li a {font-size:12px;
    font-weight:normal;
    display:block;
    color:#797979;
    border-left:3px solid #ffffff;
    background:#ffffff;}

.menu ul li a:hover, .menu ul li:hover > a{
    background:#f0f0f0;
    border-left:3px solid #9CA3DA;
    color:#797979;
}


.mobile-menu{display:none;
    float:left;
    width:98%;
    background:#ea9e0c;
    color:#ffffff;

    padding:2%;
    text-transform:uppercase;
    font-weight:600;
}
.mobile-menu:hover{background:#f9c885;
    color:#ffffff;
    text-decoration:none;
}


.ratingtypeplusminus 
{
    color:#fff;   
}


.drop-down
{
    height:50px;
    width:50px;
    cursor: pointer;
    float:left;
    opacity:0.5;
    margin-top:20px;
    margin-left:10px;
     border: 1px solid #ff4200;
    font-size:35px;
    padding:12px 0 0 15px;
    color:#ff4200;
}


.demo .drop-menu-main-sub {
    display: none;
    position: absolute;
    background: #ff4200;
    z-index: 10000000;
    width: 96%;
    padding: 5px 0 5px;
    margin-left:2%;
    border: 1px solid #fff;

}

.demo .drop-menu-main-sub a {
    color: #fff;
    display: block;
    font-size: 14px;
    padding: 6px 15px;
    cursor: pointer;
    text-decoration: none;
    min-width:200px;
    float:left;
    width:15%;

}

.demo .drop-menu-main-sub a:hover {
    background: #000;
    color: #FFFFFF;
    text-decoration: none;
    border-left:3px solid #f2f2f2;
    margin-right:-3px;
}

.demo .drop-down {
    cursor: pointer;
}

.drop-down:hover{opacity:1; }



@media (max-width: 1366px)
{
    .pg
    {
        width:100%;  
    }     
}

@media (max-width: 1280px)
{  .boxx {width:25%}
    .gran {width:100%;}

    .rsort
    {
        display:none;     
    }

    .mainmenu
    {
        display:none;    
    } 
 

    .relleft
    {
        display:none;   
    }
    .full
    {
        width:80%;   
    }

    .nav
    {
        display:none;   
    }


.headm ul li {

    padding: 0px 0px 0px 20px;
    }
 
    nav{margin:0;
        background:none;

    }



}

@media (max-width: 1024px)
{
    .bg{margin-top:0px;}
    .rellright
    {
        display:none;   
    }
    .catsfull a
    {
        font-size:22px;    
    }

    .logos
    {
        display:none;   
    }

 .boxx  
    {
        width:50%;   
    }
.menu li
    {
        width:50%;   
    }
    .menblock
    {
        width:50%;   
        text-align:center;
    }

    .full
    {
        width:95%;   
    }  

}

@media (max-width: 430px)
{
    .boxx {width:100%;}
    .fimg span {bottom:5px;}
    .bodys  {column-count:1;}
    body { background-image: none;}
    .opisanie p,.opisanie h2,.opisanie img {display:none;}
    .opisanie h1 {text-align:left;}
   .demo .drop-menu-main-sub
    {
        left:75px; 
    }
    .votes
    {
        display:none;    
    }

    .menblock
    {
        width:100%;   
    }
   

    .cato p, .cato img, .cato h2, .cato h3
    {
        display:none;   
    }

    .cato h1
    {
        font-size:18px; 
        text-align:center;
        width:100%;
    }
}

