<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">header .container {
  border-bottom: 1px solid #dfdacb;
}
header .socials {
  background: var(--red);
  font-size: 14px;
}
header .socials .wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
}
header .socials ul {
  display: flex;
  align-items: center;
  gap: 1rem;
}
header .socials ul li span {
  color: #fff;
  font-size: 1.5rem;
  transition: 0.3s ease-in-out;
}
header .socials ul li:hover span {
  color: #f2c282;
}
header .site-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(40px + 2rem);
}
header .site-links &gt; .logo {
  display: flex;
  flex: 1;
  margin-bottom: 0;
}
header .site-links &gt; .logo &gt; a &gt; img {
  width: 100px;
}
header nav .menu &gt; li {
  position: relative;
}
header nav .menu &gt; li a {
  display: block;
  color: var(--red);
  font-size: 1rem;
  transition: 0.3s ease-in-out;
}
header nav .menu &gt; li .btn {
  color: #FFF;
  padding: 0.5rem 1.5rem;
}
header nav .menu &gt; li:hover a {
  color: #FF6D00;
}
@media (max-width: 1023px) {
  header .socials .phone {
    display: none;
  }
  header .socials ul {
    height: 24px;
  }
  header .site-links #btn-menu-toggle {
    display: block;
    width: 45px;
    height: 40px;
    cursor: pointer;
    z-index: 101;
    transition: ease-out 0.3s;
  }
  header .site-links #btn-menu-toggle span {
    display: block;
    margin: 6px auto;
    width: 1.875rem;
    height: 4px;
    background: var(--red);
    border-radius: 4px;
    transform: rotate(0deg) translate3d(0px, 0px, 0px);
    transition: all 0.3s ease;
  }
  header .site-links #btn-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate3d(7px, 7px, 0px);
    width: 38px;
  }
  header .site-links #btn-menu-toggle.active span:nth-child(2) {
    width: 0;
    opacity: 0;
  }
  header .site-links #btn-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate3d(7px, -7px, 0px);
    width: 38px;
  }
  header .site-links .backdrop {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.25;
    transition: all ease 0.3s;
    z-index: 100;
  }
  header .site-links .backdrop.active {
    display: block;
  }
  header nav {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background-color: #fcfcfc;
    transition: all ease 0.3s;
    overflow-y: auto;
    z-index: 101;
  }
  header nav .menu &gt; li {
    padding: 0.5rem 1rem;
  }
  header nav .menu &gt; li .btn {
    font-size: 0.85rem;
    width: 100%;
  }
  header nav .logo {
    display: block;
    padding: 1rem 1rem 0.5rem 1rem;
    border-bottom: 4px solid var(--red);
  }
  header nav .logo &gt; img {
    width: 100px;
  }
  header nav.active {
    left: 0;
  }
}
@media (min-width: 1024px) {
  header .socials .wrapper {
    justify-content: space-between;
  }
  header .socials .phone {
    color: #f2c282;
  }
  header .socials .phone &gt; span {
    margin-right: 0.5rem;
  }
  header nav .logo {
    display: none;
  }
  header nav .menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: flex-end;
    gap: 1rem;
  }
  header nav .menu &gt; li {
    display: flex;
    align-items: center;
    height: calc(40px + 2rem);
  }
}

footer {
  color: #fff;
  background: var(--red);
  text-align: center;
  padding-top: var(--padding);
  padding-bottom: var(--padding);
}
footer p:first-child {
  font-size: 1.5rem;
  font-family: "RadioCanada-Bold";
}
footer p:last-child {
  font-size: 0.875rem;
}

/*# sourceMappingURL=menu.css.map */
</pre></body></html>