/*!
 * pagepiling.js 1.5.4
 *
 * https://github.com/alvarotrigo/pagePiling.js
 * @license MIT licensed
 *
 * Copyright (C) 2016 alvarotrigo.com - A project by Alvaro Trigo
 */
html, body {
    overflow:hidden;
    margin:0;
    padding:0;

    /*Avoid flicker on slides transitions for mobile phones #336 */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.pp-section {
    height:100%;
    position:absolute;
    width:100%;
}
.pp-easing {
    -webkit-transition: all 1000ms cubic-bezier(0.550, 0.085, 0.000, 0.990);
    -moz-transition: all 1000ms cubic-bezier(0.550, 0.085, 0.000, 0.990);
    -o-transition: all 1000ms cubic-bezier(0.550, 0.085, 0.000, 0.990);
    transition: all 1000ms cubic-bezier(0.550, 0.085, 0.000, 0.990);
    /* custom */
    -webkit-transition-timing-function: cubic-bezier(0.550, 0.085, 0.000, 0.990);
    -moz-transition-timing-function: cubic-bezier(0.550, 0.085, 0.000, 0.990);
    -o-transition-timing-function: cubic-bezier(0.550, 0.085, 0.000, 0.990);
    transition-timing-function: cubic-bezier(0.550, 0.085, 0.000, 0.990);
    /* custom */
}
#pp-nav {
    position: fixed;
    z-index: 100;
    margin-top: -32px;
    top: 50%;
    opacity: 1;
}
#pp-nav.right {
    right: 17px;
}
#pp-nav.left {
    left: 17px;
}
.pp-section.pp-table{
    display: table;
}
.pp-tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}
.pp-slidesNav{
    position: absolute;
    z-index: 4;
    left: 50%;
    opacity: 1;
}
.pp-slidesNav.bottom {
    bottom: 17px;
}
.pp-slidesNav.top {
    top: 17px;
}
#pp-nav ul,
.pp-slidesNav ul {
  margin: 0;
  padding: 0;
}
#pp-nav li,
.pp-slidesNav li {
    display: block;
    width: 14px;
    height: 13px;
    margin: 7px;
    position:relative;
}
.pp-slidesNav li {
    display: inline-block;
}
#pp-nav li a,
.pp-slidesNav li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}
#pp-nav li .active span,
.pp-slidesNav .active span {
    background: #333;
}
#pp-nav span,
.pp-slidesNav span {
    top: 2px;
    left: 2px;
    width: 8px;
    height: 8px;
    border: 1px solid #000;
    background: rgba(0, 0, 0, 0);
    border-radius: 50%;
    position: absolute;
    z-index: 1;
}
.pp-tooltip {
    position: absolute;
    top: -2px;
    color: #fff;
    font-size: 14px;
    font-family: arial, helvetica, sans-serif;
    white-space: nowrap;
    max-width: 220px;
}
.pp-tooltip.right {
    right: 20px;
}
.pp-tooltip.left {
    left: 20px;
}
.pp-scrollable{
    overflow-y: scroll;
    height: 100%;
}/** Import Bootstrap functions */

/** Bootstrap navbar fix (https://git.io/fADqW) */

/** Import everything from autoload */

/**
 * Import npm dependencies
 *
 * Prefix your imports with `~` to grab from node_modules/
 * @see https://github.com/webpack-contrib/sass-loader#imports
 */

/*!
 * Bootstrap Reboot v4.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
 */

/* line 21, node_modules/bootstrap/scss/_reboot.scss */

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* line 27, node_modules/bootstrap/scss/_reboot.scss */

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@-ms-viewport {
  width: device-width;
}

/* line 45, node_modules/bootstrap/scss/_reboot.scss */

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

/* line 57, node_modules/bootstrap/scss/_reboot.scss */

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #0d0c0c;
  text-align: left;
  background-color: #fff;
}

/* line 73, node_modules/bootstrap/scss/_reboot.scss */

[tabindex="-1"]:focus {
  outline: 0 !important;
}

/* line 83, node_modules/bootstrap/scss/_reboot.scss */

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}

/* line 99, node_modules/bootstrap/scss/_reboot.scss */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* line 109, node_modules/bootstrap/scss/_reboot.scss */

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* line 121, node_modules/bootstrap/scss/_reboot.scss */

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

/* line 129, node_modules/bootstrap/scss/_reboot.scss */

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

/* line 135, node_modules/bootstrap/scss/_reboot.scss */

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* line 142, node_modules/bootstrap/scss/_reboot.scss */

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

/* line 149, node_modules/bootstrap/scss/_reboot.scss */

dt {
  font-weight: 700;
}

/* line 153, node_modules/bootstrap/scss/_reboot.scss */

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

/* line 158, node_modules/bootstrap/scss/_reboot.scss */

blockquote {
  margin: 0 0 1rem;
}

/* line 162, node_modules/bootstrap/scss/_reboot.scss */

dfn {
  font-style: italic;
}

/* line 167, node_modules/bootstrap/scss/_reboot.scss */

b,
strong {
  font-weight: bolder;
}

/* line 173, node_modules/bootstrap/scss/_reboot.scss */

small {
  font-size: 80%;
}

/* line 182, node_modules/bootstrap/scss/_reboot.scss */

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

/* line 190, node_modules/bootstrap/scss/_reboot.scss */

sub {
  bottom: -.25em;
}

/* line 191, node_modules/bootstrap/scss/_reboot.scss */

sup {
  top: -.5em;
}

/* line 198, node_modules/bootstrap/scss/_reboot.scss */

a {
  color: #525ddc;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

/* line 13, node_modules/bootstrap/scss/mixins/_hover.scss */

a:hover {
  color: #2632bc;
  text-decoration: underline;
}

/* line 216, node_modules/bootstrap/scss/_reboot.scss */

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

/* line 17, node_modules/bootstrap/scss/mixins/_hover.scss */

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

/* line 225, node_modules/bootstrap/scss/_reboot.scss */

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

/* line 235, node_modules/bootstrap/scss/_reboot.scss */

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

/* line 243, node_modules/bootstrap/scss/_reboot.scss */

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

/* line 260, node_modules/bootstrap/scss/_reboot.scss */

figure {
  margin: 0 0 1rem;
}

/* line 270, node_modules/bootstrap/scss/_reboot.scss */

img {
  vertical-align: middle;
  border-style: none;
}

/* line 275, node_modules/bootstrap/scss/_reboot.scss */

svg {
  overflow: hidden;
  vertical-align: middle;
}

/* line 287, node_modules/bootstrap/scss/_reboot.scss */

table {
  border-collapse: collapse;
}

/* line 291, node_modules/bootstrap/scss/_reboot.scss */

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

/* line 299, node_modules/bootstrap/scss/_reboot.scss */

th {
  text-align: inherit;
}

/* line 310, node_modules/bootstrap/scss/_reboot.scss */

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

/* line 319, node_modules/bootstrap/scss/_reboot.scss */

button {
  border-radius: 0;
}

/* line 327, node_modules/bootstrap/scss/_reboot.scss */

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

/* line 332, node_modules/bootstrap/scss/_reboot.scss */

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* line 343, node_modules/bootstrap/scss/_reboot.scss */

button,
input {
  overflow: visible;
}

/* line 348, node_modules/bootstrap/scss/_reboot.scss */

button,
select {
  text-transform: none;
}

/* line 356, node_modules/bootstrap/scss/_reboot.scss */

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/* line 364, node_modules/bootstrap/scss/_reboot.scss */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/* line 372, node_modules/bootstrap/scss/_reboot.scss */

input[type="radio"],
input[type="checkbox"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

/* line 379, node_modules/bootstrap/scss/_reboot.scss */

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

/* line 391, node_modules/bootstrap/scss/_reboot.scss */

textarea {
  overflow: auto;
  resize: vertical;
}

/* line 397, node_modules/bootstrap/scss/_reboot.scss */

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

/* line 412, node_modules/bootstrap/scss/_reboot.scss */

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

/* line 424, node_modules/bootstrap/scss/_reboot.scss */

progress {
  vertical-align: baseline;
}

/* line 429, node_modules/bootstrap/scss/_reboot.scss */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/* line 434, node_modules/bootstrap/scss/_reboot.scss */

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

/* line 447, node_modules/bootstrap/scss/_reboot.scss */

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 457, node_modules/bootstrap/scss/_reboot.scss */

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

/* line 466, node_modules/bootstrap/scss/_reboot.scss */

output {
  display: inline-block;
}

/* line 470, node_modules/bootstrap/scss/_reboot.scss */

summary {
  display: list-item;
  cursor: pointer;
}

/* line 475, node_modules/bootstrap/scss/_reboot.scss */

template {
  display: none;
}

/* line 481, node_modules/bootstrap/scss/_reboot.scss */

[hidden] {
  display: none !important;
}

/*!
 * Bootstrap Grid v4.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

@-ms-viewport {
  width: device-width;
}

/* line 12, node_modules/bootstrap/scss/bootstrap-grid.scss */

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

/* line 17, node_modules/bootstrap/scss/bootstrap-grid.scss */

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/* line 6, node_modules/bootstrap/scss/_grid.scss */

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  /* line 6, node_modules/bootstrap/scss/_grid.scss */

  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  /* line 6, node_modules/bootstrap/scss/_grid.scss */

  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  /* line 6, node_modules/bootstrap/scss/_grid.scss */

  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  /* line 6, node_modules/bootstrap/scss/_grid.scss */

  .container {
    max-width: 1140px;
  }
}

/* line 18, node_modules/bootstrap/scss/_grid.scss */

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/* line 28, node_modules/bootstrap/scss/_grid.scss */

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/* line 34, node_modules/bootstrap/scss/_grid.scss */

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

/* line 38, node_modules/bootstrap/scss/_grid.scss */

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

/* line 8, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

/* line 32, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
}

/* line 37, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: none;
}

/* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.33333%;
          flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

/* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.66667%;
          flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

/* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

/* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33333%;
          flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

/* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.66667%;
          flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

/* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

/* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.33333%;
          flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

/* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.66667%;
          flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

/* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
}

/* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.33333%;
          flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

/* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 91.66667%;
          flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

/* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

/* line 49, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-first {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

/* line 51, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-last {
  -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
          order: 13;
}

/* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-0 {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

/* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

/* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

/* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

/* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

/* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

/* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

/* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

/* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

/* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

/* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

/* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-11 {
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}

/* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.order-12 {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

/* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.offset-1 {
  margin-left: 8.33333%;
}

/* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.offset-2 {
  margin-left: 16.66667%;
}

/* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.offset-3 {
  margin-left: 25%;
}

/* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.offset-4 {
  margin-left: 33.33333%;
}

/* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.offset-5 {
  margin-left: 41.66667%;
}

/* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.offset-6 {
  margin-left: 50%;
}

/* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.offset-7 {
  margin-left: 58.33333%;
}

/* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.offset-8 {
  margin-left: 66.66667%;
}

/* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.offset-9 {
  margin-left: 75%;
}

/* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.offset-10 {
  margin-left: 83.33333%;
}

/* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

.offset-11 {
  margin-left: 91.66667%;
}

@media (min-width: 576px) {
  /* line 32, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-sm {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  /* line 37, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  /* line 49, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  /* line 51, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-sm-0 {
    margin-left: 0;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-sm-1 {
    margin-left: 8.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-sm-2 {
    margin-left: 16.66667%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-sm-3 {
    margin-left: 25%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-sm-4 {
    margin-left: 33.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-sm-5 {
    margin-left: 41.66667%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-sm-6 {
    margin-left: 50%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-sm-7 {
    margin-left: 58.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-sm-8 {
    margin-left: 66.66667%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-sm-9 {
    margin-left: 75%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-sm-10 {
    margin-left: 83.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-sm-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 768px) {
  /* line 32, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-md {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  /* line 37, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  /* line 49, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  /* line 51, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-md-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-md-0 {
    margin-left: 0;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-md-1 {
    margin-left: 8.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-md-2 {
    margin-left: 16.66667%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-md-3 {
    margin-left: 25%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-md-4 {
    margin-left: 33.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-md-5 {
    margin-left: 41.66667%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-md-6 {
    margin-left: 50%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-md-7 {
    margin-left: 58.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-md-8 {
    margin-left: 66.66667%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-md-9 {
    margin-left: 75%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-md-10 {
    margin-left: 83.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-md-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 992px) {
  /* line 32, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-lg {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  /* line 37, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  /* line 49, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  /* line 51, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-lg-0 {
    margin-left: 0;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-lg-1 {
    margin-left: 8.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-lg-2 {
    margin-left: 16.66667%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-lg-3 {
    margin-left: 25%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-lg-4 {
    margin-left: 33.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-lg-5 {
    margin-left: 41.66667%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-lg-6 {
    margin-left: 50%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-lg-7 {
    margin-left: 58.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-lg-8 {
    margin-left: 66.66667%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-lg-9 {
    margin-left: 75%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-lg-10 {
    margin-left: 83.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-lg-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 1200px) {
  /* line 32, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-xl {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  /* line 37, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  /* line 44, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  /* line 49, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  /* line 51, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  /* line 54, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-xl-0 {
    margin-left: 0;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-xl-1 {
    margin-left: 8.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-xl-2 {
    margin-left: 16.66667%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-xl-3 {
    margin-left: 25%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-xl-4 {
    margin-left: 33.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-xl-5 {
    margin-left: 41.66667%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-xl-6 {
    margin-left: 50%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-xl-7 {
    margin-left: 58.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-xl-8 {
    margin-left: 66.66667%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-xl-9 {
    margin-left: 75%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-xl-10 {
    margin-left: 83.33333%;
  }

  /* line 60, node_modules/bootstrap/scss/mixins/_grid-framework.scss */

  .offset-xl-11 {
    margin-left: 91.66667%;
  }
}

/* line 11, node_modules/bootstrap/scss/utilities/_display.scss */

.d-none {
  display: none !important;
}

/* line 12, node_modules/bootstrap/scss/utilities/_display.scss */

.d-inline {
  display: inline !important;
}

/* line 13, node_modules/bootstrap/scss/utilities/_display.scss */

.d-inline-block {
  display: inline-block !important;
}

/* line 14, node_modules/bootstrap/scss/utilities/_display.scss */

.d-block {
  display: block !important;
}

/* line 15, node_modules/bootstrap/scss/utilities/_display.scss */

.d-table {
  display: table !important;
}

/* line 16, node_modules/bootstrap/scss/utilities/_display.scss */

.d-table-row {
  display: table-row !important;
}

/* line 17, node_modules/bootstrap/scss/utilities/_display.scss */

.d-table-cell {
  display: table-cell !important;
}

/* line 18, node_modules/bootstrap/scss/utilities/_display.scss */

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

/* line 19, node_modules/bootstrap/scss/utilities/_display.scss */

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  /* line 11, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-sm-none {
    display: none !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-sm-inline {
    display: inline !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-sm-inline-block {
    display: inline-block !important;
  }

  /* line 14, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-sm-block {
    display: block !important;
  }

  /* line 15, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-sm-table {
    display: table !important;
  }

  /* line 16, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-sm-table-row {
    display: table-row !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-sm-table-cell {
    display: table-cell !important;
  }

  /* line 18, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  /* line 19, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  /* line 11, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-md-none {
    display: none !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-md-inline {
    display: inline !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-md-inline-block {
    display: inline-block !important;
  }

  /* line 14, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-md-block {
    display: block !important;
  }

  /* line 15, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-md-table {
    display: table !important;
  }

  /* line 16, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-md-table-row {
    display: table-row !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-md-table-cell {
    display: table-cell !important;
  }

  /* line 18, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  /* line 19, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  /* line 11, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-lg-none {
    display: none !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-lg-inline {
    display: inline !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-lg-inline-block {
    display: inline-block !important;
  }

  /* line 14, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-lg-block {
    display: block !important;
  }

  /* line 15, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-lg-table {
    display: table !important;
  }

  /* line 16, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-lg-table-row {
    display: table-row !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-lg-table-cell {
    display: table-cell !important;
  }

  /* line 18, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  /* line 19, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  /* line 11, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-xl-none {
    display: none !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-xl-inline {
    display: inline !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-xl-inline-block {
    display: inline-block !important;
  }

  /* line 14, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-xl-block {
    display: block !important;
  }

  /* line 15, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-xl-table {
    display: table !important;
  }

  /* line 16, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-xl-table-row {
    display: table-row !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-xl-table-cell {
    display: table-cell !important;
  }

  /* line 18, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  /* line 19, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media print {
  /* line 29, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-print-none {
    display: none !important;
  }

  /* line 30, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-print-inline {
    display: inline !important;
  }

  /* line 31, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-print-inline-block {
    display: inline-block !important;
  }

  /* line 32, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-print-block {
    display: block !important;
  }

  /* line 33, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-print-table {
    display: table !important;
  }

  /* line 34, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-print-table-row {
    display: table-row !important;
  }

  /* line 35, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-print-table-cell {
    display: table-cell !important;
  }

  /* line 36, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  /* line 37, node_modules/bootstrap/scss/utilities/_display.scss */

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

/* line 11, node_modules/bootstrap/scss/utilities/_flex.scss */

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

/* line 12, node_modules/bootstrap/scss/utilities/_flex.scss */

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

/* line 13, node_modules/bootstrap/scss/utilities/_flex.scss */

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

/* line 14, node_modules/bootstrap/scss/utilities/_flex.scss */

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

/* line 16, node_modules/bootstrap/scss/utilities/_flex.scss */

.flex-wrap {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

/* line 17, node_modules/bootstrap/scss/utilities/_flex.scss */

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}

/* line 18, node_modules/bootstrap/scss/utilities/_flex.scss */

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
}

/* line 19, node_modules/bootstrap/scss/utilities/_flex.scss */

.flex-fill {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
}

/* line 20, node_modules/bootstrap/scss/utilities/_flex.scss */

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

/* line 21, node_modules/bootstrap/scss/utilities/_flex.scss */

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

/* line 22, node_modules/bootstrap/scss/utilities/_flex.scss */

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
}

/* line 23, node_modules/bootstrap/scss/utilities/_flex.scss */

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
      flex-shrink: 1 !important;
}

/* line 25, node_modules/bootstrap/scss/utilities/_flex.scss */

.justify-content-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

/* line 26, node_modules/bootstrap/scss/utilities/_flex.scss */

.justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

/* line 27, node_modules/bootstrap/scss/utilities/_flex.scss */

.justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

/* line 28, node_modules/bootstrap/scss/utilities/_flex.scss */

.justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

/* line 29, node_modules/bootstrap/scss/utilities/_flex.scss */

.justify-content-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

/* line 31, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

/* line 32, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

/* line 33, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

/* line 34, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-items-baseline {
  -webkit-box-align: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

/* line 35, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-items-stretch {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

/* line 37, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-content-start {
  -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
}

/* line 38, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-content-end {
  -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
}

/* line 39, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-content-center {
  -ms-flex-line-pack: center !important;
      align-content: center !important;
}

/* line 40, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-content-between {
  -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
}

/* line 41, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-content-around {
  -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
}

/* line 42, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
}

/* line 44, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-self-auto {
  -ms-flex-item-align: auto !important;
      align-self: auto !important;
}

/* line 45, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-self-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

/* line 46, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-self-end {
  -ms-flex-item-align: end !important;
      align-self: flex-end !important;
}

/* line 47, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-self-center {
  -ms-flex-item-align: center !important;
      align-self: center !important;
}

/* line 48, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
}

/* line 49, node_modules/bootstrap/scss/utilities/_flex.scss */

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
      align-self: stretch !important;
}

@media (min-width: 576px) {
  /* line 11, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  /* line 14, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  /* line 16, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  /* line 18, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  /* line 19, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  /* line 20, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  /* line 22, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  /* line 23, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-sm-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  /* line 26, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-sm-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  /* line 27, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-sm-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  /* line 28, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  /* line 29, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  /* line 31, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-sm-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  /* line 32, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-sm-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  /* line 33, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-sm-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  /* line 34, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  /* line 35, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  /* line 37, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  /* line 38, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  /* line 39, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  /* line 40, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  /* line 41, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  /* line 42, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  /* line 44, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }

  /* line 45, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-sm-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  /* line 46, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-sm-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  /* line 47, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-sm-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }

  /* line 48, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  /* line 49, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  /* line 11, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  /* line 14, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  /* line 16, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  /* line 18, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  /* line 19, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-md-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  /* line 20, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  /* line 22, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  /* line 23, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-md-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  /* line 26, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-md-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  /* line 27, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-md-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  /* line 28, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-md-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  /* line 29, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  /* line 31, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-md-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  /* line 32, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-md-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  /* line 33, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-md-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  /* line 34, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  /* line 35, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  /* line 37, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-md-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  /* line 38, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-md-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  /* line 39, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  /* line 40, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  /* line 41, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  /* line 42, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  /* line 44, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }

  /* line 45, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-md-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  /* line 46, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-md-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  /* line 47, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-md-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }

  /* line 48, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  /* line 49, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  /* line 11, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  /* line 14, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  /* line 16, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  /* line 18, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  /* line 19, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  /* line 20, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  /* line 22, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  /* line 23, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  /* line 26, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-lg-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  /* line 27, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-lg-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  /* line 28, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  /* line 29, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  /* line 31, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-lg-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  /* line 32, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-lg-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  /* line 33, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-lg-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  /* line 34, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  /* line 35, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  /* line 37, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  /* line 38, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  /* line 39, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  /* line 40, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  /* line 41, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  /* line 42, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  /* line 44, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }

  /* line 45, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-lg-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  /* line 46, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-lg-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  /* line 47, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-lg-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }

  /* line 48, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  /* line 49, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  /* line 11, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  /* line 12, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  /* line 13, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  /* line 14, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  /* line 16, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  /* line 17, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  /* line 18, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  /* line 19, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  /* line 20, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  /* line 21, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  /* line 22, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  /* line 23, node_modules/bootstrap/scss/utilities/_flex.scss */

  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  /* line 25, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-xl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  /* line 26, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-xl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  /* line 27, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-xl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  /* line 28, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  /* line 29, node_modules/bootstrap/scss/utilities/_flex.scss */

  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  /* line 31, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-xl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  /* line 32, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-xl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  /* line 33, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-xl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  /* line 34, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  /* line 35, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  /* line 37, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  /* line 38, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  /* line 39, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  /* line 40, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  /* line 41, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  /* line 42, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  /* line 44, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }

  /* line 45, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-xl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  /* line 46, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-xl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  /* line 47, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-xl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }

  /* line 48, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  /* line 49, node_modules/bootstrap/scss/utilities/_flex.scss */

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

/** Import theme styles */

@font-face {
  font-family: 'Axiforma-Regular';
  src: url(/web/20241017063026im_/http://paradigmco.com.au/wp-content/themes/paradigm/dist/fonts/Axiforma-Regular.otf) format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Axiforma-Bold';
  src: url(/web/20241017063026im_/http://paradigmco.com.au/wp-content/themes/paradigm/dist/fonts/Axiforma-Bold.otf) format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Axiforma-SemiBold';
  src: url(/web/20241017063026im_/http://paradigmco.com.au/wp-content/themes/paradigm/dist/fonts/Axiforma-SemiBold.otf) format("truetype");
  font-weight: 600;
  font-style: normal;
}

/* line 22, resources/assets/styles/common/_global.scss */

html,
body:not(.home) {
  overflow: visible;
}

/* line 27, resources/assets/styles/common/_global.scss */

body {
  font-size: 15px;
  font-family: 'Axiforma-Regular';
  color: #050505;
  line-height: 2.2;
}

/* line 34, resources/assets/styles/common/_global.scss */

p strong {
  font-family: 'Axiforma-SemiBold';
}

/* line 38, resources/assets/styles/common/_global.scss */

a {
  color: #1a1818;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

/* line 42, resources/assets/styles/common/_global.scss */

a:hover,
a:active,
a:focus {
  text-decoration: none;
  color: #1a1818;
}

/* line 50, resources/assets/styles/common/_global.scss */

img {
  max-width: 100%;
  height: auto;
}

/* line 55, resources/assets/styles/common/_global.scss */

.menu-overlay {
  display: none;
  height: 100%;
  width: 100%;
  background-color: #000;
  position: absolute;
  z-index: 10;
  top: 0;
  color: #fff;
}

/* line 65, resources/assets/styles/common/_global.scss */

.menu-overlay .menu-overlay-logo {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  top: 35px;
}

/* line 73, resources/assets/styles/common/_global.scss */

.menu-overlay .menu-overlay-logo img {
  width: 195px;
  max-width: none;
}

@media (min-width: 768px) {
  /* line 73, resources/assets/styles/common/_global.scss */

  .menu-overlay .menu-overlay-logo img {
    width: 270px;
  }
}

/* line 82, resources/assets/styles/common/_global.scss */

.menu-overlay .menu-overlay-body {
  margin-top: 185px;
  text-align: center;
  position: relative;
}

@media (min-width: 992px) {
  /* line 82, resources/assets/styles/common/_global.scss */

  .menu-overlay .menu-overlay-body {
    max-width: 950px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }
}

/* line 95, resources/assets/styles/common/_global.scss */

.menu-overlay .menu-overlay-body .menu-overlay-address .pattern {
  width: 342px;
  margin-bottom: 30px;
  opacity: .2;
}

/* line 100, resources/assets/styles/common/_global.scss */

.menu-overlay .menu-overlay-body .menu-overlay-address p:not(:first-of-type) {
  color: #737373;
}

@media (max-width: 991.98px) {
  /* line 94, resources/assets/styles/common/_global.scss */

  .menu-overlay .menu-overlay-body .menu-overlay-address {
    display: none;
  }
}

/* line 109, resources/assets/styles/common/_global.scss */

.menu-overlay .menu-overlay-body ul {
  padding: 0;
  list-style-type: none;
}

/* line 113, resources/assets/styles/common/_global.scss */

.menu-overlay .menu-overlay-body ul li {
  line-height: 1.5;
}

/* line 116, resources/assets/styles/common/_global.scss */

.menu-overlay .menu-overlay-body ul li.current-menu-item a {
  color: #fff;
}

/* line 120, resources/assets/styles/common/_global.scss */

.menu-overlay .menu-overlay-body ul li a {
  color: #737373;
  font-size: 40px;
  font-family: 'Axiforma-Bold';
}

@media (min-width: 768px) {
  /* line 120, resources/assets/styles/common/_global.scss */

  .menu-overlay .menu-overlay-body ul li a {
    font-size: 62px;
  }
}

@media (min-width: 992px) {
  /* line 132, resources/assets/styles/common/_global.scss */

  .menu-overlay .menu-overlay-body:after {
    content: '';
    background: #1a1818;
    width: 1px;
    height: 120%;
    top: -40px;
    left: 50%;
    position: absolute;
  }
}

/* line 145, resources/assets/styles/common/_global.scss */

.menu-overlay .slider_sidebar_menu_close {
  position: absolute;
  top: 38px;
  right: 12px;
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  color: #fff;
  cursor: pointer;
}

@media (min-width: 992px) {
  /* line 145, resources/assets/styles/common/_global.scss */

  .menu-overlay .slider_sidebar_menu_close {
    top: 46px;
    right: 24px;
  }
}

/* line 1, resources/assets/styles/layouts/_header.scss */

.top-bar {
  background: #fff;
  position: fixed;
  width: 100%;
  height: 100px;
  z-index: 5;
}

@media (min-width: 992px) {
  /* line 1, resources/assets/styles/layouts/_header.scss */

  .top-bar {
    position: absolute;
  }
}

/* line 11, resources/assets/styles/layouts/_header.scss */

.top-bar .top-bar_logo {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  top: 35px;
}

/* line 17, resources/assets/styles/layouts/_header.scss */

.top-bar .top-bar_logo svg {
  width: 195px;
}

@media (min-width: 768px) {
  /* line 17, resources/assets/styles/layouts/_header.scss */

  .top-bar .top-bar_logo svg {
    width: 225px;
  }
}

@media (min-width: 992px) {
  /* line 17, resources/assets/styles/layouts/_header.scss */

  .top-bar .top-bar_logo svg {
    width: 270px;
  }
}

/* line 29, resources/assets/styles/layouts/_header.scss */

.top-bar .sidebar_menu-mobile {
  position: absolute;
  top: 40px;
  right: 9px;
  font-family: 'Axiforma-Bold';
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
  color: #000;
  cursor: pointer;
  z-index: 5;
}

@media (min-width: 992px) {
  /* line 41, resources/assets/styles/layouts/_header.scss */

  .right_sidebar {
    background: #fff;
    -webkit-box-shadow: 1px 2px 15px 3px rgba(0, 0, 0, 0.08);
            box-shadow: 1px 2px 15px 3px rgba(0, 0, 0, 0.08);
    right: 0;
    height: 100%;
    width: 85px;
    z-index: 6;
    position: fixed;
    -webkit-transition: all .7s ease-in-out;
    -o-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
  }

  /* line 52, resources/assets/styles/layouts/_header.scss */

  .right_sidebar .right_sidebar_menu {
    position: absolute;
    top: 48px;
    right: 20px;
    font-family: 'Axiforma-Bold';
    -webkit-transform: rotate(90deg);
         -o-transform: rotate(90deg);
            transform: rotate(90deg);
    color: #1a1818;
    cursor: pointer;
  }

  /* line 62, resources/assets/styles/layouts/_header.scss */

  .right_sidebar .right_sidebar_social {
    position: absolute;
    bottom: 40px;
    width: 85px;
    text-align: center;
    display: none;
  }

  /* line 69, resources/assets/styles/layouts/_header.scss */

  .right_sidebar .right_sidebar_social .sidebar-social-item {
    margin-bottom: 18px;
  }

  /* line 72, resources/assets/styles/layouts/_header.scss */

  .right_sidebar .right_sidebar_social .sidebar-social-item svg {
    width: 18px;
  }
}

/* line 1, resources/assets/styles/layouts/_footer.scss */

.home-footer {
  text-align: center;
  padding-top: 55px;
  background: #ececec;
}

@media (min-width: 768px) {
  /* line 1, resources/assets/styles/layouts/_footer.scss */

  .home-footer {
    padding-top: 130px;
  }
}

/* line 10, resources/assets/styles/layouts/_footer.scss */

.home-footer #menu-footer-menu {
  padding: 0;
  list-style-type: none;
  margin: 0;
  font-family: 'Axiforma-Bold';
  font-size: 16px;
}

/* line 17, resources/assets/styles/layouts/_footer.scss */

.home-footer #menu-footer-menu li {
  line-height: 2.6;
}

@media (min-width: 768px) {
  /* line 17, resources/assets/styles/layouts/_footer.scss */

  .home-footer #menu-footer-menu li {
    display: inline-block;
    margin-right: 55px;
  }
}

/* line 25, resources/assets/styles/layouts/_footer.scss */

.home-footer #menu-footer-menu li:last-child {
  margin-right: 0;
}

/* line 34, resources/assets/styles/layouts/_footer.scss */

.home-footer .footer-logo img {
  width: 280px;
  padding: 65px 10px 53px;
}

@media (min-width: 768px) {
  /* line 34, resources/assets/styles/layouts/_footer.scss */

  .home-footer .footer-logo img {
    width: 470px;
    padding: 85px 10px 74px;
  }
}

/* line 44, resources/assets/styles/layouts/_footer.scss */

.home-footer .footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 61px;
}

@media (min-width: 768px) {
  /* line 44, resources/assets/styles/layouts/_footer.scss */

  .home-footer .footer-social {
    padding-bottom: 127px;
  }
}

/* line 52, resources/assets/styles/layouts/_footer.scss */

.home-footer .footer-social .footer-social-item {
  float: left;
  margin-right: 25px;
}

/* line 56, resources/assets/styles/layouts/_footer.scss */

.home-footer .footer-social .footer-social-item img {
  width: 19px;
}

/* line 2, resources/assets/styles/layouts/_pages.scss */

body:not(.home) .menu-overlay {
  position: fixed;
}

/* line 5, resources/assets/styles/layouts/_pages.scss */

body:not(.home) .content {
  padding: 100px 20px 50px;
}

/* line 6, resources/assets/styles/layouts/_pages.scss */

body:not(.home) .content .padding-bottom {
  margin-bottom: 70px;
}

@media (min-width: 992px) {
  /* line 5, resources/assets/styles/layouts/_pages.scss */

  body:not(.home) .content {
    padding-top: 155px;
  }
}

/* line 15, resources/assets/styles/layouts/_pages.scss */

body:not(.home) .content ul {
  padding-left: 0;
  list-style-position: inside;
}

/* line 19, resources/assets/styles/layouts/_pages.scss */

body:not(.home) .content ul li {
  line-height: 3;
}

/* line 25, resources/assets/styles/layouts/_pages.scss */

body:not(.home) .content .page_title {
  font-size: 33px;
  margin-top: 40px;
  line-height: 1;
  margin-bottom: 30px;
  font-family: 'Axiforma-SemiBold';
}

@media (min-width: 768px) {
  /* line 25, resources/assets/styles/layouts/_pages.scss */

  body:not(.home) .content .page_title {
    font-size: 62px;
    padding-left: 80px;
    position: relative;
    margin-bottom: 50px;
  }
}

@media (min-width: 992px) {
  /* line 25, resources/assets/styles/layouts/_pages.scss */

  body:not(.home) .content .page_title {
    padding-left: 120px;
  }
}

@media (min-width: 768px) {
  /* line 42, resources/assets/styles/layouts/_pages.scss */

  body:not(.home) .content .page_title:before {
    content: url(/web/20241017063026im_/http://paradigmco.com.au/wp-content/themes/paradigm/dist/images/pattern-main.svg);
    position: absolute;
    left: 205px;
    top: -40px;
    z-index: -1;
    width: 342px;
  }
}

@media (min-width: 768px) and (min-width: 992px) {
  /* line 42, resources/assets/styles/layouts/_pages.scss */

  body:not(.home) .content .page_title:before {
    left: 245px;
  }
}

/* line 57, resources/assets/styles/layouts/_pages.scss */

body:not(.home) .content .page_subtitle {
  font-size: 24px;
  position: relative;
  font-family: 'Axiforma-SemiBold';
  line-height: 1.375;
  padding-left: 30px;
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  /* line 57, resources/assets/styles/layouts/_pages.scss */

  body:not(.home) .content .page_subtitle {
    padding-left: 120px;
  }
}

@media (min-width: 992px) {
  /* line 57, resources/assets/styles/layouts/_pages.scss */

  body:not(.home) .content .page_subtitle {
    padding-left: 170px;
  }
}

/* line 74, resources/assets/styles/layouts/_pages.scss */

body:not(.home) .content .page_subtitle:before {
  background: #1a1818;
  width: 16px;
  height: 2px;
  content: " ";
  position: absolute;
  top: 16px;
  left: 0;
}

@media (min-width: 768px) {
  /* line 74, resources/assets/styles/layouts/_pages.scss */

  body:not(.home) .content .page_subtitle:before {
    width: 95px;
  }
}

@media (min-width: 992px) {
  /* line 74, resources/assets/styles/layouts/_pages.scss */

  body:not(.home) .content .page_subtitle:before {
    left: 40px;
  }
}

@media (min-width: 768px) {
  /* line 90, resources/assets/styles/layouts/_pages.scss */

  body:not(.home) .content .page_subtitle ~ p,
  body:not(.home) .content .page_subtitle + p + ul {
    padding-left: 170px;
    padding-right: 125px;
  }
}

@media (min-width: 1200px) {
  /* line 102, resources/assets/styles/layouts/_pages.scss */

  body:not(.home).page .main {
    max-width: 1000px;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  /* line 112, resources/assets/styles/layouts/_pages.scss */

  .input-form-container {
    margin-top: 20px;
  }
}

/* line 116, resources/assets/styles/layouts/_pages.scss */

.input-form-container input,
.input-form-container textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #aaa;
  background: transparent;
  padding: 40px 5px 28px 0;
  font-size: 12px;
  height: 46px;
  -webkit-transition: border-color 0.3s ease 0s;
  -o-transition: border-color 0.3s ease 0s;
  transition: border-color 0.3s ease 0s;
}

/* line 127, resources/assets/styles/layouts/_pages.scss */

.input-form-container input:focus,
.input-form-container textarea:focus {
  border-bottom: 1px solid #ececec;
  outline: none;
}

/* line 133, resources/assets/styles/layouts/_pages.scss */

.input-form-container textarea {
  padding: 50px 5px 38px 0;
}

/* line 139, resources/assets/styles/layouts/_pages.scss */

.input-send-wrapper {
  position: relative;
}

@media (min-width: 768px) {
  /* line 139, resources/assets/styles/layouts/_pages.scss */

  .input-send-wrapper {
    margin-top: 60px;
    margin-bottom: 45px;
  }
}

/* line 146, resources/assets/styles/layouts/_pages.scss */

.input-send-wrapper .btn--send {
  font-family: Axiforma-SemiBold;
  float: right;
  position: relative;
  background: transparent;
  border: 0;
  padding-right: 20px;
  cursor: pointer;
  outline: 0;
}

/* line 157, resources/assets/styles/layouts/_pages.scss */

.input-send-wrapper:after {
  background: url(/web/20241017063026im_/http://paradigmco.com.au/wp-content/themes/paradigm/dist/images/contact/btn-contact-form.png);
  background-size: 8px 14px;
  content: '';
  position: absolute;
  right: 0;
  top: 10px;
  width: 8px;
  height: 14px;
}

/* line 170, resources/assets/styles/layouts/_pages.scss */

body.template-contact span.wpcf7-not-valid-tip {
  font-size: 12px;
}

/* line 174, resources/assets/styles/layouts/_pages.scss */

body.template-contact div.wpcf7-validation-errors,
body.template-contact div.wpcf7-acceptance-missing {
  border-color: #ff0000;
  padding: 10px 20px;
  margin: 20px 0;
  line-height: 1.8;
}

@media (min-width: 768px) {
  /* line 182, resources/assets/styles/layouts/_pages.scss */

  body.template-contact .content {
    padding-top: 130px;
    padding-left: 0;
  }

  /* line 187, resources/assets/styles/layouts/_pages.scss */

  body.template-contact .content .page_title {
    padding-left: 0;
    margin-bottom: 60px;
  }

  /* line 191, resources/assets/styles/layouts/_pages.scss */

  body.template-contact .content .page_title:before {
    width: 220px;
    left: -100px;
    content: '';
    background: url(/web/20241017063026im_/http://paradigmco.com.au/wp-content/themes/paradigm/dist/images/pattern-main.svg);
    height: 122px;
    background-size: 342px 122px;
  }

  /* line 202, resources/assets/styles/layouts/_pages.scss */

  body.template-contact .content .contact-content {
    margin-bottom: 50px;
  }
}

@media (min-width: 768px) {
  /* line 210, resources/assets/styles/layouts/_pages.scss */

  body.single-team .content {
    padding-bottom: 80px;
  }
}

@media (min-width: 992px) {
  /* line 210, resources/assets/styles/layouts/_pages.scss */

  body.single-team .content {
    padding-top: 195px;
  }
}

/* line 218, resources/assets/styles/layouts/_pages.scss */

body.single-team .content .page-featured-image {
  margin-top: 25px;
}

@media (min-width: 768px) {
  /* line 221, resources/assets/styles/layouts/_pages.scss */

  body.single-team .content .page-featured-image img {
    max-width: 465px;
  }
}

@media (min-width: 992px) {
  /* line 229, resources/assets/styles/layouts/_pages.scss */

  body.single-team .content .page-header:after {
    content: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iV2Fyc3R3YV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgdmlld0JveD0iMCAwIDc3LjggNjUuNSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNzcuOCA2NS41OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZmlsbDojMEEwQTBBO30NCjwvc3R5bGU+DQo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNNDEsMTcuMmMtMS40LTEuMi0yLjktMi4zLTQuNi0zYy0xLjctMC44LTMuNS0xLjItNS40LTEuM2MtMy4zLTAuMS02LjIsMS04LjgsMy4xYy0xLjksMS42LTMuMywzLjUtNC40LDUuNw0KCWMtMS42LDMuMS0yLjQsNi41LTIuOCwxMGMtMC40LDQuNSwwLjEsOC45LDEuNiwxMy4xYzEuNyw1LDQuNCw5LjQsOC4zLDEzYzEuNiwxLjUsMy41LDIuOCw1LjYsMy43YzIuMywxLDQuNywxLjIsNy4xLDAuNw0KCWMwLjktMC4yLDEuOC0wLjYsMi43LTAuOGMwLjgtMC4yLDEuNS0wLjUsMi4zLTAuOGMxLjMtMC40LDIuNS0wLjMsMy43LDAuMmMwLjUsMC4yLDEsMC41LDEuNSwwLjdjMC42LDAuMywxLjIsMC41LDEuOCwwLjgNCgljMS4yLDAuNSwyLjQsMC42LDMuNiwwLjVjMC45LTAuMSwxLjgtMC4zLDIuNi0xYy0wLjMtMC42LTAuNi0xLjEtMS4xLTEuNWMtMS40LDAuOC0yLjksMC42LTQuMywwLjFjLTAuNi0wLjItMS4yLTAuNS0xLjctMC43DQoJYy0wLjctMC4zLTEuNS0wLjctMi4yLTFjLTEtMC40LTItMC41LTMtMC40Yy0xLDAuMS0xLjksMC40LTIuOSwwLjdjLTAuOSwwLjMtMS45LDAuNy0yLjgsMWMtMS42LDAuNS0zLjEsMC41LTQuNywwLjENCgljLTEuNy0wLjQtMy4yLTEuMi00LjYtMi4xYy0xLjctMS4xLTMuMS0yLjUtNC40LTQuMWMtNS45LTcuMy04LjItMTUuNi02LjYtMjQuOWMwLjQtMi42LDEuMy01LDIuNi03LjNjMC45LTEuNiwyLTMuMSwzLjUtNC4yDQoJYzMuMi0yLjUsNi43LTMuMywxMC42LTJjMS45LDAuNiwzLjYsMS42LDUuMSwyLjljMC4yLDAuMiwwLjUsMC40LDAuOCwwLjdjMC41LTAuNCwwLjktMC44LDEuMy0xLjRDNDEuMiwxNy40LDQxLjEsMTcuMyw0MSwxNy4yeg0KCSBNNjIuNiwzLjFjMC41LDEuMywwLjMsMi41LTAuMiwzLjdjLTAuMywwLjgtMC44LDEuNS0xLjQsMi4xYy0wLjgsMC44LTEuNiwxLjYtMi42LDIuMWMtMi40LDEuNC00LjksMi40LTcuNiwzDQoJYy0wLjgsMC4yLTEuNywwLjItMi41LDAuMWMtMC43LTAuMS0xLjMtMC4zLTEuOC0wLjhjLTAuNi0wLjYtMC44LTEuMi0wLjYtMmMwLjEtMC40LDAuMy0wLjgsMC41LTEuMmMwLjMtMC41LDAuNi0xLDEtMS41DQoJYzIuNy0zLjEsNi00LjksMTAuMS01LjZjMS4zLTAuMiwyLjYtMC4yLDMuOS0wLjJDNjEuOCwyLjgsNjIuMiwyLjgsNjIuNiwzLjF6IE02MC44LDQuOGMtMS4xLTAuMS0yLjEsMC0zLjEsMC4xDQoJYy0zLjUsMC42LTYuMywyLjItOC42LDQuOGMtMC4zLDAuMy0wLjYsMC43LTAuOCwxLjFjLTAuMiwwLjItMC4zLDAuNS0wLjMsMC44YzAuMiwwLjMsMC40LDAuMywwLjcsMC4zYzAuNiwwLDEuMywwLDEuOS0wLjENCgljMi42LTAuNSw0LjktMS41LDcuMi0yLjljMC44LTAuNSwxLjUtMS4xLDItMS44QzYwLjMsNi42LDYwLjcsNS45LDYwLjgsNC44eiIvPg0KPC9zdmc+DQo=);
    width: 70px;
    position: absolute;
    right: 50px;
    top: -35px;
    display: none !important;
  }
}

/* line 241, resources/assets/styles/layouts/_pages.scss */

body.single-team .content .page_title {
  line-height: 1.3;
  margin-top: 52px;
  margin-bottom: 24px;
  padding-left: 0;
}

@media (min-width: 768px) {
  /* line 241, resources/assets/styles/layouts/_pages.scss */

  body.single-team .content .page_title {
    line-height: 1.1;
    margin-top: 10px;
    margin-bottom: 50px;
    max-width: 65%;
    z-index: 1;
  }
}

@media (min-width: 768px) {
  /* line 254, resources/assets/styles/layouts/_pages.scss */

  body.single-team .content .page_title:before {
    content: '';
    left: -125px;
    top: -75px;
    -webkit-transform: rotate(90deg);
         -o-transform: rotate(90deg);
            transform: rotate(90deg);
    width: 220px;
    height: 122px;
    background: url(/web/20241017063026im_/http://paradigmco.com.au/wp-content/themes/paradigm/dist/images/home/pattern3.svg);
    background-size: 220px 122px;
  }
}

@media (min-width: 992px) {
  /* line 254, resources/assets/styles/layouts/_pages.scss */

  body.single-team .content .page_title:before {
    top: 5px;
    left: -114px;
  }
}

@media (min-width: 768px) {
  /* line 276, resources/assets/styles/layouts/_pages.scss */

  body.single-team .content .page_subtitle {
    margin-left: -60px;
  }

  /* line 279, resources/assets/styles/layouts/_pages.scss */

  body.single-team .content .page_subtitle ~ p,
  body.single-team .content .page_subtitle + ul,
  body.single-team .content .page_subtitle + p + ul {
    padding: 0;
  }

  /* line 286, resources/assets/styles/layouts/_pages.scss */

  body.single-team .content .page-header {
    margin-left: -60px;
  }
}

@media (min-width: 992px) {
  /* line 292, resources/assets/styles/layouts/_pages.scss */

  body.single-team .content .page_subtitle {
    padding-left: 0;
    margin-left: 0;
    margin-bottom: 40px;
  }

  /* line 297, resources/assets/styles/layouts/_pages.scss */

  body.single-team .content .page_subtitle:before {
    left: -125px;
  }
}

@media (min-width: 1200px) {
  /* line 305, resources/assets/styles/layouts/_pages.scss */

  body.single-team .main {
    max-width: 1160px;
    margin: 0 auto;
  }
}

/* line 313, resources/assets/styles/layouts/_pages.scss */

body.single-team.dr-paulette-maroun .content .page_title:before {
  background: url(/web/20241017063026im_/http://paradigmco.com.au/wp-content/themes/paradigm/dist/images/home/pattern1.svg);
}

@media (min-width: 992px) {
  /* line 317, resources/assets/styles/layouts/_pages.scss */

  body.single-team.dr-paulette-maroun .content .page-header:after {
    content: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iV2Fyc3R3YV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgdmlld0JveD0iMCAwIDc3LjggNjUuNSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNzcuOCA2NS41OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZmlsbDojMEEwQTBBO30NCjwvc3R5bGU+DQo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNNDQuNyw2NC40YzAuMS0yLjUtMC4xLTQuOS0wLjctNy4zYy0wLjItMC44LTAuNS0xLjctMC45LTIuNGMtMC42LTEtMS40LTEuNi0yLjUtMS44Yy0wLjgtMC4yLTEuNi0wLjItMi40LTAuMQ0KCWMtMC43LDAuMS0xLjMsMC4xLTIsMC4xYy0xLjQsMC4xLTIuNS0wLjYtMy4yLTEuOGMtMC41LTAuOS0wLjgtMS44LTEtMi44Yy0wLjItMS43LTAuNC0zLjMtMC42LTVjLTAuMi0xLjctMC41LTMuNC0wLjgtNQ0KCWMtMC4xLTAuNC0wLjEtMC44LTAuNC0xLjFjLTAuMywwLTAuNSwwLTAuOC0wLjFjLTAuOC0wLjEtMS42LTAuMS0yLjQtMC4yYy0wLjIsMC0wLjQtMC4xLTAuNi0wLjJjMC4xLTAuMywwLjItMC42LDAuMi0wLjgNCgljMS4zLTQuNSwyLjctOS4xLDQtMTMuNmMwLjktMywyLjEtNS45LDMuNi04LjdjMS4yLTIuMiwyLjctNC4yLDQuNC01LjljMS44LTEuNywzLjctMy4xLDYtNGM0LjctMS45LDkuNS0yLjEsMTQuNC0wLjgNCgljNC43LDEuMyw4LjYsMy44LDExLjcsNy42YzIuOSwzLjcsNC41LDcuOCw0LjksMTIuNWMwLjMsMi45LDAsNS43LTAuOCw4LjVjLTEuMSwzLjQtMyw2LjQtNS44LDguN2MtMS44LDEuNS0zLjksMi41LTYuMywyLjgNCgljLTAuMywwLTAuNiwwLTAuOSwwLjNjMC4yLDEuMiwwLjEsMi40LDAuNSwzLjdjMC43LTAuMSwxLjMsMC4xLDEuOS0wLjNjMC0wLjctMC4yLTEuMi0wLjEtMS45YzAuMy0wLjEsMC42LTAuMiwwLjgtMC4zDQoJYzEuNC0wLjQsMi44LTEsNC0xLjhjMS44LTEuMSwzLjMtMi42LDQuNi00LjNjMi45LTMuOCw0LjItOC4yLDQuMy0xM2MwLjEtMy4zLTAuNS02LjYtMS44LTkuN0M3NCwxMC41LDcwLjYsNi4yLDY1LjYsMy40DQoJYy01LjMtMy0xMC45LTQtMTYuOS0zYy01LDAuOS05LjIsMy4yLTEyLjYsN2MtMS40LDEuNS0yLjUsMy4yLTMuNSw1Yy0xLjYsMi44LTIuOCw1LjgtMy44LDguOWMtMS42LDUuMi0zLjEsMTAuNC00LjYsMTUuNg0KCWMtMC4xLDAuNC0wLjIsMC44LTAuNCwxLjNjMC4yLDAuMSwwLjMsMC4yLDAuNSwwLjJjMS4xLDAuMiwyLjIsMC4zLDMuMywwLjVjMC40LDAuMSwwLjgsMCwxLjIsMC4zYzAuMSwwLjksMC4zLDEuOCwwLjQsMi44DQoJYzAuMywyLjIsMC41LDQuNCwwLjgsNi41YzAuMiwxLjYsMC43LDMsMS43LDQuM2MxLDEuMywyLjQsMi4xLDQuMSwyLjFjMC44LDAsMS41LTAuMSwyLjMtMC4xYzAuNywwLDEuMy0wLjEsMiwwDQoJYzAuNiwwLjEsMSwwLjQsMS4yLDAuOWMwLjIsMC42LDAuNSwxLjIsMC43LDEuOGMwLjYsMi4yLDAuOCw0LjUsMC43LDYuN2MwLDAuMywwLDAuNiwwLDAuOWMwLjYsMC4xLDEuMiwwLjMsMS44LDAuMw0KCUM0NC43LDY1LjEsNDQuNyw2NC44LDQ0LjcsNjQuNHogTTM1LjksMi43Yy0yLjctMS41LTUuNy0yLjMtOC44LTIuNmMtMi40LTAuMi00LjctMC4xLTcuMSwwLjRjLTQuOCwxLTksMy4xLTEyLjUsNi41DQoJYy02LDYtOC45LDE1LjItNywyMy43YzAuOCwzLjYsMi40LDYuOSw0LjgsOS42YzIuMSwyLjQsNC43LDQuMiw3LjksNWMwLjIsMCwwLjQsMC4xLDAuNiwwLjJjMC4xLDAuNy0wLjMsMS40LDAsMg0KCWMwLjYsMC4xLDEuMiwwLjIsMS44LDAuMWMwLjEtMS4zLDAuMy0yLjUsMC4zLTMuOGMtMC42LTAuMS0xLjItMC4yLTEuNy0wLjNjLTIuNS0wLjUtNC42LTEuOC02LjQtMy41Yy0yLjYtMi41LTQuMi01LjUtNS4xLTguOQ0KCWMtMS0zLjgtMC45LTcuNywwLTExLjVDMy44LDE1LjIsNiwxMS4yLDkuNCw4YzQuMy00LDkuNC01LjksMTUuMy02YzMuOC0wLjEsNy4zLDAuOCwxMC42LDIuNmMwLjEsMC4xLDAuMywwLjEsMC41LDAuMg0KCWMwLjMtMC41LDAuNi0xLDEtMS42QzM2LjUsMywzNi4yLDIuOCwzNS45LDIuN3ogTTUyLjksMzguNmMxLjMtMC4yLDIuNi0wLjQsMy45LTAuNmMwLjIsMCwwLjQtMC4xLDAuNi0wLjINCgljLTAuMS0wLjMtMC4xLTAuNi0wLjItMC44Yy0xLjYtNS4zLTMuMi0xMC42LTQuOC0xNS45Yy0wLjktMy0yLjEtNS44LTMuNi04LjZjLTEtMS44LTIuMi0zLjUtMy41LTUuMWMtMC4yLTAuMy0wLjQtMC42LTAuOC0wLjgNCglDNDMuOSw3LjIsNDMuNSw3LjYsNDMsOGMwLjIsMC4yLDAuMywwLjQsMC41LDAuNmMxLjMsMS40LDIuMywzLDMuMyw0LjdjMS4zLDIuNCwyLjQsNC44LDMuMyw3LjRjMS42LDUsMy4xLDEwLjEsNC43LDE1LjINCgljMCwwLjIsMC4xLDAuMywwLjEsMC42Yy0xLjQsMC4yLTIuNywwLjMtNCwwLjNjLTAuMywwLjYtMC40LDEuMS0wLjUsMS43Yy0wLjUsMi4yLTAuNyw0LjUtMSw2LjdjLTAuMSwwLjgtMC4yLDEuNS0wLjMsMi4zDQoJYy0wLjIsMS43LTAuNywzLjMtMi4xLDQuNmMwLjQsMC41LDAuNywxLjEsMS4yLDEuNWMwLjctMC41LDEuMS0xLjEsMS41LTEuN2MwLjYtMS4xLDEtMi4yLDEuMi0zLjVjMC4zLTIuMSwwLjUtNC4yLDAuOC02LjINCgljMC4xLTEuMSwwLjMtMi4yLDAuNi0zLjNDNTIuNiwzOC43LDUyLjcsMzguNiw1Mi45LDM4LjZ6Ii8+DQo8L3N2Zz4NCg==);
  }
}

/* line 325, resources/assets/styles/layouts/_pages.scss */

body.single-team.janette-otoole .content .page_title:before {
  background: url(/web/20241017063026im_/http://paradigmco.com.au/wp-content/themes/paradigm/dist/images/home/pattern2.svg);
}

@media (min-width: 992px) {
  /* line 329, resources/assets/styles/layouts/_pages.scss */

  body.single-team.janette-otoole .content .page-header:after {
    content: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iV2Fyc3R3YV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgdmlld0JveD0iMCAwIDc3LjggNjUuNSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNzcuOCA2NS41OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZmlsbDojMEEwQTBBO30NCjwvc3R5bGU+DQo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNNjEuOCwxOS43YzEuMywwLjUsMi42LDAuNyw0LDAuNWMyLjEtMC4yLDMuNy0xLjYsNC4yLTMuNmMwLjMtMS4yLDAuMy0yLjQtMC4yLTMuNUM2OSwxMSw2Ny42LDkuNiw2NS40LDkuMg0KCWMtMS43LTAuMy0zLjMtMC4zLTUsMGMtMi4xLDAuNC00LjEsMS4yLTYsMi4yYy00LjMsMi41LTcuMyw2LjEtOS40LDEwLjZjLTEuNiwzLjUtMi4zLDcuMi0yLjQsMTFjMCwxLjcsMC4xLDMuNCwwLjEsNS4xDQoJYzAuMiwzLjUsMC42LDYuOSwxLjQsMTAuM2MwLjYsMi40LDEuMyw0LjgsMi4zLDcuMWMwLjEsMC4zLDAuMiwwLjcsMC42LDFjMC4zLTAuMiwwLjYtMC4zLDEtMC41YzAuMi0wLjEsMC40LTAuMiwwLjYtMC40DQoJYy0wLjEtMC4yLTAuMS0wLjMtMC4yLTAuNWMtMS44LTMuOS0yLjgtOC4xLTMuNC0xMi40Yy0wLjMtMS45LTAuNC0zLjgtMC41LTUuOGMtMC4yLTMtMC4xLTYsMC41LTljMC44LTMuOSwyLjQtNy40LDUtMTAuNQ0KCWMyLjQtMi44LDUuMi00LjgsOC43LTUuOWMxLjktMC42LDMuOC0wLjksNS43LTAuNWMxLDAuMiwxLjgsMC42LDIuNSwxLjRjMC43LDAuOSwxLDEuOSwxLDNjLTAuMSwxLjctMS4xLDIuOC0yLjgsMi45DQoJYy0wLjgsMC4xLTEuNi0wLjEtMi40LTAuM2MtMC4zLTAuMS0wLjUtMC4xLTAuOC0wLjJjLTAuMywwLjYtMC41LDEuMS0wLjcsMS43QzYxLjYsMTkuNiw2MS43LDE5LjcsNjEuOCwxOS43eiBNMzEuMyw1NS4zDQoJYzEuMi0yLjgsMi01LjYsMi42LTguNmMwLjktNC4zLDEuMi04LjYsMS4yLTEyLjljMC0yLjEtMC4yLTQuMi0wLjYtNi4zYy0wLjctMy42LTIuMS03LTQuMy0xMGMtMi41LTMuNS01LjgtNi4xLTkuOC03LjYNCgljLTIuMy0wLjktNC44LTEuMy03LjMtMC45Yy0xLjQsMC4yLTIuNywwLjctMy43LDEuOEM4LjEsMTIuMyw3LjUsMTQsNy43LDE2YzAuMiwyLjEsMS42LDMuNywzLjcsNC4yYzEuNiwwLjQsMy4yLDAuMiw0LjgtMC41DQoJYzAsMCwwLDAsMC4xLTAuMWMtMC4xLTAuNi0wLjMtMS4xLTAuNi0xLjdjLTAuMywwLjEtMC41LDAuMS0wLjgsMC4yYy0wLjgsMC4yLTEuNywwLjMtMi42LDAuMmMtMS40LTAuMS0yLjQtMS0yLjYtMi40DQoJYy0wLjEtMC40LTAuMS0wLjcsMC0xLjFjMC4xLTEuOCwxLjQtMy4zLDMtMy43YzEtMC4yLDItMC4zLDMuMS0wLjJjMi4zLDAuMiw0LjQsMC45LDYuMywyYzMuNCwxLjksNiw0LjcsNy45LDguMQ0KCWMyLDMuNywyLjksNy42LDMsMTEuOGMwLjEsNC4yLTAuMiw4LjUtMSwxMi42Yy0wLjYsMy4zLTEuNSw2LjQtMi45LDkuNGMtMC4xLDAuMi0wLjEsMC40LTAuMiwwLjZjMC41LDAuMywxLDAuNiwxLjYsMC45DQoJQzMxLDU2LjIsMzEuMSw1NS43LDMxLjMsNTUuM3oiLz4NCjwvc3ZnPg0K);
  }
}

/* line 337, resources/assets/styles/layouts/_pages.scss */

body.single-team.kathleen-murphy .content .page_title:before {
  background: url(/web/20241017063026im_/http://paradigmco.com.au/wp-content/themes/paradigm/dist/images/home/pattern4.svg);
}

@media (min-width: 992px) {
  /* line 341, resources/assets/styles/layouts/_pages.scss */

  body.single-team.kathleen-murphy .content .page-header:after {
    content: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iV2Fyc3R3YV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgdmlld0JveD0iMCAwIDc3LjggNjUuNSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNzcuOCA2NS41OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZmlsbDojMEEwQTBBO30NCjwvc3R5bGU+DQo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMjUuNSwyNC41Yy0wLjksMi42LTEuNiw3LjItMS4zLDljMC4xLDAsMC4yLDAuMSwwLjMsMGMxLjYtMC40LDMuMy0wLjQsNS0wLjVjMS41LTAuMSwzLTAuMyw0LjQtMC43DQoJYzMtMC44LDYtMSw5LTAuN2MwLjcsMC4xLDEuNCwwLjIsMi4yLDAuNGMxLjEsMC4zLDIsMC44LDIuNywxLjZjMC40LDAuNCwwLjcsMC44LDEuMSwxLjJjMC4zLDAuMywwLjUsMC42LDAuOCwwLjgNCgljMC41LDAuMSwwLjktMC4xLDEuMi0wLjRjMC4zLTAuMywwLjYtMC43LDAuOS0xLjFjMC45LTEuNCwxLjgtMi44LDIuNy00LjJjMC4xLTAuMiwwLjMtMC40LDAuNC0wLjVjMC4xLDAuMSwwLjEsMC4yLDAuMSwwLjINCglDNTUuMiw0MSw1NS40LDUyLjUsNTUuNiw2NGMwLDAuMS0wLjEsMC4yLTAuMSwwLjNjLTEuMywwLjItMi43LDAuNC00LjEsMC40Yy00LjMsMC4xLTguNC0wLjctMTIuMi0yLjYNCgljLTguOS00LjMtMTQuNS0xMS4zLTE2LjUtMjEuMUMyMS42LDM1LjMsMjIsMjkuNiwyMy42LDI0YzEuNy01LjgsNC40LTExLDguMy0xNS42YzAuOC0wLjksMS42LTEuOCwyLjUtMi42YzIuNy0yLjUsNS44LTQsOS40LTQuNw0KCWMxLjYtMC4zLDMuMi0wLjUsNC44LTAuNGMxLjMsMC4xLDIuNSwwLjMsMy43LDAuOGMxLjQsMC42LDIuNSwxLjYsMy4zLDNjMCwwLjEsMC4xLDAuMiwwLjEsMC4zYzAsMC4xLDAsMC4xLDAsMC4yDQoJYy0wLjUsMC4zLTEsMC41LTEuNiwwLjhjLTAuMS0wLjEtMC4yLTAuMi0wLjMtMC4zYy0wLjgtMS40LTIuMS0yLjItMy43LTIuNWMtMS4zLTAuMy0yLjYtMC4zLTMuOS0wLjJjLTEuMywwLjEtMi42LDAuNC0zLjksMC43DQoJYy0yLjcsMC43LTUsMi4yLTcuMSw0LjJjMCwwLTAuMSwwLjEtMC4xLDAuMmMwLjEsMC44LDAuMywxLjYsMC43LDIuM2MwLjUsMC45LDEsMS44LDEuNSwyLjZjMC41LDAuOCwxLjEsMS42LDEuNywyLjUNCgljMC42LDAuOSwxLjEsMS44LDEuNCwyLjdjMC40LDEuMiwwLjYsMi41LDAuMywzLjdjLTAuMSwwLjQtMC4zLDAuOC0wLjQsMS4xYy0wLjcsMS4zLTEuOSwxLjgtMy4zLDEuNGMtMC41LTAuMS0wLjktMC40LTEuNC0wLjYNCgljLTAuNS0wLjItMC45LTAuNS0xLjMtMC43Yy0yLjgtMS4zLTUuNC0xLTcuOCwwLjhDMjYuMiwyNCwyNS45LDI0LjIsMjUuNSwyNC41eiBNNDAuNyw0My43YzAuMSwwLjEsMC4yLDAuMSwwLjIsMC4xDQoJYzAsMC4xLDAuMSwwLjIsMC4xLDAuM2MwLjUsMS40LDAuNSwyLjgsMCw0LjJjLTAuNywxLjktMi43LDMuNy01LjIsMy42Yy0wLjUsMC0xLjEtMC4xLTEuNi0wLjJjLTAuNy0wLjEtMS4zLTAuMy0yLDANCgljLTAuNiwwLjUtMC43LDEtMC41LDEuN2MwLjEsMC4zLDAuMSwwLjYsMC4xLDFjMS45LDIsNC4xLDMuNyw2LjUsNWM0LjEsMi4zLDguNiwzLjQsMTMuMywzLjJjMC42LDAsMS4yLTAuMSwxLjktMC4yDQoJYzAtMC40LDAtMC44LDAtMS4xYy0wLjEtMy41LTAuMS03LTAuMi0xMC41Yy0wLjEtNC43LTAuMi05LjQtMC4yLTE0LjFjMC0wLjIsMC4xLTAuNS0wLjItMC44Yy0wLjIsMC4xLTAuMywwLjMtMC40LDAuNA0KCWMtMC4zLDAuMi0wLjYsMC41LTAuOSwwLjdjLTEuMiwwLjctMi42LDAuOC0zLjctMC41Yy0wLjQtMC41LTAuOC0wLjktMS4yLTEuM2MtMC43LTAuOC0xLjUtMS4zLTIuNi0xLjVjLTAuNS0wLjEtMC45LTAuMi0xLjQtMC4yDQoJYy0yLjktMC4zLTUuNy0wLjEtOC41LDAuN2MtMS41LDAuNC0zLDAuNi00LjUsMC43Yy0xLjQsMC4xLTIuOCwwLjItNC4yLDAuNGMtMC41LDAtMC45LDAuMS0xLjMsMC40Yy0wLjIsMS42LDAuNCw1LjMsMS4yLDguMQ0KCWMwLjksMywyLjMsNS43LDQuMiw4LjJjMC4yLTAuMywwLjMtMC41LDAuNC0wLjdjMC42LTEuMSwxLjYtMS42LDIuOC0xLjZjMC41LDAsMS4xLDAuMSwxLjYsMC4yYzAuNSwwLDAuOSwwLjEsMS40LDAuMQ0KCWMxLjQsMC4xLDIuNy0wLjksMy4yLTIuMmMwLjMtMC44LDAuNC0xLjcsMC4xLTIuNmMtMC4xLTAuMi0wLjEtMC40LTAuMS0wLjdDMzkuNiw0NC4yLDQwLjIsNDQsNDAuNyw0My43eiBNMzguMiwyMi4zDQoJYzAuMy0wLjIsMC41LTAuNSwwLjYtMC45YzAuMi0wLjYsMC4yLTEuMSwwLjEtMS43Yy0wLjItMS0wLjUtMS45LTEuMS0yLjdjLTAuNi0xLTEuMy0xLjktMi0yLjljLTAuOS0xLjMtMS43LTIuNi0yLjItNA0KCWMwLTAuMS0wLjEtMC4yLTAuMi0wLjRjLTAuMiwwLjItMC40LDAuNC0wLjYsMC42Yy0wLjcsMS0xLjUsMi0yLjIsM2MtMS42LDIuMy0yLjgsNC43LTMuOSw3LjNjLTAuMSwwLjItMC4yLDAuNCwwLDAuNQ0KCWMwLjItMC4xLDAuNC0wLjEsMC41LTAuMmMxLjYtMC43LDMuMy0wLjksNS4xLTAuNmMxLDAuMiwxLjksMC41LDIuOCwxYzAuNSwwLjMsMS4xLDAuNiwxLjYsMC44QzM3LjMsMjIuMywzNy43LDIyLjUsMzguMiwyMi4zeiIvPg0KPC9zdmc+DQo=);
  }
}

/* line 349, resources/assets/styles/layouts/_pages.scss */

body.single-team.rachelle-tannous .content .page_title:before {
  background: url(/web/20241017063026im_/http://paradigmco.com.au/wp-content/themes/paradigm/dist/images/home/pattern5.svg);
}

@media (min-width: 992px) {
  /* line 353, resources/assets/styles/layouts/_pages.scss */

  body.single-team.rachelle-tannous .content .page-header:after {
    content: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iV2Fyc3R3YV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgdmlld0JveD0iMCAwIDc3LjggNjUuNSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNzcuOCA2NS41OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZmlsbDojMEEwQTBBO30NCjwvc3R5bGU+DQo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMTYuNSwyMS44Yy0wLjUsMS44LTAuNywzLjYtMC42LDUuNGMwLjIsMi45LDAuOSw1LjYsMi4yLDguMmMwLjQsMC44LDAuOSwxLjYsMS42LDIuMmMwLjUsMC41LDEsMC45LDEuNSwxLjMNCgljMi4yLDEuNiw0LjQsMy4yLDYuNyw0LjdjMC45LDAuNiwxLjgsMS4yLDIuNywxLjhjMS4zLDAuOSwyLjIsMi4xLDIuOCwzLjVjMC41LDEuMywwLjgsMi42LDEsNGMwLjIsMS42LDAuMiwzLjEsMC4yLDQuNw0KCWMwLDAuMywwLDAuNywwLDFjMC43LDAuMiwxLjMsMC4yLDEuOSwwYzAtMC4yLDAuMS0wLjIsMC4xLTAuM2MwLjEtMiwwLTMuOS0wLjItNS45Yy0wLjItMS4zLTAuNS0yLjYtMS0zLjkNCgljLTAuOC0xLjktMS45LTMuNi0zLjctNC44Yy0wLjctMC41LTEuNC0xLTIuMS0xLjVjLTIuMy0xLjQtNC40LTMtNi42LTQuNWMtMC42LTAuNC0xLjItMC45LTEuNy0xLjRjLTAuNi0wLjUtMS4xLTEuMi0xLjQtMS45DQoJYy0wLjMtMC44LTAuNy0xLjUtMS0yLjNjLTEuMS0zLjMtMS40LTYuNi0wLjUtOS45YzAuMS0wLjIsMC4yLTAuNCwwLjMtMC43YzEuNCwwLjQsMi44LDAuOCw0LjIsMS4yYzAuOSwwLjMsMS43LDAuNywyLjQsMS41DQoJYzAuMSwwLjEsMC4yLDAuMiwwLjMsMC4zYzAuNS0wLjQsMS0wLjcsMS41LTEuMWMtMC4zLTAuNi0wLjctMC45LTEuMi0xLjNjLTAuOS0wLjctMS45LTEuMS0zLTEuNUMyMS45LDIwLjUsMjEsMjAuMiwyMCwyMA0KCWMtMC4yLTAuMS0wLjQtMC4yLTAuNi0wLjNjMC4xLTAuMiwwLjEtMC4zLDAuMS0wLjNjMC4xLTAuMiwwLjItMC40LDAuMy0wLjZjMS4yLTIuMSwyLjgtMy44LDQuNi01LjNjMy41LTIuOCw3LjYtNC4zLDEyLTQuNw0KCWMzLjQtMC4zLDYuNywwLjIsOS44LDEuNWM0LjYsMS45LDgsNS4yLDEwLjQsOS41YzAuMSwwLjEsMC4xLDAuMiwwLjIsMC40Yy0wLjIsMC4xLTAuNSwwLjItMC43LDAuMmMtMC42LDAuMi0xLjIsMC4zLTEuOCwwLjQNCgljLTEuMiwwLjQtMi40LDAuOS0zLjMsMS43Yy0wLjMsMC4zLTAuNiwwLjUtMC44LDAuOWMwLjIsMC4yLDAuNCwwLjQsMC43LDAuNmMwLjMsMC4yLDAuNSwwLjUsMC44LDAuNWMwLjgtMC44LDEuNy0xLjQsMi44LTEuOA0KCWMxLjItMC40LDIuNi0wLjcsMy4zLTAuNmMwLjUsMS4xLDAuOCwyLjMsMC45LDMuNmMwLjMsNS45LTIsMTAuNS02LjksMTMuN2MtMC43LDAuNC0xLjQsMC44LTIuMSwxLjJjLTEuMywwLjgtMi42LDEuNi00LDIuMw0KCWMtMS43LDEtMywyLjUtMy45LDQuM2MtMS43LDMuNC0yLjEsNy0xLjIsMTAuN2MwLjEsMC4yLDAuMiwwLjUsMC4zLDAuN2MwLjYtMC4xLDEuMi0wLjMsMS44LTAuNmMtMC4xLTAuNC0wLjItMC43LTAuMi0xLjENCgljLTAuNi0zLjItMC4yLTYuMiwxLjMtOS4xYzAuNy0xLjMsMS43LTIuNSwzLTMuM2MwLjctMC40LDEuNC0wLjksMi4xLTEuM2MxLjItMC43LDIuNC0xLjQsMy42LTJjNi41LTMuNyw5LjgtMTEuNyw3LjYtMTguOQ0KCWMtMC4xLTAuMi0wLjEtMC40LTAuMi0wLjZjMC4xLTAuMSwwLjEtMC4xLDAuMi0wLjFjMC4zLTAuMSwwLjYtMC4xLDAuOS0wLjJjNS4yLTEuNCw4LjMtNC44LDkuNS0xMGMwLjEtMC42LDAuMi0xLjIsMC4yLTEuOQ0KCWMtMC43LDAtMS4zLTAuMS0xLjksMC4xYy0wLjIsMi43LTEuMiw0LjktMyw2LjljLTEuOSwyLTQuNywzLjMtNi44LDMuMmMtMC4xLTAuMi0wLjMtMC41LTAuNC0wLjhjLTEuOC0zLjItNC4xLTYtNy4xLTguMg0KCWMtNC40LTMuMi05LjItNC41LTE0LjYtNC4xQzMzLDYuOSwyOS40LDgsMjYsMTBjLTMuNSwyLTYuMyw0LjgtOC4yLDguNGMtMC4xLDAuMi0wLjIsMC4zLTAuMywwLjVjLTAuMi0wLjEtMC41LTAuMi0wLjctMC4zDQoJYy0xLjQtMC43LTIuNy0xLjUtMy45LTIuNWMtMC42LTAuNS0xLjItMS0xLjctMS42Yy0xLjItMS4zLTItMi44LTIuMi00LjVDOS4xLDkuOSw5LDkuOCw5LDkuNkM4LjMsOS41LDcuNyw5LjUsNy4xLDkuNw0KCWMwLDEsMC4yLDIsMC42LDIuOWMwLjcsMS44LDEuOCwzLjIsMy4yLDQuNWMxLjUsMS4zLDMuMSwyLjQsNC45LDMuM2MwLjMsMC4xLDAuNiwwLjMsMC45LDAuNUMxNi42LDIxLjIsMTYuNiwyMS41LDE2LjUsMjEuOHoiLz4NCjwvc3ZnPg0K);
  }
}

/* line 361, resources/assets/styles/layouts/_pages.scss */

body.single-team.dr-matthew-peres .content .page_title:before {
  background: url(/web/20241017063026im_/http://paradigmco.com.au/wp-content/themes/paradigm/dist/images/home/pattern6.svg);
}

@media (min-width: 992px) {
  /* line 365, resources/assets/styles/layouts/_pages.scss */

  body.single-team.dr-matthew-peres .content .page-header:after {
    content: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iV2Fyc3R3YV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgdmlld0JveD0iMCAwIDc3LjggNjUuNSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNzcuOCA2NS41OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZmlsbDojMEEwQTBBO30NCjwvc3R5bGU+DQo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNNTcuMiw1Mi4xYzAuNS0wLjYsMC41LTEuMywwLjQtMmMtMC4yLTEuMy0wLjctMi41LTEuNC0zLjZjLTAuOC0xLjItMS43LTIuMi0yLjgtMy4xYy0xLjItMS0yLjUtMS45LTMuOC0yLjcNCgljLTEtMC42LTIuMS0xLTMuMy0xLjJjLTEuMy0wLjItMi42LTAuNC0zLjktMC4xYy0wLjMsMC4xLTAuNywwLjEtMSwwLjJjLTAuOSwwLjMtMS42LDAuNy0yLjIsMS40Yy0wLjksMS0xLjUsMi0xLjgsMy4zDQoJYzAsMC4xLTAuMSwwLjMtMC4xLDAuNGMtMC42LDAuMS0xLjItMC4xLTEuOC0wLjNjLTAuMS0wLjQsMC4xLTAuOCwwLjItMS4xYzAuNi0xLjgsMS43LTMuMywzLjEtNC41YzEtMC44LDIuMi0xLjIsMy41LTEuNA0KCWMzLjItMC40LDYuMiwwLjEsOSwxLjljMS43LDEuMSwzLjQsMi4zLDQuOSwzLjhjMC44LDAuOCwxLjUsMS44LDIuMSwyLjhjMC43LDEuMiwxLjIsMi42LDEuNCw0YzAuMSwwLjcsMC4xLDEuNS0wLjEsMi4yDQoJYy0wLjUsMS45LTIuMywyLjYtNCwxLjdjLTAuNi0wLjMtMS4xLTAuOC0xLjUtMS4zYy0wLjQtMC41LTAuNy0xLjEtMS0xLjZjLTAuNS0wLjctMS0xLjQtMS41LTIuMWMtMC41LTAuNi0xLjEtMS4xLTEuOC0xLjMNCgljLTEuMS0wLjUtMi4yLTAuMy0zLDAuNmMtMC42LDAuNS0xLDEuMi0xLjMsMS45Yy0wLjQsMC44LTAuNywxLjYtMS4xLDIuM2MtMC41LDAuOS0xLDEuOS0xLjUsMi44Yy0wLjUsMC43LTEsMS40LTEuNiwyDQoJYy0yLDIuMS00LjUsMi43LTcuMywxLjljLTEtMC4zLTEuOS0wLjctMi44LTEuM2MtMC42LTAuNC0xLjItMC45LTEuOC0xLjRjLTIuMi0xLjktNC4xLTQuMS01LjgtNi41Yy0xLjQtMi4xLTIuNi00LjQtMy4zLTYuOA0KCWMtMC43LTIuMi0xLjItNC41LTEuNi02LjhjLTAuNy00LjgsMC4xLTkuMywyLjgtMTMuNGMwLjEtMC4yLDAuMy0wLjUsMC40LTAuN2MwLDAsMC0wLjEsMC0wLjFjLTQuNy00LjctMy4zLTEwLjQtMC42LTEzLjINCgljMy4xLTMuMyw4LjEtMy44LDExLjgtMS4xYzMuNywyLjcsNC45LDcuNywyLjgsMTEuOGMtMS44LDMuNS02LjYsNi40LTEyLjMsMy44Yy0wLjEsMC4yLTAuMywwLjMtMC40LDAuNWMtMi4yLDMuMy0zLjEsNi45LTIuNywxMC44DQoJYzAuMywzLjIsMS4xLDYuNCwyLjIsOS40YzAuNiwxLjgsMS42LDMuNSwyLjcsNS4xYzEuNCwyLDMsMy44LDQuOCw1LjVjMC45LDAuOCwxLjksMS42LDMsMi4yYzAuOSwwLjUsMS44LDAuNywyLjksMC43DQoJYzEuMywwLDIuMy0wLjQsMy4zLTEuM2MwLjYtMC41LDEuMS0xLjEsMS41LTEuOGMwLjYtMS4xLDEuMi0yLjEsMS44LTMuMmMwLjQtMC43LDAuNy0xLjQsMS0yLjFjMC40LTAuOCwwLjgtMS41LDEuNC0yLjENCgljMS42LTEuOCwzLjgtMi4xLDUuOS0xYzAuOSwwLjUsMS43LDEuMSwyLjMsMS45YzAuNiwwLjgsMS4yLDEuNywxLjgsMi42YzAuMywwLjQsMC42LDAuOSwwLjksMS4zQzU2LjIsNTIuMSw1Ni42LDUyLjQsNTcuMiw1Mi4xeg0KCSBNMzQuNywxNS4yYzAtNC0zLjItNy4yLTcuMi03LjJjLTMuOSwwLTcsMy4yLTcsNy4xYzAsMy44LDMsNy4yLDcuMiw3LjJDMzIsMjIuMywzNC43LDE4LjcsMzQuNywxNS4yeiBNMzcsMjcuNQ0KCWMxLjUtMS41LDIuOS0zLDQuMi00LjZjMC40LTAuNSwwLjgtMC45LDEuMy0xLjRjMC40LTAuNCwwLjgtMC42LDEuMy0wLjZjMC43LDAsMS4yLDAuMywxLjMsMWMwLjEsMC41LDAuMSwwLjktMC4xLDEuNA0KCWMtMC4yLDAuNC0wLjMsMC45LTAuNiwxLjNjLTAuOCwxLjMtMS42LDIuNi0yLjUsMy44Yy0wLjYsMC45LTEuNCwxLjctMi4yLDIuNWMtMSwxLTIuMiwxLjgtMy41LDIuM2MtMiwwLjgtMy45LDAuOS01LjksMA0KCWMtMC4xLDAtMC4yLDAtMC4zLDBjLTAuMywwLjUtMC42LDEtMC45LDEuNmMwLjEsMC4xLDAuMiwwLjIsMC40LDAuMmMwLjksMC41LDEuOSwwLjcsMywwLjhjMi41LDAuMSw0LjgtMC42LDYuOS0yDQoJYzEuMy0wLjksMi41LTIsMy41LTMuM2MxLjMtMS42LDIuNC0zLjMsMy41LTUuMWMwLjItMC40LDAuNC0wLjgsMC42LTEuM2MwLjMtMC43LDAuMy0xLjUsMC4zLTIuM2MtMC4yLTEuNS0xLjQtMy4xLTMuNC0yLjkNCgljLTAuOSwwLjEtMS43LDAuNC0yLjQsMWMtMC42LDAuNS0xLjEsMS0xLjUsMS42Yy0xLjQsMS43LTIuOSwzLjMtNC40LDQuOWMtMC4yLDAuMi0wLjMsMC4zLTAuNSwwLjZjMC40LDAuNSwwLjgsMC45LDEuMywxLjQNCglDMzYuNSwyOCwzNi43LDI3LjgsMzcsMjcuNXoiLz4NCjwvc3ZnPg0K);
  }
}

/* line 376, resources/assets/styles/layouts/_pages.scss */

body.template-team .content {
  padding-left: 0;
  padding-right: 0;
}

/* line 380, resources/assets/styles/layouts/_pages.scss */

body.template-team .content .main {
  max-width: none;
}

/* line 384, resources/assets/styles/layouts/_pages.scss */

body.template-team .content .pp-scrollable {
  padding: 0 20px 58px;
}

@media (min-width: 992px) {
  /* line 384, resources/assets/styles/layouts/_pages.scss */

  body.template-team .content .pp-scrollable {
    padding-right: 105px;
  }
}

/* line 391, resources/assets/styles/layouts/_pages.scss */

body.template-team .content .pp-scrollable .home-practitioners {
  padding-top: 50px;
}

/* line 1, resources/assets/styles/layouts/_tinymce.scss */

body#tinymce {
  margin: 12px !important;
}

/* line 1, resources/assets/styles/layouts/_home.scss */

.home-welcome {
  padding: 30px;
}

/* line 4, resources/assets/styles/layouts/_home.scss */

.home-welcome h3 {
  color: #aaa;
  font-size: 20px;
  padding: 30px 0;
}

/* Navigaton bullets styles
* --------------------------------------- */

/* line 13, resources/assets/styles/layouts/_home.scss */

#pp-nav li .active span,
.pp-slidesNav .active span {
  background: #bbb;
}

/* line 16, resources/assets/styles/layouts/_home.scss */

#pp-nav span,
.pp-slidesNav span {
  border-color: #bbb !important;
}

/* line 20, resources/assets/styles/layouts/_home.scss */

#slide-overlay {
  display: none;
  height: 100%;
  width: 100%;
  background-color: #000;
  position: absolute;
  z-index: 10;
  top: 0;
}

/* line 31, resources/assets/styles/layouts/_home.scss */

#pagepiling .section:not(#section4) {
  background-attachment: fixed;
  background-size: cover;
  background-position: 50% 0%;
  background-repeat: no-repeat;
  cursor: pointer;
  overflow: hidden;
}

/* line 39, resources/assets/styles/layouts/_home.scss */

#pagepiling .section:not(#section4) .slide-bg {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (min-width: 992px) {
  /* line 39, resources/assets/styles/layouts/_home.scss */

  #pagepiling .section:not(#section4) .slide-bg {
    -webkit-animation: move 55s infinite ease;
         -o-animation: move 55s infinite ease;
            animation: move 55s infinite ease;
  }
}

/* line 48, resources/assets/styles/layouts/_home.scss */

#pagepiling .section:not(#section4) .slide-overlay,
#pagepiling .section:not(#section4) #slide-overlay {
  display: none;
  height: 100%;
  width: 100%;
  background-color: #000;
  position: absolute;
  z-index: 10;
  top: 0;
}

/* line 59, resources/assets/styles/layouts/_home.scss */

#pagepiling .section:not(#section4) .intro {
  bottom: 20px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 3;
  color: #fff;
  position: absolute;
}

@media (min-width: 768px) {
  /* line 59, resources/assets/styles/layouts/_home.scss */

  #pagepiling .section:not(#section4) .intro {
    bottom: 50%;
    width: 90%;
    left: 10%;
    -webkit-transform: none;
         -o-transform: none;
            transform: none;
  }
}

/* line 77, resources/assets/styles/layouts/_home.scss */

#pagepiling .section:not(#section4) .intro h1 {
  font-size: 36px;
  margin-bottom: 30px;
  font-family: 'Axiforma-Bold';
  line-height: 1.1;
  color: #fff;
}

@media (min-width: 768px) {
  /* line 77, resources/assets/styles/layouts/_home.scss */

  #pagepiling .section:not(#section4) .intro h1 {
    font-size: 78px;
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  /* line 77, resources/assets/styles/layouts/_home.scss */

  #pagepiling .section:not(#section4) .intro h1 {
    font-size: 110px;
  }
}

/* line 91, resources/assets/styles/layouts/_home.scss */

#pagepiling .section:not(#section4) .intro h1 + p {
  font-family: 'Axiforma-Bold';
  font-size: 12px;
  text-align: center;
  margin-top: 14px;
  line-height: 1.375;
}

@media (min-width: 768px) {
  /* line 91, resources/assets/styles/layouts/_home.scss */

  #pagepiling .section:not(#section4) .intro h1 + p {
    font-size: 24px;
    text-align: left;
    margin-top: 0;
  }
}

/* line 106, resources/assets/styles/layouts/_home.scss */

#pagepiling .section:not(#section4):before {
  content: '';
  position: absolute;
  background: #000;
  width: 100%;
  height: 130px;
  z-index: 3;
  bottom: 0;
}

@media (min-width: 768px) {
  /* line 106, resources/assets/styles/layouts/_home.scss */

  #pagepiling .section:not(#section4):before {
    display: none;
  }
}

/* line 121, resources/assets/styles/layouts/_home.scss */

#pagepiling #section1:after,
#pagepiling #section2:after,
#pagepiling #section3:after {
  background: rgba(7, 3, 2, 0.2);
  width: 100%;
  height: 100%;
  position: absolute;
  content: '';
  top: 0;
  left: 0;
}

/* line 133, resources/assets/styles/layouts/_home.scss */

#pagepiling #section4 {
  cursor: default;
}

/* line 136, resources/assets/styles/layouts/_home.scss */

#pagepiling #section4 .content {
  top: 100%;
  position: absolute;
  left: 0;
  padding: 0 20px;
}

@media (min-width: 992px) {
  /* line 136, resources/assets/styles/layouts/_home.scss */

  #pagepiling #section4 .content {
    position: relative;
    padding: 0 4px;
    padding-right: 90px;
  }
}

/* line 148, resources/assets/styles/layouts/_home.scss */

#pagepiling #section4 .intro {
  color: #fff;
}

/* line 153, resources/assets/styles/layouts/_home.scss */

#pagepiling .slider_logo {
  position: absolute;
  z-index: 5;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  top: 35px;
}

/* line 160, resources/assets/styles/layouts/_home.scss */

#pagepiling .slider_logo svg {
  width: 195px;
}

@media (min-width: 768px) {
  /* line 160, resources/assets/styles/layouts/_home.scss */

  #pagepiling .slider_logo svg {
    width: 225px;
  }
}

@media (min-width: 992px) {
  /* line 160, resources/assets/styles/layouts/_home.scss */

  #pagepiling .slider_logo svg {
    fill: #fff;
    width: 270px;
  }
}

/* line 173, resources/assets/styles/layouts/_home.scss */

#pagepiling .sidebar_menu-mobile {
  position: absolute;
  top: 40px;
  right: 9px;
  font-family: 'Axiforma-Bold';
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
  color: #000;
  cursor: pointer;
  z-index: 5;
}

/* line 184, resources/assets/styles/layouts/_home.scss */

#pagepiling .slider_sidebar {
  width: 100%;
  height: 140px;
  bottom: 0;
  position: absolute;
  z-index: 6;
}

@media (min-width: 768px) {
  /* line 184, resources/assets/styles/layouts/_home.scss */

  #pagepiling .slider_sidebar {
    background: transparent;
    right: 0;
    height: 100%;
    width: 70px;
    -webkit-transition: all .7s ease-in-out;
    -o-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
  }
}

@media (min-width: 992px) {
  /* line 184, resources/assets/styles/layouts/_home.scss */

  #pagepiling .slider_sidebar {
    width: 85px;
  }
}

/* line 204, resources/assets/styles/layouts/_home.scss */

#pagepiling .slider_sidebar .slider_sidebar_menu {
  position: absolute;
  top: 40px;
  right: 9px;
  font-family: 'Axiforma-Bold';
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
  color: #000;
  cursor: pointer;
}

@media (min-width: 992px) {
  /* line 204, resources/assets/styles/layouts/_home.scss */

  #pagepiling .slider_sidebar .slider_sidebar_menu {
    top: 48px;
    right: 20px;
    color: #fff;
  }
}

/* line 220, resources/assets/styles/layouts/_home.scss */

#pagepiling .slider_sidebar .slider_navigation {
  top: 50%;
  position: absolute;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
  text-align: center;
  width: 100%;
}

@media (min-width: 768px) {
  /* line 220, resources/assets/styles/layouts/_home.scss */

  #pagepiling .slider_sidebar .slider_navigation {
    width: 55px;
  }
}

@media (min-width: 992px) {
  /* line 220, resources/assets/styles/layouts/_home.scss */

  #pagepiling .slider_sidebar .slider_navigation {
    width: 85px;
  }
}

/* line 234, resources/assets/styles/layouts/_home.scss */

#pagepiling .slider_sidebar .slider_navigation .slider_navigation_counter {
  display: none;
  margin: 48px 0;
  color: #fff;
}

@media (min-width: 768px) {
  /* line 234, resources/assets/styles/layouts/_home.scss */

  #pagepiling .slider_sidebar .slider_navigation .slider_navigation_counter {
    display: block;
  }
}

/* line 245, resources/assets/styles/layouts/_home.scss */

#pagepiling .slider_sidebar .slider_navigation a {
  cursor: pointer;
}

/* line 248, resources/assets/styles/layouts/_home.scss */

#pagepiling .slider_sidebar .slider_navigation a img {
  width: 16px;
}

@media (max-width: 767.98px) {
  /* line 252, resources/assets/styles/layouts/_home.scss */

  #pagepiling .slider_sidebar .slider_navigation a#arrow-up {
    float: left;
    padding-left: 30px;
  }

  /* line 257, resources/assets/styles/layouts/_home.scss */

  #pagepiling .slider_sidebar .slider_navigation a#arrow-up img {
    -webkit-transform: rotate(-90deg);
         -o-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}

@media (max-width: 767.98px) {
  /* line 263, resources/assets/styles/layouts/_home.scss */

  #pagepiling .slider_sidebar .slider_navigation a#arrow-down {
    float: right;
    padding-right: 30px;
  }

  /* line 268, resources/assets/styles/layouts/_home.scss */

  #pagepiling .slider_sidebar .slider_navigation a#arrow-down img {
    -webkit-transform: rotate(-90deg);
         -o-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}

/* line 275, resources/assets/styles/layouts/_home.scss */

#pagepiling .slider_sidebar .slider_navigation #arrow-up.disabled {
  opacity: .3;
  cursor: default;
}

/* line 280, resources/assets/styles/layouts/_home.scss */

#pagepiling .slider_sidebar .slider_navigation .arrow-down-double {
  cursor: pointer;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  bottom: -30px;
  width: 16px;
  height: 25px;
}

/* line 288, resources/assets/styles/layouts/_home.scss */

#pagepiling .slider_sidebar .slider_navigation .arrow-down-double img {
  width: 16px;
  position: absolute;
  bottom: 0;
}

/* line 293, resources/assets/styles/layouts/_home.scss */

#pagepiling .slider_sidebar .slider_navigation .arrow-down-double img + img {
  bottom: -5px;
}

/* line 300, resources/assets/styles/layouts/_home.scss */

#pagepiling .slider_sidebar .slider_sidebar_social {
  position: absolute;
  bottom: 40px;
  width: 55px;
  text-align: center;
  display: none;
}

@media (min-width: 992px) {
  /* line 300, resources/assets/styles/layouts/_home.scss */

  #pagepiling .slider_sidebar .slider_sidebar_social {
    display: block;
    width: 85px;
  }
}

/* line 312, resources/assets/styles/layouts/_home.scss */

#pagepiling .slider_sidebar .slider_sidebar_social .sidebar-social-item {
  margin-bottom: 18px;
}

/* line 315, resources/assets/styles/layouts/_home.scss */

#pagepiling .slider_sidebar .slider_sidebar_social .sidebar-social-item svg {
  width: 18px;
  fill: #fff;
  -webkit-transition: all .7s ease-in-out;
  -o-transition: all .7s ease-in-out;
  transition: all .7s ease-in-out;
}

@media (max-width: 991.98px) {
  /* line 324, resources/assets/styles/layouts/_home.scss */

  #pagepiling:after {
    content: '';
    position: absolute;
    background: #fff;
    width: 100%;
    height: 100px;
    z-index: 4;
  }
}

@media (min-width: 992px) {
  /* line 336, resources/assets/styles/layouts/_home.scss */

  #pagepiling.afterslider .slider_logo {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  /* line 342, resources/assets/styles/layouts/_home.scss */

  #pagepiling.afterslider .slider_sidebar {
    z-index: 0;
  }
}

@media (min-width: 992px) {
  /* line 349, resources/assets/styles/layouts/_home.scss */

  #pagepiling.afterslider .slider_sidebar {
    background: #fff;
    -webkit-box-shadow: 1px 2px 15px 3px rgba(0, 0, 0, 0.08);
            box-shadow: 1px 2px 15px 3px rgba(0, 0, 0, 0.08);
  }

  /* line 352, resources/assets/styles/layouts/_home.scss */

  #pagepiling.afterslider .slider_sidebar .slider_sidebar_menu {
    color: #1a1818;
  }

  /* line 356, resources/assets/styles/layouts/_home.scss */

  #pagepiling.afterslider .slider_sidebar .slider_sidebar_social .sidebar-social-item svg {
    fill: #1a1818;
  }
}

/* line 365, resources/assets/styles/layouts/_home.scss */

#pp-nav {
  display: none;
}

/* Content page
 * --------------------------------------- */

/* line 372, resources/assets/styles/layouts/_home.scss */

.pp-scrollable {
  padding: 85px 16px 58px;
}

/* line 375, resources/assets/styles/layouts/_home.scss */

.pp-scrollable .home_title {
  font-size: 33px;
  line-height: 1;
  margin-bottom: 24px;
  font-family: 'Axiforma-SemiBold';
}

@media (min-width: 768px) {
  /* line 375, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home_title {
    font-size: 78px;
    padding-left: 120px;
    position: relative;
    margin-bottom: 50px;
  }
}

@media (min-width: 768px) {
  /* line 388, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home_title:before {
    content: url(/web/20241017063026im_/http://paradigmco.com.au/wp-content/themes/paradigm/dist/images/pattern-main.svg);
    position: absolute;
    left: 245px;
    top: -30px;
    z-index: -1;
    width: 342px;
  }
}

/* line 400, resources/assets/styles/layouts/_home.scss */

.pp-scrollable .home_subtitle {
  font-size: 24px;
  position: relative;
  font-family: 'Axiforma-SemiBold';
  line-height: 1.375;
}

@media (min-width: 768px) {
  /* line 406, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home_subtitle.home_subtitle-phone {
    position: relative;
    padding-left: 170px;
  }

  /* line 411, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home_subtitle.home_subtitle-phone:after {
    background: #1a1818;
    width: 100px;
    height: 2px;
    content: " ";
    position: absolute;
    top: 16px;
    left: 40px;
  }
}

/* line 424, resources/assets/styles/layouts/_home.scss */

.pp-scrollable .home-practitioners {
  padding: 80px 0 0;
  color: #1a1818;
}

@media (max-width: 991.98px) {
  /* line 424, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners {
    padding-top: 140px;
  }
}

/* line 431, resources/assets/styles/layouts/_home.scss */

.pp-scrollable .home-practitioners .practitioners-header,
.pp-scrollable .home-practitioners .team {
  max-width: 1195px;
  margin: 0 auto;
}

/* line 436, resources/assets/styles/layouts/_home.scss */

.pp-scrollable .home-practitioners .practitioners-header .col-lg-6,
.pp-scrollable .home-practitioners .team .col-lg-6 {
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 992px) {
  /* line 442, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .collaboration {
    max-width: 1195px;
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {
  /* line 449, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .team + .team {
    margin-top: 110px;
  }
}

/* line 455, resources/assets/styles/layouts/_home.scss */

.pp-scrollable .home-practitioners .home_subtitle {
  padding-left: 30px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  /* line 455, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .home_subtitle {
    padding-left: 170px;
  }
}

/* line 463, resources/assets/styles/layouts/_home.scss */

.pp-scrollable .home-practitioners .home_subtitle:before {
  background: #1a1818;
  width: 16px;
  height: 2px;
  content: " ";
  position: absolute;
  top: 16px;
  left: 0;
}

@media (min-width: 768px) {
  /* line 463, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .home_subtitle:before {
    width: 140px;
  }
}

@media (min-width: 768px) {
  /* line 476, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .home_subtitle + p {
    padding-left: 170px;
    padding-bottom: 65px;
  }
}

/* line 485, resources/assets/styles/layouts/_home.scss */

.pp-scrollable .home-practitioners .member-left .team_wrapper {
  max-width: 465px;
  margin-top: 40px;
  margin-bottom: 10px;
  position: relative;
}

@media (min-width: 768px) {
  /* line 485, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .member-left .team_wrapper {
    margin-top: 60px;
  }
}

/* line 493, resources/assets/styles/layouts/_home.scss */

.pp-scrollable .home-practitioners .member-left .team_wrapper .team_desc {
  margin-top: 25px;
}

@media (min-width: 768px) {
  /* line 493, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .member-left .team_wrapper .team_desc {
    margin-top: 0;
    position: absolute;
    right: -120px;
    top: 85px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  /* line 493, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .member-left .team_wrapper .team_desc {
    right: -10px;
  }
}

@media (min-width: 768px) {
  /* line 511, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .member-left .team_wrapper .team_pattern-wrap {
    width: 220px;
    margin-bottom: 22px;
    position: absolute;
    right: -20px;
    top: -60px;
    overflow: hidden;
  }

  /* line 519, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .member-left .team_wrapper .team_pattern-wrap .team_pattern {
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
  }
}

@media (min-width: 1200px) {
  /* line 525, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .member-left .team_wrapper .team_icon {
    width: 70px;
    position: absolute;
    right: 60px;
    top: 220px;
  }
}

/* line 534, resources/assets/styles/layouts/_home.scss */

.pp-scrollable .home-practitioners .member-left .team_wrapper > a {
  display: block;
}

/* line 538, resources/assets/styles/layouts/_home.scss */

.pp-scrollable .home-practitioners .member-left .team_wrapper > a:hover .team_pattern {
  -webkit-transform: scale(1.15);
       -o-transform: scale(1.15);
          transform: scale(1.15);
}

@media (min-width: 768px) {
  /* line 547, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .member-left.team-amanda .team_pattern-wrap {
    top: 197px;
    right: -100px;
  }

  /* line 552, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .member-left.team-amanda .team_icon {
    right: 203px;
    top: 23px;
  }

  /* line 557, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .member-left.team-bruce .team_pattern-wrap {
    top: 240px;
    right: -110px;
    -webkit-transform: rotate(90deg);
         -o-transform: rotate(90deg);
            transform: rotate(90deg);
  }

  /* line 563, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .member-left.team-bruce .team_icon {
    right: 111px;
    top: 205px;
  }
}

/* line 572, resources/assets/styles/layouts/_home.scss */

.pp-scrollable .home-practitioners .member-right .team_wrapper {
  margin-top: 40px;
  margin-bottom: 10px;
  max-width: 465px;
  position: relative;
  float: right;
}

@media (min-width: 768px) {
  /* line 572, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .member-right .team_wrapper {
    margin-top: 60px;
  }
}

/* line 581, resources/assets/styles/layouts/_home.scss */

.pp-scrollable .home-practitioners .member-right .team_wrapper .team_desc {
  margin-top: 25px;
}

@media (min-width: 768px) {
  /* line 581, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .member-right .team_wrapper .team_desc {
    margin-top: 0;
    position: absolute;
    top: 310px;
    left: -88px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  /* line 581, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .member-right .team_wrapper .team_desc {
    top: 195px;
  }
}

@media (min-width: 768px) {
  /* line 598, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .member-right .team_wrapper .team_pattern-wrap {
    width: 220px;
    margin-bottom: 22px;
    position: absolute;
    left: -88px;
    top: 156px;
    overflow: hidden;
  }

  /* line 606, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .member-right .team_wrapper .team_pattern-wrap .team_pattern {
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
  }
}

@media (min-width: 1200px) {
  /* line 617, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .member-right .team_wrapper .team_icon {
    width: 70px;
    position: absolute;
    left: 50px;
    top: 50px;
  }
}

/* line 626, resources/assets/styles/layouts/_home.scss */

.pp-scrollable .home-practitioners .member-right .team_wrapper > a {
  display: block;
}

/* line 630, resources/assets/styles/layouts/_home.scss */

.pp-scrollable .home-practitioners .member-right .team_wrapper > a:hover .team_pattern {
  -webkit-transform: scale(1.15);
       -o-transform: scale(1.15);
          transform: scale(1.15);
}

@media (min-width: 768px) {
  /* line 639, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .member-right.team-emma .team_pattern-wrap {
    -webkit-transform: rotate(90deg);
         -o-transform: rotate(90deg);
            transform: rotate(90deg);
    top: 10px;
    left: -105px;
  }

  /* line 645, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .member-right.team-emma .team_icon {
    left: 120px;
    top: 142px;
  }

  /* line 650, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .member-right.team-matthew .team_pattern-wrap {
    -webkit-transform: rotate(90deg);
         -o-transform: rotate(90deg);
            transform: rotate(90deg);
    top: 0px;
    left: 70px;
  }

  /* line 656, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .member-right.team-matthew .team_icon {
    left: 32px;
    top: 191px;
  }
}

@media (min-width: 576px) {
  /* line 664, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .team_photo {
    max-width: 465px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  /* line 664, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .team_photo {
    max-width: 300px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  /* line 675, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .team_pattern {
    display: none !important;
  }
}

/* line 683, resources/assets/styles/layouts/_home.scss */

.pp-scrollable .home-practitioners .team_title {
  font-size: 28px;
  font-family: 'Axiforma-Bold';
  line-height: 1.18;
  margin-bottom: 15px;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  /* line 683, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .team_title {
    font-size: 24px;
    letter-spacing: -0.8px;
  }
}

/* line 695, resources/assets/styles/layouts/_home.scss */

.pp-scrollable .home-practitioners .team_subtitle {
  font-size: 16px;
  font-family: 'Axiforma-SemiBold';
  line-height: 2;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  /* line 695, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .team_subtitle {
    max-width: 200px;
    line-height: 1.7;
  }
}

/* line 706, resources/assets/styles/layouts/_home.scss */

.pp-scrollable .home-practitioners .collaboration {
  margin-top: 40px;
}

@media (min-width: 992px) {
  /* line 706, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .collaboration {
    padding: 200px 0;
  }
}

@media (min-width: 1200px) {
  /* line 706, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .collaboration {
    margin-top: 110px;
    margin-bottom: 180px;
  }
}

/* line 717, resources/assets/styles/layouts/_home.scss */

.pp-scrollable .home-practitioners .collaboration .collaboration-content {
  position: relative;
  padding: 0 4px;
}

@media (min-width: 992px) {
  /* line 717, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .collaboration .collaboration-content {
    padding: 0;
  }
}

@media (min-width: 768px) {
  /* line 725, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .collaboration .collaboration-content .team_title {
    font-size: 78px;
  }
}

@media (min-width: 992px) {
  /* line 725, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .collaboration .collaboration-content .team_title {
    font-size: 62px;
  }
}

@media (min-width: 768px) {
  /* line 734, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .collaboration .collaboration-content:after,
  .pp-scrollable .home-practitioners .collaboration .collaboration-content:before {
    background: url(/web/20241017063026im_/http://paradigmco.com.au/wp-content/themes/paradigm/dist/images/home/img-water.jpg);
    background-size: cover;
    top: 0;
    right: -186px;
    width: 240px;
    height: 210px;
    position: absolute;
    z-index: -1;
    content: ' ';
  }
}

@media (min-width: 992px) {
  /* line 734, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .collaboration .collaboration-content:after,
  .pp-scrollable .home-practitioners .collaboration .collaboration-content:before {
    width: 108%;
    height: 500px;
    top: -115px;
    right: -100%;
  }
}

@media (min-width: 992px) {
  /* line 734, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .collaboration .collaboration-content:after,
  .pp-scrollable .home-practitioners .collaboration .collaboration-content:before {
    height: 600px;
    top: -170px;
  }
}

@media (min-width: 768px) {
  /* line 761, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .collaboration .collaboration-content:before {
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iV2Fyc3R3YV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCINCgkgdmlld0JveD0iMCAwIDI2My4zIDI0NS4yIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNjMuMyAyNDUuMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6I0ZGRkZGRjt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTTEzNSwwYzAuMywwLjEsMC42LDAuMSwxLDAuMmMyNi44LDEuMyw1MC44LDEwLjMsNzEuOCwyNy4yYzMuMSwyLjUsNS45LDUuMiw4LjgsNy44YzAuMiwwLjIsMC41LDAuNCwwLjgsMC42DQoJYy0wLjgsMC44LTEuNSwxLjUtMi4yLDIuMWMtMjMuNi0yMi44LTUxLjctMzQuOC04NC42LTM0LjhjLTMyLjgsMC02MC45LDEyLTg0LjUsMzQuOGMtMC43LTAuNy0xLjMtMS4zLTItMi4xYzAuMy0wLjMsMC42LTAuNywxLTENCglDNjIsMTguNSw4Miw3LjcsMTA1LDIuOGM2LjctMS40LDEzLjUtMi4zLDIwLjMtMi42YzAuNCwwLDAuNy0wLjEsMS4xLTAuMkMxMjkuMywwLDEzMi4xLDAsMTM1LDB6IE0xOTAuOCwxNTkuNWMxLjMsMCwyLjYsMCwzLjksMA0KCWMwLjEtMC4xLDAuMS0wLjEsMC4xLTAuMWMwLDAsMC0wLjEsMC0wLjFjMCwwLDAtMC4xLDAtMC4xYzAsMCwwLTAuMSwwLTAuMWMwLDAsMC0wLjEsMC0wLjFjMC0yMiwwLTQ0LjEsMC02Ni4xYzAtMC4xLDAtMC4xLDAtMC4yDQoJYzAtMC4xLDAtMC4xLDAtMC4yYzAsMCwwLTAuMSwwLTAuMWMwLDAsMCwwLDAuMS0wLjFjMCwwLDAuMSwwLDAuMiwwYzEwLjUsMTUuNCwyMSwzMC45LDMxLjQsNDYuM2MwLjQsMCwwLjcsMCwxLjEsMA0KCWMxMC40LTE1LjUsMjAuOC0zMC45LDMxLjItNDYuNGMwLjEsMCwwLjIsMC4xLDAuMiwwLjFjMCwxMS4yLDAsMjIuNCwwLDMzLjZjMCwxMS4yLDAsMjIuNCwwLDMzLjZjMS40LDAsMi43LDAsNCwwDQoJYzAuMi0xLjUsMC4xLTc3LjMtMC4xLTc4Yy0wLjYsMC0xLjMsMC0xLjksMGMtMTEuNCwxNi45LTIyLjcsMzMuNy0zNC4xLDUwLjdjLTExLjUtMTctMjMtMzMuOC0zNC40LTUwLjdjLTAuNiwwLTEuMiwwLTEuOSwwDQoJQzE5MC44LDEwNy41LDE5MC44LDEzMy41LDE5MC44LDE1OS41eiBNNTQuMSwxNTAuMmMtMTcuMy0yMi45LTM0LjctNDUuOS01MS45LTY4LjhjLTAuOCwwLTEuNSwwLTIuMiwwYzAsMjYsMCw1MiwwLDc4DQoJYzEuNCwwLDIuOCwwLDQuMiwwYzAtMjIuNywwLTQ1LjMsMC02Ny45YzAuMSwwLDAuMi0wLjEsMC4yLTAuMWMxNy4yLDIyLjcsMzQuMyw0NS40LDUxLjUsNjhjMC45LDAsMS43LDAsMi41LDANCgljMC4yLTEuMywwLjItNzcuMywwLTc4Yy0xLjMsMC0yLjYsMC00LjEsMGMwLDIyLjksMCw0NS44LDAsNjguN0M1NC4zLDE1MC4yLDU0LjIsMTUwLjIsNTQuMSwxNTAuMnogTTE3NS41LDk2LjYNCgljLTItMi45LTQuMy01LjQtNy4xLTcuNWMtMTAuOC04LjItMjIuOC0xMC45LTM2LTcuOWMtMTIuOCwzLTIyLDEwLjYtMjcuMywyMi43Yy0zLjYsOC4zLTQuMywxNi45LTIuNSwyNS44DQoJYzIuMywxMS40LDguNSwyMC4xLDE4LjcsMjUuOGM4LjcsNC45LDE4LjEsNi4zLDI3LjgsNC42YzEwLjctMS44LDE5LjQtNywyNi4zLTE1LjVjMC4yLTAuMiwwLjMtMC41LDAuNS0wLjhjLTEtMC44LTEuOS0xLjUtMi45LTIuMg0KCWMtMC4zLDAuMy0wLjUsMC42LTAuNywwLjljLTEuNywyLjEtMy41LDQuMS01LjcsNS43Yy0xMC4xLDcuOC0yMS41LDEwLjMtMzMuOSw3LjRjLTExLjMtMi42LTE5LjMtOS41LTIzLjktMjAuMg0KCWMtMy4zLTcuOC0zLjgtMTYtMS45LTI0LjJjMS44LTcuOCw1LjctMTQuMywxMS45LTE5LjRjNS43LTQuNywxMi40LTcuMiwxOS43LTcuOGM3LjUtMC42LDE0LjcsMC43LDIxLjUsNC4xDQoJYzUuMSwyLjYsOS40LDYuMSwxMi41LDEwLjljMC4xLDAuMSwwLjIsMC4yLDAuMywwLjNjMS0wLjYsMS45LTEuMiwyLjgtMS43YzAuMS0wLjEsMC4yLTAuMiwwLjMtMC4zDQoJQzE3NS44LDk3LjEsMTc1LjcsOTYuOSwxNzUuNSw5Ni42eiBNMTMwLjYsMjQyLjFjLTMyLjksMC02MS0xMi4xLTg0LjQtMzQuN2MtMC43LDAuNy0xLjQsMS4zLTIuMSwyYzEwLjYsMTAuNSwyMi42LDE4LjksMzYuMywyNQ0KCWMxOS40LDguNywzOS44LDEyLjEsNjAuOSwxMC4zYzE5LjQtMS43LDM3LjMtNy43LDUzLjktMTcuOWM4LTUsMTUuNC0xMC44LDIyLTE3LjRjLTAuNy0wLjgtMS4zLTEuNS0xLjktMi4yDQoJQzE5MS42LDIzMC4xLDE2My41LDI0Mi4xLDEzMC42LDI0Mi4xeiBNODQuOSw4MS41Yy0xLjQsMC0yLjcsMC00LjEsMGMwLDI2LDAsNTIsMCw3OGMxLjQsMCwyLjcsMCw0LjEsMA0KCUM4NC45LDEzMy40LDg0LjksMTA3LjUsODQuOSw4MS41eiIvPg0KPC9zdmc+DQo=);
    z-index: 0;
    width: 136px;
    right: -130px;
    background-position: center center;
    background-repeat: no-repeat;
  }
}

@media (min-width: 992px) {
  /* line 761, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-practitioners .collaboration .collaboration-content:before {
    width: 270px;
    right: -70%;
  }
}

/* line 782, resources/assets/styles/layouts/_home.scss */

.pp-scrollable .home-contact {
  margin: 0 -20px 0;
  padding: 80px 20px 45px;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (min-width: 768px) {
  /* line 782, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-contact {
    padding-top: 100px;
    padding-bottom: 103px;
    overflow: hidden;
  }
}

@media (min-width: 992px) {
  /* line 782, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-contact {
    padding-bottom: 136px;
  }
}

@media (min-width: 768px) {
  /* line 797, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-contact .home-contact-wrap {
    margin: 0 auto;
    max-width: 729px;
  }
}

@media (min-width: 768px) {
  /* line 804, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-contact .home-contact-body {
    border: 1px solid #aaa;
    max-width: 608px;
    margin-left: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }

  /* line 813, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-contact .home-contact-body .home-contact-border {
    padding-left: 72px;
    padding-right: 97px;
  }

  /* line 818, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-contact .home-contact-body:after {
    content: url(/web/20241017063026im_/http://paradigmco.com.au/wp-content/themes/paradigm/dist/images/pattern-main.svg);
    position: absolute;
    right: 20px;
    top: -54px;
    z-index: 1;
    width: 290px;
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  /* line 818, resources/assets/styles/layouts/_home.scss */

  .pp-scrollable .home-contact .home-contact-body:after {
    right: -120px;
  }
}

/* line 831, resources/assets/styles/layouts/_home.scss */

.pp-scrollable .home-contact .home-contact-body .home-contact-map {
  max-width: 168px;
  border-right: 1px solid #aaa;
}

/* line 838, resources/assets/styles/layouts/_home.scss */

.pp-scrollable .home-contact .home_subtitle {
  margin-bottom: 50px;
}

/* line 842, resources/assets/styles/layouts/_home.scss */

.pp-scrollable .home-contact .home-contact-icon {
  width: 11px;
  float: left;
  margin-right: 25px;
  margin-top: 5px;
}

/* line 849, resources/assets/styles/layouts/_home.scss */

.pp-scrollable .home-contact .home-contact-address {
  margin-bottom: 16px;
  display: inline-block;
  font-family: 'Axiforma-SemiBold';
  line-height: 2.2;
}

/* line 861, resources/assets/styles/layouts/_home.scss */

.home-movie {
  clear: both;
  background-size: cover;
  background: url(/web/20241017063026im_/http://paradigmco.com.au/wp-content/themes/paradigm/dist/images/bg-video.jpg);
  min-height: 650px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -20px;
  margin-right: -20px;
  margin-top: 50px;
}

/* line 874, resources/assets/styles/layouts/_home.scss */

.home-movie .movie-content {
  color: #fff;
  z-index: 3;
  margin-left: 10%;
  position: absolute;
}

/* line 882, resources/assets/styles/layouts/_home.scss */

.home-movie .movie-content .movie-content__play .movie-content__icon {
  width: 70px;
}

@media (min-width: 768px) {
  /* line 882, resources/assets/styles/layouts/_home.scss */

  .home-movie .movie-content .movie-content__play .movie-content__icon {
    right: -110px;
    top: 0;
    position: absolute;
  }
}

@media (min-width: 992px) {
  /* line 882, resources/assets/styles/layouts/_home.scss */

  .home-movie .movie-content .movie-content__play .movie-content__icon {
    right: -264px;
    z-index: 1;
  }
}

/* line 896, resources/assets/styles/layouts/_home.scss */

.home-movie .movie-content .movie-content__play .movie-content__icon .play-st0 {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .7s ease-in-out;
  -o-transition: all .7s ease-in-out;
  transition: all .7s ease-in-out;
}

/* line 903, resources/assets/styles/layouts/_home.scss */

.home-movie .movie-content .movie-content__play .movie-content__pattern {
  width: 345px;
}

@media (min-width: 992px) {
  /* line 903, resources/assets/styles/layouts/_home.scss */

  .home-movie .movie-content .movie-content__play .movie-content__pattern {
    position: absolute;
    -webkit-transform: rotate(90deg);
         -o-transform: rotate(90deg);
            transform: rotate(90deg);
    right: -350px;
    top: 0;
  }
}

/* line 916, resources/assets/styles/layouts/_home.scss */

.home-movie .movie-content h2 {
  font-size: 33px;
  font-family: 'Axiforma-SemiBold';
  line-height: 1;
}

@media (min-width: 768px) {
  /* line 916, resources/assets/styles/layouts/_home.scss */

  .home-movie .movie-content h2 {
    font-size: 78px;
    margin-bottom: 0;
  }
}

/* line 926, resources/assets/styles/layouts/_home.scss */

.home-movie .movie-content p {
  font-size: 24px;
  font-family: 'Axiforma-SemiBold';
}

/* line 931, resources/assets/styles/layouts/_home.scss */

.home-movie .movie-content:hover {
  cursor: pointer;
}

/* line 936, resources/assets/styles/layouts/_home.scss */

.home-movie .movie-content:hover .movie-content__play .movie-content__icon .play-st0 {
  opacity: 1;
  visibility: visible;
}

/* line 941, resources/assets/styles/layouts/_home.scss */

.home-movie .movie-content:hover .movie-content__play .movie-content__icon .play-st2 {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .7s ease-in-out;
  -o-transition: all .7s ease-in-out;
  transition: all .7s ease-in-out;
}

/* line 951, resources/assets/styles/layouts/_home.scss */

.home-movie video {
  background: transparent;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
       -o-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  z-index: -1;
}

@media (min-width: 1200px) {
  /* line 951, resources/assets/styles/layouts/_home.scss */

  .home-movie video {
    width: 100%;
  }
}

/* line 962, resources/assets/styles/layouts/_home.scss */

.home-movie video::-webkit-media-controls {
  opacity: 0;
}

@media (min-width: 768px) {
  /* line 968, resources/assets/styles/layouts/_home.scss */

  .home-movie {
    margin-top: 180px;
  }
}

/* line 974, resources/assets/styles/layouts/_home.scss */

.home-practitioners .team_icon {
  display: none !important;
}

/* line 978, resources/assets/styles/layouts/_home.scss */

body.about-us .home-movie {
  margin-left: 0;
  margin-right: 0;
}

/* line 983, resources/assets/styles/layouts/_home.scss */

#bio-overlay {
  background: #000;
  width: 100%;
  height: 100%;
  z-index: 100001;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0.7;
  margin-left: 0;
  display: none;
}

/* line 996, resources/assets/styles/layouts/_home.scss */

.movie__frame {
  position: fixed;
  z-index: -3;
  display: none;
  opacity: 0;
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  z-index: 1000000;
  top: 60px;
  margin: 0 10px;
}

@media (min-width: 1200px) {
  /* line 996, resources/assets/styles/layouts/_home.scss */

  .movie__frame {
    left: 50%;
    margin-left: -640px;
  }
}

/* line 1011, resources/assets/styles/layouts/_home.scss */

.movie__frame iframe {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

@media (max-width: 767.98px) {
  /* line 1011, resources/assets/styles/layouts/_home.scss */

  .movie__frame iframe {
    height: 360px;
  }
}

/* line 1021, resources/assets/styles/layouts/_home.scss */

.movie__frame #close-btn {
  cursor: pointer;
  width: 20px;
  position: absolute;
  right: 0;
  top: -25px;
}

/* line 1029, resources/assets/styles/layouts/_home.scss */

.movie__frame.active {
  opacity: 1;
}

@-webkit-keyframes move {
  0% {
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  60% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-o-keyframes move {
  0% {
    -o-transform-origin: top left;
       transform-origin: top left;
    -o-transform: scale(1);
       transform: scale(1);
  }

  60% {
    -o-transform: scale(1.15);
       transform: scale(1.15);
  }

  100% {
    -o-transform: scale(1);
       transform: scale(1);
  }
}

@keyframes move {
  0% {
    -webkit-transform-origin: top left;
         -o-transform-origin: top left;
            transform-origin: top left;
    -webkit-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }

  60% {
    -webkit-transform: scale(1.15);
         -o-transform: scale(1.15);
            transform: scale(1.15);
  }

  100% {
    -webkit-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
}


/*# sourceMappingURL=main.css.map*/
/*
     FILE ARCHIVED ON 06:30:26 Oct 17, 2024 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 11:43:35 Jan 25, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.779
  exclusion.robots: 0.028
  exclusion.robots.policy: 0.012
  esindex: 0.016
  cdx.remote: 14.011
  LoadShardBlock: 132.42 (3)
  PetaboxLoader3.datanode: 183.203 (5)
  PetaboxLoader3.resolve: 149.638 (3)
  load_resource: 208.113 (2)
*/