/* Body */

.find_services .heading_hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}


/* Services */

.services {
  display: flex;
  flex-wrap: wrap;
  min-height: 300px;
  gap: 20px;
  margin-bottom: 20px;
  align-items: flex-start;
  overflow-x: hidden;
}

.services.hidden {
  display: none;
}

.services:after {
  clear: both;
  content: " ";
  height: 0;
  display: block;
}



.services .found_radius_cont {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  box-sizing: border-box;
  margin: 20px 0 0;
}

.services .found_count {
  margin: 0 0 0 10px;
  box-sizing: border-box;
  font-size: 1.1em;
  line-height: 1.4;
}

.services .radius_cont {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.services .radius_heading {
  font-size: 1.1em;
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
  white-space: nowrap;
  color: var(--base02);
}

.services .radius_fieldset {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.services .radius {
  cursor: pointer;
  padding: 5px 10px 3px;
  border-radius: 10px;
  border: 1px solid var(--base2);
  background: var(--base3);
  font-size: 0.9em;
  user-select: none;
  color: var(--base02);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.services label.radius {
  position: relative;
}

.services label.radius input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

@media (max-width: 800px) {
  .services .found_radius_cont {
    flex-wrap: wrap;
    gap: 10px;
  }

  .services .radius_cont {
    margin-left: 10px;
    flex-wrap: wrap;
  }

  .services .radius_fieldset {
    flex-wrap: wrap;
  }

  .services .radius {
    padding: 5px 10px 3px;
  }
}

.services .radius.active {
  background: var(--light_yellow);
  border: 1px solid var(--base02);
}

.dark_mode .services .radius.active {
  color: var(--base2);
}

.services .radius:focus-visible,
.services label.radius:has(input[type="radio"]:focus-visible) {
  outline: 2px solid var(--base02);
  outline-offset: 2px;
}





.services .no_results {
  margin: 20px 0 100px 10px;
  box-sizing: border-box;
  font-size: 1.1em;
  flex-basis: 100%;
  display: block;
}

.services .suggestions {
  margin: 20px 0 0 -10px;
  border: 1px solid var(--base2);
  border-radius: 10px;
  color: var(--base02);
  background: var(--base3);
  padding: 20px;
  width: calc((100% - 40px) / 3);
}

@media (max-width: 1200px) {
  .services .suggestions {
    width: 50%;
  }
}

@media (max-width: 600px) {
  .services .suggestions {
    width: calc(100% - 32px);
  }
}

.services h3.suggestions_title {
  font-weight: 400;
  font-size: 1em;
  margin: 0 0 5px 0;
  color: var(--base02);
}

.services .suggestion {
  color: var(--aqua);
  cursor: pointer;
  font: inherit;
  font-size: 1em;
  line-height: 1;
  border: none;
  background: none;
  padding: 0;
  margin: 5px 0 0 0;
  display: block;
}

.services .suggestion_line {
  padding: 5px 0;
}

.services .addr_note {
  font-size: 1em;
}

.services .service {
  background: var(--base3);
  border: 1px solid var(--base2);
  border-radius: 10px;
  padding: 18px 20px 0;
  box-sizing: border-box;
  flex: 0 0 calc((100% - 40px) / 3);
  margin: 0;
}

.home .services .service {
  flex: 0 0 calc((100% - 60px) / 3);
  margin: 0;
}

@media (max-width: 1200px) {
  .services .service {
    flex: 0 0 calc((100% - 20px) / 2);
  }
  .home .services .service {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

@media (max-width: 600px) {
  .services .service,
  .home .services .service {
    flex: 0 0 100%;
  }
}


.services .service .label {
  display: inline;
  margin-right: 5px;
}

.services .service .value {
  display: inline;
  margin-right: 10px;
}

.services .service .highlight {
 background: var(--light_yellow);
}

.dark_mode .service .highlight {
  color: var(--base2);
}

.services .service .map_value {
  margin-right: 10px;
}

.services .service .category {
  font-size: 0.9em;
}

.services .service .referral_text {
  margin-top: 20px;
}

.services .service .referral_button {
  display: inline-block;
  font-size: 1.1em;
  font-weight: 700;
  background: var(--aqua-dark);
  border-radius: 10px;
  padding: 7px 20px;
  color: var(--white);
  text-decoration: none;
  margin: 5px 0;
}

.services .service .referral_button::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  margin-right: 8px;
  background: url('/static/images/phone_white.svg') center/contain no-repeat;
}



.services .service .website {
  font-size: 0.9em;
  opacity: 0.6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
  color: inherit;
}

.services .service h2 {
  font-size: 1em;
  margin: 0;
}

.services .service .name {
  font-size: 1.3em;
  line-height: 1.2;
  margin: 0;
  text-decoration: none;
  display: inline;
  color: var(--aqua);
  font-weight: bold;
}

.services .service .name:before {
  display: inline-block;
  vertical-align: -3px;
  content: " ";
  height: 20px;
  width: 20px;
  margin-right: 7px;
  background: url('/static/images/external.svg') center/contain no-repeat;
}

.dark_mode .services .service .name:before {
  background: url('/static/images/external_light.svg') center/contain no-repeat;
}

.services .service .name_clear_before:before {
  content: none;
  display: none;
}

.services .service .organisation_cont {
  margin-top: 5px;
  line-height: 1.2;
}


.services .service .meta_row {
  margin: 8px 0;
}

.services .service .phone {
  font-size: 1.3em;
}

.services .service .email {
  overflow-wrap: break-word;
}

.services .service .copy_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  padding: 2px;
  border: 0;
  background: none;
  cursor: pointer;
}
.services .service .copy_icon .copy_svg { 
  display: block;
}
.services .service .copy_icon.copied {
  color: var(--base0);
  font-size: 0.6em;
  line-height: 1;
  transform: translate(-5px, -3px);
}

.services .service .quick_description {
  margin-top: 8px;
}

.services .service .what_to_expect {
  margin-top: 10px;
}

.services .service .what_text {
  display: inline;
  margin-right: 10px;
}

.services .service .what_text ul {
  margin: 0;
  padding-left: 35px;
}

.services .service .what_to_expect_cont {
  margin-top: 10px;
}

.services .service .what_to_expect_label {
  font-size: 1em;
  margin: 0;
  font-weight: 700;
  color: inherit;
}

.services .service .what_to_expect button.show_more {
  display: inline;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: var(--aqua);
  text-decoration: none;
  cursor: pointer;
}

.services .service .last_modified {
  margin-top: 10px;
  font-size: 0.8em;
}

.services .service .last_modified .label {
  font-weight: normal;
}

.services .service .image_link {
  display: block;
  margin: 15px 0 0;
  overflow: hidden;
}

.services .service .image {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.services .service .tags_cont {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 16px;
  margin: 12px 0 0 0;
  padding: 0;
}

.services .service .tag {
  display: inline-block;
  font-size: 0.8em;
  padding: 0;
}

.services .service .tag.active {
  background: var(--light_yellow);
}

.dark_mode .services .service .tag.active {
  color: var(--base2);
}

.services .service .map_link {
  display: inline-block;
  appearance: none;
  border: 0;
  font-family: 'Source Sans', sans-serif;
  font-size: 1em;
  cursor: pointer;
  color: var(--aqua);
  background: none;
  padding: 0;
  margin: 0;
}

.services .service .map {
  margin: 20px 0;
}

.services .service .map .gm-style-moc {
  display: none !important; /* Hide 'Use ctrl + scroll to zoom the map' overlay on scroll wheel */
}

.services .service .first_nations {
  float: right;
  margin-top: -43px;
}

@media (max-width: 800px) {
  .services .service .first_nations {
    float: none;
    margin-top: 10px;
    margin-bottom: 5px;
  }
}

.services .service .first_nations img.flag {
  width: 40px;
  height: auto;
  margin-left: 5px;
}

@media (max-width: 800px) {
  .services .service .first_nations img.flag {
    margin-left: 0;
    margin-right: 5px;
  }
}


/* Home */

.home .content_cont {
  padding: 50px 50px 0;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

@media (max-width: 1200px) {
  .home .content_cont {
    padding: 50px 30px 0;
  }
}

@media (max-width: 600px) {
  .home .content_cont {
    padding: 30px 10px 0;
    flex-direction: column;
    gap: 20px;
  }
}

.home .left_col {
  flex: 1 1 50%;
  min-width: 0;
}

@media (max-width: 600px) {
  .home .left_col {
    flex: 1 1 100%;
  }
}

.home .right_col {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

@media (max-width: 600px) {
  .home .right_col {
    flex: 1 1 100%;
    width: 100%;
  }
}

.home .welcome_text_cont {
  padding: 0;
  box-sizing: border-box;
}

.home .welcome_text h1 {
  margin: 0;
}

.home .welcome_text h2 {
  font-size: 1.2em;
  margin: 10px 0 0;
}

.home .welcome_text p {
  font-size: 1.2em;
  margin: 20px 0 0;
}

.home .change_text {
  margin-top: 20px;
  font-size: 2em;
  font-style: italic;
  text-align: center;
}

.home .home_image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.home .call_panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--aqua-dark);
  border-radius: 20px;
  overflow: hidden;
  background: var(--base3);
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
  padding: 20px;
  gap: 10px;
  max-width: 400px;
  width: 100%;
}

.dark_mode .home .call_panel {
  background: var(--parchment);
}

.home .call_panel .call_panel_logo {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 5px 0 10px;
}

.home .call_panel .call_title {
  font-size: 1.4em;
  font-weight: 900;
  color: var(--base01);
}

.home .call_panel .button_row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.home .call_panel .call_phone_button,
.home .call_panel .call_webchat_button {
  display: inline-block;
  font-size: 1.1em;
  font-weight: 700;
  background: var(--aqua-dark);
  border-radius: 10px;
  padding: 7px 20px;
  color: var(--white);
  text-decoration: none;
}

.home .call_panel .call_phone_button::before,
.home .call_panel .call_webchat_button::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  margin-right: 8px;
  background: url('/static/images/phone_white.svg') center/contain no-repeat;
}

.home .call_panel .call_webchat_button::before {
  background: url('/static/images/chat_white.svg') center/contain no-repeat;
}

.home .call_panel .available {
  margin-top: 10px;
  font-weight: 600;
  font-size: 1.1em;
  color: var(--base02);
}

.home .call_panel .call_language_text {
  margin-top: 5px;
  font-size: 1.1em;
  max-width: 600px;
  display: block;
  color: var(--aqua);
}

.home .call_panel .call_language_text::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin: 0 5px 4px 0;
  background: url('/static/images/language.svg') center/contain no-repeat;
}

.dark_mode .home .call_panel .call_language_text::before {
  background: url('/static/images/language_dark_mode.svg') center/contain no-repeat;
}


/* Home - Services list */

.home .services_cont {
  max-width: 1600px;
  margin: auto;
  padding: 50px 50px;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .home .services_cont {
    padding: 50px 30px;
  }
}

@media (max-width: 600px) {
  .home .services_cont {
    padding: 30px 10px;
  }
}

/* Home - buttons */

.home .all_button_cont {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home .all_button {
  display: block;
  font-size: 1.2em;
  font-weight: 500;
  background: var(--aqua-dark);
  border-radius: 10px;
  padding: 8px 25px;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 50px;
}

.home .find_services_button {
  display: inline-block;
  font-weight: 500;
  background: var(--aqua-dark);
  border-radius: 10px;
  padding: 8px 25px;
  color: var(--white);
  text-decoration: none;
  margin-left: 10px;
}



/* More Services */

.services_submenu {
  background: var(--parchment);
}

.services_submenu .services_submenu_cont {
  padding: 30px 50px 10px;
  max-width: 1600px;
  box-sizing: border-box;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .services_submenu .services_submenu_cont {
     padding: 30px 30px 10px;
  }
}


@media (max-width: 600px) {
  .services_submenu .services_submenu_cont {
     padding: 30px 10px 10px;
  }
}

.services_submenu .links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 0;
  margin-left: auto;
  justify-content: flex-start;
}

.services_submenu .links .link {
  appearance: none;
  background: none;
  text-decoration: none;
  flex: 0 0 auto;
  padding: 7px 40px 6px;
  border: 1px solid var(--base1);
  border-radius: 10px;
  margin-bottom: -1px;
  font: inherit;
  font-weight: 400;
  font-size: 1em;
  color: var(--base01);
  cursor: pointer;
}

.services_submenu .links .link.active {
  background: var(--base3);
  border: 1px solid var(--base0);
  color: var(--base03);
  position: relative;
  z-index: 1;
}

.services_submenu .links .link.active:first-child {
  margin-right: -10px;
}

.services_submenu .links .link.active:last-child {
  margin-left: -10px;
}

.more_services {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 50px 50px;
  box-sizing: border-box;
  border-top: 1px solid var(--parchment);
  background: var(--parchment);
}

@media (max-width: 1200px) {
  .more_services {
    padding: 0 30px 50px;
  }
}

@media (max-width: 600px) {
  .more_services {
    padding: 0 10px 50px;
  }
}

.more_services .search_bar {
  display: flex;
  gap: 40px;
  align-items: center;
  margin: 20px 0 0;
}

@media (max-width: 600px) {
  .more_services .search_bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
  }
}

.more_services .search_bar .label_hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.more_services .search_input_wrap {
  grid-column: 1;
  min-width: 0;
}

.more_services .search_input {
  border: none;
  border: 1px solid var(--base2);
  border-radius: 10px;
  color: inherit;
  font-family: inherit;
  font-size: 19px;
  width: 400px;
  max-width: 100%;
  padding: 7px 10px 5px;
  box-sizing: border-box;
  outline: none;
  background: var(--base3);
}

.more_services .search_input::placeholder {
  font-size: 20px;
  color: var(--base0);
}

.more_services .btn_reset_filters {
  font: inherit;
  font-size: 0.9em;
  line-height: 1;
  grid-column: 3;
  justify-self: start;
  cursor: pointer;
  padding: 7px 10px 5px;
  border-radius: 10px;
  border: 1px solid var(--base02);
  user-select: none;
  color: var(--base02);
  min-width: max-content;
  background: var(--light_yellow);
  display: block;
}

.dark_mode .more_services .btn_reset_filters {
  color: var(--base2);
}

.more_services .btn_reset_filters:before {
  content: " ";
  margin-right: 5px;
  display: inline-block;
  vertical-align: -2px;
  height: 15px;
  width: 15px;
  background: url('/static/images/close.svg') center/contain no-repeat;
}

.more_services .btn_reset_filters.is_hidden {
  display: none;
  pointer-events: none;
}



/* Filters */


.filters_cont .states_cont {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  border: 0;
  margin: 20px 0 0 0;
  padding: 0;
}

.filters_cont .legend_hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.filters_cont .states .state {
  cursor: pointer;
  padding: 5px 10px 3px;
  border-radius: 10px;
  border: 1px solid var(--base2);
  background: var(--base3);
  font-size: 0.9em;
  user-select: none;
  color: var(--base02);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.filters_cont .states .state_all {
  padding: 5px 15px 3px;
}

.filters_cont .states label.state {
  position: relative;
}

.filters_cont .states label.state input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.filters_cont .states .state.active {
  background: var(--light_yellow);
  border: 1px solid var(--base02);
}

.dark_mode .filters_cont .states .state.active {
  color: var(--base2);
}

.filters_cont .states .state:focus-visible,
.filters_cont .states label.state:has(input[type="checkbox"]:focus-visible) {
  outline: 2px solid var(--base02);
  outline-offset: 2px;
}


.filters_cont .tags_cont {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 20px 0 0;
  border: 0;
  padding: 0;
}

.filters_cont .tags .tags_cont.hidden {
  display: none;
}

.filters_cont .tags .tag {
  cursor: pointer;
  padding: 5px 10px 3px;
  border-radius: 10px;
  border: 1px solid var(--base2);
  font-size: 0.9em;
  user-select: none;
  color: var(--base02);
  background: var(--base3);
  display: inline-flex;
  align-items: center;
}

.filters_cont .tags label.tag {
  position: relative;
}

.filters_cont .tags .tag input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.filters_cont .tags .tag.active {
  background: var(--light_yellow);
  border: 1px solid var(--base02);
}

.dark_mode .filters_cont .tags .tag.active {
  color: var(--base2);
}

.filters_cont .tags .tag .count {
  color: var(--base02);
  margin-left: 5px;
}

.filters_cont .tags .tag:focus-visible,
.filters_cont .tags label.tag:has(input[type="checkbox"]:focus-visible) {
  outline: 2px solid var(--base02);
  outline-offset: 2px;
}


/* Map */

.services_map_cont {
  display: flex;
  width: 100%;
  gap: 0;
}

@media (max-width: 1200px) {
  .services_map_cont {
    flex-direction: column;
  }
}

.services_map_wrap {
  position: relative;
  flex: 0 0 70%;
}

.services_map_wrap.map_full_width {
  flex: 0 0 100%;
}

@media (max-width: 1200px) {
  .services_map_wrap {
    flex: 0 0 100%;
    width: 100%;
  }
}

.services_map {
  width: 100%;
  height: 70vh;
  display: flex;
  position: relative;
}

.services_map .gm-style-iw-chr {
  padding-top: 17px !important;
  border: 0 !important;
  background: transparent !important;
  height: auto !important;
  min-height: 0 !important;
}

.services_map .gm-style-iw-ch {
  margin: 0 !important;
  padding: 0 !important;
}

.services_map .gm-style-iw-chr .gm-ui-hover-effect {
  position: absolute !important;
  top: 14px !important;
  right: 15px !important;
  width: 40px !important;
  height: 40px !important;
  background: none !important;
  box-shadow: none !important;
}

.services_map .gm-style-iw-chr .gm-ui-hover-effect > span {
  width: 30px !important;
  height: 30px !important;
  margin: 5px !important;
}

.services_map .gm-style-iw.gm-style-iw-c {
  max-width: 725px !important;
}

@media (max-width: 1200px) {
  .services_map .gm-style-iw.gm-style-iw-c {
    max-width: 80vw !important;
  }
}

@media (max-width: 600px) {
  .services_map .gm-style-iw.gm-style-iw-c {
    max-width: 90vw !important;
  }
}

.services_map .map_info_window {
  font-family: 'Source Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.services_map .gm-style-moc {
  display: none !important; /* Hide 'Use ctrl + scroll to zoom the map' overlay on scroll wheel */
}

.services_map .no_addresses_message {
  display: block;
  position: absolute;
  width: 50%;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  background: var(--base3);
  padding: 10px 20px;
  border-radius: 10px;
  text-align: center;
}

@media (max-width: 600px) {
  .services_map .no_addresses_message {
    width: 90%;
  }
}

.services_map .no_addresses_message h2 {
  font-weight: 500;
  margin-bottom: 0;
}

.services_map .no_addresses_message p {
  font-size: 1.1em;
}

.services_map .no_addresses_message_button {
  display: inline-block;
  font-size: 1.2em;
  font-weight: 500;
  background: var(--aqua-dark);
  border-radius: 10px;
  padding: 8px 25px;
  color: var(--white);
  text-decoration: none;
  margin: 20px 0 20px;
  cursor: pointer;
}

/* Map no addresses */


@media (max-width: 1200px) {
  .services_map_no_addresses {
    flex: 0 0 100%;
    width: 100%;
  }
}

.services_map_no_addresses {
  flex: 0 0 30%;
  background: var(--base3);
  display: flex;
  flex-direction: column;
  padding: 15px 20px;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .services_map_no_addresses {
    flex: 0 0 100%;
    width: 100%;
  }
}

.services_map_no_addresses .no_address_title {
  font-size: 1.1em;
  font-weight: 700;
  margin: 0;
}

.services_map_no_addresses .no_address_name {
  color: var(--aqua);
  cursor: pointer;
  display: inline;
  font-weight: 600;
  margin-top: 10px;
}

.services_map_no_addresses .no_address_text {
  display: inline;
}

.services_map_no_addresses .no_address_name::after {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  background-color: currentColor;
  mask-image: url("/static/images/chevron_aqua.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  vertical-align: middle;
  margin-left: 6px;
}

.services_map_no_addresses .no_address_name.active::after {
  transform: rotate(180deg);
}

.services_map_no_addresses .no_address_service {
  display: none;
}

.services_map_no_addresses .no_address_service.active {
  display: block;
  margin-top: 10px;
}

.services .top_button_cont {
  text-align: center;
  flex: 0 0 100%;
}

.services .top_button {
  display: inline-block;
  font-size: 1.1em;
  font-weight: 500;
  background: var(--aqua-dark);
  border-radius: 10px;
  padding: 8px 25px 8px 45px;
  color: var(--white);
  text-decoration: none;
  margin-top: 50px;
  position: relative;
}

.services .top_button:before {
  content: "";
  position: absolute;
  left: 20px;
  top: 46%;
  transform: translateY(-50%) rotate(-90deg);
  width: 20px;
  height: 20px;
  background-image: url("/static/images/chevron_white.svg");
  background-size: contain;
  background-repeat: no-repeat;
}



/* Main section */


.main {
  background: var(--parchment);
}

