body {
  margin: 0px 10px 50px 10px;
  padding: 0;
}

body {
  font-family: 'Times New Roman';
  font-size: 20px;
}



.header {
    display: grid;
    grid-template-columns: 10vw 10vw 15vw 10vw 50vw;
    grid-template-areas:
    "A B C D E";
    align-items: center;
    justify-items: center;
}

.box-header-1 {
    grid-area: A;
    place-items: center;
}

.box-header-2 {
    grid-area: B;
    place-items: center;
}

.box-header-3 {
  grid-area: C;
  place-items: center;
}

.box-header-4 {
    grid-area: D;
    align-self: center;
}

.box-header-5 {
  grid-area: E;
  align-self: center;
}



.logo {
  width: 10vw;
}

.name {
  font-size: 3vw;
  font-weight: 600;
  font-family: 'Times New Roman';
  color: #000000;
  text-decoration: none;
}

.menu-burger{
  overflow: hidden;
}

.active {
    color: #2cccc4 !important;
}

.menu-burger a {
    display: inline;
    color: #000000;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 2.5vw;
}

.menu-burger button {
  display: inline;
  border-color: white;
  border-radius: 50px;
  border: white solid;
  width: 13vw;
  height: 4vw;
  background-color: #FFD700;
  font-size: 2vw;
  font-weight: bold;
  cursor: pointer;
}

.menu-burger .icon {
    display: none;
    font-size: 30px;
}

.menu-burger a:hover {
    color: #f1c50e;
}



@media screen and (max-width: 600px) {
  .box-header-5 .menu-burger a {
    font-size: 7vw;
  }

  .box-header-5 .menu-burger button {
    width: 100px;
    height: 50px;
  }

  .box-header-2 .logo {
    width: 20vw;
  }

  .menu-burger.responsive a {
    float: none;
    display: block;
    text-align: left;
  }

  .menu-burger.responsive button {
    float: none;
    display: block;
  }

  .menu-burger a.icon {
    float: right;
    display: block;
    justify-self: end; 
  }

  .menu-burger button {
    display: none;
  }

  .menu-burger a {
    display: none;
  }
}

@media screen and (max-width: 940px) {
  .header {
    grid-template-columns:15vw 30vw 55vw;
    grid-template-areas:
    "B C E";
  }

  .logo {
    width: 15vw;
  }
  
  .name {
    font-size: 7vw;
  }

  .menu-burger a {
    font-size: 4vw;
  }

  .menu-burger button {
    font-size: 4vw;
    width: 20vw;
    height: 6vw;
    margin-top: 2vw;
  }
}



a {
  text-decoration: none;
}

.history-hide {
  cursor: pointer;
  width: 10vw;
  background-color: rgb(255, 255, 255);
  border: none;
}

.history-hide img {
  width: 10vw;
}

.btn-back {
  display: block;
  border-color: white;
  border-radius: 50px;
  border: white solid;
  width: 13vw;
  height: 4vw;
  background-color: #ff0000;
  font-size: 2vw;
  font-weight: bold;
  cursor: pointer;
  display: block;
  margin: auto;
  color: white;
}




.footer {
  position: static;
  bottom: 0;
  display: grid;
  grid-template-columns: 10vw 10vw 45vw 30vw;
  grid-template-areas:
  "A B C D";
  align-items: center;
  justify-items: center;
}

.box-footer-1 {
  grid-area: A;
  place-items: center;
}

.box-footer-2 {
  grid-area: B;
  place-items: center;
}

.box-footer-3 {
grid-area: C;
place-items: center;
}

.box-footer-4 {
  grid-area: D;
  align-self: center;
}



.question {
  text-align: center;
  color: #000000;
  font-size: 3.5vw;
}

.logo-email {
  display: none;
}

.logo-phone {
  display: none;
}

.logo-vk {
  width: 10vw;
}

.contacts {
  font-size: 2vw;
}

@media screen and (max-width: 600px) {
  .box-footer-2 .logo {
    width: 20vw;
  }

  .box-footer-4 .logo-vk {
    width: 15vw;

  }

  .box-footer-4 .logo-email {
    width: 15vw;
    display: inline;
  }

  .box-footer-4 .logo-phone {
    width: 15vw;
    display: inline;
  }

  .contacts {
    display: none;
  }

  html .footer {
    grid-template-columns:20vw 25vw 55vw;
    grid-template-areas:
    "B C D";
  }

}

