@charset "UTF-8";
/**
 * Layout
 * Brings togeather all partials, this is then compiles into layout.min.js
 */
/**
 * SETTINGS 
 * Global vars
 */
.order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

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

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

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

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

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

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

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

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

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.ml-auto {
  margin-left: auto;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
  display: block;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/**
 * Box sizing - border box everything to make life easier.
 */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

/**
 * MIXINS
 */
/**
 * Helper Classes
 */
.m-0 {
  margin: 0px !important;
}

.mt-0 {
  margin-top: 0px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.p-0 {
  padding: 0px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.m-5 {
  margin: 5px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.p-5 {
  padding: 5px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.m-10 {
  margin: 10px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.p-10 {
  padding: 10px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.m-15 {
  margin: 15px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.p-15 {
  padding: 15px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.m-20 {
  margin: 20px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.p-20 {
  padding: 20px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.m-30 {
  margin: 30px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.p-30 {
  padding: 30px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.m-50 {
  margin: 50px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mr-50 {
  margin-right: 50px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.p-50 {
  padding: 50px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

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

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

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

.text-uppercase {
  text-transform: uppercase !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-none {
  text-transform: none !important;
}

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

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

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

.fnt-10 {
  font-size: 10px !important;
}

.fnt-12 {
  font-size: 12px !important;
}

img {
  width: auto;
  max-width: 100%;
}
img.img-inline {
  display: inline-block !important;
}
img.img-center {
  margin: 0 auto;
  display: block;
}

.bdr {
  border-style: solid;
  border-width: 1px;
  border-color: #252525;
}

.bdr-rounded {
  border-radius: 8px;
}

.bdr-top {
  border-top-style: solid;
}

.bdr-bottom {
  border-bottom-style: solid;
}

.bdr-left {
  border-left-style: solid;
}

.bdr-right {
  border-right-style: solid;
}

.bdr-1 {
  border-width: 1px;
}

.hr-1 {
  border-top-width: 1px;
}

.bdr-2 {
  border-width: 2px;
}

.hr-2 {
  border-top-width: 2px;
}

.bdr-3 {
  border-width: 3px;
}

.hr-3 {
  border-top-width: 3px;
}

.bdr-4 {
  border-width: 4px;
}

.hr-4 {
  border-top-width: 4px;
}

.bdr-5 {
  border-width: 5px;
}

.hr-5 {
  border-top-width: 5px;
}

.bdr-white {
  border-color: #FFFFFF !important;
}

.hr-white {
  border-color: #FFFFFF !important;
}

.bdr-black {
  border-color: #000000 !important;
}

.hr-black {
  border-color: #000000 !important;
}

.bdr-light {
  border-color: rgba(0, 0, 0, 0.05) !important;
}

.hr-light {
  border-color: rgba(0, 0, 0, 0.05) !important;
}

.max-320 {
  max-width: 320px !important;
  margin: 0 auto;
}

.max-480 {
  max-width: 480px !important;
  margin: 0 auto;
}

.max-640 {
  max-width: 640px !important;
  margin: 0 auto;
}

.max-980 {
  max-width: 980px !important;
  margin: 0 auto;
}

/**
 * Modified Bootstrap columns. 
 * // TODO - Switch to flex
 */
.container-fluid {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media only screen and (min-width: 992px) {
  .container-fluid {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media only screen and (min-width: 1200px) {
  .container-fluid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -1rem;
  margin-right: -1rem;
}
@media only screen and (min-width: 992px) {
  .row {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }
}
@media only screen and (min-width: 1200px) {
  .row {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
}

.col-non-rel {
  position: inherit !important;
}

.col-xxxs-1, .col-xxs-1, .col-xs-1, .col-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xl-1, .col-xxl-1,
.col-xxxs-2, .col-xxs-2, .col-xs-2, .col-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xl-2, .col-xxl-2,
.col-xxxs-3, .col-xxs-3, .col-xs-3, .col-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xl-3, .col-xxl-3,
.col-xxxs-4, .col-xxs-4, .col-xs-4, .col-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xl-4, .col-xxl-4,
.col-xxxs-5, .col-xxs-5, .col-xs-5, .col-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xl-5, .col-xxl-5,
.col-xxxs-6, .col-xxs-6, .col-xs-6, .col-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xl-6, .col-xxl-6,
.col-xxxs-7, .col-xxs-7, .col-xs-7, .col-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xl-7, .col-xxl-7,
.col-xxxs-8, .col-xxs-8, .col-xs-8, .col-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xl-8, .col-xxl-8,
.col-xxxs-9, .col-xxs-9, .col-xs-9, .col-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xl-9, .col-xxl-9,
.col-xxxs-10, .col-xxs-10, .col-xs-10, .col-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xl-10, .col-xxl-10,
.col-xxxs-11, .col-xxs-11, .col-xs-11, .col-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xl-11, .col-xxl-11,
.col-xxxs-12, .col-xxs-12, .col-xs-12, .col-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xl-12, .col-xxl-12,
.col-xxxs-2-4, .col-xxs-2-4, .col-xs-2-4, .col-sm-2-4, .col-md-2-4, .col-lg-2-4 {
  position: relative;
  min-height: 1px;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  .col-xxxs-1, .col-xxs-1, .col-xs-1, .col-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xl-1, .col-xxl-1,
  .col-xxxs-2, .col-xxs-2, .col-xs-2, .col-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xl-2, .col-xxl-2,
  .col-xxxs-3, .col-xxs-3, .col-xs-3, .col-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xl-3, .col-xxl-3,
  .col-xxxs-4, .col-xxs-4, .col-xs-4, .col-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xl-4, .col-xxl-4,
  .col-xxxs-5, .col-xxs-5, .col-xs-5, .col-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xl-5, .col-xxl-5,
  .col-xxxs-6, .col-xxs-6, .col-xs-6, .col-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xl-6, .col-xxl-6,
  .col-xxxs-7, .col-xxs-7, .col-xs-7, .col-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xl-7, .col-xxl-7,
  .col-xxxs-8, .col-xxs-8, .col-xs-8, .col-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xl-8, .col-xxl-8,
  .col-xxxs-9, .col-xxs-9, .col-xs-9, .col-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xl-9, .col-xxl-9,
  .col-xxxs-10, .col-xxs-10, .col-xs-10, .col-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xl-10, .col-xxl-10,
  .col-xxxs-11, .col-xxs-11, .col-xs-11, .col-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xl-11, .col-xxl-11,
  .col-xxxs-12, .col-xxs-12, .col-xs-12, .col-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xl-12, .col-xxl-12,
  .col-xxxs-2-4, .col-xxs-2-4, .col-xs-2-4, .col-sm-2-4, .col-md-2-4, .col-lg-2-4 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media only screen and (min-width: 1200px) {
  .col-xxxs-1, .col-xxs-1, .col-xs-1, .col-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xl-1, .col-xxl-1,
  .col-xxxs-2, .col-xxs-2, .col-xs-2, .col-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xl-2, .col-xxl-2,
  .col-xxxs-3, .col-xxs-3, .col-xs-3, .col-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xl-3, .col-xxl-3,
  .col-xxxs-4, .col-xxs-4, .col-xs-4, .col-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xl-4, .col-xxl-4,
  .col-xxxs-5, .col-xxs-5, .col-xs-5, .col-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xl-5, .col-xxl-5,
  .col-xxxs-6, .col-xxs-6, .col-xs-6, .col-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xl-6, .col-xxl-6,
  .col-xxxs-7, .col-xxs-7, .col-xs-7, .col-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xl-7, .col-xxl-7,
  .col-xxxs-8, .col-xxs-8, .col-xs-8, .col-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xl-8, .col-xxl-8,
  .col-xxxs-9, .col-xxs-9, .col-xs-9, .col-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xl-9, .col-xxl-9,
  .col-xxxs-10, .col-xxs-10, .col-xs-10, .col-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xl-10, .col-xxl-10,
  .col-xxxs-11, .col-xxs-11, .col-xs-11, .col-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xl-11, .col-xxl-11,
  .col-xxxs-12, .col-xxs-12, .col-xs-12, .col-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xl-12, .col-xxl-12,
  .col-xxxs-2-4, .col-xxs-2-4, .col-xs-2-4, .col-sm-2-4, .col-md-2-4, .col-lg-2-4 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.row .col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}
.row .col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8.33333333%;
}
.row .col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.66666667%;
}
.row .col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}
.row .col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.33333333%;
}
.row .col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 41.66666667%;
}
.row .col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}
.row .col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 58.33333333%;
}
.row .col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66.66666667%;
}
.row .col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 75%;
}
.row .col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 83.33333333%;
}
.row .col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 91.66666667%;
}
.row .col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 576px) {
  .row .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .row .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .row .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .row .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .row .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .row .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .row .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .row .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .row .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .row .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .row .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .row .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .row .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .row .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .row .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .row .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .row .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .row .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .row .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .row .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .row .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .row .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .row .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .row .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .row .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .row .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .row .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .row .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .row .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .row .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .row .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .row .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .row .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .row .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .row .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .row .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .row .col-xxl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row .col-xxl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .row .col-xxl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .row .col-xxl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row .col-xxl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row .col-xxl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .row .col-xxl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row .col-xxl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .row .col-xxl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .row .col-xxl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .row .col-xxl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .row .col-xxl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .row .col-xxl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
}

/**
 * Final responsive classes
 */
@media only screen and (max-width: 479px) {
  .hide-xxs {
    display: none;
  }
}
@media only screen and (max-width: 639px) {
  .hide-xs {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .hide-sm {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .hide-md {
    display: none;
  }
}
@media only screen and (min-width: 480px) {
  .show-xxs {
    display: block;
  }
}
@media only screen and (min-width: 640px) {
  .show-xs {
    display: block;
  }
}
@media only screen and (min-width: 769px) {
  .show-sm {
    display: block;
  }
}
@media only screen and (min-width: 992px) {
  .show-md {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 1rem;
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #d5d5d5;
  }
}

/**
 * FONTS
 * Fontello / FontAwesome libs, or webfont kits not hosted
 * on third party sites liek Adobe Fonts / Google Fonts
 */
html {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0 auto;
  color: #252525;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 1em;
  line-height: 1.3;
  min-width: 320px;
}
body.nav-fixed #header {
  height: 123px;
}
body.nav-fixed #header .wrapper {
  height: 80px;
}
body.nav-fixed #header .wrapper .header-left .logo-wrap .logo {
  max-width: 60px;
}
body.nav-open #header {
  background-color: #ffffff;
}
@media only screen and (max-width: 991px) {
  body.nav-open #header .wrapper #navigation {
    display: block;
  }
}
body.modal-open {
  position: fixed;
  width: 100%;
  overflow-y: hidden;
}
body.modal-open #modal {
  display: block;
  background-color: rgba(0, 0, 0, 0.5803921569);
}

#header, #main, #footer, nav {
  display: block;
  position: relative;
}
#header .wrapper, #main .wrapper, #footer .wrapper, nav .wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media only screen and (min-width: 992px) {
  #header .wrapper, #main .wrapper, #footer .wrapper, nav .wrapper {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media only screen and (min-width: 1200px) {
  #header .wrapper, #main .wrapper, #footer .wrapper, nav .wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

#my-gallery {
  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-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  width: 100%;
}
#my-gallery a {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  height: 200px;
  min-width: 200px;
  margin-bottom: 10px;
  width: 200px;
}
@media (min-width: 480px) {
  #my-gallery a {
    max-width: 300px;
  }
}
#my-gallery a img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.video-wrap {
  background-color: #000;
}

/**
 * Header
 */
.pre-header {
  width: 100%;
  background-color: #f4f4f4;
  padding: 10px 1rem;
}
@media only screen and (min-width: 992px) {
  .pre-header {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media only screen and (min-width: 1200px) {
  .pre-header {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.pre-header .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1600px;
  margin: 0 auto;
}
.pre-header a {
  color: #252525;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-right: 1rem;
}
.pre-header a svg {
  width: 16px;
  margin-right: 0.5rem;
}
@media only screen and (max-width: 639px) {
  .pre-header a span {
    display: none;
  }
}

#header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9;
  height: 123px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 1rem 0 rgb(164.5, 164.5, 164.5);
          box-shadow: 0 0 1rem 0 rgb(164.5, 164.5, 164.5);
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
@media only screen and (min-width: 992px) {
  #header {
    height: 143px;
  }
}
#header .wrapper {
  width: 100%;
  height: 80px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
@media only screen and (min-width: 992px) {
  #header .wrapper {
    height: 100px;
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 992px) {
  #header .wrapper .header-left {
    width: 110px;
  }
}
#header .wrapper .header-left .logo-wrap {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: block;
}
#header .wrapper .header-left .logo-wrap .logo {
  width: 100%;
  max-width: 60px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
@media only screen and (min-width: 992px) {
  #header .wrapper .header-left .logo-wrap .logo {
    max-width: 86px;
  }
}
@media only screen and (min-width: 992px) {
  #header .wrapper .header-right {
    width: calc(100% - 110px);
  }
}
#header .wrapper #navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 991px) {
  #header .wrapper #navigation {
    display: none;
    position: absolute;
    height: 100vh;
    width: 100%;
    top: 64px;
    left: 0;
    overflow: auto;
    padding-bottom: 90px;
    background-color: #ffffff;
    padding: 0 1rem;
  }
}
#header .wrapper #navigation .nav {
  padding-left: 0;
}
@media only screen and (min-width: 992px) {
  #header .wrapper #navigation .nav {
    width: calc(100% - 110px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0;
    margin-bottom: 0;
  }
}
#header .wrapper #navigation .nav li {
  list-style: none;
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) {
  #header .wrapper #navigation .nav li {
    margin-bottom: 0;
  }
}
#header .wrapper #navigation .nav li.active > a {
  color: #FE0000;
  font-weight: 600;
}
#header .wrapper #navigation .nav li .nav-sub {
  padding-left: 10px;
  padding-top: 10px;
}
#header .wrapper #navigation .nav li .nav-sub a.active {
  color: #FE0000;
  font-weight: 600;
}
#header .wrapper #navigation a {
  color: #252525;
  text-decoration: none;
}
@media only screen and (min-width: 992px) {
  #header .wrapper #navigation a {
    padding: 1rem;
  }
}
#header .wrapper #navigation a:hover {
  color: #FE0000;
}
#header .wrapper #navigation .has-sub {
  position: relative;
}
@media only screen and (min-width: 992px) {
  #header .wrapper #navigation .has-sub .nested {
    display: none;
    padding: 1rem !important;
  }
}
#header .wrapper #navigation .has-sub .nested .nav-sub li a {
  margin-bottom: 10px;
  display: block;
}
#header .wrapper #navigation .has-sub .nested .nav-sub li:last-of-type a {
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) {
  #header .wrapper #navigation .has-sub:hover .nested {
    position: absolute;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 1rem 0 rgb(164.5, 164.5, 164.5);
            box-shadow: 0 0 1rem 0 rgb(164.5, 164.5, 164.5);
    display: block;
    margin-top: 15px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0 !important;
  }
}
@media only screen and (min-width: 992px) {
  #header .wrapper #navigation .has-sub:hover .nested a {
    padding: 10px 16px;
  }
}
@media only screen and (min-width: 992px) {
  #header .wrapper #navigation .has-sub:hover .nested .nav-sub {
    padding-left: 0;
    padding-top: 0;
  }
}
@media only screen and (min-width: 992px) {
  #header .wrapper #navigation .has-sub:hover .nested .nav-sub li a {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 992px) {
  #header .wrapper #navigation .has-sub:hover .nested .nav-sub li:first-of-type a {
    padding-top: 16px;
  }
}
@media only screen and (min-width: 992px) {
  #header .wrapper #navigation .has-sub:hover .nested .nav-sub li:last-of-type a {
    padding-bottom: 16px;
  }
}
@media only screen and (min-width: 992px) {
  #header .wrapper #navigation .btn-wrap {
    margin-left: auto;
  }
}
#header .wrapper #navigation .btn-wrap .btn-red {
  background-color: #FE0000;
  color: #ffffff;
  font-weight: 500;
}
#header .nav-btn {
  background-color: transparent;
  cursor: pointer;
  width: 50px;
  height: 40px;
  position: relative;
  display: block;
  border: none;
}
@media only screen and (min-width: 992px) {
  #header .nav-btn {
    display: none;
  }
}
#header .nav-btn span,
#header .nav-btn span::before,
#header .nav-btn span::after {
  height: 3px;
  width: 25px;
  background-color: #1B2A34;
  content: "";
  position: absolute;
  display: block;
  margin-left: 20px;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}
#header .nav-btn span::before {
  top: -7px;
  margin-left: 0;
}
#header .nav-btn span::after {
  bottom: -7px;
  margin-left: 0;
}
#header .nav-btn.is-active span {
  background-color: transparent;
}
#header .nav-btn.is-active span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#header .nav-btn.is-active span::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/**
 * NAVIGATION
 */
@media only screen and (max-width: 991px) {
  body.nav-open {
    overflow: hidden;
  }
}
/**
 * Footer
 */
#footer a, #footer p, #footer h2, #footer h3, #footer div {
  color: #ffffff;
  font-size: 14px;
}
#footer a {
  text-decoration: none;
}
#footer a:hover {
  text-decoration: underline;
}
#footer .footer-top {
  background-color: #1B2A34;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
#footer .footer-top ul {
  padding-left: 0;
  list-style: none;
}
#footer .footer-top ul .icon {
  position: relative;
  padding-left: 40px;
}
#footer .footer-top ul .icon::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: 0px;
  left: 0px;
}
#footer .footer-top ul .icon.location::before {
  background-image: url(../../assets/img/icon/location.svg);
}
#footer .footer-top ul .icon.mail::before {
  background-image: url(../../assets/img/icon/mail.svg);
}
#footer .footer-top ul .icon.phone::before {
  background-image: url(../../assets/img/icon/phone.svg);
}
#footer .footer-top .footer-logo-wrap {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 991px) {
  #footer .footer-top .footer-logo-wrap {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: block;
  }
}
#footer .footer-top .footer-logo-wrap .logo {
  max-width: 270px;
  width: 100%;
}
@media only screen and (min-width: 992px) {
  #footer .footer-top .footer-logo-wrap .logo {
    max-width: 310px;
  }
}
#footer .footer-top .iso-img {
  margin-top: 1rem;
}
#footer .footer-top .social a {
  display: inline-block;
}
#footer .footer-top .social a.social-facebook:hover svg path {
  fill: #1877F2;
}
#footer .footer-top .social a.social-youtube:hover svg path {
  fill: #fe0000;
}
#footer .footer-top .social a.social-instagram:hover svg path {
  fill: #dcdcdc;
}
#footer .footer-top .social a.social-linkedin:hover svg path {
  fill: #0077b5;
}
#footer .footer-top .social svg {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}
#footer .footer-top .social svg:hover path {
  fill: #1079bf;
}
#footer .footer-top .social svg path {
  fill: white;
}
#footer .footer-bottom {
  background-color: rgb(44.4303797468, 69.1139240506, 85.5696202532);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
#footer .footer-bottom .register {
  padding-bottom: 0.5rem;
}
@media only screen and (min-width: 768px) {
  #footer .footer-bottom .register {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  #footer .footer-bottom .keane {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}
#footer .footer-bottom p {
  margin: 0;
}
#footer .footer-bottom strong {
  font-weight: 600 !important;
}

/**
 * SPINNER / LOADER
 */
.loading {
  text-align: center;
  position: relative;
  min-height: 60px;
}
.loading.relative {
  min-height: 0;
}
.loading .spinner, .loading .spinner:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
.loading .spinner {
  text-align: center;
  display: inline-block;
  margin: 0;
  font-size: 5px;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid rgba(255, 255, 255, 0.8);
  text-align: center;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 50%;
  margin-top: -22px;
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
.loading .spinner.dark {
  border-top: 1.1em solid rgba(0, 0, 0, 0.4);
  border-right: 1.1em solid rgba(0, 0, 0, 0.4);
  border-bottom: 1.1em solid rgba(0, 0, 0, 0.4);
  border-left: 1.1em solid rgba(0, 0, 0, 0.9);
}
.loading .spinner.small {
  width: 20px;
  height: 20px;
  font-size: 4px;
}
.loading .spinner.large {
  width: 80px;
  height: 80px;
  font-size: 8px;
}
.loading .spinner.relative {
  position: relative;
  top: auto;
  margin-top: 0;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loading-overlay {
  position: relative;
}
.loading-overlay .loading {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.65);
}
.loading-overlay .loading .spinner.relative {
  position: absolute;
  top: 50%;
  margin-top: -22px;
}

.alert.alert-loading {
  padding: 15px 15px 10px;
  overflow: hidden;
}
.alert.alert-loading .loading {
  min-height: 0;
  float: left;
}
.alert.alert-loading .loading .spinner {
  position: relative;
  top: auto;
  margin-top: 0;
  width: 20px;
  height: 20px;
  font-size: 4px;
}

.btn.btn-wait {
  cursor: wait;
  padding: 10px !important;
}
.btn.btn-wait .loading {
  min-height: 0;
  line-height: 1;
}
.btn.btn-wait .loading .spinner {
  font-size: 4px;
  height: 20px;
  width: 20px;
  top: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  position: relative;
  top: auto;
  left: auto;
  bottom: auto;
  right: auto;
}

/**
 * ALERTS & NOTICES
 */
.info {
  color: #2a91af !important;
}

.success {
  color: #3a993a !important;
}

.error, .danger {
  color: #c42823 !important;
}

.warning {
  color: #e5a242 !important;
}

.alert {
  position: relative;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  background-color: #f5f5f5;
  border: 0 none;
  display: block;
  line-height: normal;
  color: #252525;
}
.alert a:not(.btn) {
  color: #252525 !important;
  font-weight: bold;
}
.alert a:not(.btn):hover {
  color: #252525 !important;
  text-decoration: underline;
}
.alert.alert-success {
  color: #252525;
  background-color: #dff0d8;
}
.alert.alert-error {
  color: #252525;
  background-color: #f2dede;
}
.alert.alert-info {
  color: #252525;
  background-color: #d9edf7;
}
.alert.alert-warning {
  color: #252525;
  background-color: #fcf8e3;
}
.alert.alert-loading {
  background: #ffffff;
  color: #252525;
  border: 1px solid rgb(191.25, 191.25, 191.25);
}
.alert .close {
  display: inline-block;
  margin-top: 0px;
  margin-right: 0px;
  width: 10px;
  height: 10px;
  cursor: pointer;
  float: right;
  background-color: transparent;
  border: 0 none;
  line-height: 20px;
  position: relative;
  right: 0;
  top: 5px;
  opacity: 0.75;
  background-image: url("../img/icon/close.svg");
  background-repeat: no-repeat !important;
  background-size: contain;
  background-position: center;
}
.alert .close:hover {
  opacity: 1;
}

/**
 * BTNS
 */
.btn {
  display: inline-block;
  width: auto;
  padding: 1rem;
  margin: 0;
  border: 0 none;
  border-radius: 8px;
  color: #ffffff;
  background: #FE0000;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  height: auto;
  cursor: pointer;
  font-size: 1em;
  font-weight: 600;
}
.btn:hover:not(.btn-nohover), .btn:focus:not(.btn-nohover) {
  background-color: #cb0000;
  color: #ffffff;
}
.btn.btn-small {
  font-size: 75%;
  padding: 0.5rem 1rem 0.5rem;
  line-height: 1;
}
.btn.btn-full {
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .btn.btn-full-md {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .btn.btn-full-sm {
    width: 100%;
  }
}
@media only screen and (max-width: 639px) {
  .btn.btn-full-mb {
    width: 100%;
  }
}
.btn.btn-modal, .btn.btn-pointer {
  cursor: pointer;
}
.btn.btn-nopointer {
  cursor: default;
}
.btn.btn-rounded {
  border-radius: 8px;
}
.btn.btn-fixed {
  width: 200px;
}
@media only screen and (max-width: 479px) {
  .btn.btn-fixed {
    width: 100%;
  }
}
.btn.btn-black {
  background: #252525 !important;
  color: #ffffff !important;
}
.btn.btn-black:hover:not(.btn-nohover), .btn.btn-black:focus:not(.btn-nohover) {
  background: rgb(49.75, 49.75, 49.75) !important;
  color: #ffffff !important;
}
.btn.btn-text {
  background: transparent;
  border-color: transparent;
  color: #252525;
}
.btn.btn-text:hover:not(.btn-nohover), .btn.btn-text:focus:not(.btn-nohover) {
  color: rgb(11.5, 11.5, 11.5);
}
.btn.btn-upload {
  display: block;
  text-align: center;
  color: rgba(37, 37, 37, 0.5) !important;
  background: transparent;
  padding: 1rem;
  border: 2px solid rgba(37, 37, 37, 0.1);
  border-radius: 8px;
}

.btn-group {
  overflow: hidden;
  padding: 1rem 0 0;
}
@media only screen and (max-width: 479px) {
  .btn-group button.btn, .btn-group a.btn, .btn-group input.btn, .btn-group span.btn {
    width: 100%;
    display: block;
    margin-bottom: 0.5rem;
  }
  .btn-group button.btn:last-of-type, .btn-group a.btn:last-of-type, .btn-group input.btn:last-of-type, .btn-group span.btn:last-of-type {
    margin-bottom: 0;
  }
}
.btn-group.text-left button.btn, .btn-group.text-left a.btn, .btn-group.text-left input.btn, .btn-group.text-left span.btn {
  float: left;
  margin-right: 1rem;
}
.btn-group.text-right button.btn, .btn-group.text-right a.btn, .btn-group.text-right input.btn, .btn-group.text-right span.btn {
  float: right;
  margin-left: 1rem;
}

.btn.btn-white {
  color: #252525 !important;
  background-color: #ffffff !important;
}
.btn.btn-white:hover:not(.btn-nohover), .btn.btn-white:focus:not(.btn-nohover) {
  color: #252525 !important;
  background-color: rgb(229.5, 229.5, 229.5) !important;
}
.btn.btn-black {
  color: #ffffff !important;
  background-color: #252525 !important;
}
.btn.btn-black:hover:not(.btn-nohover), .btn.btn-black:focus:not(.btn-nohover) {
  color: #ffffff !important;
  background-color: rgb(11.5, 11.5, 11.5) !important;
}
.btn.btn-light {
  color: #252525 !important;
  background-color: #f4f4f4 !important;
}
.btn.btn-light:hover:not(.btn-nohover), .btn.btn-light:focus:not(.btn-nohover) {
  color: #252525 !important;
  background-color: rgb(218.5, 218.5, 218.5) !important;
}

/**
 * FORMS
 */
.control-group {
  position: relative;
  padding: 0;
  margin: 0 0 0.5rem;
}
.control-group.overflow-visible {
  overflow: visible;
}

.placeholder {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.3;
  padding: 0 0 0 0;
  margin: 0 0 0.5rem;
  display: block;
  width: auto;
  float: none;
}
.placeholder.mand:after {
  content: " *";
  font-size: 1.125em;
  color: #c30c30;
}

.checkbox-group, .radio-group {
  padding: 0 0.25rem;
}

.control {
  display: block;
  padding: 0.375rem 0.675rem;
  margin: 0 0 0 -1px;
  height: 50px;
  width: 100%;
  font-size: 1em;
  line-height: 1;
  border: 1px solid rgb(214.2, 214.2, 214.2);
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0);
          box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0);
  color: #252525;
}
@media only screen and (max-width: 1079px) {
  .control {
    height: 40px;
  }
}
.control:focus {
  outline: none;
  border: 1px solid rgb(216.75, 216.75, 216.75);
  -webkit-box-shadow: 0 0 0 0.25rem rgba(36, 62, 141, 0.1);
          box-shadow: 0 0 0 0.25rem rgba(36, 62, 141, 0.1);
}
@media only screen and (max-width: 1079px) {
  .control:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(36, 62, 141, 0.1);
            box-shadow: 0 0 0 0.2rem rgba(36, 62, 141, 0.1);
  }
}
.control[readonly], .control[disabled] {
  background: #f2f2f2;
}
.control[readonly]:focus, .control[disabled]:focus {
  border: 1px solid rgb(214.2, 214.2, 214.2);
  -webkit-box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0);
          box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0);
}

select.control {
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea.control {
  min-height: 100px;
  resize: vertical;
  padding: 0.675rem 0.675rem;
}

.control-checkbox, .control-radio {
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 50%;
  padding: 0.6rem 15px 0.4rem 40px;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media only screen and (max-width: 1079px) {
  .control-checkbox, .control-radio {
    padding-left: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .control-checkbox, .control-radio {
    width: 50%;
  }
}
@media only screen and (max-width: 479px) {
  .control-checkbox, .control-radio {
    width: auto;
    display: block;
    float: none;
  }
}
.control-checkbox:last-of-type, .control-radio:last-of-type {
  margin-bottom: 0;
}
.control-checkbox.is-inline, .control-radio.is-inline {
  width: auto;
  float: none;
}
.control-checkbox.is-50, .control-radio.is-50 {
  display: block;
  width: 49%;
  float: left;
}
.control-checkbox.is-50:nth-of-type(2n), .control-radio.is-50:nth-of-type(2n) {
  float: right;
}
@media only screen and (max-width: 639px) {
  .control-checkbox.is-50, .control-radio.is-50 {
    float: none;
    width: auto;
  }
  .control-checkbox.is-50:nth-of-type(2n), .control-radio.is-50:nth-of-type(2n) {
    float: none;
  }
}
.control-checkbox.is-25, .control-radio.is-25 {
  display: block;
  width: 24%;
  float: left;
  margin-right: 1%;
}
@media only screen and (max-width: 639px) {
  .control-checkbox.is-25, .control-radio.is-25 {
    float: none;
    width: auto;
    margin-right: 0;
  }
}
.control-checkbox.is-fullwidth, .control-radio.is-fullwidth {
  width: auto;
  float: none;
  display: block;
}
.control-checkbox:hover .checkbox, .control-checkbox:hover .radio, .control-checkbox:focus .checkbox, .control-checkbox:focus .radio, .control-radio:hover .checkbox, .control-radio:hover .radio, .control-radio:focus .checkbox, .control-radio:focus .radio {
  border: 1px solid rgb(216.75, 216.75, 216.75);
  -webkit-box-shadow: 0 0 0 0.25rem rgba(36, 62, 141, 0.1);
          box-shadow: 0 0 0 0.25rem rgba(36, 62, 141, 0.1);
}
.control-checkbox label, .control-radio label {
  line-height: 1.9;
}
.control-checkbox input, .control-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 1px;
  width: 1px;
  line-height: 1;
}
.control-checkbox .checkbox, .control-checkbox .radio, .control-radio .checkbox, .control-radio .radio {
  position: absolute;
  top: 5px;
  left: 0;
  bottom: 2px;
  height: 30px;
  width: 30px;
  background-color: #fff;
  border: 1px solid rgb(216.75, 216.75, 216.75);
  border-radius: 0.25rem;
  border-color: 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0);
          box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0);
}
@media only screen and (max-width: 1079px) {
  .control-checkbox .checkbox, .control-checkbox .radio, .control-radio .checkbox, .control-radio .radio {
    height: 25px;
    width: 25px;
  }
}
.control-checkbox .checkbox:after, .control-checkbox .radio:after, .control-radio .checkbox:after, .control-radio .radio:after {
  content: "";
  position: absolute;
  display: none;
  left: 10px;
  top: 4px;
  width: 8px;
  height: 15px;
  border-style: solid;
  border-color: #252525;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media only screen and (max-width: 1079px) {
  .control-checkbox .checkbox:after, .control-checkbox .radio:after, .control-radio .checkbox:after, .control-radio .radio:after {
    left: 8px;
    top: 3px;
    width: 7px;
    height: 15px;
  }
}
.control-checkbox .radio, .control-radio .radio {
  border-radius: 1rem;
  top: 5px;
}
.control-checkbox .radio:after, .control-radio .radio:after {
  left: 5px;
  top: 5px;
  right: 5px;
  bottom: 5px;
  width: auto;
  height: auto;
  border: 0 none;
  border-radius: 1rem;
  background-color: #252525;
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.control-checkbox input:focus ~ .checkbox, .control-checkbox input:focus ~ .radio, .control-radio input:focus ~ .checkbox, .control-radio input:focus ~ .radio {
  border: 1px solid rgb(214.2, 214.2, 214.2);
  -webkit-box-shadow: 0 0 0 0.25rem rgba(36, 62, 141, 0.1);
          box-shadow: 0 0 0 0.25rem rgba(36, 62, 141, 0.1);
}
@media only screen and (max-width: 1079px) {
  .control-checkbox input:focus ~ .checkbox, .control-checkbox input:focus ~ .radio, .control-radio input:focus ~ .checkbox, .control-radio input:focus ~ .radio {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(36, 62, 141, 0.1);
            box-shadow: 0 0 0 0.2rem rgba(36, 62, 141, 0.1);
  }
}
.control-checkbox input:checked ~ .checkbox:after, .control-checkbox input:checked ~ .radio:after, .control-radio input:checked ~ .checkbox:after, .control-radio input:checked ~ .radio:after {
  display: block;
}

.control-radio {
  padding: 0.65rem 1rem 0.45rem 2rem;
  margin-bottom: 0;
}

.control-slider {
  position: relative;
  height: 43px;
  padding-top: 5px;
}
.control-slider .min, .control-slider .max {
  position: absolute;
  top: 22px;
  border-bottom: 0;
  padding: 0;
  margin: 0;
  width: 100px;
  font-size: 0.75em;
}
.control-slider .min input, .control-slider .max input {
  border: 0;
  width: 100px;
}
.control-slider .min {
  left: 0;
  right: auto;
}
.control-slider .min input {
  text-align: left;
}
.control-slider .max {
  right: 0;
  left: auto;
}
.control-slider .max input {
  text-align: right;
}

form .note {
  padding: 0;
  margin: 0;
  font-size: 0.813em;
  float: left;
}
@media only screen and (max-width: 991px) {
  form .note {
    display: block;
    float: none;
    width: 100%;
    margin-bottom: 1rem;
  }
  form .note p {
    margin: 0;
    display: block;
  }
}
form .hp {
  display: none;
  visibility: hidden;
}
form .btn-group {
  overflow: hidden;
  width: 100%;
}
form .btn-group #btn-frm-submit {
  margin-bottom: 15px;
}
@media only screen and (min-width: 769px) {
  form .btn-group #btn-frm-submit {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  form .btn-group #btn-frm-submit {
    width: 100%;
  }
}
form .btn-group .control {
  overflow: hidden;
}

.btn-group {
  width: 100%;
  padding-top: 0;
}
.btn-group #btn-frm-submit {
  font-size: 14px;
}
@media only screen and (min-width: 480px) {
  .btn-group #btn-frm-submit {
    width: 100%;
  }
}
@media only screen and (min-width: 769px) {
  .btn-group #btn-frm-submit {
    width: auto;
  }
}
.btn-group .note {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  margin-top: 20px;
  margin-left: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media only screen and (min-width: 480px) {
  .btn-group .note {
    width: auto;
    padding-right: 1rem;
    margin: 0;
  }
}
.btn-group.is-flex {
  overflow: visible;
}
@media only screen and (min-width: 480px) {
  .btn-group.is-flex {
    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: 0.5rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.frm-contact,
.frm-capabilities {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom-width: 1px;
  padding: 1rem;
  border-radius: 4px;
  border-bottom-width: 2px;
}
@media only screen and (min-width: 1200px) {
  .frm-contact #frm-enquiry .frm-inner,
  .frm-capabilities #frm-enquiry .frm-inner {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
  }
}
@media only screen and (min-width: 1200px) {
  .frm-contact #frm-enquiry .frm-inner #enquiry,
  .frm-capabilities #frm-enquiry .frm-inner #enquiry {
    min-height: 226px !important;
  }
}

.subscribe-icon {
  background-color: #252525;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5px;
}
.subscribe-icon img {
  max-width: 25px;
  width: 100%;
}

#frm-enquiry-subscribe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 640px) {
  #frm-enquiry-subscribe {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }
}
#frm-enquiry-subscribe #ajax-msg-subscribe {
  width: 100%;
}
#frm-enquiry-subscribe .control-group {
  width: 100%;
}
@media only screen and (min-width: 640px) {
  #frm-enquiry-subscribe .control-group {
    width: calc(50% - 16px);
    margin-bottom: 0;
  }
}
#frm-enquiry-subscribe label {
  margin: 0;
}
#frm-enquiry-subscribe input {
  height: 46px;
  text-align: center;
}
@media only screen and (min-width: 640px) {
  #frm-enquiry-subscribe .btn-group {
    width: calc(50% - 16px);
  }
}
#frm-enquiry-subscribe .btn-group button {
  width: 100%;
}
#frm-enquiry-subscribe #newsletter {
  width: 100%;
}

/**
 * MODALS
 */
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10010;
  background: #000000;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: -webkit-opacity 0.3s ease-in;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}
.modal-backdrop.in {
  -moz-opacity: 0.7;
  -webkit-opacity: 0.7;
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  z-index: 10020;
  overflow-x: hidden;
  overflow-y: auto;
}
.modal * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.modal.in .modal-container {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal.in .modal-container.v-center {
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-top: 0;
  margin-bottom: 0;
}
@media only screen and (max-width: 639px) {
  .modal.in .modal-container.v-center {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    position: absolute;
    top: 0;
  }
}
.modal .modal-container {
  width: 100%;
  max-width: 980px;
  background: #fff;
  font-size: 1em;
  position: relative;
  z-index: 10030;
  margin: 1.75rem auto;
  -webkit-transform: translate(0, 15%);
  transform: translate(0, 15%);
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
  -webit-box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.75);
          box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.75);
}
.modal .modal-container.modal-small {
  max-width: 640px;
}
@media only screen and (max-width: 639px) {
  .modal .modal-container.modal-small {
    max-width: none;
  }
}
.modal .modal-container.modal-large {
  width: auto;
  max-width: 90%;
}
@media only screen and (max-width: 991px) {
  .modal .modal-container.modal-large {
    max-width: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    margin: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .modal .modal-container.modal-large .modal-body {
    position: absolute;
    top: 50px;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
    overflow-y: auto;
    max-height: none;
  }
  .modal .modal-container.modal-large .modal-body:after {
    content: "";
    display: none;
    height: 40px;
  }
}
@media only screen and (max-width: 1199px) {
  .modal .modal-container {
    width: 80%;
  }
}
@media only screen and (max-width: 991px) {
  .modal .modal-container {
    width: 80%;
  }
}
@media only screen and (max-width: 768px) {
  .modal .modal-container {
    width: 90%;
  }
}
@media only screen and (max-width: 639px) {
  .modal .modal-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    margin: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.modal .modal-container .modal-header {
  position: relative;
  display: block;
  margin: 0;
  padding: 1rem 66px 1rem 1.5rem;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 1199px) {
  .modal .modal-container .modal-header {
    padding-left: 1rem;
  }
}
@media only screen and (max-width: 991px) {
  .modal .modal-container .modal-header {
    font-size: 1em;
  }
}
@media only screen and (max-width: 639px) {
  .modal .modal-container .modal-header {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    height: 50px;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
}
.modal .modal-container .modal-header .title {
  padding: 0;
  margin: 0;
  color: #252525;
  font-weight: 900;
  font-size: 1.143em;
  text-transform: uppercase;
}
@media only screen and (max-width: 639px) {
  .modal .modal-container .modal-header .title {
    height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.modal .modal-container .modal-header .close {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50px;
  border: 0 none;
  background: transparent;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
  filter: alpha(opacity=100);
  opacity: 1;
}
@media only screen and (max-width: 639px) {
  .modal .modal-container .modal-header .close {
    border-left: 1px solid rgba(0, 0, 0, 0.2);
  }
}
.modal .modal-container .modal-header .close:after {
  content: url("../img/icon/close.svg");
  display: block;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat !important;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
  opacity: 0.75;
}
.modal .modal-container .modal-header .close:hover:after {
  opacity: 1;
}
.modal .modal-container .modal-header.no-close {
  padding-right: 1rem;
  text-align: center;
}
.modal .modal-container .modal-header.no-close .close {
  display: none;
}
.modal .modal-container .modal-footer {
  padding: 1rem 1.5rem;
  overflow: hidden;
  border-top: 2px solid rgba(0, 0, 0, 0.2);
  text-align: right;
}
@media only screen and (max-width: 1199px) {
  .modal .modal-container .modal-footer {
    padding: 1rem;
  }
}
@media only screen and (max-width: 639px) {
  .modal .modal-container .modal-footer {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.modal .modal-container .modal-body {
  padding: 1rem 1rem;
  margin: 0;
  background: #fff;
  color: #252525;
}
@media only screen and (min-width: 992px) {
  .modal .modal-container .modal-body {
    padding: 1rem 1.25rem;
  }
}
@media only screen and (min-width: 1200px) {
  .modal .modal-container .modal-body {
    padding: 1rem 1.5rem;
  }
}
@media only screen and (max-width: 639px) {
  .modal .modal-container .modal-body {
    position: absolute;
    top: 50px;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
    overflow-y: auto;
    max-height: none;
  }
  .modal .modal-container .modal-body:after {
    content: "";
    display: none;
    height: 40px;
  }
}
@media only screen and (max-width: 639px) {
  .modal .modal-container .modal-body .row-content {
    margin-bottom: 1rem;
  }
}
.modal .modal-container .modal-body .btn.btn-modal-close {
  font-weight: 300;
  background: #ffffff;
  border: 1px solid #f4f4f4;
  color: #252525;
  padding: 1rem 1rem 0.5rem;
  font-size: 0.875em;
}
.modal .modal-container .modal-body {
  /**
   * MODAL CONTENT STYLES
   * Usually generic content styles is enough, 
   * but if we need to put anything else specific to the project, we can include here
   */
  /**
   * GENERIC STYLES
   */
}
.modal .modal-container .modal-body h1, .modal .modal-container .modal-body h2, .modal .modal-container .modal-body h3, .modal .modal-container .modal-body h4, .modal .modal-container .modal-body h5, .modal .modal-container .modal-body h6,
.modal .modal-container .modal-body .h1, .modal .modal-container .modal-body .h2, .modal .modal-container .modal-body .h3, .modal .modal-container .modal-body .h4, .modal .modal-container .modal-body .h5, .modal .modal-container .modal-body .h6 {
  color: #252525;
  margin: 0 0 1rem;
  font-weight: 800;
  font-family: "Inter", sans-serif;
  line-height: 1.1;
}
.modal .modal-container .modal-body h1 small, .modal .modal-container .modal-body h2 small, .modal .modal-container .modal-body h3 small, .modal .modal-container .modal-body h4 small, .modal .modal-container .modal-body h5 small, .modal .modal-container .modal-body h6 small,
.modal .modal-container .modal-body .h1 small, .modal .modal-container .modal-body .h2 small, .modal .modal-container .modal-body .h3 small, .modal .modal-container .modal-body .h4 small, .modal .modal-container .modal-body .h5 small, .modal .modal-container .modal-body .h6 small {
  color: #f4f4f4;
  font-weight: 700;
  font-size: 65%;
  display: block;
}
.modal .modal-container .modal-body h1, .modal .modal-container .modal-body .h1 {
  color: #252525;
  font-size: 1.5em;
}
@media only screen and (min-width: 992px) {
  .modal .modal-container .modal-body h1, .modal .modal-container .modal-body .h1 {
    font-size: 2em;
  }
}
.modal .modal-container .modal-body h2, .modal .modal-container .modal-body .h2 {
  font-size: 1.75em;
}
.modal .modal-container .modal-body h3, .modal .modal-container .modal-body .h3 {
  font-size: 1.625em;
}
.modal .modal-container .modal-body h4, .modal .modal-container .modal-body .h4 {
  font-size: 1.5em;
}
.modal .modal-container .modal-body h5, .modal .modal-container .modal-body .h5,
.modal .modal-container .modal-body h6, .modal .modal-container .modal-body .h6 {
  font-size: 1.375em;
}
.modal .modal-container .modal-body p {
  margin: 0 0 1rem;
}
.modal .modal-container .modal-body a:not(.btn) {
  color: #252525;
  text-decoration: none;
}
.modal .modal-container .modal-body a:not(.btn):hover {
  text-decoration: underline;
}
.modal .modal-container .modal-body .intro {
  font-size: 1.375em;
  line-height: 1.3;
  font-weight: 600;
}
.modal .modal-container .modal-body .intro.light {
  font-family: "Inter", sans-serif;
  font-weight: 300 !important;
}
.modal .modal-container .modal-body .intro.small {
  font-size: 1.125em;
}
@media only screen and (min-width: 640px) {
  .modal .modal-container .modal-body .intro.small {
    font-size: 1em;
  }
}
@media only screen and (min-width: 640px) {
  .modal .modal-container .modal-body .intro {
    font-size: 1.125em;
  }
}
.modal .modal-container .modal-body ul {
  margin-left: 14px;
  padding-left: 0;
}
.modal .modal-container .modal-body ul li {
  position: relative;
  padding-left: 0;
  margin-bottom: 5px;
}
.modal .modal-container .modal-body ul li:before {
  font-size: 24px;
  line-height: 0;
  position: absolute;
  top: 8px;
  left: 0;
}
.modal .modal-container .modal-body ul.list-alpha {
  list-style-type: lower-alpha;
  margin: 0 0 15px;
}
.modal .modal-container .modal-body ul.list-alpha li {
  list-style-type: lower-alpha;
  margin-left: 20px;
  padding-left: 0;
}
.modal .modal-container .modal-body ul.list-alpha li:before {
  display: none;
}
.modal .modal-container .modal-body ul.list-spaced {
  margin: 0;
  padding: 0;
  list-style: none;
}
.modal .modal-container .modal-body ul.list-spaced li {
  padding: 0 0 0 80px;
  margin: 0 0 3px;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 576px) {
  .modal .modal-container .modal-body ul.list-spaced li {
    padding-left: 0;
  }
}
.modal .modal-container .modal-body ul.list-spaced li:before {
  display: none;
}
.modal .modal-container .modal-body ul.list-spaced li span:first-of-type {
  display: inline-block;
  width: 80px;
  margin-left: -80px;
  float: left;
}
@media only screen and (min-width: 576px) {
  .modal .modal-container .modal-body ul.list-spaced li span:first-of-type {
    width: 100%;
    margin-left: 0;
    float: none;
  }
}
.modal .modal-container .modal-body ul.list-spaced li .width-full {
  width: 100% !important;
}
.modal .modal-container .modal-body ul.list-spaced.ls-thin li {
  padding-left: 100px;
}
.modal .modal-container .modal-body ul.list-spaced.ls-thin li span:first-of-type {
  width: 100px;
  margin-left: -100px;
}
.modal .modal-container .modal-body ul.list-spaced.ls-wide li {
  padding-left: 1rem;
}
@media only screen and (min-width: 640px) {
  .modal .modal-container .modal-body ul.list-spaced.ls-wide li {
    padding-left: 180px;
  }
}
@media only screen and (min-width: 992px) {
  .modal .modal-container .modal-body ul.list-spaced.ls-wide li {
    padding-left: 250px;
  }
}
.modal .modal-container .modal-body ul.list-spaced.ls-wide li span:first-of-type {
  width: 100%;
  display: block;
  float: none;
  margin-left: -1rem;
}
@media only screen and (min-width: 640px) {
  .modal .modal-container .modal-body ul.list-spaced.ls-wide li span:first-of-type {
    float: left;
    width: 165px;
    margin-left: -180px;
  }
}
@media only screen and (min-width: 992px) {
  .modal .modal-container .modal-body ul.list-spaced.ls-wide li span:first-of-type {
    width: 235px;
    margin-left: -250px;
  }
}
.modal .modal-container .modal-body ul.list-spaced.ls-right li span:first-of-type {
  text-align: right;
}
@media only screen and (max-width: 639px) {
  .modal .modal-container .modal-body ul.list-spaced.ls-right li span:first-of-type {
    text-align: left;
  }
}
.modal .modal-container .modal-body .red {
  color: #FE0000 !important;
}
.modal .modal-container .modal-body .img-right {
  background-color: #f4f4f4;
  border-radius: 8px;
  padding: 1rem;
  max-width: 500px;
  margin: 1rem auto 1rem auto;
}
@media only screen and (min-width: 992px) {
  .modal .modal-container .modal-body .img-right {
    float: right;
    margin-left: 1rem;
  }
}
.modal .modal-container .modal-body .img-right p {
  margin-top: 0.5rem;
  margin-bottom: 0;
  text-align: center;
}
.modal .modal-container .modal-body .page_frm_wrap {
  -webkit-box-shadow: 0 0 1rem 0 rgb(164.5, 164.5, 164.5);
          box-shadow: 0 0 1rem 0 rgb(164.5, 164.5, 164.5);
  padding: 1rem;
  border-radius: 8px;
  background-color: #ffffff;
}
@media only screen and (min-width: 769px) {
  .modal .modal-container .modal-body .page_frm_wrap {
    padding: 2rem;
  }
}
@media only screen and (min-width: 769px) {
  .modal .modal-container .modal-body .page_frm_wrap #frm-enquiry .frm-inner {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
  }
}
@media only screen and (min-width: 769px) {
  .modal .modal-container .modal-body .page_frm_wrap #frm-enquiry .frm-inner #enquiry {
    min-height: 196px !important;
  }
}
@media only screen and (min-width: 1080px) {
  .modal .modal-container .modal-body .page_frm_wrap #frm-enquiry .frm-inner #enquiry {
    min-height: 226px !important;
  }
}
.modal .modal-container .modal-body .col-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr; /* two equal columns */
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.modal .modal-container .modal-body .col-wrap img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal .modal-container .modal-body .col-wrap .text-wrap {
  padding: 1rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.modal .modal-container .modal-body .col-wrap .text-wrap h3 {
  font-size: 20px;
}
@media only screen and (min-width: 1200px) {
  .modal .modal-container .modal-body .col-wrap .text-wrap h3 {
    font-size: 24px;
  }
}
.modal .modal-container .modal-body .col-wrap .text-wrap .text-inner {
  width: 100%;
}
.modal .modal-container .modal-body .col-wrap .text-wrap .text-inner p:last-of-type {
  margin-bottom: 0;
}
.modal .modal-container .modal-body .col-wrap .text-wrap .btn-wrap {
  margin-top: auto;
}
.modal .modal-container .modal-body .col-wrap .text-wrap .btn-wrap .btn {
  margin-top: 1rem;
}
.modal .modal-container .modal-body .two-col {
  -webkit-box-shadow: 0 0 1rem 0 rgb(164.5, 164.5, 164.5);
          box-shadow: 0 0 1rem 0 rgb(164.5, 164.5, 164.5);
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .modal .modal-container .modal-body .two-col {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }
}
.modal .modal-container .modal-body .two-col .col {
  padding: 1rem;
}
.modal .modal-container .modal-body .two-col .col1 {
  background-color: #f4f4f4;
}
@media (min-width: 768px) {
  .modal .modal-container .modal-body .three-col {
    -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 1rem;
  }
}
.modal .modal-container .modal-body .three-col .col {
  -webkit-box-shadow: 0 0 1rem 0 rgb(164.5, 164.5, 164.5);
          box-shadow: 0 0 1rem 0 rgb(164.5, 164.5, 164.5);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.modal .modal-container .modal-body .three-col .col:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .modal .modal-container .modal-body .three-col .col {
    margin-bottom: 0;
  }
}
@media (min-width: 500px) {
  .modal .modal-container .modal-body .four-col {
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 1rem;
  }
}
@media (min-width: 768px) {
  .modal .modal-container .modal-body .four-col {
    -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 1rem;
  }
}
@media (min-width: 1200px) {
  .modal .modal-container .modal-body .four-col {
    -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr 1rem 1fr;
    grid-template-columns: repeat(4, 1fr);
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 1rem;
  }
}
.modal .modal-container .modal-body .four-col .col {
  -webkit-box-shadow: 0 0 1rem 0 rgb(164.5, 164.5, 164.5);
          box-shadow: 0 0 1rem 0 rgb(164.5, 164.5, 164.5);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.modal .modal-container .modal-body .four-col .col:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .modal .modal-container .modal-body .four-col .col {
    margin-bottom: 0;
  }
}

/**
 * TABLES
 */
table.table {
  border-top: 0 none;
  border-left: 0 none;
  border-right: 0 none;
  border-bottom: 1px solid #f4f4f4;
  margin-bottom: 1rem;
}
table.table thead tr th {
  padding: 0.5rem 0.5rem;
  margin: 0;
  border-bottom: 2px solid #f4f4f4;
  text-align: left;
  font-weight: 400;
  text-transform: uppercase;
}
table.table tbody tr td {
  border-bottom: 1px solid #f4f4f4;
  padding: 0.5rem 0.5rem;
  margin: 0;
  vertical-align: top;
}
#main #glide ul {
  margin-left: 0;
}
#main #glide ul li {
  padding-left: 0;
  margin-bottom: 0;
}
#main #glide .glide__track {
  position: relative;
}
#main #glide .glide__track .glide__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#main #glide .glide__track .glide__arrows .glide__arrow {
  border-radius: 1px solid #252525;
  background-color: #ffffff;
  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;
  padding: 6px;
  cursor: pointer;
  position: absolute;
  top: calc(50% - 19px);
}
@media only screen and (min-width: 769px) {
  #main #glide .glide__track .glide__arrows .glide__arrow {
    padding: 10px;
  }
}
#main #glide .glide__track .glide__arrows .glide__arrow.glide__arrow--left {
  left: 0;
}
#main #glide .glide__track .glide__arrows .glide__arrow.glide__arrow--right {
  right: 0;
}
#main #glide .glide__track .glide__arrows .glide__arrow svg {
  width: 12px;
  height: 12px;
}
@media only screen and (min-width: 769px) {
  #main #glide .glide__track .glide__arrows .glide__arrow svg {
    width: 14px;
    height: 14px;
  }
}

.accordion-wrap {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.accordion-wrap .accordion-inner {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.accordion-wrap .accordion-inner:last-of-type {
  border: none;
}
.accordion-wrap .accordion-inner.active .accordion::after {
  right: 29px;
  top: 19px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.accordion-wrap .accordion-inner.active .panel {
  display: block;
}
.accordion-wrap .accordion-inner .accordion {
  background-color: #ffffff;
  cursor: pointer;
  padding: 18px 48px 18px 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-weight: 700;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
}
.accordion-wrap .accordion-inner .accordion .active, .accordion-wrap .accordion-inner .accordion:hover {
  background-color: #ffffff;
}
.accordion-wrap .accordion-inner .accordion::before, .accordion-wrap .accordion-inner .accordion::after {
  content: "";
  position: absolute;
  background-color: #252525;
  top: 29px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.accordion-wrap .accordion-inner .accordion::before {
  width: 20px;
  height: 2px;
  right: 10px;
}
.accordion-wrap .accordion-inner .accordion::after {
  width: 2px;
  height: 20px;
  right: 28px;
}
.accordion-wrap .accordion-inner .panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}
.accordion-wrap .accordion-inner .panel > div:last-of-type {
  margin-bottom: 20px;
}

/**
 * Vars
 */
body.consent-open {
  overflow: hidden;
}

#cookie-consent {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  background-color: #fff;
  color: #000;
  max-height: 620px;
  padding: 2rem;
  -webkit-box-shadow: 0 -1rem 2rem -1rem rgba(0, 0, 0, 0.6);
          box-shadow: 0 -1rem 2rem -1rem rgba(0, 0, 0, 0.6);
}
@media only screen and (min-width: 480px) {
  #cookie-consent {
    left: 0;
  }
}
#cookie-consent {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  opacity: 0;
  -webkit-transition-property: -webkit-transform opacity;
  transition-property: -webkit-transform opacity;
  transition-property: transform opacity;
  transition-property: transform opacity, -webkit-transform opacity;
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
#cookie-consent.in {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
#cookie-consent.out {
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}
#cookie-consent .info h6 {
  margin: 0 0 0.5rem;
  padding: 0;
  font-size: 14px;
  color: #000;
  text-transform: uppercase;
}
#cookie-consent .info p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #000;
}
#cookie-consent .info a {
  color: #000;
  text-decoration: underline;
}
#cookie-consent .manage {
  overflow: hidden;
  max-height: 0;
  -webkit-transition-property: max-height;
  transition-property: max-height;
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
#cookie-consent .manage.is-open {
  overflow: auto;
  max-height: 400px;
}
#cookie-consent .manage .control-group {
  margin: 0;
  padding-top: 1rem;
  padding-left: 0.5rem;
}
#cookie-consent .manage .control-group .control-checkbox {
  width: 100%;
  padding-top: 2px;
}
#cookie-consent .manage .control-group .control-checkbox:not(:last-of-type) {
  margin-bottom: 1rem;
}
#cookie-consent .manage .control-group .text h6 {
  margin: 0 0 3px;
  font-size: 14px;
}
#cookie-consent .manage .control-group .text p {
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
}
#cookie-consent .actions {
  display: block;
  padding: 1rem 0 0;
  margin: 0;
  text-align: center;
}
@media only screen and (min-width: 480px) {
  #cookie-consent .actions {
    text-align: left;
    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;
  }
}
#cookie-consent .actions button {
  border-width: 1px;
  border-style: solid;
  padding: 0 1rem;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 0;
  width: 100%;
  height: 45px;
  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;
}
@media only screen and (min-width: 480px) {
  #cookie-consent .actions button {
    margin-bottom: 0;
    width: auto;
  }
}
#cookie-consent .actions button.btn-accept {
  background-color: #009fe3;
  border-color: #009fe3;
  color: #ffffff;
}
#cookie-consent .actions button.btn-manage {
  background-color: rgba(255, 255, 255, 0);
  border-color: rgba(255, 255, 255, 0);
  color: #000;
  font-size: 14px;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .row-products.three-col {
    -ms-grid-columns: (1fr)[2] !important;
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.row-column-filters {
  max-width: 300px;
  margin: 0 auto 2rem;
}
@media only screen and (min-width: 480px) {
  .row-column-filters {
    max-width: 380px;
    margin-bottom: 0;
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
@media only screen and (min-width: 640px) {
  .row-column-filters {
    max-width: 480px;
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 769px) {
  .row-column-filters {
    max-width: none;
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
@media only screen and (min-width: 992px) {
  .row-column-filters {
    margin-top: 0.5rem;
  }
}
.row-column-filters .spacer {
  margin-top: 1rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}
@media only screen and (min-width: 992px) {
  .row-column-filters .spacer {
    margin-top: 1.25rem;
    margin-bottom: 1rem;
  }
}
.row-column-filters ul {
  margin-left: 0 !important;
}
.row-column-filters ul li {
  padding-left: 0 !important;
}
.row-column-filters ul li:before {
  color: #252525;
}
.row-column-filters a {
  color: #252525;
  text-decoration: none;
  font-size: 14px;
}
.row-column-filters a:hover {
  text-decoration: underline;
}
.row-column-filters .frm-search {
  display: block;
  position: relative;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
}
.row-column-filters .frm-search .control {
  position: relative;
  padding-right: 64px;
  border: 0;
  z-index: 0;
  width: calc(100% - 1px);
  margin-left: 1px;
}
.row-column-filters .frm-search .btn-search {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: 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;
  padding: 0 0.5rem;
  cursor: pointer;
  z-index: 1;
}
.row-column-filters .frm-search .btn-search svg {
  width: 22px;
  height: 22px;
  fill: #252525;
}
.row-column-filters .frm-search .btn-search:hover svg, .row-column-filters .frm-search .btn-search:focus svg {
  fill: #252525;
}
@media only screen and (min-width: 992px) {
  .row-column-filters .frm-search .btn-search {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .row-column-filters .frm-search .btn-search svg {
    width: 28px;
    height: 28px;
  }
}
.row-column-filters .categories {
  margin-left: 16px !important;
}
.row-column-filters .intro {
  color: #41507e;
}

.faq-filter {
  padding: 1rem;
  background: #f6f6f6;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 0.8rem;
}

/**
 * MAIN 
 */
#main {
  position: relative;
  z-index: 1;
  margin-top: 123px;
}
@media only screen and (min-width: 992px) {
  #main {
    margin-top: 143px;
  }
}
#main .row-content {
  line-height: 1.4;
}
#main .row-content.row-pad {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media only screen and (min-width: 992px) {
  #main .row-content.row-pad {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
@media only screen and (min-width: 1200px) {
  #main .row-content.row-pad {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }
}
#main .map-wrap {
  margin-top: 30px;
  position: relative;
}
#main .map-wrap iframe {
  width: 100%;
  height: 400px;
  border: 0;
}
#main {
  /**
   * GENERIC STYLES
   */
}
#main h1, #main h2, #main h3, #main h4, #main h5, #main h6,
#main .h1, #main .h2, #main .h3, #main .h4, #main .h5, #main .h6 {
  color: #252525;
  margin: 0 0 1rem;
  font-weight: 800;
  font-family: "Inter", sans-serif;
  line-height: 1.1;
}
#main h1 small, #main h2 small, #main h3 small, #main h4 small, #main h5 small, #main h6 small,
#main .h1 small, #main .h2 small, #main .h3 small, #main .h4 small, #main .h5 small, #main .h6 small {
  color: #f4f4f4;
  font-weight: 700;
  font-size: 65%;
  display: block;
}
#main h1, #main .h1 {
  color: #252525;
  font-size: 1.5em;
}
@media only screen and (min-width: 992px) {
  #main h1, #main .h1 {
    font-size: 2em;
  }
}
#main h2, #main .h2 {
  font-size: 1.75em;
}
#main h3, #main .h3 {
  font-size: 1.625em;
}
#main h4, #main .h4 {
  font-size: 1.5em;
}
#main h5, #main .h5,
#main h6, #main .h6 {
  font-size: 1.375em;
}
#main p {
  margin: 0 0 1rem;
}
#main a:not(.btn) {
  color: #252525;
  text-decoration: none;
}
#main a:not(.btn):hover {
  text-decoration: underline;
}
#main .intro {
  font-size: 1.375em;
  line-height: 1.3;
  font-weight: 600;
}
#main .intro.light {
  font-family: "Inter", sans-serif;
  font-weight: 300 !important;
}
#main .intro.small {
  font-size: 1.125em;
}
@media only screen and (min-width: 640px) {
  #main .intro.small {
    font-size: 1em;
  }
}
@media only screen and (min-width: 640px) {
  #main .intro {
    font-size: 1.125em;
  }
}
#main ul {
  margin-left: 14px;
  padding-left: 0;
}
#main ul li {
  position: relative;
  padding-left: 0;
  margin-bottom: 5px;
}
#main ul li:before {
  font-size: 24px;
  line-height: 0;
  position: absolute;
  top: 8px;
  left: 0;
}
#main ul.list-alpha {
  list-style-type: lower-alpha;
  margin: 0 0 15px;
}
#main ul.list-alpha li {
  list-style-type: lower-alpha;
  margin-left: 20px;
  padding-left: 0;
}
#main ul.list-alpha li:before {
  display: none;
}
#main ul.list-spaced {
  margin: 0;
  padding: 0;
  list-style: none;
}
#main ul.list-spaced li {
  padding: 0 0 0 80px;
  margin: 0 0 3px;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 576px) {
  #main ul.list-spaced li {
    padding-left: 0;
  }
}
#main ul.list-spaced li:before {
  display: none;
}
#main ul.list-spaced li span:first-of-type {
  display: inline-block;
  width: 80px;
  margin-left: -80px;
  float: left;
}
@media only screen and (min-width: 576px) {
  #main ul.list-spaced li span:first-of-type {
    width: 100%;
    margin-left: 0;
    float: none;
  }
}
#main ul.list-spaced li .width-full {
  width: 100% !important;
}
#main ul.list-spaced.ls-thin li {
  padding-left: 100px;
}
#main ul.list-spaced.ls-thin li span:first-of-type {
  width: 100px;
  margin-left: -100px;
}
#main ul.list-spaced.ls-wide li {
  padding-left: 1rem;
}
@media only screen and (min-width: 640px) {
  #main ul.list-spaced.ls-wide li {
    padding-left: 180px;
  }
}
@media only screen and (min-width: 992px) {
  #main ul.list-spaced.ls-wide li {
    padding-left: 250px;
  }
}
#main ul.list-spaced.ls-wide li span:first-of-type {
  width: 100%;
  display: block;
  float: none;
  margin-left: -1rem;
}
@media only screen and (min-width: 640px) {
  #main ul.list-spaced.ls-wide li span:first-of-type {
    float: left;
    width: 165px;
    margin-left: -180px;
  }
}
@media only screen and (min-width: 992px) {
  #main ul.list-spaced.ls-wide li span:first-of-type {
    width: 235px;
    margin-left: -250px;
  }
}
#main ul.list-spaced.ls-right li span:first-of-type {
  text-align: right;
}
@media only screen and (max-width: 639px) {
  #main ul.list-spaced.ls-right li span:first-of-type {
    text-align: left;
  }
}
#main .red {
  color: #FE0000 !important;
}
#main .img-right {
  background-color: #f4f4f4;
  border-radius: 8px;
  padding: 1rem;
  max-width: 500px;
  margin: 1rem auto 1rem auto;
}
@media only screen and (min-width: 992px) {
  #main .img-right {
    float: right;
    margin-left: 1rem;
  }
}
#main .img-right p {
  margin-top: 0.5rem;
  margin-bottom: 0;
  text-align: center;
}
#main .page_frm_wrap {
  -webkit-box-shadow: 0 0 1rem 0 rgb(164.5, 164.5, 164.5);
          box-shadow: 0 0 1rem 0 rgb(164.5, 164.5, 164.5);
  padding: 1rem;
  border-radius: 8px;
  background-color: #ffffff;
}
@media only screen and (min-width: 769px) {
  #main .page_frm_wrap {
    padding: 2rem;
  }
}
@media only screen and (min-width: 769px) {
  #main .page_frm_wrap #frm-enquiry .frm-inner {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
  }
}
@media only screen and (min-width: 769px) {
  #main .page_frm_wrap #frm-enquiry .frm-inner #enquiry {
    min-height: 196px !important;
  }
}
@media only screen and (min-width: 1080px) {
  #main .page_frm_wrap #frm-enquiry .frm-inner #enquiry {
    min-height: 226px !important;
  }
}
#main .col-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr; /* two equal columns */
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
#main .col-wrap img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#main .col-wrap .text-wrap {
  padding: 1rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#main .col-wrap .text-wrap h3 {
  font-size: 20px;
}
@media only screen and (min-width: 1200px) {
  #main .col-wrap .text-wrap h3 {
    font-size: 24px;
  }
}
#main .col-wrap .text-wrap .text-inner {
  width: 100%;
}
#main .col-wrap .text-wrap .text-inner p:last-of-type {
  margin-bottom: 0;
}
#main .col-wrap .text-wrap .btn-wrap {
  margin-top: auto;
}
#main .col-wrap .text-wrap .btn-wrap .btn {
  margin-top: 1rem;
}
#main .two-col {
  -webkit-box-shadow: 0 0 1rem 0 rgb(164.5, 164.5, 164.5);
          box-shadow: 0 0 1rem 0 rgb(164.5, 164.5, 164.5);
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  #main .two-col {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }
}
#main .two-col .col {
  padding: 1rem;
}
#main .two-col .col1 {
  background-color: #f4f4f4;
}
@media (min-width: 768px) {
  #main .three-col {
    -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 1rem;
  }
}
#main .three-col .col {
  -webkit-box-shadow: 0 0 1rem 0 rgb(164.5, 164.5, 164.5);
          box-shadow: 0 0 1rem 0 rgb(164.5, 164.5, 164.5);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#main .three-col .col:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  #main .three-col .col {
    margin-bottom: 0;
  }
}
@media (min-width: 500px) {
  #main .four-col {
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 1rem;
  }
}
@media (min-width: 768px) {
  #main .four-col {
    -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 1rem;
  }
}
@media (min-width: 1200px) {
  #main .four-col {
    -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr 1rem 1fr;
    grid-template-columns: repeat(4, 1fr);
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 1rem;
  }
}
#main .four-col .col {
  -webkit-box-shadow: 0 0 1rem 0 rgb(164.5, 164.5, 164.5);
          box-shadow: 0 0 1rem 0 rgb(164.5, 164.5, 164.5);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#main .four-col .col:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  #main .four-col .col {
    margin-bottom: 0;
  }
}
#main {
  /**
   * PARTIALS
   * Usually used on row-content, but does not warrant its own scss file
   */
}
#main .row-heading {
  background-color: #1B2A34;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
#main .row-heading h1 {
  color: #ffffff;
  margin-bottom: 0;
}
#main .row-heading .sub-title {
  color: #ffffff;
}
#main .testimonials-wrap .testimonials-inner {
  -webkit-box-shadow: 0 0 1rem 0 rgb(164.5, 164.5, 164.5);
          box-shadow: 0 0 1rem 0 rgb(164.5, 164.5, 164.5);
  background-color: #EAEAEA;
  padding: 1rem;
  max-width: 80%;
  margin: 1rem auto;
  border-radius: 8px;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  #main .testimonials-wrap .testimonials-inner {
    padding: 2rem;
  }
}
#main .testimonials-wrap .testimonials-inner .desc {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
#main .testimonials-wrap .testimonials-inner .testimonial_parts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (min-width: 640px) {
  #main .testimonials-wrap .testimonials-inner .testimonial_parts {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#main .testimonials-wrap .testimonials-inner .testimonial_parts .text-wrap {
  width: 100%;
}
@media only screen and (min-width: 640px) {
  #main .testimonials-wrap .testimonials-inner .testimonial_parts .text-wrap {
    width: auto;
    margin-right: 8px;
  }
}
#main .testimonials-wrap .testimonials-inner .testimonial_parts .text-wrap p strong {
  font-weight: 700 !important;
}
#main .testimonials-wrap .testimonials-inner .testimonial_parts .img-wrap {
  width: 100%;
}
@media only screen and (min-width: 640px) {
  #main .testimonials-wrap .testimonials-inner .testimonial_parts .img-wrap {
    width: auto;
    margin-left: 8px;
  }
}
#main .testimonials-wrap .testimonials-inner .testimonial_parts .img-wrap img {
  width: 100%;
  max-width: 40px;
  border-radius: 50%;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 640px) {
  #main .testimonials-wrap .testimonials-inner .testimonial_parts .img-wrap img {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) {
  #main .row-products-article .img-wrap-col,
  #main .row-machinery-article .img-wrap-col {
    padding-right: 0;
  }
}
#main .row-products-article .thumbnail-img,
#main .row-machinery-article .thumbnail-img {
  margin: auto;
  margin-bottom: 1rem;
}
#main .frm-capabilities {
  background-color: #009C70;
}
#main .frm-capabilities h2, #main .frm-capabilities p, #main .frm-capabilities a, #main .frm-capabilities label {
  color: #ffffff;
}
#main .frm-capabilities .btn {
  background-color: #252525;
}
#main .img-wrap {
  position: relative;
}
#main .img-wrap img {
  width: 100%;
}
#main .img-wrap .sold {
  background-color: #FE0000;
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #ffffff;
  padding: 0.5rem;
  border-radius: 8px;
  font-weight: 700;
}
#main .row-machinery-article table {
  max-width: 400px;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 16px;
}
#main .row-machinery-article table tr td {
  border-bottom: 2px solid rgb(215.5, 215.5, 215.5);
  padding-top: 10px;
  padding-bottom: 10px;
}
#main #cta-form,
#main #cta-form-subscribe {
  scroll-margin-top: 130px;
}
#main .video-overlay-wrap {
  position: relative;
}
#main .video-overlay-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
#main .video-overlay-wrap::after {
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -24px;
  margin-left: -24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48' fill='%23fff' viewBox='0 0 48 48'%3E%3Cpath d='M16 37.85v-28l22 14Zm3-14Zm0 8.55 13.45-8.55L19 15.3Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
}
#main .row-news img {
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
#main .row-news .txt {
  padding: 1rem;
}
#main .row-news .txt .date {
  font-size: 14px;
}
#main .row-news .txt h3 {
  font-size: 18px;
}
@media only screen and (min-width: 640px) {
  #main .row-news-article {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: repeat(2, 1fr); /* two equal columns */
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 1rem;
  }
}
@media only screen and (min-width: 992px) {
  #main .row-news-article {
    -ms-grid-columns: 1fr 2fr;
    grid-template-columns: 1fr 2fr;
  }
}
#main .row-news-article .article-img {
  margin-bottom: 1rem;
}
#main {
  /**
   * BANNER
   */
}
#main .row-banner {
  height: 450px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1rem 0;
}
@media only screen and (min-width: 769px) {
  #main .row-banner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
#main .row-banner .banner-inner {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1rem;
  width: 100%;
  border-radius: 8px;
}
@media only screen and (min-width: 769px) {
  #main .row-banner .banner-inner {
    max-width: 560px;
  }
}
#main .row-banner .banner-inner .red {
  color: #FE0000;
}
#main {
  /**
   * BREADCRUMBS
   */
}
#main .row-breadcrumbs {
  padding: 1rem 0 1rem;
  margin: 0;
  font-size: 0.875em;
  border-top: none;
  font-size: 0.75em;
  background-color: #f4f4f4;
}
@media only screen and (min-width: 640px) {
  #main .row-breadcrumbs {
    font-size: 0.875em;
  }
}
#main .row-breadcrumbs ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
#main .row-breadcrumbs ul li {
  padding: 0;
  margin: 0;
  display: inline;
  list-style: none;
}
#main .row-breadcrumbs ul li a {
  color: #252525;
  font-weight: 300;
  text-decoration: none;
}
#main .row-breadcrumbs ul li a:hover {
  text-decoration: underline;
}
#main .row-breadcrumbs ul li:before {
  display: none;
}
#main .row-breadcrumbs ul li:after {
  content: ">";
  margin: 0;
  padding: 0 6px;
}
#main .row-breadcrumbs ul li:first-of-type:before {
  display: none;
  content: "»";
  margin: 0;
  padding: 0 6px 0 0;
}
#main .row-breadcrumbs ul li:last-of-type:after {
  content: "";
  display: none;
}
#main .row-breadcrumbs ul li:last-of-type a {
  font-weight: 600;
  color: #FE0000;
}
#main {
  /**
   * PAGER
   */
}
#main .row-pager {
  padding: 0;
  margin: 0;
}
#main .row-pager .pager {
  margin: 15px 0;
  padding: 0;
  overflow: hidden;
  text-align: center;
}
#main .row-pager .pager .pagination {
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
@media only screen and (min-width: 640px) {
  #main .row-pager .pager .pagination {
    display: inline-block;
  }
}
#main .row-pager .pager .pagination li {
  display: none;
  padding: 0;
  margin: 0;
  line-height: 1;
  float: left;
}
@media only screen and (min-width: 640px) {
  #main .row-pager .pager .pagination li {
    display: block;
  }
}
#main .row-pager .pager .pagination li:before {
  content: "";
  display: none !important;
}
#main .row-pager .pager .pagination li:first-of-type a, #main .row-pager .pager .pagination li:first-of-type span {
  border-left: 1px solid rgb(214.2, 214.2, 214.2);
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
#main .row-pager .pager .pagination li:last-of-type a, #main .row-pager .pager .pagination li:last-of-type span {
  border-right: 1px solid rgb(214.2, 214.2, 214.2);
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
#main .row-pager .pager .pagination li a, #main .row-pager .pager .pagination li span {
  display: block;
  padding: 1rem;
  color: #252525;
  background: #ffffff;
  border-top: 1px solid rgb(214.2, 214.2, 214.2);
  border-bottom: 1px solid rgb(214.2, 214.2, 214.2);
  border-right: 1px solid rgb(214.2, 214.2, 214.2);
}
#main .row-pager .pager .pagination li a:hover, #main .row-pager .pager .pagination li a:focus {
  color: #252525;
  background: rgb(244.8, 244.8, 244.8);
  text-decoration: none !important;
}
#main .row-pager .pager .pagination li.dir {
  display: block;
}
@media only screen and (min-width: 640px) {
  #main .row-pager .pager .pagination li.dir {
    display: inline-block;
  }
}
#main .row-pager .pager .pagination li.dir a {
  border-radius: 8px !important;
  border: 1px solid rgb(214.2, 214.2, 214.2);
}
@media only screen and (min-width: 640px) {
  #main .row-pager .pager .pagination li.dir a {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media only screen and (min-width: 640px) {
  #main .row-pager .pager .pagination li.dir.prev a {
    border-radius: 8px 0 0 8px !important;
  }
}
@media only screen and (max-width: 639px) {
  #main .row-pager .pager .pagination li.dir.prev {
    float: left;
  }
  #main .row-pager .pager .pagination li.dir.prev a:after {
    content: "prev";
    text-transform: uppercase;
    margin: 0 3px 0 5px;
    float: right;
  }
}
@media only screen and (min-width: 640px) {
  #main .row-pager .pager .pagination li.dir.next a {
    border-radius: 0 8px 8px 0 !important;
    border-left-width: 0 !important;
  }
}
@media only screen and (max-width: 639px) {
  #main .row-pager .pager .pagination li.dir.next {
    float: right;
  }
  #main .row-pager .pager .pagination li.dir.next a:before {
    content: "next";
    text-transform: uppercase;
    margin: 0 5px 0 3px;
    float: left;
  }
}
#main .row-pager .pager .pagination li.active span {
  color: #252525;
  background: #ffffff;
  font-weight: 800;
}
#main .row-pager .pager.pager-wide .pagination {
  display: block;
}
#main .row-pager .pager.pager-wide .pagination li {
  display: none;
  float: none;
}
@media only screen and (min-width: 640px) {
  #main .row-pager .pager.pager-wide .pagination li {
    display: inline-block;
  }
}
#main .row-pager .pager.pager-wide .pagination li a, #main .row-pager .pager.pager-wide .pagination li span {
  border: 0 none;
  padding: 1rem 0.5rem;
}
@media only screen and (max-width: 639px) {
  #main .row-pager .pager.pager-wide .pagination li.dir {
    display: block;
  }
}
#main .row-pager .pager.pager-wide .pagination li.dir a {
  border-radius: 0;
}
#main .row-pager .pager.pager-wide .pagination li.dir.prev {
  float: left;
}
#main .row-pager .pager.pager-wide .pagination li.dir.prev a:after {
  content: "prev";
  text-transform: uppercase;
  float: right;
  margin: 0 3px 0 6px;
}
#main .row-pager .pager.pager-wide .pagination li.dir.next {
  float: right;
}
#main .row-pager .pager.pager-wide .pagination li.dir.next a:before {
  content: "next";
  text-transform: uppercase;
  float: left;
  margin: 0 6px 0 3px;
}

/**
 * GENERIC 
 */
.white {
  color: #ffffff !important;
}

.h-white:hover {
  color: #ffffff !important;
}

.bg-white {
  background-color: #ffffff !important;
  color: #252525 !important;
}
.bg-white h1, .bg-white h2, .bg-white h3, .bg-white h4, .bg-white h5, .bg-white h6,
.bg-white .h1, .bg-white .h2, .bg-white .h3, .bg-white .h4, .bg-white .h5, .bg-white .h6 {
  color: #252525 !important;
}

.hr.hr-white {
  border-color: #ffffff !important;
}

.bdr.bdr-white, .bdr-top.bdr-white, .bdr-bottom.bdr-white, .bdr-left.bdr-white, .bdr-right.bdr-white {
  border-color: #ffffff;
}

.table.table-white > thead > tr > th, .table.table-white > tbody > tr > th, .table.table-white > tfoot > tr > th,
.table.table-white > thead > tr > td, .table.table-white > tbody > tr > td, .table.table-white > tfoot > tr > td {
  border-color: #ffffff !important;
}
.table.table-white.table-bordered {
  border-color: #ffffff !important;
}

.black {
  color: #252525 !important;
}

.h-black:hover {
  color: #252525 !important;
}

.bg-black {
  background-color: #252525 !important;
  color: #ffffff !important;
}
.bg-black h1, .bg-black h2, .bg-black h3, .bg-black h4, .bg-black h5, .bg-black h6,
.bg-black .h1, .bg-black .h2, .bg-black .h3, .bg-black .h4, .bg-black .h5, .bg-black .h6 {
  color: #ffffff !important;
}

.hr.hr-black {
  border-color: #252525 !important;
}

.bdr.bdr-black, .bdr-top.bdr-black, .bdr-bottom.bdr-black, .bdr-left.bdr-black, .bdr-right.bdr-black {
  border-color: #252525;
}

.table.table-black > thead > tr > th, .table.table-black > tbody > tr > th, .table.table-black > tfoot > tr > th,
.table.table-black > thead > tr > td, .table.table-black > tbody > tr > td, .table.table-black > tfoot > tr > td {
  border-color: #252525 !important;
}
.table.table-black.table-bordered {
  border-color: #252525 !important;
}

.light {
  color: #f4f4f4 !important;
}

.h-light:hover {
  color: #f4f4f4 !important;
}

.bg-light {
  background-color: #f4f4f4 !important;
  color: #252525 !important;
}
.bg-light h1, .bg-light h2, .bg-light h3, .bg-light h4, .bg-light h5, .bg-light h6,
.bg-light .h1, .bg-light .h2, .bg-light .h3, .bg-light .h4, .bg-light .h5, .bg-light .h6 {
  color: #252525 !important;
}

.hr.hr-light {
  border-color: #f4f4f4 !important;
}

.bdr.bdr-light, .bdr-top.bdr-light, .bdr-bottom.bdr-light, .bdr-left.bdr-light, .bdr-right.bdr-light {
  border-color: #f4f4f4;
}

.table.table-light > thead > tr > th, .table.table-light > tbody > tr > th, .table.table-light > tfoot > tr > th,
.table.table-light > thead > tr > td, .table.table-light > tbody > tr > td, .table.table-light > tfoot > tr > td {
  border-color: #f4f4f4 !important;
}
.table.table-light.table-bordered {
  border-color: #f4f4f4 !important;
}

.bold, strong {
  font-weight: 600 !important;
}

.light {
  font-weight: 300 !important;
}

.medium {
  font-weight: 600 !important;
}

.hr {
  border: 0 none;
  border-top: 1px solid #f4f4f4;
}

.height-auto {
  height: auto !important;
  max-height: none !important;
  min-height: 0 !important;
}

.line-height-auto {
  line-height: 1 !important;
}

.iframe {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}
.iframe.aspect-16-9 {
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}
.iframe.aspect-4-3 {
  padding-top: 75%; /* 4:3 Aspect Ratio */
}
.iframe.aspect-3-2 {
  padding-top: 66.66%; /* 3:2 Aspect Ratio */
}
.iframe.aspect-8-5 {
  padding-top: 62.5%; /* 8:5 Aspect Ratio */
}
.iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */
.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  --pswp-root-z-index: 100000;
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;
  --pswp-error-text-color: var(--pswp-icon-color);
}

/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/
.pswp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--pswp-root-z-index);
  display: none;
  -ms-touch-action: none;
      touch-action: none;
  outline: 0;
  opacity: 0.003;
  contain: layout style size;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

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

.pswp img {
  max-width: none;
}

.pswp--open {
  display: block;
}

.pswp,
.pswp__bg {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
  background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
  overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
  width: auto;
  height: auto;
}

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

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pswp__item {
  /* z-index for fade transition */
  z-index: 1;
  overflow: hidden;
}

.pswp__hidden {
  display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}

.pswp__content > * {
  pointer-events: auto;
}

/*

  PhotoSwipe UI

*/
/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: -ms-grid;
  display: grid;
}

.pswp__error-msg {
  margin: auto;
  font-size: 1em;
  line-height: 1;
  color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
  opacity: 0.005;
  will-change: opacity;
  -webkit-transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
  z-index: 10; /* always overlap slide content */
  pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
  opacity: 1;
  pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
  position: relative;
  display: block;
  width: 50px;
  height: 60px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  background: none;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: 0.85;
  -webkit-appearance: none;
  -webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  -webkit-transition: none;
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
  outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
  background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 10;
  /* allow events to pass through top bar itself */
  pointer-events: none !important;
}

.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}

/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}

/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

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

.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

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

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}

/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  -webkit-animation: pswp-clockwise 600ms linear infinite;
          animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@-webkit-keyframes pswp-clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes pswp-clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  -webkit-margin-start: 20px;
          margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}

.glide {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.glide * {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -ms-touch-action: pan-Y;
      touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  white-space: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  -webkit-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.glide--rtl {
  direction: rtl;
}