@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: #D2D2D2;
  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: #afded9;
  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-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: #D3EDEA;
}

.primary-background {
  background: #03A49C;
}

.secondary-background {
  background: #09333f !important;
}

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

.hide {
  display: none !important;
  visibility: hidden !important;
}

.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 .icon-boxes.courses-included .icon-box.col .read-more-btn, .icon-boxes.courses-included .icon-box.col .getin-touch.col-container .read-more-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 .icon-boxes.courses-included .icon-box.col .read-more-btn:last-child, .icon-boxes.courses-included .icon-box.col .getin-touch.col-container .read-more-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 .icon-boxes.courses-included .icon-box.col .read-more-btn i, .icon-boxes.courses-included .icon-box.col .getin-touch.col-container .read-more-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: #07242F;
  margin: auto;
}
.logo-carousel .logo-item a:hover span {
  color: #03A49C;
}
.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: #03A49C;
}
.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.courses-included .icon-box.col .read-more-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: "Urbanist", 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 .icon-boxes.courses-included .icon-box.col .read-more-btn, .icon-boxes.courses-included .icon-box.col .icon-boxes.small .read-more-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(3, 164, 156, 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: #09333f;
  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(9, 51, 63, 0.9);
}
.landing-items:hover .text h3 {
  color: white;
}

.scrolling-landing {
  overflow: hidden;
}

.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: #09333f;
  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(3, 164, 156, 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: #07242F;
  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: #03A49C;
  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: #03A49C;
  margin-bottom: 15px;
}
.box-item h2 a {
  font-weight: 600;
}

.row.image-block {
  position: relative;
  height: 500px;
  background: #03A49C;
}
@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: #07242F;
  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: #03A49C;
}

.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: #07242F;
    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(3, 164, 156, 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);
    -ms-flex-line-pack: center;
        align-content: center;
  }
}
@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-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: #07242F;
  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: #09333f;
  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 #D3EDEA;
  padding-left: 30px;
  margin: 0 0 30px;
}
.quote p strong {
  text-transform: uppercase;
  font-size: 0.875em;
  line-height: 1em;
  color: #07242F;
  display: block;
  margin: 20px 0 0;
}

.blockquote, blockquote {
  border-left: 5px solid #07242F;
  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: "Urbanist", sans-serif;
  color: #07242F;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  overflow: visible;
  position: relative;
  width: 100%;
  border: 0;
  height: 1px;
  background: #ebebeb;
  max-width: 1660px;
  margin: 52.5px auto;
}
hr.margin {
  margin: 52.5px auto;
}
hr:after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: #07242F;
  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: #07242F;
}
.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: #09333f;
}
.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: "Urbanist", sans-serif;
  letter-spacing: 0.6px;
  color: #03A49C;
  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: "Urbanist", sans-serif;
  letter-spacing: 0.6px;
  color: #03A49C;
  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: #09333f;
  background: #D3EDEA;
  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% - 1660px) / 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% - 1660px) / 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(9, 51, 63, 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: #09333f;
  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 .icon-boxes.courses-included .icon-box.col .read-more-btn, .icon-boxes.courses-included .icon-box.col .flex-content .price-box .read-more-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: #03A49C;
  border-color: #03A49C;
}
@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 .icon-boxes.courses-included .icon-box.col .read-more-btn:hover, .icon-boxes.courses-included .icon-box.col .flex-content .price-box.highlight .read-more-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: #03A49C;
  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: #07242F;
  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: #03A49C;
  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: #03A49C;
  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: #D3EDEA;
  }
}
@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: #03A49C;
  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: #09333f;
  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: #03A49C;
  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: #03A49C;
  color: white;
  border-color: #03A49C;
  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: #09333f;
  margin-right: 0;
  margin-left: auto;
  padding-right: 20px;
}
.download-row a {
  background: #03A49C;
  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: #09333f;
  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: #07242F;
}
.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: #03A49C;
  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: #07242F;
  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: #03A49C !important;
  color: white;
}

.woocommerce form label {
  display: block;
  font-family: "Urbanist", sans-serif;
  color: #07242F;
  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: #353535;
  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: #D2D2D2 !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: #353535;
  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: #353535;
  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: #09333f;
  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: #09333f;
  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: #09333f;
  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: #353535;
  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: #09333f;
    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: #D3EDEA;
  color: #07242F;
  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 {
  display: none;
}
.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: #03A49C;
  -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: "Urbanist", 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: #07242F;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.customer-dashboard .three-col a:hover {
  background: #09333f;
}
.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: #03A49C;
  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: #353535;
  font-weight: 300;
}
.woocommerce-account nav.woocommerce-MyAccount-navigation ul li a:hover {
  color: #03A49C;
}
.woocommerce-account nav.woocommerce-MyAccount-navigation ul li a[aria-current] {
  color: #09333f;
  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: "Urbanist", sans-serif;
  color: #07242F;
  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: #07242F;
  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: #07242F;
  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: #D3EDEA;
}
.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: #03A49C;
}
.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: "Urbanist", sans-serif;
  font-size: 0.75em;
  line-height: 1em;
  background: #03A49C;
  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: #09333f;
  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: #353535;
}
.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: #03A49C;
  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 #09333f;
  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: #03A49C;
  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: #353535;
  font-weight: 300;
}
.leftsidebar [class*=widget_] ul li a:hover, .filter-bar [class*=widget_] ul li a:hover {
  color: #03A49C;
}
.leftsidebar [class*=widget_] ul li a[aria-current], .filter-bar [class*=widget_] ul li a[aria-current] {
  color: #09333f;
  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: #03A49C;
  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(3, 164, 156, 0.8);
  width: 50px;
  height: 50px;
  border-radius: 50px;
  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;
    background: #03A49C;
  }
}
.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: #09333f;
  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: #07242F;
  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: "Urbanist", sans-serif;
  letter-spacing: 0.3px;
}
.icon-link i {
  width: 50px;
  height: 50px;
  background: white;
  font-size: 1.5em;
  line-height: 2.0833333333em;
  color: #03A49C;
  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: #07242F;
}
.project-category .icon-link i {
  background: #09333f;
  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: "Urbanist", sans-serif;
  padding-right: 15px;
  color: #03A49C;
}
@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: #03A49C;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.list-item .post-image a {
  position: relative;
  background: #D3EDEA;
  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: #09333f;
}
.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 .icon-boxes.courses-included .icon-box.col .read-more-btn, .icon-boxes.courses-included .icon-box.col .list-item .read-more-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: "Urbanist", 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: "Urbanist", sans-serif;
  font-size: 0.75em;
  line-height: 1em;
  background: #03A49C;
  color: white;
  display: inline-block;
  border-radius: 5px;
  text-transform: uppercase;
  margin: 0 5px 10px 0;
}
.category-link:hover {
  background: #09333f;
  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: #4f4f4f;
  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: "Urbanist", sans-serif;
  color: #03A49C;
  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: #09333f;
  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: #D3EDEA;
  color: #03A49C;
}
.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: #07242F;
  padding: 8px 0;
  font-weight: 600;
  font-family: "Urbanist", 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: #09333f;
}
@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: #09333f;
    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: #03A49C;
}
@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: #07242F;
  font-weight: 700;
  margin-right: 15px;
}
.single-item .comments ul li .comment-author cite.fn a {
  color: #07242F;
}
.single-item .comments ul li .comment-meta {
  margin-bottom: 10px;
  font-size: 0.875em;
  line-height: 1.2857142857em;
  color: #4f4f4f;
}
.single-item .comments ul li .comment-meta a {
  color: #4f4f4f;
  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: "Urbanist", 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: #09333f;
  -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: #09333f;
}
.post-navigation a:hover {
  background: #03A49C;
  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: #03A49C;
  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: "Urbanist", sans-serif;
  background: #03A49C;
  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: #09333f;
}
.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: #03A49C;
  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: #07242F;
    border: 0;
    padding: 15px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: "Urbanist", 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: #e9f6f4;
}
.datatable tbody tr:nth-child(even) {
  background: #e9f6f4;
}
.widget_calendar {
  display: table;
  width: 100%;
}

#wp-calendar {
  width: 100%;
}
#wp-calendar caption {
  text-align: right;
  color: #07242F;
  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: #07242F;
  font-family: sans-serif;
  font-weight: 300;
}
#wp-calendar tbody td {
  background: #D3EDEA;
  border: 1px solid #D3EDEA;
  text-align: center;
  padding: 8px;
}
#wp-calendar tbody td:hover {
  background: #D3EDEA;
}
#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;
}

.page-id-5495 .page-title, .page-id-5499 .page-title {
  display: none;
}

.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: #07242F;
  margin: 0;
  font-family: "Urbanist", 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: #07242F;
}
.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: #07242F;
  font-family: "Urbanist", 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: #03A49C;
  -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: #09333f;
  border-color: #09333f;
  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: #03A49C;
}

.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: #D3EDEA;
  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: #03A49C;
  font-size: 1.5em;
  line-height: 1em;
  margin: 0 0 8px;
}
.product-icons p {
  color: #07242F;
  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: #03A49C;
  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: "Urbanist", sans-serif;
  padding: 0;
  z-index: 3;
  font-size: 14px;
  display: none;
}
.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: "Urbanist", sans-serif;
  font-size: 0.8125em;
  line-height: 1em;
  color: #03A49C;
  display: inline-block;
  text-transform: uppercase;
  margin: 0 5px 5px 0;
}
.woocommerce .brand-linka:hover {
  color: #09333f;
}
.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: #07242F !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: #09333f;
  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: "Urbanist", 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: #03A49C;
  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: #353535;
  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: #353535;
}
.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: #07242F;
}
.woocommerce ul.products li.product .star-rating {
  margin: 0 0 10px;
  width: 100%;
  color: #03A49C;
}
.woocommerce ul.products li.product .star-rating:before, .woocommerce ul.products li.product .star-rating span:before {
  color: #03A49C;
}
.woocommerce ul.products li.product p.stock {
  margin: auto 0 auto auto;
}
.woocommerce ul.products li.product:hover h2 {
  color: #03A49C;
}
@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: #09333f;
  margin-bottom: 0;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
}
.woocommerce ul.products li.product .price del {
  color: #5b5b5b;
  text-decoration: none;
  font-weight: 400;
  margin-right: 5px;
  position: relative;
}
.woocommerce ul.products li.product .price del:after {
  border-top: 1px solid #5b5b5b;
  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: #353535;
  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: #03A49C;
  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: #09333f;
  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: #07242F;
  background: #03A49C;
  color: white;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  z-index: 10;
  pointer-events: visible;
  font-family: "Urbanist", sans-serif;
  text-indent: -9999px;
}
.woocommerce ul.products li.product a.added_to_cart:hover {
  background: #09333f;
  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: #07242F;
  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: #03A49C;
  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: #07242F;
  }
}
.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: #07242F;
  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: #03A49C;
  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: "Urbanist", sans-serif;
  font-weight: 700;
  color: #07242F;
}
.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: 20px;
  }
}
.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: #07242F;
  margin-bottom: 20px;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
}
.woocommerce div.product form.cart .group_table .woocommerce-grouped-product-list-item__price del {
  color: #5b5b5b;
  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 #5b5b5b;
  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: #353535;
  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: #353535;
}
.woocommerce div.product form.cart .group_table .woocommerce-grouped-product-list-item__label a:hover {
  color: #03A49C;
}
.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: #07242F;
}
.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: #5b5b5b;
}
.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: #5b5b5b;
}
@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: #03A49C;
    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: #07242F !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: #03A49C !important;
  padding: 8px;
  color: #07242F !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: #03A49C;
  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: #03A49C;
}
.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: #03A49C;
}
.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: #5b5b5b;
  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: #07242F;
  margin-bottom: 15px;
  display: inline-block;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
}
.woocommerce div.product div.summary p.price del, .woocommerce div.product div.summary span.price del {
  color: #5b5b5b;
  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 #5b5b5b;
  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: #353535;
  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: "Urbanist", sans-serif;
  font-size: 13px;
  line-height: 13px;
  background: #03A49C;
  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: #D3EDEA;
  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: #07242F !important;
  font-size: 20px !important;
  line-height: 30px !important;
  padding: 15px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-family: "Urbanist", sans-serif;
  position: relative;
  font-weight: 600;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-size: 25px !important;
    line-height: 35px !important;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce div.product .woocommerce-tabs ul.tabs li a {
    padding: 20px 40px 18px 30px !important;
  }
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a i {
  color: #07242F;
  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: #03A49C;
  }
}
@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: #09333f;
}
.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: #03A49C;
  height: 3px;
  display: none;
}
.woocommerce div.product .woocommerce-tabs .woocommerce-Tabs-panel {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 12px 12px 12px;
  padding: 0 30px 30px;
  max-width: 1550px;
  background: #fafafa;
  margin: -1px 0 0;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.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: #07242F;
  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: #353535;
  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: #03A49C;
  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: #5b5b5b;
  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: #07242F;
  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: #D3EDEA;
  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: "Urbanist", sans-serif;
  font-weight: 700;
  color: #09333f;
}
.woocommerce .cart-collaterals .cart_totals .shop_table tr .woocommerce-Price-amount {
  display: block;
  text-align: right;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  color: #09333f;
}
.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 {
  display: none !important;
}
.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 .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: #03A49C;
  color: #09333f;
  font-weight: 600;
  font-family: "Urbanist", 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: #09333f;
  font-family: "Urbanist", 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: #5b5b5b;
}
.woocommerce .woocommerce-cart-form .shop_table_responsive del:after, .woocommerce .woocommerce-checkout-review-order-table del:after {
  border-top: 1px solid #5b5b5b;
  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: #07242F;
}
.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: #353535;
  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: #03A49C;
}
.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: #03A49C;
  color: #09333f;
  font-weight: 600;
  font-family: "Urbanist", 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: #07242F;
  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: #03A49C;
}
.woocommerce ul#shipping_method li input:checked + label:before {
  background: #09333f;
}
.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: #07242F;
  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: #03A49C !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: #D3EDEA;
  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: #03A49C;
  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 form.checkout_coupon {
  margin: 0;
  border: 0;
  clear: both;
  display: block !important;
  padding: 15px 0 0;
}
.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;
  width: calc(100% - 180px);
}
.woocommerce #order_review form.checkout_coupon .form-row-first input {
  border-radius: 5px 0 0 5px;
  border-right: 0;
}
.woocommerce #order_review form.checkout_coupon .form-row-last {
  width: 180px;
  margin: 0;
}
.woocommerce #order_review form.checkout_coupon .form-row-last button {
  width: 180px;
  border-radius: 0 5px 5px 0;
}
.woocommerce .woocommerce-checkout-review-order-table {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 100%;
}
.woocommerce .woocommerce-billing-fields h3 {
  margin-bottom: 20px;
}
.woocommerce #checkout-delivery {
  margin: 20px 0 25px;
}
.woocommerce h3#checkout-additional {
  display: none;
}
.woocommerce .shipping-delivery {
  display: none !important;
  -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: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 100%;
  background: none;
  padding: 0;
}
.woocommerce #payment:before {
  content: "Payment Method";
  display: block;
  margin: 20px 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: #07242F;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.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 #03A49C;
  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 input:checked + label {
  border-color: #03A49C;
  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: #09333f;
}
.woocommerce #payment ul.payment_methods li .rvvup-payment-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.woocommerce #payment ul.payment_methods li .rvvup-payment-icon {
  width: 48px;
  height: 48px;
  border-radius: 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;
  background: #e2f3f0;
  color: #07242F;
  font-size: 26px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.woocommerce #payment ul.payment_methods li .rvvup-payment-icon i {
  font-size: 28px;
}
.woocommerce #payment ul.payment_methods li .rvvup-payment-icon--card {
  background: #f2f0ff;
}
.woocommerce #payment ul.payment_methods li .rvvup-payment-icon--bank {
  background: #eaf3ff;
}
.woocommerce #payment ul.payment_methods li .rvvup-payment-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.woocommerce ul.order_details {
  background: #D3EDEA;
  padding: 20px;
  margin: 0 auto 30px;
  display: inline-block;
  font-weight: 700;
  color: #07242F;
}
.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;
  }
}
.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;
  }
}
.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% - 1660px) / 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: "Urbanist", sans-serif;
  background: white;
  color: #09333f;
  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: #03A49C;
  color: white;
}
.pwb-az-listing ul.pwb-clearfix li:before {
  display: none;
}
.pwb-az-listing .pwb-az-listing-title {
  color: #07242F;
  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: #07242F;
}
@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: #03A49C;
    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: #03A49C;
  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% - 1660px) / 2);
    margin-right: calc((100% - 1660px) / 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: #07242F;
}
@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: #07242F;
  border-color: #07242F;
  color: white;
}

.woocommerce-error {
  background: #e74c3c;
}

.woocommerce-message {
  background: #2ecc71;
}

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

/* Career Programme Cards - Matching Reference Design */
.course-category-card.career-programme-card-theme {
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.course-category-card.career-programme-card-theme .sale-badge {
  top: 18px !important;
  right: 18px !important;
  border-radius: 999px !important;
  padding: 8px 18px !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.05em !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, #ff6b6b, #ff4757) !important;
  color: white !important;
  text-transform: uppercase !important;
  -webkit-box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3) !important;
          box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3) !important;
}

.career-programme-card {
  background: white !important;
  position: relative;
  min-height: 100%;
  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;
  overflow: hidden;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.career-programme-card__header {
  display: none;
}

.career-programme-card__emblem {
  display: none;
}

.career-programme-card__pill {
  display: none;
}

.career-programme-card__title {
  font-size: 20px !important;
  font-weight: 800;
  color: #07242F;
  margin: 0 0 12px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media only screen and (min-width: 768px) {
  .career-programme-card__title {
    font-size: 28px !important;
  }
}
.career-programme-card__title a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.career-programme-card__title a:hover {
  color: #03A49C;
}
@media (max-width: 600px) {
  .career-programme-card__title {
    font-size: 1.5rem;
  }
}

.career-programme-card__description {
  margin: 0 0 16px 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #0f576c;
}

.career-programme-card__stats {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0 1fr 0 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 18px;
  background: #f6f9fa;
  border-radius: 12px;
  padding: 24px 12px;
}
@media (max-width: 768px) {
  .career-programme-card__stats {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.career-programme-card__stat {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 0 8px;
  position: relative;
}
.career-programme-card__stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: #dde6ea;
}
@media (max-width: 768px) {
  .career-programme-card__stat:not(:last-child)::after {
    display: none;
  }
}
.career-programme-card__stat i {
  display: none;
}
.career-programme-card__stat div {
  width: 100%;
}
.career-programme-card__stat .stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #1a4d5c;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.career-programme-card__stat .stat-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a8f9a;
  font-weight: 500;
  margin-top: 2px;
}

.career-programme-card__highlights {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
  padding-left: 15px !important;
}
.career-programme-card__highlights li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: #1a4d5c;
  font-weight: 600;
  text-align: center;
}
.career-programme-card__highlights li i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #03A49C;
  color: white;
  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: 0.6rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.career-programme-card__highlights li span {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}
@media (max-width: 600px) {
  .career-programme-card__highlights {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.career-programme-card__highlights:before, .career-programme-card__highlights:after {
  display: none !important;
}

.career-programme-card__cta {
  padding-top: 8px;
  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;
}
@media (min-width: 768px) {
  .career-programme-card__cta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 12px;
  }
}
.career-programme-card__cta .enroll-button {
  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;
  gap: 3px;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  padding: 14px 22px;
  background: #03A49C;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.career-programme-card__cta .enroll-button i {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  font-size: 0.95rem;
}
.career-programme-card__cta .enroll-button i:last-child {
  margin-left: 4px;
}
.career-programme-card__cta .enroll-button:hover {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  background: #038b84;
  color: white;
}
.career-programme-card__cta .enroll-button:hover i:last-child {
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}
.career-programme-card__cta .enroll-button:active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.career-programme-card__cta .details-button {
  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;
  gap: 8px;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #ffffff;
  color: #07242F;
  text-align: center;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: inset 0 0 0 1px rgba(3, 164, 156, 0.05);
          box-shadow: inset 0 0 0 1px rgba(3, 164, 156, 0.05);
}
.career-programme-card__cta .details-button i {
  font-size: 0.95rem;
  margin-left: 8px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.career-programme-card__cta .details-button:hover {
  border-color: rgba(3, 164, 156, 0.4);
  color: #03A49C;
  -webkit-box-shadow: 0 8px 20px rgba(3, 164, 156, 0.1);
          box-shadow: 0 8px 20px rgba(3, 164, 156, 0.1);
}
.career-programme-card__cta .details-button:hover i {
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}
.career-programme-card__cta .btn-icon {
  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: left;
      -ms-flex-pack: left;
          justify-content: left;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: inherit;
  font-size: 1rem;
}
.career-programme-card__cta .details-button .btn-icon {
  color: #03A49C;
}
.career-programme-card__cta .btn-label {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  white-space: nowrap;
}

/* ================================
   Vendor Category Cards
   ================================ */
.vendor-cards-section.secondary-background .section-heading {
  color: #fff;
}
.vendor-cards-section .section-heading {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #07242F;
}

.vendor-cards-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .vendor-cards-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .vendor-cards-grid {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}

.vendor-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  border: 2px solid #e5f4f3;
  border-radius: 16px;
  padding: 35px 30px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  -webkit-box-shadow: 0 4px 12px rgba(9, 51, 63, 0.08);
          box-shadow: 0 4px 12px rgba(9, 51, 63, 0.08);
}
.vendor-card:hover {
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 20px 50px rgba(3, 164, 156, 0.15);
          box-shadow: 0 20px 50px rgba(3, 164, 156, 0.15);
  border-color: #03A49C;
}
.vendor-card:hover .view-courses {
  color: white;
}
.vendor-card:hover .view-courses i {
  -webkit-transform: translateX(5px);
      -ms-transform: translateX(5px);
          transform: translateX(5px);
}
.vendor-card:hover .vendor-icon i {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  color: #03A49C;
}
.vendor-card:hover .vendor-icon .category-thumbnail {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.vendor-card .urgency-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  -webkit-box-shadow: 0 2px 8px rgba(238, 90, 111, 0.25);
          box-shadow: 0 2px 8px rgba(238, 90, 111, 0.25);
}
.vendor-card .vendor-icon {
  margin: 10px 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;
  min-height: 80px;
  background: linear-gradient(135deg, #feffff 0%, #ffffff 100%);
  border-radius: 12px;
  padding: 20px;
}
.vendor-card .vendor-icon i {
  font-size: 3.5rem;
  color: #555;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.vendor-card .vendor-icon .category-thumbnail {
  max-width: 180px;
  width: 100%;
  height: auto;
  max-height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.vendor-card .vendor-name {
  display: none;
  font-size: 1.75rem;
  font-weight: 700;
  color: #07242F;
  margin-bottom: 15px;
  line-height: 1.3;
}
.vendor-card .category-description {
  font-size: 15px;
  line-height: 1.6;
  color: #0f576c;
  margin-bottom: 25px;
  text-align: center;
  padding: 0 10px;
  min-height: 50px;
}
.vendor-card .stats-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px 20px;
  background: linear-gradient(135deg, #feffff 0%, #f0f9f8 100%);
  border-radius: 12px;
}
.vendor-card .stats-grid .stat-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.vendor-card .stats-grid .stat-item .stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: #03A49C;
  line-height: 1;
}
.vendor-card .stats-grid .stat-item .stat-label {
  font-size: 0.8rem;
  color: #062129;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}
.vendor-card .included-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}
.vendor-card .included-features li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: #495057;
  font-weight: 500;
  text-align: left;
}
.vendor-card .included-features li i {
  color: #28a745;
  font-size: 1.1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.vendor-card .view-courses {
  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;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  padding: 15px 25px;
  background: linear-gradient(135deg, #03A49C 0%, #027c76 100%);
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: auto;
  -webkit-box-shadow: 0 4px 15px rgba(3, 164, 156, 0.25);
          box-shadow: 0 4px 15px rgba(3, 164, 156, 0.25);
}
.vendor-card .view-courses:hover {
  background: linear-gradient(135deg, #038b84 0%, #026863 100%);
  -webkit-box-shadow: 0 6px 20px rgba(3, 164, 156, 0.35);
          box-shadow: 0 6px 20px rgba(3, 164, 156, 0.35);
}
.vendor-card .view-courses i {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

@media (max-width: 767px) {
  .vendor-cards-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .vendor-card {
    padding: 25px 20px;
  }
  .vendor-card .vendor-name {
    font-size: 1.5rem;
  }
  .vendor-card .stats-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .vendor-card .stats-grid .stat-item {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .vendor-card .stats-grid .stat-item:last-child {
    border-bottom: none;
  }
}
/**
 * Career Programme Cards Styling
 *
 * Compact colorful design inspired by newtotraining.com homepage
 * Features: Pastel backgrounds, minimal height, horizontal course scroll
 */
.career-programme-section {
  padding: 60px 0;
}
.career-programme-section.padded-top {
  padding-top: 80px;
}
.career-programme-section.padded-bottom {
  padding-bottom: 80px;
}
.career-programme-section.secondary-background .section-header .section-heading {
  color: white;
}
.career-programme-section.secondary-background .section-header .section-subheading {
  color: white;
}
.career-programme-section .section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px auto;
}
.career-programme-section .section-header .section-heading {
  color: #1a202c;
  margin-bottom: 12px;
  font-size: 2.2rem;
}
.career-programme-section .section-header .section-subheading {
  color: #64748b;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1rem;
}
.career-programme-section .career-programme-grid {
  display: -ms-grid;
  display: grid;
  gap: 24px;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1200px) {
  .career-programme-section .career-programme-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .career-programme-section .career-programme-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.career-programme-section.layout-slider .career-programme-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding-bottom: 16px;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}
.career-programme-section.layout-slider .career-programme-grid > * {
  min-width: 340px;
  scroll-snap-align: start;
}
.career-programme-section.layout-slider .career-programme-grid::-webkit-scrollbar {
  height: 6px;
}
.career-programme-section.layout-slider .career-programme-grid::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 999px;
}

.career-card {
  border-radius: 16px;
  border: none;
  position: relative;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-start, #D6D8FF) 0%, var(--accent-end, #E8EAFF) 100%);
}
.career-card:hover {
  -webkit-transform: translateY(-6px);
      -ms-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.12);
          box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.12);
}
.career-card__surface {
  position: relative;
  padding: 28px 24px;
  height: 100%;
  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;
}
.career-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  margin-bottom: -4px;
}
.career-card__icon img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.career-card__icon i {
  font-size: 45px;
  line-height: 1;
  color: var(--icon-color, var(--accent-end, #4f46e5)) !important;
  --fa-primary-color: var(--icon-color, var(--accent-end, #4f46e5));
  --fa-secondary-color: color-mix(in srgb, var(--icon-color, var(--accent-end, #4f46e5)) 50%, white);
  --fa-primary-opacity: 1;
  --fa-secondary-opacity: 0.5;
}
.career-card__icon-fallback {
  font-size: 32px;
  opacity: 0.7;
}
.career-card__labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 6px;
  margin-left: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.career-card__badge, .career-card__pill {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 6px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  white-space: nowrap;
  line-height: 1;
}
.career-card__badge {
  background: rgba(255, 255, 255, 0.95);
  color: var(--icon-color, var(--accent-end, #6366f1));
  font-weight: 800;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid color-mix(in srgb, var(--icon-color, var(--accent-end, #6366f1)) 20%, transparent);
  display: none;
}
.career-card__pill {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff4d8d 100%);
  color: #fff;
  font-weight: 700;
  border: none;
  -webkit-box-shadow: 0 4px 12px -2px rgba(255, 77, 141, 0.35);
          box-shadow: 0 4px 12px -2px rgba(255, 77, 141, 0.35);
  letter-spacing: 0.07em;
  position: relative;
  overflow: hidden;
}
.career-card__pill--neutral {
  background: rgba(255, 255, 255, 0.85);
  color: #1a202c;
  font-weight: 700;
  border: 1px solid rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.career-card__body {
  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;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.career-card__title {
  font-size: 28px;
  font-weight: 600;
  color: #07242F;
  margin: 0;
  line-height: 1.25;
}
.career-card__tagline {
  display: none;
}
.career-card__metrics {
  list-style: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 8px minmax(0, 1fr) 8px minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 12px 14px;
  margin: 0;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}
.career-card__metrics li {
  text-align: center;
  padding: 4px 0;
}
.career-card__metrics .metric-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a202c;
  display: block;
  margin-bottom: 3px;
  line-height: 1;
}
.career-card__metrics .metric-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 0.06em;
  font-weight: 600;
  line-height: 1.2;
}
.career-card__highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 12px;
}
.career-card__highlights li {
  position: relative;
  padding-left: 26px;
  color: #07242F;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
}
.career-card__highlights li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 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;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: var(--icon-color, var(--accent-end, #5a5fcc));
  border-radius: 50%;
}
.career-card__courses {
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--icon-color, var(--accent-end, #5a5fcc)) 20%, transparent);
  position: relative;
}
.career-card__courses .courses-heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.career-card__courses .scroll-progress {
  position: relative;
  height: 4px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  margin-top: 10px;
  overflow: hidden;
}
.career-card__courses .scroll-progress .scroll-thumb {
  position: absolute;
  height: 100%;
  background: #03A49C;
  border-radius: 4px;
  -webkit-transition: left 0.1s ease-out, width 0.1s ease-out;
  transition: left 0.1s ease-out, width 0.1s ease-out;
  min-width: 60px;
}
.career-card__courses .courses-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  overflow-x: scroll;
  overflow-y: hidden;
  padding-bottom: 4px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.career-card__courses .courses-grid::-webkit-scrollbar {
  display: none;
}
.career-card__courses .course-card {
  border-radius: 10px;
  padding: 8px;
  text-align: center;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  min-width: 90px;
  max-width: 95px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  backdrop-filter: blur(10px);
  scroll-snap-align: start;
}
.career-card__courses .course-card:hover {
  background: rgba(255, 255, 255, 0.4);
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.career-card__courses .course-card .course-img {
  width: 100%;
  height: auto;
  max-height: 52px;
  border-radius: 6px;
  margin-bottom: 6px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}
.career-card__courses .course-card .course-title {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.3;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.career-card__footer {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  padding-top: 16px;
}
.career-card__pricing {
  display: -ms-grid;
  display: grid;
  gap: 6px;
}
.career-card__pricing .career-card__regular {
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 0.88rem;
}
.career-card__pricing .career-card__current {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a202c;
  line-height: 1;
}
.career-card__pricing .career-card__plan {
  font-size: 0.82rem;
  color: #64748b;
}
.career-card__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.career-card__actions .added_to_cart {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  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;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px dashed rgba(15, 23, 42, 0.25);
  color: #0f172a !important;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.career-card__actions .added_to_cart:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(15, 23, 42, 0.35);
  color: #111827 !important;
}
.career-card__add-to-cart {
  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;
  gap: 8px;
  padding: 15px 20px;
  border-radius: 12px;
  background: #14b8a6;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: none;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
}
.career-card__add-to-cart svg {
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 1px;
}
.career-card__add-to-cart span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.career-card__add-to-cart:hover {
  background: #0d9488;
  color: #fff !important;
}
.career-card__add-to-cart.added {
  background: #22c55e;
}
.career-card__add-to-cart.added:hover {
  background: #16a34a;
}
.career-card__view-details {
  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;
  gap: 6px;
  padding: 15px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.4);
  color: #1a202c;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 1px solid rgba(26, 32, 44, 0.12);
}
.career-card__view-details:hover {
  gap: 10px;
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(26, 32, 44, 0.18);
  color: #0f172a;
}
.career-card__arrow {
  font-size: 0.95rem;
  -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;
}

.career-card__view-details:hover .career-card__arrow {
  -webkit-transform: translateX(2px);
      -ms-transform: translateX(2px);
          transform: translateX(2px);
}

@media (max-width: 992px) {
  .career-programme-section {
    padding: 50px 0;
  }
  .career-programme-section .section-header {
    margin-bottom: 36px;
  }
  .career-programme-section .section-header .section-heading {
    font-size: 1.9rem;
  }
  .career-programme-section .section-header .section-subheading {
    font-size: 0.95rem;
  }
  .career-card__surface {
    padding: 24px 20px;
  }
  .career-card__icon {
    width: 56px;
    height: 56px;
  }
}
@media (max-width: 768px) {
  .career-programme-section {
    padding: 40px 0;
  }
  .career-programme-section .section-header {
    margin-bottom: 28px;
  }
  .career-programme-section .section-header .section-heading {
    font-size: 1.65rem;
  }
  .career-card__surface {
    padding: 24px 18px;
    gap: 16px;
  }
  .career-card__metrics {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
  }
  .career-card__courses .course-card {
    min-width: 85px;
    max-width: 90px;
    padding: 6px;
  }
  .career-card__courses .course-card .course-img {
    max-height: 48px;
  }
  .career-card__courses .course-card .course-title {
    font-size: 0.68rem;
  }
  .career-card__courses .courses-grid {
    gap: 6px;
    -ms-scroll-snap-type: x proximity;
        scroll-snap-type: x proximity;
    scroll-padding: 0 6px;
  }
  .career-card__courses .scroll-progress {
    height: 5px;
  }
  .career-card__courses .scroll-progress .scroll-thumb {
    min-width: 40px;
  }
  .career-card__pricing .career-card__current {
    font-size: 1.6rem;
  }
}
.post-type-archive-product .woocommerce-breadcrumb,
.tax-product_cat .woocommerce-breadcrumb {
  display: none !important;
  visibility: hidden !important;
}

.post-type-archive-product .col-container.category-filter > .col.leftbar.quarter-col,
.tax-product_cat .col-container.category-filter > .col.leftbar.quarter-col {
  display: none !important;
  visibility: hidden !important;
}

.post-type-archive-product .col-container.category-filter > .col.rightbar.three-quarter-col,
.tax-product_cat .col-container.category-filter > .col.rightbar.three-quarter-col {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  float: none !important;
}

.woocommerce ul.products {
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
@media (max-width: 1200px) {
  .woocommerce ul.products {
    -ms-grid-columns: 1fr 25px 1fr !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px !important;
  }
}
@media (max-width: 768px) {
  .woocommerce ul.products {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}
.woocommerce ul.products li.product,
.woocommerce ul.products li.course-category-card {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
}

.woocommerce .related ul.products {
  -ms-grid-columns: auto !important;
  grid-template-columns: auto !important;
}

.woocommerce ul.products li.product.course-category-card,
.woocommerce ul.products li.course-category-card,
.course-category-card {
  position: relative !important;
  background: #fff !important;
  border: 2px solid #e5f4f3 !important;
  border-radius: 16px !important;
  padding: 30px !important;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: visible !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
  height: 100% !important;
  -webkit-box-shadow: 0 4px 12px rgba(9, 51, 63, 0.08) !important;
          box-shadow: 0 4px 12px rgba(9, 51, 63, 0.08) !important;
}
@media (max-width: 768px) {
  .woocommerce ul.products li.product.course-category-card,
  .woocommerce ul.products li.course-category-card,
  .course-category-card {
    padding: 25px !important;
  }
}
.woocommerce ul.products li.product.course-category-card:hover,
.woocommerce ul.products li.course-category-card:hover,
.course-category-card:hover {
  -webkit-transform: translateY(-5px) !important;
      -ms-transform: translateY(-5px) !important;
          transform: translateY(-5px) !important;
  -webkit-box-shadow: 0 20px 50px rgba(3, 164, 156, 0.15) !important;
          box-shadow: 0 20px 50px rgba(3, 164, 156, 0.15) !important;
  border-color: #03A49C !important;
}

.course-category-card .sale-badge,
.woocommerce ul.products li.course-category-card .sale-badge {
  position: absolute !important;
  top: 15px !important;
  right: 15px !important;
  background: #E74C3C !important;
  color: white !important;
  padding: 8px 16px !important;
  border-radius: 20px !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  line-height: 1 !important;
  z-index: 2 !important;
  white-space: nowrap !important;
  -webkit-box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3) !important;
          box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3) !important;
}

.course-category-card .course-badge,
.woocommerce ul.products li.course-category-card .course-badge {
  text-align: center !important;
  margin-bottom: 0 !important;
}

.course-category-card .course-badge img,
.woocommerce ul.products li.course-category-card .course-badge img {
  max-width: 90px !important;
  height: auto !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
  -webkit-filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08)) !important;
          filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08)) !important;
}

.woocommerce ul.products li.course-category-card .imagewrapper,
.woocommerce ul.products li.course-category-card .item-info {
  display: none !important;
}

.course-category-card .course-title,
.course-category-card h2.woocommerce-loop-product__title,
.woocommerce ul.products li.course-category-card .course-title,
.woocommerce ul.products li.course-category-card h2.woocommerce-loop-product__title {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: #07242F !important;
  margin-bottom: 15px !important;
  text-align: leftbha !important;
  line-height: 1.3 !important;
}
@media (max-width: 768px) {
  .course-category-card .course-title,
  .course-category-card h2.woocommerce-loop-product__title,
  .woocommerce ul.products li.course-category-card .course-title,
  .woocommerce ul.products li.course-category-card h2.woocommerce-loop-product__title {
    font-size: 1.25rem !important;
  }
}

.course-category-card .course-title a,
.course-category-card h2.woocommerce-loop-product__title a,
.woocommerce ul.products li.course-category-card .course-title a,
.woocommerce ul.products li.course-category-card h2.woocommerce-loop-product__title a {
  color: inherit !important;
  text-decoration: none !important;
  -webkit-transition: color 0.3s ease !important;
  transition: color 0.3s ease !important;
}
.course-category-card .course-title a:hover,
.course-category-card h2.woocommerce-loop-product__title a:hover,
.woocommerce ul.products li.course-category-card .course-title a:hover,
.woocommerce ul.products li.course-category-card h2.woocommerce-loop-product__title a:hover {
  color: #03A49C !important;
}

.course-category-card .course-description,
.woocommerce ul.products li.course-category-card .course-description {
  font-size: 0.875rem !important;
  color: #666 !important;
  line-height: 1.65 !important;
  text-align: left !important;
  margin-bottom: 20px !important;
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
}
.course-category-card .course-description ul, .course-category-card .course-description ol,
.woocommerce ul.products li.course-category-card .course-description ul,
.woocommerce ul.products li.course-category-card .course-description ol {
  margin: 0 !important;
  padding-left: 0 !important;
  list-style: none !important;
}
.course-category-card .course-description li,
.woocommerce ul.products li.course-category-card .course-description li {
  position: relative !important;
  padding-left: 22px !important;
  margin-bottom: 6px !important;
}
.course-category-card .course-description li:before,
.woocommerce ul.products li.course-category-card .course-description li:before {
  content: "•" !important;
  position: absolute !important;
  left: 6px !important;
  color: #03A49C !important;
  font-weight: 700 !important;
  font-size: 1.125rem !important;
}

.course-category-card .course-stats,
.woocommerce ul.products li.course-category-card .course-stats {
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 15px !important;
  margin-bottom: 20px !important;
  padding: 18px 0 !important;
  border-top: 1px solid rgba(3, 164, 156, 0.2) !important;
  border-bottom: 1px solid rgba(3, 164, 156, 0.2) !important;
}

.course-category-card .course-stats .stat-item,
.woocommerce ul.products li.course-category-card .course-stats .stat-item {
  text-align: center !important;
}

.course-category-card .course-stats .stat-icon,
.woocommerce ul.products li.course-category-card .course-stats .stat-icon {
  font-size: 1.5rem !important;
  color: #03A49C !important;
  margin-bottom: 8px !important;
  opacity: 0.9 !important;
  display: block !important;
}

.course-category-card .course-stats .stat-label,
.woocommerce ul.products li.course-category-card .course-stats .stat-label {
  font-size: 0.75rem !important;
  color: #888 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 4px !important;
  font-weight: 600 !important;
  display: block !important;
}

.course-category-card .course-stats .stat-value,
.woocommerce ul.products li.course-category-card .course-stats .stat-value {
  font-size: 0.875rem !important;
  color: #07242F !important;
  font-weight: 600 !important;
  display: block !important;
}

.course-category-card .course-highlights,
.woocommerce ul.products li.course-category-card .course-highlights {
  margin-bottom: 20px !important;
  -webkit-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

.course-category-card .course-highlights .highlights-list,
.woocommerce ul.products li.course-category-card .course-highlights .highlights-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
  gap: 10px !important;
}

.course-category-card .course-highlights .highlights-list li,
.woocommerce ul.products li.course-category-card .course-highlights .highlights-list li {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
  gap: 12px !important;
  font-size: 0.875rem !important;
  color: #555 !important;
  line-height: 1.5 !important;
}

.course-category-card .course-highlights .highlights-list li i,
.woocommerce ul.products li.course-category-card .course-highlights .highlights-list li i {
  font-size: 1.125rem !important;
  color: #03A49C !important;
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
  margin-top: 2px !important;
}

.course-category-card .course-pricing,
.woocommerce ul.products li.course-category-card .course-pricing {
  margin-bottom: 20px !important;
  text-align: center !important;
  padding-top: 18px !important;
  border-top: 2px solid rgba(3, 164, 156, 0.25) !important;
}

.course-category-card .course-pricing .price-wrapper,
.woocommerce ul.products li.course-category-card .course-pricing .price-wrapper {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  gap: 12px !important;
  margin-bottom: 10px !important;
}

.course-category-card .course-pricing .original-price,
.woocommerce ul.products li.course-category-card .course-pricing .original-price {
  font-size: 1.125rem !important;
  color: #999 !important;
  text-decoration: line-through !important;
  font-weight: 500 !important;
}

.course-category-card .course-pricing .sale-price,
.woocommerce ul.products li.course-category-card .course-pricing .sale-price {
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: #03A49C !important;
  line-height: 1 !important;
}
@media (max-width: 768px) {
  .course-category-card .course-pricing .sale-price,
  .woocommerce ul.products li.course-category-card .course-pricing .sale-price {
    font-size: 1.75rem !important;
  }
}

.course-category-card .course-pricing .regular-price,
.woocommerce ul.products li.course-category-card .course-pricing .regular-price {
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: #07242F !important;
  line-height: 1 !important;
}
@media (max-width: 768px) {
  .course-category-card .course-pricing .regular-price,
  .woocommerce ul.products li.course-category-card .course-pricing .regular-price {
    font-size: 1.75rem !important;
  }
}

.course-category-card .course-pricing .price-note,
.woocommerce ul.products li.course-category-card .course-pricing .price-note {
  font-size: 0.813rem !important;
  color: #777 !important;
  font-style: italic !important;
  margin: 0 !important;
}

.course-category-card .course-cta,
.woocommerce ul.products li.course-category-card .course-cta {
  margin-top: auto !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
  gap: 10px !important;
}
@media (min-width: 768px) {
  .course-category-card .course-cta,
  .woocommerce ul.products li.course-category-card .course-cta {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    gap: 12px !important;
  }
}

.course-category-card .course-cta .enroll-button,
.woocommerce ul.products li.course-category-card .course-cta .enroll-button {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  gap: 5px !important;
  width: 100% !important;
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 0px !important;
          flex: 1 1 0 !important;
  padding: 14px 22px !important;
  background: #03A49C !important;
  color: white !important;
  text-align: center !important;
  text-decoration: none !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.01em !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
  border: none !important;
  cursor: pointer !important;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  -webkit-box-shadow: 0 8px 18px rgba(3, 164, 156, 0.25) !important;
          box-shadow: 0 8px 18px rgba(3, 164, 156, 0.25) !important;
}
.course-category-card .course-cta .enroll-button:hover,
.woocommerce ul.products li.course-category-card .course-cta .enroll-button:hover {
  -webkit-transform: translateY(-2px) !important;
      -ms-transform: translateY(-2px) !important;
          transform: translateY(-2px) !important;
  -webkit-box-shadow: 0 10px 24px rgba(3, 164, 156, 0.35) !important;
          box-shadow: 0 10px 24px rgba(3, 164, 156, 0.35) !important;
  background: #038b84 !important;
  color: white !important;
}
.course-category-card .course-cta .enroll-button:active,
.woocommerce ul.products li.course-category-card .course-cta .enroll-button:active {
  -webkit-transform: translateY(0) !important;
      -ms-transform: translateY(0) !important;
          transform: translateY(0) !important;
}
.course-category-card .course-cta .enroll-button i,
.woocommerce ul.products li.course-category-card .course-cta .enroll-button i {
  -webkit-transition: -webkit-transform 0.3s ease !important;
  transition: -webkit-transform 0.3s ease !important;
  transition: transform 0.3s ease !important;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease !important;
  font-size: 0.95rem !important;
}
.course-category-card .course-cta .enroll-button i:last-child,
.woocommerce ul.products li.course-category-card .course-cta .enroll-button i:last-child {
  margin-left: 4px !important;
}
.course-category-card .course-cta .enroll-button:hover i:last-child,
.woocommerce ul.products li.course-category-card .course-cta .enroll-button:hover i:last-child {
  -webkit-transform: translateX(4px) !important;
      -ms-transform: translateX(4px) !important;
          transform: translateX(4px) !important;
}

.course-category-card .course-cta .details-button,
.woocommerce ul.products li.course-category-card .course-cta .details-button {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 0px !important;
          flex: 1 1 0 !important;
  padding: 14px 22px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  background: #ffffff !important;
  color: #07242F !important;
  text-align: center !important;
  text-decoration: none !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  -webkit-box-shadow: inset 0 0 0 1px rgba(3, 164, 156, 0.05) !important;
          box-shadow: inset 0 0 0 1px rgba(3, 164, 156, 0.05) !important;
}
.course-category-card .course-cta .details-button i,
.woocommerce ul.products li.course-category-card .course-cta .details-button i {
  font-size: 0.95rem !important;
  margin-left: 8px !important;
  -webkit-transition: -webkit-transform 0.3s ease !important;
  transition: -webkit-transform 0.3s ease !important;
  transition: transform 0.3s ease !important;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease !important;
}
.course-category-card .course-cta .details-button:hover,
.woocommerce ul.products li.course-category-card .course-cta .details-button:hover {
  border-color: rgba(3, 164, 156, 0.4) !important;
  color: #03A49C !important;
  -webkit-box-shadow: 0 8px 20px rgba(3, 164, 156, 0.1) !important;
          box-shadow: 0 8px 20px rgba(3, 164, 156, 0.1) !important;
}
.course-category-card .course-cta .details-button:hover i,
.woocommerce ul.products li.course-category-card .course-cta .details-button:hover i {
  -webkit-transform: translateX(4px) !important;
      -ms-transform: translateX(4px) !important;
          transform: translateX(4px) !important;
}

.course-category-card .course-cta .btn-icon,
.woocommerce ul.products li.course-category-card .course-cta .btn-icon {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  color: inherit !important;
  font-size: 1rem !important;
}

.course-category-card .course-cta .details-button .btn-icon,
.woocommerce ul.products li.course-category-card .course-cta .details-button .btn-icon {
  color: #03A49C !important;
}

.course-category-card .course-cta .btn-label,
.woocommerce ul.products li.course-category-card .course-cta .btn-label {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 1 auto !important;
          flex: 0 1 auto !important;
  white-space: nowrap !important;
}

/* ============================================================================
 * Black Friday Banner Styles
 * Modern ecommerce promotional banner with product cards
 * ========================================================================== */
/* Wrapper */
.offers-hero {
  background: -webkit-gradient(linear, left top, left bottom, from(#09333F), to(#062027));
  background: linear-gradient(180deg, #09333F 0%, #062027 100%);
  color: white;
  padding-top: 80px;
  padding-bottom: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

/* Inner grid: left copy, right visual */
.offers-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(16px, 3.6vw, 36px) 520px;
  grid-template-columns: 1fr 520px;
  gap: clamp(16px, 3.6vw, 36px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) {
  .offers-inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

/* LEFT SECTION - Copy */
.offers-left .eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: #E6D28C;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}
.offers-left h1 {
  margin: 0 0 12px 0;
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  font-family: "Urbanist", sans-serif;
  color: white;
  max-width: 700px;
}
.offers-left h1 .accent {
  background: -webkit-gradient(linear, left top, right top, from(#E6D28C), to(#F2E3A9));
  background: linear-gradient(90deg, #E6D28C, #F2E3A9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .offers-left h1 {
    font-size: 50px;
    line-height: 56px;
  }
}
.offers-left p.lead {
  margin: 20px 0 30px 0;
  color: white;
  max-width: 720px;
  font-size: 16px;
  line-height: 30px;
}

/* Value Points - Key Benefits */
.value-points {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 16px;
  margin-bottom: 35px;
  max-width: 600px;
}
@media (max-width: 640px) {
  .value-points {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.value-point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
}
.value-point i {
  color: #E6D28C;
  font-size: 1.1rem;
  min-width: 20px;
  text-align: center;
}
.value-point span {
  line-height: 1.3;
}

/* CTA Buttons Row */
.cta-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}
.cta-row .btn, .cta-row .icon-boxes.courses-included .icon-box.col .read-more-btn, .icon-boxes.courses-included .icon-box.col .cta-row .read-more-btn, .cta-row .woocommerce form input[type=submit], .woocommerce form .cta-row input[type=submit],
.cta-row .woocommerce form input[type=button],
.woocommerce form .cta-row input[type=button] {
  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;
  border-radius: 10px;
  padding: 13px 25px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 17px;
  cursor: pointer;
}
.cta-row .btn.shop, .cta-row .icon-boxes.courses-included .icon-box.col .shop.read-more-btn, .icon-boxes.courses-included .icon-box.col .cta-row .shop.read-more-btn, .cta-row .woocommerce form input.shop[type=submit], .woocommerce form .cta-row input.shop[type=submit],
.cta-row .woocommerce form input.shop[type=button],
.woocommerce form .cta-row input.shop[type=button] {
  color: white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cta-row .btn.shop:hover, .cta-row .icon-boxes.courses-included .icon-box.col .shop.read-more-btn:hover, .icon-boxes.courses-included .icon-box.col .cta-row .shop.read-more-btn:hover, .cta-row .woocommerce form input.shop[type=submit]:hover, .woocommerce form .cta-row input.shop[type=submit]:hover,
.cta-row .woocommerce form input.shop[type=button]:hover,
.woocommerce form .cta-row input.shop[type=button]:hover {
  -webkit-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
          transform: translateY(-1px);
  background: #038b84;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cta-row .btn.ghost, .cta-row .icon-boxes.courses-included .icon-box.col .ghost.read-more-btn, .icon-boxes.courses-included .icon-box.col .cta-row .ghost.read-more-btn, .cta-row .woocommerce form input.ghost[type=submit], .woocommerce form .cta-row input.ghost[type=submit],
.cta-row .woocommerce form input.ghost[type=button],
.woocommerce form .cta-row input.ghost[type=button] {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: #E6D28C;
}
.cta-row .btn.ghost:hover, .cta-row .icon-boxes.courses-included .icon-box.col .ghost.read-more-btn:hover, .icon-boxes.courses-included .icon-box.col .cta-row .ghost.read-more-btn:hover, .cta-row .woocommerce form input.ghost[type=submit]:hover, .woocommerce form .cta-row input.ghost[type=submit]:hover,
.cta-row .woocommerce form input.ghost[type=button]:hover,
.woocommerce form .cta-row input.ghost[type=button]:hover {
  border-color: rgba(255, 255, 255, 0.18);
  color: #F2E3A9;
}

/* Sale Timer Section */
.sale-timer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: 0px;
  width: 100%;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .sale-timer {
    -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;
    gap: 16px;
    width: auto;
  }
}

.timer-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #C9CFD6;
  font-weight: 700;
  font-size: 18px;
}
.timer-label i {
  color: #E6D28C;
  font-size: 1rem;
}

.countdown {
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 10px;
  border-radius: 999px;
  color: #C9CFD6;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 20px;
}
.countdown b {
  color: #E6D28C;
  min-width: 20px;
  display: inline-block;
  text-align: center;
}

/* RIGHT SECTION - Product Visual */
.offers-visual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -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;
  gap: 20px;
  margin-top: 20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .offers-visual {
    margin-top: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.visual-panel {
  width: 100%;
  max-width: 420px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.02)), to(rgba(255, 255, 255, 0.01)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  -webkit-box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.6);
          box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.6);
}

.offer-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 10px;
}

.offer-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.01)), to(rgba(255, 255, 255, 0.02)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.02));
  border-radius: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  -webkit-transition: border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease;
  transition: transform 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.offer-card:hover {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.08);
}

.thumb {
  min-width: 56px;
  min-height: 56px;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#03A49C), to(#35797B));
  background: linear-gradient(90deg, #03A49C, #35797B);
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  font-size: 25px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.thumb.thumb-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.offer-meta {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.offer-meta h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  font-family: "Urbanist", sans-serif;
  line-height: 1.2;
  color: white;
}
.offer-meta p {
  margin: 4px 0 0 0;
  color: #C9CFD6;
  font-size: 0.82rem;
  line-height: 1.3;
}

.price-row {
  margin-top: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.price-row .price {
  font-weight: 800;
  color: white;
  font-size: 1rem;
}
.price-row .price .woocommerce-Price-amount {
  font-weight: 800;
}
.price-row .price .woocommerce-Price-currencySymbol {
  font-size: 0.85em;
}
.price-row .mrp {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: line-through;
  font-size: 0.82rem;
}
.price-row .mrp .woocommerce-Price-amount {
  font-weight: 400;
}

.badge {
  font-size: 13px;
  font-weight: 800;
  color: #062A2D;
  background: -webkit-gradient(linear, left top, right top, from(#E6D28C), to(#F2E3A9));
  background: linear-gradient(90deg, #E6D28C, #F2E3A9);
  padding: 6px 8px;
  border-radius: 999px;
  white-space: nowrap;
  margin-left: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* Responsive Adjustments */
@media (max-width: 420px) {
  .visual-panel {
    padding: 12px;
  }
  .thumb {
    min-width: 48px;
    min-height: 48px;
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  .offer-meta h4 {
    font-size: 16px;
  }
  .offer-meta p {
    font-size: 0.75rem;
  }
  .badge {
    font-size: 12px;
    padding: 4px 6px;
  }
}
/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .btn, .icon-boxes.courses-included .icon-box.col .read-more-btn, .woocommerce form input[type=submit],
  .woocommerce form input[type=button],
  .visual-panel,
  .offer-card {
    -webkit-transition: none !important;
    transition: none !important;
  }
}
/*
 * Single Product Custom Sections
 * Career Programmes Only
 * Matches theme course-category-cards design language
 */
.sp-hero-section {
  /* Clean dark gradient background matching reference */
  color: #ffffff;
  padding: 0;
  width: 100%;
  border-bottom: none;
  position: relative;
}
.sp-hero-section .row {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 20px;
}

.sp-breadcrumb {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin-bottom: 24px;
}
.sp-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.sp-breadcrumb a:hover {
  color: #FFFFFF;
}

.sp-trust-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 6px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}
.sp-trust-badge i {
  font-size: 14px;
}

.sp-hero-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .sp-hero-grid {
    -ms-grid-columns: 1.3fr 60px 0.7fr;
    grid-template-columns: 1.3fr 0.7fr; /* Matching screenshot ratio */
    gap: 60px;
  }
}

.sp-hero-content {
  max-width: 100%;
}
.sp-hero-content .sp-hero-title {
  font-size: 32px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
@media only screen and (min-width: 768px) {
  .sp-hero-content .sp-hero-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .sp-hero-content .sp-hero-title {
    font-size: 48px;
  }
}
.sp-hero-content .sp-hero-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  font-weight: 500;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .sp-hero-content .sp-hero-subtitle {
    font-size: 18px;
  }
}

.sp-rating-row {
  margin-bottom: 32px;
  padding-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.sp-rating-row .trustpilot-widget {
  max-width: 210px;
  height: 130px;
}
.sp-rating-row .trustpilot-widget a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none;
}
.sp-rating-row .trustpilot-widget a:hover {
  color: #FFFFFF !important;
}
.sp-rating-row iframe {
  border: none;
  max-width: 100%;
}

.sp-rating-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.sp-rating-stars .stars {
  color: #fbbf24;
  font-size: 16px;
  letter-spacing: 2px;
}
.sp-rating-stars .rating-text {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.sp-rating-stars .rating-count {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.sp-highlights-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 36px;
}
@media only screen and (min-width: 768px) {
  .sp-highlights-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

.sp-highlight-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sp-highlight-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.sp-highlight-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.sp-highlight-icon i {
  color: #FFFFFF;
  font-size: 16px;
}
.sp-highlight-icon i.fa-duotone {
  --fa-primary-color: #FFFFFF;
  --fa-secondary-color: rgba(#FFFFFF, 0.5);
}

.sp-highlight-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sp-highlight-content h4 {
  font-size: 15px;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 2px;
  line-height: 1.3;
}
.sp-highlight-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

.sp-features-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.sp-feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 500;
}
.sp-feature-item i {
  color: #10b981;
  font-size: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.sp-certifications-section {
  margin-top: 36px;
}

.sp-cert-heading-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}

.sp-cert-heading {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 800;
  letter-spacing: 0.6px;
}

.sp-cert-heading-logo {
  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;
}
.sp-cert-heading-logo img {
  max-height: 64px;
  width: auto;
  display: block;
}

.sp-cert-accordion {
  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;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .sp-cert-accordion {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 1400px) {
  .sp-cert-accordion {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}

.sp-cert-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sp-cert-tab {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  padding: 16px 18px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  cursor: pointer;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  text-align: left;
}
.sp-cert-tab:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(16, 185, 129, 0.5);
}
@media only screen and (min-width: 768px) {
  .sp-cert-tab:hover {
    -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
.sp-cert-item.active .sp-cert-tab {
  background: rgba(16, 185, 129, 0.15);
  border-color: #10b981;
  -webkit-box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
          box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
  border-radius: 8px 8px 0 0;
}
@media only screen and (min-width: 768px) {
  .sp-cert-item.active .sp-cert-tab {
    border-radius: 8px;
  }
}
.sp-cert-item.active .sp-cert-tab i {
  color: #10b981;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.sp-cert-tab .sp-cert-logo.small {
  display: none;
}
.sp-cert-tab i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.sp-cert-tab i.fa-duotone {
  --fa-primary-color: currentColor;
  --fa-secondary-color: rgba(currentColor, 0.4);
}
.sp-cert-tab span {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.sp-cert-content-mobile {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
  border-radius: 0 0 8px 8px;
  margin-top: -8px;
  text-align: center;
  opacity: 0;
  -webkit-transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.sp-cert-item.active .sp-cert-content-mobile {
  max-height: 600px;
  padding: 20px 16px;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .sp-cert-content-mobile {
    display: none !important;
  }
}
.sp-cert-content-mobile .sp-cert-logo-wrapper {
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease 0.1s, -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  transition: opacity 0.4s ease 0.1s, -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, opacity 0.4s ease 0.1s;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, opacity 0.4s ease 0.1s, -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}
.sp-cert-item.active .sp-cert-content-mobile .sp-cert-logo-wrapper {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.sp-cert-content-mobile .sp-cert-logo-wrapper img {
  height: auto;
}
.sp-cert-content-mobile .sp-cert-details {
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease 0.2s, -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  transition: opacity 0.4s ease 0.2s, -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, opacity 0.4s ease 0.2s;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, opacity 0.4s ease 0.2s, -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}
.sp-cert-item.active .sp-cert-content-mobile .sp-cert-details {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.sp-cert-content-mobile .sp-cert-details p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.sp-cert-content-wrapper {
  display: none;
}
@media only screen and (min-width: 768px) {
  .sp-cert-content-wrapper {
    display: block;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
    min-height: 260px;
    position: relative;
    -ms-flex-line-pack: center;
        align-content: center;
  }
}
@media screen and (min-width: 1400px) {
  .sp-cert-content-wrapper {
    padding: 40px;
  }
}

.sp-cert-content {
  display: none;
  -webkit-animation: fadeIn 0.4s ease;
          animation: fadeIn 0.4s ease;
}
.sp-cert-content.active {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .sp-cert-content.active {
    -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;
    text-align: left;
    gap: 40px;
  }
}
@media screen and (min-width: 1400px) {
  .sp-cert-content.active {
    gap: 50px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.sp-cert-logo-wrapper {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
@media only screen and (min-width: 768px) {
  .sp-cert-logo-wrapper {
    margin-bottom: 0;
    margin-right: 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.sp-cert-logo-wrapper img {
  max-width: 120px;
  height: auto;
  display: block;
}
@media only screen and (min-width: 768px) {
  .sp-cert-logo-wrapper img {
    max-width: 180px;
  }
}
.sp-cert-logo-wrapper i {
  font-size: 48px;
  color: #10b981;
  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;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(16, 185, 129, 0.15);
  -webkit-box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
          box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}
@media only screen and (min-width: 768px) {
  .sp-cert-logo-wrapper i {
    font-size: 64px;
    width: 96px;
    height: 96px;
  }
}
.sp-cert-logo-wrapper i.fa-duotone {
  --fa-primary-color: #10b981;
  --fa-secondary-color: rgba(#10b981, 0.45);
  --fa-primary-opacity: 1;
  --fa-secondary-opacity: 1;
}

.sp-cert-logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 24px;
}
@media only screen and (min-width: 768px) {
  .sp-cert-logo {
    margin-bottom: 0;
  }
}
.sp-cert-logo img {
  max-width: 150px;
  height: auto;
  display: block;
}
@media screen and (min-width: 1400px) {
  .sp-cert-logo img {
    max-width: 200px;
  }
}

.sp-cert-details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sp-cert-details h4 {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
@media only screen and (min-width: 768px) {
  .sp-cert-details h4 {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 1400px) {
  .sp-cert-details h4 {
    font-size: 26px;
  }
}
.sp-cert-details .sp-cert-description {
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .sp-cert-details .sp-cert-description {
    font-size: 16px;
  }
}
.sp-cert-details .sp-cert-description p {
  margin: 0 0 12px 0;
  font-size: 15px;
  color: white;
}
.sp-cert-details .sp-cert-description p:last-child {
  margin-bottom: 0;
}
.sp-cert-details .sp-cert-description ul, .sp-cert-details .sp-cert-description ol {
  margin: 12px 0;
  padding-left: 15px;
}
@media only screen and (min-width: 768px) {
  .sp-cert-details .sp-cert-description ul, .sp-cert-details .sp-cert-description ol {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
.sp-cert-details .sp-cert-description ul li, .sp-cert-details .sp-cert-description ol li {
  margin-bottom: 8px;
  line-height: 1.6;
  font-size: 15px;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
}
.sp-cert-details .sp-cert-description ul li:last-child, .sp-cert-details .sp-cert-description ol li:last-child {
  margin-bottom: 0;
}
.sp-cert-details .sp-cert-description ul {
  list-style-type: disc;
}
.sp-cert-details .sp-cert-description ul li::marker {
  color: #10b981;
}
.sp-cert-details .sp-cert-description strong {
  color: #FFFFFF;
  font-weight: 600;
}
.sp-cert-details > p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .sp-cert-details > p {
    font-size: 16px;
  }
}

.sp-modules-preview {
  margin-top: 36px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sp-modules-heading {
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.sp-modules-heading i {
  color: #10b981;
  font-size: 18px;
}
.sp-modules-heading i.fa-duotone {
  --fa-primary-color: #10b981;
  --fa-secondary-color: rgba(#10b981, 0.4);
}

.sp-modules-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.sp-module-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  padding: 8px 0;
}
.sp-module-item i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.sp-hero-card {
  position: sticky;
  top: 20px;
}
@media (max-width: 1023px) {
  .sp-hero-card {
    position: relative;
    top: 0;
  }
}

.sp-card-inner {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
@media (max-width: 1023px) {
  .sp-card-inner {
    padding: 28px 24px;
  }
}

.sp-card-badge {
  background: linear-gradient(135deg, #E74C3C 0%, #cd2a19 100%);
  color: white;
  padding: 14px 24px;
  border-radius: 14px;
  text-align: center;
  margin-bottom: 32px;
  text-transform: uppercase;
  -webkit-box-shadow: 0 14px 36px rgba(231, 76, 60, 0.55), 0 6px 14px rgba(231, 76, 60, 0.35);
          box-shadow: 0 14px 36px rgba(231, 76, 60, 0.55), 0 6px 14px rgba(231, 76, 60, 0.35);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
  min-width: 160px;
}
.sp-card-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.25)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  -webkit-transition: left 0.5s;
  transition: left 0.5s;
}
.sp-card-badge:hover::before {
  left: 100%;
}
.sp-card-badge .badge-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.15em;
  opacity: 0.95;
}
.sp-card-badge .badge-amount {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.sp-price-wrapper {
  margin-bottom: 24px;
}

.sp-price-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sp-price-current {
  font-size: 36px;
  font-weight: 800;
  color: #09333F;
  line-height: 1;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .sp-price-current {
    font-size: 42px;
  }
}

.sp-price-original {
  font-size: 20px;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 600;
}

.sp-price-save {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sp-price-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  margin-top: 12px;
}

.sp-price-info {
  font-size: 13px;
  color: #64748b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.sp-price-info i {
  color: #10b981;
  font-size: 12px;
}

.sp-card-meta {
  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;
  gap: 9px;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #07242F;
  background: rgba(3, 164, 156, 0.05);
  border-radius: 8px;
  margin-bottom: 22px;
}
.sp-card-meta i {
  color: #03A49C;
  font-size: 17px;
}

.sp-includes-section {
  border-top: 1px solid #e2e8f0;
  padding-top: 24px;
}

.sp-includes-heading {
  font-size: 12px;
  color: #64748b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.sp-includes-list {
  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;
}

.sp-include-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #334155;
  font-weight: 500;
}
.sp-include-item i {
  color: #10b981;
  font-size: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.sp-cta-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  margin-bottom: 24px;
}
.sp-cta-section .single_add_to_cart_button,
.sp-cta-section button[type=submit] {
  width: 100% !important;
  padding: 20px 24px !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  -webkit-transition: all 0.2s ease !important;
  transition: all 0.2s ease !important;
  border: none !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  background: #09333F !important;
  color: #FFFFFF !important;
  text-align: center !important;
}
.sp-cta-section .single_add_to_cart_button:hover,
.sp-cta-section button[type=submit]:hover {
  background: #0a4552 !important;
  -webkit-transform: translateY(-1px) !important;
      -ms-transform: translateY(-1px) !important;
          transform: translateY(-1px) !important;
  -webkit-box-shadow: 0 8px 24px rgba(9, 51, 63, 0.3) !important;
          box-shadow: 0 8px 24px rgba(9, 51, 63, 0.3) !important;
  color: #FFFFFF !important;
}
.sp-cta-section .single_add_to_cart_button::before,
.sp-cta-section button[type=submit]::before {
  content: "\f290" !important;
  font-family: "Font Awesome 6 Pro" !important;
  font-weight: 900 !important;
  font-size: 14px !important;
}

.summary.entry-summary {
  display: none !important;
}

.overlap-section.sp-overlap-section {
  display: none !important;
}

.sp-btn {
  width: 100%;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border: none;
  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;
  gap: 10px;
  text-decoration: none;
}

.sp-btn-primary {
  background: #09333F;
  color: #FFFFFF;
}
.sp-btn-primary:hover {
  background: #0a4552;
  -webkit-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 8px 24px rgba(9, 51, 63, 0.3);
          box-shadow: 0 8px 24px rgba(9, 51, 63, 0.3);
}
.sp-btn-primary i {
  font-size: 14px;
}

.sp-btn-secondary {
  background: transparent;
  color: #09333F;
  border: 2px solid #09333F;
}
.sp-btn-secondary:hover {
  background: #f8fafc;
}
.sp-btn-secondary i {
  font-size: 14px;
}

.sp-finance-banner {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border: 1px solid #bae6fd;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 24px;
}
.sp-finance-banner i {
  color: #0369a1;
  font-size: 20px;
  margin-bottom: 8px;
  display: block;
}
.sp-finance-banner i.fa-duotone {
  --fa-primary-color: #0369a1;
  --fa-secondary-color: rgba(#0369a1, 0.4);
}
.sp-finance-banner .finance-text {
  font-size: 13px;
  color: #075985;
  font-weight: 600;
  line-height: 1.5;
}
.sp-finance-banner .finance-text strong {
  display: block;
  margin-bottom: 2px;
  font-weight: 800;
}

.scrolling-testimonials-section {
  background: #D3EDEA;
  padding: 60px 30px;
  overflow: hidden;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  border-top: 1px solid #0c4555;
}
@media only screen and (min-width: 768px) {
  .scrolling-testimonials-section {
    padding: 80px 0;
  }
}
.scrolling-testimonials-section h4, .scrolling-testimonials-section h2, .scrolling-testimonials-section p {
  color: white;
}
.scrolling-testimonials-section.pastels-only-testimonials {
  background: none;
}
.scrolling-testimonials-section.pastels-only-testimonials .owl-item:nth-child(8n+1) .testimonial-card-content,
.scrolling-testimonials-section.pastels-only-testimonials .scrolling-testimonial-card:nth-child(8n+1) .testimonial-card-content {
  background: #E8F7FC !important;
}
.scrolling-testimonials-section.pastels-only-testimonials .owl-item:nth-child(8n+2) .testimonial-card-content,
.scrolling-testimonials-section.pastels-only-testimonials .scrolling-testimonial-card:nth-child(8n+2) .testimonial-card-content {
  background: #EEE3F4 !important;
}
.scrolling-testimonials-section.pastels-only-testimonials .owl-item:nth-child(8n+3) .testimonial-card-content,
.scrolling-testimonials-section.pastels-only-testimonials .scrolling-testimonial-card:nth-child(8n+3) .testimonial-card-content {
  background: #FFF4CE !important;
}
.scrolling-testimonials-section.pastels-only-testimonials .owl-item:nth-child(8n+4) .testimonial-card-content,
.scrolling-testimonials-section.pastels-only-testimonials .scrolling-testimonial-card:nth-child(8n+4) .testimonial-card-content {
  background: #E8FCDE !important;
}
.scrolling-testimonials-section.pastels-only-testimonials .owl-item:nth-child(8n+5) .testimonial-card-content,
.scrolling-testimonials-section.pastels-only-testimonials .scrolling-testimonial-card:nth-child(8n+5) .testimonial-card-content {
  background: #FFE5E5 !important;
}
.scrolling-testimonials-section.pastels-only-testimonials .owl-item:nth-child(8n+6) .testimonial-card-content,
.scrolling-testimonials-section.pastels-only-testimonials .scrolling-testimonial-card:nth-child(8n+6) .testimonial-card-content {
  background: #E0F7FA !important;
}
.scrolling-testimonials-section.pastels-only-testimonials .owl-item:nth-child(8n+7) .testimonial-card-content,
.scrolling-testimonials-section.pastels-only-testimonials .scrolling-testimonial-card:nth-child(8n+7) .testimonial-card-content {
  background: #F3E5F5 !important;
}
.scrolling-testimonials-section.pastels-only-testimonials .owl-item:nth-child(8n) .testimonial-card-content,
.scrolling-testimonials-section.pastels-only-testimonials .scrolling-testimonial-card:nth-child(8n) .testimonial-card-content {
  background: #FFF0E6 !important;
}
.scrolling-testimonials-section.pastels-only-testimonials .testimonial-card-content {
  border: none !important;
  border-radius: 12px !important;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.scrolling-testimonials-section.pastels-only-testimonials .testimonial-card-content:hover {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.scrolling-testimonials-section.white-background {
  background: white;
  overflow: hidden;
}
.scrolling-testimonials-section.white-background .testimonial-card-content {
  border: 1px solid rgba(0, 0, 0, 0.09);
}
.scrolling-testimonials-section.white-background:hover .scrolling-testimonial-card {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.scrolling-testimonials-section .mobile-testimonials-carousel {
  display: block;
  padding: 0 16px;
  padding: 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 620px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.scrolling-testimonials-section .mobile-testimonials-carousel .owl-nav {
  display: none;
}
@media only screen and (min-width: 768px) {
  .scrolling-testimonials-section .mobile-testimonials-carousel {
    display: none;
    padding: 0;
    height: auto;
  }
}
.scrolling-testimonials-section .mobile-testimonials-carousel .testimonials-mobile-slider {
  max-width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.scrolling-testimonials-section .mobile-testimonials-carousel .testimonials-mobile-slider .mobile-testimonial-card {
  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-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0 10px;
  padding: 0;
  background: none;
  overflow: visible;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  max-width: auto;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .scrolling-testimonials-section .mobile-testimonials-carousel .testimonials-mobile-slider .mobile-testimonial-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0 20px;
    min-height: 240px;
    max-width: 480px;
    height: auto;
  }
}
.scrolling-testimonials-section .mobile-testimonials-carousel .testimonials-mobile-slider .mobile-testimonial-card:hover {
  -webkit-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09);
          box-shadow: 0 8px 22px rgba(0, 0, 0, 0.09);
  background: white;
  border-radius: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.scrolling-testimonials-section .mobile-testimonials-carousel .testimonials-mobile-slider .mobile-testimonial-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  padding: 0;
  display: block;
  background: #f8f9fa;
  border-radius: 15px;
  overflow: hidden;
}
.scrolling-testimonials-section .mobile-testimonials-carousel .testimonials-mobile-slider .mobile-testimonial-image .testimonial-person-photo {
  width: 100%;
  height: 270px;
  border-radius: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: block;
}
@media only screen and (min-width: 640px) {
  .scrolling-testimonials-section .mobile-testimonials-carousel .testimonials-mobile-slider .mobile-testimonial-image .testimonial-person-photo {
    height: 370px;
  }
}
@media only screen and (min-width: 768px) {
  .scrolling-testimonials-section .mobile-testimonials-carousel .testimonials-mobile-slider .mobile-testimonial-image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    width: auto;
  }
  .scrolling-testimonials-section .mobile-testimonials-carousel .testimonials-mobile-slider .mobile-testimonial-image .testimonial-person-photo {
    width: 100%;
    height: 100%;
  }
}
.scrolling-testimonials-section .mobile-testimonials-carousel .testimonials-mobile-slider .mobile-testimonial-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: white;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 25px;
  margin: 0;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  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;
  text-align: left;
  border-radius: 15px;
  margin-top: 15px;
  height: auto;
  overflow: visible;
}
@media only screen and (min-width: 640px) {
  .scrolling-testimonials-section .mobile-testimonials-carousel .testimonials-mobile-slider .mobile-testimonial-content {
    padding: 55px;
  }
}
@media only screen and (min-width: 768px) {
  .scrolling-testimonials-section .mobile-testimonials-carousel .testimonials-mobile-slider .mobile-testimonial-content {
    padding: 25px 28px;
    max-height: none;
    overflow-y: visible;
  }
}
.scrolling-testimonials-section .mobile-testimonials-carousel .testimonials-mobile-slider .testimonial-quote {
  margin-bottom: 15px;
}
.scrolling-testimonials-section .mobile-testimonials-carousel .testimonials-mobile-slider .testimonial-quote i.fa-quote-left {
  font-size: 50px;
  color: #07242F;
  margin-bottom: 10px;
  display: block;
}
.scrolling-testimonials-section .mobile-testimonials-carousel .testimonials-mobile-slider .testimonial-quote p {
  font-size: 16px;
  line-height: 28px;
  color: #353535 !important;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .scrolling-testimonials-section .mobile-testimonials-carousel .testimonials-mobile-slider .testimonial-quote p {
    font-size: 16px;
    line-height: 1.6;
  }
}
.scrolling-testimonials-section .mobile-testimonials-carousel .testimonials-mobile-slider .testimonial-author {
  margin-top: auto;
}
.scrolling-testimonials-section .mobile-testimonials-carousel .testimonials-mobile-slider .testimonial-author .client-name {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #020202;
  margin-bottom: 4px;
  font-family: "Urbanist", sans-serif;
}
@media only screen and (min-width: 640px) {
  .scrolling-testimonials-section .mobile-testimonials-carousel .testimonials-mobile-slider .testimonial-author .client-name {
    font-size: 17px;
  }
}
@media only screen and (min-width: 768px) {
  .scrolling-testimonials-section .mobile-testimonials-carousel .testimonials-mobile-slider .testimonial-author .client-name {
    font-size: 18px;
  }
}
.scrolling-testimonials-section .mobile-testimonials-carousel .testimonials-mobile-slider .testimonial-author .company-name {
  display: block;
  font-size: 12px;
  color: #888;
  font-weight: 400;
}
@media only screen and (min-width: 640px) {
  .scrolling-testimonials-section .mobile-testimonials-carousel .testimonials-mobile-slider .testimonial-author .company-name {
    font-size: 13px;
  }
}
@media only screen and (min-width: 768px) {
  .scrolling-testimonials-section .mobile-testimonials-carousel .testimonials-mobile-slider .testimonial-author .company-name {
    font-size: 14px;
  }
}
.scrolling-testimonials-section .desktop-scrolling-testimonials {
  display: none;
}
@media only screen and (min-width: 768px) {
  .scrolling-testimonials-section .desktop-scrolling-testimonials {
    display: block;
  }
}
.scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row {
  margin-bottom: 20px;
  overflow: hidden;
}
.scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row:last-child {
  margin-bottom: 0;
}
.scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row .testimonials-track-slider.owl-carousel .owl-stage-outer, .scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row .woocommerce ul.testimonials-track-slider.products.owl-loaded .owl-stage-outer, .woocommerce .scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row ul.testimonials-track-slider.products.owl-loaded .owl-stage-outer {
  overflow: visible;
}
.scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row .testimonials-track-slider.owl-carousel .owl-stage, .scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row .woocommerce ul.testimonials-track-slider.products.owl-loaded .owl-stage, .woocommerce .scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row ul.testimonials-track-slider.products.owl-loaded .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row .testimonials-track-slider.owl-carousel .owl-stage.continuous-scroll-left, .scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row .woocommerce ul.testimonials-track-slider.products.owl-loaded .owl-stage.continuous-scroll-left, .woocommerce .scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row ul.testimonials-track-slider.products.owl-loaded .owl-stage.continuous-scroll-left {
  -webkit-animation: continuousScrollLeft 140s linear infinite;
          animation: continuousScrollLeft 140s linear infinite;
}
.scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row .testimonials-track-slider.owl-carousel .owl-stage.continuous-scroll-left:hover, .scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row .woocommerce ul.testimonials-track-slider.products.owl-loaded .owl-stage.continuous-scroll-left:hover, .woocommerce .scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row ul.testimonials-track-slider.products.owl-loaded .owl-stage.continuous-scroll-left:hover {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row .testimonials-track-slider.owl-carousel .owl-stage.continuous-scroll-right, .scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row .woocommerce ul.testimonials-track-slider.products.owl-loaded .owl-stage.continuous-scroll-right, .woocommerce .scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row ul.testimonials-track-slider.products.owl-loaded .owl-stage.continuous-scroll-right {
  animation: continuousScrollLeft 150s linear infinite reverse;
}
.scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row .testimonials-track-slider.owl-carousel .owl-stage.continuous-scroll-right:hover, .scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row .woocommerce ul.testimonials-track-slider.products.owl-loaded .owl-stage.continuous-scroll-right:hover, .woocommerce .scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row ul.testimonials-track-slider.products.owl-loaded .owl-stage.continuous-scroll-right:hover {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row .testimonials-track-slider.owl-carousel .owl-item, .scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row .woocommerce ul.testimonials-track-slider.products.owl-loaded .owl-item, .woocommerce .scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row ul.testimonials-track-slider.products.owl-loaded .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row .testimonials-track-slider.owl-carousel .owl-nav, .scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row .woocommerce ul.testimonials-track-slider.products.owl-loaded .owl-nav, .woocommerce .scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row ul.testimonials-track-slider.products.owl-loaded .owl-nav,
.scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row .testimonials-track-slider.owl-carousel .owl-dots,
.scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row .woocommerce ul.testimonials-track-slider.products.owl-loaded .owl-dots,
.woocommerce .scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row ul.testimonials-track-slider.products.owl-loaded .owl-dots {
  display: none;
}
.scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row .scrolling-testimonial-card {
  background: none;
  padding: 0;
  width: 100%;
  max-width: none;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  min-height: 180px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row .scrolling-testimonial-card {
    min-height: 190px;
  }
}
@media screen and (min-width: 1100px) {
  .scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row .scrolling-testimonial-card {
    min-height: 200px;
  }
}
@media screen and (min-width: 1400px) {
  .scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row .scrolling-testimonial-card {
    min-height: 210px;
  }
}
.scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row .scrolling-testimonial-card:hover {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.scrolling-testimonials-section .desktop-scrolling-testimonials .scrolling-testimonials-row .scrolling-testimonial-card:hover .testimonial-card-content {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: none;
}
.scrolling-testimonials-section .desktop-scrolling-testimonials .testimonial-card-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 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;
  background: #f8f9fa;
  overflow: hidden;
  border-radius: 15px;
}
.scrolling-testimonials-section .desktop-scrolling-testimonials .testimonial-card-image .testimonial-person-photo {
  width: 100%;
  height: 100%;
  border-radius: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: block;
}
.scrolling-testimonials-section .desktop-scrolling-testimonials .testimonial-card-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 25px 30px;
  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;
  text-align: left;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background: white;
  -webkit-box-shadow: 0px 1px 40px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 1px 40px rgba(0, 0, 0, 0.05); /* bigger blur = softer edges */
  border-radius: 15px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 768px) {
  .scrolling-testimonials-section .desktop-scrolling-testimonials .testimonial-card-content {
    padding: 20px 25px;
    margin-left: 25px;
  }
}
@media screen and (min-width: 1100px) {
  .scrolling-testimonials-section .desktop-scrolling-testimonials .testimonial-card-content {
    padding: 25px 30px;
  }
}
@media screen and (min-width: 1400px) {
  .scrolling-testimonials-section .desktop-scrolling-testimonials .testimonial-card-content {
    padding: 30px 35px;
  }
}
.scrolling-testimonials-section .desktop-scrolling-testimonials .testimonial-quote {
  margin-bottom: 20px;
  position: relative;
}
.scrolling-testimonials-section .desktop-scrolling-testimonials .testimonial-quote i.fa-quote-left {
  font-size: 40px;
  color: #07242F;
  margin-bottom: 15px;
  display: block;
}
@media screen and (min-width: 1400px) {
  .scrolling-testimonials-section .desktop-scrolling-testimonials .testimonial-quote i.fa-quote-left {
    font-size: 65px;
    margin-bottom: 18px;
  }
}
.scrolling-testimonials-section .desktop-scrolling-testimonials .testimonial-quote p {
  font-size: 15px;
  line-height: 1.6;
  color: #4f4f4f;
  margin: 0;
  font-style: normal;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .scrolling-testimonials-section .desktop-scrolling-testimonials .testimonial-quote p {
    font-size: 16px;
    line-height: 1.55;
  }
}
@media screen and (min-width: 1400px) {
  .scrolling-testimonials-section .desktop-scrolling-testimonials .testimonial-quote p {
    font-size: 17px;
    line-height: 1.65;
  }
}
.scrolling-testimonials-section .desktop-scrolling-testimonials .testimonial-author {
  margin-top: auto;
}
.scrolling-testimonials-section .desktop-scrolling-testimonials .testimonial-author .client-name {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #6c6c6c;
  margin-bottom: 6px;
  font-family: "Urbanist", sans-serif;
}
@media only screen and (min-width: 768px) {
  .scrolling-testimonials-section .desktop-scrolling-testimonials .testimonial-author .client-name {
    font-size: 15px;
  }
}
@media screen and (min-width: 1400px) {
  .scrolling-testimonials-section .desktop-scrolling-testimonials .testimonial-author .client-name {
    font-size: 17px;
  }
}
.scrolling-testimonials-section .desktop-scrolling-testimonials .testimonial-author .company-name {
  display: block;
  font-size: 13px;
  color: #999;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .scrolling-testimonials-section .desktop-scrolling-testimonials .testimonial-author .company-name {
    font-size: 12px;
  }
}
@media screen and (min-width: 1400px) {
  .scrolling-testimonials-section .desktop-scrolling-testimonials .testimonial-author .company-name {
    font-size: 14px;
  }
}

@-webkit-keyframes continuousScrollLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes continuousScrollLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-webkit-keyframes continuousScrollRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes continuousScrollRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-webkit-keyframes scrollTestimonials {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes scrollTestimonials {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.sp-guarantee-box {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1px solid #bbf7d0;
  padding: 18px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.sp-guarantee-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.sp-guarantee-header i {
  color: #15803d;
  font-size: 20px;
}
.sp-guarantee-header i.fa-duotone {
  --fa-primary-color: #15803d;
  --fa-secondary-color: rgba(#15803d, 0.4);
}
.sp-guarantee-header h4 {
  font-size: 14px;
  color: #15803d;
  font-weight: 700;
  margin: 0;
}

.sp-guarantee-text {
  font-size: 13px;
  color: #166534;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

.sp-section {
  padding: 50px 0;
  border-top: 1px solid #ebebeb;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .sp-section {
    padding: 65px 0;
  }
}

.woocommerce-tabs {
  display: none !important;
  background: transparent !important;
}
.woocommerce-tabs .tabs {
  border: none !important;
  background: transparent !important;
}
.woocommerce-tabs .tabs li {
  border: none !important;
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce-tabs .tabs li a {
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
  padding: 0 0 15px 0 !important;
  border: none !important;
  background: transparent !important;
  border-bottom: 3px solid transparent !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .woocommerce-tabs .tabs li a {
    font-size: 24px !important;
    padding: 0 0 20px 0 !important;
  }
}
.woocommerce-tabs .tabs li a:hover {
  color: #03A49C !important;
}
.woocommerce-tabs .tabs li.active a {
  color: #1a1a1a !important;
  border-bottom-color: #1a5a5a !important;
}
.woocommerce-tabs .tabs::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #e0e0e0;
}

.sp-section-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 32px;
  color: #07242F;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .sp-section-title {
    font-size: 40px;
  }
}

.home-careers-title {
  width: 100%;
  text-align: center;
}
.home-careers-title h5 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #09333f;
  margin-bottom: 12px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .home-careers-title h5 {
    font-size: 18px;
  }
}
.home-careers-title h5.align-center {
  text-align: center;
}
.home-careers-title p {
  font-size: 16px;
  line-height: 1.6;
  color: #353535;
  max-width: 750px;
  margin: 0 auto 30px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .home-careers-title p {
    font-size: 18px;
  }
}
.home-careers-title p.align-center {
  text-align: center;
}

.sp-career-intro {
  text-align: center;
  margin-bottom: 40px;
}

.sp-overview-content {
  margin-top: 30px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .sp-overview-content {
    margin-top: 40px;
  }
}
.sp-overview-content .sp-overview-text {
  font-size: 16px;
  line-height: 1.8;
  color: #4a5568;
  max-width: 100%;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .sp-overview-content .sp-overview-text {
    font-size: 17px;
    line-height: 1.9;
  }
}
.sp-overview-content .sp-overview-text p {
  margin: 0;
}
.sp-overview-content .sp-overview-text p:not(:last-child) {
  margin-bottom: 20px;
}
.sp-overview-content .sp-overview-text strong {
  color: #1a1a1a;
  font-weight: 600;
}
.sp-overview-content .sp-overview-text ul, .sp-overview-content .sp-overview-text ol {
  margin: 20px 0;
  padding-left: 24px;
}
.sp-overview-content .sp-overview-text ul li, .sp-overview-content .sp-overview-text ol li {
  margin-bottom: 12px;
}
.sp-overview-content .sp-overview-text ul li:last-child, .sp-overview-content .sp-overview-text ol li:last-child {
  margin-bottom: 0;
}

.sp-overview-section .sp-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #353535;
}
.sp-overview-section .sp-content p {
  margin-bottom: 20px;
}
.sp-overview-section .sp-content ul, .sp-overview-section .sp-content ol {
  margin: 20px 0;
}

.sp-whats-included-section {
  background: #f8f9fa;
}

.sp-included-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
@media only screen and (min-width: 768px) {
  .sp-included-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .sp-included-grid {
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.sp-included-item {
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border-radius: 12px;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(3, 164, 156, 0.06);
  position: relative;
  overflow: hidden;
}
.sp-included-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#03A49C), to(#02726c));
  background: linear-gradient(90deg, #03A49C 0%, #02726c 100%);
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.sp-included-item:hover {
  -webkit-transform: translateY(-8px);
      -ms-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 16px 40px rgba(3, 164, 156, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 16px 40px rgba(3, 164, 156, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: rgba(3, 164, 156, 0.2);
}
.sp-included-item:hover::before {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
.sp-included-item:hover .sp-item-icon {
  -webkit-transform: scale(1.1) rotateY(360deg);
          transform: scale(1.1) rotateY(360deg);
}
.sp-included-item .sp-item-icon {
  margin: 0 auto 18px auto;
  width: 84px;
  height: 84px;
  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: 999px;
  background: linear-gradient(135deg, rgba(3, 164, 156, 0.12) 0%, rgba(3, 164, 156, 0.06) 100%);
  color: #03A49C;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.sp-included-item .sp-item-icon i {
  font-size: 32px;
}
.sp-included-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #07242F;
  font-weight: 800;
}
.sp-included-item p {
  font-size: 14px;
  color: #4f4f4f;
  margin: 0;
  line-height: 1.6;
}

.sp-courses-list {
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media only screen and (min-width: 768px) {
  .sp-courses-list {
    -ms-grid-columns: 1fr 28px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .sp-courses-list {
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

.sp-course-module {
  background: #fff;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 40px 32px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
  min-height: 320px;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.sp-course-module:nth-child(6n+1) {
  background: linear-gradient(135deg, #D5F5F0 0%, #E8F9F6 100%);
  border-color: rgba(3, 164, 156, 0.15);
}
.sp-course-module:nth-child(6n+2) {
  background: #FFFFFF;
  border-color: rgba(211, 237, 234, 0.5);
}
.sp-course-module:nth-child(6n+3) {
  background: linear-gradient(135deg, #E8E3F3 0%, #F3F0FA 100%);
  border-color: rgba(155, 143, 191, 0.15);
}
.sp-course-module:nth-child(6n+4) {
  background: linear-gradient(135deg, #FFE8E8 0%, #FFF0F0 100%);
  border-color: rgba(255, 153, 153, 0.15);
}
.sp-course-module:nth-child(6n+5) {
  background: linear-gradient(135deg, #E0F2FE 0%, #F0F9FF 100%);
  border-color: rgba(14, 165, 233, 0.15);
}
.sp-course-module:nth-child(6n+6) {
  background: linear-gradient(135deg, #FFF4E6 0%, #FFF9F0 100%);
  border-color: rgba(245, 158, 11, 0.15);
}
.sp-course-module:hover {
  -webkit-transform: translateY(-8px);
      -ms-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
          box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
  border-color: #03A49C;
}
.sp-course-module:hover .sp-module-badge img {
  -webkit-transform: scale(1.08);
      -ms-transform: scale(1.08);
          transform: scale(1.08);
}
.sp-course-module .sp-module-badge {
  margin-bottom: 20px;
}
.sp-course-module .sp-module-badge img {
  max-width: 90px;
  max-height: 90px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
          filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
}

.sp-module-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sp-module-body h3 {
  font-size: 20px;
  margin: 0 0 15px;
  color: #07242F;
  font-weight: 700;
  line-height: 1.3;
}
@media only screen and (min-width: 768px) {
  .sp-module-body h3 {
    font-size: 22px;
  }
}
.sp-module-body .sp-module-meta {
  display: none;
}
.sp-module-body .sp-module-description {
  font-size: 14px;
  line-height: 1.65;
  color: #666;
  margin: 0 0 auto 0;
}
@media only screen and (min-width: 768px) {
  .sp-module-body .sp-module-description {
    font-size: 15px;
  }
}
.sp-module-body a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #03A49C;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-top: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sp-module-body a:hover {
  gap: 12px;
  color: #02726c;
}
.sp-module-body a i {
  font-size: 12px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.sp-module-body a:hover i {
  -webkit-transform: translateX(3px);
      -ms-transform: translateX(3px);
          transform: translateX(3px);
}

.sp-journey-timeline {
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  gap: 24px;
}
@media only screen and (min-width: 768px) {
  .sp-journey-timeline {
    -ms-grid-columns: 1fr 28px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .sp-journey-timeline {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}

.sp-journey-step {
  background: #fff;
  padding: 40px 32px;
  border-radius: 20px;
  border: 2px solid transparent;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.sp-journey-step:nth-child(7n+1) {
  background: #FFFFFF;
  border-color: rgba(211, 237, 234, 0.4);
}
.sp-journey-step:nth-child(7n+2) {
  background: linear-gradient(135deg, #D5F5F0 0%, #E8F9F6 100%);
  border-color: rgba(3, 164, 156, 0.15);
}
.sp-journey-step:nth-child(7n+3) {
  background: #FFFFFF;
  border-color: rgba(211, 237, 234, 0.4);
}
.sp-journey-step:nth-child(7n+4) {
  background: linear-gradient(135deg, #FFF4E6 0%, #FFF9F0 100%);
  border-color: rgba(245, 158, 11, 0.15);
}
.sp-journey-step:nth-child(7n+5) {
  background: linear-gradient(135deg, #E8E3F3 0%, #F3F0FA 100%);
  border-color: rgba(155, 143, 191, 0.15);
}
.sp-journey-step:nth-child(7n+6) {
  background: linear-gradient(135deg, #FFE8E8 0%, #FFF0F0 100%);
  border-color: rgba(255, 153, 153, 0.15);
}
.sp-journey-step:nth-child(7n+7) {
  background: linear-gradient(135deg, #E0F2FE 0%, #F0F9FF 100%);
  border-color: rgba(14, 165, 233, 0.15);
}
.sp-journey-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: -webkit-gradient(linear, left top, right top, from(#03A49C), to(#026863));
  background: linear-gradient(90deg, #03A49C 0%, #026863 100%);
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.sp-journey-step:hover {
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 20px 48px rgba(3, 164, 156, 0.14), 0 8px 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0 20px 48px rgba(3, 164, 156, 0.14), 0 8px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(3, 164, 156, 0.2);
}
.sp-journey-step:hover::before {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
.sp-journey-step:hover .sp-step-number {
  -webkit-transform: scale(1.08) rotateY(180deg);
          transform: scale(1.08) rotateY(180deg);
  -webkit-box-shadow: 0 8px 24px rgba(3, 164, 156, 0.35);
          box-shadow: 0 8px 24px rgba(3, 164, 156, 0.35);
}

.sp-step-number {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, #03A49C 0%, #02726c 100%);
  color: white;
  border-radius: 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: 30px;
  font-weight: 900;
  -webkit-box-shadow: 0 6px 18px rgba(3, 164, 156, 0.3);
          box-shadow: 0 6px 18px rgba(3, 164, 156, 0.3);
  margin-bottom: 20px;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.sp-step-number::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
  pointer-events: none;
}

.sp-step-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sp-step-content h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: #07242F;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
@media only screen and (min-width: 768px) {
  .sp-step-content h3 {
    font-size: 20px;
  }
}
.sp-step-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #494949;
  margin: 0;
}

.sp-career-progression {
  margin: 0 auto 40px;
  display: -ms-grid;
  display: grid;
  gap: 24px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .sp-career-progression {
    -ms-grid-columns: 1fr 26px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }
}
@media screen and (min-width: 1400px) {
  .sp-career-progression {
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
}

.sp-career-level {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  border: 2px solid transparent;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  min-height: 280px;
}
.sp-career-level:nth-child(1) {
  background: linear-gradient(135deg, #D5F5F0 0%, #E8F9F6 100%);
  border-color: rgba(3, 164, 156, 0.15);
}
.sp-career-level:nth-child(2) {
  background: linear-gradient(135deg, #E8E3F3 0%, #F3F0FA 100%);
  border-color: rgba(155, 143, 191, 0.15);
}
.sp-career-level:nth-child(3) {
  background: linear-gradient(135deg, #FFF4E6 0%, #FFF9F0 100%);
  border-color: rgba(245, 158, 11, 0.15);
}
.sp-career-level:nth-child(4) {
  background: linear-gradient(135deg, #D1F4E0 0%, #E6F9EE 100%);
  border-color: rgba(16, 185, 129, 0.15);
}
.sp-career-level:nth-child(5) {
  background: linear-gradient(135deg, #FFE8E8 0%, #FFF0F0 100%);
  border-color: rgba(255, 153, 153, 0.15);
}
.sp-career-level::before {
  display: none;
}
.sp-career-level:hover {
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
          box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
}
.sp-career-level:hover .sp-level-number {
  -webkit-transform: scale(1.08);
      -ms-transform: scale(1.08);
          transform: scale(1.08);
  -webkit-box-shadow: 0 8px 20px rgba(3, 164, 156, 0.4);
          box-shadow: 0 8px 20px rgba(3, 164, 156, 0.4);
}
.sp-career-level:hover .sp-career-salary {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.sp-career-level:last-child {
  margin-bottom: 0;
}

.sp-level-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 6px;
}
.sp-level-header .sp-level-number {
  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;
  padding: 8px 18px;
  background: linear-gradient(135deg, #03A49C 0%, #027c76 100%);
  color: white;
  border-radius: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  -webkit-box-shadow: 0 4px 12px rgba(3, 164, 156, 0.25);
          box-shadow: 0 4px 12px rgba(3, 164, 156, 0.25);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sp-level-header h3 {
  font-size: 20px;
  margin: 0;
  color: #07242F;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
@media only screen and (min-width: 768px) {
  .sp-level-header h3 {
    font-size: 21px;
  }
}

.sp-career-salary {
  color: #03A49C;
  font-weight: 900;
  font-size: 26px;
  margin: 8px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 6px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  line-height: 1;
}
.sp-career-salary::before {
  content: "Up to";
  font-size: 12px;
  font-weight: 600;
  color: #5b5b5b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sp-career-cta {
  text-align: center;
  padding: 40px;
  background: #03A49C;
  color: white;
  border-radius: 5px;
  max-width: 700px;
  margin: 0 auto;
}
.sp-career-cta p {
  font-size: 20px;
  line-height: 1.6;
  color: white;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .sp-career-cta p {
    font-size: 22px;
  }
}
.sp-career-cta .sp-cta-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  margin-top: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sp-career-cta .sp-cta-buttons .btn, .sp-career-cta .sp-cta-buttons .icon-boxes.courses-included .icon-box.col .read-more-btn, .icon-boxes.courses-included .icon-box.col .sp-career-cta .sp-cta-buttons .read-more-btn, .sp-career-cta .sp-cta-buttons .woocommerce form input[type=submit], .woocommerce form .sp-career-cta .sp-cta-buttons input[type=submit],
.sp-career-cta .sp-cta-buttons .woocommerce form input[type=button],
.woocommerce form .sp-career-cta .sp-cta-buttons input[type=button] {
  min-width: 180px;
}

.icon-boxes.col-container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .icon-boxes.col-container {
    gap: 40px;
  }
}
.icon-boxes .home-careers-title {
  position: relative;
}
.icon-boxes .col {
  margin: 0 0 20px;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  background: white;
  border-radius: 10px;
  -webkit-box-shadow: 0px 1px 29px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 1px 29px rgba(0, 0, 0, 0.05);
  padding: 30px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .icon-boxes .col {
    padding: 42px 30px;
    margin: 0 0 30px;
  }
}
.icon-boxes .icon-box {
  -webkit-box-shadow: 0 5px 25px rgba(186, 183, 183, 0.4);
          box-shadow: 0 5px 25px rgba(186, 183, 183, 0.4);
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.icon-boxes .icon-box .btn.third, .icon-boxes.courses-included .icon-box.col .third.read-more-btn, .icon-boxes .icon-box .woocommerce form input.third[type=submit], .woocommerce form .icon-boxes .icon-box input.third[type=submit],
.icon-boxes .icon-box .woocommerce form input.third[type=button],
.woocommerce form .icon-boxes .icon-box input.third[type=button] {
  font-weight: 600;
  padding: 16px 30px;
  font-family: "Urbanist", sans-serif;
  text-transform: none;
  font-size: 1em;
  line-height: 1em;
}
.icon-boxes i {
  font-size: 3.4375em;
  line-height: 1em;
  margin: 0 0 25px;
  color: #09333f;
}
.icon-boxes .icon-image {
  width: auto;
  height: auto;
  max-height: 80px;
  max-width: 210px;
  margin: 0 0 25px;
  -o-object-fit: contain;
     object-fit: contain;
  display: inline-block;
}
.icon-boxes h3 {
  margin: 0 0 10px;
  font-weight: 600;
  color: #353535;
  font-size: 1.25em;
  line-height: 1.5em;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .icon-boxes h3 {
    font-size: 1.4375em;
    line-height: 1.5217391304em;
  }
}
.icon-boxes h2, .icon-boxes h2.align-center {
  margin-bottom: 20px;
}
.icon-boxes p {
  font-size: 1.0625em;
  line-height: 1.7647058824em;
  margin: 0 auto;
  max-width: 410px;
}
.icon-boxes p.align-center {
  max-width: 800px;
  margin-bottom: 20px;
}
.icon-boxes .btn, .icon-boxes.courses-included .icon-box.col .read-more-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: "Urbanist", 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 .icon-boxes.courses-included .icon-box.col .read-more-btn, .icon-boxes.courses-included .icon-box.col .icon-boxes.small .read-more-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;
}
.icon-boxes.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}
.icon-boxes.overlap-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, #0A333F), color-stop(40%, #D3EDEA));
  background: linear-gradient(to bottom, #0A333F 40%, #D3EDEA 40%);
}
.icon-boxes.overlap-section .icon-box.col {
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}
.icon-boxes.overlap-section .fa-trophy {
  color: #e5d290;
}
.icon-boxes.overlap-section .fa-chalkboard-user {
  color: #a0d5e7;
}
.icon-boxes.overlap-section .fa-file-certificate {
  color: #d9b7ec;
}
.icon-boxes.overlap-section .fa-sterling-sign, .icon-boxes.overlap-section .fa-calendar, .icon-boxes.overlap-section .fa-award {
  color: #aae18f;
}
.icon-boxes.overlap-journey.flex-content ul {
  margin-bottom: 20px;
}
.icon-boxes.overlap-journey.flex-content ul > li {
  padding: 0 0 5px 30px;
}

.icon-boxes.courses-included.col-container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 35px;
     -moz-column-gap: 35px;
          column-gap: 35px;
  row-gap: 20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .icon-boxes.courses-included.col-container {
    row-gap: 40px;
  }
}
.icon-boxes.courses-included.primary-background .icon-box {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.icon-boxes.courses-included.primary-background .icon-box p {
  color: #353535 !important;
}
@media only screen and (min-width: 768px) {
  .icon-boxes.courses-included.one-col .col.icon-box {
    width: calc(100% - 0px);
    -ms-flex-preferred-size: calc(100% - 0px);
        flex-basis: calc(100% - 0px);
  }
}
.icon-boxes.courses-included.one-col .col.icon-box p {
  max-width: none;
}
.icon-boxes.courses-included.home-careers .syllabus-btn-container {
  display: none !important;
}
.icon-boxes.courses-included h2, .icon-boxes.courses-included h5, .icon-boxes.courses-included p {
  text-align: left !important;
  max-width: 750px;
  margin-left: 0 !important;
  margin-right: auto !important;
}
@media screen and (min-width: 1400px) {
  .icon-boxes.courses-included h2, .icon-boxes.courses-included h5, .icon-boxes.courses-included p {
    max-width: 1000px;
  }
}
.icon-boxes.courses-included p {
  max-width: 100%;
}
@media screen and (min-width: 1400px) {
  .icon-boxes.courses-included p {
    max-width: 750px;
  }
}
.icon-boxes.courses-included p.align-center {
  margin-bottom: 30px;
}
@media screen and (min-width: 1100px) {
  .icon-boxes.courses-included p.align-center {
    margin-bottom: 50px;
  }
}
.icon-boxes.courses-included h2.align-center {
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .icon-boxes.courses-included .col.three-col {
    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) {
  .icon-boxes.courses-included .col.three-col {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
    padding: 42px 30px 15px 30px;
  }
}
@media screen and (min-width: 1400px) {
  .icon-boxes.courses-included .col.three-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) {
  .icon-boxes.courses-included .col.two-col {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
    -ms-flex-line-pack: center;
        align-content: center;
  }
}
@media screen and (min-width: 1400px) {
  .icon-boxes.courses-included .col.two-col {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
.icon-boxes.courses-included .icon-box.col {
  -ms-flex-line-pack: start;
      align-content: flex-start;
  text-align: left;
  border-radius: 15px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.icon-boxes.courses-included .icon-box.col i {
  font-size: 3.125em;
  line-height: 1em;
}
.icon-boxes.courses-included .icon-box.col .read-more-btn {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
  color: #353535 !important;
  text-transform: none !important;
  font-family: "Manrope", sans-serif !important;
  font-size: 15px !important;
}
.icon-boxes.courses-included .icon-box.col .read-more-btn:after {
  color: #353535 !important;
}
.icon-boxes.courses-included .icon-box.col .read-more-btn:hover:after {
  color: #09333f !important;
}
.icon-boxes.courses-included .icon-box.col .read-more-content {
  margin-top: 0;
}
.icon-boxes.courses-included .icon-box.col .read-more-content .btn, .icon-boxes.courses-included .icon-box.col .read-more-content .woocommerce form input[type=submit], .woocommerce form .icon-boxes.courses-included .icon-box.col .read-more-content input[type=submit],
.icon-boxes.courses-included .icon-box.col .read-more-content .woocommerce form input[type=button],
.woocommerce form .icon-boxes.courses-included .icon-box.col .read-more-content input[type=button], .icon-boxes.courses-included .icon-box.col .read-more-content .read-more-btn {
  margin-top: 5px;
  margin-bottom: 20px;
}
.icon-boxes.courses-included .syllabus-btn-container {
  width: 100% !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  margin-bottom: 0 !important;
  clear: both !important;
  -ms-flex-preferred-size: 100% !important;
      flex-basis: 100% !important;
  -webkit-box-ordinal-group: 1000 !important;
      -ms-flex-order: 999 !important;
          order: 999 !important;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 20px;
}
.icon-boxes.courses-included .syllabus-btn-container .btn + .btn, .icon-boxes.courses-included .syllabus-btn-container .woocommerce form input[type=submit] + .btn, .woocommerce form .icon-boxes.courses-included .syllabus-btn-container input[type=submit] + .btn,
.icon-boxes.courses-included .syllabus-btn-container .woocommerce form input[type=button] + .btn,
.woocommerce form .icon-boxes.courses-included .syllabus-btn-container input[type=button] + .btn, .icon-boxes.courses-included .syllabus-btn-container .icon-box.col .read-more-btn + .btn, .icon-boxes.courses-included .icon-box.col .syllabus-btn-container .read-more-btn + .btn, .icon-boxes.courses-included .syllabus-btn-container .woocommerce form .btn + input[type=submit], .woocommerce form .icon-boxes.courses-included .syllabus-btn-container .btn + input[type=submit], .icon-boxes.courses-included .syllabus-btn-container .woocommerce form input[type=submit] + input[type=submit], .woocommerce form .icon-boxes.courses-included .syllabus-btn-container input[type=submit] + input[type=submit],
.icon-boxes.courses-included .syllabus-btn-container .woocommerce form input[type=button] + input[type=submit],
.woocommerce form .icon-boxes.courses-included .syllabus-btn-container input[type=button] + input[type=submit], .icon-boxes.courses-included .syllabus-btn-container .icon-box.col .woocommerce form .read-more-btn + input[type=submit], .woocommerce form .icon-boxes.courses-included .syllabus-btn-container .icon-box.col .read-more-btn + input[type=submit], .icon-boxes.courses-included .icon-box.col .syllabus-btn-container .woocommerce form .read-more-btn + input[type=submit], .woocommerce form .icon-boxes.courses-included .icon-box.col .syllabus-btn-container .read-more-btn + input[type=submit],
.icon-boxes.courses-included .syllabus-btn-container .woocommerce form .btn + input[type=button],
.woocommerce form .icon-boxes.courses-included .syllabus-btn-container .btn + input[type=button],
.icon-boxes.courses-included .syllabus-btn-container .woocommerce form input[type=submit] + input[type=button],
.woocommerce form .icon-boxes.courses-included .syllabus-btn-container input[type=submit] + input[type=button],
.icon-boxes.courses-included .syllabus-btn-container .woocommerce form input[type=button] + input[type=button],
.woocommerce form .icon-boxes.courses-included .syllabus-btn-container input[type=button] + input[type=button],
.icon-boxes.courses-included .syllabus-btn-container .icon-box.col .woocommerce form .read-more-btn + input[type=button],
.woocommerce form .icon-boxes.courses-included .syllabus-btn-container .icon-box.col .read-more-btn + input[type=button],
.icon-boxes.courses-included .icon-box.col .syllabus-btn-container .woocommerce form .read-more-btn + input[type=button],
.woocommerce form .icon-boxes.courses-included .icon-box.col .syllabus-btn-container .read-more-btn + input[type=button], .icon-boxes.courses-included .syllabus-btn-container .icon-box.col .btn + .read-more-btn, .icon-boxes.courses-included .icon-box.col .syllabus-btn-container .btn + .read-more-btn, .icon-boxes.courses-included .syllabus-btn-container .woocommerce form .icon-box.col input[type=submit] + .read-more-btn, .icon-boxes.courses-included .icon-box.col .syllabus-btn-container .woocommerce form input[type=submit] + .read-more-btn, .woocommerce form .icon-boxes.courses-included .syllabus-btn-container .icon-box.col input[type=submit] + .read-more-btn, .woocommerce form .icon-boxes.courses-included .icon-box.col .syllabus-btn-container input[type=submit] + .read-more-btn,
.icon-boxes.courses-included .syllabus-btn-container .woocommerce form .icon-box.col input[type=button] + .read-more-btn,
.icon-boxes.courses-included .icon-box.col .syllabus-btn-container .woocommerce form input[type=button] + .read-more-btn,
.woocommerce form .icon-boxes.courses-included .syllabus-btn-container .icon-box.col input[type=button] + .read-more-btn,
.woocommerce form .icon-boxes.courses-included .icon-box.col .syllabus-btn-container input[type=button] + .read-more-btn, .icon-boxes.courses-included .syllabus-btn-container .icon-box.col .read-more-btn + .read-more-btn, .icon-boxes.courses-included .icon-box.col .syllabus-btn-container .read-more-btn + .read-more-btn {
  margin-left: 0;
}
@media only screen and (min-width: 480px) {
  .icon-boxes.courses-included .syllabus-btn-container {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
}
.icon-boxes.courses-included .syllabus-btn-container .view-syllabus-btn {
  background: #35797B !important;
  border: 1px solid #35797B !important;
  padding: 18px 30px !important;
  font-size: 1em;
  line-height: 1.5625em;
  margin-top: 0 !important;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .icon-boxes.courses-included .syllabus-btn-container .view-syllabus-btn {
    font-size: 1.125em;
    line-height: 1em;
  }
}
.icon-boxes.courses-included .syllabus-btn-container .view-syllabus-btn:after {
  background: #35797B !important;
}
.icon-boxes.courses-included .syllabus-btn-container .view-syllabus-btn:hover:after, .icon-boxes.courses-included .syllabus-btn-container .view-syllabus-btn:focus:after, .icon-boxes.courses-included .syllabus-btn-container .view-syllabus-btn.active:after {
  background: #2d6769 !important;
}
.icon-boxes.courses-included p {
  margin: 0 0 25px 0 !important;
  font-size: 1em;
  line-height: 1.875em;
}
.icon-boxes.courses-included strong {
  font-weight: 600;
}
.icon-boxes.courses-included .icon-image {
  max-height: 90px;
}
.icon-boxes.courses-included h3 {
  font-weight: 700;
  font-size: 1.375em;
  line-height: 1.5909090909em;
  margin-bottom: 20px;
}
.icon-boxes.courses-included.pastels-alternative .icon-box.col {
  background: white;
  -webkit-box-shadow: 0 5px 25px rgba(186, 183, 183, 0.4);
          box-shadow: 0 5px 25px rgba(186, 183, 183, 0.4);
}
.icon-boxes.courses-included.pastels-alternative .icon-box.col:nth-child(even) {
  background: #FFF9E6 !important;
}
.icon-boxes.courses-included.pastels-alternative .icon-box.col h3 {
  color: #353535 !important;
}
.icon-boxes.courses-included.pastels-alternative .icon-box.col i, .icon-boxes.courses-included.pastels-alternative .icon-box.col .icon-image {
  color: #09333f !important;
}
@media screen and (min-width: 1620px) {
  .icon-boxes.courses-included.home-careers {
    padding-left: calc((100% - 1560px) / 2);
    padding-right: calc((100% - 1560px) / 2);
  }
}
.icon-boxes.courses-included.home-careers .home-careers-title {
  text-align: center;
  position: relative;
  overflow: visible;
}
.icon-boxes.courses-included.home-careers .home-careers-title h2, .icon-boxes.courses-included.home-careers .home-careers-title p {
  text-align: center !important;
  max-width: none;
}
.icon-boxes.courses-included.home-careers .home-careers-title p {
  margin-bottom: 50px !important;
}
.icon-boxes.courses-included.home-careers.col-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media only screen and (min-width: 768px) {
  .icon-boxes.courses-included.home-careers.col-container {
    gap: 20px;
  }
}
@media screen and (min-width: 1400px) {
  .icon-boxes.courses-included.home-careers.col-container {
    gap: 30px;
  }
}
.icon-boxes.courses-included.home-careers .icon-box.col {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .icon-boxes.courses-included.home-careers .icon-box.col {
    margin-bottom: 0;
  }
  .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(2), .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 10px);
            flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
  .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(4), .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(5), .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(6) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(33.333% - 13.33px);
            flex: 0 0 calc(33.333% - 13.33px);
    max-width: calc(33.333% - 13.33px);
  }
}
@media screen and (min-width: 1400px) {
  .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(2), .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(3) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 15px);
            flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
  .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(4), .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(5), .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(6) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(33.333% - 20px);
            flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
  }
}
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(2) {
  background: #D6D8FF !important;
}
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(3) {
  background: #FFF5C2 !important;
}
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(4) {
  background: #C0F9F9 !important;
  background: #E8F7FC !important;
}
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(5) {
  background: #FCEBFF !important;
}
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(6) {
  background: #E4FFCF !important;
}
.icon-boxes.courses-included.home-careers .icon-box.col p {
  color: #353535 !important;
  margin-bottom: 15px;
}
.icon-boxes.courses-included.home-careers .icon-box.col h3 {
  color: #07242F !important;
  font-weight: 600;
}
@media screen and (min-width: 1100px) {
  .icon-boxes.courses-included.home-careers .icon-box.col h3 {
    font-size: 2.0625em;
    line-height: 1.3636363636em;
  }
}
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(2) i, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(2) .icon-image {
  color: #5A5FCC !important;
}
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(3) i, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(3) .icon-image {
  color: #E6A700 !important;
}
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(4) i, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(4) .icon-image {
  color: #00A5A5 !important;
}
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(5) i, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(5) .icon-image {
  color: #CC66CC !important;
}
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(6) i, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(6) .icon-image {
  color: #4CAF50 !important;
}
.icon-boxes.courses-included.home-careers .icon-box.col .btn, .icon-boxes.courses-included.home-careers .icon-box.col .woocommerce form input[type=submit], .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col input[type=submit],
.icon-boxes.courses-included.home-careers .icon-box.col .woocommerce form input[type=button],
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col input[type=button], .icon-boxes.courses-included.home-careers .icon-box.col .read-more-btn {
  background: #03A49C !important;
  color: white !important;
  font-weight: 600 !important;
  padding: 14px 24px !important;
  margin-top: 20px !important;
  font-family: "Urbanist", sans-serif !important;
  font-size: 16px !important;
  line-height: 25px !important;
  border-radius: 8px !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  text-transform: none !important;
  letter-spacing: 0.5px !important;
  border: none !important;
  cursor: pointer !important;
  display: inline-block !important;
  text-align: center !important;
  text-decoration: none !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
  white-space: normal;
  text-align: left !important;
}
@media screen and (min-width: 1400px) {
  .icon-boxes.courses-included.home-careers .icon-box.col .btn, .icon-boxes.courses-included.home-careers .icon-box.col .woocommerce form input[type=submit], .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col input[type=submit],
  .icon-boxes.courses-included.home-careers .icon-box.col .woocommerce form input[type=button],
  .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col input[type=button], .icon-boxes.courses-included.home-careers .icon-box.col .read-more-btn {
    line-height: 15px !important;
  }
}
.icon-boxes.courses-included.home-careers .icon-box.col .btn::after, .icon-boxes.courses-included.home-careers .icon-box.col .woocommerce form input[type=submit]::after, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col input[type=submit]::after,
.icon-boxes.courses-included.home-careers .icon-box.col .woocommerce form input[type=button]::after,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col input[type=button]::after, .icon-boxes.courses-included.home-careers .icon-box.col .read-more-btn::after {
  display: none !important;
  content: none !important;
  background: none !important;
  opacity: 0 !important;
  width: 0 !important;
}
.icon-boxes.courses-included.home-careers .icon-box.col .btn::before, .icon-boxes.courses-included.home-careers .icon-box.col .woocommerce form input[type=submit]::before, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col input[type=submit]::before,
.icon-boxes.courses-included.home-careers .icon-box.col .woocommerce form input[type=button]::before,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col input[type=button]::before, .icon-boxes.courses-included.home-careers .icon-box.col .read-more-btn::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 100% !important;
  -webkit-transition: width 0.3s ease !important;
  transition: width 0.3s ease !important;
  z-index: -1 !important;
  background: #03A49C !important;
}
.icon-boxes.courses-included.home-careers .icon-box.col .btn:hover, .icon-boxes.courses-included.home-careers .icon-box.col .woocommerce form input[type=submit]:hover, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col input[type=submit]:hover,
.icon-boxes.courses-included.home-careers .icon-box.col .woocommerce form input[type=button]:hover,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col input[type=button]:hover, .icon-boxes.courses-included.home-careers .icon-box.col .read-more-btn:hover, .icon-boxes.courses-included.home-careers .icon-box.col .btn:focus, .icon-boxes.courses-included.home-careers .icon-box.col .woocommerce form input[type=submit]:focus, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col input[type=submit]:focus,
.icon-boxes.courses-included.home-careers .icon-box.col .woocommerce form input[type=button]:focus,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col input[type=button]:focus, .icon-boxes.courses-included.home-careers .icon-box.col .read-more-btn:focus, .icon-boxes.courses-included.home-careers .icon-box.col .btn:active, .icon-boxes.courses-included.home-careers .icon-box.col .woocommerce form input[type=submit]:active, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col input[type=submit]:active,
.icon-boxes.courses-included.home-careers .icon-box.col .woocommerce form input[type=button]:active,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col input[type=button]:active, .icon-boxes.courses-included.home-careers .icon-box.col .read-more-btn:active {
  -webkit-transform: translateY(-2px) !important;
      -ms-transform: translateY(-2px) !important;
          transform: translateY(-2px) !important;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  background: #07242F !important;
  color: white !important;
}
.icon-boxes.courses-included.home-careers .icon-box.col .btn:hover::before, .icon-boxes.courses-included.home-careers .icon-box.col .woocommerce form input[type=submit]:hover::before, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col input[type=submit]:hover::before,
.icon-boxes.courses-included.home-careers .icon-box.col .woocommerce form input[type=button]:hover::before,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col input[type=button]:hover::before, .icon-boxes.courses-included.home-careers .icon-box.col .read-more-btn:hover::before, .icon-boxes.courses-included.home-careers .icon-box.col .btn:focus::before, .icon-boxes.courses-included.home-careers .icon-box.col .woocommerce form input[type=submit]:focus::before, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col input[type=submit]:focus::before,
.icon-boxes.courses-included.home-careers .icon-box.col .woocommerce form input[type=button]:focus::before,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col input[type=button]:focus::before, .icon-boxes.courses-included.home-careers .icon-box.col .read-more-btn:focus::before, .icon-boxes.courses-included.home-careers .icon-box.col .btn:active::before, .icon-boxes.courses-included.home-careers .icon-box.col .woocommerce form input[type=submit]:active::before, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col input[type=submit]:active::before,
.icon-boxes.courses-included.home-careers .icon-box.col .woocommerce form input[type=button]:active::before,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col input[type=button]:active::before, .icon-boxes.courses-included.home-careers .icon-box.col .read-more-btn:active::before {
  width: 100% !important;
}
.icon-boxes.courses-included.home-careers .icon-box.col .btn:hover::after, .icon-boxes.courses-included.home-careers .icon-box.col .woocommerce form input[type=submit]:hover::after, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col input[type=submit]:hover::after,
.icon-boxes.courses-included.home-careers .icon-box.col .woocommerce form input[type=button]:hover::after,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col input[type=button]:hover::after, .icon-boxes.courses-included.home-careers .icon-box.col .read-more-btn:hover::after, .icon-boxes.courses-included.home-careers .icon-box.col .btn:focus::after, .icon-boxes.courses-included.home-careers .icon-box.col .woocommerce form input[type=submit]:focus::after, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col input[type=submit]:focus::after,
.icon-boxes.courses-included.home-careers .icon-box.col .woocommerce form input[type=button]:focus::after,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col input[type=button]:focus::after, .icon-boxes.courses-included.home-careers .icon-box.col .read-more-btn:focus::after, .icon-boxes.courses-included.home-careers .icon-box.col .btn:active::after, .icon-boxes.courses-included.home-careers .icon-box.col .woocommerce form input[type=submit]:active::after, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col input[type=submit]:active::after,
.icon-boxes.courses-included.home-careers .icon-box.col .woocommerce form input[type=button]:active::after,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col input[type=button]:active::after, .icon-boxes.courses-included.home-careers .icon-box.col .read-more-btn:active::after {
  display: none !important;
  opacity: 0 !important;
  width: 0 !important;
}
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(2) .btn::before, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(2) .woocommerce form input[type=submit]::before, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(2) input[type=submit]::before,
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(2) .woocommerce form input[type=button]::before,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(2) input[type=button]::before, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(2) .read-more-btn::before {
  background: #5A5FCC !important;
}
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(2) .btn:hover, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(2) .woocommerce form input[type=submit]:hover, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(2) input[type=submit]:hover,
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(2) .woocommerce form input[type=button]:hover,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(2) input[type=button]:hover, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(2) .read-more-btn:hover, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(2) .btn:focus, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(2) .woocommerce form input[type=submit]:focus, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(2) input[type=submit]:focus,
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(2) .woocommerce form input[type=button]:focus,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(2) input[type=button]:focus, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(2) .read-more-btn:focus, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(2) .btn:active, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(2) .woocommerce form input[type=submit]:active, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(2) input[type=submit]:active,
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(2) .woocommerce form input[type=button]:active,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(2) input[type=button]:active, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(2) .read-more-btn:active {
  -webkit-box-shadow: 0 4px 12px rgba(90, 95, 204, 0.3) !important;
          box-shadow: 0 4px 12px rgba(90, 95, 204, 0.3) !important;
}
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(3) .btn::before, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(3) .woocommerce form input[type=submit]::before, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(3) input[type=submit]::before,
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(3) .woocommerce form input[type=button]::before,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(3) input[type=button]::before, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(3) .read-more-btn::before {
  background: #E6A700 !important;
}
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(3) .btn:hover, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(3) .woocommerce form input[type=submit]:hover, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(3) input[type=submit]:hover,
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(3) .woocommerce form input[type=button]:hover,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(3) input[type=button]:hover, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(3) .read-more-btn:hover, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(3) .btn:focus, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(3) .woocommerce form input[type=submit]:focus, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(3) input[type=submit]:focus,
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(3) .woocommerce form input[type=button]:focus,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(3) input[type=button]:focus, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(3) .read-more-btn:focus, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(3) .btn:active, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(3) .woocommerce form input[type=submit]:active, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(3) input[type=submit]:active,
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(3) .woocommerce form input[type=button]:active,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(3) input[type=button]:active, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(3) .read-more-btn:active {
  -webkit-box-shadow: 0 4px 12px rgba(230, 167, 0, 0.3) !important;
          box-shadow: 0 4px 12px rgba(230, 167, 0, 0.3) !important;
}
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(4) .btn::before, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(4) .woocommerce form input[type=submit]::before, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(4) input[type=submit]::before,
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(4) .woocommerce form input[type=button]::before,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(4) input[type=button]::before, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(4) .read-more-btn::before {
  background: #00A5A5 !important;
}
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(4) .btn:hover, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(4) .woocommerce form input[type=submit]:hover, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(4) input[type=submit]:hover,
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(4) .woocommerce form input[type=button]:hover,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(4) input[type=button]:hover, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(4) .read-more-btn:hover, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(4) .btn:focus, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(4) .woocommerce form input[type=submit]:focus, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(4) input[type=submit]:focus,
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(4) .woocommerce form input[type=button]:focus,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(4) input[type=button]:focus, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(4) .read-more-btn:focus, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(4) .btn:active, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(4) .woocommerce form input[type=submit]:active, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(4) input[type=submit]:active,
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(4) .woocommerce form input[type=button]:active,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(4) input[type=button]:active, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(4) .read-more-btn:active {
  -webkit-box-shadow: 0 4px 12px rgba(0, 165, 165, 0.3) !important;
          box-shadow: 0 4px 12px rgba(0, 165, 165, 0.3) !important;
}
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(5) .btn::before, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(5) .woocommerce form input[type=submit]::before, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(5) input[type=submit]::before,
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(5) .woocommerce form input[type=button]::before,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(5) input[type=button]::before, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(5) .read-more-btn::before {
  background: #CC66CC !important;
}
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(5) .btn:hover, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(5) .woocommerce form input[type=submit]:hover, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(5) input[type=submit]:hover,
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(5) .woocommerce form input[type=button]:hover,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(5) input[type=button]:hover, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(5) .read-more-btn:hover, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(5) .btn:focus, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(5) .woocommerce form input[type=submit]:focus, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(5) input[type=submit]:focus,
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(5) .woocommerce form input[type=button]:focus,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(5) input[type=button]:focus, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(5) .read-more-btn:focus, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(5) .btn:active, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(5) .woocommerce form input[type=submit]:active, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(5) input[type=submit]:active,
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(5) .woocommerce form input[type=button]:active,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(5) input[type=button]:active, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(5) .read-more-btn:active {
  -webkit-box-shadow: 0 4px 12px rgba(204, 102, 204, 0.3) !important;
          box-shadow: 0 4px 12px rgba(204, 102, 204, 0.3) !important;
}
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(6) .btn::before, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(6) .woocommerce form input[type=submit]::before, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(6) input[type=submit]::before,
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(6) .woocommerce form input[type=button]::before,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(6) input[type=button]::before, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(6) .read-more-btn::before {
  background: #4CAF50 !important;
}
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(6) .btn:hover, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(6) .woocommerce form input[type=submit]:hover, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(6) input[type=submit]:hover,
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(6) .woocommerce form input[type=button]:hover,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(6) input[type=button]:hover, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(6) .read-more-btn:hover, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(6) .btn:focus, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(6) .woocommerce form input[type=submit]:focus, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(6) input[type=submit]:focus,
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(6) .woocommerce form input[type=button]:focus,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(6) input[type=button]:focus, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(6) .read-more-btn:focus, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(6) .btn:active, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(6) .woocommerce form input[type=submit]:active, .woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(6) input[type=submit]:active,
.icon-boxes.courses-included.home-careers .icon-box.col:nth-child(6) .woocommerce form input[type=button]:active,
.woocommerce form .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(6) input[type=button]:active, .icon-boxes.courses-included.home-careers .icon-box.col:nth-child(6) .read-more-btn:active {
  -webkit-box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3) !important;
          box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3) !important;
}
.icon-boxes.courses-included.no-read-more-content .icon-box.col .read-more-btn {
  display: none !important;
}
.icon-boxes.courses-included.no-read-more-content .icon-box.col .read-more-content {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  height: auto !important;
  max-height: none !important;
  width: 100%;
}

.icon-boxes.evens-pastels .icon-box.col {
  background: white;
  -webkit-box-shadow: 0 5px 25px rgba(186, 183, 183, 0.4);
          box-shadow: 0 5px 25px rgba(186, 183, 183, 0.4);
}
.icon-boxes.evens-pastels .icon-box.col:nth-child(8n+2) {
  background: #d3edea !important;
}
.icon-boxes.evens-pastels .icon-box.col:nth-child(8n+4) {
  background: #d6d8ff !important;
}
.icon-boxes.evens-pastels .icon-box.col .icon-box.col:nth-child(4) {
  background: white !important;
}
.icon-boxes.evens-pastels .icon-box.col:nth-child(8n+6) {
  background: #fcecff !important;
}
.icon-boxes.evens-pastels .icon-box.col:nth-child(8n) {
  background: #fff4ce !important;
}
.icon-boxes.evens-pastels .icon-box.col h3, .icon-boxes.evens-pastels .icon-box.col p {
  color: #353535 !important;
}
.icon-boxes.evens-pastels.light-background .icon-box.col:nth-child(8n+2) {
  background: #EEE3F4 !important;
}
.icon-boxes.evens-pastels.primary-background .icon-box.col {
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media only screen and (min-width: 768px) {
  .icon-boxes.evens-pastels > .col.two-col.icon-box:nth-child(1) {
    background: #d3edea !important;
  }
  .icon-boxes.evens-pastels > .col.two-col.icon-box:nth-child(8n+5) {
    background: #d6d8ff !important;
  }
  .icon-boxes.evens-pastels > .col.two-col.icon-box:nth-child(4) {
    background: white !important;
  }
}
@media only screen and (min-width: 768px) {
  .icon-boxes.evens-pastels.light-background > .col.two-col.icon-box:nth-child(1) {
    background: #EEE3F4 !important;
  }
}

.postid-5370 .icon-boxes.six-steps.row.padded-top {
  padding-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .postid-5370 .icon-boxes.six-steps.row.padded-top {
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .postid-5370 .icon-boxes.six-steps.row.padded-top {
    padding-bottom: 80px;
  }
}

.postid-5371 .icon-boxes.six-steps.row.padded-top {
  padding-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .postid-5371 .icon-boxes.six-steps.row.padded-top {
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .postid-5371 .icon-boxes.six-steps.row.padded-top {
    padding-bottom: 80px;
  }
}

.postid-5372 .icon-boxes.six-steps.row.padded-top {
  padding-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .postid-5372 .icon-boxes.six-steps.row.padded-top {
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .postid-5372 .icon-boxes.six-steps.row.padded-top {
    padding-bottom: 80px;
  }
}

.postid-5373 .icon-boxes.six-steps.row.padded-top {
  padding-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .postid-5373 .icon-boxes.six-steps.row.padded-top {
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .postid-5373 .icon-boxes.six-steps.row.padded-top {
    padding-bottom: 80px;
  }
}

.postid-5374 .icon-boxes.six-steps.row.padded-top {
  padding-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .postid-5374 .icon-boxes.six-steps.row.padded-top {
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .postid-5374 .icon-boxes.six-steps.row.padded-top {
    padding-bottom: 80px;
  }
}

.postid-5375 .icon-boxes.six-steps.row.padded-top {
  padding-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .postid-5375 .icon-boxes.six-steps.row.padded-top {
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .postid-5375 .icon-boxes.six-steps.row.padded-top {
    padding-bottom: 80px;
  }
}

.postid-5376 .icon-boxes.six-steps.row.padded-top {
  padding-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .postid-5376 .icon-boxes.six-steps.row.padded-top {
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .postid-5376 .icon-boxes.six-steps.row.padded-top {
    padding-bottom: 80px;
  }
}

.icon-boxes.six-steps.secondary-background h2.align-center {
  color: white;
}
.icon-boxes.six-steps.secondary-background .step-number {
  background: #D3EDEA;
  color: #09333f;
}
.icon-boxes.six-steps.secondary-background .step-connecting-line {
  background: #D3EDEA;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .icon-boxes.six-steps.col-container {
    gap: 0;
  }
}
.icon-boxes.six-steps .six-steps-container {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  width: 100%;
}
@media screen and (min-width: 1100px) {
  .icon-boxes.six-steps .six-steps-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 25px;
  }
}
@media screen and (min-width: 1400px) {
  .icon-boxes.six-steps .six-steps-container {
    gap: 50px;
  }
}
.icon-boxes.six-steps .six-steps-group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 1100px) {
  .icon-boxes.six-steps .six-steps-group {
    width: auto;
  }
}
@media screen and (min-width: 1100px) {
  .icon-boxes.six-steps .six-steps-group:last-child .step-connecting-line {
    display: none;
  }
}
.icon-boxes.six-steps .step-circle-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.icon-boxes.six-steps .step-number {
  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: 45px;
  height: 45px;
  border-radius: 50%;
  background: #03A49C;
  color: white;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 18px;
  z-index: 2;
  position: relative;
  opacity: 0;
  -webkit-transform: scale(0.5);
      -ms-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.secondary-background .icon-boxes.six-steps .step-number {
  background: #D3EDEA !important;
  color: #09333f !important;
}
@media screen and (min-width: 1100px) {
  .icon-boxes.six-steps .step-number {
    width: 55px;
    height: 55px;
    font-size: 20px;
  }
}
.icon-boxes.six-steps .step-number.animate-step {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.icon-boxes.six-steps .step-connecting-line {
  display: block;
  position: absolute;
  top: calc(50% + 20px);
  left: 50%;
  width: 2px;
  height: calc(100% + 40px);
  background: #03A49C;
  -webkit-transform: translateX(-50%) scaleY(0);
      -ms-transform: translateX(-50%) scaleY(0);
          transform: translateX(-50%) scaleY(0);
  -webkit-transform-origin: top;
      -ms-transform-origin: top;
          transform-origin: top;
  z-index: 0;
  opacity: 0;
  -webkit-transition: all 0.8s ease 0.2s;
  transition: all 0.8s ease 0.2s;
}
@media screen and (min-width: 1100px) {
  .icon-boxes.six-steps .step-connecting-line {
    top: 50%;
    left: calc(50% + 28px);
    width: calc(100% - 0px);
    height: 2px;
    -webkit-transform: translateY(-50%) scaleX(0);
        -ms-transform: translateY(-50%) scaleX(0);
            transform: translateY(-50%) scaleX(0);
    -webkit-transform-origin: left;
        -ms-transform-origin: left;
            transform-origin: left;
    z-index: 1;
    background-color: rgba(3, 164, 156, 0.95);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .primary-background .icon-boxes.six-steps .step-connecting-line {
    background: #D3EDEA !important;
  }
}
.icon-boxes.six-steps .step-connecting-line.animate-line {
  opacity: 1;
  -webkit-transform: translateX(-50%) scaleY(1);
      -ms-transform: translateX(-50%) scaleY(1);
          transform: translateX(-50%) scaleY(1);
}
@media screen and (min-width: 1100px) {
  .icon-boxes.six-steps .step-connecting-line.animate-line {
    -webkit-transform: translateY(-50%) scaleX(1);
        -ms-transform: translateY(-50%) scaleX(1);
            transform: translateY(-50%) scaleX(1);
  }
}
.icon-boxes.six-steps .step-card {
  background: white;
  border-radius: 15px;
  padding: 22px 18px 18px 18px;
  -webkit-box-shadow: 0 2px 18px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 18px rgba(0, 0, 0, 0.04);
  text-align: left;
  width: 100%;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.36s cubic-bezier(0.2, 0.9, 0.2, 1);
  transition: all 0.36s cubic-bezier(0.2, 0.9, 0.2, 1);
  overflow: hidden;
}
@media screen and (min-width: 1100px) {
  .icon-boxes.six-steps .step-card {
    padding: 26px 22px 20px 22px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-shadow: 0 6px 22px rgba(0, 0, 0, 0.05);
            box-shadow: 0 6px 22px rgba(0, 0, 0, 0.05);
    border: none;
  }
}
@media screen and (min-width: 1400px) {
  .icon-boxes.six-steps .step-card {
    padding: 30px 26px 24px 26px;
  }
}
.icon-boxes.six-steps .step-card h3 {
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #020202;
}
@media screen and (min-width: 1100px) {
  .icon-boxes.six-steps .step-card h3 {
    font-size: 17px;
  }
}
.icon-boxes.six-steps .step-card p {
  margin-bottom: 0;
  color: #09333f;
  line-height: 1.2;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  font-family: "Urbanist", sans-serif;
  letter-spacing: -0.35px;
}
@media screen and (min-width: 1100px) {
  .icon-boxes.six-steps .step-card p {
    font-size: 24px;
    text-align: center;
  }
}
@media screen and (min-width: 1400px) {
  .icon-boxes.six-steps .step-card p {
    font-size: 28px;
  }
}
.icon-boxes.six-steps .step-title-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.1em;
  margin: 0 0 10px 0;
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 1100px) {
  .icon-boxes.six-steps .step-title-flex {
    gap: 10px;
    text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    font-size: 1.25em;
  }
}
.icon-boxes.six-steps .step-title-flex .step-title-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 24px;
  min-width: 24px;
  margin-right: 6px;
  padding-top: 2px;
}
@media only screen and (min-width: 768px) {
  .icon-boxes.six-steps .step-title-flex .step-title-icon {
    padding-top: 4px;
  }
}
@media screen and (min-width: 1100px) {
  .icon-boxes.six-steps .step-title-flex .step-title-icon {
    height: 32px;
    min-width: 32px;
    margin-right: 8px;
    padding-top: 4px;
  }
}
.icon-boxes.six-steps .step-title-flex .step-title-icon img.icon-image {
  max-width: 20px;
  max-height: 20px;
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  -webkit-filter: none;
          filter: none;
}
@media screen and (min-width: 1100px) {
  .icon-boxes.six-steps .step-title-flex .step-title-icon img.icon-image {
    max-width: 28px;
    max-height: 28px;
    width: 28px;
    height: 28px;
  }
}
.icon-boxes.six-steps .step-title-flex .step-title-icon i {
  font-size: 20px;
  color: #09333f;
  display: block;
  line-height: 1;
}
@media screen and (min-width: 1100px) {
  .icon-boxes.six-steps .step-title-flex .step-title-icon i {
    font-size: 24px;
  }
}
.icon-boxes.six-steps .step-title-flex .step-title-icon svg {
  width: 20px;
  height: 20px;
  fill: #03A49C !important;
  color: #03A49C !important;
  display: block;
}
@media screen and (min-width: 1100px) {
  .icon-boxes.six-steps .step-title-flex .step-title-icon svg {
    width: 28px;
    height: 28px;
  }
}
.icon-boxes.six-steps .step-title-flex .step-title-text {
  display: inline-block;
  color: #07242F;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 19px;
}
@media only screen and (min-width: 768px) {
  .icon-boxes.six-steps .step-title-flex .step-title-text {
    font-size: 21px;
    line-height: 33px;
  }
}
.icon-boxes.six-steps.progressive-pastels {
  /* Top accent band for progressive pastel cards: subtle color strip at card top */
}
@media screen and (min-width: 1100px) {
  .icon-boxes.six-steps.progressive-pastels .six-steps-container {
    gap: 22px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    overflow: visible;
  }
}
@media screen and (min-width: 1400px) {
  .icon-boxes.six-steps.progressive-pastels .six-steps-container {
    gap: 28px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(1) .step-card {
  background: #E8F7FC !important;
  min-height: 100px;
}
.icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(2) .step-card {
  background: #EEE3F4 !important;
  min-height: 103px;
}
.icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(3) .step-card {
  background: #FFF4CE !important;
  min-height: 106px;
}
.icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(4) .step-card {
  background: #E8FCDE !important;
  min-height: 110px;
}
.icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(5) .step-card {
  background: #FFE5E5 !important;
  min-height: 114px;
}
.icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(6) .step-card {
  background: #E0F7FA !important;
  min-height: 118px;
}
@media only screen and (min-width: 768px) {
  .icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(1) .step-card {
    min-height: 110px;
  }
  .icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(2) .step-card {
    min-height: 115px;
  }
  .icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(3) .step-card {
    min-height: 120px;
  }
  .icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(4) .step-card {
    min-height: 126px;
  }
  .icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(5) .step-card {
    min-height: 132px;
  }
  .icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(6) .step-card {
    min-height: 138px;
  }
}
@media screen and (min-width: 1100px) {
  .icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(1) .step-card {
    min-height: 125px;
    z-index: 1;
  }
  .icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(2) .step-card {
    min-height: 132px;
    z-index: 2;
  }
  .icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(3) .step-card {
    min-height: 139px;
    z-index: 3;
  }
  .icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(4) .step-card {
    min-height: 147px;
    z-index: 4;
  }
  .icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(5) .step-card {
    min-height: 155px;
    z-index: 5;
  }
  .icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(6) .step-card {
    min-height: 164px;
    z-index: 6;
  }
}
@media screen and (min-width: 1400px) {
  .icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(1) .step-card {
    min-height: 140px;
    z-index: 1;
  }
  .icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(2) .step-card {
    min-height: 148px;
    z-index: 2;
  }
  .icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(3) .step-card {
    min-height: 158px;
    z-index: 3;
  }
  .icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(4) .step-card {
    min-height: 168px;
    z-index: 4;
  }
  .icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(5) .step-card {
    min-height: 179px;
    z-index: 5;
  }
  .icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(6) .step-card {
    min-height: 191px;
    z-index: 6;
  }
}
.icon-boxes.six-steps.progressive-pastels .step-card {
  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;
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
  text-align: center;
  gap: 5px;
  border: none !important;
  -webkit-box-shadow: 0 4px 12px rgba(6, 20, 26, 0.04) !important;
          box-shadow: 0 4px 12px rgba(6, 20, 26, 0.04) !important;
  border-radius: 14px !important;
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-transition: background 0.25s ease, -webkit-transform 0.35s cubic-bezier(0.2, 0.9, 0.2, 1), -webkit-box-shadow 0.35s ease;
  transition: background 0.25s ease, -webkit-transform 0.35s cubic-bezier(0.2, 0.9, 0.2, 1), -webkit-box-shadow 0.35s ease;
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.35s ease, background 0.25s ease;
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.35s ease, background 0.25s ease, -webkit-transform 0.35s cubic-bezier(0.2, 0.9, 0.2, 1), -webkit-box-shadow 0.35s ease;
  padding: 25px;
}
@media only screen and (min-width: 768px) {
  .icon-boxes.six-steps.progressive-pastels .step-card {
    padding: 16px 14px;
    gap: 6px;
  }
}
@media screen and (min-width: 1100px) {
  .icon-boxes.six-steps.progressive-pastels .step-card {
    padding: 18px 25px;
    gap: 7px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}
.icon-boxes.six-steps.progressive-pastels .step-card .step-title-flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1100px) {
  .icon-boxes.six-steps.progressive-pastels .step-card .step-title-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 nowrap;
            flex-flow: row nowrap;
    text-align: left;
    gap: 8px;
    margin-left: 15px;
  }
}
.icon-boxes.six-steps.progressive-pastels .step-card .step-title-icon {
  background: #fff !important;
  width: 32px;
  height: 32px;
  min-width: 32px;
  padding: 0 !important;
  border-radius: 8px;
  display: -ms-inline-grid;
  display: inline-grid;
  place-items: center;
  line-height: 0;
  -ms-grid-row-align: center;
      align-self: center;
  border: 0;
  -webkit-box-shadow: 0 2px 6px rgba(6, 20, 26, 0.06);
          box-shadow: 0 2px 6px rgba(6, 20, 26, 0.06);
  backdrop-filter: saturate(110%);
}
@media only screen and (min-width: 768px) {
  .icon-boxes.six-steps.progressive-pastels .step-card .step-title-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 9px;
  }
}
@media screen and (min-width: 1100px) {
  .icon-boxes.six-steps.progressive-pastels .step-card .step-title-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 10px;
  }
}
@media screen and (min-width: 1400px) {
  .icon-boxes.six-steps.progressive-pastels .step-card .step-title-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }
}
.icon-boxes.six-steps.progressive-pastels .step-card .step-title-icon svg {
  width: 16px;
  height: 16px;
  fill: #09333f !important;
  color: #09333f !important;
  display: block;
  margin: 0;
}
.icon-boxes.six-steps.progressive-pastels .step-card .step-title-icon i {
  font-size: 17px;
  color: #09333f;
  line-height: 1;
  display: inline-block;
  margin: 0;
}
.icon-boxes.six-steps.progressive-pastels .step-card .step-title-icon img.icon-image {
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
  display: block;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .icon-boxes.six-steps.progressive-pastels .step-card .step-title-icon svg {
    width: 20px;
    height: 20px;
  }
  .icon-boxes.six-steps.progressive-pastels .step-card .step-title-icon i {
    font-size: 20px;
  }
  .icon-boxes.six-steps.progressive-pastels .step-card .step-title-icon img.icon-image {
    width: 20px;
    height: 20px;
    max-width: 20px;
    max-height: 20px;
  }
}
@media screen and (min-width: 1100px) {
  .icon-boxes.six-steps.progressive-pastels .step-card .step-title-icon svg {
    width: 22px;
    height: 22px;
  }
  .icon-boxes.six-steps.progressive-pastels .step-card .step-title-icon i {
    font-size: 22px;
  }
  .icon-boxes.six-steps.progressive-pastels .step-card .step-title-icon img.icon-image {
    width: 22px;
    height: 22px;
    max-width: 22px;
    max-height: 22px;
  }
}
.icon-boxes.six-steps.progressive-pastels .step-card p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
  color: #09333f;
  text-align: left;
  letter-spacing: -0.02em;
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: relative;
}
.icon-boxes.six-steps.progressive-pastels .step-card p:first-letter {
  font-weight: 700;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .icon-boxes.six-steps.progressive-pastels .step-card p {
    font-size: 17px;
    padding: 10px 18px;
  }
}
@media screen and (min-width: 1100px) {
  .icon-boxes.six-steps.progressive-pastels .step-card p {
    font-size: 18px;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 1400px) {
  .icon-boxes.six-steps.progressive-pastels .step-card p {
    font-size: 19px;
    padding: 8px 18px;
    margin-left: 50px;
    margin-top: 10px;
  }
}
.icon-boxes.six-steps.progressive-pastels .step-card .six-steps-group:nth-child(1) .step-card p {
  background: linear-gradient(135deg, rgba(232, 247, 252, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-color: rgba(29, 108, 123, 0.15);
  color: #1a5f6b;
}
.icon-boxes.six-steps.progressive-pastels .step-card .six-steps-group:nth-child(2) .step-card p {
  background: linear-gradient(135deg, rgba(238, 227, 244, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-color: rgba(122, 90, 174, 0.15);
  color: #6b4d9e;
}
.icon-boxes.six-steps.progressive-pastels .step-card .six-steps-group:nth-child(3) .step-card p {
  background: linear-gradient(135deg, rgba(255, 244, 206, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-color: rgba(179, 138, 31, 0.15);
  color: #996f1a;
}
.icon-boxes.six-steps.progressive-pastels .step-card .six-steps-group:nth-child(4) .step-card p {
  background: linear-gradient(135deg, rgba(232, 252, 222, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-color: rgba(45, 128, 81, 0.15);
  color: #256b44;
}
.icon-boxes.six-steps.progressive-pastels .step-card .six-steps-group:nth-child(5) .step-card p {
  background: linear-gradient(135deg, rgba(255, 229, 229, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-color: rgba(176, 79, 92, 0.15);
  color: #a3424f;
}
.icon-boxes.six-steps.progressive-pastels .step-card .six-steps-group:nth-child(6) .step-card p {
  background: linear-gradient(135deg, rgba(224, 247, 250, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-color: rgba(12, 135, 152, 0.15);
  color: #0a6b7a;
}
.icon-boxes.six-steps.progressive-pastels .step-card .step-card:hover p:before {
  left: 100%;
}
.icon-boxes.six-steps.progressive-pastels .step-card p:empty {
  display: none;
}
.icon-boxes.six-steps.progressive-pastels .step-card h3 {
  font-size: 13px;
}
@media only screen and (min-width: 768px) {
  .icon-boxes.six-steps.progressive-pastels .step-card h3 {
    font-size: 14px;
  }
}
@media screen and (min-width: 1100px) {
  .icon-boxes.six-steps.progressive-pastels .step-card h3 {
    font-size: 14px;
  }
}
@media screen and (min-width: 1400px) {
  .icon-boxes.six-steps.progressive-pastels .step-card h3 {
    font-size: 15px;
  }
}
.icon-boxes.six-steps.progressive-pastels .step-card .step-title-text {
  font-size: 18px !important;
  text-align: center;
  line-height: 1.3 !important;
  margin: 5px 0;
}
@media only screen and (min-width: 480px) {
  .icon-boxes.six-steps.progressive-pastels .step-card .step-title-text {
    font-size: 19px !important;
    line-height: 1.35 !important;
  }
}
@media only screen and (min-width: 768px) {
  .icon-boxes.six-steps.progressive-pastels .step-card .step-title-text {
    font-size: 19px !important;
    line-height: 1.35 !important;
  }
}
@media screen and (min-width: 1100px) {
  .icon-boxes.six-steps.progressive-pastels .step-card .step-title-text {
    text-align: left;
    font-size: 17px !important;
    line-height: 1.4 !important;
  }
}
@media screen and (min-width: 1400px) {
  .icon-boxes.six-steps.progressive-pastels .step-card .step-title-text {
    font-size: 20px !important;
    line-height: 1.4 !important;
  }
}
.icon-boxes.six-steps.progressive-pastels .step-card h3 {
  margin-bottom: 6px;
}
.icon-boxes.six-steps.progressive-pastels .step-card:hover {
  -webkit-transform: translateY(-4px) scale(1.01) !important;
      -ms-transform: translateY(-4px) scale(1.01) !important;
          transform: translateY(-4px) scale(1.01) !important;
  -webkit-box-shadow: 0 14px 36px rgba(6, 20, 26, 0.1) !important;
          box-shadow: 0 14px 36px rgba(6, 20, 26, 0.1) !important;
}
.icon-boxes.six-steps.progressive-pastels .step-card:hover .step-title-icon {
  -webkit-transform: scale(1.08);
      -ms-transform: scale(1.08);
          transform: scale(1.08);
}
@media screen and (min-width: 1100px) {
  .icon-boxes.six-steps.progressive-pastels:not(:has(.six-steps-group:nth-child(6))) .six-steps-group:nth-child(1) .step-card {
    min-height: 184px;
  }
  .icon-boxes.six-steps.progressive-pastels:not(:has(.six-steps-group:nth-child(6))) .six-steps-group:nth-child(2) .step-card {
    min-height: 196px;
  }
  .icon-boxes.six-steps.progressive-pastels:not(:has(.six-steps-group:nth-child(6))) .six-steps-group:nth-child(3) .step-card {
    min-height: 210px;
  }
  .icon-boxes.six-steps.progressive-pastels:not(:has(.six-steps-group:nth-child(6))) .six-steps-group:nth-child(4) .step-card {
    min-height: 226px;
  }
  .icon-boxes.six-steps.progressive-pastels:not(:has(.six-steps-group:nth-child(6))) .six-steps-group:nth-child(5) .step-card {
    min-height: 244px;
  }
}
@media screen and (min-width: 1400px) {
  .icon-boxes.six-steps.progressive-pastels:not(:has(.six-steps-group:nth-child(6))) .six-steps-group:nth-child(1) .step-card {
    min-height: 188px;
  }
  .icon-boxes.six-steps.progressive-pastels:not(:has(.six-steps-group:nth-child(6))) .six-steps-group:nth-child(2) .step-card {
    min-height: 206px;
  }
  .icon-boxes.six-steps.progressive-pastels:not(:has(.six-steps-group:nth-child(6))) .six-steps-group:nth-child(3) .step-card {
    min-height: 224px;
  }
  .icon-boxes.six-steps.progressive-pastels:not(:has(.six-steps-group:nth-child(6))) .six-steps-group:nth-child(4) .step-card {
    min-height: 244px;
  }
  .icon-boxes.six-steps.progressive-pastels:not(:has(.six-steps-group:nth-child(6))) .six-steps-group:nth-child(5) .step-card {
    min-height: 266px;
  }
}
.icon-boxes.six-steps.progressive-pastels .six-steps-group .step-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  opacity: 0.22;
  z-index: 1;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(1) .step-card:before {
  background: #E8F7FC;
}
.icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(2) .step-card:before {
  background: #EEE3F4;
}
.icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(3) .step-card:before {
  background: #FFF4CE;
}
.icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(4) .step-card:before {
  background: #E8FCDE;
}
.icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(5) .step-card:before {
  background: #FFE5E5;
}
.icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(6) .step-card:before {
  background: #E0F7FA;
}
.icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(1) .step-title-icon {
  background: #ffffff !important;
}
.icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(1) .step-title-icon svg, .icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(1) .step-title-icon i {
  color: #1D6C7B !important;
  fill: #1D6C7B !important;
}
.icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(2) .step-title-icon {
  background: #ffffff !important;
}
.icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(2) .step-title-icon svg, .icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(2) .step-title-icon i {
  color: #7A5AAE !important;
  fill: #7A5AAE !important;
}
.icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(3) .step-title-icon {
  background: #ffffff !important;
}
.icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(3) .step-title-icon svg, .icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(3) .step-title-icon i {
  color: #B38A1F !important;
  fill: #B38A1F !important;
}
.icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(4) .step-title-icon {
  background: #ffffff !important;
}
.icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(4) .step-title-icon svg, .icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(4) .step-title-icon i {
  color: #2D8051 !important;
  fill: #2D8051 !important;
}
.icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(5) .step-title-icon {
  background: #ffffff !important;
}
.icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(5) .step-title-icon svg, .icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(5) .step-title-icon i {
  color: #B04F5C !important;
  fill: #B04F5C !important;
}
.icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(6) .step-title-icon {
  background: #ffffff !important;
}
.icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(6) .step-title-icon svg, .icon-boxes.six-steps.progressive-pastels .six-steps-group:nth-child(6) .step-title-icon i {
  color: #0C8798 !important;
  fill: #0C8798 !important;
}
@media screen and (min-width: 1100px) {
  .icon-boxes.six-steps.progressive-pastels.vary-lines .six-steps-group:nth-child(1) .step-connecting-line {
    width: 40px !important;
  }
  .icon-boxes.six-steps.progressive-pastels.vary-lines .six-steps-group:nth-child(2) .step-connecting-line {
    width: 52px !important;
  }
  .icon-boxes.six-steps.progressive-pastels.vary-lines .six-steps-group:nth-child(3) .step-connecting-line {
    width: 64px !important;
  }
  .icon-boxes.six-steps.progressive-pastels.vary-lines .six-steps-group:nth-child(4) .step-connecting-line {
    width: 76px !important;
  }
  .icon-boxes.six-steps.progressive-pastels.vary-lines .six-steps-group:nth-child(5) .step-connecting-line {
    width: 88px !important;
  }
  .icon-boxes.six-steps.progressive-pastels.vary-lines .six-steps-group:nth-child(6) .step-connecting-line {
    width: 100px !important;
  }
}

.icon-boxes.six-steps .icon-box p {
  color: #03A49C !important;
  font-weight: 700;
  font-size: 1.25em;
  margin-top: 10px;
  margin-bottom: 0;
}

.icon-boxes.six-steps .icon-box.animate-step {
  -webkit-animation: stepFadeIn 0.5s ease-out forwards;
          animation: stepFadeIn 0.5s ease-out forwards;
}
.icon-boxes.six-steps .icon-box.animate-step .step-number {
  -webkit-animation: iconAppear 0.4s ease-out forwards;
          animation: iconAppear 0.4s ease-out forwards;
}
.icon-boxes.six-steps .icon-box.animate-step h3, .icon-boxes.six-steps .icon-box.animate-step p {
  -webkit-animation: textFadeIn 0.5s ease-out 0.2s forwards;
          animation: textFadeIn 0.5s ease-out 0.2s forwards;
}
.icon-boxes.six-steps .icon-box.animate-step::before {
  -webkit-animation: lineGrow 0.3s ease-out 0.4s forwards;
          animation: lineGrow 0.3s ease-out 0.4s forwards;
}

@media screen and (min-width: 1100px) {
  .icon-boxes.six-steps .icon-box.animate-step::before {
    -webkit-animation: lineGrowHorizontal 0.4s ease-out 0.4s forwards;
            animation: lineGrowHorizontal 0.4s ease-out 0.4s forwards;
  }
}
@-webkit-keyframes stepFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes stepFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes iconAppear {
  0% {
    -webkit-transform: scale(0) rotate(-180deg);
            transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.1) rotate(0deg);
            transform: scale(1.1) rotate(0deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg);
            transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}
@keyframes iconAppear {
  0% {
    -webkit-transform: scale(0) rotate(-180deg);
            transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.1) rotate(0deg);
            transform: scale(1.1) rotate(0deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg);
            transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}
@-webkit-keyframes textFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes textFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes lineGrow {
  0% {
    -webkit-transform: translateX(-50%) scaleY(0);
            transform: translateX(-50%) scaleY(0);
  }
  100% {
    -webkit-transform: translateX(-50%) scaleY(1);
            transform: translateX(-50%) scaleY(1);
  }
}
@keyframes lineGrow {
  0% {
    -webkit-transform: translateX(-50%) scaleY(0);
            transform: translateX(-50%) scaleY(0);
  }
  100% {
    -webkit-transform: translateX(-50%) scaleY(1);
            transform: translateX(-50%) scaleY(1);
  }
}
@-webkit-keyframes lineGrowHorizontal {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes lineGrowHorizontal {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@-webkit-keyframes arrowPop {
  0% {
    -webkit-transform: translateX(-50%) scale(0);
            transform: translateX(-50%) scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-50%) scale(1.2);
            transform: translateX(-50%) scale(1.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}
@keyframes arrowPop {
  0% {
    -webkit-transform: translateX(-50%) scale(0);
            transform: translateX(-50%) scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-50%) scale(1.2);
            transform: translateX(-50%) scale(1.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes arrowPopHorizontal {
  0% {
    -webkit-transform: translateY(-50%) scale(0);
            transform: translateY(-50%) scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateY(-50%) scale(1.2);
            transform: translateY(-50%) scale(1.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1);
    opacity: 1;
  }
}
@keyframes arrowPopHorizontal {
  0% {
    -webkit-transform: translateY(-50%) scale(0);
            transform: translateY(-50%) scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateY(-50%) scale(1.2);
            transform: translateY(-50%) scale(1.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-50%) scale(1);
            transform: translateY(-50%) scale(1);
    opacity: 1;
  }
}
.sp-overlap-section {
  /* Refined overlap: float feature boxes up into hero without harsh gradient split */
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background: transparent;
  margin-top: -90px; /* pull upward so cards sit partly over hero */
  position: relative;
  z-index: 15;
  /* subtle fade behind boxes for readability */
}
.sp-overlap-section .row, .sp-overlap-section.row {
  max-width: 1260px;
}
.sp-overlap-section::before {
  content: "";
  position: absolute;
  inset: 0 0 -10px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(6, 36, 44, 0.72)), color-stop(55%, rgba(6, 36, 44, 0.55)), to(rgba(6, 36, 44, 0)));
  background: linear-gradient(to bottom, rgba(6, 36, 44, 0.72) 0%, rgba(6, 36, 44, 0.55) 55%, rgba(6, 36, 44, 0) 100%);
  z-index: -1;
  pointer-events: none;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .sp-overlap-section {
    margin-top: -120px;
  }
}
.sp-overlap-section .icon-box.col {
  background: #ffffff;
  padding: 26px 22px 24px;
  border-radius: 14px;
  -webkit-box-shadow: 0 8px 26px -6px rgba(6, 36, 44, 0.35), 0 2px 6px rgba(6, 36, 44, 0.35);
          box-shadow: 0 8px 26px -6px rgba(6, 36, 44, 0.35), 0 2px 6px rgba(6, 36, 44, 0.35);
  text-align: center;
  -webkit-transition: all 0.35s cubic-bezier(0.2, 0.9, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.2, 1);
  border: 1px solid rgba(15, 63, 72, 0.18);
  backdrop-filter: saturate(180%) blur(4px);
}
@media only screen and (min-width: 768px) {
  .sp-overlap-section .icon-box.col {
    -ms-flex-preferred-size: calc(50% - 14px);
        flex-basis: calc(50% - 14px);
  }
}
@media screen and (min-width: 1100px) {
  .sp-overlap-section .icon-box.col {
    -ms-flex-preferred-size: calc(25% - 18px);
        flex-basis: calc(25% - 18px);
  }
}
.sp-overlap-section .icon-box.col:hover {
  -webkit-transform: translateY(-6px);
      -ms-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 20px 40px -8px rgba(6, 36, 44, 0.55);
          box-shadow: 0 20px 40px -8px rgba(6, 36, 44, 0.55);
}
.sp-overlap-section .icon-box.col i {
  font-size: 42px;
  margin-bottom: 14px;
  display: block;
  -webkit-filter: drop-shadow(0 6px 10px rgba(6, 36, 44, 0.35));
          filter: drop-shadow(0 6px 10px rgba(6, 36, 44, 0.35));
}
@media screen and (min-width: 1100px) {
  .sp-overlap-section .icon-box.col i {
    font-size: 50px;
  }
}
.sp-overlap-section .icon-box.col i.fa-trophy {
  color: #e5d290;
}
.sp-overlap-section .icon-box.col i.fa-chalkboard-user {
  color: #a0d5e7;
}
.sp-overlap-section .icon-box.col i.fa-file-certificate {
  color: #d9b7ec;
}
.sp-overlap-section .icon-box.col i.fa-sterling-sign, .sp-overlap-section .icon-box.col i.fa-calendar, .sp-overlap-section .icon-box.col i.fa-award {
  color: #aae18f;
}
.sp-overlap-section .icon-box.col h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: #06242C;
  margin: 0;
  text-wrap: balance;
}
@media screen and (min-width: 1100px) {
  .sp-overlap-section .icon-box.col h3 {
    font-size: 17px;
  }
}

.success-steps h2.align-center {
  margin-bottom: 25px;
}
.success-steps p.align-center {
  margin-bottom: 50px;
}
.success-steps .box-item {
  border-radius: 15px;
}
.success-steps .box-item h2 {
  font-size: 1.375em;
  line-height: 1.3636363636em;
}
.success-steps .box-item p {
  color: #353535;
  font-size: 1em;
  line-height: 1.875em;
}
.success-steps .box-item .landing-image {
  display: none;
}
.success-steps .box-item .landing-text {
  text-align: left;
  padding: 40px 35px 40px 35px;
}
@media only screen and (min-width: 768px) {
  .success-steps .box-item .landing-text {
    padding: 40px 40px 40px 30px;
  }
}
.success-steps .box-item .landing-text li {
  font-size: 1em;
  line-height: 1.875em;
}
.success-steps .box-item .landing-text a {
  pointer-events: none;
  cursor: default;
}
.success-steps .box-item .landing-link {
  display: none;
}
.success-steps .step-icon-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  padding: 30px 35px 0px;
}
@media only screen and (min-width: 768px) {
  .success-steps .step-icon-wrap {
    padding: 40px 40px 0 30px;
  }
}
.success-steps .step-icon-wrap .step-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #D3EDEA;
  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;
  color: #09333f;
  font-size: 22px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 2;
}
.success-steps .step-icon-wrap .step-number {
  display: block;
  background: #09333f;
  color: white;
  font-weight: 700;
  border-radius: 20px;
  width: 77px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  font-size: 15px;
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.09);
          box-shadow: 0 1px 6px rgba(0, 0, 0, 0.09);
  margin-top: -16px;
  position: relative;
  margin: auto 0 auto -20px;
  z-index: 1;
}

@media only screen and (min-width: 960px) and (orientation: landscape) {
  .landing.owl-carousel, .woocommerce ul.landing.products.owl-loaded {
    padding: 0 90px;
  }
}
.landing.owl-carousel .owl-stage-outer, .woocommerce ul.landing.products.owl-loaded .owl-stage-outer {
  overflow: hidden;
}
.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;
  -webkit-transition: 0.3 ease-in-out;
  transition: 0.3 ease-in-out;
}
.landing.owl-carousel .owl-item.active .box-item, .woocommerce ul.landing.products.owl-loaded .owl-item.active .box-item {
  opacity: 1;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .landing.owl-carousel.meet-your-tutors, .woocommerce ul.landing.meet-your-tutors.products.owl-loaded {
    padding: 0 0;
  }
}

.row.scrolling-landing.success-steps:before {
  display: none;
}
.row.scrolling-landing.success-steps .owl-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  overflow: visible;
}
.row.scrolling-landing.success-steps .owl-prev, .row.scrolling-landing.success-steps .owl-next {
  pointer-events: all;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: -ms-grid;
  display: grid;
  place-items: center;
  background: #fafafa;
  color: #09333f;
  font-size: 18px;
  font-weight: 500;
  -webkit-transition: background 0.2s, color 0.2s, -webkit-box-shadow 0.2s;
  transition: background 0.2s, color 0.2s, -webkit-box-shadow 0.2s;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.row.scrolling-landing.success-steps .owl-prev.disabled, .row.scrolling-landing.success-steps .owl-next.disabled {
  opacity: 0.7;
  cursor: default;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.scrolling-landing.success-steps .owl-prev, .row.scrolling-landing.success-steps .owl-next {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}
.row.scrolling-landing.success-steps .owl-prev {
  left: -20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.scrolling-landing.success-steps .owl-prev {
    left: 0;
  }
}
.row.scrolling-landing.success-steps .owl-next {
  right: -20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.scrolling-landing.success-steps .owl-next {
    right: 0;
  }
}

.splitCallout {
  row-gap: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
.splitCallout .one-third-col {
  background: none;
  padding-top: 0 !important;
}
@media only screen and (min-width: 768px) {
  .splitCallout .one-third-col {
    padding-top: 30px !important;
  }
}
.splitCallout .one-third-col p {
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .splitCallout .one-third-col p {
    text-align: right;
  }
}
.splitCallout .col.two-thirds-col {
  margin-top: auto;
  margin-bottom: auto;
  background: none;
}
@media only screen and (min-width: 768px) {
  .splitCallout .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) {
  .splitCallout .col.two-thirds-col {
    width: calc(65% - 62.5px);
    -ms-flex-preferred-size: calc(65% - 62.5px);
        flex-basis: calc(65% - 62.5px);
  }
}
.splitCallout h2 {
  font-size: 1.875em;
  line-height: 1.5em;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .splitCallout h2 {
    font-size: 2.1875em;
    line-height: 1.4285714286em;
  }
}
.splitCallout .wysiwyg-content p {
  margin-bottom: 30px !important;
}
.splitCallout .wysiwyg-content p:last-child {
  margin-bottom: 0 !important;
}
.splitCallout .wysiwyg-content h4 {
  font-size: 20px;
  text-align: left;
  font-weight: 400;
  max-width: 900px;
  color: white;
}
@media only screen and (min-width: 768px) {
  .splitCallout .wysiwyg-content h4 {
    font-size: 24px;
  }
}
.splitCallout .btn, .splitCallout .woocommerce form input[type=submit], .woocommerce form .splitCallout input[type=submit],
.splitCallout .woocommerce form input[type=button],
.woocommerce form .splitCallout input[type=button], .splitCallout .icon-boxes.courses-included .icon-box.col .read-more-btn, .icon-boxes.courses-included .icon-box.col .splitCallout .read-more-btn, .splitCallout .btn.third {
  color: #09333f !important;
  font-size: 18px !important;
  font-family: "Urbanist", sans-serif !important;
  background: #03A49C !important;
  border-radius: 8px !important;
  padding: 15px 20px !important;
  margin-top: 0 !important;
}
@media only screen and (min-width: 768px) {
  .splitCallout .btn, .splitCallout .woocommerce form input[type=submit], .woocommerce form .splitCallout input[type=submit],
  .splitCallout .woocommerce form input[type=button],
  .woocommerce form .splitCallout input[type=button], .splitCallout .icon-boxes.courses-included .icon-box.col .read-more-btn, .icon-boxes.courses-included .icon-box.col .splitCallout .read-more-btn, .splitCallout .btn.third {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.splitCallout .btn:before, .splitCallout .woocommerce form input[type=submit]:before, .woocommerce form .splitCallout input[type=submit]:before,
.splitCallout .woocommerce form input[type=button]:before,
.woocommerce form .splitCallout input[type=button]:before, .splitCallout .icon-boxes.courses-included .icon-box.col .read-more-btn:before, .icon-boxes.courses-included .icon-box.col .splitCallout .read-more-btn:before, .splitCallout .btn.third:before {
  content: "\f290";
  display: inline-block;
  font-weight: 300;
  margin-right: 12px;
  font-family: "Font Awesome 6 Pro";
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .splitCallout.padding-top-small {
    padding-top: 40px !important;
  }
}

.sp-tutors-section .meet-your-tutors.grid-layout {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
@media screen and (min-width: 1400px) {
  .sp-tutors-section .meet-your-tutors.grid-layout {
    gap: 40px;
  }
}
.sp-tutors-section .tutor-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sp-tutors-section .tutor-card:hover {
  -webkit-transform: translateY(-8px);
      -ms-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.sp-tutors-section .tutor-card .landing-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}
.sp-tutors-section .tutor-card .landing-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sp-tutors-section .tutor-card .landing-text {
  padding: 25px;
  position: relative;
}
.sp-tutors-section .tutor-card .landing-text .linkedin-link {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #03A49C;
  color: white;
  border-radius: 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: 18px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sp-tutors-section .tutor-card .landing-text .linkedin-link:hover {
  background: #09333f;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.sp-tutors-section .tutor-card .landing-text h2 {
  font-size: 22px;
  font-weight: 700;
  color: #07242F;
  margin-bottom: 8px;
}
.sp-tutors-section .tutor-card .landing-text h6 {
  font-size: 14px;
  font-weight: 600;
  color: #09333f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}
.sp-tutors-section .tutor-card .landing-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #353535;
  margin: 0;
}

.sp-faq-section .accordian.new-faq-style {
  max-width: 900px;
  margin: 0 auto;
}
.sp-faq-section .accordian.new-faq-style .accordian-group {
  border: none;
  border-bottom: 1px solid #ebebeb;
}
.sp-faq-section .accordian.new-faq-style .accordian-group h3.title {
  padding: 20px 85px 20px 0;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0;
  color: #07242F;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .sp-faq-section .accordian.new-faq-style .accordian-group h3.title {
    font-size: 24px;
  }
}
.sp-faq-section .accordian.new-faq-style .accordian-group h3.title.active {
  color: #35797B;
}
.sp-faq-section .accordian.new-faq-style .accordian-group h3.title:after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #D3EDEA;
  color: #35797B;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  line-height: 52px;
  text-align: center;
  font-size: 25px;
  font-weight: 400;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sp-faq-section .accordian.new-faq-style .accordian-group h3.title.active:after {
  content: "−";
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.sp-faq-section .accordian.new-faq-style .accordian-group .text {
  padding: 0 50px 20px 0;
}
@media only screen and (min-width: 768px) {
  .sp-faq-section .accordian.new-faq-style .accordian-group .text {
    padding: 0 100px 20px 0;
  }
}
.sp-faq-section .accordian.new-faq-style .accordian-group .text p {
  font-size: 16px;
  line-height: 1.7;
  color: #353535;
}

.sp-get-in-touch-section.getin-touch .col.two-thirds-col h5.contact-header {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
}
.sp-get-in-touch-section.getin-touch .col.two-thirds-col h2 {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .sp-get-in-touch-section.getin-touch .col.two-thirds-col h2 {
    font-size: 40px;
  }
}
.sp-get-in-touch-section.getin-touch .col.two-thirds-col p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}
.sp-get-in-touch-section.getin-touch .col.one-third-col.button-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 768px) {
  .sp-get-in-touch-section.getin-touch .col.one-third-col.button-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (min-width: 1100px) {
  .sp-get-in-touch-section.getin-touch .col.one-third-col.button-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sp-get-in-touch-section.getin-touch .col.one-third-col.button-row .btn, .sp-get-in-touch-section.getin-touch .col.one-third-col.button-row .woocommerce form input[type=submit], .woocommerce form .sp-get-in-touch-section.getin-touch .col.one-third-col.button-row input[type=submit],
.sp-get-in-touch-section.getin-touch .col.one-third-col.button-row .woocommerce form input[type=button],
.woocommerce form .sp-get-in-touch-section.getin-touch .col.one-third-col.button-row input[type=button], .sp-get-in-touch-section.getin-touch .col.one-third-col.button-row .icon-boxes.courses-included .icon-box.col .read-more-btn, .icon-boxes.courses-included .icon-box.col .sp-get-in-touch-section.getin-touch .col.one-third-col.button-row .read-more-btn {
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .sp-get-in-touch-section.getin-touch .col.one-third-col.button-row .btn, .sp-get-in-touch-section.getin-touch .col.one-third-col.button-row .woocommerce form input[type=submit], .woocommerce form .sp-get-in-touch-section.getin-touch .col.one-third-col.button-row input[type=submit],
  .sp-get-in-touch-section.getin-touch .col.one-third-col.button-row .woocommerce form input[type=button],
  .woocommerce form .sp-get-in-touch-section.getin-touch .col.one-third-col.button-row input[type=button], .sp-get-in-touch-section.getin-touch .col.one-third-col.button-row .icon-boxes.courses-included .icon-box.col .read-more-btn, .icon-boxes.courses-included .icon-box.col .sp-get-in-touch-section.getin-touch .col.one-third-col.button-row .read-more-btn {
    width: auto;
    min-width: 180px;
  }
}
@media screen and (min-width: 1100px) {
  .sp-get-in-touch-section.getin-touch .col.one-third-col.button-row .btn, .sp-get-in-touch-section.getin-touch .col.one-third-col.button-row .woocommerce form input[type=submit], .woocommerce form .sp-get-in-touch-section.getin-touch .col.one-third-col.button-row input[type=submit],
  .sp-get-in-touch-section.getin-touch .col.one-third-col.button-row .woocommerce form input[type=button],
  .woocommerce form .sp-get-in-touch-section.getin-touch .col.one-third-col.button-row input[type=button], .sp-get-in-touch-section.getin-touch .col.one-third-col.button-row .icon-boxes.courses-included .icon-box.col .read-more-btn, .icon-boxes.courses-included .icon-box.col .sp-get-in-touch-section.getin-touch .col.one-third-col.button-row .read-more-btn {
    width: 100%;
  }
}
.sp-get-in-touch-section.getin-touch .col.one-third-col.button-row .btn i, .sp-get-in-touch-section.getin-touch .col.one-third-col.button-row .woocommerce form input[type=submit] i, .woocommerce form .sp-get-in-touch-section.getin-touch .col.one-third-col.button-row input[type=submit] i,
.sp-get-in-touch-section.getin-touch .col.one-third-col.button-row .woocommerce form input[type=button] i,
.woocommerce form .sp-get-in-touch-section.getin-touch .col.one-third-col.button-row input[type=button] i, .sp-get-in-touch-section.getin-touch .col.one-third-col.button-row .icon-boxes.courses-included .icon-box.col .read-more-btn i, .icon-boxes.courses-included .icon-box.col .sp-get-in-touch-section.getin-touch .col.one-third-col.button-row .read-more-btn i {
  margin-right: 8px;
}

/**
 * Finance Request Popup Modal
 * Simple, minimal popup for Contact Form 7
 */
.finance-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 99999;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  padding: 20px;
}
.finance-popup-overlay.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}
.finance-popup-overlay.active .finance-popup-container {
  -webkit-animation: popupSlideIn 0.3s ease-out forwards;
          animation: popupSlideIn 0.3s ease-out forwards;
}

.finance-popup-container {
  position: relative;
  background: #fff;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  -webkit-transform: scale(0.9) translateY(20px);
      -ms-transform: scale(0.9) translateY(20px);
          transform: scale(0.9) translateY(20px);
  opacity: 0;
}
@media (max-width: 768px) {
  .finance-popup-container {
    max-width: 95%;
    max-height: 85vh;
    border-radius: 12px;
  }
}

.finance-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  cursor: pointer;
  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;
  z-index: 10;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #475569;
  font-size: 20px;
}
.finance-popup-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #1e293b;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
@media (max-width: 768px) {
  .finance-popup-close {
    width: 32px;
    height: 32px;
    font-size: 18px;
    top: 12px;
    right: 12px;
  }
}

.finance-popup-content {
  padding: 48px 40px 40px;
}
@media (max-width: 768px) {
  .finance-popup-content {
    padding: 40px 24px 24px;
  }
}
.finance-popup-content .wpcf7 h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 12px 0;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .finance-popup-content .wpcf7 h2 {
    font-size: 1.5rem;
  }
}
.finance-popup-content .wpcf7 p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 24px 0;
}
.finance-popup-content .wpcf7 .contactform {
  margin-top: 12px;
}
.finance-popup-content .wpcf7 .contactform.two-col {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .finance-popup-content .wpcf7 .contactform.two-col {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.finance-popup-content .wpcf7 .contactform.input {
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .finance-popup-content .wpcf7 .contactform.input {
    margin-bottom: 12px;
  }
}
.finance-popup-content .wpcf7 label {
  display: block;
  font-size: 16px;
  text-transform: none;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}
.finance-popup-content .wpcf7 input[type=text],
.finance-popup-content .wpcf7 input[type=email],
.finance-popup-content .wpcf7 input[type=tel],
.finance-popup-content .wpcf7 textarea,
.finance-popup-content .wpcf7 select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #1e293b;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-family: inherit;
}
.finance-popup-content .wpcf7 input[type=text]:focus,
.finance-popup-content .wpcf7 input[type=email]:focus,
.finance-popup-content .wpcf7 input[type=tel]:focus,
.finance-popup-content .wpcf7 textarea:focus,
.finance-popup-content .wpcf7 select:focus {
  outline: none;
  border-color: #3b82f6;
  -webkit-box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
          box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.finance-popup-content .wpcf7 input[type=text]::-webkit-input-placeholder, .finance-popup-content .wpcf7 input[type=email]::-webkit-input-placeholder, .finance-popup-content .wpcf7 input[type=tel]::-webkit-input-placeholder, .finance-popup-content .wpcf7 textarea::-webkit-input-placeholder, .finance-popup-content .wpcf7 select::-webkit-input-placeholder {
  color: #94a3b8;
}
.finance-popup-content .wpcf7 input[type=text]::-moz-placeholder, .finance-popup-content .wpcf7 input[type=email]::-moz-placeholder, .finance-popup-content .wpcf7 input[type=tel]::-moz-placeholder, .finance-popup-content .wpcf7 textarea::-moz-placeholder, .finance-popup-content .wpcf7 select::-moz-placeholder {
  color: #94a3b8;
}
.finance-popup-content .wpcf7 input[type=text]:-ms-input-placeholder, .finance-popup-content .wpcf7 input[type=email]:-ms-input-placeholder, .finance-popup-content .wpcf7 input[type=tel]:-ms-input-placeholder, .finance-popup-content .wpcf7 textarea:-ms-input-placeholder, .finance-popup-content .wpcf7 select:-ms-input-placeholder {
  color: #94a3b8;
}
.finance-popup-content .wpcf7 input[type=text]::-ms-input-placeholder, .finance-popup-content .wpcf7 input[type=email]::-ms-input-placeholder, .finance-popup-content .wpcf7 input[type=tel]::-ms-input-placeholder, .finance-popup-content .wpcf7 textarea::-ms-input-placeholder, .finance-popup-content .wpcf7 select::-ms-input-placeholder {
  color: #94a3b8;
}
.finance-popup-content .wpcf7 input[type=text]::placeholder,
.finance-popup-content .wpcf7 input[type=email]::placeholder,
.finance-popup-content .wpcf7 input[type=tel]::placeholder,
.finance-popup-content .wpcf7 textarea::placeholder,
.finance-popup-content .wpcf7 select::placeholder {
  color: #94a3b8;
}
.finance-popup-content .wpcf7 textarea {
  min-height: 120px;
  resize: vertical;
}
.finance-popup-content .wpcf7 input[type=submit] {
  width: 100%;
  padding: 14px 24px;
  background: #14b8a6;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin-top: 8px;
}
.finance-popup-content .wpcf7 input[type=submit]:hover {
  background: #0d9488;
  -webkit-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
          box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}
.finance-popup-content .wpcf7 input[type=submit]:active {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.finance-popup-content .wpcf7 .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  border: none;
}
.finance-popup-content .wpcf7 .wpcf7-mail-sent-ok {
  background: #d1fae5;
  color: #065f46;
}
.finance-popup-content .wpcf7 .wpcf7-validation-errors,
.finance-popup-content .wpcf7 .wpcf7-mail-sent-ng {
  background: #fee2e2;
  color: #991b1b;
}
.finance-popup-content .wpcf7 .wpcf7-not-valid-tip {
  font-size: 0.8rem;
  color: #dc2626;
  margin-top: 4px;
}
.finance-popup-content .wpcf7 .wpcf7-spinner {
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

@-webkit-keyframes popupSlideIn {
  to {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@keyframes popupSlideIn {
  to {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
    opacity: 1;
  }
}
body.finance-popup-open {
  overflow: hidden;
}

/* --------------------------------------
* 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: 16pxpx;
  font-weight: normal;
  line-height: 1.5;
  color: #353535;
  text-align: left;
  font-weight: 400;
  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: #07242F;
  font-weight: 700;
  position: relative;
  font-family: "Urbanist", 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: #07242F;
}

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, .comment-reply-title {
  font-size: 1.875em;
  line-height: 1.5em;
  font-weight: 600;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  h2, .h2, .comment-reply-title {
    font-size: 2.5em;
    line-height: 1.5em;
  }
}

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: 0.9375em;
  line-height: 1.7333333333em;
  color: #03A49C;
  margin-bottom: 10px;
  font-family: "Manrope", sans-serif;
  text-transform: none;
  letter-spacing: 0.6px;
  font-weight: 800;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  h5, .h5 {
    text-transform: uppercase;
    font-size: 1em;
    line-height: 1.875em;
  }
}
h5.align-center, .h5.align-center {
  margin-bottom: 5px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  h5.align-center, .h5.align-center {
    margin-bottom: 10px;
  }
}

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

a {
  color: #09333f;
  text-decoration: none;
  outline: none;
  font-weight: 700;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:hover {
  color: #D2D2D2;
  text-decoration: none;
}

img {
  max-width: 100%;
}

p {
  margin-top: 0;
  margin-bottom: 35px;
  color: #353535;
  font-weight: 400;
  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: #353535;
  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: #03A49C;
  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: #09333f;
  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: #353535;
  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: #09333f;
  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], .icon-boxes.courses-included .icon-box.col .read-more-btn, input[type=submit], input[type=button], .woocommerce button.button, .woocommerce a.button, .woocommerce #respond input#submit {
  display: inline-block;
  background: #03A49C;
  border: 0;
  font-weight: 600;
  padding: 15px 20px;
  outline: none;
  text-align: center;
  font-family: "Urbanist", 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], .icon-boxes.courses-included .icon-box.col .read-more-btn, 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, .icon-boxes.courses-included .icon-box.col .read-more-btn:hover, .btn:focus, .woocommerce form input[type=submit]:focus,
.woocommerce form input[type=button]:focus, .icon-boxes.courses-included .icon-box.col .read-more-btn:focus, .btn.active, .woocommerce form input.active[type=submit],
.woocommerce form input.active[type=button], .icon-boxes.courses-included .icon-box.col .active.read-more-btn, .btn.alt.disabled, .icon-boxes.courses-included .icon-box.col .alt.disabled.read-more-btn, 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: #09333f;
  color: white !important;
}
.btn.inactive, .woocommerce form input.inactive[type=submit],
.woocommerce form input.inactive[type=button], .icon-boxes.courses-included .icon-box.col .inactive.read-more-btn, input[type=submit].inactive, input[type=button].inactive, .woocommerce button.button.inactive, .woocommerce a.button.inactive, .woocommerce #respond input#submit.inactive {
  background: #D3EDEA;
  color: white !important;
}

.woocommerce a.button.alt, .woocommerce button.button.alt {
  background: #03A49C;
  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: #09333f;
  color: white !important;
}

.btn.arrow, .woocommerce form input.arrow[type=submit],
.woocommerce form input.arrow[type=button], .icon-boxes.courses-included .icon-box.col .arrow.read-more-btn {
  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, .icon-boxes.courses-included .icon-box.col .arrow.read-more-btn: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: #09333f;
  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], .icon-boxes.courses-included .icon-box.col .light.read-more-btn {
  background: none;
  padding-left: 0;
  padding-right: 0;
  color: #07242F;
  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, .icon-boxes.courses-included .icon-box.col .light.read-more-btn:hover {
  color: #07242F;
}
.btn.light:after, .woocommerce form input.light[type=submit]:after,
.woocommerce form input.light[type=button]:after, .icon-boxes.courses-included .icon-box.col .light.read-more-btn: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: #09333f;
}
@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, .icon-boxes.courses-included .icon-box.col .light.read-more-btn:before {
    width: 0;
    display: block;
    background: #09333f;
    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, .icon-boxes.courses-included .icon-box.col .light.read-more-btn:hover {
  color: #03A49C;
}
@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, .icon-boxes.courses-included .icon-box.col .light.read-more-btn:hover:before {
    width: 100%;
  }
}
.btn.outline, .woocommerce form input.outline[type=submit],
.woocommerce form input.outline[type=button], .icon-boxes.courses-included .icon-box.col .outline.read-more-btn {
  border: 3px solid #03A49C;
  background: none;
  color: #03A49C;
  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, .icon-boxes.courses-included .icon-box.col .outline.read-more-btn:before {
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    background: #03A49C;
    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, #front-page-banner .icon-boxes.courses-included .icon-box.col .outline.read-more-btn:before, .icon-boxes.courses-included .icon-box.col #front-page-banner .outline.read-more-btn: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, .icon-boxes.courses-included .icon-box.col .outline.read-more-btn:hover {
    color: white;
  }
  .btn.outline:hover:before, .woocommerce form input.outline[type=submit]:hover:before,
  .woocommerce form input.outline[type=button]:hover:before, .icon-boxes.courses-included .icon-box.col .outline.read-more-btn: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, #front-page-banner .icon-boxes.courses-included .icon-box.col .outline.read-more-btn:hover, .icon-boxes.courses-included .icon-box.col #front-page-banner .outline.read-more-btn:hover {
    color: #03A49C;
  }
}
.btn.secondary, .woocommerce form input.secondary[type=submit],
.woocommerce form input.secondary[type=button], .icon-boxes.courses-included .icon-box.col .secondary.read-more-btn {
  background: #09333f;
  color: white;
}
.btn.secondary:hover, .woocommerce form input.secondary[type=submit]:hover,
.woocommerce form input.secondary[type=button]:hover, .icon-boxes.courses-included .icon-box.col .secondary.read-more-btn:hover {
  background: #03A49C;
  color: white;
}
.btn.white, .woocommerce form input.white[type=submit],
.woocommerce form input.white[type=button], .icon-boxes.courses-included .icon-box.col .white.read-more-btn {
  background: white;
  color: #03A49C;
}
.btn.white:hover, .woocommerce form input.white[type=submit]:hover,
.woocommerce form input.white[type=button]:hover, .icon-boxes.courses-included .icon-box.col .white.read-more-btn:hover {
  background: #03A49C;
  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], .white-background .icon-boxes.courses-included .icon-box.col .white.read-more-btn, .icon-boxes.courses-included .icon-box.col .white-background .white.read-more-btn {
  background: #D3EDEA;
}
.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, .white-background .icon-boxes.courses-included .icon-box.col .white.read-more-btn:hover, .icon-boxes.courses-included .icon-box.col .white-background .white.read-more-btn:hover {
  background: #03A49C;
}

.row.padded, .image-left-text-right.padded {
  padding-top: 30px;
  padding-bottom: 30px;
  z-index: 3;
  position: relative;
}
@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;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.padding-top-small, .image-left-text-right.padding-top-small {
    padding-top: 40px !important;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.padding-top-none, .image-left-text-right.padding-top-none {
    padding-top: 0 !important;
  }
}
.row.margin-top, .image-left-text-right.margin-top {
  margin-top: 30px;
}
@media only screen and (min-width: 768px) {
  .row.margin-top, .image-left-text-right.margin-top {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.margin-top, .image-left-text-right.margin-top {
    margin-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: 1100px) {
  .row {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (min-width: 1720px) {
  .row {
    margin: 0;
    padding-left: calc((100% - 1660px) / 2);
    padding-right: calc((100% - 1660px) / 2);
  }
}
.row.no-row {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 1620px) {
  .row.smallGrid {
    padding-left: calc((100% - 1560px) / 2);
    padding-right: calc((100% - 1560px) / 2);
  }
}

.top-bar {
  background: #09333f;
  border-bottom: 1px solid #0f576c;
  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: #03A49C;
  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;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .top-bar p {
    font-size: 0.9375em;
    line-height: 1em;
  }
}

#header {
  padding-top: 0;
  padding-bottom: 0;
  -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;
    background: #09333f;
  }
  .fixed-header #header {
    background: rgba(9, 51, 63, 0.36);
    -webkit-box-shadow: 0 4px 30px rgba(41, 34, 95, 0.1);
            box-shadow: 0 4px 30px rgba(41, 34, 95, 0.1);
    backdrop-filter: blur(16.5px);
    border-color: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    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% - 1660px) / 2);
    padding-right: calc((100% - 1660px) / 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: #03A49C;
    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% - 1660px) / 2);
  }
}
#header .site-search .search-field {
  margin: 0;
  height: 48px;
  padding: 12px 15px;
  font-size: 0.8125em;
  line-height: 1.0769230769em;
  color: #353535;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
  min-height: 0;
  display: none;
}
@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: #353535;
}
#header .site-search .search-field::-moz-placeholder {
  color: #353535;
}
#header .site-search .search-field:-ms-input-placeholder {
  color: #353535;
}
#header .site-search .search-field::-ms-input-placeholder {
  color: #353535;
}
#header .site-search .search-field::placeholder {
  color: #353535;
}
#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: #07242F;
  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: #03A49C;
}
#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: 20px;
  }
}
.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: 45px;
    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: 40px;
  }
}
@media screen and (min-width: 1100px) {
  .main-logo img.large {
    max-height: 45px;
  }
}
@media screen and (min-width: 1400px) {
  .main-logo img.large {
    max-height: 50px;
  }
}
.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: #03A49C;
  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: #07242F;
  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: #07242F;
}
@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;
    color: white;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .toggle-links .toggle-link:hover {
    background: #03A49C;
  }
}
.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: none;
  }
}
.toggle-links .active:before {
  background: #03A49C;
  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;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .toggle-links i {
    font-weight: 600;
  }
}

.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: #07242F;
  }
}

.woocommerce .mini-cart {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 10;
  width: 100%;
  height: 100vh;
  font-family: "Urbanist", 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: #07242F;
  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: #07242F;
  background: #03A49C;
  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: #07242F;
}
.woocommerce .mini-cart .minicart-footer {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px;
  background: #D3EDEA;
}
.woocommerce .mini-cart p.woocommerce-mini-cart__total {
  font-family: "Urbanist", 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: #07242F;
  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: #09333f;
  margin-bottom: 15px;
}
.woocommerce .mini-cart .woocommerce-mini-cart__buttons a.button:first-child:hover {
  background: #03A49C;
  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: #07242F;
  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: #09333f;
  opacity: 0;
  pointer-events: none;
}
.close-button:hover {
  background: #03A49C;
  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: "Urbanist", 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: #07242F;
  margin: 0 -20px 0;
  width: calc(100% + 40px);
  font-size: 19px;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 10px;
  background: #03A49C;
}
@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: "Urbanist", sans-serif;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #07242F;
  position: relative;
  font-weight: 600;
  font-size: 1.0625em;
  line-height: 1em;
  letter-spacing: 0.5px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul a {
    border: 0;
    padding: 20px 0;
    height: 100%;
    letter-spacing: 0.5px;
    margin: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 600;
    color: white;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    font-size: 1.1875em;
    line-height: 1em;
  }
  #header-nav ul a:hover {
    color: #03A49C;
  }
}
@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 #03A49C 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: "Urbanist", 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: #07242F;
  }
}
@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: #09333f;
}
@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: #03A49C;
    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: #03A49C;
  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: #03A49C;
  }
}
@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: #03A49C;
    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 #03A49C 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% - 1660px) / 2);
    right: calc((100% - 1660px) / 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;
  background: #09333f;
}
.banner #front-page-banner {
  position: relative;
  z-index: 2;
}
.banner #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;
  gap: 30px;
  padding: 40px 20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .banner #front-page-banner .banner-item .container {
    -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;
    padding: 60px 50px;
    gap: 40px;
  }
}
@media screen and (min-width: 1400px) {
  .banner #front-page-banner .banner-item .container {
    padding: 80px 60px;
    gap: 60px;
  }
}
.banner #front-page-banner .banner-item .container .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  z-index: 3;
}
.banner #front-page-banner .banner-item .container .text h1, .banner #front-page-banner .banner-item .container .text .h5 {
  color: #03A49C;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.banner #front-page-banner .banner-item .container .text h2 {
  color: white;
  max-width: 600px;
  margin-bottom: 20px;
}
@media screen and (min-width: 1400px) {
  .banner #front-page-banner .banner-item .container .text h2 {
    max-width: 700px;
  }
}
.banner #front-page-banner .banner-item .container .text p {
  color: white;
  max-width: 600px;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
}
.banner #front-page-banner .banner-item .container .bannertop-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .banner #front-page-banner .banner-item .container .bannertop-image {
    max-width: 450px;
    margin: 0 0 0 auto;
  }
}
@media screen and (min-width: 1400px) {
  .banner #front-page-banner .banner-item .container .bannertop-image {
    max-width: 550px;
  }
}
@media screen and (min-width: 1620px) {
  .banner #front-page-banner .banner-item .container .bannertop-image {
    max-width: 650px;
  }
}
.banner #front-page-banner .banner-item .container .bannertop-image img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-filter: none;
          filter: none;
  opacity: 1;
}

#front-page-banner {
  min-height: 450px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  #front-page-banner {
    border-radius: 5px;
    margin: 0 30px;
    width: calc(100% - 60px);
    min-height: 500px;
  }
}
@media screen and (min-width: 1400px) {
  #front-page-banner {
    min-height: 550px;
  }
}
#front-page-banner .banner-item {
  min-height: 450px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  #front-page-banner .banner-item {
    min-height: 500px;
  }
}
@media screen and (min-width: 1400px) {
  #front-page-banner .banner-item {
    min-height: 550px;
  }
}
#front-page-banner .banner-item img.banner-image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
}
#front-page-banner .banner-item .container {
  position: relative;
  max-width: 1660px;
  margin: 0 auto;
  text-align: left;
  min-height: 450px;
}
@media only screen and (min-width: 768px) {
  #front-page-banner .banner-item .container {
    min-height: 500px;
  }
}
@media screen and (min-width: 1400px) {
  #front-page-banner .banner-item .container {
    min-height: 550px;
  }
}
.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;
}
@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;
  }
}
@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: "Urbanist", 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(3, 164, 156, 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% - 1660px) / 2);
  }
}
#front-page-banner .owl-nav .owl-prev, #front-page-banner .owl-nav .owl-next {
  font-size: 1.25em;
  line-height: 2.75em;
  color: #09333f;
  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: #09333f;
  color: white;
}
#front-page-banner .owl-nav .owl-prev:hover {
  padding-right: 8px;
}
#front-page-banner .owl-nav .owl-next:hover {
  padding-left: 8px;
}

.woocommerce-products-header,
.term-description {
  text-align: center;
}

.woocommerce-products-header__title.page-title {
  margin-left: auto;
  margin-right: auto;
}

.term-description {
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}

#main {
  position: relative;
  z-index: 1;
}

header.page-title {
  padding: 40px 0 30px 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  header.page-title {
    padding: 50px 0 35px 0;
  }
}
header.page-title .row.full-page {
  max-width: 1660px;
  margin: 0 auto;
  padding: 0 20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  header.page-title .row.full-page {
    padding: 0 30px;
  }
}
header.page-title h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  header.page-title h1 {
    font-size: 32px;
  }
}
header.page-title .breadcumb {
  margin-bottom: 15px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  header.page-title .breadcumb {
    margin-bottom: 18px;
  }
}
header.page-title + .row.padded {
  padding-top: 30px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  header.page-title + .row.padded {
    padding-top: 40px;
  }
}

.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: #03A49C;
}
@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: #353535;
  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%;
  display: none;
}
.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% - 1660px) / 2);
    padding-right: calc((100% - 1660px) / 2);
  }
}
.woocommerce .woocommerce-breadcrumb i, .woocommerce-breadcrumb i {
  margin: 0 4px;
  color: #03A49C;
}
.woocommerce .woocommerce-breadcrumb a, .woocommerce-breadcrumb a {
  color: #353535;
  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: #03A49C;
  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: #09333f;
  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: #D3EDEA;
  color: #09333f;
  margin: 0 15px 0 0;
}
.socials a:hover {
  background: #03A49C;
  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 #footer-section {
  background: #09333f;
  padding-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (min-width: 768px) {
  #footer #footer-section {
    gap: 0;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer #footer-section .col {
    margin-bottom: 30px;
    padding: 0 28px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 220px;
            flex: 1 1 220px;
    min-width: 220px;
    max-width: 370px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #footer #footer-section .col:last-child {
    border-right: none;
  }
}
#footer #footer-section .footer-logo.col {
  padding-right: 40px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer #footer-section .footer-logo.col {
    max-width: 600px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 45%;
            flex: 0 1 45%;
  }
}
#footer #footer-section .footer-logo.col .about-us {
  margin: 20px 0;
  font-size: 16px;
  line-height: 1.8;
}
#footer #footer-section .footer-logo.col .socials {
  margin-top: 0;
  margin-bottom: 18px;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}
#footer #footer-section .footer-logo.col .socials a {
  background: white;
  color: #09333f;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  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-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 0;
}
#footer #footer-section .footer-logo.col .socials a:hover {
  background: #03A49C;
  color: white;
}
#footer #footer-section .footer-logo.col img {
  max-width: 300px;
}
#footer #footer-section p {
  color: white;
}
#footer .heading {
  color: white;
  letter-spacing: 0.6px;
  font-weight: 600;
  margin: 0 0 25px;
  width: 100%;
  font-family: "Urbanist", sans-serif;
  font-size: 1.375em;
  line-height: 1.4545454545em;
}
#footer .menu ul, #footer .contacts ul, #footer .follow-us ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1em;
  line-height: 1.625em;
}
#footer .menu ul li, #footer .contacts ul li, #footer .follow-us ul li {
  margin: 0 0 5px;
  padding: 0;
  display: block;
}
#footer .menu ul li:before, #footer .contacts ul li:before, #footer .follow-us ul li:before {
  display: none;
}
#footer .menu ul a, #footer .contacts ul a, #footer .follow-us ul a {
  font-weight: 400;
  color: white;
  padding: 6px 0;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
#footer .menu ul a:hover, #footer .contacts ul a:hover, #footer .follow-us ul a:hover {
  color: #03A49C;
}
#footer .menu {
  border-bottom: none;
  padding-bottom: 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer .menu {
    width: 22%;
  }
}
#footer .contacts {
  border-bottom: none;
  padding-bottom: 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer .contacts {
    width: 28%;
  }
}
#footer .contacts p, #footer .contacts a {
  color: white;
}
#footer #footer-end {
  background: #09333f;
  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 #0f576c;
}
@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 */