html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  width: 100%;
}


body {
  font-family: canada-type-gibson, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  font-weight: 300;
}

h1, h2, h3, h4 {
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.3;
}

h1 { font-size: 38px; line-height: 1.2; }
h2 { font-size: 26px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }

@media (min-width: 768px) {
  h1 { font-size: 32px; line-height: 1.1; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  h4 { font-size: 16px; }
}

@media (min-width: 1025px) {
  h1 { font-size: 50px; }
  h2 { font-size: 40px; }
  h3 { font-size: 30px; }
  h4 { font-size: 20px; }
}

p {
  line-height: 1.4;
  margin-bottom: 1em;
}

a, a:visited {
  color: #4361ee;
}

strong {
  font-weight: 600;
}

#main-nav {
  box-sizing: border-box;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: padding 0.3s;
}
@media (min-width: 1024px) {
}
#main-nav {
  background: #ffffff;
  box-sizing: border-box;
  width: 100%;
  padding: 15px 30px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: padding 0.3s;
}
@media (min-width: 1024px) {
  #main-nav {
    padding: 15px;
  }
}
#main-nav.active {
  height: auto;
  padding: 5px 30px;
  border-bottom: 1px solid #E5E5E5;
}
#main-nav.active .logo {
  width: 80px;
}
#main-nav.active .menu-button i {
  transform: scale(0.8);
}
#main-nav section {
  padding: 0;
  max-width: 1140px;
}
@media (min-width: 1024px) {
  #main-nav section {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}
#main-nav section > div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#main-nav .row {
  display: flex;
}
#main-nav .row:not(.preserve) {
  flex-direction: column;
}
@media (min-width: 1024px) {
  #main-nav .row:not(.preserve) {
    flex-direction: row;
  }
}
#main-nav .menu-button {
  display: flex;
}
#main-nav .menu-button i {
  font-size: 40px;
  color: #4351ee;
  transition: transform 0.5s;
}
@media (min-width: 1024px) {
  #main-nav .menu-button i {
    display: none;
  }
}
#main-nav nav {
  display: none;
  box-sizing: border-box;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100vw;
  padding: 0 30px 30px;
  background: #ffffff;
  overflow-y: scroll;
  height: calc(100vh - 70px);
}
@media (min-width: 1024px) {
  #main-nav nav {
    top: 0;
    position: relative;
    height: auto;
    overflow-y: visible;
    display: flex;
    flex: 1;
    padding: 0;
    justify-content: space-between;
  }
  #main-nav nav > div {
    flex: 1;
  }
}
#main-nav nav.active {
  display: block;
}
#main-nav nav .button-link {
  padding: 12px 30px;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 15px;
}
@media (min-width: 1024px) {
  #main-nav nav .button-link {
    margin-left: 15px;
    margin-top: 5px;
    margin-bottom: 5px;
  }
}

.logo {
  display: flex !important;
  align-items: center;
  width: 120px;
  border: none;
  transition: width 0.5s;
}
@media (min-width: 1024px) {
  .logo {
    margin: 15px 0;
  }
}
.logo img {
  display: block;
}
.page {
  padding-top: 70px;
}
@media (min-width: 768px) {
  .page {
    padding-top: 88px;
  }
}
.page.legacy {
  background: #ffffff;
}