body {
  padding: 0 0;
  margin: 0 0;
  font-family: "Roboto", sans-serif;
}

.wrapper {
  width: 1200px;
  margin: 0 auto;
  display: grid;
  justify-content: center;
  grid-gap: 10px;
  font-family: "Roboto", sans-serif;
}
.wrapper p {
  margin: 0 0;
  padding: 0 0;
}
.white_table{
  
  background: white;
}
.borderNone{
  border: none;
  border-right: 1px solid black;
  border-left: 1px solid black;
  margin: 0 0;
}
.wrapper h1 {
  text-align: center;
}
.wrapper iframe {
  margin: 0 auto;
}
.academ_img{
  width: 80%;
  margin: 0 auto;
}
.burger_menu {
  display: none;
}

table {
  background: black;
  margin: 20px 0 0 0;
  margin: 0 0 30px 0;
}
table tr:nth-child(1) {
  background: #000;
  font-weight: bold;
}
table td {
  background: white;
  padding: 10px;
}

.table_nav {
  width: 90%;
  height: 40px;
  border: 4px solid #822C2B;
  border-radius: 15px;
  display: none;
  justify-content: center;
  align-items: center;
  color: #822C2B;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  letter-spacing: 4px;
  transition: 0.5s;
}
.table_nav:hover {
  background: #822C2B;
  color: white;
  transition: 0.5s;
}

.nav {
  width: 100%;
  background: #822C2B;
  height: 60px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: end;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  left: 0px;
  z-index: 40;
}
.nav a {
  color: white;
  background: #822C2B;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 20px;
  font-size: 30px;
  font-family: "Roboto", sans-serif;
}
.nav a:nth-child(3) {
  background: white;
  color: #822C2B;
  padding: 0 20px;
}
.nav a:nth-child(1) {
  color: lightgrey;
  background: white;
  color: #822C2B;
  transition: 0.3s;
}
.nav a:nth-child(2):hover {
  color: lightgrey;
  background: white;
  color: #822C2B;
  transition: 0.3s;
}

.page1_table__with_img {
  display: grid;
  grid-gap: 10px;
}

.table_img {
  margin: 0 auto;
}

footer {
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 100px;
  height: 100%;
  margin: 40px 0 0 0;
  padding: 30px 0;
  justify-content: center;
  background: #822C2B;
}

.footer_nav {
  display: grid;
  grid-template-columns: repeat(2, 110px);
  grid-gap: 20px;
}

.footer_info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
}
.footer_info p {
  font-family: "Roboto", sans-serif;
  font-size: 28px;
}

@media (min-width: 911px) and (max-width: 1200px) {
  .wrapper {
    width: 900px;
  }
  footer {
    grid-template-columns: 1fr;
  }
  .footer_info {
    text-align: center;
  }
  .footer_nav {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    padding: 0 0 20px 0;
    margin: 0 auto;
  }
}
@media (min-width: 632px) and (max-width: 910px) {
  .wrapper {
    width: 600px;
  }
  footer {
    grid-template-columns: 1fr;
  }
  .footer_info {
    text-align: center;
  }
  .footer_nav {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    padding: 0 0 20px 0;
    margin: 0 auto;
  }
}
@media (min-width: 100px) and (max-width: 631px) {
  table {
    display: none;
  }
  .table_img:nth-child(3) {
    display: none;
  }
  .table_nav {
    display: flex;
    margin: 0 auto;
  }
  .table_img:nth-child(4) {
    display: none;
  }
  .wrapper {
    width: 300px;
  }
  footer {
    grid-template-columns: 1fr;
  }
  .footer_info {
    text-align: center;
  }
  .footer_nav {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    padding: 0 0 20px 0;
    margin: 0 auto;
  }
  .burger_menu {
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    background: #822C2B;
    justify-content: end;
    overflow: hidden;
    position: -webkit-sticky;
    position: sticky;
    z-index: 10;
    border-bottom: 2px solid white;
  }
  .burger_menu img {
    margin: 10px 10px;
  }
  .nav {
    display: none;
    width: 100%;
    background: #822C2B;
    grid-template-columns: 1fr;
    height: 500px;
    align-items: flex-start;
    grid-template-rows: 80px 80px;
    grid-gap: 0px;
    position: fixed;
    top: 60px;
    transition: 1s;
  }
}/*# sourceMappingURL=page.css.map */