.wrapper {
  width: 100%;
  margin: 0 auto;
}

body {
  margin: 0 0;
  padding: 0 0;
}
.main_text{
    width: 90%;
    margin: 0 auto;
    grid-column: 1/3;

}
header {
  padding: 100px 0 100px 0;
  width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}
header h1 {
  grid-column: 1/3;
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  font-size: 40px;
}
header p {
  font-family: "Raleway", sans-serif;
}
header a {
  margin: 40px 0 0 0;
  width: 300px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid #822C2B;
  border-radius: 13px;
  text-decoration: none;
  transition: 0.5s;
}
header a p {
  color: #822C2B;
  text-decoration: none;
  letter-spacing: 2px;
  font-family: "Raleway", sans-serif;
  transition: 0.5s;
}
header a:hover {
  background: #822C2B;
  color: white;
  transition: 0.5s;
}
header a:hover p {
  color: white;
  transition: 0.5s;
}

main {
  margin: 0 auto;
  padding: 100px 0 100px 0;
  width: 1200px;
  color: white;
  text-align: center;
  display: grid;
  grid-gap: 30px;
}
main span {
  color: lightgrey;
  text-align: center;
  margin-top: 20px;
}
main h2 {
  font-family: "Raleway", sans-serif;
  font-size: 35px;
  padding: 0 0 10px 0;
  border-bottom: 3px solid white;
  text-align: left;
}

.wrapper2 {
  background: #822C2B;
}

.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;
}

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_info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.footer_info a {
  font-family: "Raleway", sans-serif;
  font-size: 28px;
  color: black;
  text-decoration: none;
}
.footer_info a:hover {
  text-decoration: underline;
}

@media (min-width: 700px) and (max-width: 1220px) {
  .wrapper {
    width: 100%;
  }
  header {
    width: 700px;
    grid-template-columns: 1fr;
  }
  header h1 {
    grid-column: 1/2;
    text-align: center;
  }
  header img {
    width: 600px;
    margin: 0 auto;
  }
  header .header_info {
    width: 600px;
    margin: 0 auto;
  }
  main {
    width: 700px;
  }
  footer {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .footer_info {
    text-align: center;
    padding: 10px;
  }
  .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: 699px) {
  .wrapper {
    width: 100%;
  }
  .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;
    top: 60px;
    transition: 1s;
  }
  header {
    width: 90%;
    margin: 0 auto;
    grid-template-columns: 1fr;
  }
  header h1 {
    grid-column: 1/2;
    text-align: center;
  }
  header img {
    width: 100%;
    margin: 0 auto;
  }
  header .header_info {
    width: 100%;
    margin: 0 auto;
    display: grid;
    justify-content: center;
  }
  header .header_info a {
    margin: 0 auto;
  }
  main {
    width: 90%;
    margin: 0 auto;
  }
  footer {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .footer_info {
    text-align: center;
    padding: 10px;
  }
  .footer_nav {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    padding: 0 0 20px 0;
    margin: 0 auto;
  }
}/*# sourceMappingURL=canada_pages.css.map */