@charset "UTF-8";
/* ==========================================================================
   PSDGator SCSS Styles [VARIABLES]
   Theme Settings
   ========================================================================== */
/* ========================================================== */
/* 			            01. general                               */
/* ========================================================== */
/* ========================================================== */
/* 			            02. grid                                  */
/* ========================================================== */
/* We can have extra column sizes */
/* ========================================================== */
/* 			            03. utils                                 */
/* ========================================================== */
/* ========================================================== */
/* 			            04. breakpoints                           */
/* ========================================================== */
/* ========================================================== */
/* 			            05. css variables                         */
/* ========================================================== */
:root {
  /* html|body */
  --main-font-family: "Commissioner", sans-serif;
  --main-font-size: 16px;
  --main-font-color: #1D276C;
  --body-background: #f2f3f5;
  --hover-color: #0056b3;
  /* layout */
  --container-width: 1400px;
  --container-pad: 24px;
  /*--> Place custom settings here <--*/
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media only screen and (max-width: 500px) {
  :root {
    --container-pad: 20px;
  }
}
/* ==========================================================================
   PSDGator SCSS FUNCTIONS [TYPES]

   A collection of function for advanced type checking
   ========================================================================== */
/* ==========================================================================
   PSDGator SCSS FUNCTIONS [INTERNAL]
   ========================================================================== */
/**
 * Replaces substring on a string variable
 */
/**
 * Splits a string with a specific separator
 */
/* ==========================================================================
   PSDGator SCSS FUNCTIONS [UNITS]
   ========================================================================== */
/**
 * Removes unit from value
 */
/**
 * Adds unit to a unitless value
 */
/**
 * Converts to rem values
 */
/**
 * Converts to vw values
 */
/* ==========================================================================
   PSDGator SCSS MIXINS [VARIOUS]
   ========================================================================== */
/**
 * Set placeholder color to inputs
 * Usage:
 * element{
 *   @placeholder-color(#cccccc)
 * }
 */
/**
 * Gives size to an element
 * Usage:
 * @include box(150, 450);
 */
/**
 * Truncates the text
 * Usage:
 * @include ellipsis-text();
 */
/**
 * Support for retina background images
 */
/**
 * CSS Opacity with fallback for IE8+.
 * Usage:
 * .opacity-box { @include opacity(.4); }
 */
/**
 * Implementing font-size with rem units and pixel fallback.
 */
/**
 * Adds a cover background to an element
 * Usage:
 * div {
 *   background-image: url("banner.jpg");
 *   @include cover-background;
 * }
 */
/**
 * A quick placeholder maker (with custom size/colors/text)
 * Uses: https://placeholder.com/
 * Usage:
 * .thumb {
 *   @include placeholder-image(400, 200);
 *   width: 400px;
 *   height: 200px;
 * }
 */
/**
 * Centering Elements
 * A mixin for absolute centering an element in its parent..
 */
/**
 * Hide Text
 * A mixin to visually hide text (for screen readers).
 */
/**
 * A mixin for defining CSS position properties.
 *
 */
/**
 * Flex properties
 * A mixin for common flex properties.
 */
/**
 * Prefixer
 * In case that PostCSS unable to do it,
 * add vendor prefixes to any CSS property.
 */
/**
 * FONT-FACE RULE
 * Auto creation of @font-face rule for custom fonts
 */
/**
 * Triangle Arrow with 4 optional directions
 * Create an arrow
 */
/**
 * Background Gradient
 * A simple SASS mixin to implement CSS linear gradients
 */
/**
 * More Generic Placeholder Styles
 * Usage:
 * element{
 *   @include placeholder {
 *   color: #cccccc;
 *   font-size: 16px;
 *   font-weight: 400;
 * }
 */
/* ==========================================================================
   PSDGator SCSS Styles [UTILITIES]

   A tiny utility-first CSS "framework"
   ========================================================================== */
.text-center {
  text-align: center;
}

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

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

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-visible {
  overflow: visible;
}

.position-static {
  position: static;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.d-block {
  display: block;
}

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

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

.d-none {
  display: none;
}

@media screen and (max-width: 1366px) {
  .text-xl-center {
    text-align: center;
  }
  .text-xl-left {
    text-align: left;
  }
  .text-xl-right {
    text-align: right;
  }
  .float-xl-left {
    float: left;
  }
  .float-xl-right {
    float: right;
  }
  .overflow-xl-hidden {
    overflow: hidden;
  }
  .overflow-xl-visible {
    overflow: visible;
  }
  .position-xl-static {
    position: static;
  }
  .position-xl-relative {
    position: relative;
  }
  .position-xl-absolute {
    position: absolute;
  }
  .d-xl-block {
    display: block;
  }
  .d-xl-inline-block {
    display: inline-block;
  }
  .d-xl-flex {
    display: flex;
  }
  .d-xl-inline-flex {
    display: inline-flex;
  }
  .d-xl-none {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .text-lg-center {
    text-align: center;
  }
  .text-lg-left {
    text-align: left;
  }
  .text-lg-right {
    text-align: right;
  }
  .float-lg-left {
    float: left;
  }
  .float-lg-right {
    float: right;
  }
  .overflow-lg-hidden {
    overflow: hidden;
  }
  .overflow-lg-visible {
    overflow: visible;
  }
  .position-lg-static {
    position: static;
  }
  .position-lg-relative {
    position: relative;
  }
  .position-lg-absolute {
    position: absolute;
  }
  .d-lg-block {
    display: block;
  }
  .d-lg-inline-block {
    display: inline-block;
  }
  .d-lg-flex {
    display: flex;
  }
  .d-lg-inline-flex {
    display: inline-flex;
  }
  .d-lg-none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .text-md-center {
    text-align: center;
  }
  .text-md-left {
    text-align: left;
  }
  .text-md-right {
    text-align: right;
  }
  .float-md-left {
    float: left;
  }
  .float-md-right {
    float: right;
  }
  .overflow-md-hidden {
    overflow: hidden;
  }
  .overflow-md-visible {
    overflow: visible;
  }
  .position-md-static {
    position: static;
  }
  .position-md-relative {
    position: relative;
  }
  .position-md-absolute {
    position: absolute;
  }
  .d-md-block {
    display: block;
  }
  .d-md-inline-block {
    display: inline-block;
  }
  .d-md-flex {
    display: flex;
  }
  .d-md-inline-flex {
    display: inline-flex;
  }
  .d-md-none {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .text-sm-center {
    text-align: center;
  }
  .text-sm-left {
    text-align: left;
  }
  .text-sm-right {
    text-align: right;
  }
  .float-sm-left {
    float: left;
  }
  .float-sm-right {
    float: right;
  }
  .overflow-sm-hidden {
    overflow: hidden;
  }
  .overflow-sm-visible {
    overflow: visible;
  }
  .position-sm-static {
    position: static;
  }
  .position-sm-relative {
    position: relative;
  }
  .position-sm-absolute {
    position: absolute;
  }
  .d-sm-block {
    display: block;
  }
  .d-sm-inline-block {
    display: inline-block;
  }
  .d-sm-flex {
    display: flex;
  }
  .d-sm-inline-flex {
    display: inline-flex;
  }
  .d-sm-none {
    display: none;
  }
}
/* ==========================================================================
   PSDGator SCSS Styles [GRID]
   ========================================================================== */
.row {
  display: flex;
  flex-wrap: wrap;
}
.row--hcenter {
  justify-content: center;
}
.row--vcenter {
  align-items: center;
}

/**
 * A small hack so we don't have to include max-width
 * with the appropriate percentage everywhere (less file size)
 *
 * Generally it works but it seems to fail when a col is
 * alone in its row (it will expand to 100%)
 */
/**
 * Builders
 */
/**
 * Generate everything
 */
.col {
  flex: 1;
  max-width: 100%;
}

.col-auto {
  flex: auto;
  max-width: 100%;
  width: auto;
}

/* Generate all column/offset classes */
.col-1 {
  flex: 8.3333333333%;
  max-width: 8.3333333333%;
}

.off-1 {
  margin-left: 8.3333333333%;
}

.col-2 {
  flex: 16.6666666667%;
  max-width: 16.6666666667%;
}

.off-2 {
  margin-left: 16.6666666667%;
}

.col-3 {
  flex: 25%;
  max-width: 25%;
}

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

.col-4 {
  flex: 33.3333333333%;
  max-width: 33.3333333333%;
}

.off-4 {
  margin-left: 33.3333333333%;
}

.col-5 {
  flex: 41.6666666667%;
  max-width: 41.6666666667%;
}

.off-5 {
  margin-left: 41.6666666667%;
}

.col-6 {
  flex: 50%;
  max-width: 50%;
}

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

.col-7 {
  flex: 58.3333333333%;
  max-width: 58.3333333333%;
}

.off-7 {
  margin-left: 58.3333333333%;
}

.col-8 {
  flex: 66.6666666667%;
  max-width: 66.6666666667%;
}

.off-8 {
  margin-left: 66.6666666667%;
}

.col-9 {
  flex: 75%;
  max-width: 75%;
}

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

.col-10 {
  flex: 83.3333333333%;
  max-width: 83.3333333333%;
}

.off-10 {
  margin-left: 83.3333333333%;
}

.col-11 {
  flex: 91.6666666667%;
  max-width: 91.6666666667%;
}

.off-11 {
  margin-left: 91.6666666667%;
}

.col-12 {
  flex: 100%;
  max-width: 100%;
}

.off-12 {
  margin-left: 100%;
}

/* Generate the extra classes */
.col-20 {
  flex: 20%;
  max-width: 20%;
}

/* Generate all gap classes */
.gap-0,
.gap-0-x {
  margin-left: 0;
}
.gap-0 > *,
.gap-0-x > * {
  padding-left: 0;
}

.gap-0,
.gap-0-y {
  margin-top: 0;
}
.gap-0 > *,
.gap-0-y > * {
  padding-top: 0;
}

.gap-12,
.gap-12-x {
  margin-left: -12px;
}
.gap-12 > *,
.gap-12-x > * {
  padding-left: 12px;
}

.gap-12,
.gap-12-y {
  margin-top: -12px;
}
.gap-12 > *,
.gap-12-y > * {
  padding-top: 12px;
}

.gap-24,
.gap-24-x {
  margin-left: -24px;
}
.gap-24 > *,
.gap-24-x > * {
  padding-left: 24px;
}

.gap-24,
.gap-24-y {
  margin-top: -24px;
}
.gap-24 > *,
.gap-24-y > * {
  padding-top: 24px;
}

.gap-50,
.gap-50-x {
  margin-left: -50px;
}
.gap-50 > *,
.gap-50-x > * {
  padding-left: 50px;
}

.gap-50,
.gap-50-y {
  margin-top: -50px;
}
.gap-50 > *,
.gap-50-y > * {
  padding-top: 50px;
}

/* Generate all responsive steps */
@media screen and (max-width: 1366px) {
  .col-xl {
    flex: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: auto;
    max-width: 100%;
    width: auto;
  }
  /* Generate all column/offset classes */
  .col-xl-1 {
    flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .off-xl-1 {
    margin-left: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .off-xl-2 {
    margin-left: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 25%;
    max-width: 25%;
  }
  .off-xl-3 {
    margin-left: 25%;
  }
  .col-xl-4 {
    flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .off-xl-4 {
    margin-left: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .off-xl-5 {
    margin-left: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 50%;
    max-width: 50%;
  }
  .off-xl-6 {
    margin-left: 50%;
  }
  .col-xl-7 {
    flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .off-xl-7 {
    margin-left: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .off-xl-8 {
    margin-left: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 75%;
    max-width: 75%;
  }
  .off-xl-9 {
    margin-left: 75%;
  }
  .col-xl-10 {
    flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .off-xl-10 {
    margin-left: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .off-xl-11 {
    margin-left: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 100%;
    max-width: 100%;
  }
  .off-xl-12 {
    margin-left: 100%;
  }
  /* Generate the extra classes */
  .col-xl-20 {
    flex: 20%;
    max-width: 20%;
  }
  /* Generate all gap classes */
  .gap-xl-0,
  .gap-xl-0-x {
    margin-left: 0;
  }
  .gap-xl-0 > *,
  .gap-xl-0-x > * {
    padding-left: 0;
  }
  .gap-xl-0,
  .gap-xl-0-y {
    margin-top: 0;
  }
  .gap-xl-0 > *,
  .gap-xl-0-y > * {
    padding-top: 0;
  }
  .gap-xl-12,
  .gap-xl-12-x {
    margin-left: -12px;
  }
  .gap-xl-12 > *,
  .gap-xl-12-x > * {
    padding-left: 12px;
  }
  .gap-xl-12,
  .gap-xl-12-y {
    margin-top: -12px;
  }
  .gap-xl-12 > *,
  .gap-xl-12-y > * {
    padding-top: 12px;
  }
  .gap-xl-24,
  .gap-xl-24-x {
    margin-left: -24px;
  }
  .gap-xl-24 > *,
  .gap-xl-24-x > * {
    padding-left: 24px;
  }
  .gap-xl-24,
  .gap-xl-24-y {
    margin-top: -24px;
  }
  .gap-xl-24 > *,
  .gap-xl-24-y > * {
    padding-top: 24px;
  }
  .gap-xl-50,
  .gap-xl-50-x {
    margin-left: -50px;
  }
  .gap-xl-50 > *,
  .gap-xl-50-x > * {
    padding-left: 50px;
  }
  .gap-xl-50,
  .gap-xl-50-y {
    margin-top: -50px;
  }
  .gap-xl-50 > *,
  .gap-xl-50-y > * {
    padding-top: 50px;
  }
  .reset-xl {
    margin-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .col-lg {
    flex: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: auto;
    max-width: 100%;
    width: auto;
  }
  /* Generate all column/offset classes */
  .col-lg-1 {
    flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .off-lg-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .off-lg-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 25%;
    max-width: 25%;
  }
  .off-lg-3 {
    margin-left: 25%;
  }
  .col-lg-4 {
    flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .off-lg-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .off-lg-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 50%;
    max-width: 50%;
  }
  .off-lg-6 {
    margin-left: 50%;
  }
  .col-lg-7 {
    flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .off-lg-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .off-lg-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 75%;
    max-width: 75%;
  }
  .off-lg-9 {
    margin-left: 75%;
  }
  .col-lg-10 {
    flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .off-lg-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .off-lg-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 100%;
    max-width: 100%;
  }
  .off-lg-12 {
    margin-left: 100%;
  }
  /* Generate the extra classes */
  .col-lg-20 {
    flex: 20%;
    max-width: 20%;
  }
  /* Generate all gap classes */
  .gap-lg-0,
  .gap-lg-0-x {
    margin-left: 0;
  }
  .gap-lg-0 > *,
  .gap-lg-0-x > * {
    padding-left: 0;
  }
  .gap-lg-0,
  .gap-lg-0-y {
    margin-top: 0;
  }
  .gap-lg-0 > *,
  .gap-lg-0-y > * {
    padding-top: 0;
  }
  .gap-lg-12,
  .gap-lg-12-x {
    margin-left: -12px;
  }
  .gap-lg-12 > *,
  .gap-lg-12-x > * {
    padding-left: 12px;
  }
  .gap-lg-12,
  .gap-lg-12-y {
    margin-top: -12px;
  }
  .gap-lg-12 > *,
  .gap-lg-12-y > * {
    padding-top: 12px;
  }
  .gap-lg-24,
  .gap-lg-24-x {
    margin-left: -24px;
  }
  .gap-lg-24 > *,
  .gap-lg-24-x > * {
    padding-left: 24px;
  }
  .gap-lg-24,
  .gap-lg-24-y {
    margin-top: -24px;
  }
  .gap-lg-24 > *,
  .gap-lg-24-y > * {
    padding-top: 24px;
  }
  .gap-lg-50,
  .gap-lg-50-x {
    margin-left: -50px;
  }
  .gap-lg-50 > *,
  .gap-lg-50-x > * {
    padding-left: 50px;
  }
  .gap-lg-50,
  .gap-lg-50-y {
    margin-top: -50px;
  }
  .gap-lg-50 > *,
  .gap-lg-50-y > * {
    padding-top: 50px;
  }
  .reset-lg {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .col-md {
    flex: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: auto;
    max-width: 100%;
    width: auto;
  }
  /* Generate all column/offset classes */
  .col-md-1 {
    flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .off-md-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-2 {
    flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .off-md-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-3 {
    flex: 25%;
    max-width: 25%;
  }
  .off-md-3 {
    margin-left: 25%;
  }
  .col-md-4 {
    flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .off-md-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-5 {
    flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .off-md-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-6 {
    flex: 50%;
    max-width: 50%;
  }
  .off-md-6 {
    margin-left: 50%;
  }
  .col-md-7 {
    flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .off-md-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-8 {
    flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .off-md-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-9 {
    flex: 75%;
    max-width: 75%;
  }
  .off-md-9 {
    margin-left: 75%;
  }
  .col-md-10 {
    flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .off-md-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-11 {
    flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .off-md-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-12 {
    flex: 100%;
    max-width: 100%;
  }
  .off-md-12 {
    margin-left: 100%;
  }
  /* Generate the extra classes */
  .col-md-20 {
    flex: 20%;
    max-width: 20%;
  }
  /* Generate all gap classes */
  .gap-md-0,
  .gap-md-0-x {
    margin-left: 0;
  }
  .gap-md-0 > *,
  .gap-md-0-x > * {
    padding-left: 0;
  }
  .gap-md-0,
  .gap-md-0-y {
    margin-top: 0;
  }
  .gap-md-0 > *,
  .gap-md-0-y > * {
    padding-top: 0;
  }
  .gap-md-12,
  .gap-md-12-x {
    margin-left: -12px;
  }
  .gap-md-12 > *,
  .gap-md-12-x > * {
    padding-left: 12px;
  }
  .gap-md-12,
  .gap-md-12-y {
    margin-top: -12px;
  }
  .gap-md-12 > *,
  .gap-md-12-y > * {
    padding-top: 12px;
  }
  .gap-md-24,
  .gap-md-24-x {
    margin-left: -24px;
  }
  .gap-md-24 > *,
  .gap-md-24-x > * {
    padding-left: 24px;
  }
  .gap-md-24,
  .gap-md-24-y {
    margin-top: -24px;
  }
  .gap-md-24 > *,
  .gap-md-24-y > * {
    padding-top: 24px;
  }
  .gap-md-50,
  .gap-md-50-x {
    margin-left: -50px;
  }
  .gap-md-50 > *,
  .gap-md-50-x > * {
    padding-left: 50px;
  }
  .gap-md-50,
  .gap-md-50-y {
    margin-top: -50px;
  }
  .gap-md-50 > *,
  .gap-md-50-y > * {
    padding-top: 50px;
  }
  .reset-md {
    margin-left: 0;
  }
}
@media screen and (max-width: 500px) {
  .col-sm {
    flex: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: auto;
    max-width: 100%;
    width: auto;
  }
  /* Generate all column/offset classes */
  .col-sm-1 {
    flex: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .off-sm-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .off-sm-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 25%;
    max-width: 25%;
  }
  .off-sm-3 {
    margin-left: 25%;
  }
  .col-sm-4 {
    flex: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .off-sm-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .off-sm-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 50%;
    max-width: 50%;
  }
  .off-sm-6 {
    margin-left: 50%;
  }
  .col-sm-7 {
    flex: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .off-sm-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .off-sm-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 75%;
    max-width: 75%;
  }
  .off-sm-9 {
    margin-left: 75%;
  }
  .col-sm-10 {
    flex: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .off-sm-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .off-sm-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 100%;
    max-width: 100%;
  }
  .off-sm-12 {
    margin-left: 100%;
  }
  /* Generate the extra classes */
  .col-sm-20 {
    flex: 20%;
    max-width: 20%;
  }
  /* Generate all gap classes */
  .gap-sm-0,
  .gap-sm-0-x {
    margin-left: 0;
  }
  .gap-sm-0 > *,
  .gap-sm-0-x > * {
    padding-left: 0;
  }
  .gap-sm-0,
  .gap-sm-0-y {
    margin-top: 0;
  }
  .gap-sm-0 > *,
  .gap-sm-0-y > * {
    padding-top: 0;
  }
  .gap-sm-12,
  .gap-sm-12-x {
    margin-left: -12px;
  }
  .gap-sm-12 > *,
  .gap-sm-12-x > * {
    padding-left: 12px;
  }
  .gap-sm-12,
  .gap-sm-12-y {
    margin-top: -12px;
  }
  .gap-sm-12 > *,
  .gap-sm-12-y > * {
    padding-top: 12px;
  }
  .gap-sm-24,
  .gap-sm-24-x {
    margin-left: -24px;
  }
  .gap-sm-24 > *,
  .gap-sm-24-x > * {
    padding-left: 24px;
  }
  .gap-sm-24,
  .gap-sm-24-y {
    margin-top: -24px;
  }
  .gap-sm-24 > *,
  .gap-sm-24-y > * {
    padding-top: 24px;
  }
  .gap-sm-50,
  .gap-sm-50-x {
    margin-left: -50px;
  }
  .gap-sm-50 > *,
  .gap-sm-50-x > * {
    padding-left: 50px;
  }
  .gap-sm-50,
  .gap-sm-50-y {
    margin-top: -50px;
  }
  .gap-sm-50 > *,
  .gap-sm-50-y > * {
    padding-top: 50px;
  }
  .reset-sm {
    margin-left: 0;
  }
}
/* ==========================================================================
   PSDGator SCSS Styles [BASE]
   ========================================================================== */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

picture,
img {
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

/**
 * Helpers
 */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/**
 * The Container
 */
.container {
  width: 100%;
  max-width: var(--container-width);
  padding: 0 var(--container-pad);
  margin: 0 auto;
}
.container--fluid {
  max-width: 100%;
}

/**
 * Global styles
 */
* {
  margin: 0;
  padding: 0;
}

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

html {
  color: var(--main-font-color);
  font-family: var(--main-font-family);
  font-size: var(--main-font-size);
  font-weight: 400;
  line-height: 1.5;
}

body {
  font-size: 1rem;
  line-height: 1.5;
  background-color: var(--body-background);
}

h1, h2, h3, h4, h5, h6 {
  margin: 1rem 0;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 1.5rem;
}

h2 {
  font-size: 1.2rem;
}

h3 {
  font-size: 1rem;
}

h4 {
  font-size: 0.8rem;
}

h5 {
  font-size: 0.7rem;
}

h6 {
  font-size: 0.67rem;
}

p {
  margin: 1rem 0;
}

ul, ol {
  margin: 1rem;
}

ul li, ol li {
  margin: 0.5rem 0;
}

a {
  color: #007bff;
}

a:hover {
  color: var(--hover-color);
  text-decoration: underline;
}

blockquote {
  margin: 1rem 0;
  padding: 0 1rem;
  color: #6c757d;
  border-left: 0.25rem solid #dee2e6;
}

code {
  font-family: "Courier New", Courier, monospace;
}

pre {
  margin: 1rem 0;
  padding: 1rem;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.9rem;
  line-height: 1.5;
  overflow: auto;
}

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:HEADER]
   ========================================================================== */
.site-header {
  margin-bottom: 1.875rem;
  z-index: 2;
  position: relative;
}
.site-header > .container {
  max-width: 1520px;
}
.site-header .row {
  align-items: center;
  padding: 0.625rem 0;
}
.site-header .logo-image {
  max-width: 100px;
}
@media only screen and (max-width: 500px) {
  .site-header .logo-image {
    max-width: 80px;
  }
}
@media only screen and (max-width: 1024px) {
  .site-header .menu-col.d-lg-none {
    display: none !important;
  }
}

.arrow-down-wrapper {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 50%;
}

.mainpage-header {
  background: #fff;
  margin-bottom: 0;
}
.mainpage-header .row {
  padding: 12px 0;
}
.mainpage-header .emergency {
  position: relative;
  right: unset;
  bottom: unset;
}
.mainpage-header .emergency .emergency-wrapper {
  background: none;
}
.mainpage-header .emergency .emergency-title {
  color: var(--main-font-color);
  font-weight: bold;
}
.mainpage-header .emergency .emergency-seperator::before {
  background-color: var(--main-font-color);
}
.mainpage-header .emergency .emergency-number {
  color: var(--main-font-color);
  font-size: 16px;
}
.mainpage-header .emergency svg path {
  fill: #6B8435;
}
.mainpage-header .menu-toggle path {
  fill: #1c266b;
}
.mainpage-header .row-end {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}
.mainpage-header .menu-col {
  align-items: center;
  display: flex;
}
.mainpage-header .menu-col .menu-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .mainpage-header .menu-col .menu-wrapper {
    flex-direction: row;
  }
}
.mainpage-header .menu-col .menu-wrapper .language-selector span {
  color: var(--main-font-color);
  font-size: 20px;
}

.icon-button {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 32px;
  height: 32px;
  margin-top: 7%;
}

.icon-button svg {
  width: 100%; /* Ensure the SVG fills the button */
  height: 100%;
  fill: #ffffff; /* Fill color of the SVG */
}

.jsMenu {
  background: var(--main-font-color);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  overflow-y: auto;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  background-size: cover;
  background-repeat: no-repeat;
}
.jsMenu .logo-wrapper {
  margin-bottom: 15px;
}
.jsMenu h2 {
  font-size: 50px;
  color: #fff;
}
.jsMenu .menu-wrapper {
  padding: 90px 90px 0 90px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  display: none;
}
.jsMenu nav.menu-container {
  justify-content: flex-start;
  display: flex;
}
.jsMenu ul {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 33%;
  margin: 0;
  padding: 10px;
  list-style: none;
}
.jsMenu ul li {
  margin: 0;
  line-height: 1;
  padding: 14px 0;
  border-bottom: 1px solid #0398f4;
  display: flex;
  justify-content: space-between;
}
.jsMenu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 21px;
  font-weight: bold;
}
.jsMenu ul li.active > a {
  color: #0398f4;
}
.jsMenu ul li.menu-item-has-children::after {
  content: "";
  height: 20px;
  width: 20px;
  background: url(../img/icons/chev-r.svg);
  position: relative;
  background-repeat: no-repeat;
  background-size: contain;
}
.jsMenu ul.sub-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  /* Position to the right of the parent */
}
.jsMenu li.top-level.active > ul.sub-menu {
  display: block;
}
.jsMenu li.second-level.active > ul.sub-menu {
  display: block;
}
.jsMenu .four-levels li.third-level.active > ul.sub-menu {
  display: block;
}
.jsMenu.active {
  opacity: 1;
  pointer-events: all;
  display: block;
}
.jsMenu .logo-image {
  max-width: 100px;
}
.jsMenu .jsMenu-options {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.jsMenu .jsMenu-options .search-close {
  display: flex;
  align-items: center;
  gap: 20px;
}
.jsMenu .jsMenu-options .search-form-flex {
  margin: 0;
}
.jsMenu .jsMenu-options .search-form-flex svg path {
  fill: #0398f4 !important;
}
.jsMenu .jsMenu-options .search-form-flex .search-input {
  max-width: 400px;
  width: 100%;
}
.jsMenu .jsMenu-options .search-form-flex .search-form {
  background: #1c266b;
  font-size: 20px;
  color: #fff;
  border-radius: 50px;
}
.jsMenu .jsMenu-options .search-form-flex .search-form::placeholder {
  font-size: 20px !important;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}
.jsMenu .jsMenu-options .jsMenuTrigger {
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}
.jsMenu .jsMenu-options .jsMenuTrigger span {
  color: #fff;
  font-size: 20px;
}
.jsMenu .jsMenu-options .jsMenuTrigger svg {
  height: 18px;
  width: 18px;
}
.jsMenu .jsMenu-options .language-selector span {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
}
.jsMenu .jsMenu-options .wpml-ls-legacy-dropdown-click .wpml-ls-item {
  position: relative;
}
.jsMenu .jsMenu-options .wpml-ls-legacy-dropdown-click a {
  background: transparent;
  border: none;
  padding: 0;
}
.jsMenu .jsMenu-options .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
  border: none;
  top: 40px;
}
.jsMenu .jsMenu-options .wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:after {
  display: none;
}
.jsMenu .top-level-menu {
  display: none;
}
.jsMenu .top-level-menu.active {
  display: block;
}
.jsMenu .hero-links__item.active .hero-links__overlay {
  opacity: 0;
}
.jsMenu .emergency {
  margin-top: auto;
  position: relative;
  justify-content: flex-end;
  bottom: unset;
  display: flex;
  right: unset;
  margin-right: 90px;
}
.jsMenu .emergency a {
  color: #fff;
  font-size: 20px;
  line-height: 1.3;
}
.jsMenu::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(119deg, rgb(28, 38, 107) 25%, rgb(15, 102, 170) 45%, rgb(126, 164, 62) 69%);
  z-index: 1;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.jsMenu > * {
  z-index: 2;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .jsMenu {
    display: none !important;
  }
}

.jsMobileMenuTrigger {
  display: none !important;
}
.jsMobileMenuTrigger svg {
  width: 22px;
}
@media only screen and (max-width: 1024px) {
  .jsMobileMenuTrigger {
    display: block !important;
  }
}

.jsMenuTrigger {
  cursor: pointer;
}
.jsMenuTrigger svg {
  width: 28px;
}
@media only screen and (max-width: 1024px) {
  .jsMenuTrigger {
    display: none !important;
  }
}

.jsMobileMenu {
  background: var(--main-font-color);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  overflow-y: auto;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}
.jsMobileMenu.active {
  opacity: 1;
  pointer-events: all;
}
@media only screen and (min-width: 1024px) {
  .jsMobileMenu {
    display: none !important;
  }
}
.jsMobileMenu h2 {
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
.jsMobileMenu a {
  color: #fff;
}
.jsMobileMenu .logo-wrapper {
  padding: 20px 0;
}
.jsMobileMenu .logo-wrapper img.logo-image {
  max-width: 90px;
}
.jsMobileMenu .menu-wrapper {
  margin-bottom: 50px;
}
.jsMobileMenu .jsMenu-options {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  right: 20px;
  top: 50px;
}
.jsMobileMenu .sub-menu,
.jsMobileMenu .menu {
  list-style: none;
}
.jsMobileMenu ul.sub-menu {
  margin: 0;
  padding: 0 20px;
}
.jsMobileMenu .menu-item {
  border-bottom: 1px solid #fff;
  margin: 0;
  padding: 10px 0;
  position: relative;
}
.jsMobileMenu .menu-item a {
  padding-left: 10px;
  display: flex;
}
.jsMobileMenu .menu-item-has-children::after {
  content: "";
  height: 15px;
  width: 15px;
  background: url(../img/icons/chev-r.svg);
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  top: 18px;
  right: 10px;
  transform: rotate(90deg);
}
.jsMobileMenu .menu-item-has-children a {
  padding-right: 40px;
}
.jsMobileMenu .menu-item-has-children.active {
  background-color: #1b2464;
}
.jsMobileMenu .menu-item-has-children.active::after {
  top: 12px;
  transform: rotate(-90deg);
}
.jsMobileMenu .menu-item-has-children.active ul.sub-menu {
  border-top: 1px solid #fff;
  margin-top: 10px;
}
.jsMobileMenu .menu-item-has-children.active ul.sub-menu .menu-item:last-child {
  border-bottom: 0;
}
.jsMobileMenu .emergency {
  margin-top: auto;
  flex: unset;
}
.jsMobileMenu .jsMobileMenuTrigger svg {
  width: 20px;
}
.jsMobileMenu .search-form-flex {
  margin: 0;
}
.jsMobileMenu .search-form-flex svg path {
  fill: #0398f4 !important;
}
.jsMobileMenu .search-form-flex .search-input {
  width: 100%;
}
.jsMobileMenu .search-form-flex .search-form {
  background: #162062;
  font-size: 16px;
  color: #fff;
  border-radius: 50px;
  box-shadow: none;
}
.jsMobileMenu .search-form-flex .search-form::placeholder {
  font-size: 20px !important;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

body.menu-active {
  overflow: hidden;
}

.main-menu--list {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
}
.main-menu--item {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.main-menu--item__link {
  color: #000;
  font-size: 1rem;
  text-decoration: none;
  padding: 6px 3px 8px;
}
.main-menu--item__link:hover {
  color: #000;
  text-decoration: underline;
}
.main-menu--item .dropdown--list {
  position: absolute;
  top: -10000px;
  background: #fff;
  border: 1px solid rgba(35, 35, 35, 0.1);
  margin: 0;
  list-style: none;
  border-radius: 3px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms, visibility 300ms;
}
@media only screen and (max-width: 1024px) {
  .main-menu--item .dropdown--list {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.75rem;
  }
}
.main-menu--item .dropdown--list.active {
  opacity: 1;
  visibility: visible;
  top: 50px;
}
@media only screen and (max-width: 1024px) {
  .main-menu--item .dropdown--list.active {
    z-index: 1;
    top: 0px;
  }
}
.main-menu--item .dropdown--item {
  margin: 0;
}
.main-menu--item .dropdown--link {
  padding: 9px;
  width: 200px;
  display: flex;
  justify-content: center;
  color: #000;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .main-menu--item .dropdown--link {
    max-width: 100%;
    width: 100%;
  }
}
.main-menu--item .dropdown--separator {
  height: 1px;
  display: block;
  background: rgba(35, 35, 35, 0.1);
  margin: 6px 0;
}
@media only screen and (max-width: 1024px) {
  .main-menu--desktop {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .main-menu--mobile {
    display: none;
  }
}
.main-menu--mobile .mobile--menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 1.875rem var(--container-pad);
  background: #f2f3f5;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
}
.main-menu--mobile .mobile--menu.active {
  opacity: 1;
  visibility: visible;
}
.main-menu--mobile .mobile--menu .main-menu--list {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  position: relative;
  top: -30px;
}
.main-menu--mobile .mobile--trigger {
  max-width: 30px;
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
.main-menu--mobile .main-menu--item__link {
  font-size: 1.75rem;
  transition: transform 300ms, font-weight 300ms;
  text-align: center;
}
.main-menu--mobile .main-menu--item__link:hover {
  text-decoration: none;
  transform: scale(1.5);
  font-weight: 600;
}

.icon-dropdown {
  margin-left: 6px;
  margin-bottom: 2px;
}
@media only screen and (max-width: 1024px) {
  .icon-dropdown {
    width: 1.25rem;
  }
}

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:MAIN]
   ========================================================================== */
.vanished {
  display: none;
}

.unlist {
  margin: 0;
  list-style: none;
}

.section {
  padding: 60px 0;
  position: relative;
}

.filter form {
  position: relative;
  display: flex;
  gap: 9px;
  align-items: center;
}
.filter form:after {
  content: "⯆";
  font-size: 12px;
  display: block;
  position: relative;
  right: 3px;
}

select#category_filter {
  background: transparent;
  outline: none;
  border: unset;
  width: auto;
  position: relative;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.custom-sidebar {
  justify-content: flex-start;
  display: flex;
  width: 100%;
}
.custom-sidebar .subpage-menu {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  margin: 0;
  list-style: none;
}
.custom-sidebar .subpage-menu li {
  margin: 0;
  line-height: 1;
  padding: 14px 0;
  border-bottom: 1px solid #0398f4;
  display: flex;
  justify-content: space-between;
}
.custom-sidebar .subpage-menu li a {
  color: var(--main-font-color);
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}
.custom-sidebar .subpage-menu li:hover a {
  color: #0398f4;
}
.custom-sidebar .subpage-menu li:last-child {
  border: none;
}

.only-menu-enabled {
  overflow: hidden !important;
}

.only-menu-enabled .jsMenu,
.only-menu-enabled .jsMobileMenu {
  opacity: 1 !important;
  pointer-events: all !important;
}

.only-menu-enabled .search-close .jsMenuTrigger,
.only-menu-enabled .jsMenu-options .jsMobileMenuTrigger {
  display: none !important;
}

ul.four-levels.menu {
  width: 25%;
}
ul.four-levels.menu ul {
  max-width: 100%;
  width: 100%;
}
ul.four-levels.menu a {
  font-size: 18px;
}

.preventEventsbyDefault > a {
  pointer-events: none !important;
  cursor: pointer !important;
}

ul.four-levels.menu li:hover > a {
  color: #0398f4;
}

.change-max-width {
  max-width: 54%;
}

.custom-sidebar .subpage-menu li a.current-item {
  pointer-events: none;
  color: #7ea43e !important;
}

.simple-page-section {
  padding: 50px 0;
}

.whistleblowing-wrapper .button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 15px 0 36px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .whistleblowing-wrapper .button-container {
    flex-direction: column;
  }
}
.whistleblowing-wrapper .styled-button {
  border-radius: 28px;
  width: 100%;
  max-width: 270px;
  padding: 18px;
  font-size: 16px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  transition: background 0.8s ease-in-out;
  border: none;
  background: linear-gradient(90deg, #007aae 0%, #798f00 100%);
  color: #fff;
  height: 70px;
  cursor: pointer;
}
.whistleblowing-wrapper .styled-button:hover {
  opacity: 0.6;
  transition: 0.3s;
}
.whistleblowing-wrapper .popup {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
}
.whistleblowing-wrapper .popup .popup-content {
  position: relative;
  background-color: #fefefe;
  border: 1px solid #888;
  max-width: 80%;
  max-height: 85%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.5s;
  overflow-y: auto;
}
.whistleblowing-wrapper .popup .close-button {
  color: #aaa;
  position: absolute;
  right: 10px;
  font-size: 28px;
  font-weight: bold;
  padding: 15px 0;
  cursor: pointer;
}
.whistleblowing-wrapper .popup .close-button:hover {
  color: black;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.slider-example {
  margin-bottom: 60px;
}
.slider-example .slick-slide {
  padding: 240px 60px;
  font-size: 30px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(35, 35, 35, 0.1);
  border-radius: 3px;
}

.slick-prev::before, .slick-next::before {
  color: #000;
}

.slick-next {
  right: 25px;
  z-index: 1;
}

.slick-prev {
  left: 25px;
  z-index: 1;
}

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:FOOTER]
   ========================================================================== */
.site-footer {
  background-color: #6b8435;
  position: relative;
  padding-top: 74px;
  padding-bottom: 12px;
  display: flex;
}
@media only screen and (max-width: 1366px) {
  .site-footer {
    flex-direction: column;
  }
}
.site-footer .footer--col {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1366px) {
  .site-footer .footer--col {
    background: #fff;
    padding: 10px;
  }
}
.site-footer .container {
  max-width: 1520px;
}
.site-footer .blue-line {
  background-color: #1d276c;
  height: 40px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-size: 0;
}
.site-footer .quote-dig {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 80px;
  margin-top: -36px;
  gap: 10px;
}
.site-footer .quote-dig .icon {
  margin-right: 16px;
}
.site-footer .quote-dig .quote {
  color: #a8b822;
  font-weight: 600;
  font-size: 18px;
  margin-right: 10px;
}
.site-footer .quote-dig .link {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  background-color: #a8b822;
  display: block;
  padding: 11px 16px;
  border-radius: 0 0 16px 0;
}
@media only screen and (max-width: 1366px) {
  .site-footer .quote-dig {
    margin-bottom: 30px;
    margin-top: 30px;
    justify-content: center;
  }
}
.site-footer .footer-images-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media only screen and (max-width: 1366px) {
  .site-footer .footer-images-row {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.site-footer .footer-images-row:last-child {
  margin-bottom: 0;
}
.site-footer .footer-images-row img {
  margin-left: 12px;
}
.site-footer .footer-menu {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.site-footer .footer-menu h3 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-top: 0;
  margin-bottom: 9px;
}
.site-footer .footer-menu ul {
  list-style: none;
  margin: 0;
}
.site-footer .footer-menu ul li {
  margin: 0 0 8px 0;
}
.site-footer .footer-menu ul li a {
  line-height: 1;
  font-size: 14px;
  color: #fff;
}
.site-footer .footer-menu p {
  font-size: 14px;
  color: #fff;
  margin: 0;
  line-height: 1.1;
  font-weight: 200;
}
.site-footer .footer-menu--bold ul li a {
  font-weight: 700;
}
.site-footer .white-rect {
  position: absolute;
  top: 0;
  font-size: 0;
  width: 100%;
  flex: 50%;
  max-width: 50%;
  right: 0;
  height: 100%;
  background: #fff;
  z-index: 0;
  bottom: 0;
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 260px 100%);
}
.site-footer .copyright {
  margin-top: auto;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1366px) {
  .site-footer .copyright {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.site-footer .copyright p {
  margin: 0;
  font-size: 14px;
  color: #a8b822;
  text-align: right;
}
@media only screen and (max-width: 1366px) {
  .site-footer .copyright p {
    text-align: center;
    color: #a8b822;
  }
}
.site-footer .p-relative {
  position: relative;
  z-index: 3;
}
.site-footer .emergency-call {
  position: absolute;
  top: 348px;
  background-color: #a8b822;
  padding: 24px 28px 18px;
  right: -155px;
  border-radius: 0 36px 0 0;
  z-index: 10;
}
.site-footer .emergency-call p {
  font-weight: bold;
  font-size: 22px;
  text-align: center;
  margin-bottom: 18px;
}
.site-footer .emergency-call .tel-numbers {
  display: flex;
  flex-direction: column;
}
.site-footer .emergency-call .tel-numbers a {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.site-footer .emergency-call .flex-call {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-footer .emergency-call .flex-call svg {
  width: 35px;
  margin-right: 12px;
}
@media only screen and (max-width: 1366px) {
  .site-footer .emergency-call {
    right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .site-footer .emergency-call {
    position: relative;
    top: 0;
    margin-right: auto;
  }
}
.site-footer .footer-images-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.site-footer .footer-quote-row {
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
}
.site-footer .footer-quote-row .quote-link {
  border-radius: 0px 0px 25px 0px;
  color: #fff !important;
  font-size: 18px;
  font-weight: 600;
  background-color: #acb923;
  padding: 10px 20px;
  width: fit-content;
}
.site-footer .footer-quote-row .quote-text {
  font-size: 18px;
  font-weight: 600;
  color: #acb923;
}
@media only screen and (max-width: 1366px) {
  .site-footer .footer-quote-row {
    justify-content: center;
  }
}

#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  background-color: #1d276c;
  border: none;
  border-radius: 200px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
}
#back-to-top svg {
  transform: rotate(-90deg);
  margin-bottom: 3px;
}
#back-to-top svg path {
  stroke: #fff;
}

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:404]
   ========================================================================== */
.section--404 {
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section--404 .s404-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section--404 .s404-title {
  font-size: 8rem;
}
.section--404 .s404-subtitle {
  font-size: 3rem;
}
.section--404 .s404-image {
  max-height: 250px;
}
.section--404 .s404-link {
  color: #fff !important;
  padding: 10px 20px;
  background: #39ac31;
  margin: 20px 0;
  display: inline-block;
}

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:Pagination]
   ========================================================================== */
.pagination ul {
  display: flex;
  list-style: none;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin: 4rem 0;
}
.pagination ul li.next-page {
  margin-left: auto;
}
.pagination ul .page-numbers {
  color: #000000;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color 0.5s;
  border: 1px solid #DDD;
  margin: 0 4px;
  font-size: 20px;
}
.pagination ul .page-numbers.current {
  background-color: #39ac31;
  color: #FFFFFF;
  border: 1px solid #39ac31;
}

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:POSTCARD]
   ========================================================================== */
.post-card {
  background: #fafafa;
  border-radius: 5px;
  border: 1px solid #c5c5c5;
  overflow: hidden;
}
.post-card-content {
  padding: 10px;
}

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:POST]
   ========================================================================== */
.single-post #breadcrumbs svg {
  height: 15px;
  margin-bottom: 3px;
}
.single-post #breadcrumbs svg path {
  fill: var(--main-font-color);
}
.single-post .featured-img-wrapper img {
  width: 100%;
  border-radius: 15px;
  max-height: 400px;
  object-fit: cover;
}
.single-post .post-info {
  padding: 20px;
  border-radius: 5px;
  background: #fafafa;
  margin-top: 20px;
}
.single-post .post-content-wrap {
  padding: 20px;
  border-radius: 5px;
  background: #fafafa;
  margin-bottom: 50px;
}
.single-post .toc {
  padding: 20px;
  border-radius: 5px;
  position: sticky;
  top: 50px;
  background: #fafafa;
}
.single-post .toc ul {
  list-style: none;
  margin: 10px 0 0;
}
@media (max-width: 768px) {
  .single-post .post-top {
    order: 1;
  }
  .single-post .post-content {
    order: 3;
  }
  .single-post .post-toc {
    order: 2;
  }
}

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:SUBPAGE HEADER]
   ========================================================================== */
.subpage-header {
  padding: 0;
  position: relative;
  overflow: hidden;
  margin: 0;
}
@media only screen and (max-width: 1366px) {
  .subpage-header {
    padding: 0;
  }
}
.subpage-header .row {
  align-items: flex-start;
  padding-bottom: 0;
}
@media only screen and (max-width: 1366px) {
  .subpage-header .row {
    padding-top: 0;
  }
}
.subpage-header .header-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.subpage-header .header-gradient {
  position: absolute;
  font-size: 0;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: linear-gradient(119deg, rgb(28, 38, 107) 25%, rgb(15, 102, 170) 45%, rgb(126, 164, 62) 69%);
  z-index: -1;
  mix-blend-mode: multiply;
}
.subpage-header .header-logo {
  margin-bottom: 110px;
  transition: all ease-in-out 0.1s;
  margin-top: -64px;
}
.subpage-header .header-logo img {
  max-width: 132px;
}
.subpage-header .header-logo:hover {
  opacity: 0.8;
}
.subpage-header .menu-col {
  display: flex;
  padding: 0 96px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-basis: auto;
  gap: 20px;
}
@media only screen and (max-width: 1366px) {
  .subpage-header .menu-col {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    padding-top: 0;
    align-items: center;
  }
}
.subpage-header .menu-col .menu-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-basis: auto;
  gap: 20px;
  margin-left: 30px;
}
@media only screen and (max-width: 1366px) {
  .subpage-header .menu-col .menu-wrapper {
    flex-direction: row;
    width: 100%;
    justify-content: flex-end;
    margin-left: unset;
  }
}
.subpage-header .title-col {
  display: flex;
}
.subpage-header .title-wrapper {
  padding: 90px 25px 70px 265px; /* Slightly increased padding */
  min-height: 180px; /* Slightly increased min-height */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 0;
  width: 100%;
}
@media only screen and (max-width: 1366px) {
  .subpage-header .title-wrapper {
    background-color: unset;
    clip-path: none;
    min-height: unset;
    margin-bottom: 0;
    padding: 100px 20px;
  }
}
@media only screen and (min-width: 1366px) {
  .subpage-header .title-wrapper {
    background-color: unset;
    clip-path: none;
    min-height: unset;
    margin-bottom: 0;
    padding: 100px 20px;
  }
}
.subpage-header .title {
  margin: 0;
  font-size: 35px;
  color: #1d276c;
  text-transform: uppercase;
}
@media only screen and (max-width: 1366px) {
  .subpage-header .title {
    color: #fff;
    font-size: 33px;
  }
}
.subpage-header .dash {
  width: 140px;
  height: 10px;
  background-color: #0398f4;
  margin-bottom: 12px;
}
.subpage-header .language-selector span {
  color: #fff;
  font-size: 18px;
}
.subpage-header .menu-toggle {
  margin-bottom: 20px;
  cursor: pointer;
  transition: all ease-in-out 0.1s;
}
.subpage-header .menu-toggle:hover {
  opacity: 0.4;
}
.subpage-header .breadcrumbs .row {
  justify-content: center;
}
.subpage-header .header-bottom {
  position: relative;
}
@media only screen and (max-width: 1366px) {
  .subpage-header .header-bottom {
    position: relative;
    display: flex;
    flex-direction: column;
  }
}
.subpage-header p#breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
}
.subpage-header .breadcrumbs {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  .subpage-header .breadcrumbs {
    overflow: auto;
  }
}
.subpage-header .breadcrumbs span {
  display: flex;
  gap: 10px;
  align-items: center;
  line-height: 1;
  padding: 10px 0;
  white-space: nowrap;
}
@media only screen and (min-width: 1024.01px) {
  .subpage-header .breadcrumbs span {
    flex-wrap: wrap;
  }
}
.subpage-header .breadcrumbs span.breadcrumb_last {
  border-bottom: 2px solid #0398f4;
}
.subpage-header .breadcrumbs a {
  color: #fff;
  text-decoration: none;
}
.subpage-header .breadcrumbs svg {
  width: 14px;
  min-width: 14px;
  height: 14px;
  min-height: 14px;
}
@media only screen and (max-width: 1366px) {
  .subpage-header .breadcrumbs {
    padding: 0;
  }
}
.subpage-header .search-form-flex .search-form {
  background: rgb(28, 38, 107);
  color: #fff;
  outline: none;
}

.emergency-col {
  margin: 0 auto;
}

.emergency {
  position: absolute;
  right: 38px;
  bottom: 0;
}
.emergency .emergency-wrapper {
  padding: 20px 45px 16px;
  display: flex;
  background: rgb(28, 38, 107);
  background: linear-gradient(119deg, rgb(28, 38, 107) 25%, rgb(15, 102, 170) 45%, rgb(126, 164, 62) 69%);
  border-radius: 0 42px 0 0;
  align-items: center;
}
@media only screen and (max-width: 1366px) {
  .emergency .emergency-wrapper {
    width: 100%;
    justify-content: center;
    border-radius: 0;
    align-items: center;
  }
}
.emergency .emergency-left {
  flex: 0 0 auto;
  width: auto;
  display: flex;
  align-items: center;
}
.emergency .emergency-left svg {
  max-width: 32px;
}
@media only screen and (max-width: 500px) {
  .emergency .emergency-left {
    font-size: 15px;
  }
}
.emergency .emergency-right {
  flex: 0 0 auto;
  width: auto;
  display: flex;
  flex-direction: column;
}
.emergency .emergency-right a {
  color: #fff;
  font-size: 20px;
  line-height: 1.3;
}
@media only screen and (max-width: 500px) {
  .emergency .emergency-right a {
    font-size: 15px;
  }
}
.emergency .emergency-seperator {
  display: flex;
  padding: 0 20px;
  font-size: 0;
  width: 40px;
  height: 26px;
  flex: 0 0 40px;
  position: relative;
  flex-direction: column;
}
.emergency .emergency-seperator::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 1366px) {
  .emergency .emergency-seperator {
    height: 100%;
  }
}
.emergency .emergency-title {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-left: 15px;
}
@media only screen and (max-width: 1366px) {
  .emergency {
    position: relative;
    right: 0;
    bottom: 0;
    justify-content: center;
    display: flex;
    flex: 1;
  }
}

.breadcrumbs .breadcrumbs-separator:last-of-type {
  display: none;
}

@media (min-width: 1025px) {
  .jsMenuTrigger {
    display: none;
  }
}
.search-form {
  border-radius: 24px;
  padding: 14px 24px;
  background: no-repeat;
  border: none;
  box-shadow: 0 10px 12px 0px rgba(17, 17, 17, 0.4509803922);
  padding: 16px 24px 15px;
  line-height: 1;
  padding-right: 50px;
}
.search-form::placeholder {
  font-weight: 500;
  font-size: 20px;
}

.search-form-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
}
.search-form-flex .search-input {
  width: 100%;
  position: relative;
}
.search-form-flex .search-form {
  width: 100%;
  outline: 0 !important;
}
.search-form-flex .search-input-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  right: 18px;
  transform: translateY(-50%);
}
.search-form-flex .search-input-btn button {
  background: none;
  border: 0;
  outline: none;
}

.mainpage-header .wpml-ls-legacy-dropdown-click .wpml-ls-current-language:hover > a,
.mainpage-header .wpml-ls-legacy-dropdown-click a:focus,
.mainpage-header .wpml-ls-legacy-dropdown-click a:hover {
  color: #646464;
  background-color: #fff;
}
.mainpage-header .wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle {
  position: relative;
  padding-right: 0;
  text-align: center;
}
.mainpage-header .wpml-ls-legacy-dropdown-click a {
  display: inline-block;
  text-decoration: none;
  color: #444;
  border: none;
  background-color: #fff;
  padding: 5px 10px;
  line-height: 1;
}
.mainpage-header .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
  visibility: hidden;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  border-top: none;
  padding: 0;
  margin: 0;
  list-style-type: none;
  z-index: 101;
}
.mainpage-header .wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:after {
  content: "";
  vertical-align: middle;
  display: inline-block;
  border: 0.35em solid transparent;
  border-top: 0.5em solid;
  position: absolute;
  right: 10px;
  top: calc(50% - 0.175em);
  display: none;
}
.mainpage-header .wpml-ls-legacy-dropdown-click .wpml-ls-item {
  padding: 0;
  margin: 0;
  list-style-type: none;
  text-align: center;
}
.mainpage-header .wpml-ls-legacy-dropdown-click a {
  display: inline-block;
  text-decoration: none;
  color: #444;
  border: none;
  background-color: #fff;
  padding: 0 5px 10px 5px;
  line-height: 1;
}

.subpage-header .wpml-ls-legacy-dropdown-click a {
  display: block;
  text-decoration: none;
  color: #444;
  border: none;
  background-color: transparent;
  padding: 5px 10px;
  line-height: 1;
}
.subpage-header .wpml-ls-legacy-dropdown-click {
  width: auto;
  max-width: 100%;
}
.subpage-header .wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:after {
  display: none;
}
.subpage-header .wpml-ls-legacy-dropdown-click .wpml-ls-current-language:hover > a, .subpage-header .wpml-ls-legacy-dropdown a:focus, .subpage-header .wpml-ls-legacy-dropdown a:hover {
  color: #646464;
  background: transparent;
}
.subpage-header .wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
  border-top: none;
}

.section--clients {
  padding: 150px 0 0;
  font-size: 28px;
  background: #fff;
}
.section--clients h2 {
  font-weight: bold;
  font-size: 35px;
  border-bottom: 6px solid #0398F4;
  display: flex;
  padding-bottom: 6px;
  position: relative;
  margin-bottom: 70px;
}
.section--clients h2::after {
  content: "";
  background: #1D276C;
  display: flex;
  position: absolute;
  height: 6px;
  width: 25%;
  left: 0;
  bottom: -6px;
}
.section--clients .client-col {
  justify-content: center;
  display: flex;
  align-items: center;
}
.section--clients .client-col a {
  max-height: 100px;
  display: flex;
}
.section--clients .client-col a img {
  max-height: 100%;
  object-fit: contain;
}

.section--info {
  font-size: 28px;
  background: #fff;
  padding-bottom: 150px;
}
.section--info .info-content {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #1d276c;
  font-size: 18px;
  font-style: italic;
  padding-top: 30px;
}

.section--support {
  background-color: #DCDDDE;
  padding: 150px 0;
}
.section--support h2 {
  font-weight: bold;
  font-size: 35px;
  border-bottom: 6px solid #0398F4;
  display: flex;
  padding-bottom: 6px;
  position: relative;
  margin-bottom: 70px;
}
.section--support h2::after {
  content: "";
  background: #1D276C;
  display: flex;
  position: absolute;
  height: 6px;
  width: 25%;
  left: 0;
  bottom: -6px;
}
.section--support .list-title {
  margin-top: 70px;
  margin-bottom: 30px;
}
.section--support ul {
  list-style: none;
}
.section--support ul li {
  padding-left: 25px;
  background: url(../img/icons/chev-r.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 12px;
}

.section--contact {
  padding: 150px 0;
}
.section--contact h2 {
  font-weight: bold;
  font-size: 24px;
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.section--contact h3 {
  color: #0398F4;
  font-size: 17px;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  margin-bottom: 70px;
}
.section--contact .contact-form-top {
  display: flex;
  gap: 20px;
  margin-bottom: 70px;
}
@media only screen and (max-width: 1024px) {
  .section--contact .contact-form-top {
    flex-direction: column;
  }
}
.section--contact .contact-form-top input {
  flex: 1;
  padding: 10px 50px;
  border-radius: 50px;
  font-size: 21px;
  border: 0;
  outline: 0;
  box-shadow: 0 6px 20px -10px black;
  width: 100%;
}
.section--contact .contact-form-bottom {
  display: flex;
}
.section--contact .contact-form-bottom textarea {
  width: 100%;
  height: 400px !important;
  max-height: 400px !important;
  min-height: 400px !important;
  padding: 35px 50px;
  font-size: 21px;
  border-radius: 50px;
  border: 0;
  outline: 0;
}
.section--contact .contact-form .wpcf7-submit {
  margin: auto;
  display: flex;
  margin-top: 20px;
  font-size: 21px;
  background: #1D276C;
  padding: 10px 35px;
  color: #fff;
  border-radius: 50px;
  border: 0;
  outline: 0;
  cursor: pointer;
}

.section--locations {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 150px 0;
  background-attachment: fixed;
}
.section--locations .hq-wrapper {
  max-width: 800px;
  padding: 50px;
  margin: auto;
  background: #0398F4;
  color: #fff;
  border-radius: 50px;
  border-top-left-radius: 0;
  margin-bottom: 150px;
}
.section--locations .hq-wrapper .hq-content {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
}
.section--locations .hq-wrapper .hq-content img {
  margin-top: -110px;
}
.section--locations .hq-wrapper .hq-content h3 {
  color: #1D276C;
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}
.section--locations .hq-wrapper .hq-content h3::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 1px;
  background: #1D276C;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.section--locations .hq-wrapper .hq-content h4 {
  font-weight: bold;
  font-size: 27px;
  text-align: center;
}
.section--locations .hq-wrapper .hq-content p {
  font-size: 29px;
  margin: 0;
  text-align: center;
  margin-bottom: 20px;
}
.section--locations .hq-wrapper .hq-content span {
  font-size: 18px;
  text-align: center;
}
.section--locations .location-card {
  background: rgba(255, 255, 255, 0.7803921569);
  padding: 30px;
  border-radius: 50px;
  border-bottom-left-radius: 0;
  height: 100%;
}
.section--locations .location-card h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  margin-top: 0;
  padding-top: 10px;
}
.section--locations .location-card h4::before {
  content: "";
  display: block;
  width: 30px;
  height: 5px;
  background: #0398F4;
  position: absolute;
  top: 0;
  left: 0;
}
.section--locations .location-card h5 {
  font-size: 16px;
  margin-bottom: 20px;
  padding-top: 10px;
}
.section--locations .location-card .location-card-address {
  font-size: 16px;
  position: relative;
  padding-left: 35px;
}
.section--locations .location-card .location-card-address svg {
  position: absolute;
  top: 0;
  left: 0;
}
.section--locations .location-card .location-card-contact {
  font-size: 16px;
  list-style: none;
  margin: 0;
  position: relative;
  padding-left: 35px;
}
.section--locations .location-card .location-card-contact svg {
  position: absolute;
  top: 0;
  left: 0;
}
.section--locations .locations-title {
  text-align: center;
  color: #0398F4;
  font-size: 35px;
}

.section--presenation {
  padding: 150px 0;
  font-size: 28px;
  background: radial-gradient(circle at top left, #575757 0%, #2b2b2b 80%);
}
.section--presenation h2 {
  font-weight: bold;
  font-size: 35px;
  border-bottom: 6px solid #999999;
  display: flex;
  padding-bottom: 6px;
  position: relative;
  margin-bottom: 70px;
  color: #fff;
}
.section--presenation h2::after {
  content: "";
  background: #0398F4;
  display: flex;
  position: absolute;
  height: 6px;
  width: 25%;
  left: 0;
  bottom: -6px;
}
.section--presenation .df-container.df-floating > .df-ui-next, .section--presenation .df-container.df-floating > .df-ui-prev {
  color: #fff !important;
}

.section--hero-links {
  padding: 0;
}
.hero-links__item {
  position: relative;
  text-decoration: none !important;
  overflow: hidden;
  display: flex;
  height: 50vh;
}
.hero-links__item:hover .hero-links__overlay {
  opacity: 0;
}
.hero-links__overlay {
  background: rgb(28, 38, 107);
  background: linear-gradient(119deg, rgb(28, 38, 107) 25%, rgb(15, 102, 170) 45%, rgb(126, 164, 62) 69%);
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  mix-blend-mode: multiply;
  opacity: 1;
  transition: all ease-in-out 0.3s;
}
.hero-links__item-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 40px 54px;
}
@media only screen and (max-width: 1024px) {
  .hero-links__item-wrapper {
    padding: 0px 54px;
    align-items: center;
  }
}
.hero-links__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.hero-links__title {
  margin: 0;
  position: relative;
  color: #fff;
  font-size: 30px;
  text-shadow: -1px 2px 10px rgba(17, 17, 17, 0.0784313725);
  z-index: 2;
  text-align: right;
}

.home .section--hero-links .hero-links {
  height: calc(100vh - 124px);
  max-height: calc(100vh - 124px);
}
@media only screen and (max-width: 500px) {
  .home .section--hero-links .hero-links {
    height: calc(100vh - 104px);
    max-height: calc(100vh - 104px);
  }
}
.home .section--hero-links .hero-links__item {
  height: 100% !important;
}

.section--social {
  padding: 40px 0;
  background-color: #1d276c;
}
.section--social .social-flex {
  display: flex;
  justify-content: center;
}
.section--social .social-flex .social-item {
  margin-right: 50px;
}
.section--social .social-flex .social-item:last-child {
  margin-right: 0;
}
.section--social svg {
  width: 30px;
  height: 30px;
}

@media only screen and (max-width: 1366px) {
  .home .section--social {
    margin-bottom: -48px;
    z-index: 1;
  }
}

.section--banner-article {
  padding: 140px 0 120px;
  background-position: center;
  background-size: cover;
}
.section--banner-article .article-post-card {
  background-color: #032B56;
  padding: 32px 43px;
  border-radius: 0 0 56px 0;
  display: flex;
  flex-direction: column;
  max-width: 554px;
}
.section--banner-article .article-post-card .title {
  color: #fff;
  margin: 0 0 19px 0;
  font-size: 28px;
}
.section--banner-article .article-post-card .description {
  color: #fff;
  margin: 0 0 56px 0;
  font-size: 18px;
}
.section--banner-article .article-post-card .btn-flex {
  display: flex;
  justify-content: flex-end;
}
.section--banner-article .article-post-card .btn {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  text-align: right;
  display: inline-block;
}

.section--posts {
  padding: 85px 0 122px;
  background-color: #F5F5F5;
}
.section--posts .posts-wrapper {
  display: flex;
  flex-direction: column;
}
.section--posts .post-item {
  margin-bottom: 24px;
  display: flex;
  background-color: #1D276C;
}
.section--posts .post-item__image img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.section--posts .post-item__content {
  padding: 43px 59px 22px;
}
.section--posts .post-item__content-wrapper .title {
  color: #fff;
  margin: 0 0 23px 0;
  font-size: 26px;
}
.section--posts .post-item__content-wrapper .description {
  color: #fff;
  font-size: 18px;
}
.section--posts .post-item__content-wrapper .btn-flex {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.section--posts .post-item__content-wrapper .btn-flex::after {
  position: absolute;
  content: "";
  background-image: url("../img/arrow-left.png");
  width: 10px;
  height: 10px;
  top: 8px;
  right: -20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.section--posts .post-item__content-wrapper .btn {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
}
.section--posts .post-item.content-left {
  flex-direction: row-reverse;
}
/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:PRODUCT CARD]
   ========================================================================== */
.product-card {
  color: #000;
  text-decoration: none !important;
  position: relative;
  cursor: pointer;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  transition: all 0.3s ease-in-out;
}
.product-card__sales-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: #FF307A;
  color: #fff;
  font-weight: 600;
  padding: 5px 8px 2px;
  border-radius: 8px;
}
.product-card-image {
  overflow: hidden;
  border-radius: 22px;
}
.product-card-image img {
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.product-card-info {
  padding: 12px 16px 36px;
  position: relative;
}
.product-card-info h3 {
  color: #000;
  font-size: 19px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 6px;
}
.product-card-info .rating-count {
  color: #B3B3B3;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: -1px;
  display: inline-block;
}
.product-card-info .rating {
  display: flex;
  gap: 4px;
  justify-content: flex-start;
  align-items: flex-end;
}
.product-card-info .rating img {
  max-width: 95px;
}
.product-card-info .price {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  width: 100%;
  padding-top: 28px;
  transition: all ease-in-out 0.3s;
}
.product-card-info .price p {
  margin: 0;
}
.product-card-info .price-original {
  color: #DE6F6F;
  font-size: 22px;
  font-weight: 400;
  text-decoration: line-through !important;
  margin-right: 8px !important;
}
.product-card-info .price-final {
  color: #000;
  font-size: 28px;
  font-weight: 700;
  transition: all ease-in-out 0.3s;
  padding-bottom: 0;
  line-height: 1;
}
.product-card-info .aff-logo {
  display: inline-block;
  padding: 3px 12px;
  background-color: #f2f2f2;
  border-radius: 6px;
  margin-bottom: 7px;
}
.product-card .aff-button {
  position: absolute;
  background-color: #000;
  width: calc(100% - 12px);
  left: 50%;
  transform: translate(-50%, -14px);
  display: block;
  padding: 16px 16px;
  font-size: 18px;
  text-align: center;
  border-radius: 14px;
  color: #fff;
  font-weight: 600;
  margin-bottom: -62px;
  opacity: 0;
  transition: all ease-in-out 0.25s;
}
.product-card .aff-button:hover {
  background-color: #47484e;
  text-decoration: none;
}
.product-card:hover .product-card-info .price-final {
  font-size: 32px;
}
.product-card:hover .product-card-info .price {
  padding-top: 9px;
}
.product-card:hover .aff-button {
  opacity: 1;
  transform: translate(-50%, 12px);
}
@media only screen and (max-width: 768px) {
  .product-card .product-card-info .price-final {
    font-size: 32px;
  }
  .product-card .product-card-info .price {
    padding-top: 9px;
  }
  .product-card .aff-button {
    opacity: 1;
    transform: translate(-50%, 12px);
  }
}

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:BLOG CARD]
   ========================================================================== */
.blog-card {
  position: relative;
}
.blog-card-date {
  position: absolute;
  top: -21px;
  display: block;
  font-size: 17px;
  background: #0F2046;
  color: #fff;
  padding: 10px 50px 10px 30px;
  border-top-right-radius: 30px;
}
.blog-card-more {
  position: absolute;
  bottom: 10px;
  right: 0;
  font-size: 17px;
  color: #0398F4;
  padding: 0 30px;
  display: flex;
  gap: 5px;
  align-items: center;
}
.blog-card-more svg {
  height: 13px;
}
.blog-card-more svg path {
  fill: #0398F4;
}
.blog-card-title {
  position: absolute;
  bottom: 40px;
  color: #fff;
  left: 0;
  font-size: 24px;
  padding: 0 30px;
}
.blog-card--simple-date {
  color: #0398F4;
  font-size: 16px;
  font-style: italic;
}
.blog-card--simple-title {
  font-size: 25px;
  margin: 0;
  font-weight: 400;
}
.blog-card--simple-excerpt {
  font-size: 16px;
  margin: 30px 0;
}
.blog-card--simple-more {
  font-size: 17px;
  color: #0398F4;
  display: flex;
  gap: 5px;
  align-items: center;
}
.blog-card--simple-more svg {
  height: 13px;
}
.blog-card--simple-more svg path {
  fill: #0398F4;
}
.blog-card--highlight-content {
  font-size: 16px;
  color: #1D276C;
  display: flex;
}
.blog-card--highlight-content h3 {
  font-weight: 400;
  margin-top: 0;
  font-size: 16px;
}

/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:PRODUCT CARD]
   ========================================================================== */
.breadcrumbs-item {
  display: inline-block;
  padding: 9px 10px 9px 10px;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .breadcrumbs-item {
    padding: 5px 4px 5px 4px;
    font-size: 11px;
  }
}
.breadcrumbs-item:hover {
  color: #fff;
  text-decoration: none;
  opacity: 0.4;
}
.breadcrumbs-item:first-child {
  padding-left: 0 !important;
}
.breadcrumbs-item.active::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 2.1px;
  background-color: #0398F4;
}
.breadcrumbs-separator {
  color: #aaa;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
.breadcrumbs-separator img {
  width: 14px;
  height: 14px;
  margin-bottom: -2px;
}
@media only screen and (max-width: 1024px) {
  .breadcrumbs-separator img {
    width: 10px;
    height: 10px;
    margin-bottom: -1px;
  }
}
.breadcrumbs-current {
  color: #aaa;
}
.breadcrumbs-current:hover {
  color: #aaa;
}

/* ==========================================================================
   Print styles.
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
      * Don't show links that are fragment identifiers,
      * or use the `javascript:` pseudo protocol
      */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
      * Printing Tables:
      * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
      */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
/* ==========================================================================
   PSDGator SCSS Styles [PARTIALS:FOOTER]
   ========================================================================== */
/**
 *
 * Search form block
 *
 */
.search-form {
  padding: 20px;
}
.search-form__input {
  margin-right: 10px;
}

.posts-wrapper {
  display: flex;
  flex-direction: column;
}

.post-item {
  margin-bottom: 24px;
  display: flex;
  background-color: #1D276C;
}
.post-item__image img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.post-item__content {
  padding: 43px 59px 22px;
}
.post-item__content-wrapper .title {
  color: #fff;
  margin: 0 0 23px 0;
  font-size: 24px;
}
.post-item__content-wrapper .description {
  color: #fff;
  font-size: 14px;
}
.post-item__content-wrapper .btn-flex {
  display: flex;
  justify-content: flex-end;
}
.post-item__content-wrapper .btn {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.post-item.content-left {
  flex-direction: row-reverse;
}
.main-content.announcements {
  padding: 150px 0;
  font-size: 28px;
}
.main-content.announcements .title-row {
  border-bottom: 6px solid #DCDDDE;
  display: flex;
  padding-bottom: 6px;
  position: relative;
  margin-bottom: 70px;
  justify-content: space-between;
  align-items: flex-end;
}
.main-content.announcements .title-row::after {
  content: "";
  background: #1D276C;
  display: flex;
  position: absolute;
  height: 6px;
  width: 25%;
  left: 0;
  bottom: -6px;
}
.main-content.announcements .title-row h2 {
  font-weight: bold;
  font-size: 35px;
}
.main-content.announcements .title-row--s {
  margin-top: 50px;
}
.main-content.announcements .title-row--s:first-child {
  margin-top: 11px;
}
.main-content.announcements .title-row--s h2 {
  font-size: 26px;
}
.main-content.announcements .title-row--col {
  flex-direction: column;
}
.main-content.announcements .title-row .filter {
  font-size: 16px;
  gap: 20px;
  display: flex;
  margin-bottom: 14px;
}
.main-content.announcements .title-row .filter-title {
  font-weight: 600;
  color: #0F68AC;
}
.main-content.announcements .row.featured {
  margin-bottom: 150px;
}

.main-content.contact {
  background-color: #DCDDDE;
  font-size: 28px;
}
.main-content.contact .sec-contact-form {
  padding: 150px 0;
}
.main-content.contact .sec-contact-form h2 {
  font-weight: bold;
  font-size: 24px;
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 10px;
}
.main-content.contact .sec-contact-form h3 {
  color: #0398F4;
  font-size: 17px;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  margin-bottom: 70px;
}
.main-content.contact .sec-contact-form .contact-form-top {
  display: flex;
  gap: 20px;
  margin-bottom: 70px;
}
@media only screen and (max-width: 1024px) {
  .main-content.contact .sec-contact-form .contact-form-top {
    flex-direction: column;
  }
}
.main-content.contact .sec-contact-form .contact-form-top input {
  flex: 1;
  padding: 10px 50px;
  border-radius: 50px;
  font-size: 21px;
  border: 0;
  outline: 0;
  box-shadow: 0 6px 20px -10px black;
}
.main-content.contact .sec-contact-form .contact-form-bottom {
  display: flex;
}
.main-content.contact .sec-contact-form .contact-form-bottom textarea {
  width: 100%;
  height: 400px !important;
  max-height: 400px !important;
  min-height: 400px !important;
  padding: 35px 50px;
  font-size: 21px;
  border-radius: 50px;
  border: 0;
  outline: 0;
}
.main-content.contact .sec-contact-form .contact-form-submit {
  margin: auto;
  display: flex;
  margin-top: 20px;
  font-size: 21px;
  background: #1D276C;
  padding: 10px 35px;
  color: #fff;
  border-radius: 50px;
  border: 0;
  outline: 0;
  cursor: pointer;
}
.main-content.contact .sec-operation-centers {
  background: url(../img/hq-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 150px 0;
}
.main-content.contact .sec-operation-centers .hq-wrapper {
  max-width: 800px;
  padding: 50px;
  margin: auto;
  background: #0398F4;
  color: #fff;
  border-radius: 50px;
  border-top-left-radius: 0;
  margin-bottom: 150px;
}
.main-content.contact .sec-operation-centers .hq-wrapper .hq-content {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
}
.main-content.contact .sec-operation-centers .hq-wrapper .hq-content img {
  margin-top: -110px;
}
.main-content.contact .sec-operation-centers .hq-wrapper .hq-content h3 {
  color: #1D276C;
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}
.main-content.contact .sec-operation-centers .hq-wrapper .hq-content h3::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 1px;
  background: #1D276C;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.main-content.contact .sec-operation-centers .hq-wrapper .hq-content h4 {
  font-weight: bold;
  font-size: 27px;
  text-align: center;
}
.main-content.contact .sec-operation-centers .hq-wrapper .hq-content p {
  font-size: 29px;
  margin: 0;
  text-align: center;
  margin-bottom: 20px;
}
.main-content.contact .sec-operation-centers .hq-wrapper .hq-content span {
  font-size: 18px;
  text-align: center;
}
.main-content.contact .sec-operation-centers .location-card {
  background: rgba(255, 255, 255, 0.7803921569);
  padding: 30px;
  border-radius: 50px;
  border-bottom-left-radius: 0;
  height: 100%;
}
.main-content.contact .sec-operation-centers .location-card h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  margin-top: 0;
  padding-top: 10px;
}
.main-content.contact .sec-operation-centers .location-card h4::before {
  content: "";
  display: block;
  width: 30px;
  height: 5px;
  background: #0398F4;
  position: absolute;
  top: 0;
  left: 0;
}
.main-content.contact .sec-operation-centers .location-card .location-card-address {
  font-size: 16px;
  position: relative;
  padding-left: 35px;
}
.main-content.contact .sec-operation-centers .location-card .location-card-address img {
  position: absolute;
  top: 0;
  left: 0;
}
.main-content.contact .sec-operation-centers .location-card .location-card-contact {
  font-size: 16px;
  list-style: none;
  margin: 0;
  position: relative;
  padding-left: 35px;
}
.main-content.contact .sec-operation-centers .location-card .location-card-contact img {
  position: absolute;
  top: 0;
  left: 0;
}
.main-content.contact .sec-operation-centers .locations-title {
  text-align: center;
  color: #0398F4;
  font-size: 35px;
}

.main-content.presentations {
  padding: 150px 0;
  font-size: 28px;
  background: radial-gradient(circle at top left, #575757 0%, #2b2b2b 80%);
}
.main-content.presentations h2 {
  font-weight: bold;
  font-size: 35px;
  border-bottom: 6px solid #999999;
  display: flex;
  padding-bottom: 6px;
  position: relative;
  margin-bottom: 70px;
  color: #fff;
}
.main-content.presentations h2::after {
  content: "";
  background: #0398F4;
  display: flex;
  position: absolute;
  height: 6px;
  width: 25%;
  left: 0;
  bottom: -6px;
}

/*# sourceMappingURL=bundle.css.map */
