@charset "UTF-8";
/* --------------------------------------
* Imports
* ------------------------------------ */
/* ----------------------------------------------------------------------------
* Modular Mixins
* ------------------------------------------------------------------------- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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;
}
article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

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

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

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

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

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

dt {
  font-weight: normal;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

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

figure {
  margin: 0 0 1rem;
}

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

svg:not(:root) {
  overflow: hidden;
}

table {
  border-collapse: collapse;
}

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

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0;
}

button {
  border-radius: 0;
}

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

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

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

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

textarea {
  overflow: auto;
  resize: vertical;
}

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

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

progress {
  vertical-align: baseline;
}

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

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

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

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

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
      transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
      transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
      transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
.owl-carousel, .woocommerce ul.products.owl-loaded, .owl-carousel .owl-item, .woocommerce ul.products.owl-loaded .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel, .woocommerce ul.products.owl-loaded {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage, .woocommerce ul.products.owl-loaded .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after, .woocommerce ul.products.owl-loaded .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer, .woocommerce ul.products.owl-loaded .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item, .woocommerce ul.products.owl-loaded .owl-item, .owl-carousel .owl-wrapper, .woocommerce ul.products.owl-loaded .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item, .woocommerce ul.products.owl-loaded .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img, .woocommerce ul.products.owl-loaded .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled, .woocommerce ul.products.owl-loaded .owl-dots.disabled, .owl-carousel .owl-nav.disabled, .woocommerce ul.products.owl-loaded .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel, .owl-carousel.owl-loaded, .woocommerce ul.owl-loaded.products {
  display: block;
}

.owl-carousel .owl-dot, .woocommerce ul.products.owl-loaded .owl-dot, .owl-carousel .owl-nav .owl-next, .woocommerce ul.products.owl-loaded .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev, .woocommerce ul.products.owl-loaded .owl-nav .owl-prev {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loading, .woocommerce ul.owl-loading.products.owl-loaded {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden, .woocommerce ul.owl-hidden.products.owl-loaded {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item, .woocommerce ul.owl-refresh.products.owl-loaded .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item, .woocommerce ul.owl-drag.products.owl-loaded .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab, .woocommerce ul.owl-grab.products.owl-loaded {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl, .woocommerce ul.owl-rtl.products.owl-loaded {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item, .woocommerce ul.owl-rtl.products.owl-loaded .owl-item {
  float: right;
}

.owl-carousel .animated, .woocommerce ul.products.owl-loaded .animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.owl-carousel .owl-animated-in, .woocommerce ul.products.owl-loaded .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out, .woocommerce ul.products.owl-loaded .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut, .woocommerce ul.products.owl-loaded .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  -webkit-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy, .woocommerce ul.products.owl-loaded .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-item img.owl-lazy, .woocommerce ul.products.owl-loaded .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper, .woocommerce ul.products.owl-loaded .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon, .woocommerce ul.products.owl-loaded .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover, .woocommerce ul.products.owl-loaded .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon, .woocommerce ul.products.owl-loaded .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn, .woocommerce ul.products.owl-loaded .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn, .woocommerce ul.products.owl-loaded .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame, .woocommerce ul.products.owl-loaded .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
.owl-theme .owl-dots, .owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav {
  margin-top: 10px;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
        transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
        transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    -ms-transform-origin: 100%;
        transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}
.aligncenter h1,
div.aligncenter h1 {
  margin: 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #d5d5df;
  max-width: 100%;
  padding: 2rem;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0;
  width: auto;
}

.wp-caption .wp-caption-text,
.gallery-caption {
  margin: 0;
  padding: 0.5rem;
}

.textwidget img {
  margin: 1rem 0;
}

.bypostauthor {
  background: inherit;
}

/* ----------------------------------------------------------------------------
 * Recommended sizes
 * ------------------------------------------------------------------------- */
.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}

/* ----------------------------------------------------------------------------
 * Responsive
 * ------------------------------------------------------------------------- */
.wp-caption .wp-caption-text,
.gallery-caption {
  font: 300 1.4rem/1.8rem sans-serif;
}
@media only screen and (min-width: 480px) {
  .wp-caption .wp-caption-text,
  .gallery-caption {
    font: 300 1.55rem/1.8 sans-serif;
  }
}
@media only screen and (min-width: 640px) {
  .wp-caption .wp-caption-text,
  .gallery-caption {
    font: 300 1.8rem/1.8 sans-serif;
  }
}
@media only screen and (min-width: 768px) {
  .wp-caption .wp-caption-text,
  .gallery-caption {
    font: 300 1.9rem/1.7 sans-serif;
  }
}
@media screen and (min-width: 1100px) {
  .wp-caption .wp-caption-text,
  .gallery-caption {
    font: 300 2rem/3.1rem sans-serif;
  }
}
@media screen and (min-width: 1400px) {
  .wp-caption .wp-caption-text,
  .gallery-caption {
    font: 300 2rem/3.1rem sans-serif;
  }
}

.wpcf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  margin: 0;
  padding: 0;
  border: 0;
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
  border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: #ffb900; /* Yellow */
}

.wpcf7-form-control-wrap {
  position: relative;
}

.wpcf7-not-valid-tip {
  color: #dc3232; /* Red */
  font-size: 1em;
  font-weight: normal;
  display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
  position: relative;
  top: -2ex;
  left: 1em;
  z-index: 100;
  border: 1px solid #dc3232;
  background: #fff;
  padding: 0.2em 0.8em;
  width: 24em;
}

.wpcf7-list-item {
  display: inline-block;
  margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
  content: " ";
}

.wpcf7 .ajax-loader {
  visibility: hidden;
  display: inline-block;
  background-color: #23282d; /* Dark Gray 800 */
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0 24px;
  position: relative;
}

.wpcf7 form.submitting .ajax-loader {
  visibility: visible;
}

.wpcf7 .ajax-loader::before {
  content: "";
  position: absolute;
  background-color: #fbfbfc; /* Light Gray 100 */
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 100%;
  -webkit-transform-origin: 8px 8px;
      -ms-transform-origin: 8px 8px;
          transform-origin: 8px 8px;
  -webkit-animation-name: spin;
          animation-name: spin;
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
  .wpcf7 .ajax-loader::before {
    -webkit-animation-name: blink;
            animation-name: blink;
    -webkit-animation-duration: 2000ms;
            animation-duration: 2000ms;
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes blink {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes blink {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.wpcf7 input[type=file] {
  cursor: pointer;
}

.wpcf7 input[type=file]:disabled {
  cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
  cursor: not-allowed;
}

.wpcf7 input[type=url],
.wpcf7 input[type=email],
.wpcf7 input[type=tel] {
  direction: ltr;
}

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  outline: 0;
}

.pswp * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--animate_opacity {
  opacity: 0.001;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
  display: block;
}

.pswp--zoom-allowed .pswp__img {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
  cursor: -webkit-grab;
  cursor: grab;
}

.pswp--dragging .pswp__img {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pswp__container, .pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.pswp__container, .pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1), -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg, .pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none;
}

.pswp__container, .pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
}

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}

.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}

.pswp__img--placeholder--blank {
  background: #222;
}

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}

.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC;
}

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline;
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: 0;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.pswp__button:focus, .pswp__button:hover {
  opacity: 1;
}

.pswp__button:active {
  outline: 0;
  opacity: 0.9;
}

.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}

.pswp__button, .pswp__button--arrow--left:before, .pswp__button--arrow--right:before {
  background: url(../img/default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px;
}

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  .pswp--svg .pswp__button, .pswp--svg .pswp__button--arrow--left:before, .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(default-skin.svg);
  }
  .pswp--svg .pswp__button--arrow--left, .pswp--svg .pswp__button--arrow--right {
    background: 0;
  }
}
.pswp__button--close {
  background-position: 0 -44px;
}

.pswp__button--share {
  background-position: -44px -44px;
}

.pswp__button--fs {
  display: none;
}

.pswp--supports-fs .pswp__button--fs {
  display: block;
}

.pswp--fs .pswp__button--fs {
  background-position: -44px 0;
}

.pswp__button--zoom {
  display: none;
  background-position: -88px 0;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0;
}

.pswp--touch .pswp__button--arrow--left, .pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}

.pswp__button--arrow--left, .pswp__button--arrow--right {
  background: 0;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute;
}

.pswp__button--arrow--left {
  left: 0;
}

.pswp__button--arrow--right {
  right: 0;
}

.pswp__button--arrow--left:before, .pswp__button--arrow--right:before {
  content: "";
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute;
}

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px;
}

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px;
}

.pswp__counter, .pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__share-modal--hidden {
  display: none;
}

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
  -ms-transform: translateY(6px);
  transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
}

.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000;
}

.pswp__share-tooltip a:first-child {
  border-radius: 2px 2px 0 0;
}

.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px;
}

.pswp__share-modal--fade-in {
  opacity: 1;
}

.pswp__share-modal--fade-in .pswp__share-tooltip {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px;
}

a.pswp__share--facebook:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}

a.pswp__share--facebook:hover {
  background: #3e5c9a;
  color: #FFF;
}

a.pswp__share--facebook:hover:before {
  border-bottom-color: #3e5c9a;
}

a.pswp__share--twitter:hover {
  background: #55acee;
  color: #FFF;
}

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #ce272d;
}

a.pswp__share--download:hover {
  background: #DDD;
}

.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px;
}

.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
}

.pswp__caption small {
  font-size: 11px;
  color: #BBB;
}

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC;
}

.pswp__caption--empty {
  display: none;
}

.pswp__caption--fake {
  visibility: hidden;
}

.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr;
}

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px;
}

.pswp__preloader--active {
  opacity: 1;
}

.pswp__preloader--active .pswp__preloader__icn {
  background: url(preloader.gif) 0 0 no-repeat;
}

.pswp--css_animation .pswp__preloader--active {
  opacity: 1;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  -webkit-animation: clockwise 500ms linear infinite;
  animation: clockwise 500ms linear infinite;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
  animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}

.pswp--css_animation .pswp__preloader__icn {
  background: 0;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0;
}

.pswp--css_animation .pswp__preloader__cut {
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden;
}

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: 0;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right;
  }
}
@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}

.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%;
}

.pswp__caption, .pswp__top-bar, .pswp--has_mouse .pswp__button--arrow--left, .pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--has_mouse .pswp__button--arrow--left, .pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}

.pswp__top-bar, .pswp__caption {
  background-color: rgba(0, 0, 0, 0.5);
}

.pswp__ui--fit .pswp__top-bar, .pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3);
}

.pswp__ui--idle .pswp__top-bar {
  opacity: 0;
}

.pswp__ui--idle .pswp__button--arrow--left, .pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0;
}

.pswp__ui--hidden .pswp__top-bar, .pswp__ui--hidden .pswp__caption, .pswp__ui--hidden .pswp__button--arrow--left, .pswp__ui--hidden .pswp__button--arrow--right {
  opacity: 0.001;
}

.pswp__ui--one-slide .pswp__button--arrow--left, .pswp__ui--one-slide .pswp__button--arrow--right, .pswp__ui--one-slide .pswp__counter {
  display: none;
}

.pswp__element--disabled {
  display: none !important;
}

.pswp--minimal--dark .pswp__top-bar {
  background: 0;
}

.title, .full-width {
  width: 100%;
  -webkit-column-width: 100%;
     -moz-column-width: 100%;
          column-width: 100%;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.col-container.vert-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.alignnone {
  margin: 0;
}

.alignleft {
  margin: 0 0 50px;
}
@media only screen and (min-width: 768px) {
  .alignleft {
    float: left;
    margin: 0 50px 50px 0;
  }
}

.alignright {
  margin: 0 0 50px;
}
@media only screen and (min-width: 768px) {
  .alignright {
    float: right;
    margin: 0 0 50px 50px;
  }
}

@media only screen and (min-width: 960px) and (orientation: landscape) {
  .mobile-only {
    display: none;
  }
}

.desktop-only {
  display: none;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .desktop-only {
    display: block;
  }
}

.light-background {
  background: #f2f2f5;
}

.primary-background {
  background: #426a73;
}

.secondary-background {
  background: #0b1426;
}

.whitesmoke-background, .whitesmoke {
  background: whitesmoke;
}

.getin-touch.col-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.getin-touch.col-container .button-row {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
}
.getin-touch.col-container .btn, .getin-touch.col-container .woocommerce form input[type=submit], .woocommerce form .getin-touch.col-container input[type=submit],
.getin-touch.col-container .woocommerce form input[type=button],
.woocommerce form .getin-touch.col-container input[type=button] {
  min-width: 300px;
  width: auto;
  margin: 0 auto 15px;
}
.getin-touch.col-container .btn:last-child, .getin-touch.col-container .woocommerce form input[type=submit]:last-child, .woocommerce form .getin-touch.col-container input[type=submit]:last-child,
.getin-touch.col-container .woocommerce form input[type=button]:last-child,
.woocommerce form .getin-touch.col-container input[type=button]:last-child {
  margin-bottom: 0;
}
.getin-touch.col-container .btn i, .getin-touch.col-container .woocommerce form input[type=submit] i, .woocommerce form .getin-touch.col-container input[type=submit] i,
.getin-touch.col-container .woocommerce form input[type=button] i,
.woocommerce form .getin-touch.col-container input[type=button] i {
  margin-right: 8px;
}

.logo-carousel {
  margin: 0 60px;
  width: calc(100% - 120px);
  padding: 0 20px;
}
.logo-carousel .logo-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 10px;
}
.logo-carousel .logo-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.logo-carousel .logo-item img {
  width: auto;
  height: auto;
  margin: auto;
  max-height: 70px;
  -webkit-filter: none;
          filter: none;
  max-width: 90%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.logo-carousel .logo-item span {
  display: inline-block;
  text-align: center;
  color: #080e1a;
  margin: auto;
}
.logo-carousel .logo-item a:hover span {
  color: #426a73;
}
.logo-carousel .logo-item a:hover img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.logo-carousel.arrows {
  padding: 0 15px;
}
.logo-carousel.arrows .owl-nav .owl-prev {
  left: -60px;
}
.logo-carousel.arrows .owl-nav .owl-next {
  right: -60px;
}

.icon-boxes .col {
  margin: 0 0 20px;
  text-align: center;
}
.icon-boxes i {
  font-size: 3.75em;
  line-height: 1em;
  margin: 0 0 20px;
  color: #426a73;
}
.icon-boxes h3 {
  margin: 0 0 15px;
}
.icon-boxes p {
  font-size: 0.9375em;
  line-height: 1.7333333333em;
  margin: 0 auto;
  max-width: 310px;
}
.icon-boxes .btn, .icon-boxes .woocommerce form input[type=submit], .woocommerce form .icon-boxes input[type=submit],
.icon-boxes .woocommerce form input[type=button],
.woocommerce form .icon-boxes input[type=button] {
  padding: 8px 0;
  margin-top: 20px;
  font-weight: 600;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 0.9375em;
  line-height: 1em;
}
.icon-boxes.small .col {
  text-align: left;
  position: relative;
  padding-left: 60px;
}
.icon-boxes.small h3 {
  margin-bottom: 10px;
  font-size: 1.25em;
  line-height: 1.4em;
}
.icon-boxes.small p {
  margin: 0;
}
.icon-boxes.small .btn, .icon-boxes.small .woocommerce form input[type=submit], .woocommerce form .icon-boxes.small input[type=submit],
.icon-boxes.small .woocommerce form input[type=button],
.woocommerce form .icon-boxes.small input[type=button] {
  margin-top: 10px;
}
.icon-boxes.small i {
  font-size: 1.875em;
  line-height: 1em;
  position: absolute;
  top: 2px;
  left: 0;
  width: 40px;
  text-align: center;
}

.landing-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  --gap: 20px;
  gap: var(--gap);
}

.landing-items {
  width: 100%;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
@media only screen and (min-width: 480px) {
  .landing-items {
    width: calc(50% - var(--gap) + var(--gap) / 2);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .landing-items {
    width: calc(33.3333333333% - var(--gap) + var(--gap) / 3);
  }
}
.landing-items a.landing-image {
  position: relative;
  overflow: hidden;
  display: block;
}
.landing-items a.landing-image.border {
  border: 1px solid #ebebeb;
}
.landing-items a.landing-image.no-image {
  background: #ebebeb;
}
.landing-items a.landing-image:before {
  padding-top: 75%;
  content: "";
  display: block;
}
.landing-items a.landing-image img {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .landing-items a.landing-image img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}
.landing-items .text {
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(66, 106, 115, 0.9);
  padding: 15px;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .landing-items .text {
    padding: 25px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
.landing-items .text h3 {
  font-size: 1.125em;
  line-height: 1.3333333333em;
  color: white;
  margin: 0;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.landing-items .text i {
  position: absolute;
  right: 0;
  top: 50%;
  width: 35px;
  height: 35px;
  background: white;
  border-radius: 50%;
  color: #0b1426;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .landing-items:hover a img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.landing-items:hover .text {
  background: rgba(11, 20, 38, 0.9);
}
.landing-items:hover .text h3 {
  color: white;
}

.landing.owl-carousel, .woocommerce ul.landing.products.owl-loaded {
  padding: 0;
}
.landing.owl-carousel .owl-stage-outer, .woocommerce ul.landing.products.owl-loaded .owl-stage-outer {
  overflow: visible;
}
.landing.owl-carousel .owl-stage, .woocommerce ul.landing.products.owl-loaded .owl-stage, .landing.owl-carousel .owl-item, .woocommerce ul.landing.products.owl-loaded .owl-item, .landing.owl-carousel .owl-stage-outer, .woocommerce ul.landing.products.owl-loaded .owl-stage-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.landing.owl-carousel .box-item, .woocommerce ul.landing.products.owl-loaded .box-item {
  opacity: 0.3;
}
.landing.owl-carousel .owl-item.active .box-item, .woocommerce ul.landing.products.owl-loaded .owl-item.active .box-item {
  opacity: 1;
}

.box-item {
  background: white;
  width: 100%;
}
.box-item .landing-image {
  position: relative;
  background: #0b1426;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  border-radius: 5px;
  display: block;
}
.box-item .landing-image:before {
  padding-top: 65%;
  content: "";
  display: block;
}
.box-item .landing-image img {
  inset: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .box-item .landing-image img {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.box-item .landing-image:after {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 2;
  background: rgba(66, 106, 115, 0.8);
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  content: "\f0c1";
  font-family: "Font Awesome 6 Pro";
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: white;
  font-weight: 400;
  font-size: 2.375em;
  line-height: 1.1842105263em;
  opacity: 0;
}
.box-item .landing-text {
  padding: 20px 10px 30px;
}
.box-item .landing-link {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  display: inline-block;
  position: relative;
  color: #080e1a;
  font-size: 0.8125em;
  line-height: 2.1538461538em;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  left: 10px;
  bottom: 0;
}
.box-item .landing-link:before {
  height: 1px;
  background: #426a73;
  opacity: 0.3;
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  right: 0;
}
.box-item .landing-link:hover:before {
  opacity: 1;
}
.box-item:hover .landing-image:after {
  opacity: 1;
}
.box-item p {
  margin-bottom: 15px;
}
.box-item h2 {
  font-size: 1.375em;
  line-height: 1.2727272727em;
  letter-spacing: 0.5px;
  color: #426a73;
  margin-bottom: 15px;
}
.box-item h2 a {
  font-weight: 600;
}

.row.image-block {
  position: relative;
  height: 500px;
  background: #426a73;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.image-block {
    height: 600px;
  }
}
.row.image-block.has-text {
  height: auto;
}
.row.image-block.padded {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.image-block.padded {
    padding-top: 130px;
    padding-bottom: 130px;
  }
}
.row.image-block img {
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.row.image-block img:first-child {
  left: 0;
}
.row.image-block .box {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}
.row.image-block .box h2, .row.image-block .box h3 {
  margin-bottom: 25px;
}
.row.image-block .box p:last-child {
  margin-bottom: 0;
}
.row.image-block.images-1 img {
  width: 100%;
  right: 0;
}
@media only screen and (min-width: 640px) {
  .row.image-block.images-2 img, .row.image-block.images-3 img {
    width: 50%;
  }
}
.row.image-block.images-2 img:last-of-type, .row.image-block.images-3 img:last-of-type {
  display: none;
}
@media only screen and (min-width: 640px) {
  .row.image-block.images-2 img:last-of-type, .row.image-block.images-3 img:last-of-type {
    right: 0;
    display: block;
    left: auto;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.image-block.images-3 img {
    width: 33.33%;
  }
}
.row.image-block.images-3 img:first-child + img {
  display: none;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.image-block.images-3 img:first-child + img {
    left: 33.33%;
    display: block;
  }
}
.row.image-block.opacity-image img {
  opacity: 0.5;
}
.row.image-block.opacity-image .box h2, .row.image-block.opacity-image .box h3, .row.image-block.opacity-image .box p {
  color: white;
}
.row.image-block.opacity-image .box p {
  font-size: 1.1875em;
  line-height: 1.8947368421em;
}
.row.image-block.box-left .box {
  margin: 0;
  text-align: left;
}
.row.image-block.box-right .box {
  margin: 0;
  text-align: left;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.image-block.box-right .box {
    margin-left: auto;
  }
}
.row.image-block.white-box .box {
  background: white;
  padding: 30px;
  max-width: 700px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.image-block.white-box .box {
    padding: 50px;
  }
}

.wp-block-gallery .blocks-gallery-item {
  padding: 0;
}
.wp-block-gallery .blocks-gallery-item:before {
  display: none;
}
.wp-block-gallery .blocks-gallery-item a {
  overflow: hidden;
  position: relative;
}
.wp-block-gallery .blocks-gallery-item a:before {
  content: "";
  background: #080e1a;
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.wp-block-gallery .blocks-gallery-item a:hover:before {
  width: 1000px;
  height: 1000px;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
.wp-block-gallery .blocks-gallery-item a:after {
  content: "\f065";
  font-family: "Font Awesome 6 Pro";
  font-size: 2.5em;
  line-height: 1em;
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  color: #fff;
  z-index: 10;
  font-weight: 900;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.wp-block-gallery .blocks-gallery-item a:hover:after {
  opacity: 1;
  filter: alpha(opacity=100);
  background-position: center;
}

.before-after {
  position: relative;
  height: auto;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
}
.before-after .img-comp-responsive {
  height: 0;
  width: 100%;
  padding-bottom: 75%;
}
.before-after .img-comp-responsive .image-gallery {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.before-after .img-comp-responsive .image-gallery.img-comp-overlay {
  width: 50%;
  z-index: 2;
}
.before-after .img-comp-responsive .image-gallery img {
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
  vertical-align: middle;
}
.before-after .slider {
  position: absolute;
  z-index: 9;
  cursor: ew-resize;
  width: 50px;
  height: 100%;
  left: calc(50% - 25px);
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.before-after .slider:before {
  width: 5px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  content: "";
  left: 50%;
  background: white;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
.before-after .slider:after {
  display: block;
  content: "\f07e";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  font-family: "Font Awesome 6 Pro";
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  z-index: 2;
  border-radius: 50%;
  background: #426a73;
}

.main-image img {
  height: auto;
  border-radius: 5px;
}
.main-image.arrows .owl-stage {
  display: block;
}

.thumb-image {
  margin: 20px 0 0;
}
.thumb-image.arrows .owl-stage {
  display: block;
}
.thumb-image .thumbnail-item {
  position: relative;
  width: 100%;
  cursor: pointer;
}
.thumb-image .thumbnail-item:before {
  padding-top: 100%;
  display: block;
  content: "";
}
.thumb-image .thumbnail-item img {
  inset: 0;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  border-radius: 5px;
}
.thumb-image .active .thumbnail-item img {
  opacity: 1;
}
.thumb-image.arrows {
  padding: 0;
}
.thumb-image.arrows .owl-stage {
  display: block;
}
.thumb-image.arrows .owl-nav .owl-prev, .thumb-image.arrows .owl-nav .owl-next {
  width: 40px;
  height: 40px;
  line-height: 40px;
}
.thumb-image.arrows .owl-nav .owl-prev {
  left: -20px;
}
.thumb-image.arrows .owl-nav .owl-next {
  right: -20px;
}

.gallery.standard .gallery-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 16px;
}
@media only screen and (min-width: 480px) {
  .gallery.lightbox-2-row .gallery-item {
    width: calc(50% - 8px);
  }
}
@media only screen and (min-width: 480px) {
  .gallery.lightbox-3-row .gallery-item {
    width: calc(50% - 8px);
  }
}
@media only screen and (min-width: 768px) {
  .gallery.lightbox-3-row .gallery-item {
    width: calc(33.33% - 10.66px);
  }
}
@media only screen and (min-width: 480px) {
  .gallery.lightbox-4-row .gallery-item {
    width: calc(50% - 8px);
  }
}
@media only screen and (min-width: 768px) {
  .gallery.lightbox-4-row .gallery-item {
    width: calc(33.33% - 10.66px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .gallery.lightbox-4-row .gallery-item {
    width: calc(25% - 12px);
  }
}
@media only screen and (min-width: 480px) {
  .gallery.lightbox-5-row .gallery-item {
    width: calc(33.33% - 10.66px);
  }
}
@media only screen and (min-width: 768px) {
  .gallery.lightbox-5-row .gallery-item {
    width: calc(33.33% - 10.66px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .gallery.lightbox-5-row .gallery-item {
    width: calc(20% - 12.8px);
  }
}
@media only screen and (min-width: 480px) {
  .gallery.lightbox-6-row .gallery-item {
    width: calc(50% - 8px);
  }
}
@media only screen and (min-width: 768px) {
  .gallery.lightbox-6-row .gallery-item {
    width: calc(33.33% - 10.66px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .gallery.lightbox-6-row .gallery-item {
    width: calc(20% - 12.8px);
  }
}
@media screen and (min-width: 1100px) {
  .gallery.lightbox-6-row .gallery-item {
    width: calc(16.66% - 13.33px);
  }
}
.gallery span {
  position: relative;
  display: block;
  height: 100%;
}
.gallery span img {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .gallery span:before {
    content: "";
    background: #080e1a;
    display: block;
    height: 0;
    width: 0;
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    opacity: 0.7;
    filter: alpha(opacity=70);
  }
  .gallery span:after {
    content: "\f065";
    font-family: "Font Awesome 6 Pro";
    font-size: 2.5em;
    line-height: 1em;
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    color: #fff;
    z-index: 10;
    font-weight: 400;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
.gallery .gallery-item {
  overflow: hidden;
  margin: 0;
}
.gallery .gallery-item a {
  display: block;
  widtH: 100%;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
}
.gallery .gallery-item a .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  font-weight: 600;
  z-index: 5;
  background: rgba(66, 106, 115, 0.9);
  text-align: center;
  color: white;
  padding: 15px 10px;
  font-size: 0.9375em;
  line-height: 1.3333333333em;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .gallery .gallery-item a:hover span:before {
    width: 1000px;
    height: 1000px;
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .gallery .gallery-item a:hover span:after {
    opacity: 1;
    filter: alpha(opacity=100);
    background-position: center;
  }
}
.gallery.masonry .gallery-item {
  margin-bottom: 16px;
}
.gallery.scrolling .gallery-item {
  width: 100%;
}
.gallery.scrolling .gallery-item a {
  border-radius: 0;
}
.gallery.grid .gallery-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
.gallery.grid .gallery-item {
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 300px;
  margin: 0;
  overflow: hidden;
  position: relative;
  max-width: 600px;
}
@media screen and (min-width: 1400px) {
  .gallery.grid .gallery-item {
    height: 350px;
  }
}
.gallery.grid .gallery-item a {
  -ms-flex-item-align: auto;
      -ms-grid-row-align: auto;
      align-self: auto;
  height: 100%;
  text-decoration: none;
}
.gallery.grid .gallery-item a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.col-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
}

.col {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -ms-flex-item-align: auto;
      -ms-grid-row-align: auto;
      align-self: auto;
  margin-bottom: 30px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .col {
    width: auto;
    margin: 0;
  }
}
.col p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.no-margin-bottom {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  .col.two-col {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media screen and (min-width: 1400px) {
  .col.two-col {
    width: calc(50% - 45px);
    -ms-flex-preferred-size: calc(50% - 45px);
        flex-basis: calc(50% - 45px);
  }
}
@media only screen and (min-width: 768px) {
  .col.three-col {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.three-col {
    width: calc(33.33% - 50px);
    -ms-flex-preferred-size: calc(33.33% - 50px);
        flex-basis: calc(33.33% - 50px);
  }
}
@media only screen and (min-width: 768px) {
  .col.four-col, .col.one-quarter-col {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.four-col, .col.one-quarter-col {
    width: calc(25% - 37.5px);
    -ms-flex-preferred-size: calc(25% - 37.5px);
        flex-basis: calc(25% - 37.5px);
  }
}
.col.four-col-land, .col.one-quarter-col-land {
  width: 100%;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.four-col-land, .col.one-quarter-col-land {
    width: calc(25% - 37.5px);
    -ms-flex-preferred-size: calc(25% - 37.5px);
        flex-basis: calc(25% - 37.5px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.one-quarter-col.leftsidebar {
    width: calc(20% - 25px);
    -ms-flex-preferred-size: calc(20% - 25px);
        flex-basis: calc(20% - 25px);
  }
}
@media screen and (min-width: 1100px) {
  .col.one-quarter-col.leftsidebar {
    width: calc(18% - 37.5px);
    -ms-flex-preferred-size: calc(18% - 37.5px);
        flex-basis: calc(18% - 37.5px);
  }
}
@media only screen and (min-width: 768px) {
  .col.five-col {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media screen and (min-width: 1100px) {
  .col.five-col {
    width: calc(20% - 40px);
    -ms-flex-preferred-size: calc(20% - 40px);
        flex-basis: calc(20% - 40px);
  }
}
@media only screen and (min-width: 768px) {
  .col.six-col {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.six-col {
    width: calc(33.33% - 33.3333px);
    -ms-flex-preferred-size: calc(33.33% - 33.3333px);
        flex-basis: calc(33.33% - 33.3333px);
  }
}
@media screen and (min-width: 1100px) {
  .col.six-col {
    width: calc(16.66% - 42.22222px);
    -ms-flex-preferred-size: calc(16.66% - 42.22222px);
        flex-basis: calc(16.66% - 42.22222px);
  }
}
@media only screen and (min-width: 768px) {
  .col.one-third-col {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.one-third-col {
    width: calc(33.33% - 25px);
    -ms-flex-preferred-size: calc(33.33% - 25px);
        flex-basis: calc(33.33% - 25px);
  }
}
@media only screen and (min-width: 768px) {
  .col.two-thirds-col {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.two-thirds-col {
    width: calc(66.66% - 62.5px);
    -ms-flex-preferred-size: calc(66.66% - 62.5px);
        flex-basis: calc(66.66% - 62.5px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.one-third-col-land {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.one-third-col-land {
    width: calc(33.33% - 25px);
    -ms-flex-preferred-size: calc(33.33% - 25px);
        flex-basis: calc(33.33% - 25px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.two-thirds-col-land {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.two-thirds-col-land {
    width: calc(66.66% - 25px);
    -ms-flex-preferred-size: calc(66.66% - 25px);
        flex-basis: calc(66.66% - 25px);
  }
}
@media only screen and (min-width: 768px) {
  .col.three-quarter-col {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media screen and (min-width: 1100px) {
  .col.three-quarter-col {
    width: calc(75% - 25px);
    -ms-flex-preferred-size: calc(75% - 25px);
        flex-basis: calc(75% - 25px);
  }
}
@media only screen and (min-width: 768px) {
  .col.three-quarter-col.rightbar {
    width: calc(100% - 0px);
    -ms-flex-preferred-size: calc(100% - 0px);
        flex-basis: calc(100% - 0px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.three-quarter-col.rightbar {
    width: calc(80% - 25px);
    -ms-flex-preferred-size: calc(80% - 25px);
        flex-basis: calc(80% - 25px);
  }
}
@media screen and (min-width: 1100px) {
  .col.three-quarter-col.rightbar {
    width: calc(82% - 37.5px);
    -ms-flex-preferred-size: calc(82% - 37.5px);
        flex-basis: calc(82% - 37.5px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.three-quarter-col-land {
    width: calc(75% - 25px);
    -ms-flex-preferred-size: calc(75% - 25px);
        flex-basis: calc(75% - 25px);
  }
}

li.mega-menu-megamenu > ul.mega-sub-menu {
  gap: 20px 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  li.mega-menu-megamenu > ul.mega-sub-menu .mega-menu-columns-1-of-1, li.mega-menu-megamenu > ul.mega-sub-menu .mega-menu-columns-2-of-2, li.mega-menu-megamenu > ul.mega-sub-menu .mega-menu-columns-3-of-3, li.mega-menu-megamenu > ul.mega-sub-menu .mega-menu-columns-4-of-4, li.mega-menu-megamenu > ul.mega-sub-menu .mega-menu-columns-5-of-5, li.mega-menu-megamenu > ul.mega-sub-menu .mega-menu-columns-6-of-6, li.mega-menu-megamenu > ul.mega-sub-menu .mega-menu-columns-3-of-6 {
    width: 100%;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  li.mega-menu-megamenu > ul.mega-sub-menu .mega-menu-columns-2-of-4, li.mega-menu-megamenu > ul.mega-sub-menu .mega-menu-columns-1-of-2 {
    width: 50%;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  li.mega-menu-megamenu > ul.mega-sub-menu .mega-menu-columns-1-of-3, li.mega-menu-megamenu > ul.mega-sub-menu .mega-menu-columns-1-of-6 {
    width: 33.33%;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  li.mega-menu-megamenu > ul.mega-sub-menu .mega-menu-columns-2-of-3, li.mega-menu-megamenu > ul.mega-sub-menu .mega-menu-columns-2-of-6 {
    width: 66.66%;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  li.mega-menu-megamenu > ul.mega-sub-menu .mega-menu-columns-1-of-4 {
    width: 25%;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  li.mega-menu-megamenu > ul.mega-sub-menu .mega-menu-columns-3-of-4 {
    width: 75%;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  li.mega-menu-megamenu > ul.mega-sub-menu .mega-menu-columns-1-of-5 {
    width: 20%;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  li.mega-menu-megamenu > ul.mega-sub-menu .mega-menu-columns-2-of-5 {
    width: 40%;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  li.mega-menu-megamenu > ul.mega-sub-menu .mega-menu-columns-3-of-5 {
    width: 60%;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  li.mega-menu-megamenu > ul.mega-sub-menu .mega-menu-columns-4-of-5 {
    width: 80%;
  }
}
@media screen and (min-width: 1400px) {
  li.mega-menu-megamenu > ul.mega-sub-menu .mega-menu-columns-1-of-6 {
    width: 16.66%;
  }
}
@media screen and (min-width: 1400px) {
  li.mega-menu-megamenu > ul.mega-sub-menu .mega-menu-columns-2-of-6 {
    width: 33.33%;
  }
}
@media screen and (min-width: 1400px) {
  li.mega-menu-megamenu > ul.mega-sub-menu .mega-menu-columns-3-of-6 {
    width: 50%;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  li.mega-menu-megamenu > ul.mega-sub-menu .mega-menu-columns-4-of-6 {
    width: 66.66%;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  li.mega-menu-megamenu > ul.mega-sub-menu .mega-menu-columns-5-of-6 {
    width: 66.66%;
  }
}

#header-nav ul li.widget_media_image {
  position: relative;
  border-radius: 5px;
  min-height: 100px;
  display: none;
  padding-right: 0 !important;
  overflow: hidden;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li.widget_media_image {
    display: block;
  }
}
#header-nav ul li.widget_media_image:after {
  display: block;
  inset: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: #080e1a;
  opacity: 0.4;
  content: "";
  pointer-events: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 4;
}
#header-nav ul li.widget_media_image a {
  display: block;
  position: absolute;
  margin: 0 !important;
  inset: 0;
  width: 100%;
  border: 0 !important;
  height: 100%;
  z-index: 3;
  padding: 0 !important;
}
#header-nav ul li.widget_media_image a:before {
  display: none !important;
}
#header-nav ul li.widget_media_image h4 {
  position: absolute;
  z-index: 5;
  color: white;
  top: 50%;
  left: 50%;
  text-align: center;
  padding: 10px;
  margin: 0;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#header-nav ul li.widget_media_image h4:before {
  color: #0b1426;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0 auto 10px;
  padding: 0;
  border-radius: 50%;
  background: white;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-family: "Font Awesome 6 Pro";
  content: "\f061";
  display: block;
}
#header-nav ul li.widget_media_image img {
  position: absolute;
  inset: 0;
  width: 100%;
  z-index: 1;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
#header-nav ul li.widget_media_image:hover:after {
  opacity: 0.6;
}

.columns {
  width: 100%;
}
.columns.category-filter .leftsidebar {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .columns.category-filter .leftsidebar {
    position: sticky;
    top: 90px;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
.columns.category-filter .rightbar {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.quote p {
  border-left: 5px solid #f2f2f5;
  padding-left: 30px;
  margin: 0 0 30px;
}
.quote p strong {
  text-transform: uppercase;
  font-size: 0.875em;
  line-height: 1em;
  color: #080e1a;
  display: block;
  margin: 20px 0 0;
}

.blockquote, blockquote {
  border-left: 5px solid #080e1a;
  padding: 10px 0 10px 30px;
  margin-bottom: 35px;
}
.blockquote p, blockquote p {
  margin-bottom: 15px;
  font-size: 1.0625em;
  line-height: 1.6470588235em;
}
.blockquote p:last-child, blockquote p:last-child {
  margin-bottom: 0;
}
.blockquote strong, blockquote strong {
  font-family: "Radio Canada Big", sans-serif;
  color: #080e1a;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  overflow: visible;
  position: relative;
  width: 100%;
  border: 0;
  height: 1px;
  background: #ebebeb;
  max-width: 1460px;
  margin: 52.5px auto;
}
hr.margin {
  margin: 52.5px auto;
}
hr:after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: #080e1a;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-box-shadow: 0 0 0 8px #fff;
          box-shadow: 0 0 0 8px #fff;
}

section.padded + hr {
  margin: 0 auto;
}

.image-background {
  position: relative;
  overflow: hidden;
  background: #080e1a;
}
.image-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 0.5;
}

@media only screen and (min-width: 768px) {
  .testimonials-box.col-container .image {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media screen and (min-width: 1400px) {
  .testimonials-box.col-container .image {
    width: calc(50% - 50px);
    -ms-flex-preferred-size: calc(50% - 50px);
        flex-basis: calc(50% - 50px);
  }
}
.testimonials-box.noimage .image {
  display: none;
}

@media only screen and (min-width: 640px) {
  .testimonials-list {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .testimonials-list {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}
@media screen and (min-width: 1400px) {
  .testimonials-list {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
}

.testimoniallist-item {
  border: 1px solid #ebebeb;
  padding: 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
  margin-bottom: 15px;
}
.testimoniallist-item i {
  font-size: 1.875em;
  line-height: 1em;
  margin-bottom: 10px;
  font-weight: 700;
  color: #0b1426;
}
.testimoniallist-item p {
  margin-bottom: 20px;
  font-size: 1.0625em;
  line-height: 1.7647058824em;
}
.testimoniallist-item strong {
  font-size: 1em;
  line-height: 1.25em;
  font-family: "Radio Canada Big", sans-serif;
  letter-spacing: 0.6px;
  color: #426a73;
  text-transform: uppercase;
}
.testimoniallist-item .companyname {
  font-size: 0.875em;
  line-height: 2.1428571429em;
  display: block;
  opacity: 0.8;
}

.testimonials {
  position: relative;
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  .col-container .testimonials {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media screen and (min-width: 1400px) {
  .col-container .testimonials {
    width: calc(50% - 50px);
    -ms-flex-preferred-size: calc(50% - 50px);
        flex-basis: calc(50% - 50px);
  }
}
.testimonials .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.testimonials .owl-stage, .testimonials .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.testimonials .testimonial-item {
  padding: 2px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  max-width: 900px;
  margin: auto;
}
.image-background .testimonials .testimonial-item {
  color: white;
}
.col-container .testimonials .testimonial-item {
  text-align: left;
}
.testimonials .testimonial-item .testimonial-body {
  position: relative;
}
.testimonials .testimonial-item .testimonial-body p {
  margin-bottom: 25px;
  font-size: 1.25em;
  line-height: 1.9em;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .testimonials .testimonial-item .testimonial-body p {
    font-size: 1.875em;
    line-height: 1.6em;
  }
}
.image-background .testimonials .testimonial-item .testimonial-body p {
  color: white;
}
.testimonials .testimonial-item strong {
  font-size: 1.125em;
  line-height: 1.6666666667em;
  font-family: "Radio Canada Big", sans-serif;
  letter-spacing: 0.6px;
  color: #426a73;
  text-transform: uppercase;
}
.image-background .testimonials .testimonial-item strong {
  color: white;
}
.testimonials .testimonial-item .companyname {
  font-size: 0.9375em;
  line-height: 2em;
  display: inline-block;
}
.col-container .testimonials .testimonial-item .companyname {
  margin-top: 4px;
  display: block;
}
.testimonials .testimonial-item .companyname:before {
  content: " - ";
  display: inline;
}
.col-container .testimonials .testimonial-item .companyname:before {
  display: none;
}
.testimonials.arrows {
  padding-left: 0;
  padding-right: 0;
}
.testimonials.arrows .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.col-container .testimonials.arrows .owl-nav {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.testimonials.arrows .owl-nav .owl-prev, .testimonials.arrows .owl-nav .owl-next {
  position: relative;
  top: auto;
  left: auto;
  right: 0;
  line-height: 55px;
  width: 55px;
  height: 55px;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.testimonials.arrows .slide-num {
  margin: 0 15px;
  color: #0b1426;
  background: #f2f2f5;
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: 700;
  font-size: 0.8125em;
  line-height: 1em;
}
.image-background .testimonials.arrows .slide-num {
  background: white;
}

.image-left-text-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
.image-left-text-right .image {
  width: 100%;
  position: relative;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .image-left-text-right .image {
    width: calc(50% - 0px);
    -ms-flex-preferred-size: calc(50% - 0px);
        flex-basis: calc(50% - 0px);
  }
}
.image-left-text-right .image img {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .image-left-text-right .image img {
    height: 100%;
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
.image-left-text-right .text {
  padding: 20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .image-left-text-right .text {
    width: calc(50% - 0px);
    -ms-flex-preferred-size: calc(50% - 0px);
        flex-basis: calc(50% - 0px);
    padding: 50px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .image-left-text-right .text {
    padding: 60px 80px;
  }
}
@media screen and (min-width: 1520px) {
  .image-left-text-right .text {
    padding-left: calc((100% - 1460px) / 2);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .image-left-text-right.large-padding .text {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media screen and (min-width: 1520px) {
  .image-left-text-right.image-position-left .text {
    padding-left: 80px;
    padding-right: calc((100% - 1460px) / 2);
  }
}

.slideshow.arrows, .image-slideshow.arrows, .main-image.arrows {
  padding: 0;
}
.row .slideshow.arrows, .row .image-slideshow.arrows, .row .main-image.arrows {
  margin-left: -20px;
  margin-right: -20px;
  width: calc(100% + 40px);
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row .slideshow.arrows, .row .image-slideshow.arrows, .row .main-image.arrows {
    margin-left: -30px;
    margin-right: -30px;
    width: calc(100% + 60px);
  }
}
@media screen and (min-width: 1400px) {
  .row .slideshow.arrows, .row .image-slideshow.arrows, .row .main-image.arrows {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}
.slideshow.arrows .owl-nav .owl-prev, .image-slideshow.arrows .owl-nav .owl-prev, .main-image.arrows .owl-nav .owl-prev {
  left: 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .slideshow.arrows .owl-nav .owl-prev, .image-slideshow.arrows .owl-nav .owl-prev, .main-image.arrows .owl-nav .owl-prev {
    left: 10px;
  }
}
.slideshow.arrows .owl-nav .owl-next, .image-slideshow.arrows .owl-nav .owl-next, .main-image.arrows .owl-nav .owl-next {
  right: 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .slideshow.arrows .owl-nav .owl-next, .image-slideshow.arrows .owl-nav .owl-next, .main-image.arrows .owl-nav .owl-next {
    right: 10px;
  }
}
@media only screen and (min-width: 768px) {
  .slideshow.arrows.two-col, .image-slideshow.arrows.two-col, .main-image.arrows.two-col {
    margin: 0;
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media screen and (min-width: 1400px) {
  .slideshow.arrows.two-col, .image-slideshow.arrows.two-col, .main-image.arrows.two-col {
    width: calc(50% - 50px);
    -ms-flex-preferred-size: calc(50% - 50px);
        flex-basis: calc(50% - 50px);
  }
}
.slideshow .slide-num, .image-slideshow .slide-num, .main-image .slide-num {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 4;
  background: rgba(11, 20, 38, 0.9);
  color: white;
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: 600;
  font-size: 0.8125em;
  line-height: 1em;
}

.slideshow img {
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.slideshow .slideshow-item {
  position: relative;
  width: 100%;
}
.slideshow .slideshow-item:before {
  padding-top: 90%;
  display: block;
  content: "";
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .slideshow .slideshow-item:before {
    padding-top: 35%;
  }
  .row .slideshow .slideshow-item:before {
    padding-top: 45%;
  }
}
.slideshow h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0 20px;
  z-index: 5;
  color: white;
  font-size: 2.1875em;
  line-height: 1.2857142857em;
  margin-bottom: 25px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .slideshow h3 {
    font-size: 2.5em;
    line-height: 1.25em;
  }
}

.before-and-after .one-third-col {
  position: relative;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .before-and-after .one-third-col {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.image-position-left .image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.image-position-left .text {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.col-container.image-full {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.col-container.image-full .col {
  position: relative;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col-container.image-full .col {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.col-container.image-full img.background-image {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
@media only screen and (min-width: 768px) {
  .col-container.image-full img.background-image {
    position: absolute;
    inset: 0;
    width: 100%;
    margin: 0;
    z-index: 1;
    height: 100%;
  }
}

.image-slideshow .owl-stage-outer {
  height: 100%;
}
.image-slideshow .owl-stage, .image-slideshow .owl-item, .image-slideshow .owl-stage-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.image-slideshow img.background-image {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.image-slideshow .active img.background-image {
  opacity: 1;
}

.image-text-box .owl-item {
  position: relative;
  overflow: hidden;
}
.image-text-box .col.image {
  padding-top: 0;
  padding-bottom: 0;
}
.image-text-box .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.image-text-box .image.two-images {
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 400px;
}
@media only screen and (min-width: 768px) {
  .image-text-box .image.two-images {
    height: auto;
  }
}
.image-text-box .image.two-images img.background-image {
  width: calc(50% - 10px);
  position: absolute;
}
.image-text-box .image.two-images img.background-image:last-child {
  left: auto;
  right: 0;
}
.image-text-box .image.three-images {
  height: 400px;
}
@media only screen and (min-width: 768px) {
  .image-text-box .image.three-images {
    height: auto;
  }
}
.image-text-box .image.three-images img.background-image {
  width: calc(50% - 10px);
  position: absolute;
  height: calc(50% - 10px);
}
.image-text-box .image.three-images img.background-image:first-child {
  width: 100%;
  right: 0;
  bottom: auto;
}
.image-text-box .image.three-images img.background-image:first-child + img.background-image {
  right: auto;
  left: 0;
  bottom: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  top: auto;
}
.image-text-box .image.three-images img.background-image:last-child {
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
}

@media only screen and (min-width: 768px) {
  .sticky-image.col-container .one-third-col {
    position: sticky;
    top: 90px;
    height: calc(100vh - 90px);
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .sticky-image.col-container .one-third-col {
    top: 90px;
    height: calc(100vh - 90px);
  }
}

.package-list.col-container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.flex-content .price-box {
  border: 1px solid #ebebeb;
  padding: 30px 30px 90px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  max-width: 350px;
  position: relative;
}
.flex-content .price-box h3 {
  margin: 0 0 15px;
}
.flex-content .price-box p {
  margin: 0 0 15px;
}
.flex-content .price-box .price {
  color: #0b1426;
  margin: 0 0 15px;
}
.flex-content .price-box .price .suffix {
  display: inline-block;
  font-size: 0.625em;
  line-height: 1em;
}
.flex-content .price-box .btn, .flex-content .price-box .woocommerce form input[type=submit], .woocommerce form .flex-content .price-box input[type=submit],
.flex-content .price-box .woocommerce form input[type=button],
.woocommerce form .flex-content .price-box input[type=button] {
  width: calc(100% - 60px);
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
}
.flex-content .price-box ul {
  border-top: 1px solid #ebebeb;
  padding: 20px;
  margin: 0;
}
.flex-content .price-box.highlight {
  background: #426a73;
  border-color: #426a73;
}
@media only screen and (min-width: 768px) {
  .flex-content .price-box.highlight {
    margin: -20px 0 0;
  }
}
.flex-content .price-box.highlight p, .flex-content .price-box.highlight ul li, .flex-content .price-box.highlight h3 {
  color: white;
}
.flex-content .price-box.highlight .btn:hover, .flex-content .price-box.highlight .woocommerce form input[type=submit]:hover, .woocommerce form .flex-content .price-box.highlight input[type=submit]:hover,
.flex-content .price-box.highlight .woocommerce form input[type=button]:hover,
.woocommerce form .flex-content .price-box.highlight input[type=button]:hover {
  color: #426a73;
  background: white;
}

.product-icons + .accordian {
  margin-top: 10px;
}
.product-icons + .accordian .woocommerce-Tabs-panel:first-child h2.title {
  border-top: 0;
}

.accordian {
  margin: 20px 0 0;
}
.accordian .accordian-group {
  margin-top: 20px;
  border-top: 1px solid #ebebeb;
}
.accordian .accordian-group:first-child {
  margin-top: 0;
}
.accordian .text, .accordian .content {
  padding: 0;
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}
.accordian .text p:last-child, .accordian .content p:last-child {
  margin-bottom: 30px;
}
.accordian h3.active + .text, .accordian h2.active + .content {
  max-height: 5000px;
  -webkit-transition: max-height 1s ease-in-out;
  transition: max-height 1s ease-in-out;
}
.accordian h3.title, .accordian h2.title {
  background: white;
  padding: 20px 0;
  font-size: 1.0625em;
  line-height: 1em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  color: #080e1a;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  z-index: 5;
  margin: 0;
}
.accordian h3.title:after, .accordian h2.title:after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  font-family: "Font Awesome 6 Pro";
  content: "\f107";
  color: #426a73;
  font-size: 14px;
  line-height: 14px;
  z-index: 2;
  font-weight: 400;
  -webkit-transform: translateY(-50%) rotate(0);
      -ms-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.accordian h3.title i, .accordian h2.title i {
  color: #426a73;
  margin-right: 10px;
  width: 20px;
  font-weight: 300;
}
.accordian h3.title.active, .accordian h2.title.active {
  margin-bottom: 15px;
}
.accordian h3.title.active:after, .accordian h2.title.active:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.accordian h3.title:first-child, .accordian h2.title:first-child {
  margin-top: 0;
}
.accordian h2.title {
  border-top: 1px solid #ebebeb;
}
.accordian h2.title i {
  display: none;
}
.accordian .content > h2 {
  display: none;
}

.accordion-images .accordion-nav {
  display: none;
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordion-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    width: 25%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 25px 0;
  }
  .accordion-images .accordion-nav .accordionnav-item:last-child {
    margin-bottom: 0;
  }
}
.accordion-images .accordion-box {
  width: 100%;
  display: block;
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordion-box {
    width: 75%;
  }
}
.accordion-images .accordionbox-item {
  position: relative;
  margin: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordionbox-item {
    display: none;
    height: 100%;
    z-index: 4;
    max-height: none;
    padding: 50px;
    background: #f2f2f5;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .accordion-images .accordionbox-item {
    padding: 50px 100px 50px 0;
    min-height: 600px;
  }
}
.accordion-images .accordionbox-item.mobile-active {
  max-height: 5000px;
  -webkit-transition: max-height 1s ease-in-out;
  transition: max-height 1s ease-in-out;
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordionbox-item.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.accordion-images .accordionbox-item .background-image {
  display: none;
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordionbox-item .background-image {
    display: block;
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.accordion-images .accordionbox-item .box {
  background: white;
  position: relative;
  z-index: 2;
  padding: 30px;
  max-width: 590px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  border: 1px solid #ebebeb;
  border-top: 0;
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordionbox-item .box {
    margin: auto;
    border: 0;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .accordion-images .accordionbox-item .box {
    margin-left: auto;
    margin-right: 0;
    padding: 50px;
  }
}
.accordion-images .accordionbox-item .box p:last-child {
  margin: 0;
}
.accordion-images .accordionbox-item .box h3 {
  display: none;
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordionbox-item .box h3 {
    display: block;
    margin-bottom: 20px;
  }
}
.accordion-images .accordionnav-item, .accordion-images .mobile-title {
  background: white;
  padding: 20px 40px 20px 25px;
  font-size: 1em;
  line-height: 1.1875em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 0 0 15px;
  border: 1px solid #ebebeb;
  color: #426a73;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  z-index: 5;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordionnav-item, .accordion-images .mobile-title {
    width: calc(100% - 20px);
  }
}
.accordion-images .accordionnav-item span, .accordion-images .mobile-title span {
  display: inline-block;
  position: relative;
  z-index: 2;
}
.accordion-images .accordionnav-item:after, .accordion-images .mobile-title:after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  font-family: "Font Awesome 6 Pro";
  content: "\f107";
  color: #0b1426;
  font-size: 16px;
  line-height: 16px;
  z-index: 2;
  font-weight: 400;
  -webkit-transform: translateY(-50%) rotate(0);
      -ms-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordionnav-item:after, .accordion-images .mobile-title:after {
    content: "\f105";
  }
}
.accordion-images .accordionnav-item:before, .accordion-images .mobile-title:before {
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  position: absolute;
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #426a73;
  content: "";
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordionnav-item:not(.active):hover, .accordion-images .mobile-title:not(.active):hover {
    color: white;
  }
  .accordion-images .accordionnav-item:not(.active):hover:before, .accordion-images .mobile-title:not(.active):hover:before {
    width: 100%;
  }
}
.accordion-images .accordionnav-item.active, .accordion-images .mobile-title.active {
  background: #426a73;
  color: white;
  border-color: #426a73;
  margin-right: -38px;
  width: calc(100% + 38px);
}
.accordion-images .mobile-title {
  margin: 20px 0 0;
}
@media only screen and (min-width: 768px) {
  .accordion-images .mobile-title {
    display: none;
  }
}
.accordion-images .mobile-title.mobile-active:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.download-row {
  border-bottom: 1px solid #ebebeb;
  background: 0;
  padding: 25px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.download-row .download-filesize {
  font-weight: 600;
  color: #0b1426;
  margin-right: 0;
  margin-left: auto;
  padding-right: 20px;
}
.download-row a {
  background: #426a73;
  font-weight: 600;
  padding: 10px 15px;
  font-size: 0.875em;
  line-height: 1.3571428571em;
  letter-spacing: 1px;
  color: white;
  display: inline-block;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.download-row a i {
  margin-left: 5px;
}
.download-row a:hover {
  background: #0b1426;
  color: white;
}

.video-box .open-youtube {
  font-size: 0.8125em;
  line-height: 1.0769230769em;
  color: white;
  background: #FF0000;
  font-weight: 600;
  border-radius: 5px;
  padding: 10px 15px;
}
.video-box .open-youtube:hover {
  background: #080e1a;
}
.video-box .open-youtube i {
  margin-right: 8px;
}
.video-box .video-item {
  border: 1px solid #ebebeb;
  border-radius: 5px;
  padding: 15px 15px 25px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .video-box .video-item {
    margin-bottom: 40px;
  }
}
.video-box .video-item .video-container {
  margin: 0 0 20px;
  position: relative;
  width: 100%;
}
.video-box .video-item .video-container:before {
  content: "";
  padding-bottom: 56.25%;
  display: block;
}
.video-box .video-item .video-container iframe, .video-box .video-item .video-container video, .video-box .video-item .video-container embed, .video-box .video-item .video-container object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-box .video-item h3 {
  margin: 0;
  color: #426a73;
  font-size: 1.25em;
  line-height: 1.5em;
}
.video-box .video-text {
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .video-box .two-col.col {
    -ms-flex-preferred-size: calc(50% - 20px);
        flex-basis: calc(50% - 20px);
    width: calc(50% - 20px);
  }
}
@media screen and (min-width: 1400px) {
  .video-box .two-col.col {
    -ms-flex-preferred-size: calc(50% - 20px);
        flex-basis: calc(50% - 20px);
    width: calc(50% - 20px);
  }
}

.home-text p {
  margin-left: auto;
  margin-right: auto;
  max-width: 860px;
}

.recent-news-holder {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.recent-news-holder .recent-news-item {
  border: 1px solid #ebebeb;
}
.recent-news-holder .recent-news-item .featured-image {
  position: relative;
  overflow: hidden;
}
.recent-news-holder .recent-news-item .featured-image:before {
  display: block;
  padding-top: 70%;
  content: "";
}
.recent-news-holder .recent-news-item .featured-image img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  widtH: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  -o-object-fit: cover;
     object-fit: cover;
}
.recent-news-holder .recent-news-item .featured-image:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #080e1a;
  opacity: 0.4;
  z-index: 3;
  display: block;
  content: "";
}
.recent-news-holder .recent-news-item .featured-image h4 {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0 20px;
  margin: 0;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 4;
  width: calc(100% - 40px);
  font-weight: 600;
  font-size: 1.75em;
  line-height: 1.4285714286em;
}
.recent-news-holder .recent-news-item .featured-image h4 a {
  color: white !important;
}
.recent-news-holder .recent-news-item .featured-image h4 a:hover {
  text-decoration: none;
}
.recent-news-holder .recent-news-item .recent-news-body {
  padding: 30px;
}
.recent-news-holder .recent-news-item:hover .featured-image img {
  -webkit-transform: scale(1.15);
      -ms-transform: scale(1.15);
          transform: scale(1.15);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

iframe[src*="https://www.google.com/maps"], iframe[src*="https://www.youtube.com/embed/"] {
  width: 100%;
  display: block;
}

:root {
  --wc-form-border-color: darken($lineColor, 8%);
  --wc-form-color-text: $bodyColor;
}

.select2-search__field {
  border-radius: 5px;
}

.select2-results__option {
  padding: 8px 15px;
  font-size: 0.9375em;
  line-height: 1.3333333333em;
}

.select2-results__option--highlighted[aria-selected], .select2-container--classic .select2-results__option--highlighted[data-selected] {
  background-color: #426a73 !important;
  color: white;
}

.woocommerce form label {
  display: block;
  font-family: "Radio Canada Big", sans-serif;
  color: #080e1a;
  font-size: 0.875em;
  line-height: 1em;
  font-weight: 700;
  text-transform: uppercase;
}
.woocommerce form input[type=text], .woocommerce form input[type=email], .woocommerce form input[type=url], .woocommerce form input[type=tel], .woocommerce form input[type=search], .woocommerce form input[type=date], .woocommerce form input[type=number], .woocommerce form input[type=password], .woocommerce form textarea, .woocommerce form select {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  text-shadow: none;
  border: 1px solid #d7d7d7;
  border-radius: 5px;
  padding: 13px 15px;
  font-size: 0.9375em;
  line-height: 1.3333333333em;
  width: 100%;
  min-height: 48px;
  color: #465568;
  background: white;
  -webkit-box-shadow: 3px 4px 5px 0px rgba(0, 0, 0, 0.03);
          box-shadow: 3px 4px 5px 0px rgba(0, 0, 0, 0.03);
  width: 100%;
  margin: 0;
}
.woocommerce form input[type=text]:hover, .woocommerce form input[type=email]:hover, .woocommerce form input[type=url]:hover, .woocommerce form input[type=tel]:hover, .woocommerce form input[type=search]:hover, .woocommerce form input[type=date]:hover, .woocommerce form input[type=number]:hover, .woocommerce form input[type=password]:hover, .woocommerce form textarea:hover, .woocommerce form select:hover {
  outline: none;
}
.woocommerce form input[type=text]:focus, .woocommerce form input[type=email]:focus, .woocommerce form input[type=url]:focus, .woocommerce form input[type=tel]:focus, .woocommerce form input[type=search]:focus, .woocommerce form input[type=date]:focus, .woocommerce form input[type=number]:focus, .woocommerce form input[type=password]:focus, .woocommerce form textarea:focus, .woocommerce form select:focus {
  outline: none;
  text-shadow: none;
  border-color: #b8b8b8;
}
.woocommerce form input[type=text]:-webkit-autofill, .woocommerce form input[type=email]:-webkit-autofill, .woocommerce form input[type=url]:-webkit-autofill, .woocommerce form input[type=tel]:-webkit-autofill, .woocommerce form input[type=search]:-webkit-autofill, .woocommerce form input[type=date]:-webkit-autofill, .woocommerce form input[type=number]:-webkit-autofill, .woocommerce form input[type=password]:-webkit-autofill, .woocommerce form textarea:-webkit-autofill, .woocommerce form select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset;
  -webkit-text-fill-color: #888888 !important;
}
.woocommerce form .select2-container--default .select2-selection--single {
  height: 48px;
  border-radius: 5px;
}
.woocommerce form .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 0 0 0 15px;
  font-size: 0.9375em;
  line-height: 1.3333333333em;
  color: #465568;
  line-height: 48px;
}
.woocommerce form .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 2px;
  right: 10px;
}
.woocommerce form .form-row {
  padding: 0;
  margin: 0 0 16px;
}
.woocommerce form .form-row label {
  line-height: 24px;
}
.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
  border-radius: 5px;
  padding: 13px 15px;
  font-size: 0.9375em;
  line-height: 1.3333333333em;
  color: #465568;
  border: 1px solid #d7d7d7;
}
.woocommerce form input[type=text], .woocommerce form input[type=email], .woocommerce form input[type=url], .woocommerce form input[type=tel], .woocommerce form input[type=search], .woocommerce form input[type=date], .woocommerce form input[type=number], .woocommerce form input[type=password], .woocommerce form textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.woocommerce form textarea {
  max-width: 100%;
  min-height: 150px;
  height: 200px;
}
.woocommerce form input[type=submit],
.woocommerce form input[type=button] {
  display: block;
}
.woocommerce form .icon .wpcf7-form-control-wrap {
  display: block;
  position: relative;
}
.woocommerce form .icon .wpcf7-form-control-wrap input[type=email], .woocommerce form .icon .wpcf7-form-control-wrap input[type=tel], .woocommerce form .icon .wpcf7-form-control-wrap input[type=text], .woocommerce form .icon .wpcf7-form-control-wrap select, .woocommerce form .icon .wpcf7-form-control-wrap textarea {
  padding-left: 55px;
}
.woocommerce form .icon .wpcf7-form-control-wrap input[type=email].wpcf7-not-valid, .woocommerce form .icon .wpcf7-form-control-wrap input[type=tel].wpcf7-not-valid, .woocommerce form .icon .wpcf7-form-control-wrap input[type=text].wpcf7-not-valid, .woocommerce form .icon .wpcf7-form-control-wrap select.wpcf7-not-valid, .woocommerce form .icon .wpcf7-form-control-wrap textarea.wpcf7-not-valid {
  border-color: #e74c3c;
}
.woocommerce form .icon .wpcf7-form-control-wrap:before {
  content: "\f0c1";
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  left: 0;
  top: 15px;
  color: #0b1426;
  font-weight: 300;
  width: 45px;
  text-align: center;
  border-right: 1px solid #ebebeb;
  font-size: 0.9375em;
  line-height: 1.6666666667em;
}
.woocommerce form .icon .wpcf7-form-control-wrap[data-name=your-email]:before {
  content: "\f0e0";
}
.woocommerce form .icon .wpcf7-form-control-wrap[data-name=phone]:before {
  content: "\f095";
}
.woocommerce form .icon .wpcf7-form-control-wrap[data-name=your-name]:before {
  content: "\f007";
}
.woocommerce form .icon .wpcf7-form-control-wrap[data-name=your-subject]:before {
  content: "\f05a";
}
.woocommerce form .icon .wpcf7-form-control-wrap[data-name=your-message]:before {
  content: "\f086";
}

@media only screen and (min-width: 960px) and (orientation: landscape) {
  .wpcf7-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.wpcf7-form .textarea {
  width: calc(100% - 0px);
  -ms-flex-preferred-size: calc(100% - 0px);
      flex-basis: calc(100% - 0px);
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .wpcf7-form .two-col {
    width: calc(50% - 20px);
    -ms-flex-preferred-size: calc(50% - 20px);
        flex-basis: calc(50% - 20px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .wpcf7-form .three-col {
    width: calc(33.33% - 20px);
    -ms-flex-preferred-size: calc(33.33% - 20px);
        flex-basis: calc(33.33% - 20px);
  }
}
.wpcf7-form .input {
  width: 100%;
  text-align: left;
}
.wpcf7-form .wpcf7-submit {
  width: 100%;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .wpcf7-form .wpcf7-submit {
    width: auto;
    min-width: 250px;
  }
}

.email-heading, .contact-form h2, .getin-touch.col-container h2 {
  margin-bottom: 25px;
}
.email-heading:before, .contact-form h2:before, .getin-touch.col-container h2:before {
  color: #0b1426;
  display: inline-block;
  font-family: "Font Awesome 6 Pro";
  margin-right: 13px;
  content: "\e16f";
  font-weight: 100;
}

.contact-heading {
  margin-bottom: 10px;
  padding-left: 50px;
}
.contact-heading:before {
  font-size: 24px;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  font-weight: 300;
  color: #0b1426;
  font-family: "Font Awesome 6 Pro";
  text-align: center;
}
.contact-heading.tel:before {
  content: "\f095";
}
.contact-heading.address:before {
  content: "\f3c5";
}
.contact-heading.mobile:before {
  content: "\f10b";
}
.contact-heading.email:before {
  content: "\f0e0";
}
.contact-heading.email:before {
  content: "\f0e0";
}
.contact-heading.socials:before {
  content: "\f086";
}
.contact-heading.opening:before {
  content: "\f017";
}

.col .contact-heading:last-of-type + p {
  border-bottom: 0;
}

.contact-heading + .socials, .contact-heading + .opening-hours {
  padding: 0 0 30px 50px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ebebeb;
}

.contact-heading + p {
  padding: 0 0 30px 50px;
  border-bottom: 1px solid #ebebeb;
}
.contact-heading + p a {
  color: #465568;
  font-weight: 300;
  position: relative;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .contact-heading + p a:before {
    width: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: block;
    background: #0b1426;
    height: 1px;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .contact-heading + p a:hover:before {
    width: 100%;
  }
}

.contact-form {
  text-align: center;
}
.contact-form h2 + p {
  margin-bottom: 40px;
}
.contact-form .wpcf7 .wpcf7-form {
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
}
.contact-form .wpcf7 .wpcf7-submit {
  margin-left: auto;
  margin-right: auto;
}

.wpcf7-not-valid-tip {
  margin: -15px 0 10px !important;
  font-size: 14px !important;
  line-height: 14px !important;
}

.ajax-loader {
  display: none !important;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-response-output {
  padding: 15px !important;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  width: 100%;
  margin: 25px 0 0 !important;
  background: #f2f2f5;
  color: #080e1a;
  font-weight: 700;
  border: 0 !important;
}
form.invalid .wpcf7-response-output, form.unaccepted .wpcf7-response-output, form.payment-required .wpcf7-response-output {
  background: #e74c3c;
  color: white;
}
form.sent .wpcf7-response-output {
  background: #2ecc71;
  color: white;
}

.wpcf7-validation-errors {
  border-color: #e74c3c !important;
}

.accordian-filter .widget_block h3 {
  cursor: pointer;
}
.accordian-filter .widget_block h3:after {
  display: inline-block;
  content: "\f107";
  font-family: "Font Awesome 6 Pro";
  border-radius: 50%;
  font-weight: 400;
  font-size: 14px;
  position: absolute;
  right: 0;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  color: #426a73;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.accordian-filter .widget_block h3 + div {
  overflow: hidden;
  max-height: 5000px;
  -webkit-transition: max-height 1s ease-in-out;
  transition: max-height 1s ease-in-out;
}
.accordian-filter .widget_block h3.active:after {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.accordian-filter .widget_block h3.active + div {
  max-height: 0px;
  -webkit-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.customer-dashboard .three-col a {
  display: block;
  border: 1px solid #ebebeb;
  text-align: center;
  padding: 30px;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 1.125em;
  line-height: 1em;
  font-weight: 700;
  border-radius: 5px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.customer-dashboard .three-col a p {
  color: #080e1a;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.customer-dashboard .three-col a:hover {
  background: #0b1426;
}
.customer-dashboard .three-col a:hover p {
  color: white;
}

.woocommerce-account nav.woocommerce-MyAccount-navigation {
  float: none;
  width: 100%;
}
.woocommerce-account nav.woocommerce-MyAccount-navigation a:before {
  width: 15px;
  text-align: center;
  display: inline-block;
  font-family: "Font Awesome 6 Pro";
  content: "";
  margin-right: 10px;
  color: #426a73;
  font-weight: 400;
}
.woocommerce-account nav.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--dashboard a:before {
  content: "\f3fd";
}
.woocommerce-account nav.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--orders a:before {
  content: "\f03a";
}
.woocommerce-account nav.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--downloads a:before {
  content: "\f019";
}
.woocommerce-account nav.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--edit-address a:before {
  content: "\f3c5";
}
.woocommerce-account nav.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--edit-account a:before {
  content: "\f2bd";
}
.woocommerce-account nav.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a:before {
  content: "\f2f5";
}
.woocommerce-account nav.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--support-conversations a:before {
  content: "\f059";
}
.woocommerce-account nav.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--my-pre-orders a:before {
  content: "\e0d5";
}
.woocommerce-account nav.woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--payment-methods {
  display: none;
}
.woocommerce-account nav.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.woocommerce-account nav.woocommerce-MyAccount-navigation ul li {
  padding: 0;
  margin: 0 0 8px;
}
.woocommerce-account nav.woocommerce-MyAccount-navigation ul li a {
  color: #465568;
  font-weight: 300;
}
.woocommerce-account nav.woocommerce-MyAccount-navigation ul li a:hover {
  color: #426a73;
}
.woocommerce-account nav.woocommerce-MyAccount-navigation ul li a[aria-current] {
  color: #0b1426;
  font-weight: 700;
}

.leftsidebar [class*=widget_], .filter-bar [class*=widget_] {
  padding: 0;
  margin: 0 0 20px;
}
.leftsidebar [class*=widget_] h3, .leftsidebar [class*=widget_] h2, .filter-bar [class*=widget_] h3, .filter-bar [class*=widget_] h2 {
  margin: 10px 0 15px;
  padding-bottom: 15px;
  font-family: "Radio Canada Big", sans-serif;
  color: #080e1a;
  letter-spacing: 0;
  font-weight: 700;
  text-transform: none;
  font-size: 1.1875em;
  line-height: 1em;
  border-bottom: 1px solid #ebebeb;
}
.woocommerce .leftsidebar [class*=widget_] .wc-blocks-filter-wrapper, .woocommerce .filter-bar [class*=widget_] .wc-blocks-filter-wrapper {
  margin: 0 0 25px;
}
.woocommerce .leftsidebar [class*=widget_] .wc-block-attribute-filter, .woocommerce .filter-bar [class*=widget_] .wc-block-attribute-filter {
  margin-bottom: 0;
}
.woocommerce .leftsidebar [class*=widget_] .wc-block-attribute-filter__actions, .woocommerce .filter-bar [class*=widget_] .wc-block-attribute-filter__actions {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.woocommerce .leftsidebar [class*=widget_] .wc-block-components-price-slider__range-input-progress, .woocommerce .filter-bar [class*=widget_] .wc-block-components-price-slider__range-input-progress {
  --range-color: $primaryColor;
}
.woocommerce .leftsidebar [class*=widget_] .wc-block-components-price-slider__range-input-wrapper, .woocommerce .filter-bar [class*=widget_] .wc-block-components-price-slider__range-input-wrapper {
  margin-left: 3px;
  margin-right: 3px;
}
.woocommerce .leftsidebar [class*=widget_] .wc-block-price-filter__controls, .woocommerce .filter-bar [class*=widget_] .wc-block-price-filter__controls {
  text-align: center;
}
.woocommerce .leftsidebar [class*=widget_] .wc-block-price-filter__controls input, .woocommerce .leftsidebar [class*=widget_] .wc-block-price-filter__controls .wc-block-components-price-slider__controls .wc-block-components-price-slider__amount, .woocommerce .filter-bar [class*=widget_] .wc-block-price-filter__controls input, .woocommerce .filter-bar [class*=widget_] .wc-block-price-filter__controls .wc-block-components-price-slider__controls .wc-block-components-price-slider__amount {
  border-radius: 5px !important;
  border-color: #d7d7d7 !important;
  max-width: none;
  width: 100%;
}
.woocommerce .leftsidebar [class*=widget_] .wc-block-price-filter__controls .wc-block-components-price-slider__controls .wc-block-components-price-slider__amount, .woocommerce .filter-bar [class*=widget_] .wc-block-price-filter__controls .wc-block-components-price-slider__controls .wc-block-components-price-slider__amount {
  text-align: center;
}
.woocommerce .leftsidebar [class*=widget_] .wc-block-price-filter__controls label.wc-block-components-price-slider__label, .woocommerce .filter-bar [class*=widget_] .wc-block-price-filter__controls label.wc-block-components-price-slider__label {
  font-weight: 600;
  margin: 4px 0 0;
  color: #080e1a;
  font-size: 0.8125em;
  line-height: 1em;
}
.woocommerce .leftsidebar [class*=widget_] input[value=instock] + svg + span, .woocommerce .leftsidebar [class*=widget_] input[value=outofstock] + svg + span, .woocommerce .filter-bar [class*=widget_] input[value=instock] + svg + span, .woocommerce .filter-bar [class*=widget_] input[value=outofstock] + svg + span {
  font-weight: 700;
  color: #080e1a;
  font-size: 0.875em;
  line-height: 1.1428571429em;
}
.woocommerce .leftsidebar [class*=widget_] input[value=instock] + svg + span:before, .woocommerce .leftsidebar [class*=widget_] input[value=outofstock] + svg + span:before, .woocommerce .filter-bar [class*=widget_] input[value=instock] + svg + span:before, .woocommerce .filter-bar [class*=widget_] input[value=outofstock] + svg + span:before {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  content: "";
  margin: 0 7px 0 0;
  background: #2ecc71;
}
.woocommerce .leftsidebar [class*=widget_] input[value=outofstock] + svg + span:before, .woocommerce .filter-bar [class*=widget_] input[value=outofstock] + svg + span:before {
  background: #e74c3c;
}
.woocommerce .leftsidebar [class*=widget_] .wc-block-stock-filter-list label, .woocommerce .leftsidebar [class*=widget_] .wc-block-rating-filter-list label, .woocommerce .filter-bar [class*=widget_] .wc-block-stock-filter-list label, .woocommerce .filter-bar [class*=widget_] .wc-block-rating-filter-list label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.woocommerce .leftsidebar [class*=widget_] .wc-block-components-product-rating__stars:before, .woocommerce .filter-bar [class*=widget_] .wc-block-components-product-rating__stars:before {
  color: #f2f2f5;
}
.woocommerce .leftsidebar [class*=widget_] .wc-block-components-product-rating__stars span:before, .woocommerce .filter-bar [class*=widget_] .wc-block-components-product-rating__stars span:before {
  color: #426a73;
}
.woocommerce .leftsidebar [class*=widget_] button.wc-block-components-filter-reset-button, .woocommerce .filter-bar [class*=widget_] button.wc-block-components-filter-reset-button {
  background: none;
  padding: 10px 15px;
  font-weight: 600;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 0.75em;
  line-height: 1em;
  background: #426a73;
  color: white;
  letter-spacing: 0.3px;
  display: inline-block;
  border-radius: 5px;
  text-transform: uppercase;
  margin: 0;
  text-decoration: none;
}
.woocommerce .leftsidebar [class*=widget_] button.wc-block-components-filter-reset-button:hover, .woocommerce .filter-bar [class*=widget_] button.wc-block-components-filter-reset-button:hover {
  background: #0b1426;
  color: white;
}
.leftsidebar [class*=widget_] .wc-block-components-checkbox, .filter-bar [class*=widget_] .wc-block-components-checkbox {
  margin-top: 8px;
}
.leftsidebar [class*=widget_] .wc-block-components-checkbox label, .filter-bar [class*=widget_] .wc-block-components-checkbox label {
  font-size: 0.9375em;
  line-height: 1.2em;
  color: #465568;
}
.leftsidebar [class*=widget_] .wc-block-components-checkbox .wc-block-components-checkbox__mark, .leftsidebar [class*=widget_] .wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]:hover + .wc-block-components-checkbox__mark, .filter-bar [class*=widget_] .wc-block-components-checkbox .wc-block-components-checkbox__mark, .filter-bar [class*=widget_] .wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]:hover + .wc-block-components-checkbox__mark {
  opacity: 1;
  fill: #426a73;
  width: 22px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  height: 22px;
  margin: -3px -2px 0;
}
.leftsidebar [class*=widget_] .wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]:not(:checked) + .wc-block-components-checkbox__mark, .filter-bar [class*=widget_] .wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]:not(:checked) + .wc-block-components-checkbox__mark {
  display: block;
  opacity: 0;
}
.leftsidebar [class*=widget_] .wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]:hover + .wc-block-components-checkbox__mark, .filter-bar [class*=widget_] .wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]:hover + .wc-block-components-checkbox__mark {
  opacity: 1;
}
.leftsidebar [class*=widget_] .wc-block-components-checkbox__input[type=checkbox], .filter-bar [class*=widget_] .wc-block-components-checkbox__input[type=checkbox] {
  border-radius: 5px;
  border-color: #d7d7d7;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  min-width: 0;
  margin-left: 1px;
  min-height: 0;
}
.leftsidebar [class*=widget_] .wc-block-components-checkbox__input[type=checkbox]:focus, .filter-bar [class*=widget_] .wc-block-components-checkbox__input[type=checkbox]:focus {
  outline: 1.5px solid #0b1426;
  outline-offset: 0;
}
.leftsidebar [class*=widget_] ul, .filter-bar [class*=widget_] ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.leftsidebar [class*=widget_] ul li, .filter-bar [class*=widget_] ul li {
  padding: 0;
  margin: 0 0 5px;
}
.leftsidebar [class*=widget_] ul li .post-date, .filter-bar [class*=widget_] ul li .post-date {
  font-size: 0.875em;
  line-height: 1em;
  color: #426a73;
  font-weight: 700;
  display: block;
  text-transform: uppercase;
  margin-top: 2px;
}
.leftsidebar [class*=widget_] ul li a, .filter-bar [class*=widget_] ul li a {
  color: #465568;
  font-weight: 300;
}
.leftsidebar [class*=widget_] ul li a:hover, .filter-bar [class*=widget_] ul li a:hover {
  color: #426a73;
}
.leftsidebar [class*=widget_] ul li a[aria-current], .filter-bar [class*=widget_] ul li a[aria-current] {
  color: #0b1426;
  font-weight: 700;
}
.pagebody .leftsidebar [class*=widget_] ul li:before, .pagebody .filter-bar [class*=widget_] ul li:before {
  display: none;
}

.products-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin-bottom: 30px;
}
.products-title h2 {
  width: 100%;
}
@media only screen and (min-width: 640px) {
  .products-title h2 {
    width: auto;
    margin-bottom: 0;
  }
}
.products-title h2 i {
  color: #426a73;
  margin-right: 10px;
}
.products-title a.category-link {
  margin: 0;
}
@media only screen and (min-width: 640px) {
  .products-title a.category-link {
    margin: 0 0 0 20px;
  }
}

.arrows {
  padding: 0 10px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .arrows {
    padding: 0 80px;
  }
}
.arrows.gallery-outer {
  padding: 0;
}
.arrows.cross-sells {
  padding: 0;
}
.arrows .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.arrows .owl-stage .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.arrows .owl-nav {
  overflow: hidden;
}
.arrows .owl-nav .owl-prev, .arrows .owl-nav .owl-next {
  background: rgba(66, 106, 115, 0.8);
  width: 50px;
  height: 80px;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  color: white;
  position: absolute;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .arrows .owl-nav .owl-prev, .arrows .owl-nav .owl-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #426a73;
  }
}
.arrows .owl-nav .owl-prev.disabled, .arrows .owl-nav .owl-next.disabled {
  opacity: 1;
  cursor: default;
}
.arrows .owl-nav .owl-prev:hover, .arrows .owl-nav .owl-next:hover {
  background: #0b1426;
  color: white;
}
.arrows .owl-nav .owl-prev {
  left: -20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .arrows .owl-nav .owl-prev {
    left: 0;
  }
}
.arrows .owl-nav .owl-next {
  right: -20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .arrows .owl-nav .owl-next {
    right: 0;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .arrows .products .owl-nav, .arrows.landing .owl-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: -75px;
    right: 0;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .arrows .products .owl-nav .owl-prev, .arrows .products .owl-nav .owl-next, .arrows.landing .owl-nav .owl-prev, .arrows.landing .owl-nav .owl-next {
    position: relative;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    top: auto;
    margin-left: 10px;
    right: auto;
    left: auto;
  }
}
.arrows.gallery-outer {
  padding: 0;
}
.arrows.gallery-outer .owl-prev {
  left: 0;
}
.arrows.gallery-outer .owl-next {
  right: 0;
}

.project-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 25px;
}

.project-image {
  background: #080e1a;
  position: relative;
  overflow: hidden;
  display: block;
}
.project-image:before {
  padding-top: 140%;
  display: block;
  content: "";
}
@media only screen and (min-width: 480px) {
  .project-image:before {
    padding-top: 180%;
  }
}
@media screen and (min-width: 1400px) {
  .project-image:before {
    padding-top: 140%;
  }
}
.project-image:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(black));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, black 100%);
  height: 80%;
  display: block;
  content: "";
  bottom: 0;
  position: absolute;
  left: 0;
  z-index: 2;
  right: 0;
  opacity: 0.6;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .project-image:after {
    height: 60%;
  }
}
.project-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.project-text {
  padding: 20px;
  text-align: left;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 30px;
  right: 0;
  pointer-events: none;
}
.project-text h2 {
  font-size: 1.875em;
  line-height: 1.2666666667em;
  margin-bottom: 15px;
  color: white;
}
.project-text p {
  color: white;
  margin-bottom: 20px;
}

.icon-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.icon-link span {
  width: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  opacity: 0;
  font-weight: 400;
  font-size: 1em;
  line-height: 1em;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: "Radio Canada Big", sans-serif;
  letter-spacing: 0.3px;
}
.icon-link i {
  width: 50px;
  height: 50px;
  background: white;
  font-size: 1.5em;
  line-height: 2.0833333333em;
  color: #426a73;
  text-align: center;
}

.project-item {
  position: relative;
  width: 100%;
}
.owl-carousel .project-item, .woocommerce ul.products.owl-loaded .project-item {
  margin-bottom: 0;
  width: calc(100% - 0px);
  -ms-flex-preferred-size: calc(100% - 0px);
      flex-basis: calc(100% - 0px);
}
@media only screen and (min-width: 480px) {
  .project-item {
    width: calc(50% - 13px);
  }
}
@media only screen and (min-width: 768px) {
  .project-item {
    width: calc(33.33% - 17px);
  }
}
@media screen and (min-width: 1400px) {
  .project-item {
    width: calc(25% - 18.75px);
  }
}
@media only screen and (min-width: 640px) {
  .project-item:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.project-item:hover .icon-link span {
  width: 120px;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.project-category {
  border: 1px solid #ebebeb;
  padding: 30px;
  display: block;
}
.project-category h2 {
  font-size: 1.75em;
  line-height: 1.0714285714em;
  margin-bottom: 25px;
}
.project-category .icon-link span {
  color: #080e1a;
}
.project-category .icon-link i {
  background: #0b1426;
  color: white;
}
.project-category:hover .icon-link span {
  width: 120px;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 640px) {
  .project-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}
.project-info label {
  font-family: "Radio Canada Big", sans-serif;
  padding-right: 15px;
  color: #426a73;
}
@media only screen and (min-width: 640px) {
  .project-info label {
    width: 140px;
  }
}
.project-info div.info {
  margin-bottom: 10px;
}
@media only screen and (min-width: 640px) {
  .project-info div.info {
    width: calc(100% - 140px);
  }
}

@media only screen and (min-width: 960px) and (orientation: landscape) {
  .sticky-box {
    position: sticky;
    top: 90px;
  }
}

.blog-holder.col-container {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 30px;
}
@media only screen and (min-width: 768px) {
  .blog-holder.col-container {
    gap: 37px;
  }
}
@media screen and (min-width: 1400px) {
  .blog-holder.col-container {
    gap: 40px 45px;
  }
}

.list-item {
  width: 100%;
  padding: 1px 1px 60px;
  background: white;
  position: relative;
}
@media only screen and (min-width: 640px) {
  .list-item {
    width: calc(50% - 15px);
    -ms-flex-preferred-size: calc(50% - 15px);
        flex-basis: calc(50% - 15px);
  }
}
@media only screen and (min-width: 768px) {
  .list-item {
    width: calc(33.33% - 25px);
    -ms-flex-preferred-size: calc(33.33% - 25px);
        flex-basis: calc(33.33% - 25px);
  }
}
@media screen and (min-width: 1400px) {
  .list-item {
    width: calc(33.33% - 30px);
    -ms-flex-preferred-size: calc(33.33% - 30px);
        flex-basis: calc(33.33% - 30px);
  }
}
.owl-carousel .list-item, .woocommerce ul.products.owl-loaded .list-item {
  width: calc(100% - 0px);
  -ms-flex-preferred-size: calc(100% - 0px);
      flex-basis: calc(100% - 0px);
  margin: 2px;
}
.list-item.sticky:before {
  font-family: "Font Awesome 6 Pro";
  content: "\f276";
  position: absolute;
  top: 15px;
  z-index: 2;
  color: white;
  font-weight: 400;
  left: 15px;
  font-size: 1.125em;
  line-height: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #426a73;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.list-item .post-image a {
  position: relative;
  background: #f2f2f5;
  overflow: hidden;
  display: block;
  border-radius: 5px;
  z-index: 1;
  margin-bottom: 20px;
}
.list-item .post-image a:before {
  padding-top: 75%;
  content: "";
  display: block;
}
.list-item .post-image img {
  inset: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .list-item .post-image img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.list-item .post-text {
  position: relative;
  background: white;
  margin: 0;
  z-index: 2;
}
.list-item .post-text h2 {
  margin-bottom: 15px;
  font-size: 1.5em;
  line-height: 1.1666666667em;
}
.list-item .post-text h2 a {
  color: #0b1426;
}
.list-item .post-text p {
  font-size: 0.9375em;
  line-height: 1.8666666667em;
}
.list-item .post-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #ebebeb;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 15px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.list-item .time {
  font-size: 0.875em;
  line-height: 1em;
  opacity: 0.8;
}
.list-item .btn, .list-item .woocommerce form input[type=submit], .woocommerce form .list-item input[type=submit],
.list-item .woocommerce form input[type=button],
.woocommerce form .list-item input[type=button] {
  padding: 8px 0;
  font-weight: 600;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 0.9375em;
  line-height: 1em;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .list-item:hover .post-image img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.category-link {
  padding: 6px 8px;
  font-weight: 600;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 0.75em;
  line-height: 1em;
  background: #426a73;
  color: white;
  display: inline-block;
  border-radius: 5px;
  text-transform: uppercase;
  margin: 0 5px 10px 0;
}
.category-link:hover {
  background: #0b1426;
  color: white;
}

.single-item .featured-image-holder {
  display: block;
  margin: 0 0 20px;
}
.single-item .featured-image-holder img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-item .post-meta {
  padding: 0 0 15px;
  margin-bottom: 20px;
  font-size: 0.875em;
  line-height: 1.2857142857em;
  color: #5b6e86;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #ebebeb;
  width: 100%;
}
.single-item .post-meta.has-image {
  margin-bottom: 0;
}
.single-item .single-sharethis {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
.single-item .single-sharethis p {
  display: block;
  font-weight: 700;
  font-family: "Radio Canada Big", sans-serif;
  color: #426a73;
  font-size: 1.25em;
  line-height: 1em;
}
@media only screen and (min-width: 768px) {
  .single-item .single-sharethis p {
    margin-bottom: 0;
    margin-right: 10px;
    display: inline-block;
  }
}
.single-item .single-sharethis .social-share {
  display: inline-block;
  margin-left: 5px;
  position: relative;
  text-align: center;
  color: #0b1426;
  padding: 10px 15px;
  background: white;
  -webkit-transition: 0.3 ease-in-out;
  transition: 0.3 ease-in-out;
}
.single-item .single-sharethis .social-share span {
  display: none;
}
.single-item .single-sharethis .social-share:hover {
  text-decoration: none;
  background: #f2f2f5;
  color: #426a73;
}
.single-item .single-sharethis .social-share i {
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
}
.single-item .comments {
  margin: 0 0 30px;
}
.single-item .comments h3.comment-reply-title {
  margin: 0 0 20px;
}
.single-item .comments h3.comment-reply-title small {
  margin-left: 30px;
  font-size: 16px;
}
.single-item .comments .comment-body {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-item .comments .comment-body p {
  width: 100%;
  margin-bottom: 15px;
}
.single-item .comments .reply {
  margin: 0;
}
.single-item .comments .comment-reply-link, .single-item .comments .comment-reply-login {
  color: #080e1a;
  padding: 8px 0;
  font-weight: 600;
  font-family: "Radio Canada Big", sans-serif;
  position: relative;
  font-size: 0.9375em;
  line-height: 1em;
}
.single-item .comments .comment-reply-link:before, .single-item .comments .comment-reply-login:before {
  content: "\f4b6";
  display: inline-block;
  font-family: "Font Awesome 6 Pro";
  margin-right: 10px;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.2142857143em;
  color: #0b1426;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .single-item .comments .comment-reply-link:after, .single-item .comments .comment-reply-login:after {
    width: 0;
    display: block;
    background: #0b1426;
    height: 2px;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
.single-item .comments .comment-reply-link:hover, .single-item .comments .comment-reply-login:hover {
  color: #426a73;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .single-item .comments .comment-reply-link:hover:after, .single-item .comments .comment-reply-login:hover:after {
    width: 100%;
  }
}
.single-item .comments ul {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
.single-item .comments ul.children {
  padding: 10px 0 0 30px;
  margin: 0;
}
.single-item .comments ul li {
  margin-bottom: 20px;
  padding: 10px 0 10px 30px;
  border-left: 1px solid #ebebeb;
}
.single-item .comments ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.single-item .comments ul li img, .single-item .comments ul li .says {
  display: none;
}
.single-item .comments ul li:before {
  display: none;
}
.single-item .comments ul li .comment-author {
  margin-bottom: 0;
}
.single-item .comments ul li .comment-author cite.fn {
  font-style: normal;
  color: #080e1a;
  font-weight: 700;
  margin-right: 15px;
}
.single-item .comments ul li .comment-author cite.fn a {
  color: #080e1a;
}
.single-item .comments ul li .comment-meta {
  margin-bottom: 10px;
  font-size: 0.875em;
  line-height: 1.2857142857em;
  color: #5b6e86;
}
.single-item .comments ul li .comment-meta a {
  color: #5b6e86;
  font-weight: 300;
}

.post-navigation .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin: 0 0 30px;
  padding: 20px 0 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .post-navigation .nav-links {
    margin-bottom: 40px;
  }
}
.post-navigation .nav-previous, .post-navigation .nav-next {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  max-width: 50%;
}
.post-navigation a {
  border: 1px solid #ebebeb;
  display: block;
  padding: 12px 20px;
  font-size: 1.125em;
  line-height: 1.4444444444em;
  font-family: "Radio Canada Big", sans-serif;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-navigation a i {
  position: absolute;
  top: 50%;
  color: #0b1426;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  font-size: 20px;
}
.post-navigation a span {
  display: block;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.8em;
  color: #0b1426;
}
.post-navigation a:hover {
  background: #426a73;
  color: white;
}
.post-navigation .nav-previous a {
  text-align: right;
}
.post-navigation .nav-previous a i {
  right: auto;
  left: 20px;
}

.pagination, .woocommerce nav.woocommerce-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}
.pagination ul.page-numbers, .woocommerce nav.woocommerce-pagination ul.page-numbers {
  border: 0;
}
.pagination ul.page-numbers li, .woocommerce nav.woocommerce-pagination ul.page-numbers li {
  margin: 0 5px;
  border: 0;
}
.pagination ul.page-numbers li span.page-numbers, .woocommerce nav.woocommerce-pagination ul.page-numbers li span.page-numbers {
  background: #426a73;
  color: white;
}
.pagination a.page-numbers, .pagination span.page-numbers, .woocommerce nav.woocommerce-pagination a.page-numbers, .woocommerce nav.woocommerce-pagination span.page-numbers {
  padding: 8px 15px;
  border: 1px solid #ebebeb;
  font-family: "Radio Canada Big", sans-serif;
  background: #426a73;
  color: white;
  min-width: 40px;
  font-size: 1em;
  line-height: 1.25em;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}
.pagination a.page-numbers:not(:last-child), .pagination span.page-numbers:not(:last-child), .woocommerce nav.woocommerce-pagination a.page-numbers:not(:last-child), .woocommerce nav.woocommerce-pagination span.page-numbers:not(:last-child) {
  margin-right: 10px;
}
.pagination a.page-numbers.next, .pagination a.page-numbers.prev, .pagination span.page-numbers.next, .pagination span.page-numbers.prev, .woocommerce nav.woocommerce-pagination a.page-numbers.next, .woocommerce nav.woocommerce-pagination a.page-numbers.prev, .woocommerce nav.woocommerce-pagination span.page-numbers.next, .woocommerce nav.woocommerce-pagination span.page-numbers.prev {
  text-indent: -9999px;
  position: relative;
  border: 0;
}
.pagination a.page-numbers.next:before, .pagination a.page-numbers.prev:before, .pagination span.page-numbers.next:before, .pagination span.page-numbers.prev:before, .woocommerce nav.woocommerce-pagination a.page-numbers.next:before, .woocommerce nav.woocommerce-pagination a.page-numbers.prev:before, .woocommerce nav.woocommerce-pagination span.page-numbers.next:before, .woocommerce nav.woocommerce-pagination span.page-numbers.prev:before {
  content: "\f105";
  text-indent: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "Font Awesome 6 Pro";
}
.pagination a.page-numbers.prev:before, .pagination span.page-numbers.prev:before, .woocommerce nav.woocommerce-pagination a.page-numbers.prev:before, .woocommerce nav.woocommerce-pagination span.page-numbers.prev:before {
  content: "\f104";
}
.pagination a.page-numbers:not(.current), .pagination span.page-numbers:not(.current), .woocommerce nav.woocommerce-pagination a.page-numbers:not(.current), .woocommerce nav.woocommerce-pagination span.page-numbers:not(.current) {
  background: white;
  color: #0b1426;
}
.pagination a.page-numbers:not(.current):hover, .pagination span.page-numbers:not(.current):hover, .woocommerce nav.woocommerce-pagination a.page-numbers:not(.current):hover, .woocommerce nav.woocommerce-pagination span.page-numbers:not(.current):hover {
  background: #426a73;
  color: white;
}

.datatable {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ebebeb;
  margin: 0 0 35px;
}
.datatable colgroup, .datatable thead {
  display: none;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .datatable colgroup, .datatable thead {
    display: table-header-group;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .datatable thead th {
    background: #080e1a;
    border: 0;
    padding: 15px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: "Radio Canada Big", sans-serif;
    color: white;
    text-align: left;
    font-size: 1em;
    line-height: 1.75em;
    text-align: center;
  }
  .datatable thead th:first-child {
    text-align: left;
  }
}
.datatable ul {
  margin-bottom: 0;
}
.datatable tr {
  border-bottom: 1px solid #ebebeb;
  display: block;
  padding-bottom: 10px;
  padding-top: 10px;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .datatable tr {
    display: table-row;
    padding: 0;
  }
}
.datatable tr:after {
  width: 100%;
  height: 1px;
  clear: both;
  display: block;
  content: "";
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .datatable tr:after {
    display: none;
  }
}
.datatable tr:last-child {
  margin: 0;
  border: 0;
}
.datatable tr:last-child td {
  border-bottom: 0;
}
.datatable tbody td, .datatable tbody th {
  display: block;
  padding: 2px 15px;
  width: 100%;
  clear: both;
  float: left;
  text-align: left;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .datatable tbody td, .datatable tbody th {
    padding: 15px;
    float: none;
    display: table-cell;
    width: auto;
    border: 1px solid #ebebeb;
    font-size: 1em;
    line-height: 1.75em;
    text-align: center;
  }
  .datatable tbody td:first-child, .datatable tbody th:first-child {
    text-align: left;
  }
}
.datatable tbody td:before, .datatable tbody th:before {
  content: attr(data-th);
  width: 48%;
  clear: both;
  padding-right: 15px;
  font-weight: bold;
  display: inline-block;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .datatable tbody td:before, .datatable tbody th:before {
    display: none;
  }
}
.datatable tbody td tr td:nth-child(even), .datatable tbody th tr td:nth-child(even) {
  background: white;
}
.datatable tbody tr:nth-child(even) {
  background: white;
}
.widget_calendar {
  display: table;
  width: 100%;
}

#wp-calendar {
  width: 100%;
}
#wp-calendar caption {
  text-align: right;
  color: #080e1a;
  font-size: 12px;
  margin-top: 10px;
  margin-bottom: 15px;
}
#wp-calendar thead {
  font-size: 10px;
}
#wp-calendar thead th {
  padding-bottom: 10px;
}
#wp-calendar tbody {
  color: #080e1a;
  font-family: sans-serif;
  font-weight: 300;
}
#wp-calendar tbody td {
  background: #f2f2f5;
  border: 1px solid #f2f2f5;
  text-align: center;
  padding: 8px;
}
#wp-calendar tbody td:hover {
  background: #f2f2f5;
}
#wp-calendar tbody .pad {
  background: none;
}
#wp-calendar tfoot #next {
  font-size: 10px;
  text-transform: uppercase;
  text-align: right;
}
#wp-calendar tfoot #prev {
  font-size: 10px;
  text-transform: uppercase;
  padding-top: 10px;
}

.featured-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.category-items {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
@media only screen and (min-width: 480px) {
  .category-items {
    width: calc(50% - 10px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .category-items {
    width: calc(25% - 20px);
  }
}
.category-items a.categories-image {
  position: relative;
  overflow: hidden;
  display: block;
}
.category-items a.categories-image.border {
  border: 1px solid #ebebeb;
}
.category-items a.categories-image.no-image {
  background: #ebebeb;
}
.category-items a.categories-image:before {
  padding-top: 100%;
  content: "";
  display: block;
}
.category-items a.categories-image img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .category-items a.categories-image img {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: scale(1) translate(-50%, -50%);
        -ms-transform: scale(1) translate(-50%, -50%);
            transform: scale(1) translate(-50%, -50%);
  }
}
.category-items .text {
  pointer-events: none;
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  width: calc(100% - 30px);
  background: white;
  padding: 12px 12px;
  text-align: center;
}
.category-items .text h3 {
  font-size: 1em;
  line-height: 1em;
  color: #080e1a;
  margin: 0;
  font-family: "Radio Canada Big", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .category-items .text h3 {
    font-size: 1.125em;
    line-height: 1.1666666667em;
  }
}
.category-items .text p {
  margin: 10px 0 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .category-items:hover a img {
    -webkit-transform: scale(1.1) translate(-50%, -50%);
        -ms-transform: scale(1.1) translate(-50%, -50%);
            transform: scale(1.1) translate(-50%, -50%);
  }
}
.category-items:hover .text {
  background: #080e1a;
}
.category-items:hover .text h3 {
  color: white;
}

.woocommerce-products-header h1 {
  margin-bottom: 20px;
}

.term-description, .category-image, .pwb-brand-banner.pwb-before-loop {
  margin: 0 0 30px;
}

.category-image, .pwb-brand-banner {
  overflow: hidden;
  height: 350px;
  position: relative;
  border-radius: 5px;
}
.category-image img, .pwb-brand-banner img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  -o-object-position: center;
     object-position: center;
}

.category-footer {
  margin-top: 35px;
}
@media only screen and (min-width: 640px) {
  .category-footer {
    margin-top: 50px;
  }
}

.listing-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 5;
  padding-top: 15px;
  border-top: 1px solid #ebebeb;
}
.listing-bar .woocommerce-result-count {
  font-size: 0.9375em;
  line-height: 1.2em;
  margin: 0;
}
.listing-bar .woocommerce-ordering {
  width: 100%;
  margin: 10px 0 0;
  float: none;
}
@media only screen and (min-width: 640px) {
  .listing-bar .woocommerce-ordering {
    width: auto;
    margin-top: 0;
  }
}
.listing-bar .woocommerce-ordering select {
  padding: 9px 10px;
  min-height: 0;
  border: 1px solid #ebebeb;
  font-size: 0.875em;
  line-height: 1.2857142857em;
}

.filter-button {
  border-radius: 5px;
  border: 1px solid #ebebeb;
  color: #080e1a;
  font-family: "Radio Canada Big", sans-serif;
  font-weight: 600;
  font-size: 1em;
  line-height: 1em;
  padding: 12px 15px;
  cursor: pointer;
}
.filter-button:after {
  display: inline-block;
  content: "\f107";
  font-family: "Font Awesome 6 Pro";
  border-radius: 50%;
  font-weight: 400;
  font-size: 14px;
  margin-left: 5px;
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
  color: #426a73;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.filter-button.active:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.filter-button:hover {
  background: #0b1426;
  border-color: #0b1426;
  color: white;
}
.filter-button:hover i, .filter-button:hover:after {
  color: white;
}
.filter-button i {
  margin-right: 6px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #426a73;
}

.filter-bar {
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: white;
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.5s ease-in-out;
  transition: max-height 0.5s ease-in-out;
  z-index: 2;
  width: 100%;
}
.filter-bar.active {
  max-height: 380px;
  margin: 0;
  -webkit-transition: max-height opacity 0.5s ease-in-out;
  transition: max-height opacity 0.5s ease-in-out;
  -webkit-box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.05);
}
.filter-bar.active .filter-inner {
  overflow-y: auto;
}
.filter-bar .filter-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  border-radius: 5px;
  border: 1px solid #ebebeb;
  -webkit-transition: max-height 0.5s ease-in-out;
  transition: max-height 0.5s ease-in-out;
  padding: 20px 20px 0;
  max-height: 340px;
}
@media only screen and (min-width: 640px) {
  .filter-bar .filter-inner {
    --gap: 20px;
    padding: 30px;
    gap: var(--gap);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .filter-bar .filter-inner {
    max-height: none;
  }
}
.filter-bar [class*=widget_] {
  width: 100%;
}
@media only screen and (min-width: 640px) {
  .filter-bar [class*=widget_] {
    width: calc(50% - var(--gap) + var(--gap) / 2);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .filter-bar [class*=widget_] {
    width: calc(33.3333333333% - var(--gap) + var(--gap) / 3);
  }
}
@media screen and (min-width: 1400px) {
  .filter-bar [class*=widget_] {
    width: calc(25% - var(--gap) + var(--gap) / 4);
  }
}

.product-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin-top: 20px;
  background: #f2f2f5;
  border-radius: 5px;
  padding: 20px;
}
.product-icons .icon-item {
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}
.product-icons i {
  color: #426a73;
  font-size: 1.5em;
  line-height: 1em;
  margin: 0 0 8px;
}
.product-icons p {
  color: #080e1a;
  font-weight: 600;
  margin: 0;
  font-size: 0.8125em;
  line-height: 1.3846153846em;
}

.woocommerce #customer_login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.woocommerce #customer_login:before, .woocommerce #customer_login:after {
  display: none;
}
.woocommerce #customer_login h2 {
  margin-bottom: 15px;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 20px;
}
.woocommerce #customer_login .col-1, .woocommerce #customer_login .col-2 {
  border-radius: 5px;
  border: 1px solid #ebebeb;
  padding: 20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce #customer_login .col-1, .woocommerce #customer_login .col-2 {
    padding: 40px;
  }
}
.woocommerce form.login p.form-row:not(.form-row-wide) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.woocommerce form.login button {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.woocommerce form.register p:not(.form-row) {
  margin-bottom: 15px;
}
.woocommerce .woocommerce-LostPassword {
  margin: 0;
}
.woocommerce .woocommerce-form-login__rememberme {
  margin: 0 0 0 auto;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.woocommerce .woocommerce-ResetPassword {
  width: 100%;
  margin: 0;
}
.woocommerce .woocommerce form.login, .woocommerce .woocommerce form.register {
  border: 0;
  padding: 0;
  margin: 10px 0 0;
}
.woocommerce .edit-account legend {
  font-size: 1.5em;
  line-height: 1.5em;
  font-weight: 400;
  letter-spacing: 1px;
  display: block;
  color: #426a73;
  text-transform: uppercase;
  margin: 0 0 20px;
  padding-top: 20px;
}
.woocommerce .edit-account button.woocommerce-Button {
  margin-top: 20px;
}
.woocommerce span.onsale {
  background: #e74c3c;
  width: 53px;
  height: 53px;
  text-align: center;
  border-radius: 50%;
  line-height: 53px;
  font-weight: 600;
  font-family: "Radio Canada Big", sans-serif;
  padding: 0;
  z-index: 3;
  font-size: 14px;
}
.single-product .woocommerce span.onsale {
  right: 0;
  margin: 0;
  left: auto;
}
.woocommerce ul.products li.product span.onsale {
  margin: 10px 10px 0 0;
}
.woocommerce .brand-link {
  font-weight: 700;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 0.8125em;
  line-height: 1em;
  color: #426a73;
  display: inline-block;
  text-transform: uppercase;
  margin: 0 5px 5px 0;
}
.woocommerce .brand-linka:hover {
  color: #0b1426;
}
.woocommerce .imagewrapper {
  position: relative;
  margin: 0;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #ebebeb;
}
.woocommerce .imagewrapper:before {
  position: relative;
  padding-top: 100%;
  content: "";
  display: block;
}
.woocommerce .imagewrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 1;
  width: 100%;
  display: block;
  height: 100%;
  margin: 0 !important;
}
.woocommerce .imagewrapper .second-image {
  opacity: 0;
  inset: 0;
  position: absolute;
  background: white;
  width: 100%;
  z-index: 2;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.woocommerce p.stock {
  color: #080e1a !important;
  font-size: 0.75em;
  line-height: 1em;
  font-weight: 700;
}
.woocommerce p.stock:before {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  content: "";
  margin-right: 5px;
}
.woocommerce p.stock.in-stock:before {
  background: #2ecc71;
}
.woocommerce p.stock.available-on-backorder:before {
  background: #e68e10;
}
.woocommerce p.stock.out-of-stock:before {
  background: #e74c3c;
}
.woocommerce ul.products {
  --gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: var(--gap);
  margin: 0;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1400px) {
  .woocommerce ul.products {
    --gap: 25px;
  }
}
.woocommerce ul.products:before, .woocommerce ul.products:after {
  display: none;
}
.woocommerce ul.products[class*=columns-] li.product {
  width: 100%;
  margin: 0;
}
@media only screen and (min-width: 480px) {
  .woocommerce ul.products[class*=columns-] li.product {
    width: calc(50% - var(--gap) + var(--gap) / 2);
  }
}
@media only screen and (min-width: 768px) {
  .woocommerce ul.products[class*=columns-] li.product {
    width: calc(33.3333333333% - var(--gap) + var(--gap) / 3);
  }
}
@media screen and (min-width: 1400px) {
  .woocommerce ul.products.columns-4 li.product {
    width: calc(25% - var(--gap) + var(--gap) / 4);
  }
}
@media screen and (min-width: 1400px) {
  .woocommerce ul.products.columns-5 li.product {
    width: calc(20% - var(--gap) + var(--gap) / 5);
  }
}
@media screen and (min-width: 1400px) {
  .woocommerce ul.products.columns-6 li.product {
    width: calc(16.6666666667% - var(--gap) + var(--gap) / 6);
  }
}
.woocommerce ul.products li.product-category {
  text-align: center;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.woocommerce ul.products li.product-category:hover {
  -webkit-box-shadow: 0px 3px 30px 0px rgb(226, 232, 235);
          box-shadow: 0px 3px 30px 0px rgb(226, 232, 235);
}
.woocommerce ul.products li.product-category:hover h2.woocommerce-loop-category__title {
  background: #0b1426;
  color: white;
}
.woocommerce ul.products li.product:not(.product-category) .imagewrapper.uncropped img {
  right: auto;
  bottom: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  max-height: 100%;
}
.woocommerce ul.products li.product {
  border-radius: 5px;
}
.woocommerce ul.products li.product .item-info {
  padding: 20px 5px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
.woocommerce ul.products li.product:before {
  display: none;
}
.woocommerce ul.products li.product h2.woocommerce-loop-category__title {
  font-size: 1.0625em;
  line-height: 1.1764705882em;
  color: white;
  font-family: "Radio Canada Big", sans-serif;
  font-weight: 600;
  position: absolute;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #426a73;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
  padding: 15px 20px 17px;
  border-radius: 0 0 5px 5px;
}
.woocommerce ul.products li.product mark {
  display: none;
}
.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
  text-align: left;
  color: #465568;
  padding: 0;
  width: 100%;
  font-family: "Manrope", sans-serif;
  font-size: 1em;
  line-height: 1.5em;
  min-height: 44px;
  margin: 0 0 10px;
  font-weight: 300;
}
.woocommerce ul.products li.product h2.woocommerce-loop-product__title a {
  color: #465568;
}
.woocommerce ul.products li.product .product-sku {
  width: 100%;
  margin: 0 0 10px;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.1428571429em;
}
.woocommerce ul.products li.product .product-sku strong {
  display: inline-block;
  color: #080e1a;
}
.woocommerce ul.products li.product .star-rating {
  margin: 0 0 10px;
  width: 100%;
  color: #426a73;
}
.woocommerce ul.products li.product .star-rating:before, .woocommerce ul.products li.product .star-rating span:before {
  color: #426a73;
}
.woocommerce ul.products li.product p.stock {
  margin: auto 0 auto auto;
}
.woocommerce ul.products li.product:hover h2 {
  color: #426a73;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce ul.products li.product:hover .addcart-info {
    opacity: 1;
  }
  .woocommerce ul.products li.product:hover .addcart-info a.button {
    margin-bottom: 15px;
    opacity: 1;
  }
}
@media only screen and (min-width: 768px) {
  .woocommerce ul.products li.product:hover .imagewrapper .second-image {
    opacity: 1;
  }
}
.woocommerce ul.products li.product .price {
  font-size: 1.125em;
  line-height: 1.1111111111em;
  color: #0b1426;
  margin-bottom: 0;
  font-family: "Radio Canada Big", sans-serif;
  font-weight: 700;
}
.woocommerce ul.products li.product .price del {
  color: #657a96;
  text-decoration: none;
  font-weight: 400;
  margin-right: 5px;
  position: relative;
}
.woocommerce ul.products li.product .price del:after {
  border-top: 1px solid #657a96;
  content: "";
  left: 0;
  right: 0;
  position: absolute;
  top: 50%;
  width: 100%;
}
.woocommerce ul.products li.product .price ins {
  text-decoration: none;
  color: #e74c3c;
  font-weight: 700;
}
.woocommerce ul.products li.product .price .woocommerce-price-suffix {
  font-size: 13px;
  line-height: 17px;
  font-weight: 300;
  color: #465568;
  display: block;
}
.woocommerce ul.products li.product .price .you-save {
  display: none;
}
.woocommerce ul.products li.product .addcart-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce ul.products li.product .addcart-info {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    position: absolute;
    z-index: 5;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    pointer-events: none;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .woocommerce ul.products li.product .addcart-info:before {
    padding-top: 100%;
    display: block;
    content: "";
  }
}
.woocommerce ul.products li.product a.button {
  pointer-events: visible;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  max-width: 90%;
  margin: 0 auto;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce ul.products li.product a.button {
    margin: 0 auto 20px;
    opacity: 0;
  }
}
.woocommerce ul.products li.product .button.add_to_cart_button {
  position: relative;
  padding: 13px 30px;
  pointer-events: visible;
}
.woocommerce ul.products li.product .button.add_to_cart_button:before {
  content: "\f290";
  display: inline-block;
  color: white;
  font-weight: 300;
  margin-right: 8px;
  font-family: "Font Awesome 6 Pro";
}
.woocommerce ul.products li.product .button.add_to_cart_button.loading:after {
  position: absolute;
  background: #426a73;
  top: -2px;
  right: -2px;
  color: white;
  height: 18px;
  width: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  font-size: 9px;
}
.woocommerce ul.products li.product .button.add_to_cart_button.added:after {
  position: absolute;
  background: #0b1426;
  top: -2px;
  right: -2px;
  color: white;
  height: 18px;
  width: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  font-size: 9px;
}
.woocommerce ul.products li.product a.added_to_cart {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 0;
  color: #080e1a;
  background: #426a73;
  color: white;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  z-index: 10;
  pointer-events: visible;
  font-family: "Radio Canada Big", sans-serif;
  text-indent: -9999px;
}
.woocommerce ul.products li.product a.added_to_cart:hover {
  background: #0b1426;
  color: white;
}
.woocommerce ul.products li.product a.added_to_cart:before {
  content: "\f290";
  display: inline-block;
  color: white;
  font-weight: 300;
  text-indent: 0;
  top: 50%;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "Font Awesome 6 Pro";
}
.woocommerce .wrap-product-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce .wrap-product-summary {
    padding-bottom: 35px;
  }
}
@media screen and (min-width: 1400px) {
  .woocommerce .wrap-product-summary {
    padding-bottom: 50px;
  }
}
.woocommerce div.product h1.product_title {
  font-size: 2em;
  line-height: 1.3125em;
  margin-bottom: 15px;
}
.woocommerce div.product .woocommerce-product-details__short-description p:last-child {
  margin-bottom: 0;
}
.woocommerce div.product .woocommerce-product-details__short-description + p.stock {
  margin-top: 15px;
}
.woocommerce div.product table.shop_attributes {
  border: 0;
  margin: 0 0 20px;
}
.woocommerce div.product table.shop_attributes th {
  border: 0;
  color: #080e1a;
  padding-left: 0;
  background: none;
}
.woocommerce div.product table.shop_attributes p {
  margin: 0;
}
.woocommerce div.product table.shop_attributes td {
  font-weight: 300;
  background: none;
  border: 0;
  font-style: normal;
}
.woocommerce div.product table.shop_attributes td a {
  background: #426a73;
  border-radius: 30px;
  padding: 5px 10px;
  font-weight: 400;
  color: white;
  letter-spacing: 1px;
}
@media only screen and (min-width: 768px) {
  .woocommerce div.product table.shop_attributes td a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .woocommerce div.product table.shop_attributes td a:hover {
    background: #080e1a;
  }
}
.woocommerce div.product form.cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 10px;
  border-top: 1px solid #ebebeb;
  padding: 20px 0 0;
  margin-top: 20px;
}
.woocommerce div.product form.cart.grouped_form {
  padding-top: 0;
}
.woocommerce div.product form.cart .single_variation_wrap {
  width: 100%;
}
.woocommerce div.product form.cart button.minus, .woocommerce div.product form.cart button.plus {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50% 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-align: center;
  color: #080e1a;
  border: 1px solid #ebebeb;
}
.woocommerce div.product form.cart button.minus:hover, .woocommerce div.product form.cart button.minus:focus, .woocommerce div.product form.cart button.plus:hover, .woocommerce div.product form.cart button.plus:focus {
  background: #426a73;
  color: white;
}
.woocommerce div.product form.cart button.minus {
  padding-right: 0;
  border-right: 0;
}
.woocommerce div.product form.cart button.plus {
  border-radius: 0 50% 50% 0;
  padding-left: 0;
  border-left: 0;
}
.woocommerce div.product form.cart .woocommerce-variation-add-to-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
.woocommerce div.product form.cart .qty-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.woocommerce div.product form.cart .qty-box .minus {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.woocommerce div.product form.cart .qty-box .quantity {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  border-radius: 0;
}
.woocommerce div.product form.cart .qty-box .plus {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.woocommerce div.product form.cart .qty-box.hidden {
  display: none;
}
.woocommerce div.product form.cart div.quantity {
  float: none;
  margin: 0;
  display: inline-block;
}
.woocommerce div.product form.cart div.quantity .qty {
  border-radius: 0;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 45px;
  -webkit-appearance: none;
  margin: 0;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  font-family: "Radio Canada Big", sans-serif;
  font-weight: 700;
  color: #080e1a;
}
.woocommerce div.product form.cart div.quantity input[type=number]::-webkit-outer-spin-button,
.woocommerce div.product form.cart div.quantity input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.woocommerce div.product form.cart .button {
  width: 100%;
  float: none;
  margin-top: 20px;
}
@media only screen and (min-width: 768px) {
  .woocommerce div.product form.cart .button {
    margin-top: 0;
  }
}
.woocommerce div.product form.cart .button.single_add_to_cart_button {
  font-size: 1.125em;
  line-height: 1em;
}
.woocommerce div.product form.cart .button.single_add_to_cart_button:before {
  content: "\f290";
  display: inline-block;
  color: white;
  font-weight: 300;
  margin-right: 8px;
  font-family: "Font Awesome 6 Pro";
}
@media only screen and (min-width: 768px) {
  .woocommerce div.product form.cart .qty-box:not(.hidden) + .button.single_add_to_cart_button {
    margin-right: 0;
    width: calc(100% - 160px);
    margin-left: auto;
  }
}
.woocommerce div.product form.cart .group_table {
  width: 100%;
  margin-bottom: 15px;
}
.woocommerce div.product form.cart .group_table tr td {
  padding: 15px 0;
  border-bottom: 1px solid #ebebeb;
}
.woocommerce div.product form.cart .group_table tr:last-child td {
  border: 0;
}
.woocommerce div.product form.cart .group_table .woocommerce-grouped-product-list-item__quantity {
  white-space: nowrap;
  min-width: 120px;
}
.woocommerce div.product form.cart .group_table .woocommerce-grouped-product-list-item__quantity button.minus, .woocommerce div.product form.cart .group_table .woocommerce-grouped-product-list-item__quantity button.plus {
  margin: 0;
  float: left;
}
.woocommerce div.product form.cart .group_table .woocommerce-grouped-product-list-item__quantity .quantity {
  float: left;
}
.woocommerce div.product form.cart .group_table .woocommerce-grouped-product-list-item__price {
  font-size: 1.25em;
  line-height: 1.1em;
  color: #080e1a;
  margin-bottom: 20px;
  font-family: "Radio Canada Big", sans-serif;
  font-weight: 700;
}
.woocommerce div.product form.cart .group_table .woocommerce-grouped-product-list-item__price del {
  color: #657a96;
  text-decoration: none;
  font-weight: 400;
  margin-right: 7px;
  opacity: 0.5;
  position: relative;
}
.woocommerce div.product form.cart .group_table .woocommerce-grouped-product-list-item__price del:after {
  border-top: 1px solid #657a96;
  content: "";
  left: 0;
  right: 0;
  position: absolute;
  top: 50%;
  width: 100%;
}
.woocommerce div.product form.cart .group_table .woocommerce-grouped-product-list-item__price ins {
  text-decoration: none;
  color: #e74c3c;
}
.woocommerce div.product form.cart .group_table .woocommerce-grouped-product-list-item__price .woocommerce-price-suffix {
  font-size: 15px;
  font-weight: 300;
  color: #465568;
  display: block;
}
.woocommerce div.product form.cart .group_table .woocommerce-grouped-product-list-item__price .you-save {
  display: none;
}
.woocommerce div.product form.cart .group_table .woocommerce-grouped-product-list-item__price p.stock {
  margin: 7px 0 0;
  font-size: 12px;
  font-family: "Manrope", sans-serif;
  line-height: 12px;
}
.woocommerce div.product form.cart .group_table .woocommerce-grouped-product-list-item__label label {
  text-transform: none;
  font-size: 1em;
  line-height: 1.5em;
  letter-spacing: 0;
  font-family: "Manrope", sans-serif;
}
.woocommerce div.product form.cart .group_table .woocommerce-grouped-product-list-item__label a {
  font-weight: 300;
  color: #465568;
}
.woocommerce div.product form.cart .group_table .woocommerce-grouped-product-list-item__label a:hover {
  color: #426a73;
}
.woocommerce div.product form.cart .group_table td {
  vertical-align: middle;
  padding: 7px 0;
}
.woocommerce div.product form.cart .group_table td.woocommerce-grouped-product-list-item__price {
  text-align: right;
}
.woocommerce div.product form.cart .variations {
  margin: 0;
}
.woocommerce div.product form.cart .variations .reset_variations {
  display: none !important;
}
.woocommerce div.product form.cart .variations td {
  display: block;
  width: 100%;
  padding-bottom: 20px;
}
.woocommerce div.product form.cart .variations tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
.woocommerce div.product form.cart .variations select {
  padding: 10px;
}
.woocommerce div.product form.cart .variations th.label label {
  font-size: 1em;
  line-height: 1em;
  font-weight: 600;
  display: block;
  margin: 0 0 3px;
  text-transform: none;
  color: #080e1a;
}
.woocommerce div.product .product_meta {
  margin: 25px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 400;
  font-size: 0.8125em;
  line-height: 1.3846153846em;
  color: #657a96;
}
.woocommerce div.product .product_meta span.posted_in, .woocommerce div.product .product_meta span.tagged_as, .woocommerce div.product .product_meta .sku_wrapper {
  display: block;
  margin: 0 8px;
  position: relative;
}
.woocommerce div.product .product_meta a {
  font-weight: 400;
  display: inline-block;
  position: relative;
  color: #657a96;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce div.product .product_meta a:before {
    width: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: block;
    background: #426a73;
    height: 1px;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce div.product .product_meta a:hover:before {
    width: 100%;
  }
}
.woocommerce div.product .bulk_table {
  border-top: 1px solid #ebebeb;
  padding-top: 20px;
  margin-top: 20px;
}
.woocommerce div.product .bulk_table .wdp_pricing_table_caption {
  color: #080e1a !important;
  margin: 0 0 20px;
  font-weight: 700;
  font-size: 1em;
  line-height: 1em;
}
.woocommerce div.product .bulk_table .wdp_pricing_table_footer {
  display: none;
}
.woocommerce div.product .bulk_table table.wdp_pricing_table {
  widtH: 100%;
}
.woocommerce div.product .bulk_table table.wdp_pricing_table thead th, .woocommerce div.product .bulk_table table.wdp_pricing_table thead td {
  background: #426a73 !important;
  padding: 8px;
  color: #080e1a !important;
  font-weight: 700;
}
.woocommerce div.product div.images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce div.product div.images {
    width: 55%;
    position: sticky !important;
    -ms-flex-item-align: start;
        align-self: flex-start;
    top: calc(90px + 10px);
    margin: 0;
  }
}
.woocommerce div.product div.images .woocommerce-product-gallery__image a {
  display: block;
  position: relative;
}
.woocommerce div.product div.images .woocommerce-product-gallery__image a:before {
  padding-top: 100%;
  display: block;
  content: "";
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce div.product div.images .woocommerce-product-gallery__image a:before {
    padding-top: 636px;
  }
}
.woocommerce div.product div.images .woocommerce-product-gallery__image a img {
  max-height: 100%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  width: auto;
  height: auto;
  position: absolute;
}
.woocommerce div.product div.images img {
  width: auto;
  margin: 0 auto;
}
.woocommerce div.product div.images .flex-control-thumbs, .woocommerce div.product div.images .slick-slide {
  width: 90px !important;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce div.product div.images .flex-control-thumbs, .woocommerce div.product div.images .slick-slide {
    width: 120px !important;
  }
}
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
  border-radius: 5px;
  border: 1px solid #ebebeb;
  width: 100%;
  overflow: hidden;
}
.woocommerce div.product div.images .flex-viewport {
  width: calc(100% - 105px);
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  border-radius: 5px;
  border: 1px solid #ebebeb;
  overflow: hidden;
  height: 100% !important;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce div.product div.images .flex-viewport {
    width: calc(100% - 135px);
  }
}
.woocommerce div.product div.images .flex-viewport .woocommerce-product-gallery__wrapper {
  border: 0;
}
.woocommerce div.product div.images .flex-control-thumbs {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: visible;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
.woocommerce div.product div.images .flex-control-thumbs .slick-arrow {
  left: 50%;
  cursor: pointer;
  position: absolute;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 0.875em;
  line-height: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  z-index: 10;
  border-radius: 50%;
  background: #426a73;
  color: white;
}
.woocommerce div.product div.images .flex-control-thumbs .slick-arrow.owl-next {
  bottom: -5px;
}
.woocommerce div.product div.images .flex-control-thumbs .slick-arrow.owl-prev {
  top: -15px;
}
.woocommerce div.product div.images .flex-control-thumbs .slick-track {
  width: 100%;
}
.woocommerce div.product div.images .flex-control-thumbs li {
  width: 100%;
  margin: 0 0 10px;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.woocommerce div.product div.images .flex-control-thumbs li:before {
  display: block;
  padding-top: 100%;
  content: "";
}
.woocommerce div.product div.images .flex-control-thumbs li img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  opacity: 1;
  border-radius: 5px;
  border: 1px solid #ebebeb;
  -o-object-fit: cover;
     object-fit: cover;
}
.woocommerce div.product div.images .flex-control-thumbs li img.flex-active {
  border-color: #426a73;
}
.woocommerce div.product div.summary {
  margin: 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce div.product div.summary {
    width: 45%;
    padding: 15px 0 0 35px;
  }
}
@media screen and (min-width: 1400px) {
  .woocommerce div.product div.summary {
    padding: 25px 0 0 50px;
  }
}
.woocommerce div.product div.summary .woocommerce-product-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 0 20px;
}
.woocommerce div.product div.summary .woocommerce-product-rating span:before, .woocommerce div.product div.summary .woocommerce-product-rating:before {
  color: #426a73;
}
.woocommerce div.product div.summary .woocommerce-product-rating .star-rating {
  margin: 0 5px 0 0;
}
.woocommerce div.product div.summary .woocommerce-product-rating a {
  color: #657a96;
  font-weight: 400;
  font-size: 0.8125em;
  line-height: 1em;
}
.woocommerce div.product div.summary p.price, .woocommerce div.product div.summary span.price {
  font-size: 1.5em;
  line-height: 1em;
  color: #080e1a;
  margin-bottom: 15px;
  display: inline-block;
  font-family: "Radio Canada Big", sans-serif;
  font-weight: 700;
}
.woocommerce div.product div.summary p.price del, .woocommerce div.product div.summary span.price del {
  color: #657a96;
  text-decoration: none;
  font-weight: 400;
  margin-right: 8px;
  position: relative;
}
.woocommerce div.product div.summary p.price del:after, .woocommerce div.product div.summary span.price del:after {
  border-top: 1px solid #657a96;
  content: "";
  left: 0;
  right: 0;
  position: absolute;
  top: 50%;
  width: 100%;
}
.woocommerce div.product div.summary p.price ins, .woocommerce div.product div.summary span.price ins {
  text-decoration: none;
  color: #e74c3c;
}
.woocommerce div.product div.summary p.price .woocommerce-price-suffix, .woocommerce div.product div.summary span.price .woocommerce-price-suffix {
  font-size: 15px;
  line-height: 15px;
  font-weight: 300;
  color: #465568;
  display: inline-block;
}
.woocommerce div.product div.summary p.price .you-save, .woocommerce div.product div.summary span.price .you-save {
  padding: 5px 8px;
  font-weight: 600;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 13px;
  line-height: 13px;
  background: #426a73;
  color: white;
  display: inline-block;
  border-radius: 5px;
  text-transform: uppercase;
  margin: 0 0 0 10px;
  top: -2px;
  position: relative;
}
.woocommerce div.product p.stock {
  margin: 0 0 20px auto;
  font-size: 0.75em;
  line-height: 1em;
}
.woocommerce div.product .pwb-single-product-brands {
  display: none;
}
.woocommerce div.product #tab-pwb_tab .content h3 {
  display: none;
}
.woocommerce div.product #tab-pwb_tab span a {
  display: block;
  margin: 20px 0;
  text-align: center;
}
.woocommerce div.product #tab-pwb_tab span a img {
  max-height: 90px;
  margin: 0 auto;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  margin: 0;
  border: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.woocommerce div.product .woocommerce-tabs ul.tabs:before {
  display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 1px solid #e1e1e1;
  padding: 0;
  background: #f2f2f5;
  margin: 0 5px 0 0;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: white;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:before, .woocommerce div.product .woocommerce-tabs ul.tabs li:after {
  display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: #080e1a;
  font-size: 1.5em;
  line-height: 1em;
  padding: 15px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-family: "Radio Canada Big", sans-serif;
  position: relative;
  letter-spacing: 0.3px;
}
@media only screen and (min-width: 640px) {
  .woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-size: 1.0625em;
    line-height: 1em;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce div.product .woocommerce-tabs ul.tabs li a {
    padding: 20px 40px 18px;
  }
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a i {
  color: #080e1a;
  font-weight: 300;
  display: block;
}
@media only screen and (min-width: 640px) {
  .woocommerce div.product .woocommerce-tabs ul.tabs li a i {
    margin-bottom: 8px;
    color: #426a73;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce div.product .woocommerce-tabs ul.tabs li a i {
    margin: 0 8px 0 0;
    display: inline-block;
  }
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a span {
  display: none;
}
@media only screen and (min-width: 640px) {
  .woocommerce div.product .woocommerce-tabs ul.tabs li a span {
    display: inline-block;
  }
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:hover:not(.active) {
  background: #0b1426;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:hover:not(.active) a {
  color: white;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: block;
  content: "";
  background: #426a73;
  height: 3px;
}
.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel {
  border: 1px solid #e1e1e1;
  border-radius: 0 5px 5px 5px;
  padding: 20px;
  margin: -1px 0 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel {
    padding: 35px;
  }
}
@media screen and (min-width: 1400px) {
  .woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel {
    padding: 50px;
  }
}
.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel p:last-child {
  margin-bottom: 0;
}
.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel .content > h2 {
  display: none;
}
.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel #review_form {
  margin: 30px 0 0;
}
.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel #reviews #comments .commentlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  --gap: 20px;
  gap: var(--gap);
}
.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel #reviews #comments .commentlist li {
  border: 1px solid #ebebeb;
  padding: 30px;
  width: 100%;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel #reviews #comments .commentlist li {
    width: calc(50% - var(--gap) + var(--gap) / 2);
  }
}
.woocommerce div.product #commentform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.woocommerce div.product #review_form #respond p.comment-notes {
  width: 100%;
  margin-bottom: 20px;
}
.woocommerce div.product #review_form #respond label {
  color: #080e1a;
  margin: 0 0 5px;
  width: 100%;
}
.woocommerce div.product #review_form #respond #reply-title {
  margin-bottom: 25px;
  display: block;
}
.woocommerce div.product #review_form #respond .comment-form-rating {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.woocommerce div.product #review_form #respond .comment-form-rating label {
  width: 120px;
  margin: 0;
}
.woocommerce div.product #review_form #respond .comment-form-rating p.stars {
  margin: 0;
}
.woocommerce div.product #review_form #respond .comment-form-comment, .woocommerce div.product #review_form #respond .form-submit {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .woocommerce div.product #review_form #respond .comment-form-author, .woocommerce div.product #review_form #respond .comment-form-email {
    width: calc(50% - 15px);
  }
}
.woocommerce div.product #review_form #respond .comment-form-comment, .woocommerce div.product #review_form #respond .comment-form-rating, .woocommerce div.product #review_form #respond .comment-form-author, .woocommerce div.product #review_form #respond .comment-form-email {
  margin: 0 0 20px;
}
.woocommerce div.product #review_form #respond .comment-form-cookies-consent label {
  font-weight: 300;
  width: auto;
  margin-left: 5px;
  display: inline-block;
  color: #465568;
  font-family: "Manrope", sans-serif;
  text-transform: none;
}
.woocommerce div.product .woocommerce-Reviews-title {
  display: none;
}
.woocommerce div.product #reviews #comments ol.commentlist {
  padding: 0;
}
.woocommerce div.product #reviews #comments ol.commentlist:before, .woocommerce div.product #reviews #comments ol.commentlist:after {
  display: none;
}
.woocommerce div.product #reviews #comments ol.commentlist li .description p {
  margin: 0 0 15px;
}
.woocommerce div.product #reviews #comments ol.commentlist li .description p:last-child {
  margin-bottom: 0;
}
.woocommerce div.product #reviews #comments ol.commentlist li .star-rating {
  color: #426a73;
  float: none;
  width: 100%;
  margin: 0 0 10px;
  display: block;
}
.woocommerce div.product #reviews #comments ol.commentlist li img.avatar {
  display: none;
}
.woocommerce div.product #reviews #comments ol.commentlist li .meta {
  color: #657a96;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
.woocommerce div.product #reviews #comments ol.commentlist li .meta .woocommerce-review__author {
  color: #080e1a;
  font-size: 1.25em;
  line-height: 1em;
}
.woocommerce div.product #reviews #comments ol.commentlist li .meta .woocommerce-review__published-date {
  margin: 0;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .woocommerce div.product #reviews #comments ol.commentlist li .meta .woocommerce-review__published-date {
    display: inline-block;
    margin: 0 0 0 auto;
  }
}
@media only screen and (min-width: 768px) {
  .woocommerce div.product #reviews #comments ol.commentlist li .woocommerce-review__dash {
    display: none;
  }
}
.woocommerce div.product #reviews #comments ol.commentlist li .comment-text {
  padding: 0;
  border: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
.woocommerce div.product #reviews #comments ol.commentlist li .comment-text:before {
  display: none;
}
.woocommerce div.product #reviews #comments ol.commentlist li .description {
  width: 100%;
}
.woocommerce .calculated_shipping table.shop_table_responsive {
  border-color: #ebebeb;
}
.woocommerce .calculated_shipping table.shop_table_responsive td, .woocommerce .calculated_shipping table.shop_table_responsive th {
  border-color: #ebebeb !important;
}
.woocommerce-cart .woocommerce .woocommerce {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.woocommerce .woocommerce-cart-form {
  width: 100%;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce .woocommerce-cart-form {
    width: calc(70% - 30px);
  }
}
@media screen and (min-width: 1400px) {
  .woocommerce .woocommerce-cart-form {
    width: calc(70% - 50px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce .cart-collaterals {
    width: 30%;
    position: sticky;
    -ms-flex-item-align: start;
        align-self: flex-start;
    top: 90px;
  }
}
.woocommerce .cart-collaterals .cart_totals {
  width: 100%;
  background: #f2f2f5;
  padding: 30px;
  border-radius: 5px;
}
@media screen and (min-width: 1400px) {
  .woocommerce .cart-collaterals .cart_totals {
    padding: 40px;
  }
}
.woocommerce .cart-collaterals .cart_totals h2 {
  margin-bottom: 20px;
}
.woocommerce .cart-collaterals .cart_totals .shop_table {
  border: 0;
}
.woocommerce .cart-collaterals .cart_totals .shop_table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
.woocommerce .cart-collaterals .cart_totals .shop_table tr th {
  font-family: "Radio Canada Big", sans-serif;
  font-weight: 700;
  color: #0b1426;
}
.woocommerce .cart-collaterals .cart_totals .shop_table tr .woocommerce-Price-amount {
  display: block;
  text-align: right;
  font-family: "Radio Canada Big", sans-serif;
  font-weight: 700;
  color: #0b1426;
}
.woocommerce .cart-collaterals .cart_totals .shop_table tr td, .woocommerce .cart-collaterals .cart_totals .shop_table tr th {
  padding: 15px 0;
  border: 0;
  width: 50%;
  border-bottom: 1px solid #ebebeb;
}
.woocommerce .cart-collaterals .cart_totals .shop_table tr:last-child th, .woocommerce .cart-collaterals .cart_totals .shop_table tr:last-child td {
  border: 0;
  padding-bottom: 0;
}
.woocommerce .cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals th {
  border: 0;
  padding-bottom: 0;
}
.woocommerce .cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals th, .woocommerce .cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals td {
  width: 100%;
  display: block;
}
.woocommerce .cart-collaterals .cart_totals .shop_table tr.cart-discount td .woocommerce-Price-amount {
  display: inline;
}
@media screen and (max-width: 768px) {
  .woocommerce .cart-collaterals .cart_totals .shop_table tr.cart-discount th, .woocommerce .cart-collaterals .cart_totals .shop_table tr.cart-discount td {
    width: 100%;
    display: block;
  }
  .woocommerce .cart-collaterals .cart_totals .shop_table tr.cart-discount th {
    border: 0;
    padding-bottom: 0;
    overflow-wrap: anywhere;
  }
  .woocommerce .cart-collaterals .cart_totals .shop_table tr.cart-discount td {
    background: none;
  }
  .woocommerce .cart-collaterals .cart_totals .shop_table tr.cart-discount td::before {
    display: none;
  }
  .woocommerce .cart-collaterals .cart_totals .shop_table tr.cart-discount td .woocommerce-remove-coupon {
    display: block;
  }
}
.woocommerce .wc-proceed-to-checkout {
  padding: 0;
  margin-top: 30px;
}
.woocommerce .woocommerce-cart-form .shop_table_responsive, .woocommerce .woocommerce-checkout-review-order-table {
  border: 1px solid #ebebeb;
}
@media only screen and (min-width: 768px) {
  .woocommerce .woocommerce-cart-form .shop_table_responsive, .woocommerce .woocommerce-checkout-review-order-table {
    border: 0 !important;
  }
}
.woocommerce .woocommerce-cart-form .shop_table_responsive thead th, .woocommerce .woocommerce-checkout-review-order-table thead th {
  background: #426a73;
  color: #0b1426;
  font-weight: 600;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 1.125em;
  line-height: 1em;
  padding: 18px 15px;
  border: 0;
}
.woocommerce .woocommerce-cart-form .shop_table_responsive thead tr th:first-child, .woocommerce .woocommerce-checkout-review-order-table thead tr th:first-child {
  border-radius: 5px 0 0 0;
}
.woocommerce .woocommerce-cart-form .shop_table_responsive thead tr th:last-child, .woocommerce .woocommerce-checkout-review-order-table thead tr th:last-child {
  border-radius: 0 5px 0 0;
}
.woocommerce .woocommerce-cart-form .shop_table_responsive tr th:first-child, .woocommerce .woocommerce-checkout-review-order-table tr th:first-child {
  border-radius: 5px 0 0 0;
}
.woocommerce .woocommerce-cart-form .shop_table_responsive tr th:last-child, .woocommerce .woocommerce-checkout-review-order-table tr th:last-child {
  border-radius: 0 5px 0 0;
}
.woocommerce .woocommerce-cart-form .shop_table_responsive .woocommerce-Price-amount, .woocommerce .woocommerce-checkout-review-order-table .woocommerce-Price-amount {
  color: #0b1426;
  font-family: "Radio Canada Big", sans-serif;
  font-weight: 700;
}
.woocommerce .woocommerce-cart-form .shop_table_responsive del, .woocommerce .woocommerce-checkout-review-order-table del {
  margin-right: 5px;
  position: relative;
  opacity: 0.5;
}
.woocommerce .woocommerce-cart-form .shop_table_responsive del .woocommerce-Price-amount, .woocommerce .woocommerce-checkout-review-order-table del .woocommerce-Price-amount {
  font-weight: 400;
  color: #657a96;
}
.woocommerce .woocommerce-cart-form .shop_table_responsive del:after, .woocommerce .woocommerce-checkout-review-order-table del:after {
  border-top: 1px solid #657a96;
  content: "";
  left: 0;
  right: 0;
  position: absolute;
  top: 50%;
  width: 100%;
}
.woocommerce .woocommerce-cart-form .shop_table_responsive ins, .woocommerce .woocommerce-checkout-review-order-table ins {
  text-decoration: none;
}
.woocommerce .woocommerce-cart-form .shop_table_responsive ins .woocommerce-Price-amount, .woocommerce .woocommerce-checkout-review-order-table ins .woocommerce-Price-amount {
  color: #e74c3c;
}
.woocommerce .woocommerce-cart-form .shop_table_responsive tbody tr.cart_item, .woocommerce .woocommerce-checkout-review-order-table tbody tr.cart_item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  padding-left: 45%;
  border-bottom: 1px solid #ebebeb;
}
@media only screen and (min-width: 640px) {
  .woocommerce .woocommerce-cart-form .shop_table_responsive tbody tr.cart_item, .woocommerce .woocommerce-checkout-review-order-table tbody tr.cart_item {
    padding-left: 35%;
  }
}
@media only screen and (min-width: 768px) {
  .woocommerce .woocommerce-cart-form .shop_table_responsive tbody tr.cart_item, .woocommerce .woocommerce-checkout-review-order-table tbody tr.cart_item {
    padding: 0;
    border: 0;
    display: table-row;
  }
}
.woocommerce .woocommerce-cart-form .shop_table_responsive tbody tr:nth-child(2n), .woocommerce .woocommerce-checkout-review-order-table tbody tr:nth-child(2n) {
  background-color: rgba(0, 0, 0, 0.025);
}
@media only screen and (min-width: 768px) {
  .woocommerce .woocommerce-cart-form .shop_table_responsive tbody tr:nth-child(2n), .woocommerce .woocommerce-checkout-review-order-table tbody tr:nth-child(2n) {
    background: white;
  }
}
.woocommerce .woocommerce-cart-form .shop_table_responsive tbody tr:nth-child(2n) td, .woocommerce .woocommerce-checkout-review-order-table tbody tr:nth-child(2n) td {
  background: none;
}
@media only screen and (min-width: 768px) {
  .woocommerce .woocommerce-cart-form .shop_table_responsive tbody tr:nth-child(2n) td, .woocommerce .woocommerce-checkout-review-order-table tbody tr:nth-child(2n) td {
    background: white;
  }
}
.woocommerce .woocommerce-cart-form .shop_table_responsive tbody tr:last-child td, .woocommerce .woocommerce-checkout-review-order-table tbody tr:last-child td {
  padding: 15px;
}
.woocommerce .woocommerce-cart-form .shop_table_responsive.woocommerce-checkout-review-order-table tbody tr.cart_item, .woocommerce .woocommerce-checkout-review-order-table.woocommerce-checkout-review-order-table tbody tr.cart_item {
  padding: 0;
  border: 0;
  display: table-row;
}
.woocommerce .woocommerce-cart-form .shop_table_responsive td, .woocommerce .woocommerce-cart-form .shop_table_responsive th, .woocommerce .woocommerce-checkout-review-order-table td, .woocommerce .woocommerce-checkout-review-order-table th {
  padding: 8px 15px 0;
  border: 0;
  background: white;
  width: 100%;
  font-size: 0.9375em;
  line-height: 1.4666666667em;
  border-radius: 0;
}
@media only screen and (min-width: 768px) {
  .woocommerce .woocommerce-cart-form .shop_table_responsive td, .woocommerce .woocommerce-cart-form .shop_table_responsive th, .woocommerce .woocommerce-checkout-review-order-table td, .woocommerce .woocommerce-checkout-review-order-table th {
    border: 1px solid #ebebeb;
    padding: 10px 15px;
    width: auto;
    font-size: 1em;
    line-height: 1.5em;
  }
}
.woocommerce .woocommerce-cart-form .shop_table_responsive td:before, .woocommerce .woocommerce-cart-form .shop_table_responsive th:before, .woocommerce .woocommerce-checkout-review-order-table td:before, .woocommerce .woocommerce-checkout-review-order-table th:before {
  color: #080e1a;
}
.woocommerce .woocommerce-cart-form .shop_table_responsive td.product-name, .woocommerce .woocommerce-checkout-review-order-table td.product-name {
  text-align: left !important;
  padding-top: 15px;
}
@media only screen and (min-width: 768px) {
  .woocommerce .woocommerce-cart-form .shop_table_responsive td.product-name, .woocommerce .woocommerce-checkout-review-order-table td.product-name {
    padding-top: 10px;
  }
}
.woocommerce .woocommerce-cart-form .shop_table_responsive td.product-name:before, .woocommerce .woocommerce-checkout-review-order-table td.product-name:before {
  display: none;
}
.woocommerce .woocommerce-cart-form .shop_table_responsive td.product-name a, .woocommerce .woocommerce-checkout-review-order-table td.product-name a {
  font-weight: 600;
}
.woocommerce .woocommerce-cart-form .shop_table_responsive td.product-quantity, .woocommerce .woocommerce-checkout-review-order-table td.product-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 768px) {
  .woocommerce .woocommerce-cart-form .shop_table_responsive td.product-quantity, .woocommerce .woocommerce-checkout-review-order-table td.product-quantity {
    display: table-cell;
  }
}
.woocommerce .woocommerce-cart-form .shop_table_responsive td.product-thumbnail, .woocommerce .woocommerce-checkout-review-order-table td.product-thumbnail {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  border: 0;
  height: 100%;
  padding-right: 0;
  text-align: center;
}
@media only screen and (min-width: 640px) {
  .woocommerce .woocommerce-cart-form .shop_table_responsive td.product-thumbnail, .woocommerce .woocommerce-checkout-review-order-table td.product-thumbnail {
    width: 35%;
  }
}
.woocommerce .woocommerce-cart-form .shop_table_responsive td.product-thumbnail:before, .woocommerce .woocommerce-checkout-review-order-table td.product-thumbnail:before {
  display: none;
}
@media only screen and (min-width: 768px) {
  .woocommerce .woocommerce-cart-form .shop_table_responsive td.product-thumbnail, .woocommerce .woocommerce-checkout-review-order-table td.product-thumbnail {
    display: table-cell;
    height: auto;
    position: relative;
    padding-right: 10px;
    top: auto;
    border: 1px solid #ebebeb;
    left: auto;
    padding: 10px;
    width: 82px;
  }
}
.woocommerce .woocommerce-cart-form .shop_table_responsive td.product-thumbnail a, .woocommerce .woocommerce-checkout-review-order-table td.product-thumbnail a {
  display: block;
  height: 100%;
  text-align: center;
}
.woocommerce .woocommerce-cart-form .shop_table_responsive td.product-thumbnail img, .woocommerce .woocommerce-checkout-review-order-table td.product-thumbnail img {
  width: auto;
  height: auto;
  margin: 0 auto;
  max-height: calc(100% - 10px);
}
@media only screen and (min-width: 768px) {
  .woocommerce .woocommerce-cart-form .shop_table_responsive td.product-thumbnail img, .woocommerce .woocommerce-checkout-review-order-table td.product-thumbnail img {
    width: 62px;
    height: 62px;
  }
}
.woocommerce .woocommerce-cart-form .shop_table_responsive .quantity, .woocommerce .woocommerce-checkout-review-order-table .quantity {
  margin-right: 0;
  margin-left: auto;
}
.woocommerce .woocommerce-cart-form .shop_table_responsive .quantity .qty, .woocommerce .woocommerce-checkout-review-order-table .quantity .qty {
  width: 70px;
  padding: 8px;
  min-height: 38px;
}
@media only screen and (min-width: 768px) {
  .woocommerce .woocommerce-cart-form .shop_table_responsive .quantity .qty, .woocommerce .woocommerce-checkout-review-order-table .quantity .qty {
    padding: 13px 15px;
    min-height: 48px;
  }
}
.woocommerce .woocommerce-cart-form .shop_table_responsive td.product-remove, .woocommerce .woocommerce-checkout-review-order-table td.product-remove {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
  padding-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .woocommerce .woocommerce-cart-form .shop_table_responsive td.product-remove, .woocommerce .woocommerce-checkout-review-order-table td.product-remove {
    width: 30px;
  }
}
.woocommerce .woocommerce-cart-form .shop_table_responsive td.product-remove a, .woocommerce .woocommerce-checkout-review-order-table td.product-remove a {
  width: auto;
  padding: 8px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3px;
}
.woocommerce .woocommerce-cart-form .shop_table_responsive td.product-remove a:after, .woocommerce .woocommerce-checkout-review-order-table td.product-remove a:after {
  content: "Remove";
  display: inline-block;
  margin-left: 6px;
  font-size: 13px;
}
@media only screen and (min-width: 768px) {
  .woocommerce .woocommerce-cart-form .shop_table_responsive td.product-remove a:after, .woocommerce .woocommerce-checkout-review-order-table td.product-remove a:after {
    display: none;
  }
}
.woocommerce .woocommerce-cart-form .shop_table_responsive .backorder_notification, .woocommerce .woocommerce-checkout-review-order-table .backorder_notification {
  font-weight: 400;
  margin: 6px 0 0;
  font-size: 0.9375em;
  line-height: 1em;
}
.woocommerce dl.variation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
.woocommerce dl.variation dt {
  width: 60px;
}
@media only screen and (min-width: 768px) {
  .woocommerce dl.variation dt {
    width: auto;
  }
}
.woocommerce dl.variation dd {
  width: calc(100% - 75px);
}
.woocommerce dl.variation dt, .woocommerce dl.variation dd {
  display: inline-block;
  padding-top: 10px;
  margin: 0;
  float: none;
}
@media only screen and (min-width: 768px) {
  .woocommerce dl.variation dt, .woocommerce dl.variation dd {
    padding-top: 6px;
  }
}
.woocommerce dl.variation dt, .woocommerce dl.variation p {
  font-size: 0.9375em;
  line-height: 1em;
  font-weight: 400;
}
.woocommerce .woocommerce-form-login-toggle .woocommerce-info {
  display: none;
}
.woocommerce-checkout .woocommerce form.login {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  padding: 30px 0;
  border: 0;
  margin: 0;
  margin-bottom: 30px;
  border-bottom: 2px solid #ebebeb;
  border-top: 2px solid #ebebeb;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.woocommerce-checkout .woocommerce form.login:before {
  content: "Please enter your login details.";
  margin: 0 0 15px;
  width: 100%;
  padding: 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce-checkout .woocommerce form.login:before {
    width: 20%;
    margin: 0;
    padding-top: 18px;
    padding-right: 15px;
  }
}
.woocommerce-checkout .woocommerce form.login p {
  display: none;
}
.woocommerce-checkout .woocommerce form.login p.form-row {
  padding-top: 0;
  margin: 0;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce-checkout .woocommerce form.login p.form-row {
    width: 110px;
  }
}
.woocommerce-checkout .woocommerce form.login p.form-row-first, .woocommerce-checkout .woocommerce form.login p.form-row-last {
  display: block;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce-checkout .woocommerce form.login p.form-row-first, .woocommerce-checkout .woocommerce form.login p.form-row-last {
    width: calc(38% - 65px);
    padding-right: 10px;
  }
}
.woocommerce-checkout .woocommerce form.login .woocommerce-form-login__rememberme {
  display: none;
}
.woocommerce-checkout .woocommerce form.login .clear {
  display: none;
}
.woocommerce-checkout .woocommerce form.login p.lost_password {
  margin: 0;
  display: none;
}
.woocommerce h3#ship-to-different-address {
  font-size: 1.0625em;
  line-height: 1em;
  margin: 0 0 30px;
}
.woocommerce h3#ship-to-different-address label {
  font-weight: 400;
  font-family: "Manrope", sans-serif;
  color: #465568;
  text-transform: none;
}
.woocommerce table.shop_table.my_account_orders {
  font-size: 1em;
}
.woocommerce table.shop_table.my_account_orders .button {
  padding: 5px 10px;
  margin-right: 10px;
}
.woocommerce table.shop_table.my_account_orders tbody td {
  vertical-align: middle;
}
.woocommerce .woocommerce-customer-details address {
  border-radius: 0;
  border: 0;
  padding: 0;
}
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email:before, .woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone::before {
  color: #426a73;
}
.woocommerce .woocommerce-customer-details p {
  margin: 20px 0 0;
}
.woocommerce table.shop_table {
  border-radius: 0;
  border-collapse: collapse;
}
.woocommerce table.shop_table thead th {
  background: #426a73;
  color: #0b1426;
  font-weight: 600;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 1.125em;
  line-height: 1em;
  padding: 18px 15px;
  border: 0;
}
.woocommerce table.shop_table thead tr th:first-child {
  border-radius: 5px 0 0 0;
}
.woocommerce table.shop_table thead tr th:last-child {
  border-radius: 0 5px 0 0;
}
.woocommerce table.shop_table tbody td, .woocommerce table.shop_table tbody th, .woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th {
  vertical-align: top;
  padding: 10px 15px;
  border: 1px solid #ebebeb;
}
.woocommerce table.shop_table .wc-item-meta {
  margin: 0;
  padding: 0;
}
.woocommerce table.shop_table .wc-item-meta li {
  padding-top: 10px;
}
@media only screen and (min-width: 768px) {
  .woocommerce table.shop_table .wc-item-meta li {
    padding-top: 6px;
  }
}
.woocommerce table.shop_table .wc-item-meta li p, .woocommerce table.shop_table .wc-item-meta li strong {
  font-size: 0.9375em;
  line-height: 1em;
}
.woocommerce .woocommerce-shipping-destination {
  display: none;
}
.woocommerce ul#shipping_method li input {
  display: none;
}
.woocommerce ul#shipping_method li label {
  padding: 20px 20px 20px 45px;
  font-size: 0.9375em;
  line-height: 1.2em;
  display: block;
  border-radius: 5px;
  color: #080e1a;
  cursor: pointer;
  font-weight: 600;
  text-transform: none;
  background: white;
  width: 100%;
  border: 2px solid #ebebeb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.woocommerce ul#shipping_method li label:before {
  content: "";
  background: white;
  width: 15px;
  min-width: 15px;
  left: 20px;
  position: absolute;
  height: 15px;
  margin-right: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 0 0 1px #ddd;
          box-shadow: 0 0 0 1px #ddd;
  padding: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
}
.woocommerce ul#shipping_method li input:checked + label {
  border-color: #426a73;
}
.woocommerce ul#shipping_method li input:checked + label:before {
  background: #0b1426;
}
.woocommerce .shipping-method-description {
  font-size: 0.875em;
  line-height: 1.5714285714em;
  margin: 10px 0 0;
  opacity: 0.7;
}
.woocommerce .shipping-calculator-form p:not(.form-row) {
  margin-bottom: 0;
}
.woocommerce a.shipping-calculator-button {
  font-weight: 700;
  color: #080e1a;
  display: block;
  width: 100%;
  text-align: center;
  margin: 20px 0 0 !important;
  font-size: 0.875em;
  line-height: 1.2857142857em;
}
.woocommerce a.shipping-calculator-button:after {
  content: "\f107" !important;
  font-family: "Font Awesome 6 Pro" !important;
  color: #426a73 !important;
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  position: relative;
}
.woocommerce a.shipping-calculator-button[aria-expanded=true]:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media only screen and (min-width: 768px) {
  .woocommerce form.woocommerce-checkout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}
.woocommerce .woocommerce-NoticeGroup {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .woocommerce #order_review, .woocommerce #customer_details.col2-set {
    width: calc(50% - 50px);
    -ms-flex-preferred-size: calc(50% - 50px);
        flex-basis: calc(50% - 50px);
  }
}
.woocommerce #order_review {
  background: #f2f2f5;
  padding: 30px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce #order_review {
    -ms-flex-item-align: start;
        align-self: flex-start;
    top: 90px;
    position: sticky;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) and (min-width: 1400px) {
  .woocommerce #order_review {
    padding: 40px;
  }
}
.woocommerce #order_review h3#order_review_heading:before {
  width: 40px;
  height: 40px;
  background: #426a73;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  content: "\f00c";
  margin: 0 15px 0 0;
  color: white;
  font-family: "Font Awesome 6 Pro";
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.woocommerce #order_review .woocommerce-form-coupon-toggle {
  display: none;
}
.woocommerce #order_review .course-checkout-coupon-source {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 100%;
}
.woocommerce #order_review form.checkout_coupon {
  margin: 0;
  border: 0;
  clear: both;
  padding: 20px 0 5px;
  width: 100%;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.woocommerce #order_review form.checkout_coupon p {
  margin-bottom: 15px;
  text-align: center;
  padding: 0;
}
.woocommerce #order_review form.checkout_coupon .form-row-first {
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  width: auto;
}
.woocommerce #order_review form.checkout_coupon .form-row-first input {
  width: 100%;
  border-radius: 5px 0 0 5px;
  border-right: 0;
}
.woocommerce #order_review form.checkout_coupon .form-row-last {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  margin: 0;
}
.woocommerce #order_review form.checkout_coupon .form-row-last button {
  width: auto;
  white-space: nowrap;
  border-radius: 0 5px 5px 0;
}
.woocommerce #order_review form.checkout_coupon .clear {
  display: none;
}
.woocommerce .woocommerce-checkout-review-order-table {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 100%;
}
.woocommerce #order_review > .course-checkout-payment-heading {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 100%;
  margin: 30px 0 20px;
}
.woocommerce #order_review > #wc-stripe-express-checkout-element {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 100%;
  margin: 0 0 10px !important;
}
.woocommerce #order_review > #wc-stripe-express-checkout-element > div {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  min-width: 0;
  width: 100%;
}
.woocommerce #order_review > #wc-stripe-express-checkout-button-separator {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 100%;
  margin: 0 0 20px !important;
}
.woocommerce #order_review > #wc-stripe-express-checkout__order-attribution-inputs {
  display: none;
}
.woocommerce .woocommerce-billing-fields h3 {
  margin-bottom: 20px;
}
.woocommerce #checkout-delivery {
  margin: 20px 0 25px;
}
.woocommerce h3#checkout-additional {
  display: none;
}
.woocommerce .shipping-delivery {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 100%;
}
.woocommerce .shipping-delivery h3 {
  margin-bottom: 20px;
}
.woocommerce .shipping-delivery .shipping-table {
  width: 100%;
}
.woocommerce .shipping-delivery th {
  display: none;
}
.woocommerce #wcpay-express-checkout-element {
  margin: 0 0 20px;
}
.woocommerce #wcpay-express-checkout-button-separator {
  display: none !important;
}
.woocommerce #payment {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  width: 100%;
  background: none;
  padding: 0;
}
.woocommerce #payment .place-order.form-row {
  padding: 20px 0 0;
  margin: 0;
}
.woocommerce #payment .place-order.form-row .woocommerce-privacy-policy-text p {
  margin: 0 0 15px;
}
.woocommerce #payment .place-order.form-row #place_order {
  width: 100%;
}
.woocommerce #payment ul.payment_methods {
  margin: 0;
  padding: 0;
  border: 0;
}
.woocommerce #payment ul.payment_methods > li {
  margin: 0 0 10px;
}
.woocommerce #payment ul.payment_methods > li > input {
  display: none;
}
.woocommerce #payment ul.payment_methods > li > label {
  padding: 20px 20px 20px 45px;
  font-size: 0.9375em;
  line-height: 1.2em;
  display: block;
  border-radius: 5px;
  color: #080e1a;
  cursor: pointer;
  font-weight: 600;
  text-transform: none;
  background: white;
  width: 100%;
  border: 2px solid #ebebeb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.woocommerce #payment ul.payment_methods > li > label:before {
  content: "";
  background: white;
  width: 15px;
  min-width: 15px;
  left: 20px;
  position: absolute;
  height: 15px;
  margin-right: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  -webkit-box-shadow: 0 0 0 1px #ddd;
          box-shadow: 0 0 0 1px #ddd;
  padding: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
}
.woocommerce #payment ul.payment_methods > li .payment_box {
  background: white;
  margin: -2px 0 0;
  border: 2px solid #426a73;
  border-top: 0;
  border-radius: 0 0 5px 5px;
  padding: 0 20px 20px 45px;
}
.woocommerce #payment ul.payment_methods > li .payment_box:before {
  display: none;
}
.woocommerce #payment ul.payment_methods > li .payment_box .woocommerce-SavedPaymentMethods-saveNew {
  margin-top: 16px;
}
.woocommerce #payment ul.payment_methods > li > input:checked + label {
  border-color: #426a73;
  border-bottom-color: white;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.woocommerce #payment ul.payment_methods > li > input:checked + label:before {
  background: #0b1426;
}
.woocommerce ul.order_details {
  background: #f2f2f5;
  padding: 20px;
  margin: 0 auto 30px;
  display: inline-block;
  font-weight: 700;
  color: #080e1a;
}
.woocommerce #customer_details.col2-set .col-1, .woocommerce #customer_details.col2-set .col-2 {
  width: calc(100% - 0px);
  -ms-flex-preferred-size: calc(100% - 0px);
      flex-basis: calc(100% - 0px);
}
@media only screen and (min-width: 768px) {
  .woocommerce #customer_details.col2-set .col-1, .woocommerce #customer_details.col2-set .col-2 {
    width: calc(100% - 0px);
    -ms-flex-preferred-size: calc(100% - 0px);
        flex-basis: calc(100% - 0px);
  }
}
.woocommerce form.checkout_coupon {
  padding: 0;
  border: 0;
  margin-top: 20px;
}
.woocommerce form.checkout_coupon p {
  margin-bottom: 20px;
}
.woocommerce .coupon {
  padding-bottom: 0;
}
.woocommerce .coupon #coupon_code {
  height: 45px;
  margin: 0;
  border-radius: 5px 0 0 5px;
  border: 1px solid #ebebeb;
  padding: 8px 15px;
  width: 50%;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce .coupon #coupon_code {
    min-width: 300px;
    width: auto;
  }
}
.woocommerce .coupon button.button {
  border-radius: 0 5px 5px 0 !important;
  padding: 0 10px !important;
  height: 48px;
  width: 50%;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce .coupon button.button {
    width: auto;
    padding: 0 20px !important;
  }
}
@media only screen and (max-width: 960px) {
  .woocommerce #order_review form.checkout_coupon {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
  .woocommerce #order_review form.checkout_coupon .form-row-first,
  .woocommerce #order_review form.checkout_coupon .form-row-last {
    float: none;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .woocommerce #order_review form.checkout_coupon .form-row-first {
    margin: 0 0 10px;
  }
  .woocommerce #order_review form.checkout_coupon .form-row-first input {
    width: 100%;
    height: 48px;
    border: 1px solid #ebebeb;
    border-radius: 5px;
  }
  .woocommerce #order_review form.checkout_coupon .form-row-last button {
    width: 100%;
    height: 48px;
    border-radius: 5px;
  }
}
@media only screen and (max-width: 639px) {
  .woocommerce .woocommerce-cart-form .coupon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .woocommerce .woocommerce-cart-form .coupon #coupon_code {
    float: none;
    width: 100%;
    height: 48px;
    border-radius: 5px;
  }
  .woocommerce .woocommerce-cart-form .coupon button.button {
    float: none;
    height: 48px;
    border-radius: 5px !important;
    width: 100% !important;
  }
}
.woocommerce button[name=update_cart].button {
  border-radius: 5px !important;
  margin-top: 10px;
  height: 48px;
}
@media only screen and (min-width: 768px) {
  .woocommerce button[name=update_cart].button {
    margin-top: 0;
  }
}
.woocommerce button[name=update_cart].button:disabled, .woocommerce button[name=update_cart].button:disabled[disabled] {
  opacity: 1;
  background: rgba(66, 106, 115, 0.45);
  color: white !important;
  cursor: not-allowed;
  padding: 15px 20px;
}
@media only screen and (min-width: 768px) {
  .woocommerce button[name=update_cart].button:disabled, .woocommerce button[name=update_cart].button:disabled[disabled] {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.woocommerce button[name=update_cart].button:disabled:hover, .woocommerce button[name=update_cart].button:disabled:focus, .woocommerce button[name=update_cart].button:disabled[disabled]:hover, .woocommerce button[name=update_cart].button:disabled[disabled]:focus {
  background: rgba(66, 106, 115, 0.45);
  color: white !important;
}

.cross-sells {
  margin: 30px 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .cross-sells {
    margin: 50px 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .cross-sells .owl-stage-outer {
    overflow: hidden !important;
  }
}

.featured-products, .single-product .related, .single-product .upsells, .scrolling-landing {
  position: relative;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .featured-products:before, .single-product .related:before, .single-product .upsells:before, .scrolling-landing:before {
    left: 0;
    width: 20px;
    background: white;
    top: 0;
    bottom: 0;
    display: block;
    content: "";
    z-index: 5;
    position: absolute;
  }
}
@media screen and (min-width: 1520px) {
  .featured-products:before, .single-product .related:before, .single-product .upsells:before, .scrolling-landing:before {
    width: calc((100% - 1460px) / 2);
  }
}

.add-border > h2 {
  border-top: 2px solid #ebebeb;
  padding-top: 20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .add-border > h2 {
    padding-top: 40px;
  }
}
@media screen and (min-width: 1400px) {
  .add-border > h2 {
    padding-top: 50px;
  }
}

.woocommerce ul.products.owl-loaded {
  position: relative;
  gap: 0;
}
@media screen and (min-width: 1400px) {
  .woocommerce ul.products.owl-loaded .owl-stage-outer {
    overflow: visible;
  }
}
.woocommerce ul.products.owl-loaded .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.woocommerce ul.products.owl-loaded .owl-stage .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.woocommerce ul.products.owl-loaded .owl-item {
  padding: 2px;
}
.woocommerce ul.products.owl-loaded .owl-item li, .woocommerce ul.products.owl-loaded .owl-item .list-item {
  float: none;
  opacity: 0.3;
  width: 100% !important;
  margin: 0 !important;
}
.woocommerce ul.products.owl-loaded .owl-item.active li, .woocommerce ul.products.owl-loaded .owl-item.active .list-item {
  opacity: 1;
}

.brands-slider {
  overflow: hidden;
  position: relative;
}
.brands-slider .owl-stage, .brands-slider .owl-item {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.brands-slider ul.pwb-row.owl-loaded .owl-nav .owl-prev, .brands-slider ul.pwb-row.owl-loaded .owl-nav .owl-next {
  top: calc(50% - 15px);
}
.brands-slider img {
  max-height: 85px;
  width: auto;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.brands-slider ul {
  margin: 0;
  list-style: none;
}
.brands-slider ul li {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.brands-slider ul li:before {
  display: none;
}

.pwb-az-listing ul.pwb-clearfix {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
.pwb-az-listing ul.pwb-clearfix li {
  border: 0;
  padding: 0;
  margin: 0 5px 5px 0;
  width: auto;
  height: auto;
  float: none;
}
.pwb-az-listing ul.pwb-clearfix li a {
  padding: 8px 15px;
  border: 1px solid #ebebeb;
  font-family: "Radio Canada Big", sans-serif;
  background: white;
  color: #0b1426;
  min-width: 40px;
  font-size: 1em;
  line-height: 1.25em;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}
.pwb-az-listing ul.pwb-clearfix li a:hover {
  background: #426a73;
  color: white;
}
.pwb-az-listing ul.pwb-clearfix li:before {
  display: none;
}
.pwb-az-listing .pwb-az-listing-title {
  color: #080e1a;
  padding: 0 0 15px;
  border-bottom: 1px solid #ebebeb;
  font-size: 1.25em;
  line-height: 1em;
}
.pwb-az-listing .pwb-az-listing-row-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.pwb-az-listing .pwb-az-listing-row-in .pwb-az-listing-col {
  width: 100%;
}
@media only screen and (min-width: 640px) {
  .pwb-az-listing .pwb-az-listing-row-in .pwb-az-listing-col {
    width: 50%;
  }
}
@media only screen and (min-width: 768px) {
  .pwb-az-listing .pwb-az-listing-row-in .pwb-az-listing-col {
    width: 33.33%;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .pwb-az-listing .pwb-az-listing-row-in .pwb-az-listing-col {
    width: 25%;
  }
}
.pwb-az-listing .pwb-az-listing-row-in a {
  display: inline-block;
  padding: 2px 0;
  position: relative;
  font-weight: 300;
  text-transform: none;
  color: #080e1a;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .pwb-az-listing .pwb-az-listing-row-in a:before {
    width: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: block;
    background: #426a73;
    height: 1px;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .pwb-az-listing .pwb-az-listing-row-in a:hover:before {
    width: 100%;
  }
}

.woocommerce-notices-wrapper {
  width: 100%;
}

.woocommerce-error, .woocommerce-info, .woocommerce-message {
  border: 0;
  padding: 20px 20px 20px 40px;
  border-radius: 5px;
  background: #426a73;
  color: white;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce-error, .woocommerce-info, .woocommerce-message {
    padding: 25px 25px 25px 50px;
  }
}
.single-product .woocommerce-error, .single-product .woocommerce-info, .single-product .woocommerce-message {
  margin-left: 20px;
  margin-right: 20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .single-product .woocommerce-error, .single-product .woocommerce-info, .single-product .woocommerce-message {
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media screen and (min-width: 1520px) {
  .single-product .woocommerce-error, .single-product .woocommerce-info, .single-product .woocommerce-message {
    margin-left: calc((100% - 1460px) / 2);
    margin-right: calc((100% - 1460px) / 2);
  }
}
.woocommerce-error:before, .woocommerce-info:before, .woocommerce-message:before {
  top: 20px;
  left: 20px;
  font-family: "Font Awesome 6 Pro";
  content: "\f05a";
  font-weight: 700;
  color: white;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce-error:before, .woocommerce-info:before, .woocommerce-message:before {
    left: 25px;
    top: 25px;
  }
}
.woocommerce-error a, .woocommerce-info a, .woocommerce-message a {
  color: white;
}
.woocommerce .woocommerce-error .button, .woocommerce .woocommerce-info .button, .woocommerce .woocommerce-message .button {
  padding: 10px 20px;
  background: white;
  border-color: white;
  color: #080e1a;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce .woocommerce-error .button, .woocommerce .woocommerce-info .button, .woocommerce .woocommerce-message .button {
    margin: -8px 0;
  }
}
.woocommerce .woocommerce-error .button:hover, .woocommerce .woocommerce-info .button:hover, .woocommerce .woocommerce-message .button:hover {
  background: #080e1a;
  border-color: #080e1a;
  color: white;
}

.woocommerce-error {
  background: #e74c3c;
}

.woocommerce-message {
  background: #e5eaeb;
  border: 1px solid rgba(66, 106, 115, 0.18);
  color: #080e1a;
}
.woocommerce-message:before {
  content: "\f058";
  color: #426a73;
}
.woocommerce-message a {
  color: #426a73;
}
.woocommerce .woocommerce-message .button {
  background: #426a73;
  border-color: #426a73;
  color: white;
}
.woocommerce .woocommerce-message .button:hover {
  background: #080e1a;
  border-color: #080e1a;
  color: white;
}

.woocommerce-Address-title a {
  margin-top: 10px;
}

.course-store {
  background: #fff;
  color: #506074;
  font-family: "Manrope", sans-serif;
}
.course-store .wrapper {
  overflow: hidden;
}
.course-store h1, .course-store h2, .course-store h3, .course-store h4, .course-store h5, .course-store h6 {
  color: #0b1426;
  letter-spacing: -0.035em;
}
.course-store p {
  color: #506074;
}
.course-store svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}
.course-store .row {
  width: 100%;
}
.course-store .pagebody {
  min-height: 55vh;
}
.course-store.home .pagebody > .row.padded {
  padding: 0;
}

.course-announcement {
  background: #0b1426;
  color: #fff;
  position: relative;
  z-index: 51;
}
.course-announcement .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 38px;
  min-height: 38px;
  overflow: hidden;
  position: relative;
}
.course-announcement .course-announcement__item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation: course-announcement-cycle 12s ease-in-out infinite;
          animation: course-announcement-cycle 12s ease-in-out infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 11px;
  font-weight: 600;
  gap: 9px;
  letter-spacing: 0.12em;
  opacity: 0;
  position: absolute;
  text-transform: uppercase;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  white-space: nowrap;
}
.course-announcement .course-announcement__item:nth-child(2) {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
.course-announcement .course-announcement__item:nth-child(3) {
  -webkit-animation-delay: 8s;
          animation-delay: 8s;
}
.course-announcement .course-announcement__item i {
  color: #81b0ff;
  font-size: 13px;
  letter-spacing: 0;
}

@-webkit-keyframes course-announcement-cycle {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  5%, 28% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  33%, 100% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes course-announcement-cycle {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  5%, 28% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  33%, 100% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .course-announcement__item {
    -webkit-animation: none !important;
            animation: none !important;
    opacity: 0 !important;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
  }
  .course-announcement__item:first-child {
    opacity: 1 !important;
  }
}
.course-store.home:not(.fixed-header) #header.course-header {
  background: transparent;
  border-bottom: 0;
}

.course-store #header.course-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(11, 20, 38, 0.08);
  -webkit-box-shadow: none;
          box-shadow: none;
  height: auto;
  padding: 0;
  position: relative;
  z-index: 50;
}
.course-store #header.course-header .course-header__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 76px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.course-store.home .course-home {
  margin-top: -115px;
}
.course-store.home.fixed-header .course-home {
  margin-top: -38px;
}
.course-store.home .course-hero {
  min-height: 100svh;
  padding-top: 175px;
}

.fixed-header .course-store #header.course-header,
.course-store.fixed-header #header.course-header {
  background: rgba(255, 255, 255, 0.96);
  -webkit-box-shadow: 0 14px 40px rgba(11, 20, 38, 0.08);
          box-shadow: 0 14px 40px rgba(11, 20, 38, 0.08);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}

.course-brand {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0b1426;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  gap: 11px;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.course-brand:hover {
  color: #0b1426;
}

.course-store .toggle-nav {
  background: transparent;
  color: #0b1426;
  margin-left: auto;
  position: relative;
}
.course-store .toggle-nav .text {
  display: none;
}

@media only screen and (min-width: 960px) and (orientation: landscape) {
  .course-header__nav {
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: 36px;
  }
}
.course-header__nav .menu-close {
  background: transparent;
  color: #0b1426;
  font-size: 34px;
  line-height: 1;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .course-header__nav .menu-close {
    display: none;
  }
  .course-header__nav .menu-wrap,
  .course-header__nav .course-nav-list {
    height: 100%;
  }
  .course-header__nav .course-nav-list {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .course-header__nav .course-nav-list > li {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    margin: 0;
    padding: 0;
  }
  .course-header__nav .course-store #header-nav .course-nav-list > li > a,
  .course-header__nav .course-store #header-nav .course-mega-menu__trigger {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: transparent;
    border: 0;
    color: #0b1426;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 600;
    gap: 6px;
    height: 100%;
    letter-spacing: 0.5px;
    line-height: 14px;
    padding: 0;
    position: relative;
    text-transform: uppercase;
  }
  .course-header__nav .course-nav-list > li > a:after,
  .course-header__nav .course-mega-menu__trigger:after {
    background: #426a73;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    -webkit-transition: width 0.25s ease;
    transition: width 0.25s ease;
    width: 0;
  }
  .course-header__nav .course-nav-list > li:hover > a:after,
  .course-header__nav .course-nav-list > li.current-menu-item > a:after,
  .course-header__nav .course-mega-menu__trigger:hover:after,
  .course-header__nav .course-mega-menu__trigger:focus-visible:after,
  .course-header__nav .course-mega-menu.is-open .course-mega-menu__trigger:after {
    width: 100%;
  }
}

.course-mega-menu__trigger svg {
  height: 16px;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  width: 16px;
}

@media only screen and (min-width: 960px) and (orientation: landscape) {
  .course-store #header-nav .course-nav-list > li > a,
  .course-store #header-nav .course-mega-menu__trigger {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: transparent;
    border: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 600;
    gap: 6px;
    height: 100%;
    letter-spacing: 0.5px;
    line-height: 14px;
    padding: 0;
    white-space: nowrap;
    text-transform: uppercase;
  }
  .course-store #header-nav .course-mega-menu__trigger svg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16px;
            flex: 0 0 16px;
  }
}
.course-mega-menu__panel {
  display: none;
}

@media only screen and (min-width: 960px) and (orientation: landscape) {
  .course-mega-menu__panel {
    background: #f7f9fc;
    border-top: 1px solid rgba(11, 20, 38, 0.08);
    -webkit-box-shadow: 0 32px 80px rgba(11, 20, 38, 0.14);
            box-shadow: 0 32px 80px rgba(11, 20, 38, 0.14);
    display: block;
    left: 50%;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: auto;
    top: 100%;
    -webkit-transform: translate(-50%, 10px);
        -ms-transform: translate(-50%, 10px);
            transform: translate(-50%, 10px);
    -webkit-transition: opacity 0.22s ease, visibility 0.22s ease, -webkit-transform 0.22s ease;
    transition: opacity 0.22s ease, visibility 0.22s ease, -webkit-transform 0.22s ease;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease, -webkit-transform 0.22s ease;
    visibility: hidden;
    width: 100vw;
  }
  .course-mega-menu.is-open .course-mega-menu__panel {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    visibility: visible;
  }
  .course-mega-menu.is-open .course-mega-menu__trigger svg {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
.course-mega-menu__inner {
  display: -ms-grid;
  display: grid;
  margin: 0 auto;
  max-width: 1440px;
  padding: 38px 5vw 42px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .course-mega-menu__inner {
    -ms-grid-columns: minmax(250px, 0.64fr) clamp(30px, 3.5vw, 58px) minmax(0, 2.36fr);
    grid-template-columns: minmax(250px, 0.64fr) minmax(0, 2.36fr);
    gap: clamp(30px, 3.5vw, 58px);
    padding: 36px clamp(30px, 4vw, 64px) 42px;
  }
}

.course-mega-menu__intro {
  background: #c8d7db;
  border-radius: 24px;
  padding: 30px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .course-mega-menu__intro {
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 310px;
    padding: 34px;
  }
}
.course-mega-menu__intro .course-kicker {
  margin-bottom: 13px;
  font-size: 12px;
}
.course-mega-menu__intro h2 {
  font-size: 30px;
  line-height: 1.08;
  margin: 0 0 14px;
}
.course-mega-menu__intro p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 28px;
}

.course-mega-menu__all {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0b1426;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 10px;
}
.course-mega-menu__all svg {
  height: 18px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  width: 18px;
}
.course-mega-menu__all:hover {
  color: #426a73;
}
.course-mega-menu__all:hover svg {
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}

.course-store #header-nav .course-mega-menu__panel a {
  height: auto;
  letter-spacing: 0;
  margin: 0;
  padding: 0;
  text-align: left;
  text-transform: none;
}

.course-store #header-nav .course-mega-menu__all {
  color: #0b1426;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 14px;
  padding: 0;
}
.course-store #header-nav .course-mega-menu__all:hover {
  color: #426a73;
}

.course-mega-menu__subjects {
  display: -ms-grid;
  display: grid;
  gap: 26px 34px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .course-mega-menu__subjects {
    -ms-grid-columns: minmax(0, 1fr) 16px minmax(0, 1fr) 16px minmax(0, 1fr);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}

.course-mega-menu__subject {
  min-width: 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .course-mega-menu__subject {
    background: #fff;
    border: 1px solid rgba(11, 20, 38, 0.07);
    border-radius: 18px;
    -webkit-box-shadow: 0 8px 24px rgba(11, 20, 38, 0.035);
            box-shadow: 0 8px 24px rgba(11, 20, 38, 0.035);
    padding: 18px;
    -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
    transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  }
  .course-mega-menu__subject:hover {
    border-color: rgba(66, 106, 115, 0.2);
    -webkit-box-shadow: 0 14px 32px rgba(11, 20, 38, 0.07);
            box-shadow: 0 14px 32px rgba(11, 20, 38, 0.07);
    -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
.course-mega-menu__subject > ul {
  list-style: none;
  margin: 14px 0 0 48px;
  padding: 0;
}
.course-mega-menu__subject > ul li {
  margin: 0;
}
.course-mega-menu__subject > ul a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #506074;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  gap: 12px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px 0;
}
.course-mega-menu__subject > ul a:hover {
  color: #426a73;
}
.course-mega-menu__subject > ul small {
  color: #8a98aa;
  font-size: 11px;
}

.course-store #header-nav .course-mega-menu__subject > ul {
  background: transparent;
  border-top: 1px solid rgba(11, 20, 38, 0.08);
  border-radius: 0;
  display: block;
  height: auto;
  left: auto;
  opacity: 1;
  overflow: visible;
  margin-top: 18px;
  padding: 12px 0 0;
  pointer-events: inherit;
  position: static;
  top: auto;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  visibility: visible;
  width: auto;
}
.course-store #header-nav .course-mega-menu__subject > ul:before {
  display: none;
}
.course-store #header-nav .course-mega-menu__subject > ul li {
  text-align: left;
  width: auto;
}
.course-store #header-nav .course-mega-menu__subject > ul a {
  color: #506074 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
  padding: 6px 0;
}
.course-store #header-nav .course-mega-menu__subject > ul a:hover {
  color: #426a73 !important;
}

.course-mega-menu__subject-heading {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.course-mega-menu__subject-heading > a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0b1426 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  min-width: 0;
}
.course-mega-menu__subject-heading > a:hover {
  color: #426a73 !important;
}
.course-mega-menu__subject-heading strong,
.course-mega-menu__subject-heading small {
  display: block;
}
.course-mega-menu__subject-heading strong {
  font-size: 15px;
  line-height: 1.2;
}
.course-mega-menu__subject-heading small {
  color: #8794a5;
  font-size: 12px;
  font-weight: 500;
  margin-top: 4px;
}

.course-mega-menu__icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: linear-gradient(145deg, #f1f5f6, #dce5e7);
  border: 1px solid rgba(66, 91, 99, 0.12);
  border-radius: 13px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  color: #425b63;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  height: 42px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 42px;
}
.course-mega-menu__icon svg {
  height: 19px;
  width: 19px;
}

.course-mega-menu__subject-toggle {
  background: transparent;
  border: 0;
  color: #0b1426;
  display: none;
  height: 34px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  width: 34px;
}
.course-mega-menu__subject-toggle svg {
  height: 17px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  width: 17px;
}

.course-header__actions {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}

.course-header__search-control {
  position: relative;
}

.course-action {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent;
  border: 0;
  border-radius: 50%;
  color: #0b1426;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  position: relative;
  width: 40px;
}
.course-action:hover {
  background: #eef3f7;
  color: #426a73;
}
.course-action svg {
  height: 19px;
  width: 19px;
}

.course-cart-count {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #426a73;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 9px;
  font-weight: 700;
  height: 18px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: -1px;
  top: -1px;
  width: 18px;
}

.course-header-search {
  background: #fff;
  border-top: 1px solid #d8e0e3;
  display: none;
  padding: 18px 0;
}
.course-header-search.active {
  display: block;
}
.course-header-search .site-search {
  display: block;
  position: static;
  width: 100%;
}
.course-header-search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  max-width: 860px;
}
.course-header-search input[type=search] {
  background: #eef3f7;
  border: 0;
  border-radius: 999px 0 0 999px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 54px;
  padding: 0 25px;
}
.course-header-search button {
  border-radius: 0 999px 999px 0;
  min-width: 120px;
}

.course-kicker {
  color: #426a73;
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 17px;
  text-transform: uppercase;
}

.course-hero {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.92) 0, rgba(255, 255, 255, 0) 26%), linear-gradient(135deg, #eef3f6 0%, #c6d5da 52%, #91aab0 100%);
  display: -ms-grid;
  display: grid;
  min-height: 660px;
  overflow: hidden;
  padding-bottom: 60px;
  padding-top: 60px;
  position: relative;
}
.course-hero:before {
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  content: "";
  -webkit-filter: blur(2px);
          filter: blur(2px);
  height: 520px;
  position: absolute;
  right: -190px;
  top: -170px;
  width: 520px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .course-hero {
    -ms-grid-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    min-height: 720px;
    padding-bottom: 90px;
    padding-top: 90px;
  }
}

@media only screen and (min-width: 960px) and (orientation: landscape) {
  .course-store.home .course-hero {
    min-height: 100svh;
    padding-top: 205px;
  }
}
.course-hero__content {
  max-width: 740px;
  position: relative;
  z-index: 2;
}
.course-hero__content h1 {
  font-size: 45px;
  line-height: 0.98;
  margin: 0 0 28px;
  max-width: 700px;
}
@media only screen and (min-width: 768px) {
  .course-hero__content h1 {
    font-size: 68px;
  }
}
@media screen and (min-width: 1100px) {
  .course-hero__content h1 {
    font-size: 82px;
  }
}
.course-hero__content > p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 610px;
}

.course-hero__proof {
  display: -ms-grid;
  display: grid;
  gap: 10px;
  -ms-grid-columns: minmax(0, 1fr) 10px minmax(0, 1fr) 10px minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
  max-width: 690px;
}

.course-hero__proof-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 11px;
  min-height: 72px;
  padding: 12px 13px;
}
.course-hero__proof-item > span:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
}
.course-hero__proof-item strong {
  color: #0b1426;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 18px;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.course-hero__proof-item small {
  color: #586b78;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  margin-top: 4px;
}

.course-hero__proof-icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  color: #425b63;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 38px;
          flex: 0 0 38px;
  height: 38px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.course-hero__proof-icon svg {
  height: 18px;
  width: 18px;
}

.course-hero__visual {
  display: none;
  height: 620px;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .course-hero__visual {
    display: block;
  }
}

.hero-learner {
  height: 580px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-46%, -52%);
      -ms-transform: translate(-46%, -52%);
          transform: translate(-46%, -52%);
  width: min(480px, 84%);
  z-index: 2;
}

.hero-learner__frame {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(213, 226, 230, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 46% 46% 34px 34px/28% 28% 34px 34px;
  -webkit-box-shadow: 0 35px 90px rgba(11, 20, 38, 0.2);
          box-shadow: 0 35px 90px rgba(11, 20, 38, 0.2);
  height: 100%;
  overflow: hidden;
  position: relative;
}
.hero-learner__frame:after {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(62%, transparent), to(rgba(11, 20, 38, 0.16)));
  background: linear-gradient(180deg, transparent 62%, rgba(11, 20, 38, 0.16));
  bottom: 0;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-learner__image {
  display: block;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 43% center;
     object-position: 43% center;
  position: absolute;
  inset: 0;
  width: 100% !important;
}

.hero-float {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  -webkit-box-shadow: 0 20px 50px rgba(11, 20, 38, 0.14);
          box-shadow: 0 20px 50px rgba(11, 20, 38, 0.14);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
  padding: 15px 18px;
  position: absolute;
  z-index: 3;
}
.hero-float > svg {
  color: #426a73;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26px;
          flex: 0 0 26px;
  height: 26px;
  width: 26px;
}
.hero-float span {
  color: #6d7c8c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 11px;
  line-height: 1.35;
  white-space: nowrap;
}
.hero-float strong {
  color: #0b1426;
  font-size: 13px;
  line-height: 1.25;
  margin-bottom: 2px;
}

.hero-float--top {
  right: 1%;
  top: 13%;
}

.hero-float--bottom {
  bottom: 14%;
  left: 14%;
}

.hero-float--courses {
  bottom: 3%;
  right: 4%;
}

.hero-orb {
  border-radius: 50%;
  -webkit-filter: blur(2px);
          filter: blur(2px);
  position: absolute;
}

.hero-orb--one {
  background: rgba(25, 105, 255, 0.16);
  height: 260px;
  right: -10%;
  top: 18%;
  width: 260px;
}

.hero-orb--two {
  background: rgba(255, 255, 255, 0.48);
  bottom: -4%;
  height: 190px;
  left: 0;
  width: 190px;
}

.course-category-section,
.course-featured-section,
.course-benefit-section {
  padding-bottom: 80px;
  padding-top: 80px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .course-category-section,
  .course-featured-section,
  .course-benefit-section {
    padding-bottom: 120px;
    padding-top: 120px;
  }
}

.course-section-heading {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 38px;
}
.course-section-heading h2 {
  font-size: 38px;
  line-height: 1;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .course-section-heading h2 {
    font-size: 52px;
  }
}
.course-section-heading > a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0b1426;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  gap: 10px;
}
.course-section-heading > a svg {
  height: 18px;
  width: 18px;
}
.course-section-heading > p {
  margin: 0;
  max-width: 380px;
}

.course-category-grid {
  display: -ms-grid;
  display: grid;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .course-category-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1100px) {
  .course-category-grid {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}

.course-category-card {
  background: #eef3f7;
  border: 1px solid rgba(11, 20, 38, 0.05);
  border-radius: 26px;
  color: #0b1426;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 245px;
  overflow: hidden;
  padding: 22px;
  position: relative;
  -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  will-change: transform;
}
.course-category-card > * {
  pointer-events: none;
}
.course-category-card:before {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  content: "";
  height: 190px;
  position: absolute;
  right: -65px;
  top: -80px;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
  width: 190px;
}
.course-category-card:hover, .course-category-card:focus-visible {
  -webkit-box-shadow: 0 20px 55px rgba(11, 20, 38, 0.12);
          box-shadow: 0 20px 55px rgba(11, 20, 38, 0.12);
  color: #0b1426;
  outline: none;
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}
.course-category-card:hover:before, .course-category-card:focus-visible:before {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.course-category-card:hover .course-category-card__icon, .course-category-card:focus-visible .course-category-card__icon {
  -webkit-transform: translateY(-3px) rotate(-3deg);
      -ms-transform: translateY(-3px) rotate(-3deg);
          transform: translateY(-3px) rotate(-3deg);
}
.course-category-card:hover .course-category-card__arrow, .course-category-card:focus-visible .course-category-card__arrow {
  background: #0b1426;
  color: #fff;
  -webkit-transform: translateX(3px);
      -ms-transform: translateX(3px);
          transform: translateX(3px);
}
.course-category-card h3 {
  font-size: 23px;
  line-height: 1.06;
  margin: 0 0 10px;
  max-width: 245px;
}

.course-category-card__icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(11, 20, 38, 0.06);
  border-radius: 16px;
  -webkit-box-shadow: 0 10px 24px rgba(11, 20, 38, 0.07);
          box-shadow: 0 10px 24px rgba(11, 20, 38, 0.07);
  color: #0b1426;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 54px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 24px;
  position: relative;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  width: 54px;
  z-index: 1;
}
.course-category-card__icon svg {
  height: 25px;
  stroke-width: 1.55;
  width: 25px;
}

.course-category-card--2 {
  background: #dff2ff;
}

.course-category-card--3 {
  background: #d9f6eb;
}

.course-category-card--4 {
  background: #e9e4ff;
}

.course-category-card--5 {
  background: #ffe7da;
}

.course-category-card--1 .course-category-card__icon {
  color: #405f6d;
}

.course-category-card--2 .course-category-card__icon {
  color: #34739b;
}

.course-category-card--3 .course-category-card__icon {
  color: #34715d;
}

.course-category-card--4 .course-category-card__icon {
  color: #62569b;
}

.course-category-card--5 .course-category-card__icon {
  color: #9a6548;
}

.course-category-card__number {
  border: 1px solid rgba(11, 20, 38, 0.18);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  position: absolute;
  right: 22px;
  text-transform: uppercase;
  top: 22px;
  z-index: 1;
}

.course-category-card__content {
  position: relative;
  z-index: 1;
}
.course-category-card__content p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  max-width: 285px;
}

.course-category-card__footer {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: auto;
  padding-top: 18px;
  position: relative;
  z-index: 1;
}

.course-category-card__arrow {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid rgba(11, 20, 38, 0.18);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 38px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  width: 38px;
}
.course-category-card__arrow svg {
  height: 17px;
  width: 17px;
}

.course-featured-section {
  background: #f6f8fa;
}

.course-benefit-section {
  background: #0b1426;
  display: -ms-grid;
  display: grid;
  gap: 14px;
}
@media only screen and (min-width: 768px) {
  .course-benefit-section {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1100px) {
  .course-benefit-section {
    -ms-grid-columns: 1.5fr (1fr)[3];
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
}

.course-benefit-card {
  background: #14233a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  min-height: 280px;
  padding: 28px;
}
.course-benefit-card > svg {
  color: #89b8ff;
  height: 32px;
  margin-bottom: 60px;
  width: 32px;
}
.course-benefit-card h2, .course-benefit-card h3 {
  color: #fff;
}
.course-benefit-card h3 {
  font-size: 23px;
  margin-bottom: 14px;
}
.course-benefit-card p {
  color: #a9b5c5;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.course-benefit-card--lead {
  background: #426a73;
}
.course-benefit-card--lead h2 {
  font-size: 36px;
  line-height: 1.05;
}
.course-benefit-card--lead p {
  color: rgba(255, 255, 255, 0.78);
}
.course-benefit-card--lead .course-kicker {
  color: #dceaff;
}

.course-product-image {
  background: #dce5e7;
  border-radius: 22px;
  aspect-ratio: 16/9;
  margin-bottom: 21px;
  overflow: hidden;
  position: relative;
}
.course-product-image:after {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(11, 20, 38, 0.08)), color-stop(38%, rgba(11, 20, 38, 0)));
  background: linear-gradient(to top, rgba(11, 20, 38, 0.08), rgba(11, 20, 38, 0) 38%);
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.course-product-image__asset {
  display: block;
  height: 100% !important;
  margin: 0 !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: relative;
  width: 100% !important;
  z-index: 1;
}

.course-product-image__backdrop {
  display: none;
}

.course-product-image--contain:after {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(11, 20, 38, 0.06)), to(rgba(255, 255, 255, 0.04)));
  background: linear-gradient(to top, rgba(11, 20, 38, 0.06), rgba(255, 255, 255, 0.04));
  z-index: 2;
}

.course-product-image--large {
  border-radius: 36px;
  aspect-ratio: 16/9;
  margin: 0;
}

/* Vendor logo badge — overlays the thumbnail, never alters the image itself. */
.course-vendor-badge {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border: 1px solid rgba(11, 20, 38, 0.07);
  border-radius: 6px;
  bottom: 11px;
  -webkit-box-shadow: 0 1px 5px rgba(11, 20, 38, 0.12);
          box-shadow: 0 1px 5px rgba(11, 20, 38, 0.12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 11px;
  padding: 5px 8px;
  pointer-events: none;
  position: absolute;
  z-index: 3;
}

.course-vendor-badge__logo {
  display: block;
  height: 16px !important;
  max-width: 62px !important;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 0 !important;
  width: auto !important;
}

.course-vendor-badge--tall {
  padding: 7px 9px;
}

.course-vendor-badge--tall .course-vendor-badge__logo {
  height: 30px !important;
  max-width: 44px !important;
}

.course-vendor-badge--large {
  border-radius: 10px;
  bottom: 18px;
  -webkit-box-shadow: 0 2px 8px rgba(11, 20, 38, 0.12);
          box-shadow: 0 2px 8px rgba(11, 20, 38, 0.12);
  left: 18px;
  padding: 9px 16px;
}
.course-vendor-badge--large .course-vendor-badge__logo {
  height: 30px !important;
  max-width: 130px !important;
}
.course-vendor-badge--large.course-vendor-badge--tall .course-vendor-badge__logo {
  height: 48px !important;
  max-width: 72px !important;
}

@media (max-width: 767px) {
  .course-vendor-badge {
    border-radius: 5px;
    bottom: 9px;
    left: 9px;
    padding: 4px 6px;
  }
  .course-vendor-badge__logo {
    height: 14px !important;
    max-width: 56px !important;
  }
  .course-vendor-badge--tall .course-vendor-badge__logo {
    height: 30px !important;
    max-width: 46px !important;
  }
  .course-vendor-badge--large {
    bottom: 12px;
    left: 12px;
    padding: 7px 12px;
  }
  .course-vendor-badge--large .course-vendor-badge__logo {
    height: 23px !important;
    max-width: 100px !important;
  }
  .course-vendor-badge--large.course-vendor-badge--tall .course-vendor-badge__logo {
    height: 40px !important;
    max-width: 60px !important;
  }
}
/* Accreditation seal (CPD) — a SEPARATE badge, pinned TOP-RIGHT so it never
   collides with the bottom-left vendor logo. Same white-chip look. The CPD
   mark is near-square, so it is sized like the "tall" vendor logos. */
.course-accreditation-badge {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border: 1px solid rgba(11, 20, 38, 0.07);
  border-radius: 6px;
  -webkit-box-shadow: 0 1px 5px rgba(11, 20, 38, 0.12);
          box-shadow: 0 1px 5px rgba(11, 20, 38, 0.12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 6px 8px;
  pointer-events: none;
  position: absolute;
  right: 11px;
  top: 11px;
  z-index: 3;
}

.course-accreditation-badge__logo {
  display: block;
  height: 34px !important;
  max-width: 40px !important;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 0 !important;
  width: auto !important;
}

.course-accreditation-badge--large {
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 8px rgba(11, 20, 38, 0.12);
          box-shadow: 0 2px 8px rgba(11, 20, 38, 0.12);
  padding: 9px 12px;
  right: 18px;
  top: 18px;
}
.course-accreditation-badge--large .course-accreditation-badge__logo {
  height: 54px !important;
  max-width: 64px !important;
}

@media (max-width: 767px) {
  .course-accreditation-badge {
    border-radius: 5px;
    padding: 5px 6px;
    right: 9px;
    top: 9px;
  }
  .course-accreditation-badge__logo {
    height: 30px !important;
    max-width: 36px !important;
  }
  .course-accreditation-badge--large {
    padding: 7px 9px;
    right: 12px;
    top: 12px;
  }
  .course-accreditation-badge--large .course-accreditation-badge__logo {
    height: 44px !important;
    max-width: 52px !important;
  }
}
.course-cover {
  background: linear-gradient(145deg, #dff0ff, #a6c9fa);
  border-radius: 22px;
  height: 220px;
  margin-bottom: 21px;
  overflow: hidden;
  padding: 22px;
  position: relative;
}
.course-cover:after {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(11, 20, 38, 0.16)), to(rgba(11, 20, 38, 0)));
  background: linear-gradient(to top, rgba(11, 20, 38, 0.16), rgba(11, 20, 38, 0));
  bottom: 0;
  content: "";
  height: 50%;
  left: 0;
  position: absolute;
  right: 0;
}

.course-cover--mint {
  background: linear-gradient(145deg, #e6faf3, #9fe0c5);
}

.course-cover--violet {
  background: linear-gradient(145deg, #f0edff, #b8aaf2);
}

.course-cover--peach {
  background: linear-gradient(145deg, #fff0e8, #f5b99b);
}

.course-cover--slate {
  background: linear-gradient(145deg, #e9eef1, #91aab0);
}

.course-cover__orb {
  border-radius: 45% 55% 60% 40%;
  -webkit-filter: blur(0.2px);
          filter: blur(0.2px);
  position: absolute;
}

.course-cover__orb--one {
  background: rgba(255, 255, 255, 0.65);
  height: 150px;
  right: -24px;
  top: -38px;
  -webkit-transform: rotate(25deg);
      -ms-transform: rotate(25deg);
          transform: rotate(25deg);
  width: 150px;
}

.course-cover__orb--two {
  background: rgba(11, 20, 38, 0.12);
  bottom: -55px;
  height: 170px;
  left: 22%;
  -webkit-transform: rotate(-18deg);
      -ms-transform: rotate(-18deg);
          transform: rotate(-18deg);
  width: 190px;
}

.course-cover__eyebrow {
  color: rgba(11, 20, 38, 0.72);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
}

.course-cover__mark {
  color: #fff;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 52px;
  font-weight: 700;
  left: 24px;
  letter-spacing: -0.08em;
  line-height: 1;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-38%);
      -ms-transform: translateY(-38%);
          transform: translateY(-38%);
  z-index: 2;
}

.course-cover__line {
  background: rgba(255, 255, 255, 0.72);
  bottom: 22px;
  height: 2px;
  left: 22px;
  position: absolute;
  width: 48px;
  z-index: 2;
}

.course-store ul.products {
  display: -ms-grid;
  display: grid;
  gap: 38px 24px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .course-store ul.products {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1100px) {
  .course-store ul.products {
    -ms-grid-columns: (minmax(0, 1fr))[4];
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.course-store ul.products:before, .course-store ul.products:after {
  display: none;
}
.course-store ul.products li.product.course-card {
  background: #fff;
  border: 1px solid rgba(11, 20, 38, 0.09);
  border-radius: 24px;
  -webkit-box-shadow: 0 10px 30px rgba(11, 20, 38, 0.055);
          box-shadow: 0 10px 30px rgba(11, 20, 38, 0.055);
  display: block;
  float: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  -webkit-transition: border-color 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: border-color 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  width: auto;
}
.course-store ul.products li.product.course-card:hover {
  border-color: rgba(66, 106, 115, 0.24);
  -webkit-box-shadow: 0 26px 64px rgba(11, 20, 38, 0.12);
          box-shadow: 0 26px 64px rgba(11, 20, 38, 0.12);
  -webkit-transform: translateY(-7px);
      -ms-transform: translateY(-7px);
          transform: translateY(-7px);
}
.course-store ul.products li.product.course-card:hover .course-product-image__asset {
  -webkit-transform: scale(1.035);
      -ms-transform: scale(1.035);
          transform: scale(1.035);
}
.course-store ul.products li.product.course-card:hover .course-product-image--contain .course-product-image__asset {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.course-store ul.products li.product.course-card .course-card__link {
  color: #0b1426;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.course-store ul.products li.product.course-card .course-card__link:hover {
  color: #0b1426;
}
.course-store ul.products li.product.course-card .course-card__link:focus-visible {
  border-radius: 23px;
  outline: 3px solid rgba(66, 106, 115, 0.72);
  outline-offset: -3px;
}
.course-store ul.products li.product.course-card .woocommerce-loop-product__title {
  color: #0b1426;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0;
  min-height: 48px;
  overflow: hidden;
  padding: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.course-card__visual {
  overflow: hidden;
  position: relative;
}
.course-card__visual .course-product-image,
.course-card__visual .course-cover {
  border-radius: 0;
  aspect-ratio: 16/9;
  height: auto;
  margin: 0;
}
.course-card__visual .course-product-image__asset {
  -webkit-transition: -webkit-transform 0.45s ease;
  transition: -webkit-transform 0.45s ease;
  transition: transform 0.45s ease;
  transition: transform 0.45s ease, -webkit-transform 0.45s ease;
}

.course-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 23px 22px 21px;
}

.course-card__category {
  color: #426a73;
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 9px;
  padding: 0;
  text-transform: uppercase;
}

.course-card__footer {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #d8e0e3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 26px;
  padding-top: 18px;
}

.course-card__price {
  color: #0b1426;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 27px;
  font-weight: 750;
  gap: 5px 9px;
  line-height: 1;
}
.course-card__price del {
  color: #667686;
  font-size: 16px;
  font-weight: 600;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.course-card__price ins {
  color: #0b1426;
  font-weight: 750;
  text-decoration: none;
}
.course-card__price .woocommerce-price-suffix {
  color: #5e6e7d;
  display: block;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 7px;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.course-card__price .you-save {
  display: none;
}

.course-card__module-count {
  background: #c8d7db;
  border-radius: 999px;
  color: #0b1426;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 10px 12px;
}

.course-store.post-type-archive-product .site-main > .woocommerce-breadcrumb,
.course-store.tax-product_cat .site-main > .woocommerce-breadcrumb,
.course-store.search-results .site-main > .woocommerce-breadcrumb {
  color: #748391;
  font-size: 11px;
  margin: 0;
  padding: 24px 0 20px;
}
.course-store.post-type-archive-product .site-main > .woocommerce-breadcrumb a,
.course-store.tax-product_cat .site-main > .woocommerce-breadcrumb a,
.course-store.search-results .site-main > .woocommerce-breadcrumb a {
  color: #0b1426;
}

.course-catalogue-hero {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  background: #c8d7db;
  border-radius: 32px;
  display: -ms-grid;
  display: grid;
  gap: 36px;
  margin-bottom: 42px;
  overflow: hidden;
  padding: 38px 24px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .course-catalogue-hero {
    padding: 52px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .course-catalogue-hero {
    -ms-grid-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    padding: 62px;
  }
}
.course-catalogue-hero:after {
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  content: "";
  height: 260px;
  pointer-events: none;
  position: absolute;
  right: -95px;
  top: -130px;
  width: 260px;
}

.course-catalogue-hero__copy {
  position: relative;
  z-index: 1;
}
.course-catalogue-hero__copy .course-kicker {
  margin-bottom: 14px;
}
.course-catalogue-hero__copy h1 {
  font-size: 42px;
  line-height: 0.98;
  margin: 0 0 18px;
}
@media only screen and (min-width: 768px) {
  .course-catalogue-hero__copy h1 {
    font-size: 64px;
  }
}
.course-catalogue-hero__copy p {
  color: #435361;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  max-width: 580px;
}

.course-catalogue-hero__stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 28px;
}
.course-catalogue-hero__stats span {
  color: #4f5f6c;
  font-size: 14px;
  font-weight: 650;
}
.course-catalogue-hero__stats strong {
  color: #0b1426;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 22px;
  margin-right: 5px;
}

.course-catalogue-search {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  -webkit-box-shadow: 0 22px 65px rgba(11, 20, 38, 0.14), inset 0 0 0 1px rgba(11, 20, 38, 0.04);
          box-shadow: 0 22px 65px rgba(11, 20, 38, 0.14), inset 0 0 0 1px rgba(11, 20, 38, 0.04);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  padding: 8px;
  position: relative;
  z-index: 1;
}
.course-catalogue-search input[type=search] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent !important;
  border: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  color: #0b1426;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 500;
  height: 52px;
  min-width: 0;
  outline: 0;
  padding: 0 8px;
}
.course-catalogue-search input[type=search]::-webkit-input-placeholder {
  color: #7b8994;
}
.course-catalogue-search input[type=search]::-moz-placeholder {
  color: #7b8994;
}
.course-catalogue-search input[type=search]:-ms-input-placeholder {
  color: #7b8994;
}
.course-catalogue-search input[type=search]::-ms-input-placeholder {
  color: #7b8994;
}
.course-catalogue-search input[type=search]::placeholder {
  color: #7b8994;
}
.course-catalogue-search button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: linear-gradient(135deg, #0b1426, #294653);
  border: 0;
  border-radius: 999px;
  -webkit-box-shadow: 0 8px 20px rgba(11, 20, 38, 0.18);
          box-shadow: 0 8px 20px rgba(11, 20, 38, 0.18);
  color: #fff;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
  height: 52px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 22px;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.course-catalogue-search button:hover, .course-catalogue-search button:focus-visible {
  -webkit-box-shadow: 0 12px 25px rgba(11, 20, 38, 0.24);
          box-shadow: 0 12px 25px rgba(11, 20, 38, 0.24);
  -webkit-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
          transform: translateY(-1px);
}
.course-catalogue-search .course-catalogue-search__submit-icon {
  display: none;
}
.course-catalogue-search .course-catalogue-search__submit-icon svg {
  height: 20px;
  width: 20px;
}

.course-hero__search {
  max-width: 620px;
}

.course-catalogue-search__icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #e8eef1;
  border-radius: 50%;
  color: #425b63;
  display: none;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 46px;
          flex: 0 0 46px;
  height: 46px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 640px) {
  .course-catalogue-search__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.course-catalogue-search__icon svg {
  height: 19px;
  width: 19px;
}

.course-catalogue-layout {
  display: -ms-grid;
  display: grid;
  gap: 42px;
  padding-bottom: 80px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .course-catalogue-layout {
    -ms-grid-columns: 300px minmax(0, 1fr);
    grid-template-columns: 300px minmax(0, 1fr);
  }
}

.course-catalogue-sidebar {
  display: none;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .course-catalogue-sidebar {
    display: block;
  }
}

.course-catalogue-filters {
  background: #fff;
  border: 1px solid rgba(11, 20, 38, 0.09);
  border-radius: 24px;
  padding: 23px;
}

.course-catalogue-filters__heading {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 1px solid #d8e0e3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 20px;
}
.course-catalogue-filters__heading .course-kicker {
  font-size: 10px;
  margin-bottom: 6px;
}
.course-catalogue-filters__heading h2 {
  font-size: 25px;
  line-height: 1.1;
  margin: 0;
}
.course-catalogue-filters__heading > a {
  color: #426a73;
  font-size: 12px;
  margin-top: 3px;
  white-space: nowrap;
}

.course-catalogue-subjects > a,
.course-catalogue-subjects summary,
.course-catalogue-subjects details a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0b1426;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-weight: 650;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1.35;
}
.course-catalogue-subjects small {
  color: #81909c;
  font-size: 12px;
  font-weight: 650;
}
.course-catalogue-subjects > a {
  border-radius: 10px;
  margin-bottom: 3px;
  padding: 11px 10px;
}
.course-catalogue-subjects > a:hover, .course-catalogue-subjects > a.is-active {
  background: #eef3f7;
  color: #426a73;
}
.course-catalogue-subjects details {
  border-top: 1px solid rgba(11, 20, 38, 0.065);
}
.course-catalogue-subjects summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 10px;
  position: relative;
}
.course-catalogue-subjects summary::-webkit-details-marker {
  display: none;
}
.course-catalogue-subjects summary:after {
  color: #788792;
  content: "+";
  font-size: 17px;
  font-weight: 400;
  margin-left: 8px;
}
.course-catalogue-subjects summary span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 8px;
}
.course-catalogue-subjects details[open] summary {
  color: #426a73;
}
.course-catalogue-subjects details[open] summary:after {
  content: "−";
}
.course-catalogue-subjects details > div {
  padding: 0 5px 12px 15px;
}
.course-catalogue-subjects details a {
  border-left: 2px solid #d8e0e3;
  color: #5f6f7d;
  font-size: 13px;
  font-weight: 550;
  padding: 7px 8px 7px 12px;
}
.course-catalogue-subjects details a:hover, .course-catalogue-subjects details a.is-active {
  border-color: #426a73;
  color: #426a73;
}

.course-catalogue-price {
  border-top: 1px solid #d8e0e3;
  margin-top: 14px;
  padding-top: 22px;
}
.course-catalogue-price h3 {
  font-size: 18px;
  margin: 0 0 18px;
}

.course-catalogue-price__slider {
  height: 22px;
  margin: 0 2px;
  position: relative;
}

.course-catalogue-price__track {
  background: #dce5e8;
  border-radius: 999px;
  height: 6px;
  left: 0;
  position: absolute;
  right: 0;
  top: 8px;
}
.course-catalogue-price__track span {
  background: #426a73;
  border-radius: inherit;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.course-catalogue-price__range {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  height: 22px;
  left: 0;
  margin: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
}
.course-catalogue-price__range::-webkit-slider-runnable-track {
  background: transparent;
  height: 6px;
}
.course-catalogue-price__range::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  background: #fff;
  border: 3px solid #426a73;
  border-radius: 50%;
  -webkit-box-shadow: 0 3px 9px rgba(11, 20, 38, 0.2);
          box-shadow: 0 3px 9px rgba(11, 20, 38, 0.2);
  cursor: -webkit-grab;
  cursor: grab;
  height: 20px;
  margin-top: -7px;
  pointer-events: auto;
  width: 20px;
}
.course-catalogue-price__range::-moz-range-track {
  background: transparent;
  height: 6px;
}
.course-catalogue-price__range::-moz-range-thumb {
  background: #fff;
  border: 3px solid #426a73;
  border-radius: 50%;
  box-shadow: 0 3px 9px rgba(11, 20, 38, 0.2);
  cursor: grab;
  height: 14px;
  pointer-events: auto;
  width: 14px;
}
.course-catalogue-price__range:focus-visible::-webkit-slider-thumb {
  outline: 3px solid rgba(66, 106, 115, 0.25);
  outline-offset: 2px;
}

.course-catalogue-price__fields {
  display: -ms-grid;
  display: grid;
  gap: 12px;
  -ms-grid-columns: minmax(0, 1fr) 12px minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}
.course-catalogue-price__fields label > span:first-child {
  color: #71808d;
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.course-catalogue-price__input {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border: 1px solid #d8e0e3;
  border-radius: 11px;
  -webkit-box-shadow: 0 4px 12px rgba(11, 20, 38, 0.045);
          box-shadow: 0 4px 12px rgba(11, 20, 38, 0.045);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  padding: 0 12px;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.course-catalogue-price__input:focus-within {
  border-color: #426a73;
  -webkit-box-shadow: 0 0 0 3px rgba(66, 106, 115, 0.1);
          box-shadow: 0 0 0 3px rgba(66, 106, 115, 0.1);
}
.course-catalogue-price__input small {
  color: #61717e;
  font-size: 13px;
  font-weight: 700;
}
.course-catalogue-price__input input {
  background: transparent;
  border: 0;
  color: #0b1426;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 14px;
  font-weight: 650;
  height: 44px;
  min-width: 0;
  outline: 0;
  padding: 0 0 0 4px;
  width: 100%;
}
.course-catalogue-price__input input::-webkit-inner-spin-button, .course-catalogue-price__input input::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

.course-store .course-catalogue-price__input input[type=number] {
  background: transparent;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #0b1426;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 14px;
  font-weight: 650;
  height: 44px;
  line-height: 1;
  min-height: 0;
  padding: 0 0 0 4px;
}

.course-catalogue-price__active {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #eef3f7;
  border: 1px solid rgba(66, 106, 115, 0.12);
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 14px;
  padding: 11px 12px;
}
.course-catalogue-price__active > span {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  display: -ms-grid;
  display: grid;
  gap: 3px 8px;
  -ms-grid-columns: auto 8px auto;
  grid-template-columns: auto auto;
}
.course-catalogue-price__active small {
  color: #71808d;
  font-size: 9px;
  font-weight: 700;
  grid-column: 1/-1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.course-catalogue-price__active strong {
  color: #0b1426;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 14px;
  font-weight: 700;
}
.course-catalogue-price__active em {
  color: #667684;
  font-size: 10px;
  font-style: normal;
  font-weight: 650;
}
.course-catalogue-price__active > a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border: 1px solid #d8e0e3;
  border-radius: 50%;
  color: #0b1426;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  font-size: 18px;
  font-weight: 500;
  height: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
}
.course-catalogue-price__active > a:hover, .course-catalogue-price__active > a:focus-visible {
  background: #0b1426;
  border-color: #0b1426;
  color: #fff;
}

.course-catalogue-mobile-filters {
  margin-bottom: 22px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .course-catalogue-mobile-filters {
    display: none;
  }
}
.course-catalogue-mobile-filters > summary {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #0b1426;
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 13px;
  font-weight: 700;
  gap: 9px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  padding: 15px;
}
.course-catalogue-mobile-filters > summary::-webkit-details-marker {
  display: none;
}
.course-catalogue-mobile-filters > summary svg {
  height: 18px;
  width: 18px;
}
.course-catalogue-mobile-filters .course-catalogue-filters {
  margin-top: 10px;
}

.course-catalogue-toolbar {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #d8e0e3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 18px;
}

.course-catalogue-toolbar__count .woocommerce-result-count {
  color: #657583;
  float: none;
  font-size: 12px;
  margin: 0;
}

.course-catalogue-toolbar__sort {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.course-catalogue-toolbar__sort > span {
  color: #657583;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.course-catalogue-toolbar__sort .woocommerce-ordering {
  float: none;
  margin: 0;
  position: relative;
}
.course-catalogue-toolbar__sort .woocommerce-ordering:after {
  border-bottom: 2px solid #0b1426;
  border-right: 2px solid #0b1426;
  content: "";
  height: 7px;
  pointer-events: none;
  position: absolute;
  right: 18px;
  top: 50%;
  -webkit-transform: translateY(-65%) rotate(45deg);
      -ms-transform: translateY(-65%) rotate(45deg);
          transform: translateY(-65%) rotate(45deg);
  width: 7px;
}
.course-catalogue-toolbar__sort select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 1px solid #d8e0e3;
  border-radius: 12px;
  -webkit-box-shadow: 0 5px 14px rgba(11, 20, 38, 0.055);
          box-shadow: 0 5px 14px rgba(11, 20, 38, 0.055);
  color: #0b1426;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  min-height: 48px;
  padding: 0 48px 0 16px;
}
.course-catalogue-toolbar__sort select:hover, .course-catalogue-toolbar__sort select:focus {
  border-color: rgba(66, 106, 115, 0.55);
}

.course-catalogue-results {
  min-width: 0;
}
@media screen and (min-width: 1100px) {
  .course-catalogue-results ul.products {
    -ms-grid-columns: (minmax(0, 1fr))[3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.course-store .course-catalogue-results .woocommerce-pagination {
  margin-top: 42px;
}
.course-store .course-catalogue-results .woocommerce-pagination .course-pagination--compact {
  display: none;
}
.course-store .course-catalogue-results .woocommerce-pagination ul.page-numbers {
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.course-store .course-catalogue-results .woocommerce-pagination ul.page-numbers li {
  border: 0;
}
.course-store .course-catalogue-results .woocommerce-pagination ul.page-numbers li > a.page-numbers,
.course-store .course-catalogue-results .woocommerce-pagination ul.page-numbers li > span.page-numbers {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border: 1px solid #d8e0e3;
  border-radius: 9px;
  color: #0b1426;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  height: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 40px;
  padding: 0;
  text-indent: 0;
}
.course-store .course-catalogue-results .woocommerce-pagination ul.page-numbers li > a.page-numbers:before,
.course-store .course-catalogue-results .woocommerce-pagination ul.page-numbers li > span.page-numbers:before {
  content: none;
}
.course-store .course-catalogue-results .woocommerce-pagination ul.page-numbers li > span.current,
.course-store .course-catalogue-results .woocommerce-pagination ul.page-numbers li > a.page-numbers:hover {
  background: #426a73;
  border-color: #426a73;
  color: #fff;
}
.course-store .course-catalogue-results .woocommerce-pagination ul.page-numbers li > span.dots {
  background: transparent;
  border-color: transparent;
  color: #93a1ab;
  letter-spacing: 0.12em;
}
.course-store .course-catalogue-results .woocommerce-pagination ul.page-numbers li > a.prev,
.course-store .course-catalogue-results .woocommerce-pagination ul.page-numbers li > a.next {
  color: #426a73;
}
.course-store .course-catalogue-results .woocommerce-pagination ul.page-numbers .course-pagination__chevron {
  height: 16px;
  width: 16px;
}

.course-store.single-product {
  background: radial-gradient(circle at 82% 7%, rgba(255, 255, 255, 0.82) 0, rgba(255, 255, 255, 0) 30%), radial-gradient(circle at 10% 28%, rgba(255, 255, 255, 0.46) 0, rgba(255, 255, 255, 0) 28%), linear-gradient(180deg, #eaf1f3 0, #d7e3e6 520px, #eef3f4 980px, #fff 1520px);
}
.course-store.single-product .site-main {
  background: transparent;
}
.course-store.single-product .woocommerce-breadcrumb {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  color: #748391;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 32px auto 24px;
  max-width: 1440px;
  overflow-x: auto;
  padding: 10px 15px 10px 30px !important;
  scrollbar-width: none;
  text-align: left;
  white-space: nowrap;
  width: calc(100% - 40px);
}
.course-store.single-product .woocommerce-breadcrumb a {
  color: #0b1426;
  font-weight: 700;
}
.course-store.single-product .woocommerce-breadcrumb::-webkit-scrollbar {
  display: none;
}
.course-store.single-product .woocommerce-breadcrumb__mobile-back {
  display: none;
}
.course-store.single-product .wrap-product-summary {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  background: linear-gradient(135deg, #f5f8f9 0%, #c8d7db 100%);
  border: 1px solid rgba(11, 20, 38, 0.065);
  border-radius: 34px;
  display: -ms-grid;
  display: grid;
  gap: 34px;
  margin-bottom: 54px;
  overflow: visible;
  padding: 22px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .course-store.single-product .wrap-product-summary {
    -ms-grid-columns: minmax(0, 1.08fr) clamp(42px, 5vw, 76px) minmax(420px, 0.92fr);
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    gap: clamp(42px, 5vw, 76px);
    padding: clamp(34px, 4vw, 58px);
  }
}
.course-store.single-product .product .summary,
.course-store.single-product div.product div.summary {
  float: none;
  margin: 0;
  width: auto;
}

.course-store.single-product:not(.fixed-header) #header.course-header {
  background: transparent;
  border-bottom: 0;
  backdrop-filter: blur(12px);
}

.course-visual {
  min-width: 0;
  position: sticky;
  top: 110px;
}
.course-visual .course-product-image--large {
  -webkit-box-shadow: 0 28px 70px rgba(11, 20, 38, 0.16);
          box-shadow: 0 28px 70px rgba(11, 20, 38, 0.16);
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .course-visual {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}

.course-cover--large {
  border-radius: 36px;
  height: 560px;
  margin: 0;
}
.course-cover--large .course-cover__mark {
  font-size: 100px;
  left: 42px;
}
.course-cover--large .course-cover__eyebrow {
  font-size: 11px;
}
.course-cover--large .course-cover__line {
  bottom: 38px;
  left: 40px;
  width: 80px;
}

.course-visual__note {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #fff;
  border-radius: 19px;
  bottom: 22px;
  -webkit-box-shadow: 0 22px 50px rgba(11, 20, 38, 0.14);
          box-shadow: 0 22px 50px rgba(11, 20, 38, 0.14);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
  padding: 16px 19px;
  position: absolute;
  right: -12px;
}
.course-visual__note > svg {
  color: #426a73;
  height: 28px;
  width: 28px;
}
.course-visual__note span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 11px;
}
.course-visual__note strong {
  color: #0b1426;
  font-size: 13px;
}

.course-summary__eyebrow {
  color: #426a73;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.course-summary__badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.course-summary__badges span {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(11, 20, 38, 0.08);
  border-radius: 999px;
  color: #53636f;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  gap: 7px;
  padding: 8px 11px;
}
.course-summary__badges svg {
  color: #426a73;
  height: 15px;
  width: 15px;
}

.course-store.single-product h1.product_title {
  font-size: 38px;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin-bottom: 18px;
}
@media only screen and (min-width: 768px) {
  .course-store.single-product h1.product_title {
    font-size: 50px;
  }
}

.course-store.single-product div.product div.summary h1.product_title {
  font-size: 38px;
  line-height: 1.02;
}
@media only screen and (min-width: 768px) {
  .course-store.single-product div.product div.summary h1.product_title {
    font-size: 44px;
  }
}

.course-summary__subtitle,
.course-store .woocommerce-product-details__short-description p {
  color: #435361;
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 24px;
}

.course-facts {
  display: -ms-grid;
  display: grid;
  gap: 9px;
  -ms-grid-columns: 1fr 9px 1fr;
  grid-template-columns: repeat(2, 1fr);
  margin: 24px 0;
}
.course-facts > div {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(11, 20, 38, 0.07);
  border-radius: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  min-height: 68px;
  padding: 12px;
}
.course-facts > div:last-child:nth-child(odd) {
  grid-column: 1/-1;
}
.course-facts svg {
  color: #426a73;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 21px;
          flex: 0 0 21px;
  height: 21px;
  width: 21px;
}
.course-facts span {
  color: #0b1426;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}
.course-facts small {
  color: #768590;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.course-purchase {
  background: #fff;
  border: 1px solid rgba(11, 20, 38, 0.09);
  border-radius: 22px;
  -webkit-box-shadow: 0 18px 45px rgba(11, 20, 38, 0.09);
          box-shadow: 0 18px 45px rgba(11, 20, 38, 0.09);
  padding: 20px;
}
.course-purchase .course-purchase__top {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 12px;
}
.course-purchase .course-purchase__top > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.course-purchase .course-purchase__top > div > span {
  color: #0b1426;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 14px;
  font-weight: 700;
}
.course-purchase .course-purchase__top > div small {
  color: #75848f;
  font-size: 10px;
  line-height: 1.4;
  margin-top: 3px;
}
.course-purchase .course-purchase__top .price {
  color: #0b1426;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}
.course-purchase .course-purchase__top .price del {
  color: #667686;
  font-size: 20px;
  font-weight: 600;
}
.course-purchase .course-purchase__top .price ins {
  color: #0b1426;
  text-decoration: none;
}
.course-purchase .course-purchase__top .price .woocommerce-price-suffix {
  color: #5e6e7d;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}
.course-purchase .cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 14px 0 16px !important;
}
.course-purchase .cart .qty-box {
  display: none !important;
}
.course-purchase .cart .single_add_to_cart_button {
  background: linear-gradient(135deg, #0b1426, #294653);
  border-radius: 999px;
  -webkit-box-shadow: 0 10px 24px rgba(11, 20, 38, 0.18);
          box-shadow: 0 10px 24px rgba(11, 20, 38, 0.18);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 15px;
  min-height: 56px;
  padding: 17px 25px;
}
.course-purchase .cart .single_add_to_cart_button:hover, .course-purchase .cart .single_add_to_cart_button:focus {
  background: #426a73;
}

.course-purchase__saving {
  background: #c8d7db;
  border-radius: 8px;
  color: #0b1426;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 11px;
  font-weight: 750;
  padding: 7px 10px;
}

.course-purchase__assurances {
  border-top: 1px solid #d8e0e3;
  display: -ms-grid;
  display: grid;
  gap: 9px 15px;
  -ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 15px;
}
.course-purchase__assurances span {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #62727f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 10px;
  font-weight: 650;
  gap: 7px;
}
.course-purchase__assurances svg {
  color: #426a73;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15px;
          flex: 0 0 15px;
  height: 15px;
  width: 15px;
}

.course-store.single-product div.product div.summary .course-purchase__top p.price {
  color: #0b1426;
  font-size: 36px;
  line-height: 1.1;
  margin: 0;
}
.course-store.single-product div.product div.summary .course-purchase__top p.price del {
  color: #667686;
  font-size: 20px;
  font-weight: 600;
}
.course-store.single-product div.product div.summary .course-purchase__top p.price ins {
  color: #0b1426;
  font-size: 36px;
}
.course-store.single-product div.product div.summary .course-purchase__top p.price .woocommerce-price-suffix {
  color: #5e6e7d;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.course-detail-shell {
  padding-bottom: 90px;
}

.course-detail-nav {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #d8e0e3;
  border-radius: 999px;
  -webkit-box-shadow: 0 12px 35px rgba(11, 20, 38, 0.07);
          box-shadow: 0 12px 35px rgba(11, 20, 38, 0.07);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  overflow-x: auto;
  padding: 6px;
  position: sticky;
  top: 88px;
  z-index: 20;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .course-detail-nav {
    margin-left: auto;
    margin-right: auto;
    max-width: 1180px;
  }
}
.course-detail-nav a {
  color: #0b1426;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 12px;
  font-weight: 650;
  padding: 10px 16px;
}
.course-detail-nav a:hover, .course-detail-nav a:focus-visible {
  background: #eef3f7;
  border-radius: 999px;
  color: #426a73;
}

.course-section {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
  padding: 70px 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .course-section {
    padding: 90px 0;
  }
}
.course-section h2 {
  font-size: 36px;
  line-height: 1.05;
  margin-bottom: 24px;
}
@media only screen and (min-width: 768px) {
  .course-section h2 {
    font-size: 48px;
  }
}

.course-section__label {
  color: #426a73;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.course-section__content > p {
  color: #4d5d6b;
  font-size: 18px;
  line-height: 1.75;
}
.course-section__content > ul:not(.course-outcomes) {
  display: none;
}

.course-section__lead {
  font-size: 18px !important;
  line-height: 1.7 !important;
  margin-bottom: 30px;
  max-width: 920px;
}

.course-section__heading-row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.course-section__heading-row h2 {
  margin-bottom: 24px;
}
.course-section__heading-row > span {
  background: #c8d7db;
  border-radius: 999px;
  color: #0b1426;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 11px;
}

.course-section--tint {
  background: #eef3f7;
  border: 1px solid rgba(11, 20, 38, 0.055);
  border-radius: 34px;
  max-width: 1260px;
  padding-left: 34px;
  padding-right: 34px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .course-section--tint {
    padding-left: 58px;
    padding-right: 58px;
  }
}

.course-overview-layout {
  display: -ms-grid;
  display: grid;
  gap: 28px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .course-overview-layout {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-grid-columns: minmax(0, 1.45fr) 48px minmax(300px, 0.55fr);
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
    gap: 48px;
  }
}

.course-overview-copy {
  color: #4d5d6b;
  font-size: 17px;
  line-height: 1.8;
}
.course-overview-copy p {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  margin-bottom: 24px;
}

.course-description-more {
  border-top: 1px solid #d8e0e3;
  margin-top: 26px;
  padding-top: 18px;
}
.course-description-more summary {
  color: #426a73;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  list-style: none;
}
.course-description-more summary:after {
  content: "+";
  font-size: 18px;
  margin-left: 8px;
}
.course-description-more summary::-webkit-details-marker {
  display: none;
}
.course-description-more[open] summary:after {
  content: "−";
}
.course-description-more > div {
  margin-top: 24px;
}

.course-callout {
  background: #c8d7db;
  border: 1px solid rgba(66, 106, 115, 0.1);
  border-radius: 22px;
  margin: 0;
  padding: 28px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .course-callout {
    position: sticky;
    top: 155px;
  }
}
.course-callout strong {
  color: #0b1426;
  display: block;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 21px;
  line-height: 1.15;
  margin-bottom: 12px;
}
.course-callout p {
  color: #53636f;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.course-callout__icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #426a73;
  border-radius: 50%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 44px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 22px;
  width: 44px;
}
.course-callout__icon svg {
  height: 21px;
  width: 21px;
}

.course-outcomes {
  display: -ms-grid;
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .course-outcomes {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1100px) {
  .course-outcomes {
    -ms-grid-columns: (minmax(0, 1fr))[3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.course-outcomes li {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(11, 20, 38, 0.085);
  border-radius: 15px;
  -webkit-box-shadow: 0 5px 15px rgba(11, 20, 38, 0.035);
          box-shadow: 0 5px 15px rgba(11, 20, 38, 0.035);
  color: #0b1426;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  gap: 11px;
  line-height: 1.55;
  min-height: 104px;
  padding: 19px;
}
.course-outcomes svg {
  color: #426a73;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
  height: 18px;
  width: 18px;
}

.course-curriculum {
  border: 1px solid #d8e0e3;
  border-radius: 18px;
  overflow: hidden;
}
.course-curriculum details {
  border-bottom: 1px solid #d8e0e3;
}
.course-curriculum details:last-child {
  border-bottom: 0;
}
.course-curriculum details[open] {
  background: #f8fafb;
}
.course-curriculum summary {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0b1426;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 16px;
  font-weight: 650;
  gap: 18px;
  list-style: none;
  padding: 22px 54px 22px 24px;
  position: relative;
}
.course-curriculum summary:after {
  content: "+";
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 300;
  position: absolute;
  right: 24px;
}
.course-curriculum details[open] summary:after {
  content: "−";
}
.course-curriculum summary::-webkit-details-marker {
  display: none;
}
.course-curriculum summary span,
.course-curriculum .course-curriculum__module span {
  color: #426a73;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
}
.course-curriculum .course-curriculum__module {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #d8e0e3;
  color: #0b1426;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 16px;
  font-weight: 650;
  gap: 18px;
  padding: 22px 24px;
}
.course-curriculum .course-curriculum__module:last-child {
  border-bottom: 0;
}
.course-curriculum p {
  color: #5f6f7c;
  font-size: 15px;
  line-height: 1.7;
  margin: -4px 54px 24px 62px;
}

.course-secondary-grid {
  display: -ms-grid;
  display: grid;
  gap: 24px;
  margin: 0 auto;
  max-width: 1180px;
  padding: 34px 0 90px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .course-secondary-grid {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.course-secondary-grid .course-section {
  background: #f7f9fa;
  border: 1px solid rgba(11, 20, 38, 0.07);
  border-radius: 28px;
  margin: 0;
  max-width: none;
  padding: 30px;
}
@media only screen and (min-width: 768px) {
  .course-secondary-grid .course-section {
    padding: 40px;
  }
}
.course-secondary-grid .course-section h2 {
  font-size: 30px;
}
@media only screen and (min-width: 768px) {
  .course-secondary-grid .course-section h2 {
    font-size: 36px;
  }
}

.certificate-card {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #c8d7db;
  border: 1px solid rgba(11, 20, 38, 0.07);
  border-radius: 22px;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: block;
  height: 100%;
  padding: 28px;
}
.certificate-card h2 {
  font-size: 30px;
  margin-bottom: 15px;
}
.certificate-card p {
  color: #52626f;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 12px;
}

.certificate-card__seal {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #426a73;
  border-radius: 50%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 64px;
  margin-bottom: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 64px;
}
.certificate-card__seal svg {
  height: 30px;
  width: 30px;
}

.certificate-card__note {
  font-size: 12px;
}

.course-faq summary {
  padding-left: 20px;
}

.course-section--faq .course-curriculum {
  background: #fff;
}

.course-store .related,
.course-store .upsells {
  background: #f5f8f9;
  border: 0;
  border-radius: 32px 32px 0 0;
  margin: 0 auto;
  max-width: 1460px;
  padding: 58px 24px 72px;
}
@media only screen and (min-width: 768px) {
  .course-store .related,
  .course-store .upsells {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.course-store .related > h2,
.course-store .upsells > h2 {
  font-size: 34px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .course-store .related > h2,
  .course-store .upsells > h2 {
    font-size: 44px;
  }
}
.course-store .related ul.products,
.course-store .upsells ul.products {
  gap: 22px;
}
@media only screen and (min-width: 768px) {
  .course-store .related ul.products,
  .course-store .upsells ul.products {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (min-width: 1100px) {
  .course-store .related ul.products,
  .course-store .upsells ul.products {
    -ms-grid-columns: (minmax(0, 1fr))[3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.course-store .related .course-card__visual .course-product-image,
.course-store .related .course-card__visual .course-cover,
.course-store .upsells .course-card__visual .course-product-image,
.course-store .upsells .course-card__visual .course-cover {
  height: auto;
}

.course-footer {
  background: #0b1426;
  color: #fff;
}

.course-footer__main {
  display: -ms-grid;
  display: grid;
  gap: 55px 35px;
  padding-bottom: 75px;
  padding-top: 75px;
}
@media only screen and (min-width: 768px) {
  .course-footer__main {
    -ms-grid-columns: 1.3fr 1fr 1fr;
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}
@media screen and (min-width: 1100px) {
  .course-footer__main {
    -ms-grid-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
  }
}
.course-footer__main h2 {
  color: #fff;
  font-size: 15px;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.course-footer__main ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.course-footer__main li {
  margin: 0 0 9px;
}
.course-footer__main a {
  color: #aeb9c8;
  font-size: 12px;
  font-weight: 400;
}

.course-brand--footer {
  color: #fff;
  margin-bottom: 25px;
}
.course-brand--footer:hover {
  color: #fff;
}

.course-footer__brand p {
  color: #aeb9c8;
  font-size: 13px;
  line-height: 1.7;
  max-width: 360px;
}

.course-footer__statement {
  background: #14233a;
  border-radius: 24px;
  padding: 27px;
}
.course-footer__statement .course-kicker {
  color: #81b0ff;
}
.course-footer__statement h2 {
  font-size: 26px;
  line-height: 1.08;
  margin: 0;
}

.course-footer__end {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 32px;
  padding-top: 26px;
}
.course-footer__end p {
  color: #9dabbd;
  font-size: 12px;
  letter-spacing: 0.06em;
  margin: 0;
  text-transform: uppercase;
}

@media screen and (max-width: 959px) {
  .course-store.nav-open {
    overflow: hidden;
  }
  .course-store.nav-open #header.course-header {
    z-index: 120;
  }
  .course-store #header-nav {
    background: radial-gradient(circle at 86% 4%, rgba(255, 255, 255, 0.92) 0, rgba(255, 255, 255, 0) 34%), linear-gradient(160deg, #f3f7f9 0%, #dde7eb 46%, #b8ccd2 100%);
    bottom: 0;
    -webkit-box-shadow: 80vw 0 0 80vw rgba(11, 20, 38, 0.44);
            box-shadow: 80vw 0 0 80vw rgba(11, 20, 38, 0.44);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 100vh;
    height: 100dvh;
    left: 0;
    max-height: 100vh;
    max-height: 100dvh;
    opacity: 0;
    -ms-scroll-chaining: none;
        overscroll-behavior: contain;
    overflow-y: auto;
    padding: 26px;
    pointer-events: none;
    position: fixed;
    top: 0;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.48s cubic-bezier(0.76, 0, 0.24, 1);
    transition: opacity 0.3s ease, -webkit-transform 0.48s cubic-bezier(0.76, 0, 0.24, 1);
    transition: transform 0.48s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.3s ease;
    transition: transform 0.48s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.3s ease, -webkit-transform 0.48s cubic-bezier(0.76, 0, 0.24, 1);
    width: min(92vw, 430px);
    -webkit-overflow-scrolling: touch;
    z-index: 100;
  }
  .course-store #header-nav .menu-wrap {
    background: transparent;
    height: auto;
    min-height: 100%;
    padding: 0;
    position: static;
    width: 100%;
  }
  .course-store #header-nav .menu-close {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(11, 20, 38, 0.12);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 42px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-left: auto;
    padding: 0;
    position: static;
    right: auto;
    top: auto;
    width: 42px;
  }
  .course-store #header-nav .course-nav-list {
    counter-reset: course-nav-item;
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
  }
  .course-store #header-nav .course-nav-list > li {
    border-bottom: 0;
    counter-increment: course-nav-item;
    margin: 0;
    opacity: 0;
    position: relative;
    -webkit-transform: translateY(14px);
        -ms-transform: translateY(14px);
            transform: translateY(14px);
    -webkit-transition: opacity 0.45s ease, -webkit-transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    transition: opacity 0.45s ease, -webkit-transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .course-store #header-nav .course-nav-list > li:after {
    background: #d8e0e3;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    right: 0;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
            transform-origin: left center;
    -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
    transition: -webkit-transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
    transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
    transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1), -webkit-transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
    -webkit-transition-delay: inherit;
            transition-delay: inherit;
  }
  .course-store #header-nav .course-nav-list > li:last-child:after {
    content: none;
  }
  .course-store #header-nav .course-nav-list > li > a,
  .course-store #header-nav .course-mega-menu__trigger {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: transparent;
    border: 0;
    color: #0b1426;
    display: -ms-grid;
    display: grid;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 600;
    gap: 0 14px;
    -ms-grid-columns: 26px 14px 1fr 14px auto;
    grid-template-columns: 26px 1fr auto;
    letter-spacing: 0.5px;
    line-height: 1.2;
    padding: 20px 2px;
    text-align: left;
    text-transform: uppercase;
    width: 100%;
  }
  .course-store #header-nav .course-nav-list > li > a:before,
  .course-store #header-nav .course-mega-menu__trigger:before {
    color: #426a73;
    content: counter(course-nav-item, decimal-leading-zero);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1;
  }
  .course-store #header-nav .course-mega-menu__trigger svg {
    -webkit-transition: -webkit-transform 0.34s cubic-bezier(0.34, 1.4, 0.5, 1);
    transition: -webkit-transform 0.34s cubic-bezier(0.34, 1.4, 0.5, 1);
    transition: transform 0.34s cubic-bezier(0.34, 1.4, 0.5, 1);
    transition: transform 0.34s cubic-bezier(0.34, 1.4, 0.5, 1), -webkit-transform 0.34s cubic-bezier(0.34, 1.4, 0.5, 1);
  }
  .course-store #header-nav .course-mega-menu.is-open .course-mega-menu__trigger svg {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .course-store.nav-open #header-nav {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .course-store.nav-open #header-nav .course-nav-list > li {
    opacity: 1;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .course-store.nav-open #header-nav .course-nav-list > li:after {
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
  }
  .course-store.nav-open #header-nav .course-nav-list > li:nth-child(1) {
    -webkit-transition-delay: 0.21s;
            transition-delay: 0.21s;
  }
  .course-store.nav-open #header-nav .course-nav-list > li:nth-child(2) {
    -webkit-transition-delay: 0.26s;
            transition-delay: 0.26s;
  }
  .course-store.nav-open #header-nav .course-nav-list > li:nth-child(3) {
    -webkit-transition-delay: 0.31s;
            transition-delay: 0.31s;
  }
  .course-store.nav-open #header-nav .course-nav-list > li:nth-child(4) {
    -webkit-transition-delay: 0.36s;
            transition-delay: 0.36s;
  }
  .course-store.nav-open #header-nav .course-nav-list > li:nth-child(5) {
    -webkit-transition-delay: 0.41s;
            transition-delay: 0.41s;
  }
  .course-store.nav-open #header-nav .course-nav-list > li:nth-child(6) {
    -webkit-transition-delay: 0.46s;
            transition-delay: 0.46s;
  }
}
@media screen and (max-width: 959px) and (prefers-reduced-motion: reduce) {
  .course-store #header-nav,
  .course-store #header-nav .course-nav-list > li,
  .course-store #header-nav .course-nav-list > li:after,
  .course-store #header-nav .course-mega-menu__trigger svg,
  .course-mega-menu__panel,
  .course-mega-menu__subject:after,
  .course-mega-menu__subject > ul,
  .course-mega-menu__subject > ul a,
  .course-mega-menu__subject-toggle svg {
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-transition-delay: 0s !important;
            transition-delay: 0s !important;
  }
  .course-store.nav-open #header-nav .course-nav-list > li:after,
  .course-mega-menu.is-open .course-mega-menu__subject:after {
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@media screen and (max-width: 959px) {
  .course-store .toggle-nav {
    display: block;
  }
  .course-logo__copy {
    display: none;
  }
  .course-action.toggle-search {
    display: none;
  }
  .course-mega-menu__panel {
    background: rgba(255, 255, 255, 0.62);
    border-radius: 20px;
    display: block;
    height: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, margin 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, margin 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    visibility: hidden;
  }
  .course-mega-menu.is-open .course-mega-menu__panel {
    height: auto;
    margin: 4px 0 18px;
    opacity: 1;
    visibility: visible;
  }
  .course-mega-menu__inner {
    display: block;
    padding: 16px;
  }
  .course-mega-menu__intro {
    border-radius: 17px;
    padding: 22px;
  }
  .course-mega-menu__intro h2 {
    font-size: 24px;
  }
  .course-mega-menu__intro p {
    margin-bottom: 20px;
  }
  .course-mega-menu__subjects {
    display: block;
    padding: 4px 2px;
  }
  .course-mega-menu__subject {
    border-bottom: 0;
    padding: 0;
    position: relative;
  }
  .course-mega-menu__subject:after {
    background: rgba(11, 20, 38, 0.1);
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    right: 0;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
            transform-origin: left center;
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
    transition: -webkit-transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
    transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
    transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1), -webkit-transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  }
  .course-mega-menu__subject:last-child:after {
    content: none;
  }
  .course-mega-menu.is-open .course-mega-menu__subject:after {
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
  }
  .course-mega-menu.is-open .course-mega-menu__subject:nth-child(1):after {
    -webkit-transition-delay: 0.17s;
            transition-delay: 0.17s;
  }
  .course-mega-menu.is-open .course-mega-menu__subject:nth-child(2):after {
    -webkit-transition-delay: 0.22s;
            transition-delay: 0.22s;
  }
  .course-mega-menu.is-open .course-mega-menu__subject:nth-child(3):after {
    -webkit-transition-delay: 0.27s;
            transition-delay: 0.27s;
  }
  .course-mega-menu.is-open .course-mega-menu__subject:nth-child(4):after {
    -webkit-transition-delay: 0.32s;
            transition-delay: 0.32s;
  }
  .course-mega-menu.is-open .course-mega-menu__subject:nth-child(5):after {
    -webkit-transition-delay: 0.37s;
            transition-delay: 0.37s;
  }
  .course-mega-menu.is-open .course-mega-menu__subject:nth-child(6):after {
    -webkit-transition-delay: 0.42s;
            transition-delay: 0.42s;
  }
  .course-mega-menu.is-open .course-mega-menu__subject:nth-child(7):after {
    -webkit-transition-delay: 0.47s;
            transition-delay: 0.47s;
  }
  .course-mega-menu.is-open .course-mega-menu__subject:nth-child(8):after {
    -webkit-transition-delay: 0.52s;
            transition-delay: 0.52s;
  }
  .course-mega-menu__subject-heading {
    display: block;
    position: relative;
  }
  .course-mega-menu__icon {
    border-radius: 10px;
    height: 34px;
    width: 34px;
  }
  .course-mega-menu__icon svg {
    height: 16px;
    width: 16px;
  }
  .course-store #header-nav .course-mega-menu__subject-heading > a {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 12px;
    display: -ms-grid;
    display: grid;
    gap: 0 11px;
    -ms-grid-columns: 34px 11px 1fr;
    grid-template-columns: 34px 1fr;
    padding: 14px 46px 14px 2px;
  }
  .course-store #header-nav .course-mega-menu__subject-heading > a > span:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3px;
    min-width: 0;
  }
  .course-store #header-nav .course-mega-menu__subject-heading > a strong {
    font-size: 15.5px;
    line-height: 1.25;
  }
  .course-store #header-nav .course-mega-menu__subject-heading > a small {
    color: #8794a5;
    font-size: 12px;
    margin-top: 0;
  }
  .course-mega-menu__subject-toggle {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 36px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 36px;
  }
  .course-mega-menu__subject-toggle svg {
    -webkit-transition: -webkit-transform 0.34s cubic-bezier(0.34, 1.4, 0.5, 1);
    transition: -webkit-transform 0.34s cubic-bezier(0.34, 1.4, 0.5, 1);
    transition: transform 0.34s cubic-bezier(0.34, 1.4, 0.5, 1);
    transition: transform 0.34s cubic-bezier(0.34, 1.4, 0.5, 1), -webkit-transform 0.34s cubic-bezier(0.34, 1.4, 0.5, 1);
  }
  .course-mega-menu__subject.is-open .course-mega-menu__subject-toggle svg {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .course-store #header-nav .course-mega-menu__subject > ul {
    border-top: 0;
    display: block;
    height: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 0 0 45px;
    -webkit-transition: height 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.26s ease, padding 0.34s cubic-bezier(0.22, 1, 0.36, 1);
    transition: height 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.26s ease, padding 0.34s cubic-bezier(0.22, 1, 0.36, 1);
    visibility: hidden;
  }
  .course-store #header-nav .course-mega-menu__subject.is-open > ul {
    height: auto;
    opacity: 1;
    padding: 2px 0 14px 45px;
    visibility: visible;
  }
  .course-store #header-nav .course-mega-menu__subject > ul li + li {
    border-top: 1px solid rgba(11, 20, 38, 0.06);
  }
  .course-store #header-nav .course-mega-menu__subject > ul a {
    border-radius: 9px;
    gap: 14px;
    padding: 11px 10px 11px 2px;
    -webkit-transition: color 0.18s ease, background-color 0.18s ease, padding-left 0.18s ease;
    transition: color 0.18s ease, background-color 0.18s ease, padding-left 0.18s ease;
  }
  .course-store #header-nav .course-mega-menu__subject > ul a:hover, .course-store #header-nav .course-mega-menu__subject > ul a:focus-visible {
    background: rgba(66, 106, 115, 0.07);
    padding-left: 10px;
  }
}
@media screen and (max-width: 639px) {
  .course-hero {
    min-height: 650px;
  }
  .course-catalogue-search {
    gap: 6px;
    padding: 6px;
  }
  .course-catalogue-search input[type=search] {
    font-size: 16px;
    height: 46px;
    padding: 0 4px;
  }
  .course-catalogue-search button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 46px;
            flex: 0 0 46px;
    height: 46px;
    padding: 0;
    width: 46px;
  }
  .course-catalogue-search .course-catalogue-search__submit-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .course-catalogue-search__submit-label {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }
  .course-store .course-catalogue-results .woocommerce-pagination .course-pagination--full {
    display: none;
  }
  .course-store .course-catalogue-results .woocommerce-pagination .course-pagination--compact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .course-store .course-catalogue-results .woocommerce-pagination .course-pagination--compact ul.page-numbers {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 6px;
    margin: 0;
  }
  .course-store .course-catalogue-results .woocommerce-pagination .course-pagination--compact ul.page-numbers li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
  }
  .course-store .course-catalogue-results .woocommerce-pagination .course-pagination--compact ul.page-numbers li > a.page-numbers,
  .course-store .course-catalogue-results .woocommerce-pagination .course-pagination--compact ul.page-numbers li > span.page-numbers {
    font-size: 13px;
  }
  .course-store .course-catalogue-results .woocommerce-pagination .course-pagination--compact ul.page-numbers li > span.dots {
    min-width: 16px;
  }
  .course-hero__proof {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .course-cover--large,
  .course-product-image--large {
    height: 390px;
  }
  .course-visual__note {
    right: 12px;
  }
  .course-facts {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .course-store.single-product div.product div.summary h1.product_title {
    font-size: 34px;
  }
  .course-purchase .course-purchase__top {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .course-detail-nav {
    top: 0;
  }
}
.course-store.single-product .course-product-page {
  margin: 0;
  width: 100%;
}

.course-product-page__hero {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 32px;
  -webkit-box-shadow: 0 28px 80px rgba(11, 20, 38, 0.14);
          box-shadow: 0 28px 80px rgba(11, 20, 38, 0.14);
  display: -ms-grid;
  display: grid;
  margin: 0 auto 64px;
  max-width: 1440px;
  overflow: hidden;
  width: calc(100% - 40px);
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .course-product-page__hero {
    -ms-grid-columns: minmax(0, 38fr) minmax(0, 62fr);
    grid-template-columns: minmax(0, 38fr) minmax(0, 62fr);
  }
}

.course-product-page__media {
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  background: transparent;
  min-width: 0;
  padding: 18px 0 18px 18px;
}
.course-product-page__media .course-product-image--large,
.course-product-page__media .course-cover--large {
  border-radius: 24px;
  -webkit-box-shadow: 0 24px 55px rgba(11, 20, 38, 0.16);
          box-shadow: 0 24px 55px rgba(11, 20, 38, 0.16);
  height: 100%;
  margin: 0;
  max-height: 620px;
  min-height: 380px;
  overflow: hidden;
  width: 100%;
}
.course-product-page__media .course-product-image__asset {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}

.course-product-page__summary {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 44px 48px;
}
@media screen and (min-width: 1100px) {
  .course-product-page__summary {
    padding: 50px 58px;
  }
}
.course-product-page__summary h1.product_title {
  font-size: clamp(34px, 3.1vw, 48px);
  line-height: 1.02;
  margin: 0 0 18px;
}

.course-store.single-product .course-product-page__summary h1.product_title {
  font-size: clamp(36px, 3.4vw, 48px);
  line-height: 1;
  margin: 0 0 22px;
}

.course-product-page__category,
.course-product-page__eyebrow {
  color: #426a73;
  display: block;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.course-product-page__subtitle {
  color: #53636f;
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 24px;
}
.course-product-page__subtitle p {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

.course-product-page__facts {
  border-bottom: 1px solid #d8e0e3;
  border-top: 1px solid #d8e0e3;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[2];
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 28px;
}
.course-product-page__facts > div {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
  min-height: 78px;
  padding: 15px 13px;
}
.course-product-page__facts > div:nth-child(odd) {
  border-right: 1px solid #d8e0e3;
}
.course-product-page__facts > div:nth-child(-n+2) {
  border-bottom: 1px solid #d8e0e3;
}
.course-product-page__facts > div:last-child {
  border-right: 0;
}
.course-product-page__facts > div:last-child:nth-child(odd) {
  grid-column: 1/-1;
}
.course-product-page__facts svg {
  color: #426a73;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 23px;
          flex: 0 0 23px;
  height: 23px;
  width: 23px;
}
.course-product-page__facts span {
  color: #0b1426;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
}
.course-product-page__facts small {
  color: #788692;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.09em;
  margin-bottom: 3px;
  text-transform: uppercase;
}
@media screen and (min-width: 1100px) {
  .course-product-page__facts {
    grid-auto-columns: minmax(0, 1fr);
    grid-auto-flow: column;
    -ms-grid-columns: none;
    grid-template-columns: none;
  }
  .course-product-page__facts > div {
    border-bottom: 0 !important;
    border-right: 1px solid #d8e0e3;
    padding-left: 9px;
    padding-right: 9px;
  }
  .course-product-page__facts > div:last-child {
    border-right: 0;
  }
  .course-product-page__facts > div:last-child:nth-child(odd) {
    grid-column: auto;
  }
  .course-product-page__facts span {
    font-size: 14px;
  }
}

.course-product-page__purchase {
  background: rgba(238, 243, 247, 0.86);
  border: 1px solid rgba(11, 20, 38, 0.09);
  border-radius: 24px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 20px;
}
.course-product-page__purchase .course-product-page__purchase-top {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -ms-grid;
  display: grid;
  gap: 20px;
      grid-template-areas: "intro" "price" "actions";
}
@media only screen and (min-width: 768px) {
  .course-product-page__purchase .course-product-page__purchase-top {
        grid-template-areas: "intro price" "actions actions";
    -ms-grid-columns: minmax(165px, 0.72fr) minmax(220px, 1fr);
    grid-template-columns: minmax(165px, 0.72fr) minmax(220px, 1fr);
  }
}
@media screen and (min-width: 1100px) {
  .course-product-page__purchase .course-product-page__purchase-top {
        grid-template-areas: "intro price actions";
    -ms-grid-columns: minmax(165px, 0.72fr) minmax(220px, 1fr) minmax(190px, 220px);
    grid-template-columns: minmax(165px, 0.72fr) minmax(220px, 1fr) minmax(190px, 220px);
  }
}
.course-product-page__purchase .course-product-page__price-intro {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-area: intro;
}
.course-product-page__purchase .course-product-page__price-intro small {
  color: #426a73;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 7px;
  text-transform: uppercase;
}
.course-product-page__purchase .course-product-page__price-intro > span {
  color: #0b1426;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.18;
}
.course-product-page__purchase .course-product-page__price {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: price;
  min-width: 0;
}
.course-product-page__purchase .course-product-page__purchase-actions {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9px;
  grid-area: actions;
}
@media only screen and (min-width: 768px){
  .course-product-page__purchase .course-product-page__price-intro {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .course-product-page__purchase .course-product-page__price {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .course-product-page__purchase .course-product-page__purchase-actions {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
}
@media screen and (min-width: 1100px){
  .course-product-page__purchase .course-product-page__price-intro {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .course-product-page__purchase .course-product-page__price {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .course-product-page__purchase .course-product-page__purchase-actions {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
  }
}
@media only screen and (min-width: 768px) {
  .course-product-page__purchase .course-product-page__purchase-actions {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .course-product-page__purchase .course-product-page__purchase-actions .cart {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (min-width: 1100px) {
  .course-product-page__purchase .course-product-page__purchase-actions {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.course-product-page__purchase p.price {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  color: #0b1426;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 44px;
  font-weight: 750;
  gap: 4px 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  margin: 0;
  text-align: center;
}
.course-product-page__purchase p.price del {
  color: #798690;
  font-size: 18px;
  font-weight: 550;
}
.course-product-page__purchase p.price ins {
  color: #0b1426;
  text-decoration: none;
}
.course-product-page__purchase p.price .woocommerce-price-suffix {
  color: #667580;
  display: block;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin-top: 3px;
  text-align: center;
  text-transform: uppercase;
}
.course-product-page__purchase .cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 !important;
}
.course-product-page__purchase .cart .qty-box {
  display: none !important;
}
.course-product-page__purchase .cart .single_add_to_cart_button {
  background: linear-gradient(135deg, #0b1426, #294653);
  border-radius: 999px;
  -webkit-box-shadow: 0 14px 28px rgba(11, 20, 38, 0.2);
          box-shadow: 0 14px 28px rgba(11, 20, 38, 0.2);
  color: #fff !important;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  min-height: 50px;
  padding: 13px 24px;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.course-product-page__purchase .cart .single_add_to_cart_button:hover, .course-product-page__purchase .cart .single_add_to_cart_button:focus {
  background: linear-gradient(135deg, #294653, #0b1426);
  -webkit-box-shadow: 0 18px 34px rgba(11, 20, 38, 0.26);
          box-shadow: 0 18px 34px rgba(11, 20, 38, 0.26);
  -webkit-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
          transform: translateY(-1px);
}
.course-product-page__purchase > ul {
  border-top: 1px solid rgba(11, 20, 38, 0.09);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 18px;
  list-style: none;
  margin: 18px 0 0;
  padding: 15px 0 0;
}
.course-product-page__purchase > ul li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #65747f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  font-weight: 650;
  gap: 6px;
}
.course-product-page__purchase > ul svg {
  color: #426a73;
  height: 14px;
  width: 14px;
}

.course-product-page__saving {
  background: #fff;
  border: 1px solid rgba(66, 106, 115, 0.16);
  border-radius: 999px;
  color: #426a73;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  gap: 5px;
  margin: 0;
  padding: 8px 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.course-product-page__saving svg {
  height: 15px;
  width: 15px;
}
.course-product-page__saving .woocommerce-Price-amount {
  font-weight: 750;
}

.course-product-page__content {
  margin: 0 auto 72px;
  max-width: 1440px;
  width: calc(100% - 40px);
}

.course-product-tabs {
  background: #fff;
  border: 1px solid #d8e0e3;
  border-radius: 28px;
  -webkit-box-shadow: 0 22px 60px rgba(11, 20, 38, 0.08);
          box-shadow: 0 22px 60px rgba(11, 20, 38, 0.08);
  overflow: hidden;
  position: relative;
}
.course-product-tabs:before, .course-product-tabs:after {
  content: "";
  height: 77px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  width: 42px;
  z-index: 2;
}
.course-product-tabs:before {
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, #f7f9fa), to(rgba(247, 249, 250, 0)));
  background: linear-gradient(90deg, #f7f9fa 25%, rgba(247, 249, 250, 0));
  left: 0;
}
.course-product-tabs:after {
  background: -webkit-gradient(linear, right top, left top, color-stop(25%, #f7f9fa), to(rgba(247, 249, 250, 0)));
  background: linear-gradient(270deg, #f7f9fa 25%, rgba(247, 249, 250, 0));
  right: 0;
}
.course-product-tabs.has-tab-overflow-start:before, .course-product-tabs.has-tab-overflow-end:after {
  opacity: 1;
}

.course-product-tabs__mobile-nav,
.course-product-tabs__mobile-stepper {
  display: none;
}

.course-product-tabs__list {
  background: #f7f9fa;
  border-bottom: 1px solid #d8e0e3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  padding: 0 38px;
  position: relative;
}
.course-product-tabs__list:after {
  background: #426a73;
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  -webkit-transform: translateX(var(--course-tab-indicator-left, 38px));
      -ms-transform: translateX(var(--course-tab-indicator-left, 38px));
          transform: translateX(var(--course-tab-indicator-left, 38px));
  -webkit-transition: width 0.34s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  transition: width 0.34s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), width 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), width 0.34s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  width: var(--course-tab-indicator-width, 0);
}
.course-product-tabs__list button {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #5d6b76;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 15px;
  font-weight: 700;
  margin: 0 36px 0 0;
  min-height: 76px;
  padding: 0 3px;
}
.course-product-tabs__list button[aria-selected=true] {
  color: #0b1426;
}
.course-product-tabs__list button:focus:not(:focus-visible) {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0;
}
.course-product-tabs__list button:focus-visible {
  -webkit-box-shadow: inset 0 0 0 2px #426a73;
          box-shadow: inset 0 0 0 2px #426a73;
  outline: 0;
}

.course-product-tabs__panel {
  padding: 46px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .course-product-tabs__panel {
    padding: 68px;
  }
}
.course-product-tabs__panel[hidden] {
  display: none;
}
.course-product-tabs__panel.is-course-tab-entering {
  -webkit-animation: course-tab-panel-in 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
          animation: course-tab-panel-in 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.course-product-tabs__panel h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
  margin: 0 0 22px;
}

@-webkit-keyframes course-tab-panel-in {
  from {
    opacity: 0;
    -webkit-transform: translateX(var(--course-tab-offset, 20px));
            transform: translateX(var(--course-tab-offset, 20px));
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes course-tab-panel-in {
  from {
    opacity: 0;
    -webkit-transform: translateX(var(--course-tab-offset, 20px));
            transform: translateX(var(--course-tab-offset, 20px));
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.course-product-page__overview {
  display: -ms-grid;
  display: grid;
  gap: 36px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .course-product-page__overview {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-grid-columns: minmax(0, 1fr) 330px;
    grid-template-columns: minmax(0, 1fr) 330px;
  }
}

.course-product-page__intro {
  border-left: 3px solid #426a73;
  margin-bottom: 26px;
  padding-left: 20px;
}
.course-product-page__intro p {
  color: #0b1426;
  font-size: 17.5px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.course-product-page__intro p:last-child {
  margin-bottom: 0;
}

.course-product-page__prose-label {
  color: #0b1426;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
  text-transform: none;
}

.course-product-page__buyer-guide {
  background: #f5f8f9;
  border: 1px solid rgba(66, 106, 115, 0.14);
  border-radius: 18px;
  margin: 28px 0;
  padding: 24px;
}
.course-product-page__buyer-guide > h3 {
  color: #0b1426;
  font-size: 25px;
  line-height: 1.25;
  margin: 7px 0 20px;
}
.course-product-page__buyer-guide > div {
  border-top: 1px solid rgba(11, 20, 38, 0.1);
  padding: 17px 0 0;
}
.course-product-page__buyer-guide > div + div {
  margin-top: 17px;
}
.course-product-page__buyer-guide h4 {
  color: #0b1426;
  font-size: 17px;
  margin: 0 0 7px;
}
.course-product-page__buyer-guide p {
  color: #4f5f6b;
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}

.course-product-page__review-policy {
  background: rgba(66, 106, 115, 0.08);
  border-left: 3px solid #426a73;
  color: #4f5f6b;
  margin: 0 0 28px;
  padding: 14px 17px;
}

.course-product-tabs__panel .woocommerce-Reviews .woocommerce-Reviews-title {
  display: none;
}
.course-product-tabs__panel .woocommerce-Reviews .woocommerce-noreviews,
.course-product-tabs__panel .woocommerce-Reviews .woocommerce-verification-required,
.course-product-tabs__panel .woocommerce-Reviews .must-log-in {
  color: #4f5f6b;
}
.course-product-tabs__panel .woocommerce-Reviews #review_form_wrapper {
  border-top: 1px solid rgba(11, 20, 38, 0.12);
  margin-top: 28px;
  padding-top: 28px;
}
.course-product-tabs__panel .woocommerce-Reviews #reply-title {
  color: #0b1426;
  display: block;
  font-size: 24px;
  margin-bottom: 20px;
}
.course-product-tabs__panel .woocommerce-Reviews #commentform {
  display: -ms-grid;
  display: grid;
  gap: 18px;
}
.course-product-tabs__panel .woocommerce-Reviews label {
  color: #0b1426;
  display: block;
  font-weight: 600;
  margin-bottom: 7px;
}
.course-product-tabs__panel .woocommerce-Reviews textarea,
.course-product-tabs__panel .woocommerce-Reviews input[type=text],
.course-product-tabs__panel .woocommerce-Reviews input[type=email],
.course-product-tabs__panel .woocommerce-Reviews select {
  background: #fff;
  border: 1px solid rgba(11, 20, 38, 0.2);
  border-radius: 8px;
  padding: 12px;
  width: 100%;
}
.course-product-tabs__panel .woocommerce-Reviews .form-submit {
  margin: 0;
}

.course-category-guide {
  background: #fff;
  padding: 42px 20px 78px;
}
.course-category-guide__inner {
  background: #f5f8f9;
  border-radius: 22px;
  margin: 0 auto;
  max-width: 1120px;
  padding: 30px;
}
@media only screen and (min-width: 768px) {
  .course-category-guide__inner {
    padding: 44px 52px;
  }
}
.course-category-guide h2 {
  color: #0b1426;
  font-size: 32px;
  margin: 8px 0 22px;
}
.course-category-guide__copy {
  color: #4f5f6b;
  font-size: 17px;
  line-height: 1.75;
}
.course-category-guide__copy p:last-child {
  margin-bottom: 0;
}
.course-category-guide__copy ul {
  -webkit-columns: 1;
     -moz-columns: 1;
          columns: 1;
  margin: 18px 0;
  padding-left: 20px;
}
@media only screen and (min-width: 768px) {
  .course-category-guide__copy ul {
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
  }
}

.course-product-page__prose {
  color: #4f5f6b;
  font-size: 17px;
  line-height: 1.82;
  -webkit-transition: height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: height;
}
.course-product-page__prose p,
.course-product-page__prose ul,
.course-product-page__prose ol {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  margin-bottom: 18px;
}
.course-product-page__prose h2,
.course-product-page__prose h3,
.course-product-page__prose h4 {
  color: #0b1426;
  font-size: 25px;
  line-height: 1.25;
  margin: 28px 0 12px;
}
.course-product-page__prose p > strong:first-child {
  color: #0b1426;
  display: block;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 21px;
  line-height: 1.3;
  margin: 26px 0 8px;
}
.course-product-page__prose br + strong {
  margin-top: 24px;
}

.course-product-page__prose-wrap {
  position: relative;
}
.course-product-page__prose-wrap:not([data-course-clamp=expanded]) .course-product-page__prose {
  height: 420px;
  mask-image: linear-gradient(to bottom, #000 260px, transparent 100%);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000 260px, transparent 100%);
}

.course-product-page__read-more {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border: 1px solid #d8e0e3;
  border-radius: 999px;
  color: #426a73;
  cursor: pointer;
  display: none;
  font-size: 15px;
  font-weight: 700;
  gap: 6px;
  margin-top: 14px;
  padding: 11px 21px;
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
}
.course-product-page__read-more:hover, .course-product-page__read-more:focus {
  background: #426a73;
  color: #fff;
}
[data-course-clamp] .course-product-page__read-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.course-product-page__mid-cta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #c8d7db;
  border-radius: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 42px;
  padding: 22px 26px;
}
.course-product-page__mid-cta p {
  color: #0b1426;
  font-size: 16px;
  font-weight: 650;
  margin: 4px 0 0;
}

.course-product-page__mid-cta-link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #426a73;
  border-radius: 999px;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 14px;
  font-weight: 750;
  gap: 8px;
  padding: 13px 24px;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.course-product-page__mid-cta-link svg {
  height: 16px;
  width: 16px;
}
.course-product-page__mid-cta-link:hover, .course-product-page__mid-cta-link:focus {
  background: #0b1426;
}

.course-product-page__aside {
  background: #c8d7db;
  border: 1px solid rgba(66, 106, 115, 0.1);
  border-radius: 22px;
  padding: 30px;
}
.course-product-page__aside > span {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #426a73;
  border-radius: 50%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 38px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 18px;
  width: 38px;
}
.course-product-page__aside > span svg {
  height: 18px;
  width: 18px;
}
.course-product-page__aside h3 {
  font-size: 22px;
  margin: 0 0 10px;
}
.course-product-page__aside p {
  color: #53636f;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* Sidebar column holding the "Who this is for" aside + XO promo card. */
.course-product-page__sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

/* XO Student Discount Card — static promo, dark card, white logo. No button.
   A large, cropped copy of the logo sits behind the content as a watermark,
   bleeding out of the bottom-right corner (debit-card style). */
.course-xo-card {
  background: linear-gradient(155deg, #12213b 0%, #0b1426 45%, #1c3b41 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  -webkit-box-shadow: 0 18px 40px rgba(11, 20, 38, 0.18);
          box-shadow: 0 18px 40px rgba(11, 20, 38, 0.18);
  overflow: hidden;
  padding: 30px;
  position: relative;
  text-align: center;
}
.course-xo-card::before {
  background-image: var(--xo-mark, none);
  background-position: right -60px bottom 0px;
  background-repeat: no-repeat;
  background-size: 150%;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0.07;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.course-xo-card__logo {
  display: block;
  height: auto;
  margin: 0 auto 18px;
  max-width: 150px !important;
  position: relative;
  width: 100% !important;
  z-index: 1;
}

.course-xo-card .course-xo-card__title {
  color: #fff;
  font-size: 21px;
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
  display: none;
}

.course-xo-card__text {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.course-product-page__outcomes {
  border-top: 1px solid #d8e0e3;
  margin-top: 42px;
  padding-top: 42px;
}
.course-product-page__outcomes > p {
  color: #53636f;
  font-size: 16px;
  line-height: 1.7;
  margin: -8px 0 24px;
  max-width: 760px;
}
.course-product-page__outcomes > ul {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 38px;
     -moz-column-gap: 38px;
          column-gap: 38px;
  -ms-grid-columns: minmax(0, 1fr) 38px minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}
.course-product-page__outcomes > ul li {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 1px solid rgba(11, 20, 38, 0.1);
  color: #0b1426;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  gap: 13px;
  line-height: 1.62;
  padding: 15px 0;
}
.course-product-page__outcomes > ul svg {
  background: #c8d7db;
  border-radius: 8px;
  color: #426a73;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  height: 30px;
  margin-top: -2px;
  padding: 7px;
  width: 30px;
}

html.course-toast-js .course-store .woocommerce-message:not([data-course-toast]):not(.cart-empty),
html.course-toast-js .course-store .woocommerce-error:not([data-course-toast]) {
  left: -9999px !important;
  margin: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: fixed !important;
  top: -9999px !important;
}

.course-store .course-toast-host {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: min(420px, 100vw - 48px);
  position: fixed;
  right: 24px;
  top: 112px;
  width: 100%;
  z-index: 220;
}
.course-store .course-toast-host .woocommerce-message,
.course-store .course-toast-host .woocommerce-error {
  -webkit-animation: course-toast-in 0.28s cubic-bezier(0.22, 1, 0.36, 1);
          animation: course-toast-in 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(11, 20, 38, 0.11);
  border-radius: 14px;
  -webkit-box-shadow: 0 16px 44px rgba(11, 20, 38, 0.16), 0 2px 7px rgba(11, 20, 38, 0.06);
          box-shadow: 0 16px 44px rgba(11, 20, 38, 0.16), 0 2px 7px rgba(11, 20, 38, 0.06);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #0b1426;
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
  min-height: 0;
  padding: 17px 48px 17px 58px;
  position: relative;
}
.course-store .course-toast-host .woocommerce-message:before,
.course-store .course-toast-host .woocommerce-error:before {
  display: none;
}
.course-store .course-toast-host .woocommerce-message .button,
.course-store .course-toast-host .woocommerce-error .button {
  background: #0b1426;
  border-radius: 999px;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  float: none;
  font-size: 12px;
  font-weight: 750;
  margin: 8px 0 0;
  padding: 7px 12px;
}

.course-toast__icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #c8d7db;
  border-radius: 12px;
  color: #426a73;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-weight: 800;
  height: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 15px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
}

.course-toast__close {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #eef3f7;
  border: 0;
  border-radius: 50%;
  color: #0b1426;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 17px;
  height: 28px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 28px;
}

@-webkit-keyframes course-toast-in {
  from {
    opacity: 0;
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes course-toast-in {
  from {
    opacity: 0;
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .course-store .course-toast-host .woocommerce-message,
  .course-store .course-toast-host .woocommerce-error {
    -webkit-animation: none;
            animation: none;
  }
}
.course-product-page__panel-heading {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 24px;
}
.course-product-page__panel-heading h2 {
  margin: 0;
}
.course-product-page__panel-heading > span {
  background: #c8d7db;
  border-radius: 999px;
  color: #0b1426;
  font-size: 10px;
  font-weight: 700;
  padding: 7px 10px;
}

.course-product-page__modules {
  border: 1px solid #d8e0e3;
  border-radius: 20px;
  overflow: hidden;
}
.course-product-page__modules details {
  border-bottom: 1px solid #d8e0e3;
  overflow: hidden;
}
.course-product-page__modules details:last-child {
  border-bottom: 0;
}
.course-product-page__modules details[open] {
  background: #f8fafb;
}
.course-product-page__modules summary {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0b1426;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  list-style: none;
  padding: 24px 58px 24px 24px;
  position: relative;
}
.course-product-page__modules summary:focus {
  outline: 0;
}
.course-product-page__modules summary:focus-visible {
  -webkit-box-shadow: inset 0 0 0 2px rgba(66, 106, 115, 0.58);
          box-shadow: inset 0 0 0 2px rgba(66, 106, 115, 0.58);
}
.course-product-page__modules summary:after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  position: absolute;
  right: 24px;
}
.course-product-page__modules summary span {
  color: #426a73;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
}
.course-product-page__modules summary strong {
  font-family: "Radio Canada Big", sans-serif;
  font-size: 17px;
  font-weight: 650;
}
.course-product-page__modules details[open] summary:after {
  content: "−";
}
.course-product-page__modules summary::-webkit-details-marker {
  display: none;
}
.course-product-page__modules .course-product-page__module {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #d8e0e3;
  color: #0b1426;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  padding: 24px;
}
.course-product-page__modules .course-product-page__module:last-child {
  border-bottom: 0;
}
.course-product-page__modules .course-product-page__module span {
  color: #426a73;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
}
.course-product-page__modules .course-product-page__module strong {
  font-family: "Radio Canada Big", sans-serif;
  font-size: 17px;
  font-weight: 650;
}
.course-product-page__modules p {
  color: #5c6c78;
  font-size: 16px;
  line-height: 1.75;
  margin: -2px 58px 26px 60px;
}

.course-product-page__faq summary {
  padding-left: 24px;
}

.course-product-page__certificate {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #c8d7db;
  border: 1px solid rgba(66, 106, 115, 0.1);
  border-radius: 18px;
  display: -ms-grid;
  display: grid;
  gap: 26px;
  padding: 34px;
}
@media only screen and (min-width: 768px) {
  .course-product-page__certificate {
    -ms-grid-columns: 90px minmax(0, 1fr);
    grid-template-columns: 90px minmax(0, 1fr);
  }
}
.course-product-page__certificate h2 {
  margin-bottom: 14px;
}
.course-product-page__certificate p {
  color: #53636f;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 10px;
}

.course-product-page__certificate-mark {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #426a73;
  border-radius: 50%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 76px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 76px;
}
.course-product-page__certificate-mark svg {
  height: 34px;
  width: 34px;
}

.course-store.single-product .course-product-page > .related {
  background: #f5f8f9;
  border-radius: 22px;
  margin: 0 auto 72px;
  max-width: 1440px;
  padding: 48px;
  width: calc(100% - 40px);
}
.course-store.single-product .course-product-page > .related:before {
  display: none;
}
.course-store.single-product .course-product-page > .related > h2 {
  border: 0;
  font-size: 40px;
  margin-bottom: 24px;
  padding: 0;
}
.course-store.single-product .course-product-page > .related ul.products {
  gap: 18px;
}
.course-store.single-product .course-product-page > .related .course-card__visual .course-product-image,
.course-store.single-product .course-product-page > .related .course-card__visual .course-cover {
  height: auto;
}

.course-bundle-offer {
  margin: 0 auto 28px;
  max-width: 1440px;
  width: calc(100% - 40px);
}
.course-bundle-offer__inner {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background: linear-gradient(120deg, rgba(66, 106, 115, 0.1) 0%, rgba(200, 215, 219, 0.28) 100%);
  border: 1px solid rgba(66, 106, 115, 0.2);
  border-radius: 22px;
  display: -ms-grid;
  display: grid;
  gap: 26px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  padding: 26px;
}
@media only screen and (min-width: 768px) {
  .course-bundle-offer__inner {
    -ms-grid-columns: minmax(0, 300px) 34px minmax(0, 1fr);
    grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
    gap: 34px;
    padding: 32px;
  }
}
.course-bundle-offer__media {
  border-radius: 16px;
  overflow: hidden;
}
.course-bundle-offer__media .course-product-image,
.course-bundle-offer__media .course-cover {
  border-radius: inherit;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .course-bundle-offer__media .course-product-image,
  .course-bundle-offer__media .course-cover {
    aspect-ratio: auto;
    height: 100%;
  }
}
.course-bundle-offer__eyebrow {
  color: #426a73;
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.course-bundle-offer__title {
  color: #0b1426;
  font-size: 26px;
  line-height: 1.24;
  margin: 8px 0 18px;
}
@media only screen and (min-width: 768px) {
  .course-bundle-offer__title {
    font-size: 32px;
  }
}
.course-bundle-offer__price {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 14px;
}
.course-bundle-offer__now, .course-bundle-offer__now .woocommerce-Price-amount {
  color: #0b1426;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .course-bundle-offer__now, .course-bundle-offer__now .woocommerce-Price-amount {
    font-size: 46px;
  }
}
.course-bundle-offer__was, .course-bundle-offer__was .woocommerce-Price-amount {
  color: #506074;
  font-size: 20px;
  font-weight: 600;
  text-decoration: line-through;
}
.course-bundle-offer__badge {
  background: #426a73;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 6px 13px;
  text-transform: uppercase;
}
.course-bundle-offer__context {
  color: #506074;
  font-size: 14px;
  margin: 12px 0 0;
}
.course-bundle-offer__context .woocommerce-Price-amount {
  color: #506074;
  font-weight: 700;
}
.course-bundle-offer__includes {
  margin-top: 16px;
}
.course-bundle-offer__includes ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
  list-style: none;
  margin: 9px 0 0;
  padding: 0;
}
.course-bundle-offer__includes li {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(11, 20, 38, 0.09);
  border-radius: 999px;
  color: #0b1426;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.3;
}
.course-bundle-offer__includes a,
.course-bundle-offer__includes span {
  color: inherit;
  display: block;
  padding: 6px 12px;
  text-decoration: none;
}
.course-bundle-offer__includes li:has(a):hover,
.course-bundle-offer__includes li:focus-within {
  background: #fff;
  border-color: rgba(66, 106, 115, 0.35);
}
.course-bundle-offer__includes a:hover,
.course-bundle-offer__includes a:focus-visible {
  color: #426a73;
}
.course-bundle-offer__includes-more {
  background: none;
  border: 0;
  color: #426a73;
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 800;
  margin-top: 9px;
  padding: 4px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.course-bundle-offer__includes-more:hover, .course-bundle-offer__includes-more:focus-visible {
  color: #0b1426;
}
.course-bundle-offer__includes-label {
  color: #0b1426;
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.course-bundle-offer__cta {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #426a73;
  border-radius: 999px;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-weight: 700;
  gap: 10px;
  margin-top: 20px;
  padding: 13px 26px;
  -webkit-transition: background 0.25s ease, -webkit-transform 0.25s ease;
  transition: background 0.25s ease, -webkit-transform 0.25s ease;
  transition: background 0.25s ease, transform 0.25s ease;
  transition: background 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
.course-bundle-offer__cta:hover, .course-bundle-offer__cta:focus {
  background: #0b1426;
  color: #fff;
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}
.course-bundle-offer__cta svg {
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 18px;
}

.course-store.single-product .course-related ul.products.owl-loaded {
  display: block;
  position: relative;
}
.course-store.single-product .course-related ul.products.owl-loaded .owl-stage-outer {
  overflow: hidden;
}
.course-store.single-product .course-related ul.products.owl-loaded .owl-item li,
.course-store.single-product .course-related ul.products.owl-loaded .owl-item .list-item {
  opacity: 1;
}
.course-store.single-product .course-related ul.products.owl-loaded .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 26px;
  position: static;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .course-store.single-product .course-related ul.products.owl-loaded .owl-nav {
    margin-top: 0;
    position: absolute;
    right: 0;
    top: -75px;
  }
}
.course-store.single-product .course-related ul.products.owl-loaded .owl-nav .owl-prev,
.course-store.single-product .course-related ul.products.owl-loaded .owl-nav .owl-next {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border: 1px solid rgba(11, 20, 38, 0.12);
  border-radius: 50%;
  bottom: auto;
  color: #0b1426;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 46px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: auto;
  margin: 0;
  position: relative;
  right: auto;
  top: auto;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  -webkit-transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  width: 46px;
}
.course-store.single-product .course-related ul.products.owl-loaded .owl-nav .owl-prev:hover,
.course-store.single-product .course-related ul.products.owl-loaded .owl-nav .owl-next:hover {
  background: #426a73;
  border-color: #426a73;
  color: #fff;
}
.course-store.single-product .course-related ul.products.owl-loaded .owl-nav .owl-prev.disabled,
.course-store.single-product .course-related ul.products.owl-loaded .owl-nav .owl-next.disabled {
  opacity: 0.35;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .course-store.single-product .course-related ul.products.owl-loaded .owl-nav {
    display: contents;
  }
  .course-store.single-product .course-related ul.products.owl-loaded .owl-nav .owl-prev,
  .course-store.single-product .course-related ul.products.owl-loaded .owl-nav .owl-next {
    background: rgba(255, 255, 255, 0.94);
    -webkit-box-shadow: 0 6px 18px rgba(11, 20, 38, 0.16);
            box-shadow: 0 6px 18px rgba(11, 20, 38, 0.16);
    height: 40px;
    position: absolute;
    top: 96px;
    width: 40px;
    z-index: 3;
  }
  .course-store.single-product .course-related ul.products.owl-loaded .owl-nav .owl-prev {
    left: 6px;
  }
  .course-store.single-product .course-related ul.products.owl-loaded .owl-nav .owl-next {
    right: 6px;
  }
}
.course-store.single-product .course-related ul.products.owl-loaded .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 18px;
}
.course-store.single-product .course-related ul.products.owl-loaded .owl-dots .owl-dot {
  background: rgba(11, 20, 38, 0.18);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  height: 8px;
  padding: 0;
  -webkit-transition: background 0.25s ease, width 0.25s ease;
  transition: background 0.25s ease, width 0.25s ease;
  width: 8px;
}
.course-store.single-product .course-related ul.products.owl-loaded .owl-dots .owl-dot span {
  display: none;
}
.course-store.single-product .course-related ul.products.owl-loaded .owl-dots .owl-dot.active {
  background: #426a73;
  width: 22px;
  border-radius: 999px;
}

@media screen and (max-width: 959px) {
  .course-product-page__hero {
    margin-left: 20px;
    margin-right: 20px;
  }
  .course-product-page__media {
    padding: 14px 14px 0;
  }
  .course-product-page__media .course-product-image--large,
  .course-product-page__media .course-cover--large {
    aspect-ratio: 16/9;
    border-radius: 20px;
    height: auto;
    max-height: 430px;
    min-height: 0;
  }
}
@media screen and (max-width: 639px) {
  .course-store.single-product .woocommerce-breadcrumb {
    margin-left: 12px;
    margin-right: 12px;
    max-width: calc(100% - 24px);
    overflow: hidden;
    padding: 7px !important;
    width: calc(100% - 24px);
  }
  .course-store.single-product .woocommerce-breadcrumb > :not(.woocommerce-breadcrumb__mobile-back) {
    display: none !important;
  }
  .course-store.single-product .woocommerce-breadcrumb .woocommerce-breadcrumb__mobile-back {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #0b1426;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 13px;
    gap: 10px;
    min-width: 0;
    padding: 3px 8px 3px 3px;
    text-transform: none;
    width: 100%;
  }
  .course-store.single-product .woocommerce-breadcrumb .woocommerce-breadcrumb__mobile-back:before {
    content: none !important;
  }
  .course-store.single-product .woocommerce-breadcrumb .woocommerce-breadcrumb__mobile-back > span:first-child {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: rgba(66, 106, 115, 0.12);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 36px;
            flex: 0 0 36px;
    font-size: 18px;
    height: 36px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .course-store.single-product .woocommerce-breadcrumb .woocommerce-breadcrumb__mobile-back > span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .course-product-page__hero {
    border-radius: 18px;
    margin-bottom: 32px;
    margin-left: 12px;
    margin-right: 12px;
    width: calc(100% - 24px);
  }
  .course-product-page__media .course-product-image--large,
  .course-product-page__media .course-cover--large {
    aspect-ratio: 16/9;
    height: auto;
    max-height: 235px;
    min-height: 0;
  }
  .course-product-page__media {
    padding: 10px 10px 0;
  }
  .course-product-page__summary {
    padding: 25px 20px 28px;
  }
  .course-product-page__facts > div {
    min-height: 72px;
    padding: 11px 8px;
  }
  .course-product-page__facts span {
    font-size: 12px;
  }
  .course-product-page__purchase .course-product-page__price p.price {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
  }
  .course-product-page__purchase .course-product-page__price p.price .woocommerce-price-suffix {
    text-align: left;
  }
  .course-product-page__content {
    margin-bottom: 44px;
    padding: 0 12px;
    width: calc(100% - 24px);
  }
  .course-product-tabs {
    border-radius: 16px;
  }
  .course-product-tabs:before, .course-product-tabs:after {
    display: none;
  }
  .course-product-tabs__list {
    display: none;
  }
  .course-product-tabs__mobile-nav {
    background: #f7f9fa;
    border-bottom: 1px solid #d8e0e3;
    display: block;
    padding: 16px;
    position: relative;
  }
  .course-product-tabs__mobile-nav label {
    color: #426a73;
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin: 0 0 7px;
    text-transform: uppercase;
  }
  .course-product-tabs__mobile-nav:after {
    border-bottom: 2px solid #0b1426;
    border-right: 2px solid #0b1426;
    content: "";
    height: 8px;
    pointer-events: none;
    position: absolute;
    right: 35px;
    top: 52px;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    width: 8px;
  }
  .course-product-tabs__select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background: #fff;
    border: 1px solid rgba(11, 20, 38, 0.14);
    border-radius: 12px;
    color: #0b1426;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 750;
    height: 50px;
    padding: 0 46px 0 15px;
    width: 100%;
  }
  .course-product-tabs__mobile-stepper {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    background: #f7f9fa;
    border-bottom: 1px solid #d8e0e3;
    display: -ms-grid;
    display: grid;
    gap: 9px;
    -ms-grid-columns: minmax(0, 1fr) 9px auto 9px minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    padding: 11px 16px 14px;
  }
  .course-product-tabs__step {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #fff;
    border: 1px solid rgba(11, 20, 38, 0.12);
    border-radius: 11px;
    color: #0b1426;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    min-height: 48px;
    padding: 7px 10px;
  }
  .course-product-tabs__step small,
  .course-product-tabs__step strong {
    display: block;
  }
  .course-product-tabs__step small {
    color: #71808b;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .course-product-tabs__step strong {
    font-size: 11px;
    line-height: 1.2;
    margin-top: 2px;
  }
  .course-product-tabs__step > span[aria-hidden=true] {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    font-size: 17px;
  }
  .course-product-tabs__step:disabled {
    opacity: 0.28;
  }
  .course-product-tabs__step--next {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right;
  }
  .course-product-tabs__position {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #71808b;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 10px;
    font-weight: 800;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    letter-spacing: 0.08em;
    min-width: 36px;
  }
  .course-product-tabs__panel {
    padding: 28px 20px;
  }
  .course-product-page__intro {
    border-left: 0;
    padding-left: 0;
  }
  .course-product-page__outcomes > ul {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .course-store .course-toast-host {
    left: 12px;
    max-width: calc(100vw - 24px);
    right: 12px;
    top: 88px;
    width: calc(100vw - 24px);
  }
  .course-product-page__panel-heading {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .course-product-page__panel-heading > span {
    font-size: 13px;
    padding: 9px 14px;
  }
  .course-product-page__modules summary,
  .course-product-page__module {
    padding-left: 15px;
    padding-right: 42px;
  }
  .course-product-page__modules p {
    margin-left: 42px;
    margin-right: 24px;
  }
  .course-product-page__certificate {
    padding: 24px;
  }
  .course-store.single-product .course-product-page > .related {
    border-radius: 16px;
    margin-bottom: 44px;
    margin-left: 12px;
    margin-right: 12px;
    padding: 28px 16px;
    width: calc(100% - 24px);
  }
}
/* --------------------------------------
* Logo (header + footer brand lockup)
* ------------------------------------ */
.course-logo {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 11px;
}

.course-logo__badge {
  color: #0b1426;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  height: 38px;
  width: 38px;
}
.course-logo__badge svg {
  display: block;
  height: 100%;
  width: 100%;
}

.course-brand--footer .course-logo__badge {
  color: #426a73;
}

.course-logo__word {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.course-logo__word-light {
  color: #426a73;
  font-weight: 600;
}

.course-brand--footer .course-logo__word-light {
  color: #9fd0ff;
}

/* --------------------------------------
* Homepage: benefit cards + CTA refinements
* ------------------------------------ */
.course-benefit-card--lead {
  overflow: hidden;
  position: relative;
}

.course-benefit-card__orb {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  height: 220px;
  pointer-events: none;
  position: absolute;
  right: -70px;
  top: -70px;
  width: 220px;
}

.course-benefit-card__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 13px;
  gap: 8px;
  margin-top: 22px;
  position: relative;
  z-index: 1;
}
.course-benefit-card__link svg {
  height: 16px;
  width: 16px;
}
.course-benefit-card__link:hover {
  color: #dceaff;
}

.course-benefit-card__icon {
  color: #89b8ff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 60px;
}
.course-benefit-card__icon svg {
  height: 32px;
  width: 32px;
}

.course-cta__orb {
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
}

.course-cta__orb--one {
  background: rgba(66, 106, 115, 0.18);
  height: 260px;
  right: -90px;
  top: -110px;
  width: 260px;
}

.course-cta__orb--two {
  background: rgba(255, 255, 255, 0.5);
  height: 180px;
  bottom: -90px;
  left: -60px;
  width: 180px;
}

.course-cta__content {
  position: relative;
  z-index: 1;
}
.course-cta__content p {
  color: #506074;
  margin: 10px 0 0;
  max-width: 460px;
}

.course-cta__action {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.course-cta__secondary {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  -webkit-box-shadow: 0 12px 30px rgba(11, 20, 38, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
          box-shadow: 0 12px 30px rgba(11, 20, 38, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: #0b1426;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 12px;
  padding: 17px 28px;
  -webkit-transition: background 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
}
.course-cta__secondary svg {
  height: 15px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  width: 15px;
}
.course-cta__secondary:hover, .course-cta__secondary:focus-visible {
  background: #fff;
  -webkit-box-shadow: 0 18px 40px rgba(11, 20, 38, 0.18), inset 0 1px 0 rgb(255, 255, 255);
          box-shadow: 0 18px 40px rgba(11, 20, 38, 0.18), inset 0 1px 0 rgb(255, 255, 255);
  color: #0b1426;
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}
.course-cta__secondary:hover svg, .course-cta__secondary:focus-visible svg {
  -webkit-transform: translateX(3px);
      -ms-transform: translateX(3px);
          transform: translateX(3px);
}

/* --------------------------------------
* Footer refinements
* ------------------------------------ */
#footer .course-footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
#footer .course-footer__socials a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #16222f;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  color: #97a8b6;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 42px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 42px;
  -webkit-transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
#footer .course-footer__socials a:hover, #footer .course-footer__socials a:focus-visible {
  background: #1d2c3b;
  border-color: rgba(255, 255, 255, 0.14);
  color: #e4ebf1;
}
#footer .course-footer__socials a i {
  font-size: 15px;
}

.course-footer__contact-list {
  margin-bottom: 18px;
}
.course-footer__contact-list li {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #cfd8e3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  gap: 10px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.course-footer__contact-list li a {
  color: #cfd8e3;
  font-size: 12px;
}
.course-footer__contact-list li a:hover {
  color: #fff;
}

.course-about-hero.row,
.course-contact-hero.row {
  background: #c8d7db;
  border-radius: 32px;
  isolation: isolate;
  margin: 28px auto 0;
  max-width: calc(1460px - 60px);
  overflow: hidden;
  padding: 58px 24px;
  position: relative;
  text-align: center;
  width: calc(100% - 40px);
}
@media only screen and (min-width: 768px) {
  .course-about-hero.row,
  .course-contact-hero.row {
    margin-top: 42px;
    padding: 76px clamp(42px, 7vw, 110px);
    width: calc(100% - 60px);
  }
}
.course-about-hero.row:after,
.course-contact-hero.row:after {
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  content: "";
  height: 260px;
  pointer-events: none;
  position: absolute;
  right: -95px;
  top: -130px;
  width: 260px;
  z-index: -1;
}
.course-about-hero.row .course-kicker,
.course-contact-hero.row .course-kicker {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(11, 20, 38, 0.08);
  border-radius: 999px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 8px 14px;
}
.course-about-hero.row h1,
.course-contact-hero.row h1 {
  font-size: 34px;
  line-height: 1.06;
  margin: 20px auto 18px;
  max-width: 820px;
}
@media only screen and (min-width: 768px) {
  .course-about-hero.row h1,
  .course-contact-hero.row h1 {
    font-size: 54px;
  }
}
.course-about-hero.row > p,
.course-contact-hero.row > p {
  font-size: 15px;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 650px;
}
@media only screen and (min-width: 768px) {
  .course-about-hero.row > p,
  .course-contact-hero.row > p {
    font-size: 17px;
  }
}

.course-about-proof {
  display: -ms-grid;
  display: grid;
  gap: 12px;
  margin: 34px auto 0;
  max-width: 820px;
}
@media only screen and (min-width: 768px) {
  .course-about-proof {
    -ms-grid-columns: (minmax(0, 1fr))[3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.course-about-proof__item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(11, 20, 38, 0.075);
  border-radius: 18px;
  -webkit-box-shadow: 0 12px 28px rgba(11, 20, 38, 0.055);
          box-shadow: 0 12px 28px rgba(11, 20, 38, 0.055);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  min-width: 0;
  padding: 15px 17px;
  text-align: left;
}
.course-about-proof__item strong,
.course-about-proof__item small {
  display: block;
}
.course-about-proof__item strong {
  color: #0b1426;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 18px;
}
.course-about-proof__item small {
  color: #506074;
  font-size: 12px;
}

.course-about-proof__icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #e2eeee;
  border-radius: 14px;
  color: #426a73;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  height: 44px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 44px;
}
.course-about-proof__icon svg {
  height: 20px;
  width: 20px;
}

.course-contact-hero.row h1 {
  max-width: 680px;
}

.course-contact-hero__topics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 32px auto 0;
  max-width: 760px;
}
.course-contact-hero__topics > span {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(11, 20, 38, 0.075);
  border-radius: 999px;
  color: #0b1426;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 9px;
  padding: 11px 16px;
}
.course-contact-hero__topics > span svg {
  color: #426a73;
  height: 17px;
  width: 17px;
}

.course-contact-grid {
  display: -ms-grid;
  display: grid;
  gap: 26px;
  padding-bottom: 90px;
  padding-top: 20px;
}
@media screen and (min-width: 1100px) {
  .course-contact-grid {
    -ms-grid-columns: 0.85fr 1.15fr;
    grid-template-columns: 0.85fr 1.15fr;
  }
}

.course-contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.course-contact-card {
  background: #eef3f7;
  border-radius: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  padding: 24px;
}
.course-contact-card h3 {
  font-size: 15px;
  margin: 0 0 6px;
}
.course-contact-card p {
  color: #506074;
  font-size: 14px;
  margin: 0 0 4px;
}
.course-contact-card p:last-child {
  margin-bottom: 0;
}
.course-contact-card a {
  color: #0b1426;
}

.course-contact-card__icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 10px 24px rgba(11, 20, 38, 0.06);
          box-shadow: 0 10px 24px rgba(11, 20, 38, 0.06);
  color: #426a73;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  height: 46px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 46px;
}
.course-contact-card__icon i {
  font-size: 18px;
}

.course-contact-card__hours {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 220px;
}
.course-contact-card__hours strong {
  font-weight: 600;
}

.course-contact-form-wrap {
  background: #eef3f7;
  border-radius: 28px;
  padding: 32px;
}
@media only screen and (min-width: 768px) {
  .course-contact-form-wrap {
    padding: 48px;
  }
}
.course-contact-form-wrap h2 {
  font-size: 26px;
  margin: 0 0 24px;
}
.course-contact-form-wrap .wpcf7-form {
  display: -ms-grid;
  display: grid;
  gap: 18px;
}
.course-contact-form-wrap label {
  color: #0b1426;
  display: block;
  font-size: 13px;
  font-weight: 600;
}
.course-contact-form-wrap input[type=text],
.course-contact-form-wrap input[type=email],
.course-contact-form-wrap input[type=tel],
.course-contact-form-wrap textarea {
  background: #fff;
  border: 1px solid #d8e0e3;
  border-radius: 14px;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #0b1426;
  font-family: "Manrope", sans-serif;
  margin-top: 8px;
  padding: 14px 16px;
  width: 100%;
}
.course-contact-form-wrap textarea {
  min-height: 140px;
  resize: vertical;
}
.course-contact-form-wrap input[type=submit] {
  background: #0b1426;
  border: 0;
  border-radius: 999px;
  font-family: "Radio Canada Big", sans-serif;
  -ms-grid-column-align: start;
      justify-self: start;
  padding: 14px 34px;
}
.course-contact-form-wrap input[type=submit]:hover {
  background: #426a73;
}
.course-contact-form-wrap .wpcf7-not-valid-tip {
  color: #c0392b;
  font-size: 12px;
  margin-top: 6px;
}
.course-contact-form-wrap .wpcf7-response-output {
  border-radius: 14px;
  font-size: 13px;
  margin: 18px 0 0;
}

/* --------------------------------------
* Premium brand and landing-page refresh
* ------------------------------------ */
.course-logo {
  gap: 12px;
}

.course-logo__badge {
  color: #173e46;
  height: 44px;
  width: 44px;
}

.course-logo__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
}

.course-logo__word {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}
.course-logo__word strong {
  font-weight: 750;
}
.course-logo__word span {
  color: #426a73;
}

.course-logo__tagline {
  color: #7a8797;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-top: 1px;
  text-transform: uppercase;
}

.course-brand--footer .course-logo__badge {
  color: #4f8d8c;
  height: 50px;
  width: 50px;
}
.course-brand--footer .course-logo__word {
  color: #fff;
  font-size: 23px;
}
.course-brand--footer .course-logo__word span {
  color: #9bd1ca;
}
.course-brand--footer .course-logo__tagline {
  color: #a9bac9;
  font-size: 11px;
  margin-top: 3px;
}

.course-landing {
  padding-bottom: 0;
}

.course-confidence {
  background: #eef3f7;
  display: -ms-grid;
  display: grid;
  gap: 42px;
  padding-bottom: 70px;
  padding-top: 70px;
}
@media screen and (min-width: 1100px) {
  .course-confidence {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-grid-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    padding-bottom: 90px;
    padding-top: 90px;
  }
}

.course-confidence__intro {
  max-width: 560px;
}
.course-confidence__intro h2 {
  font-size: 42px;
  line-height: 1.02;
  margin-bottom: 22px;
}
@media only screen and (min-width: 768px) {
  .course-confidence__intro h2 {
    font-size: 58px;
  }
}
.course-confidence__intro p {
  font-size: 16px;
  line-height: 1.75;
}

.course-confidence__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: linear-gradient(135deg, #0b1426, #294653);
  border-radius: 999px;
  -webkit-box-shadow: 0 14px 32px rgba(11, 20, 38, 0.2);
          box-shadow: 0 14px 32px rgba(11, 20, 38, 0.2);
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 12px;
  margin-top: 30px;
  padding: 17px 30px;
  -webkit-transition: -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  transition: box-shadow 0.2s ease, transform 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
}
.course-confidence__link svg {
  height: 16px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  width: 16px;
}
.course-confidence__link:hover, .course-confidence__link:focus-visible {
  -webkit-box-shadow: 0 20px 42px rgba(11, 20, 38, 0.28);
          box-shadow: 0 20px 42px rgba(11, 20, 38, 0.28);
  color: #fff;
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}
.course-confidence__link:hover svg, .course-confidence__link:focus-visible svg {
  -webkit-transform: translateX(3px);
      -ms-transform: translateX(3px);
          transform: translateX(3px);
}

.course-confidence__features {
  background: #0b1426;
  border-radius: 28px;
  -webkit-box-shadow: 0 24px 60px rgba(11, 20, 38, 0.14);
          box-shadow: 0 24px 60px rgba(11, 20, 38, 0.14);
  padding: 14px clamp(24px, 4vw, 44px);
}

.course-confidence__feature {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: -ms-grid;
  display: grid;
  gap: 18px;
  -ms-grid-columns: 54px 18px 1fr;
  grid-template-columns: 54px 1fr;
  padding: 28px 0;
}
.course-confidence__feature:last-child {
  border-bottom: 0;
}
.course-confidence__feature > span {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  color: #9bd1ca;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 54px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 54px;
}
.course-confidence__feature > span svg {
  height: 23px;
  width: 23px;
}
.course-confidence__feature h3 {
  color: #fff;
  font-size: 20px;
  margin: 2px 0 8px;
}
.course-confidence__feature p {
  color: #aebac9;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.course-cta.row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #c8d7db;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 35px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px 0 70px;
  overflow: hidden;
  padding-bottom: 75px;
  padding-top: 75px;
  position: relative;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .course-cta.row {
    border-radius: 28px;
    margin: 60px auto 90px;
    max-width: calc(1460px - 60px);
    width: calc(100% - 60px);
  }
}

.course-cta__content {
  max-width: 760px;
}
.course-cta__content p {
  margin: 34px auto 0;
}
.course-cta__content h2 {
  font-size: 38px;
  line-height: 1.02;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .course-cta__content h2 {
    font-size: 58px;
  }
}

.course-cta__action {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.course-about-story {
  display: -ms-grid;
  display: grid;
  gap: 28px;
  padding-bottom: 100px;
  padding-top: 55px;
}
@media only screen and (min-width: 768px) {
  .course-about-story {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-grid-columns: 1.25fr 0.75fr;
    grid-template-columns: 1.25fr 0.75fr;
  }
}

.course-about-story__content,
.course-about-story__promise {
  border-radius: 28px;
  padding: 36px;
}
@media only screen and (min-width: 768px) {
  .course-about-story__content,
  .course-about-story__promise {
    padding: 52px;
  }
}

.course-about-story__content {
  background: #f3f6f6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.course-about-story__content h2 {
  font-size: 36px;
  line-height: 1.05;
  margin-bottom: 24px;
}
@media only screen and (min-width: 768px) {
  .course-about-story__content h2 {
    font-size: 48px;
  }
}
.course-about-story__content p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  max-width: 750px;
}

.course-about-story__cta {
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 32px;
}

.course-about-story__promise {
  background: #0b1426;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  position: relative;
}
.course-about-story__promise:before {
  border: 1px solid rgba(155, 209, 202, 0.16);
  border-radius: 50%;
  content: "";
  height: 260px;
  position: absolute;
  right: -110px;
  top: -110px;
  width: 260px;
}

.course-about-story__promise-label {
  color: #9bd1ca;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin: 0 0 8px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.course-about-story__promise-list {
  counter-reset: promise;
  display: -ms-grid;
  display: grid;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.course-about-story__promise-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  counter-increment: promise;
  display: -ms-grid;
  display: grid;
  gap: 18px;
  -ms-grid-columns: auto 18px 1fr;
  grid-template-columns: auto 1fr;
  padding: 26px 0;
}
.course-about-story__promise-list li:last-child {
  border-bottom: 0;
}
.course-about-story__promise-list li:before {
  color: rgba(155, 209, 202, 0.5);
  content: "0" counter(promise);
  font-family: "Radio Canada Big", sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding-top: 3px;
}

.course-about-story__promise-copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.course-about-story__promise-copy strong {
  font-family: "Radio Canada Big", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
}
.course-about-story__promise-copy small {
  color: #9aa8b6;
  font-size: 13px;
  line-height: 1.6;
}

.course-about-story__promise-link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: start;
      align-self: flex-start;
  border-bottom: 1px solid rgba(155, 209, 202, 0.35);
  color: #9bd1ca;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.04em;
  margin-top: 30px;
  padding-bottom: 6px;
  position: relative;
  -webkit-transition: border-color 0.2s ease, color 0.2s ease;
  transition: border-color 0.2s ease, color 0.2s ease;
  z-index: 1;
}
.course-about-story__promise-link svg {
  height: 15px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  width: 15px;
}
.course-about-story__promise-link:hover, .course-about-story__promise-link:focus-visible {
  border-color: #9bd1ca;
  color: #fff;
}
.course-about-story__promise-link:hover svg, .course-about-story__promise-link:focus-visible svg {
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}

.course-decision {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -ms-grid;
  display: grid;
  gap: 44px;
  padding-bottom: 100px;
  padding-top: 10px;
}
@media only screen and (min-width: 768px) {
  .course-decision {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 64px;
    -ms-grid-columns: minmax(0, 1.05fr) 64px minmax(0, 0.95fr);
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

.course-decision__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.course-decision__content h2 {
  font-size: 34px;
  line-height: 1.08;
  margin: 14px 0 16px;
}
@media only screen and (min-width: 768px) {
  .course-decision__content h2 {
    font-size: 44px;
  }
}
.course-decision__content > p {
  color: #506074;
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 32px;
  max-width: 480px;
}

.course-decision__points {
  display: -ms-grid;
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.course-decision__points li {
  border-top: 1px solid #d8e0e3;
  display: -ms-grid;
  display: grid;
  gap: 16px;
  -ms-grid-columns: 46px 16px 1fr;
  grid-template-columns: 46px 1fr;
  padding: 22px 0;
}
.course-decision__points li:first-child {
  border-top: 0;
  padding-top: 0;
}
.course-decision__points h3 {
  font-size: 16px;
  margin: 0 0 5px;
}
.course-decision__points p {
  color: #506074;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.course-decision__points-icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #eef3f7;
  border-radius: 13px;
  color: #426a73;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 46px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 46px;
}
.course-decision__points-icon svg {
  height: 20px;
  width: 20px;
}

.course-decision__visual {
  height: 100%;
  position: relative;
}

.course-decision__frame {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: relative;
}
.course-decision__frame img {
  aspect-ratio: 4/3;
  border-radius: 28px;
  -webkit-box-shadow: 0 24px 60px rgba(11, 20, 38, 0.14);
          box-shadow: 0 24px 60px rgba(11, 20, 38, 0.14);
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .course-decision__frame img {
    aspect-ratio: auto;
  }
}

.course-contact-grid {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 36px;
  padding-bottom: 110px;
  padding-top: 52px;
}
@media screen and (min-width: 1100px) {
  .course-contact-grid {
    -ms-grid-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  }
}

.course-contact-info__intro {
  margin-bottom: 16px;
  padding: 12px 4px 18px;
}
.course-contact-info__intro h2 {
  font-size: 32px;
  line-height: 1.08;
  margin-bottom: 15px;
}
.course-contact-info__intro p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.course-contact-card {
  background: #fff;
  border: 1px solid #d8e0e3;
  border-radius: 20px;
  -webkit-box-shadow: 0 14px 38px rgba(11, 20, 38, 0.055);
          box-shadow: 0 14px 38px rgba(11, 20, 38, 0.055);
  padding: 24px;
}
.course-contact-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.course-contact-card p,
.course-contact-card a {
  font-size: 14px;
  line-height: 1.65;
}

.course-contact-card__icon {
  background: #e9f0f0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.course-contact-form-wrap {
  background: #eef3f4;
  border: 1px solid rgba(11, 20, 38, 0.04);
  -webkit-box-shadow: 0 24px 65px rgba(11, 20, 38, 0.08);
          box-shadow: 0 24px 65px rgba(11, 20, 38, 0.08);
  padding: 34px;
}
@media only screen and (min-width: 768px) {
  .course-contact-form-wrap {
    padding: 52px;
  }
}
.course-contact-form-wrap h2 {
  font-size: 34px;
  margin-bottom: 12px;
}
.course-contact-form-wrap .course-contact-form-wrap__intro {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 560px;
}
.course-contact-form-wrap .wpcf7-form {
  display: block;
}
.course-contact-form-wrap .wpcf7-form > p {
  margin: 0 0 26px;
}
.course-contact-form-wrap .wpcf7-form > p:last-of-type {
  margin-bottom: 0;
}
.course-contact-form-wrap label {
  color: #0b1426;
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}
.course-contact-form-wrap .wpcf7-form-control-wrap {
  display: block;
  margin-top: 10px;
}
.course-contact-form-wrap input[type=text],
.course-contact-form-wrap input[type=email],
.course-contact-form-wrap input[type=tel],
.course-contact-form-wrap textarea {
  background: #fff;
  border-color: #cdd7d9;
  border-radius: 12px;
  font-size: 15px;
  height: 54px;
  margin-top: 0;
  padding: 13px 16px;
  width: 100%;
}
.course-contact-form-wrap input[type=text]:focus,
.course-contact-form-wrap input[type=email]:focus,
.course-contact-form-wrap input[type=tel]:focus,
.course-contact-form-wrap textarea:focus {
  border-color: #426a73;
  -webkit-box-shadow: 0 0 0 3px rgba(66, 106, 115, 0.12);
          box-shadow: 0 0 0 3px rgba(66, 106, 115, 0.12);
  outline: 0;
}
.course-contact-form-wrap textarea {
  height: 170px;
  min-height: 170px;
}
.course-contact-form-wrap input[type=submit] {
  font-size: 14px;
  margin-top: 6px;
  min-width: 180px;
  padding: 16px 34px;
}

body.course-store #header.course-header .course-header-search {
  background: transparent;
  border: 0;
  bottom: auto;
  display: block;
  height: auto;
  overflow: visible;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: opacity 0.22s ease, visibility 0.22s ease, -webkit-transform 0.22s ease;
  transition: opacity 0.22s ease, visibility 0.22s ease, -webkit-transform 0.22s ease;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease, -webkit-transform 0.22s ease;
  visibility: hidden;
  width: min(344px, 100vw - 32px);
  z-index: 45;
}
body.course-store #header.course-header .course-header-search.active {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
}
body.course-store #header.course-header .course-header-search > .row {
  padding-left: 0;
  padding-right: 0;
}
body.course-store #header.course-header .course-header-search > .row > .site-search {
  background: transparent;
  bottom: auto;
  display: block;
  height: auto;
  left: auto;
  overflow: visible;
  padding: 0;
  position: static;
  right: auto;
  width: 100%;
}
body.course-store #header.course-header .course-header-search form {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(11, 20, 38, 0.1);
  border-radius: 18px;
  -webkit-box-shadow: 0 16px 44px rgba(11, 20, 38, 0.15), 0 2px 5px rgba(11, 20, 38, 0.05);
          box-shadow: 0 16px 44px rgba(11, 20, 38, 0.15), 0 2px 5px rgba(11, 20, 38, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  max-width: none;
  padding: 5px;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
body.course-store #header.course-header .course-header-search form:focus-within {
  border-color: rgba(66, 106, 115, 0.34);
  -webkit-box-shadow: 0 18px 48px rgba(11, 20, 38, 0.17), 0 0 0 3px rgba(66, 106, 115, 0.08);
          box-shadow: 0 18px 48px rgba(11, 20, 38, 0.17), 0 0 0 3px rgba(66, 106, 115, 0.08);
}
body.course-store #header.course-header .course-header-search input[type=search] {
  background: transparent;
  border: 0;
  border-radius: 999px;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #0b1426;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 13px;
  height: 44px;
  min-width: 0;
  padding: 0 6px;
}
body.course-store #header.course-header .course-header-search input[type=search]:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0;
}
body.course-store #header.course-header .course-header-search input[type=search]::-webkit-input-placeholder {
  color: #7c8b96;
  opacity: 1;
}
body.course-store #header.course-header .course-header-search input[type=search]::-moz-placeholder {
  color: #7c8b96;
  opacity: 1;
}
body.course-store #header.course-header .course-header-search input[type=search]:-ms-input-placeholder {
  color: #7c8b96;
  opacity: 1;
}
body.course-store #header.course-header .course-header-search input[type=search]::-ms-input-placeholder {
  color: #7c8b96;
  opacity: 1;
}
body.course-store #header.course-header .course-header-search input[type=search]::placeholder {
  color: #7c8b96;
  opacity: 1;
}
body.course-store #header.course-header .course-header-search button {
  background: #0b1426;
  border-radius: 13px;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 44px;
          flex: 0 0 44px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 44px;
  min-width: 44px;
  padding: 0;
  position: static;
  text-indent: 0;
  -webkit-transition: background 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  width: 44px;
}
body.course-store #header.course-header .course-header-search button:before {
  display: none;
}
body.course-store #header.course-header .course-header-search button:hover, body.course-store #header.course-header .course-header-search button:focus-visible {
  background: #426a73;
  -webkit-box-shadow: 0 10px 22px rgba(11, 20, 38, 0.2);
          box-shadow: 0 10px 22px rgba(11, 20, 38, 0.2);
  -webkit-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
          transform: translateY(-1px);
}
body.course-store #header.course-header .course-header-search button svg {
  height: 16px;
  width: 16px;
}

.course-header-search__icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(200, 215, 219, 0.34);
  border-radius: 12px;
  color: #426a73;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 38px;
          flex: 0 0 38px;
  height: 38px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 38px;
}
.course-header-search__icon svg {
  height: 17px;
  width: 17px;
}

.course-action.toggle-search[aria-expanded=true] {
  background: #eef3f7;
  color: #426a73;
}

@media screen and (max-width: 639px) {
  body.course-store #header.course-header .course-header-search {
    width: min(344px, 100vw - 24px);
  }
  body.course-store #header.course-header .course-header-search form {
    padding: 5px;
  }
  body.course-store #header.course-header .course-header-search input[type=search] {
    font-size: 13px;
    height: 44px;
    padding: 0 5px;
  }
  body.course-store #header.course-header .course-header-search button {
    height: 44px;
    min-width: 44px;
    padding: 0;
  }
}
.course-action:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0;
}

.course-action:focus-visible {
  -webkit-box-shadow: 0 0 0 3px rgba(66, 106, 115, 0.2);
          box-shadow: 0 0 0 3px rgba(66, 106, 115, 0.2);
  outline: 2px solid #426a73;
  outline-offset: 2px;
}

.course-footer {
  background: #0c1723;
}

.course-footer__top {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #d7e7e5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 28px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 48px;
  padding-top: 48px;
}
.course-footer__top h2 {
  font-size: 30px;
  line-height: 1.08;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .course-footer__top h2 {
    font-size: 40px;
  }
}

.course-footer__top-link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #0b1426;
  border-radius: 999px;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 14px;
  gap: 12px;
  padding: 16px 22px;
  -webkit-transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
@media only screen and (min-width: 768px) {
  .course-footer__top-link {
    margin-right: 60px;
  }
}
.course-footer__top-link svg {
  height: 17px;
  -webkit-transition: -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  width: 17px;
}
.course-footer__top-link:hover, .course-footer__top-link:focus-visible {
  background: #426a73;
  -webkit-box-shadow: 0 14px 30px rgba(11, 20, 38, 0.22);
          box-shadow: 0 14px 30px rgba(11, 20, 38, 0.22);
  color: #fff;
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}
.course-footer__top-link:hover svg, .course-footer__top-link:focus-visible svg {
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}

.course-footer__main {
  gap: 52px;
  padding-bottom: 82px;
  padding-top: 82px;
}
@media only screen and (min-width: 768px) {
  .course-footer__main {
    -ms-grid-columns: 1.25fr 1fr 1fr;
    grid-template-columns: 1.25fr 1fr 1fr;
  }
}
@media screen and (min-width: 1100px) {
  .course-footer__main {
    -ms-grid-columns: 1.35fr 0.85fr 0.85fr 1.2fr;
    grid-template-columns: 1.35fr 0.85fr 0.85fr 1.2fr;
  }
}
.course-footer__main h2 {
  font-size: 18px;
  margin-bottom: 24px;
}
.course-footer__main li {
  margin-bottom: 11px;
}
.course-footer__main a {
  color: #bdc8d2;
  font-size: 14px;
  line-height: 1.5;
}
.course-footer__main a:hover {
  color: #fff;
}

.course-footer__brand p {
  color: #aab7c4;
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 390px;
}

#footer .course-footer__contact-list li,
#footer .course-footer__contact-list li a {
  font-size: 14px;
}

#footer .course-footer__contact-list li {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  min-width: 0;
}

.course-footer__contact-icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #16222f;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #97a8b6;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  height: 42px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0;
  width: 42px;
  -webkit-transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.course-footer__contact-icon i {
  font-size: 15px;
}

.course-footer__contact-copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding-top: 1px;
}

.course-footer__contact-label {
  color: #8294a5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

#footer .course-footer__contact-value {
  color: #d6e0e9;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  max-width: 100%;
  overflow-wrap: anywhere;
}

#footer .course-footer__contact-list li:hover .course-footer__contact-icon {
  background: #1d2c3b;
  border-color: rgba(255, 255, 255, 0.14);
  color: #e4ebf1;
}

@media screen and (max-width: 959px) {
  .course-logo__copy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .course-logo__word {
    font-size: 14px;
  }
  .course-logo__tagline {
    display: none;
  }
  .course-logo__badge {
    height: 40px;
    width: 40px;
  }
  .course-store .toggle-nav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #f0f4f4;
    border: 1px solid #d8e0e3;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 42px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 4px 0 auto;
    padding: 0;
    width: 42px;
  }
  .course-store .toggle-nav .text {
    display: none;
  }
  .course-store .toggle-nav .line {
    background: #0b1426;
    height: 1.5px;
    margin: 0 0 5px;
    width: 17px;
  }
  .course-store .toggle-nav .line.second {
    width: 13px;
  }
  .course-store .toggle-nav .line.third {
    margin-bottom: 0;
    width: 17px;
  }
  .course-header__actions {
    gap: 2px;
  }
  .course-action {
    height: 38px;
    width: 38px;
  }
}
/**
 * Let the flex-row Padding field actually control the spacing.
 *
 * The theme's original layouts carry no vertical padding of their own, so
 * `.row.padded*` in main.scss is the only thing setting it, and choosing
 * "Padding Bottom" genuinely drops the top padding. The course sections
 * below predate the flex conversion and hardcode their own padding, so a
 * padding class used to sit on top of it rather than replace it.
 *
 * `.padded` already sets both sides itself, so only the single-sided
 * classes need to clear the side they leave alone. Scoped to `.course-store`
 * because main.scss defines `.row.padded*` after this partial is imported,
 * so an equal-specificity override would lose on source order.
 */
.course-store .course-hero.padded-top,
.course-store .course-category-section.padded-top,
.course-store .course-featured-section.padded-top,
.course-store .course-confidence.padded-top,
.course-store .course-about-hero.row.padded-top,
.course-store .course-about-story.padded-top,
.course-store .course-decision.padded-top,
.course-store .course-contact-hero.row.padded-top,
.course-store .course-contact-grid.padded-top,
.course-store .course-cta.row.padded-top {
  padding-bottom: 0;
}
.course-store .course-hero.padded-bottom,
.course-store .course-category-section.padded-bottom,
.course-store .course-featured-section.padded-bottom,
.course-store .course-confidence.padded-bottom,
.course-store .course-about-hero.row.padded-bottom,
.course-store .course-about-story.padded-bottom,
.course-store .course-decision.padded-bottom,
.course-store .course-contact-hero.row.padded-bottom,
.course-store .course-contact-grid.padded-bottom,
.course-store .course-cta.row.padded-bottom {
  padding-top: 0;
}

.course-activity-ticker {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9998;
  max-width: 380px;
  width: calc(100vw - 56px);
  background: #fff;
  border: 1px solid #e0e5e9;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 24px rgba(11, 20, 38, 0.12);
          box-shadow: 0 4px 24px rgba(11, 20, 38, 0.12);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #465568;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(12px);
      -ms-transform: translateY(12px);
          transform: translateY(12px);
  -webkit-transition: opacity 260ms ease, -webkit-transform 260ms ease;
  transition: opacity 260ms ease, -webkit-transform 260ms ease;
  transition: opacity 260ms ease, transform 260ms ease;
  transition: opacity 260ms ease, transform 260ms ease, -webkit-transform 260ms ease;
}
.course-activity-ticker.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.course-activity-ticker.no-animation, .course-activity-ticker.no-animation * {
  -webkit-transition: none !important;
  transition: none !important;
}
.course-activity-ticker[hidden] {
  display: none;
}
.course-activity-ticker a {
  color: #426a73;
  font-weight: 600;
  text-decoration: none;
}
.course-activity-ticker a:hover, .course-activity-ticker a:focus {
  text-decoration: underline;
  color: #335259;
}

.course-activity-ticker__close {
  position: absolute;
  top: 6px;
  right: 10px;
  background: none;
  border: 0;
  font-size: 20px;
  line-height: 1;
  color: #999;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
}
.course-activity-ticker__close:hover, .course-activity-ticker__close:focus-visible {
  color: #333;
  background: #f5f5f5;
}

.course-activity-ticker__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  padding: 14px 34px 14px 14px;
}

.course-activity-ticker__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #426a73;
  margin-top: 1px;
}

.course-activity-ticker__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.course-activity-ticker__time {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 11px;
  color: #888;
  white-space: nowrap;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-left: auto;
}

@media (max-width: 767px) {
  .course-activity-ticker {
    bottom: 20px;
    left: 12px;
    max-width: calc(100vw - 24px);
    font-size: 12px;
  }
  .course-activity-ticker__body {
    padding: 12px 30px 12px 12px;
  }
  .course-actions ~ .course-activity-ticker {
    bottom: 84px;
  }
}
/* ---------------------------------------------------------------------------
 * Email capture modal
 *
 * Sits above everything, including the activity ticker (z-index 9998), and
 * silences the ticker while it is open — two notifications competing for the
 * same screen reads as a broken site rather than as two features.
 *
 * `.btn.arrow` is reused for the submit button so it tracks the site's button
 * style automatically. Overriding anything on it needs three classes: `.btn`
 * and `.btn.arrow` are declared in main.scss *after* the partials are
 * imported, so a two-class selector here would tie on specificity and lose on
 * source order. Same trap as `.row.padded` documented in AGENTS.md.
 * ------------------------------------------------------------------------- */
html.cec-modal-open {
  overflow: hidden;
}
html.cec-modal-open .course-activity-ticker {
  opacity: 0;
  pointer-events: none;
}

.course-email-capture {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  padding: 20px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000;
}
.course-email-capture[hidden] {
  display: none;
}

.course-email-capture__backdrop {
  background: rgba(11, 20, 38, 0.62);
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 280ms cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 280ms cubic-bezier(0.22, 1, 0.36, 1);
}
@supports (backdrop-filter: blur(4px)) {
  .course-email-capture__backdrop {
    backdrop-filter: blur(4px);
  }
}
.course-email-capture.is-open .course-email-capture__backdrop {
  opacity: 1;
}

.course-email-capture__dialog {
  background: #fff;
  border-radius: 24px;
  -webkit-box-shadow: 0 30px 80px rgba(11, 20, 38, 0.28);
          box-shadow: 0 30px 80px rgba(11, 20, 38, 0.28);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-height: calc(100vh - 40px);
  max-width: 460px;
  opacity: 0;
  overflow-y: auto;
  padding: 42px 26px 32px;
  position: relative;
  text-align: center;
  -webkit-transform: translateY(18px) scale(0.97);
      -ms-transform: translateY(18px) scale(0.97);
          transform: translateY(18px) scale(0.97);
  -webkit-transition: opacity 280ms cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 280ms cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 280ms cubic-bezier(0.22, 1, 0.36, 1), transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 280ms cubic-bezier(0.22, 1, 0.36, 1), transform 280ms cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}
@media only screen and (min-width: 640px) {
  .course-email-capture__dialog {
    border-radius: 28px;
    padding: 46px 40px 36px;
  }
}
.course-email-capture.is-open .course-email-capture__dialog {
  opacity: 1;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.course-email-capture__close {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #eef3f7;
  border: 0;
  border-radius: 50%;
  color: #506074;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 36px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  position: absolute;
  right: 14px;
  top: 14px;
  -webkit-transition: background 180ms ease, color 180ms ease;
  transition: background 180ms ease, color 180ms ease;
  width: 36px;
}
.course-email-capture__close svg {
  fill: none;
  height: 16px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
  width: 16px;
}
.course-email-capture__close:hover, .course-email-capture__close:focus-visible {
  background: #c8d7db;
  color: #0b1426;
}

.course-email-capture__badge {
  background: #d9f6eb;
  border-radius: 50px;
  color: #335259;
  display: inline-block;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 18px;
  padding: 7px 16px;
  text-transform: uppercase;
}

.course-email-capture__heading {
  color: #0b1426;
  font-size: 27px;
  line-height: 1.12;
  margin: 0 0 12px;
}
@media only screen and (min-width: 640px) {
  .course-email-capture__heading {
    font-size: 31px;
  }
}

.course-email-capture__text {
  color: #506074;
  font-size: 15px;
  line-height: 1.55;
  margin: 0 auto 24px;
  max-width: 340px;
}

.course-email-capture__field {
  margin-bottom: 12px;
}

.course-email-capture__input {
  background: #fff;
  border: 1px solid #d8e0e3;
  border-radius: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #0b1426;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  height: 56px;
  padding: 0 22px;
  text-align: center;
  -webkit-transition: border-color 180ms ease, -webkit-box-shadow 180ms ease;
  transition: border-color 180ms ease, -webkit-box-shadow 180ms ease;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  transition: border-color 180ms ease, box-shadow 180ms ease, -webkit-box-shadow 180ms ease;
  width: 100%;
}
.course-email-capture__input::-webkit-input-placeholder {
  color: rgba(80, 96, 116, 0.6);
}
.course-email-capture__input::-moz-placeholder {
  color: rgba(80, 96, 116, 0.6);
}
.course-email-capture__input:-ms-input-placeholder {
  color: rgba(80, 96, 116, 0.6);
}
.course-email-capture__input::-ms-input-placeholder {
  color: rgba(80, 96, 116, 0.6);
}
.course-email-capture__input::placeholder {
  color: rgba(80, 96, 116, 0.6);
}
.course-email-capture__input:focus {
  border-color: #426a73;
  -webkit-box-shadow: 0 0 0 3px rgba(66, 106, 115, 0.16);
          box-shadow: 0 0 0 3px rgba(66, 106, 115, 0.16);
  outline: none;
}

/*
 * Off-screen rather than display:none: bots that skip un-rendered fields would
 * otherwise walk straight past the honeypot.
 */
.course-email-capture__honeypot {
  height: 1px;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.course-email-capture .course-email-capture__submit.btn, .course-email-capture .woocommerce form input.course-email-capture__submit[type=submit], .woocommerce form .course-email-capture input.course-email-capture__submit[type=submit],
.course-email-capture .woocommerce form input.course-email-capture__submit[type=button],
.woocommerce form .course-email-capture input.course-email-capture__submit[type=button] {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 6px;
  width: 100%;
}
.course-email-capture .course-email-capture__submit.btn.is-busy, .course-email-capture .woocommerce form input.course-email-capture__submit.is-busy[type=submit], .woocommerce form .course-email-capture input.course-email-capture__submit.is-busy[type=submit],
.course-email-capture .woocommerce form input.course-email-capture__submit.is-busy[type=button],
.woocommerce form .course-email-capture input.course-email-capture__submit.is-busy[type=button] {
  opacity: 0.6;
  pointer-events: none;
}

.course-email-capture__error {
  color: #b32d2e;
  font-size: 14px;
  line-height: 1.45;
  margin: 12px 0 0;
}
.course-email-capture__error[hidden] {
  display: none;
}

.course-email-capture__consent {
  color: rgba(80, 96, 116, 0.85);
  font-size: 12px;
  line-height: 1.5;
  margin: 16px auto 0;
  max-width: 330px;
}
.course-email-capture__consent a {
  color: #426a73;
  text-decoration: underline;
}

.course-email-capture__consent-box {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: rgba(80, 96, 116, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  gap: 9px;
  line-height: 1.5;
  margin: 4px 0 16px;
  text-align: left;
}
.course-email-capture__consent-box input {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-top: 2px;
}

/* ── success panel ─────────────────────────────────────────────────────── */
.course-email-capture__tick {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #d9f6eb;
  border-radius: 50%;
  color: #375860;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 58px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 18px;
  width: 58px;
}
.course-email-capture__tick svg {
  fill: none;
  height: 26px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  width: 26px;
}

.course-email-capture__code {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #eef3f7;
  border: 1px dashed #c8d7db;
  border-radius: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 12px;
  padding: 12px 12px 12px 18px;
}
.course-email-capture__code code {
  background: none;
  color: #0b1426;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  overflow-wrap: anywhere;
  padding: 0;
}

.course-email-capture__copy {
  background: #0b1426;
  border: 0;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-family: "Radio Canada Big", sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  -webkit-transition: background 180ms ease;
  transition: background 180ms ease;
}
.course-email-capture__copy:hover, .course-email-capture__copy:focus-visible {
  background: #426a73;
}

.course-email-capture__expiry {
  color: rgba(80, 96, 116, 0.85);
  font-size: 13px;
  margin: 0 0 14px;
}
.course-email-capture__expiry[hidden] {
  display: none;
}

/* ── reduced motion ───────────────────────────────────────────────────── */
.course-email-capture.no-animation {
  /*
   * The dialog only reaches its visible state through the transition, so
   * disabling the transition alone would leave it permanently invisible.
   */
}
.course-email-capture.no-animation .course-email-capture__backdrop,
.course-email-capture.no-animation .course-email-capture__dialog {
  -webkit-transition: none;
  transition: none;
}
.course-email-capture.no-animation .course-email-capture__dialog {
  opacity: 1;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.course-email-capture.no-animation .course-email-capture__backdrop {
  opacity: 1;
}

/* ---------------------------------------------------------------------------
 * GoHighLevel AI Course Assistant
 *
 * The chat UI is rendered by HighLevel. Local page-level rules coordinate our
 * fixed UI while the documented chatWidget.isActive() API reports it open.
 * Branding and the optional details card are styled inside the widget shadow
 * root by course-ai-chat.js because document CSS cannot cross that boundary.
 * ------------------------------------------------------------------------- */
[data-chat-widget] {
  --chat-widget-primary-color: #426a73;
  --chat-widget-active-color: #0d7c7c;
}

html.course-ai-chat-open .course-activity-ticker {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  html.course-ai-chat-open .course-actions {
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%);
  }
}

/*
 * Below 960px the open panel covers nearly the whole screen, so the page
 * behind it must not scroll.
 *
 * `overscroll-behavior: contain` on the widget is not enough and was measured
 * failing: the panel has a header, a footer/input band and our own cards, and
 * a swipe that starts on any of those never reaches HighLevel's scroller at
 * all — the gesture goes straight to the document. Measured at 390px, a swipe
 * on the input band moved the page from scrollY 400 to 65 and left the
 * transcript exactly where it was, which is the "background scrolls instead of
 * the chat" the owner reported.
 *
 * Locking the document is what fixes every starting point at once. The
 * transcript keeps its own scroller, so swiping over the messages still works
 * normally — verified in a real browser with touch events, top to bottom and
 * back again.
 *
 * `position: fixed` is deliberately NOT used here. It would reset the page's
 * scroll position to the top, and the visitor is usually mid-catalogue when
 * they open the chat; they would find the page jumped when they close it.
 */
@media (max-width: 960px) {
  html.course-ai-chat-open,
  html.course-ai-chat-open body {
    overflow: hidden;
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
  }
}
html.cec-modal-open [data-chat-widget] {
  pointer-events: none !important;
  visibility: hidden !important;
}

@media (prefers-reduced-motion: reduce) {
  html.course-ai-chat-open .course-activity-ticker,
  html.course-ai-chat-open .course-actions {
    -webkit-transition: none !important;
    transition: none !important;
  }
}
/* --------------------------------------
* Media Queries
* 
* $breakpoint-mobile-small:   480px; //@include mq(mobile-small)
* $breakpoint-mobile-landscape: 640px; //@include mq(mobile-landscape)
* $breakpoint-tablet:       768px; //@include mq(tablet)
* $breakpoint-tablet-landscape: 960px; //@include mq(tablet-landscape)
* $breakpoint-desktop-small:    1100px; //@include mq(desktop-small)
* $breakpoint-desktop:      1400px; //@include mq(desktop)
*
------------------------------------ */
body {
  overflow-x: hidden;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  color: #465568;
  text-align: left;
  font-weight: 300;
  background-color: white;
}
body.nav-open, body.cart-open {
  overflow-y: hidden;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .comment-reply-title, #payment:before {
  margin-top: 0;
  margin-bottom: 20px;
  color: #080e1a;
  font-weight: 700;
  position: relative;
  font-family: "Radio Canada Big", sans-serif;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .comment-reply-title, #payment:before {
    margin-bottom: 35px;
  }
}
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a, .comment-reply-title a, #payment:before a {
  color: #080e1a;
}

h1, .h1 {
  font-size: 1.75em;
  line-height: 1.4285714286em;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  h1, .h1 {
    font-size: 2.5625em;
    line-height: 1.3170731707em;
  }
}
.single h1, .single .h1 {
  margin-bottom: 20px;
}

h2, .h2 {
  font-size: 1.625em;
  line-height: 1.2307692308em;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  h2, .h2 {
    font-size: 2em;
    line-height: 1em;
  }
}

h3, .h3, .comment-reply-title, #payment:before {
  font-size: 1.5em;
  line-height: 1.5em;
}

h4, .h4 {
  font-size: 1.375em;
  line-height: 1.4545454545em;
}

h5, .h5 {
  font-size: 1.25em;
  line-height: 1.3em;
}

h6, .h6 {
  font-size: 1.0625em;
  line-height: 1.1764705882em;
}

a {
  color: #426a73;
  text-decoration: none;
  outline: none;
  font-weight: 700;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:hover {
  color: #888888;
  text-decoration: none;
}

img {
  max-width: 100%;
}

p {
  margin-top: 0;
  margin-bottom: 35px;
  color: #465568;
  font-weight: 300;
  font-size: 1em;
  line-height: 1.75em;
}

strong {
  font-weight: 600;
}

.notes {
  font-size: 0.875em;
  line-height: 1.2142857143em;
}

mark {
  background: none;
}

.flex-content ul, .woocommerce-Tabs-panel ul, .woocommerce-product-details__short-description ul {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
.flex-content ul > li, .woocommerce-Tabs-panel ul > li, .woocommerce-product-details__short-description ul > li {
  margin: 0;
  padding: 0 0 10px 22px;
  color: #465568;
  font-size: 1em;
  line-height: 1.75em;
  position: relative;
}
.flex-content ul > li:last-child, .woocommerce-Tabs-panel ul > li:last-child, .woocommerce-product-details__short-description ul > li:last-child {
  padding-bottom: 0;
}
.flex-content ul > li:before, .woocommerce-Tabs-panel ul > li:before, .woocommerce-product-details__short-description ul > li:before {
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #426a73;
  display: block;
  content: "";
}
.flex-content ul > li ul, .flex-content ul > li ol, .woocommerce-Tabs-panel ul > li ul, .woocommerce-Tabs-panel ul > li ol, .woocommerce-product-details__short-description ul > li ul, .woocommerce-product-details__short-description ul > li ol {
  margin: 15px 0 0;
}
.flex-content ul.check > li, .woocommerce-Tabs-panel ul.check > li, .woocommerce-product-details__short-description ul.check > li {
  padding-left: 30px;
}
.flex-content ul.check > li:before, .woocommerce-Tabs-panel ul.check > li:before, .woocommerce-product-details__short-description ul.check > li:before {
  width: auto;
  height: auto;
  background: none;
  color: #0b1426;
  font-family: "Font Awesome 6 Pro";
  content: "\f00c";
  top: 0;
  font-weight: 400;
}

.flex-content ol, #tab-description ol, .woocommerce-product-details__short-description ol {
  list-style: none;
  counter-reset: li;
  margin: 0 0 30px;
  padding: 0;
}
.flex-content ol > li, #tab-description ol > li, .woocommerce-product-details__short-description ol > li {
  margin: 0 0 10px;
  padding: 0 0 10px 50px;
  color: #465568;
  font-size: 1em;
  line-height: 1.75em;
  position: relative;
}
.flex-content ol > li:last-child, #tab-description ol > li:last-child, .woocommerce-product-details__short-description ol > li:last-child {
  margin-bottom: 0;
}
.flex-content ol > li:before, #tab-description ol > li:before, .woocommerce-product-details__short-description ol > li:before {
  color: #0b1426;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 600;
  content: counter(li, decimal) ".";
  counter-increment: li;
  margin-right: 10px;
  padding: 0 10px 0 5px;
  width: 35px;
  border-right: 1px solid #ebebeb;
}
.flex-content ol > li ul, .flex-content ol > li ol, #tab-description ol > li ul, #tab-description ol > li ol, .woocommerce-product-details__short-description ol > li ul, .woocommerce-product-details__short-description ol > li ol {
  margin: 15px 0 0;
}

.btn, .woocommerce form input[type=submit],
.woocommerce form input[type=button], input[type=submit], input[type=button], .woocommerce button.button, .woocommerce a.button, .woocommerce #respond input#submit {
  display: inline-block;
  background: #426a73;
  border: 0;
  font-weight: 600;
  padding: 15px 20px;
  outline: none;
  text-align: center;
  font-family: "Radio Canada Big", sans-serif;
  -webkit-transition: none;
  transition: none;
  font-size: 1em;
  line-height: 1.125em;
  color: white;
  letter-spacing: 0.3px;
  border-radius: 50px;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .btn, .woocommerce form input[type=submit],
  .woocommerce form input[type=button], input[type=submit], input[type=button], .woocommerce button.button, .woocommerce a.button, .woocommerce #respond input#submit {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.btn:hover, .woocommerce form input[type=submit]:hover,
.woocommerce form input[type=button]:hover, .btn:focus, .woocommerce form input[type=submit]:focus,
.woocommerce form input[type=button]:focus, .btn.active, .woocommerce form input.active[type=submit],
.woocommerce form input.active[type=button], .btn.alt.disabled, input[type=submit]:hover, input[type=submit]:focus, input[type=submit].active, input[type=submit].alt.disabled, input[type=button]:hover, input[type=button]:focus, input[type=button].active, input[type=button].alt.disabled, .woocommerce button.button:hover, .woocommerce button.button:focus, .woocommerce button.button.active, .woocommerce button.button.alt.disabled, .woocommerce a.button:hover, .woocommerce a.button:focus, .woocommerce a.button.active, .woocommerce a.button.alt.disabled, .woocommerce #respond input#submit:hover, .woocommerce #respond input#submit:focus, .woocommerce #respond input#submit.active, .woocommerce #respond input#submit.alt.disabled {
  background: #0b1426;
  color: white !important;
}
.btn.inactive, .woocommerce form input.inactive[type=submit],
.woocommerce form input.inactive[type=button], input[type=submit].inactive, input[type=button].inactive, .woocommerce button.button.inactive, .woocommerce a.button.inactive, .woocommerce #respond input#submit.inactive {
  background: #f2f2f5;
  color: white !important;
}

.woocommerce a.button.alt, .woocommerce button.button.alt {
  background: #426a73;
  color: white;
}
.woocommerce a.button.alt:hover, .woocommerce a.button.alt:focus, .woocommerce a.button.alt.active, .woocommerce a.button.alt.alt.disabled, .woocommerce button.button.alt:hover, .woocommerce button.button.alt:focus, .woocommerce button.button.alt.active, .woocommerce button.button.alt.alt.disabled {
  background: #0b1426;
  color: white !important;
}

.btn.arrow, .woocommerce form input.arrow[type=submit],
.woocommerce form input.arrow[type=button] {
  padding: 8px 70px 8px 30px;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 56px;
}
.btn.arrow:before, .woocommerce form input.arrow[type=submit]:before,
.woocommerce form input.arrow[type=button]:before {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: white;
  border-radius: 50%;
  color: #0b1426;
  content: "\f061";
  font-weight: 900;
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 8px;
}

.btn.light, .woocommerce form input.light[type=submit],
.woocommerce form input.light[type=button] {
  background: none;
  padding-left: 0;
  padding-right: 0;
  color: #080e1a;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
}
.btn.light:hover, .woocommerce form input.light[type=submit]:hover,
.woocommerce form input.light[type=button]:hover {
  color: #080e1a;
}
.btn.light:after, .woocommerce form input.light[type=submit]:after,
.woocommerce form input.light[type=button]:after {
  content: "\f105";
  display: inline-block;
  font-family: "Font Awesome 6 Pro";
  margin-left: 10px;
  font-weight: 300;
  font-size: 0.875em;
  line-height: 1.2142857143em;
  color: #0b1426;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .btn.light:before, .woocommerce form input.light[type=submit]:before,
  .woocommerce form input.light[type=button]:before {
    width: 0;
    display: block;
    background: #0b1426;
    height: 2px;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
.btn.light:hover, .woocommerce form input.light[type=submit]:hover,
.woocommerce form input.light[type=button]:hover {
  color: #426a73;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .btn.light:hover:before, .woocommerce form input.light[type=submit]:hover:before,
  .woocommerce form input.light[type=button]:hover:before {
    width: 100%;
  }
}
.btn.outline, .woocommerce form input.outline[type=submit],
.woocommerce form input.outline[type=button] {
  border: 3px solid #426a73;
  background: none;
  color: #426a73;
  padding-top: 14px;
  padding-bottom: 14px;
  z-index: 2;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .btn.outline:before, .woocommerce form input.outline[type=submit]:before,
  .woocommerce form input.outline[type=button]:before {
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    background: #426a73;
    display: block;
    position: absolute;
    z-index: -1;
    content: "";
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  #front-page-banner .btn.outline:before, #front-page-banner .woocommerce form input.outline[type=submit]:before, .woocommerce form #front-page-banner input.outline[type=submit]:before,
  #front-page-banner .woocommerce form input.outline[type=button]:before,
  .woocommerce form #front-page-banner input.outline[type=button]:before {
    background: white;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .btn.outline:hover, .woocommerce form input.outline[type=submit]:hover,
  .woocommerce form input.outline[type=button]:hover {
    color: white;
  }
  .btn.outline:hover:before, .woocommerce form input.outline[type=submit]:hover:before,
  .woocommerce form input.outline[type=button]:hover:before {
    width: 100%;
  }
  #front-page-banner .btn.outline:hover, #front-page-banner .woocommerce form input.outline[type=submit]:hover, .woocommerce form #front-page-banner input.outline[type=submit]:hover,
  #front-page-banner .woocommerce form input.outline[type=button]:hover,
  .woocommerce form #front-page-banner input.outline[type=button]:hover {
    color: #426a73;
  }
}
.btn.secondary, .woocommerce form input.secondary[type=submit],
.woocommerce form input.secondary[type=button] {
  background: #0b1426;
  color: white;
}
.btn.secondary:hover, .woocommerce form input.secondary[type=submit]:hover,
.woocommerce form input.secondary[type=button]:hover {
  background: #426a73;
  color: white;
}
.btn.white, .woocommerce form input.white[type=submit],
.woocommerce form input.white[type=button] {
  background: white;
  color: #426a73;
}
.btn.white:hover, .woocommerce form input.white[type=submit]:hover,
.woocommerce form input.white[type=button]:hover {
  background: #426a73;
  color: white;
}
.white-background .btn.white, .white-background .woocommerce form input.white[type=submit], .woocommerce form .white-background input.white[type=submit],
.white-background .woocommerce form input.white[type=button],
.woocommerce form .white-background input.white[type=button] {
  background: #f2f2f5;
}
.white-background .btn.white:hover, .white-background .woocommerce form input.white[type=submit]:hover, .woocommerce form .white-background input.white[type=submit]:hover,
.white-background .woocommerce form input.white[type=button]:hover,
.woocommerce form .white-background input.white[type=button]:hover {
  background: #426a73;
}

.row.padded, .image-left-text-right.padded {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .row.padded, .image-left-text-right.padded {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.padded, .image-left-text-right.padded {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.row.padded-bottom, .image-left-text-right.padded-bottom {
  padding-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .row.padded-bottom, .image-left-text-right.padded-bottom {
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.padded-bottom, .image-left-text-right.padded-bottom {
    padding-bottom: 80px;
  }
}
.row.padded-top, .image-left-text-right.padded-top {
  padding-top: 30px;
}
@media only screen and (min-width: 768px) {
  .row.padded-top, .image-left-text-right.padded-top {
    padding-top: 40px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.padded-top, .image-left-text-right.padded-top {
    padding-top: 80px;
  }
}

.row {
  margin: 0;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 1520px) {
  .row {
    margin: 0;
    padding-left: calc((100% - 1460px) / 2);
    padding-right: calc((100% - 1460px) / 2);
  }
}
.row.no-row {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 1320px) {
  .row.small-row {
    padding-left: calc((100% - 1260px) / 2);
    padding-right: calc((100% - 1260px) / 2);
  }
}

.top-bar {
  background: #0b1426;
  padding-top: 10px;
  padding-bottom: 10px;
  height: 40px;
}
.top-bar .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top-bar p {
  margin: 0;
  text-align: center;
  display: none;
  height: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-bar .owl-item p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top-bar i {
  color: #426a73;
  font-size: 1.2em;
  margin-right: 15px;
  min-height: 17px;
}
.top-bar p {
  color: white;
  font-weight: 400;
  position: relative;
  font-size: 0.875em;
  line-height: 1em;
}

#header {
  padding-top: 0;
  padding-bottom: 53px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 10;
  align-items: center;
  background: white;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header {
    padding-top: 0;
    padding-bottom: 0;
    position: sticky;
    left: 0;
    right: 0;
    top: 0;
    z-index: 6;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .fixed-header #header {
    background: white;
    top: 0;
    -webkit-box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.05);
            box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.05);
  }
}
#header .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 15px;
  padding-right: 15px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header .row {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 1520px) {
  #header .row {
    padding-left: calc((100% - 1460px) / 2);
    padding-right: calc((100% - 1460px) / 2);
  }
}
#header .woocommerce-product-search {
  width: 100%;
}
#header .site-search {
  overflow: hidden;
  z-index: 2;
  position: absolute;
  left: 5px;
  bottom: 5px;
  right: 5px;
  width: calc(100% - 10px);
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header .site-search {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    overflow: visible;
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    width: auto;
    z-index: 16;
    bottom: 0;
    height: 68px;
    background: #426a73;
    padding: 10px;
    border-radius: 5px;
    display: none;
  }
  #header .site-search.active {
    display: block;
  }
}
@media screen and (min-width: 1300px) {
  #header .site-search {
    right: calc((100% - 1460px) / 2);
  }
}
#header .site-search .search-field {
  margin: 0;
  height: 48px;
  padding: 12px 15px;
  font-size: 0.8125em;
  line-height: 1.0769230769em;
  color: #465568;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  min-height: 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header .site-search .search-field {
    width: 300px;
    -webkit-box-shadow: inset 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
            box-shadow: inset 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (min-width: 1400px) {
  #header .site-search .search-field {
    width: 375px;
  }
}
#header .site-search .search-field::-webkit-input-placeholder {
  color: #465568;
}
#header .site-search .search-field::-moz-placeholder {
  color: #465568;
}
#header .site-search .search-field:-ms-input-placeholder {
  color: #465568;
}
#header .site-search .search-field::-ms-input-placeholder {
  color: #465568;
}
#header .site-search .search-field::placeholder {
  color: #465568;
}
#header .site-search button {
  width: 45px;
  height: 48px;
  position: absolute;
  right: 0;
  top: 0;
  border: 0;
  padding: 0;
  text-indent: -9999px;
  background: none;
  font-size: 1em;
  line-height: 1em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  color: #080e1a;
  border-radius: 0 5px 5px 0;
  font-weight: 400;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header .site-search button {
    height: 48px;
  }
}
#header .site-search button:before {
  font-family: "Font Awesome 6 Pro";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  text-indent: 0;
  position: absolute;
  top: 0;
  content: "\f002";
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header .site-search button:before {
    line-height: 48px;
    height: 48px;
  }
}
#header .site-search button:hover {
  border: 0;
  background: #426a73;
}
#header .site-search .woocommerce-product-search {
  display: block;
  position: relative;
}

.main-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .main-logo {
    margin: 0;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.main-logo img {
  height: 35px;
  width: auto;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .main-logo img.small {
    display: none;
  }
}
.main-logo img.large {
  display: none;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .main-logo img.large {
    display: block;
    max-height: 60px;
    height: auto;
    margin: auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .fixed-header .main-logo img.large {
    max-height: 50px;
  }
}
@media screen and (min-width: 1100px) {
  .main-logo img.large {
    max-height: 80px;
  }
}
@media screen and (min-width: 1400px) {
  .main-logo img.large {
    max-height: 90px;
  }
}
.main-logo img.no-mobile {
  display: block;
}

.toggle-nav {
  cursor: pointer;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 35px;
  height: 35px;
  margin-right: 15px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .toggle-nav {
    display: none;
  }
}
.toggle-nav .text {
  text-transform: uppercase;
  color: #426a73;
  font-weight: 600;
  width: 100%;
  margin-bottom: 3px;
  font-size: 0.75em;
  line-height: 1em;
  display: block;
}
.toggle-nav .line {
  width: 30px;
  height: 1px;
  display: block;
  content: "";
  background: #080e1a;
  margin-bottom: 5px;
}
.toggle-nav .line.second {
  width: calc(100% - 15px);
}
.toggle-nav .line.third {
  width: calc(100% - 8px);
  margin-bottom: 0;
}

.toggle-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .toggle-links {
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.toggle-links .toggle-link {
  margin-left: 15px;
  cursor: pointer;
  position: relative;
  color: #080e1a;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .toggle-links .toggle-link {
    margin-left: 5px;
    padding: 8px 10px;
    border-radius: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 40px;
    height: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: white;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .toggle-links .toggle-link:hover {
    background: #f2f2f5;
  }
}
.toggle-links .toggle-link.toggle-search {
  display: none;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .toggle-links .toggle-link.toggle-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.toggle-links .active:before {
  background: #426a73;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  right: -3px;
  z-index: 2;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .toggle-links .active:before {
    top: 6px;
    right: 6px;
  }
}
.toggle-links i {
  position: relative;
  font-size: 1.25em;
  line-height: 1em;
}
.header-cart {
  position: absolute;
  right: 15px;
  top: 17px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .header-cart {
    position: relative;
    right: auto;
    top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header-cart .icon {
  height: 20px;
}
.header-cart .icon svg {
  width: 21px;
  margin-right: 10px;
  height: 20px;
}
.header-cart .cart-total {
  display: none;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .header-cart .cart-total {
    display: block;
    font-weight: 700;
    font-size: 0.875em;
    line-height: 1em;
    color: #080e1a;
  }
}

.woocommerce .mini-cart {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 10;
  width: 100%;
  height: 100vh;
  font-family: "Radio Canada Big", sans-serif;
  -webkit-transition: 0.2s right ease-in-out;
  transition: 0.2s right ease-in-out;
  background: rgba(0, 0, 0, 0.7);
}
.cart-open .woocommerce .mini-cart {
  right: 0;
}
.woocommerce .mini-cart .cart-inner {
  background: white;
  position: fixed;
  top: 0;
  padding: 30px;
  right: -300px;
  width: 300px;
  height: 100vh;
  -webkit-transition: 0.3s right ease-in-out;
  transition: 0.3s right ease-in-out;
}
.cart-open .woocommerce .mini-cart .cart-inner {
  right: 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce .mini-cart .cart-inner {
    right: -350px;
    width: 350px;
  }
}
.woocommerce .mini-cart .cart-close {
  position: absolute;
  left: -55px;
  top: 10px;
}
.cart-open .woocommerce .mini-cart .cart-close {
  opacity: 1;
  pointer-events: visible;
}
.woocommerce .mini-cart .h3 {
  border-bottom: 1px solid #ebebeb;
  color: #080e1a;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.1875em;
  line-height: 1em;
  padding-bottom: 10px;
}
.woocommerce .mini-cart .h3 i {
  font-size: 28px;
}
.woocommerce .mini-cart .h3 .icon {
  position: relative;
  margin-right: 10px;
}
.woocommerce .mini-cart .h3 .cart-value {
  text-align: center;
  color: #080e1a;
  background: #426a73;
  width: 16px;
  height: 16px;
  position: absolute;
  top: -5px;
  letter-spacing: 0;
  font-weight: 700;
  font-size: 10px;
  line-height: 16px;
  right: -5px;
  border-radius: 50%;
}
.woocommerce .mini-cart .woocommerce-mini-cart__empty-message {
  font-size: 1.125em;
  line-height: 1em;
  letter-spacing: 1px;
  color: #080e1a;
}
.woocommerce .mini-cart .minicart-footer {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px;
  background: #f2f2f5;
}
.woocommerce .mini-cart p.woocommerce-mini-cart__total {
  font-family: "Radio Canada Big", sans-serif;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 15px;
  color: #080e1a;
  font-size: 1.125em;
  line-height: 1em;
}
.woocommerce .mini-cart .woocommerce-mini-cart__buttons {
  margin: 0;
}
.woocommerce .mini-cart .woocommerce-mini-cart__buttons a.button {
  width: 100%;
}
.woocommerce .mini-cart .woocommerce-mini-cart__buttons a.button:first-child {
  background: #0b1426;
  margin-bottom: 15px;
}
.woocommerce .mini-cart .woocommerce-mini-cart__buttons a.button:first-child:hover {
  background: #426a73;
  color: white !important;
}
.woocommerce .mini-cart .thumbnail {
  width: 80px;
  border-radius: 5px;
  border: 1px solid #ebebeb;
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce .mini-cart .thumbnail {
    width: 100px;
  }
}
.woocommerce .mini-cart .thumbnail:before {
  padding-top: 100%;
  display: block;
  content: "";
}
.woocommerce .mini-cart .thumbnail img {
  float: none;
  width: 100%;
  height: 100%;
  margin: 0;
  inset: 0;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}
.woocommerce .mini-cart ul.cart_list {
  margin: 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce .mini-cart ul.cart_list {
    height: calc(100vh - 300px);
    overflow-y: auto;
  }
}
.woocommerce .mini-cart ul.cart_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #ebebeb;
  padding: 15px 20px 15px 0;
  position: relative;
}
.woocommerce .mini-cart ul.cart_list li:first-child {
  padding-top: 0;
}
.woocommerce .mini-cart ul.cart_list li:last-child {
  border: 0;
}
.woocommerce .mini-cart ul.cart_list .remove_from_cart_button {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.woocommerce .mini-cart ul.cart_list .cart-items {
  padding: 0 0 0 20px;
  width: calc(100% - 80px);
}
.woocommerce .mini-cart ul.cart_list .cart-link {
  font-weight: 700;
  color: #080e1a;
  font-size: 0.9375em;
  line-height: 1em;
}
.woocommerce .mini-cart ul.cart_list .quantity {
  font-size: 0.875em;
  line-height: 1em;
  font-weight: 300;
}
.woocommerce .mini-cart ul.cart_list .quantity ins {
  text-decoration: none;
}
.woocommerce .mini-cart ul.cart_list .quantity del {
  display: none;
}
.woocommerce .mini-cart dl.variation {
  border: 0;
  padding: 0;
}
.woocommerce .mini-cart dl.variation dt, .woocommerce .mini-cart dl.variation p {
  font-size: 0.875em;
  line-height: 1em;
}
.woocommerce .mini-cart dl.variation dt, .woocommerce .mini-cart dl.variation dd {
  margin: 5px 0 0;
  padding: 0;
  display: inline-block;
}
.woocommerce .mini-cart dl.variation dt {
  font-weight: 300;
  padding-right: 5px;
}
.close-button {
  background: white;
  border-radius: 50px;
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  color: #0b1426;
  opacity: 0;
  pointer-events: none;
}
.close-button:hover {
  background: #426a73;
  color: white;
}
.close-button i {
  font-size: 1.5em;
  line-height: 1em;
}

.mega-close {
  display: none;
}

#header-nav {
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 10;
  width: 100%;
  height: 100vh;
  font-family: "Radio Canada Big", sans-serif;
  -webkit-transition: 0.2s left ease-in-out;
  transition: 0.2s left ease-in-out;
  background: rgba(0, 0, 0, 0.7);
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    background: none;
    position: static;
    left: auto;
    top: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: auto;
    height: auto;
    margin: 0;
    z-index: 9;
  }
}
.nav-open #header-nav {
  left: 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .nav-open #header-nav {
    left: auto;
  }
}
#header-nav .mega-menu-toggle {
  display: none;
}
#header-nav .title {
  padding: 15px 20px;
  color: #080e1a;
  margin: 0 -20px 0;
  width: calc(100% + 40px);
  font-size: 19px;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 10px;
  background: #426a73;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav .title {
    display: none;
  }
}
#header-nav .title .back {
  margin-right: 8px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: white;
  font-size: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#header-nav .mega-menu-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#header-nav .menu-close {
  position: absolute;
  right: -55px;
  top: 10px;
}
.nav-open #header-nav .menu-close {
  opacity: 1;
  pointer-events: visible;
}
#header-nav .menu-wrap {
  background: white;
  position: fixed;
  top: 0;
  padding: 20px;
  left: -320px;
  width: 320px;
  height: 100vh;
  -webkit-transition: 0.3s left ease-in-out;
  transition: 0.3s left ease-in-out;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav .menu-wrap {
    background: none;
    overflow: visible;
    height: auto;
    padding: 0;
    left: auto;
    width: auto;
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.nav-open #header-nav .menu-wrap {
  left: 0;
}
#header-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
  width: 100%;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul {
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#header-nav ul a {
  display: inline-block;
  text-decoration: none;
  padding: 18px 15px;
  display: block;
  position: relative;
  font-family: "Manrope", sans-serif;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #080e1a;
  position: relative;
  font-weight: 600;
  font-size: 1em;
  line-height: 1em;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul a {
    border: 0;
    padding: 25px 0;
    height: 100%;
    letter-spacing: 0.5px;
    margin: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    font-size: 0.875em;
    line-height: 1em;
  }
  #header-nav ul a:hover {
    color: #426a73;
  }
}
@media screen and (min-width: 1100px) {
  #header-nav ul a {
    margin: 0 15px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li:not(.mega-menu-megamenu) ul a {
    font-size: 0.9375em;
    line-height: 1.2em;
    padding: 0;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    text-align: center;
    display: inline-block;
    height: auto;
    text-transform: none;
    letter-spacing: 0;
    padding: 6px 0;
    margin: 0 auto 3px;
    color: white;
  }
  #header-nav ul li:not(.mega-menu-megamenu) ul a:before {
    width: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: block;
    background: white;
    height: 1px;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
  }
  #header-nav ul li:not(.mega-menu-megamenu) ul a:hover:before {
    width: 100%;
  }
  #header-nav ul li:not(.mega-menu-megamenu) ul a:hover {
    color: white;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li.mega-menu-megamenu > a.mega-menu-link {
    position: relative;
  }
  #header-nav ul li.mega-menu-megamenu > a.mega-menu-link:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7.5px 10px 7.5px;
    border-color: transparent transparent #426a73 transparent;
    position: absolute;
    right: 0;
    display: block;
    content: "";
    bottom: -10px;
    opacity: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: opacity 200ms ease-in, bottom 200ms ease-in, visibility 200ms ease-in;
    transition: opacity 200ms ease-in, bottom 200ms ease-in, visibility 200ms ease-in;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li.mega-menu-megamenu > ul > li > a {
    margin: 0 0 15px;
    padding: 0 0 10px;
    height: auto;
    font-family: "Radio Canada Big", sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9375em;
    line-height: 1em;
    text-transform: uppercase;
  }
  #header-nav ul li.mega-menu-megamenu > ul > li > a:hover {
    color: #080e1a;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li.mega-menu-megamenu ul ul li {
    text-align: left;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li.mega-menu-megamenu ul ul li a {
    text-align: left;
  }
}
#header-nav ul li {
  padding: 0;
  position: static;
  border-bottom: 1px solid #ebebeb;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li {
    display: block;
    border-bottom: 0;
  }
}
#header-nav ul li:before {
  display: none;
}
#header-nav ul li.current-menu-item > a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #0b1426;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li.current-menu-item > a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    background: #426a73;
    height: 4px;
    content: "";
    width: 100%;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li.current-menu-item > a:hover {
    cursor: default;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
#header-nav ul li.menu-item-has-children > a, #header-nav ul li.mega-menu-item-has-children > a {
  margin-right: 30px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li.menu-item-has-children > a, #header-nav ul li.mega-menu-item-has-children > a {
    margin-right: auto;
  }
}
#header-nav ul li.menu-item-has-children > a .menu-parent, #header-nav ul li.menu-item-has-children > a .mega-indicator, #header-nav ul li.mega-menu-item-has-children > a .menu-parent, #header-nav ul li.mega-menu-item-has-children > a .mega-indicator {
  position: absolute;
  right: -30px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  width: 30px;
  line-height: 52px;
  text-align: center;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li.menu-item-has-children > a .menu-parent, #header-nav ul li.menu-item-has-children > a .mega-indicator, #header-nav ul li.mega-menu-item-has-children > a .menu-parent, #header-nav ul li.mega-menu-item-has-children > a .mega-indicator {
    line-height: 1;
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    bottom: auto;
  }
}
#header-nav ul li.menu-item-has-children > a .menu-parent:before, #header-nav ul li.menu-item-has-children > a .mega-indicator:before, #header-nav ul li.mega-menu-item-has-children > a .menu-parent:before, #header-nav ul li.mega-menu-item-has-children > a .mega-indicator:before {
  display: block;
  content: "\f061";
  font-family: "Font Awesome 6 Pro";
  border-radius: 50%;
  width: 30px;
  font-weight: 400;
  line-height: 30px;
  height: 30px;
  background: #426a73;
  font-size: 14px;
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li.menu-item-has-children > a .menu-parent:before, #header-nav ul li.menu-item-has-children > a .mega-indicator:before, #header-nav ul li.mega-menu-item-has-children > a .menu-parent:before, #header-nav ul li.mega-menu-item-has-children > a .mega-indicator:before {
    font-weight: 400;
    background: none;
    content: "\f107";
    color: #426a73;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li.menu-item-has-children:hover a .menu-parent:before, #header-nav ul li.mega-menu-item-has-children:hover a .menu-parent:before {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
#header-nav ul li.menu-item-has-children.open a .menu-parent:before, #header-nav ul li.mega-menu-item-has-children.open a .menu-parent:before {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li.menu-item-has-children ul .menu-parent, #header-nav ul li.menu-item-has-children ul .mega-indicator, #header-nav ul li.mega-menu-item-has-children ul .menu-parent, #header-nav ul li.mega-menu-item-has-children ul .mega-indicator {
    display: none;
  }
}
#header-nav ul li ul {
  margin-bottom: 0;
  background: white;
  position: absolute;
  top: 0;
  left: -320px;
  width: 100%;
  height: 100%;
  z-index: 16;
  overflow: hidden;
  padding: 0 20px 20px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li ul {
    padding: 0;
    display: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    width: auto;
    height: auto;
    top: calc(100% + 10px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px;
    pointer-events: none;
    opacity: 0;
    overflow: visible;
    -webkit-transition: opacity 200ms ease-in, top 200ms ease-in, visibility 200ms ease-in;
    transition: opacity 200ms ease-in, top 200ms ease-in, visibility 200ms ease-in;
    background: #426a73;
    border-radius: 5px;
  }
  #header-nav ul li ul:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7.5px 10px 7.5px;
    border-color: transparent transparent #426a73 transparent;
    position: absolute;
    right: 0;
    display: block;
    content: "";
    top: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
#header-nav ul li ul.open {
  left: 0;
  overflow: auto;
  height: 100%;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li ul.open {
    height: auto;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li ul ul {
    display: none;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li:not(.mega-menu-megamenu) {
    position: relative;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li:not(.mega-menu-megamenu) ul {
    position: absolute;
    left: 50%;
    width: 220px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li:not(.mega-menu-megamenu) li {
    width: 100%;
    text-align: center;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li.mega-menu-megamenu > ul {
    left: 30px;
    right: 30px;
    padding: 30px 20px 30px 30px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #header-nav ul li.mega-menu-megamenu > ul li {
    padding-right: 20px;
  }
  #header-nav ul li.mega-menu-megamenu > ul ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    position: static;
    -webkit-transition: none;
    transition: none;
    width: 100%;
    top: auto;
    left: auto;
    opacity: 1;
    background: none;
    padding: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
@media screen and (min-width: 1520px) {
  #header-nav ul li.mega-menu-megamenu > ul {
    left: calc((100% - 1460px) / 2);
    right: calc((100% - 1460px) / 2);
  }
}
#header-nav ul li.mega-menu-megamenu > ul:before {
  display: none;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li:hover > ul, #header-nav ul li.mega-toggle-on > ul {
    opacity: 1;
    pointer-events: visible;
    top: 100%;
  }
  #header-nav ul li:hover a.mega-menu-link:before, #header-nav ul li.mega-toggle-on > a:before {
    opacity: 1;
    bottom: 0;
  }
}
#header-nav .mega-menu-description {
  display: none;
}

.account-nav {
  margin-top: 20px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .account-nav {
    display: none;
  }
}
.account-nav i {
  margin-right: 5px;
}
.account-nav a {
  width: calc(50% - 5px);
  border-radius: 5px;
  font-size: 0.9375em;
  line-height: 1.2em;
}

@keyframes pulse {
  0% {
    opacity: 0;
    margin-top: -50px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}
.banner {
  position: relative;
  z-index: 1;
}

#front-page-banner {
  height: 550px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  #front-page-banner {
    border-radius: 5px;
    margin: 0 30px;
    width: calc(100% - 60px);
  }
}
#front-page-banner .banner-item {
  height: 550px;
}
#front-page-banner .banner-item img.banner-image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset: 0;
}
#front-page-banner .banner-item .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 0 20px;
  max-width: 1460px;
  margin: 0 auto;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  #front-page-banner .banner-item .container {
    padding: 0 50px;
  }
  .sticky-text #front-page-banner .banner-item .container {
    padding-bottom: 50px;
  }
}
.sticky-text #front-page-banner .banner-item .container {
  padding-bottom: 160px;
}
@media only screen and (min-width: 768px) {
  .sticky-text #front-page-banner .banner-item .container {
    padding-bottom: 50px;
  }
}
#front-page-banner .banner-item .container h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 2.1875em;
  line-height: 1.2857142857em;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  #front-page-banner .banner-item .container h3 {
    font-size: 2.5em;
    line-height: 1.25em;
  }
}
@media screen and (min-width: 1400px) {
  #front-page-banner .banner-item .container h3 {
    font-size: 3.75em;
    line-height: 1.1666666667em;
  }
}
#front-page-banner .banner-item .container p {
  color: white;
  font-size: 1.125em;
  line-height: 1.3333333333em;
  max-width: 785px;
  font-weight: 500;
  margin: 0 0 25px;
}
@media only screen and (min-width: 768px) {
  #front-page-banner .banner-item .container p {
    font-size: 1.25em;
    line-height: 1.8em;
  }
}
#front-page-banner .banner-item .container p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  #front-page-banner .owl-item.active .banner-item .container {
    -webkit-animation: pulse 0.6s ease-in normal;
            animation: pulse 0.6s ease-in normal;
    opacity: 1;
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) {
  #front-page-banner .owl-item.active .banner-item img.banner-image {
    -webkit-animation: banner 7s ease-in normal;
            animation: banner 7s ease-in normal;
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
  }
}
#front-page-banner .slide-num {
  text-align: center;
  font-weight: 400;
  font-family: "Radio Canada Big", sans-serif;
  color: white;
  margin: 15px 0;
  font-size: 1em;
  line-height: 1.25em;
}
#front-page-banner .owl-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 30px;
  padding: 10px;
  border-radius: 80px;
  background: rgba(66, 106, 115, 0.9);
  display: none;
}
@media only screen and (min-width: 768px) {
  #front-page-banner .owl-nav {
    display: block;
  }
}
@media screen and (min-width: 1520px) {
  #front-page-banner .owl-nav {
    right: calc((100% - 1460px) / 2);
  }
}
#front-page-banner .owl-nav .owl-prev, #front-page-banner .owl-nav .owl-next {
  font-size: 1.25em;
  line-height: 2.75em;
  color: #0b1426;
  width: 55px;
  margin: 5px 0;
  height: 55px;
  padding: 0;
  border-radius: 50%;
  text-align: center;
  background: white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#front-page-banner .owl-nav .owl-prev:hover, #front-page-banner .owl-nav .owl-next:hover {
  background: #0b1426;
  color: white;
}
#front-page-banner .owl-nav .owl-prev:hover {
  padding-right: 8px;
}
#front-page-banner .owl-nav .owl-next:hover {
  padding-left: 8px;
}

#main {
  position: relative;
  z-index: 1;
}

.page-title + .row.padded {
  padding-top: 0;
}

.banner-item.overlay:after, .page-header.overlay:after, .slideshow-item.overlay:after {
  background: black;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  pointer-events: none;
  left: 0;
  bottom: 0;
  display: block;
  content: "";
  opacity: 0;
}
.banner-item.overlay-10:after, .page-header.overlay-10:after, .slideshow-item.overlay-10:after {
  opacity: 0.1;
}
.banner-item.overlay-20:after, .page-header.overlay-20:after, .slideshow-item.overlay-20:after {
  opacity: 0.2;
}
.banner-item.overlay-30:after, .page-header.overlay-30:after, .slideshow-item.overlay-30:after {
  opacity: 0.3;
}
.banner-item.overlay-40:after, .page-header.overlay-40:after, .slideshow-item.overlay-40:after {
  opacity: 0.4;
}
.banner-item.overlay-40:after, .page-header.overlay-40:after, .slideshow-item.overlay-40:after {
  opacity: 0.4;
}
.banner-item.overlay-50:after, .page-header.overlay-50:after, .slideshow-item.overlay-50:after {
  opacity: 0.5;
}
.banner-item.overlay-60:after, .page-header.overlay-60:after, .slideshow-item.overlay-60:after {
  opacity: 0.6;
}
.banner-item.overlay-70:after, .page-header.overlay-70:after, .slideshow-item.overlay-70:after {
  opacity: 0.7;
}
.banner-item.overlay-80:after, .page-header.overlay-80:after, .slideshow-item.overlay-80:after {
  opacity: 0.8;
}
.banner-item.overlay-90:after, .page-header.overlay-90:after, .slideshow-item.overlay-90:after {
  opacity: 0.9;
}
.banner-item.overlay-100:after, .page-header.overlay-100:after, .slideshow-item.overlay-100:after {
  opacity: 1;
}

.page-header {
  padding-top: 50px;
  overflow: hidden;
  z-index: 1;
  position: relative;
  min-height: 300px;
  background: #426a73;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .page-header {
    min-height: 480px;
    padding-top: 180px;
  }
}
.page-header.no-image:before {
  opacity: 0.2 !important;
}
.page-header img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  -o-object-position: top center;
     object-position: top center;
}
.page-header .row {
  z-index: 3;
  position: relative;
}
.page-header h1 {
  color: white;
  font-size: 1.75em;
  line-height: 1.1428571429em;
  margin: 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .page-header h1 {
    font-size: 2.125em;
    line-height: 1.1176470588em;
  }
}
@media screen and (min-width: 1400px) {
  .page-header h1 {
    font-size: 3.125em;
    line-height: 1em;
  }
}

.woocommerce .woocommerce-breadcrumb, .woocommerce-breadcrumb {
  color: #465568;
  margin-bottom: 20px;
  font-size: 0.8125em;
  line-height: 1.3846153846em;
  text-transform: uppercase;
  font-weight: 400;
  border-top: 1px solid #ebebeb;
  padding-top: 20px;
  width: 100%;
}
.single-product .woocommerce .woocommerce-breadcrumb, .single-product .woocommerce-breadcrumb {
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .single-product .woocommerce .woocommerce-breadcrumb, .single-product .woocommerce-breadcrumb {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 1520px) {
  .single-product .woocommerce .woocommerce-breadcrumb, .single-product .woocommerce-breadcrumb {
    padding-left: calc((100% - 1460px) / 2);
    padding-right: calc((100% - 1460px) / 2);
  }
}
.woocommerce .woocommerce-breadcrumb i, .woocommerce-breadcrumb i {
  margin: 0 4px;
  color: #426a73;
}
.woocommerce .woocommerce-breadcrumb a, .woocommerce-breadcrumb a {
  color: #465568;
  font-weight: 400;
}
.woocommerce .woocommerce-breadcrumb a:first-child:before, .woocommerce-breadcrumb a:first-child:before {
  font-family: "Font Awesome 6 Pro";
  margin-right: 5px;
  content: "\f015";
  color: #426a73;
  display: inline-block;
}

.socials a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 36px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 36px;
  background: white;
  color: #0b1426;
  text-align: center;
  font-weight: 400;
  border-radius: 50%;
  margin: 0 7px 7px 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .socials a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
main .socials a {
  background: #f2f2f5;
  color: #0b1426;
  margin: 0 15px 0 0;
}
.socials a:hover {
  background: #426a73;
  color: white;
}
.socials a i {
  font-size: 1em;
  line-height: 1em;
}

.opening-hours .opening-hour {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5px;
  max-width: 250px;
}
.opening-hours .opening-hour:last-child {
  margin-bottom: 0;
}
.opening-hours strong {
  font-weight: 300;
}

#footer {
  position: relative;
  z-index: 2;
}
#footer .heading {
  color: white;
  letter-spacing: 0.6px;
  font-weight: 600;
  margin: 0 0 25px;
  width: 100%;
  text-transform: uppercase;
  font-size: 0.875em;
  line-height: 1.0714285714em;
}
#footer .newsletter {
  border-bottom: 1px solid #16294e;
  padding-bottom: 30px;
  width: 100%;
}
@media screen and (min-width: 1100px) {
  #footer .newsletter {
    border-bottom: 0;
    padding-right: 30px;
    width: 30%;
    border-right: 1px solid #16294e;
  }
}
@media screen and (min-width: 1400px) {
  #footer .newsletter {
    padding-right: 50px;
  }
}
#footer .newsletter p.info {
  margin-bottom: 20px;
}
#footer .newsletter .newsletter-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 0 20px;
}
#footer .newsletter .newsletter-form label {
  width: calc(100% - 90px);
  display: block;
}
#footer .newsletter .newsletter-form input[type=email] {
  margin: 0;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 5px 0 0 5px;
}
#footer .newsletter .newsletter-form input[type=submit] {
  background: white;
  padding: 10px 15px;
  color: #426a73;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 0.875em;
  line-height: 1em;
  width: 90px;
  border-radius: 0 5px 5px 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer .newsletter .newsletter-form input[type=submit] {
    width: 90px;
    min-width: 0;
  }
}
#footer .newsletter .newsletter-form input[type=submit]:hover {
  background: #426a73;
  color: white;
}
#footer .newsletter .newsletter-form .wpcf7-spinner {
  display: none;
}
#footer .contacts {
  border-bottom: 1px solid #16294e;
  padding-bottom: 30px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer .contacts {
    width: 45%;
    border-bottom: 0;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1100px) {
  #footer .contacts {
    width: 35%;
    padding-left: 30px;
  }
}
@media screen and (min-width: 1400px) {
  #footer .contacts {
    padding-left: 50px;
  }
}
#footer .contacts i {
  width: 30px;
  display: inline-block;
  text-align: center;
  color: #426a73;
  position: absolute;
  top: 3px;
  left: 0;
  font-size: 1.125em;
  line-height: 1.2222222222em;
}
#footer .contacts a {
  font-weight: 300;
  display: inline-block;
  position: relative;
  color: white;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer .contacts a:before {
    width: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: block;
    background: white;
    height: 1px;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer .contacts a:hover:before {
    width: 100%;
  }
}
#footer .contacts p {
  margin-bottom: 15px;
  position: relative;
  font-size: 0.9375em;
  line-height: 1.8666666667em;
  padding-left: 40px;
  max-width: 420px;
}
#footer .contacts p:last-child {
  margin: 0;
}
@media only screen and (min-width: 640px) {
  #footer .menu, #footer .follow-us {
    width: 50%;
  }
}
#footer .menu {
  border-bottom: 1px solid #16294e;
  padding-bottom: 30px;
}
@media only screen and (min-width: 640px) {
  #footer .menu {
    border-bottom: 0;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer .menu {
    width: 40%;
  }
}
@media screen and (min-width: 1100px) {
  #footer .menu {
    width: 17%;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer .follow-us {
    width: 30%;
  }
}
@media screen and (min-width: 1100px) {
  #footer .follow-us {
    width: 18%;
  }
}
#footer #footer-section {
  background: #0b1426;
  padding-top: 30px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer #footer-section {
    padding-top: 40px;
  }
}
#footer #footer-section .col {
  margin-bottom: 25px;
}
@media only screen and (min-width: 768px) {
  #footer #footer-section .col {
    margin-bottom: 35px;
  }
}
#footer #footer-section p {
  color: white;
}
#footer .footer-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 30px 10px;
  margin-top: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1400px) {
  #footer .footer-logos {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 0;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
#footer .footer-logos .logo-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(50% - 5px);
  margin: 0;
}
@media screen and (min-width: 1400px) {
  #footer .footer-logos .logo-item {
    padding: 0 30px;
    width: auto;
    border-left: 1px solid #558893;
  }
}
#footer .footer-logos .logo-item:first-child {
  border: 0;
}
#footer .footer-logos .logo-item:last-child {
  padding-right: 0;
}
#footer .footer-logos .logo-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
#footer .footer-logos .logo-item img {
  width: auto;
  height: auto;
  margin: auto;
  max-height: 50px;
  margin: auto;
  max-width: 100%;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#footer #footer-end {
  background: #0b1426;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
  align-items: center;
  width: 100%;
  border-top: 1px solid #16294e;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer #footer-end {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#footer #footer-end .copyright {
  color: white;
  margin-bottom: 15px;
  font-size: 0.875em;
  line-height: 1em;
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer #footer-end .copyright {
    margin-bottom: 0;
    width: auto;
  }
}
#footer #footer-end .copyright a {
  color: white;
  font-weight: 300;
}
#footer #footer-end .payment-logo {
  max-height: 37px;
  width: auto;
  height: auto;
}
#footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9375em;
  line-height: 1em;
}
#footer ul li {
  margin: 0 0 10px;
  padding: 0;
  display: block;
}
#footer ul li:before {
  display: none;
}
#footer ul a {
  font-weight: 300;
  display: inline-block;
  position: relative;
  color: white;
  padding: 6px 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer ul a {
    padding: 2px 0 4px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer ul a:before {
    width: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: block;
    background: white;
    height: 1px;
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer ul a:hover:before {
    width: 100%;
  }
}
/*# sourceMappingURL=main.css.map */