html {
    font-size: calc(17vw / 14.4);
    font-family: "TT Norms Pro", "Arial", sans-serif;
    line-height: 1.5;
}
.all{
  margin: 1% 35% 1% 1%;
  padding: 1% 1% 1% 15%;
}


.highlight>li{
  background-color:#a8b8c0;
  padding: 3%;
  width: 40%;
  font-size: calc(20vw / 14.4);
  border-radius: 10px;
}
.highlight>p{
  color:#000000;
}

body {
    width : 97%;
    height: 99%;
}

a {
    color: rgb(119, 77, 168);
}
p {
    padding-left: 50px;
    padding-top: 1px;
    padding-bottom: 1px;

    font-size: 100%;
    color:#576d8f;
  }
.pa{
  color:#000;
}

header {
    float: left;
    background-color:rgb(84, 101, 128);
    width: 100%;
    height: 0%;
    padding: 0px;
    margin: 0px;
}

#logo>a>span {
    color:#ffffff;
    font-size: 2em;
    font-style:unset;
}

.logo {
    float: right;
    width: 30%;

}
#logo>img {
  float: right;

}
div#content>img{
    float: right;
}

.all>table{
    padding: 3%;
    margin: 2% 2% 4% 2%;
    background-color: rgb(107, 186, 189);
    border-radius: 30px;
}

.all>td{
    padding: auto;
}

 div#two{
  margin: 1% 35% 1% 1%;
  padding: 1% 1% 1% 15%;
 }

table#three{
background-color: #f7fcff;
border-color: rgb(245, 245, 245);
padding: 3%;
margin: 2% 2% 4% 2%;
}
table>th{
  color: #6EC1E4;
}




 div#content{
    margin: 1% 35% 1% 1%;
    padding: 1% 1% 1% 15%;
 }


 .burger-checkbox {
  position: absolute;
  visibility: hidden;
}
.burger {
  position: relative;
  z-index: 1;
  cursor: pointer;
  display: block;
  position: relative;
  border: none;
  background: transparent;
  width: 40px;
  height: 26px;
}
.burger::before,
.burger::after {
  content: '';
  left: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 10px;
  background: #000;
}
.burger::before {
  top: 0;
  box-shadow: 0 11px 0 #000;
  transition: box-shadow .3s .15s, top .3s .15s, transform .3s;
}
.burger::after {
  bottom: 0;
  transition: bottom .3s .15s, transform .3s;
}
.burger-checkbox:checked + .burger::before {
  top: 11px;
  transform: rotate(45deg);
  box-shadow: 0 6px 0 rgba(0,0,0,0);
  transition: box-shadow .15s, top .3s, transform .3s .15s;
}
.burger-checkbox:checked + .burger::after {
  bottom: 11px;
  transform: rotate(-45deg);
  transition: bottom .3s, transform .3s .15s;
}
.menu-list {
  top: 0;
  left: 0;
  position: absolute;
  display: grid;
  gap: 12px;
  padding: 42px 0;
  margin: 0;
  background: rgb(187, 185, 181);
  list-style-type: none;
  transform: translateX(-100%);
  transition: .3s;
  width: 200px;
}
.menu-item {
  display: block;
  padding: 8px;
  color: white;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
}
.menu-item:hover {
  background: rgba(255,255,255,.2)
}
.burger-checkbox:checked ~ .menu-list {
  transform: translateX(0);
}

/* Для экранов шириной 480px и меньше (телефоны) */
@media (max-width: 481px) {
  .all{
    margin: 1em;
    padding: 1em;
    float: auto;
  }
  
html {
  font-size: calc(53vw / 14.4);
}
div#content{
  margin: 1em;
  padding: 1em;
  float: auto;
}

div#logo>img{
  width:23%;
}
img{
  width: 100%;
  height: 90%;
  float: auto;
}
.highlight>li{
  font-size: calc(52vw / 14.4);}
}

@media (min-width: 482px) and (max-width:1024px){
  .all{
    margin: 1em;
    padding: 1em;
    float: auto;
  }
  
html {
  font-size: calc(48vw / 14.4);
}
div#content{
  margin: 1em;
  padding: 1em;
  float: auto;
}

div#logo>img{
  width:10%;
}
img{
  width: 100%;
  height: 90%;
  float: auto;
}
.highlight>li{
  font-size: calc(30vw / 14.4);}
}