*, ::after, ::before{
    -webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#header{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    background: transparent;
    height: auto;
    box-shadow: none;
    position: relative;
}
#header:before{
    content: "";
    background: grey;
    box-shadow: #333 0 0 15px;
    width: 100%;
    height: 95px;
    position: absolute;
    top: 5px;
    z-index: -1;
}
#header #logo{
    width: 200px;
}
#header #logo_t{
    padding-top: 0;
    width: calc(100% - 210px);
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#header #bottoms{
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: 0;
    background: #5b5b5b;
    box-shadow: #333 0 0 15px;
    border-radius: 5px;
    overflow: hidden;
}
#header #bottoms > div {
    width: 30%;
    height: 44px;
    min-height: auto;
    margin: 0;
    float: none;
    padding: 5px;
    background: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
}
#header #bottoms > div:hover{
    background: #808080;
}
#header #bottoms > div .c3{
    margin: 0;
    font-size: 14px;
    line-height: 1;
}
#header #bottoms > div:hover .c3{
    color: #fff;
}
#header #bottoms > div .c3 .c5{
    text-decoration: none;
}
#wrapper{
    margin-top: 0px;
}
#wrapper #leftWall{
    margin-top: 0px;
}
#wrapper #leftWall .add, #wrapper #leftWall #pright{
    display: none;
}

#wrapper #body{
    padding: 10px;
}
#wrapper #body .left{
    width: 100%;
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
}
#wrapper #body .left br{
    display: none;
}
#wrapper #body .left #alf{
    width: 100%;
}
#wrapper #body .left #list{
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
#wrapper #body .left #list > div {
    width: 50%;
}
#wrapper #body .left #list > div ul{
    list-style: none;
    padding: 0;
}
#footer{
    padding: 10px;
    margin-top: 0;
}
#footer .c1{
    display: none;
}
#footer p{
    font-size: 14px;
    display: block;
    text-align: center;
    max-width: 1050px;
    margin: 0 auto 10px;
}
#footer p a{
    font-size: 14px;
}

#content, #header, #wrapper, #footer, #wrapper #body{
    min-width: auto;
    width: 100%;
    max-width: 1250px;
}


.navbar {
    padding: 15px;
    background: #f0f0f0;
    display: none;
}
.burger-btn {
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}
.burger-btn span {
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 5px;
    background: #333;
    transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger-btn.active span:nth-child(2) {
  opacity: 0;
}
.burger-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
body{
    min-width: 320px;
}
#logo_t nav.navbar + * {
  display: none; /* Скрывает текст после nav */
}
#logo_t {
  font-size: 0; /* Скрываем весь текст */
}

#logo_t h2,
#logo_t nav {
  font-size: 16pt; /* Возвращаем размер шрифта нужным элементам */
}
#leftWall{
    float: none;
}
@media (max-width: 992px){
   .navbar{
        display: block;
   } 
   #header #bottoms{
       display: none;
   }
   #header #bottoms.active{
        display: flex;
        position: fixed;
        top: 120px;
        left: auto;
        right: 5px;
        bottom: 0;
        width: 290px;
        flex-direction: column;
        padding: 5px;
   }
   #header #bottoms.active > div{
        width: 100%;
   }
}
@media (max-width: 550px){
    #wrapper #body .left #list{
        flex-wrap: wrap;
    }
    #wrapper #body .left #list > div{
        width: 100%;
    }
    #header #logo_t{
        justify-content: flex-end;
    }
    #header #logo_t h2.c1{
        display: none;
    }
    #wrapper #body .left{
        padding: 0 10px;
    }
    .left h1{
        font-size: 22px;
    }
}




















