body {
  margin: 0 0;
  padding: 0 0;
}

img {
  margin: 0 auto;
}

h1 {
  text-align: center;
  font-family: "Raleway", sans-serif;
}

h2 {
  text-align: center;
  font-family: "Raleway", sans-serif;
}

.anotation {
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  font-size: 20px;
}

.virtual_button {
  width: 300px;
  height: 60px;
  font-family: "Raleway", sans-serif;
  border-radius: 15px;
  background: white;
  border: 5px solid #822C2B;
  color: #822C2B;
  font-weight: bold;
  font-size: 20px;
  transition: 0.5s;
}
.virtual_button:hover {
  background: #822C2B;
  color: #fff;
  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: "Raleway", sans-serif;
}
.nav a:nth-child(5) {
  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;
}

.burger_menu {
  display: none;
}

.wrapper {
  width: 1200px;
  margin: 0 auto;
}

footer {
  width: 1200px;
  padding: 100px 0 100px 0;
  margin-top: 200px;
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 100px;
  height: 100%;
  margin: 0 auto;
  justify-content: center;
}

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

footer {
  width: 100%;
  font-family: "Raleway", sans-serif;
  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: "Raleway", sans-serif;
  font-size: 28px;
}

@media (min-width: 750px) and (max-width: 1220px) {
  .wrapper {
    width: 100%;
  }
  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: 300px) and (max-width: 749px) {
  .wrapper {
    width: 90%;
    margin: 0 auto;
  }
  .virtual_button {
    margin: 0 auto;
  }
  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=canada_page5-12.css.map */