html {
  font-size: 16px;
-webkit-text-size-adjust: 100%;
text-size-adjust: 100%;
}

body {
    font-size: 1rem;
    line-height: 1.6;
    background: #ffffff;
    color:#000;
    font-family: Verdana, Tahoma, Arial, sans-serif;

    padding: 0.75rem;
    padding-top: 4rem;
    margin: 0 0;
    margin-left: 0.2rem;
	margin-top: 0px;
	margin-right: 0.2rem;
	margin-bottom: 0px;

}




/* ============================
   Горизонтальная шапка
============================ */

.logo img {
  height: 3rem;
  width: auto;
  display: block;

}

.mobile-title {
  font-size: 0.9rem; 
  font-weight: 600;
  line-height: 1.1;
  color: #333;
  white-space: nowrap;
overflow: hidden ;
text-overflow:ellipsis;
}


.left-block {
    display: flex;
    align-items: center;
    gap: 0.7rem; /* расстояние между логотипом и текстом */
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.5rem; 
min-height: 3.5rem; 
max-height: 3.5rem; 
  background: white;
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 1.25rem;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}


/*БУРГЕР*/

#menu__toggle {
    position: fixed;
  top: -9999px;
  right: -9999px;
}

#menu__toggle:checked ~ .menu__btn > span {
  transform: translatex(-50%) rotate(45deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: translatex(-50%) rotate(0);
}
#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: translatex(-50%) rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  right: 0;
}

.menu__btn {
  display: flex;
  align-items: center;
  position: fixed;
  background: #fff;
  top: 0.1rem;
  right: 0.5rem;
  width: 3.1rem;
  height: 3.1rem;
  cursor: pointer;
  z-index: 1;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
width: 2.5rem;
  height: 0.25rem;

left: 50%;
  background-color: #616161;
transform: translatex(-50%);
  transition-duration: .25s;
transform-origin: center;
}
.menu__btn > span::before {
  content: '';
  top: -1rem;
}
.menu__btn > span::after {
  content: '';
  top: 1rem;
}

.menu__box {
  display: block;
  position: fixed;
  visibility: hidden;
  
  right: -100%;

  width: 100%;
  
top: 3.5rem;
  height: calc(100% - 3.5rem);
  margin: 0;
  padding: 3rem 0;

  list-style: none;

  background-color: white;
  box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);

  transition-duration: .25s;

  overflow-y: auto;                 /* в†ђ Р’РђР–РќРћ */
  -webkit-overflow-scrolling: touch;/* в†ђ РґР»СЏ РјРѕР±РёР»СЊРЅС‹С… */
}


.menu__item {
  display: block;
  color: #333;
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
  padding: 0.2rem 2.5rem; /* вверх слева*/
  font-size: 1.5rem; 
  font-weight: 600;
  transition-duration: .25s;
}

.menu__item_small {
display: block;
  color: #333;
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
  padding: 0.2rem 2.7rem; /* вверх слева*/
  font-size: 1rem; 
  font-weight: 400;
transition-duration: .25s;
opacity: 0.7;
padding-top: 1rem;
}

.menu__item img{
 width: 1.5rem;
}

.menu__item_small img{
 width: 1rem;
}


.menu__item:hover {
  background-color: #CFD8DC;
}




.footer {
  font-size: 0.875rem; /* 14px */
  margin-top: 3rem;
line-height: 1.2;
 font-family: Verdana, Tahoma, Arial, sans-serif;
   

}




/* ============================
   БЛОКИ — оставляем старые цвета,
   но делаем мягче
============================ */
.blocktitle {
background: #e1e1fa;
    border-bottom: 2px solid red;
    color: #000; 
  vertical-align: top; 
  font-size: 1.2rem; 
  font-weight: bold;
  padding: 0.75rem;
  margin-top: 1.25rem;
}


.blocktext {
  font-size: 1rem; 
  padding: 0.75rem;

  border-radius: 0.375rem;
background: #ededfa;

}

.blocktitle img {
  height: 1rem; 
  width: auto;
}