@charset "UTF-8";
/* ____________________________________________ */
/* ________GET-VW__________ */
/* ____________________________________________ */
/* ____________________________________________ */
/* ________GET-VH__________ */
/* ____________________________________________ */
/* ____________________________________________ */
/* ________GET-EM__________ */
/* ____________________________________________ */
/* ____________________________________________ */
/* ________GET-REM__________ */
/* ____________________________________________ */
/* ____________________________________________ */
/* ________FONT__________ */
/* ____________________________________________ */
/* ____________________________________________ */
/* ________COLOR__________ */
/* ____________________________________________ */
/* ____________________________________________ */
/* ________BORDER RADIUS__________ */
/* ____________________________________________ */
/* ____________________________________________ */
/* ________INPUT FIELD__________ */
/* ____________________________________________ */
/* ____________________________________________ */
/* ________BOX SHADOW__________ */
/* ____________________________________________ */
/* ____________________________________________ */
/* ________OTHER__________ */
/* ____________________________________________ */
:root {
  /* ____________________________________________ */
  /* ________GUTTER__________ */
  /* ____________________________________________ */
  --gutter-xsmall: 5px;
  --gutter-small: 15px;
  --gutter: 20px;
  --gutter-medium: 25px;
  --gutter-large: 30px;
  --gutter-xlarge: 40px;
  --gutter-xxlarge: 56px;
  --gutter-xxxlarge: 72px;
  /* ____________________________________________ */
  /* ________NAV GUTTER__________ */
  /* ____________________________________________ */
  /* CONTAINER */
  /* HEADER */
  /* HEADER STICKY */
  --header-height-sticky: 80px;
  /* SLIDE */
  /* ____________________________________________ */
  /* ________OTHER__________ */
  /* ____________________________________________ */
  --container-fluid-gap-inline: calc((100vw - (var(--container) - var(--gutter))) / 2);
}
@media (max-width: 991px) {
  :root {
    --gutter-fluid: 20px;
  }
}
@media (min-width: 992px) {
  :root {
    --gutter-fluid: 30px;
  }
}
@media (min-width: 1450px) {
  :root {
    --gutter-fluid: 50px;
  }
}
@media (min-width: 1750px) {
  :root {
    --gutter-fluid: 120px;
  }
}
@media (min-width: 992px) {
  :root {
    --nav-gutter: 18px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  :root {
    --nav-gutter: 12px;
  }
}
@media (min-width: 1200px) {
  :root {
    --container: 1260px;
  }
}
@media (min-width: 1750px) {
  :root {
    --container: 1300px;
  }
}
@media (max-width: 479px) {
  :root {
    --container: 390px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  :root {
    --container: 600px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  :root {
    --container: 768px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  :root {
    --container: 992px;
  }
}
@media (min-width: 768px) {
  :root {
    --header-height: 120px;
  }
}
@media (max-width: 767px) {
  :root {
    --header-height: 70px;
  }
}
@media (min-width: 1200px) {
  :root {
    --slide-height: 100vh;
  }
}
@media (max-width: 479px) {
  :root {
    --slide-height: 350px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  :root {
    --slide-height: 500px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  :root {
    --slide-height: 650px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  :root {
    --slide-height: 700px;
  }
}

/* stylelint-disable declaration-no-important */
/* __________________Reset_____________________ */
/* elad.medium.com/normalize-css-or-css-reset-9d75175c5d1e */
/* https://www.youtube.com/shorts/2lyDv0wOQuQ */
/* About container -> https://habr.com/ru/post/463923/ */
/* ____________________________________________ */
/* _________________General____________________ */
/* ____________________________________________ */
/* all: unset; */
html {
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid-column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-repeat: no-repeat;
}

*,
*::before,
*::after {
  -webkit-column-break-inside: inherit;
     -moz-column-break-inside: inherit;
          break-inside: inherit;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  background-repeat: inherit;
}

* {
  min-width: 0;
}

*::before,
*::after {
  vertical-align: inherit;
  text-decoration: inherit;
}

/* ____________________________________________ */
/* _______________Typography___________________ */
/* ____________________________________________ */
/* html */
:where(:root) {
  overflow-wrap: break-word;
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

/* :root */
:where(html) {
  font-family: system-ui, -apple-system, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
}

:where(code, kbd, samp, pre) {
  font-family: ui-monospace, "Menlo", "Consolas", "Roboto Mono", "Ubuntu Monospace", "Noto Mono", "Oxygen Mono", "Liberation Mono", monospace, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

:where(body) {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizespeed;
}

:where(cite, address) {
  font-style: normal;
}

/* ____________________________________________ */
/* links */
:where(a) {
  display: inline-block;
  overflow-anchor: none;
  text-decoration: none;
  color: inherit;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: 0.25em;
}

/* ____________________________________________ */
/* paragraph */
:where(p) {
  margin: 0;
  text-wrap: balance;
}

/* ____________________________________________ */
/* headers */
:where(h1, h2, h3, h4, h5, h6) {
  margin: 0;
  font-weight: normal;
  line-height: 1.3;
  text-wrap: balance;
}

:where(h1) {
  font-size: 32px;
}

:where(h2) {
  font-size: 24px;
}

:where(h3, h4, h5, h6) {
  font-size: 18px;
}

/* ____________________________________________ */
/* add typography inheritance | input */
::-webkit-input-placeholder {
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}
::-moz-placeholder {
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}
:-ms-input-placeholder {
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}
::-ms-input-placeholder {
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}
:where(button, input, select, textarea, optgroup, option),
::placeholder,
::file-selector-button {
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}

/* ____________________________________________ */
/* images */
:where(img, svg, picture) {
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}

:where(img,
svg,
picture,
iframe,
input,
video,
audio,
select,
textarea,
details,
dialog,
progress,
canvas) {
  height: auto;
  max-width: 100%;
}

:where(figure) {
  margin: 0;
}

/* ____________________________________________ */
/* lists */
:where(ul, ol, dl) {
  list-style-type: none;
  list-style-position: inside;
  margin: 0;
  padding: 0;
}

::marker {
  color: inherit;
}

/* ____________________________________________ */
/* form cursor */
:where(form) {
  cursor: default;
}

/* form border */
:where(fieldset) {
  margin: 0;
  padding: 0;
}

/* btn reset */
:where(button, [type=buttton]) {
  overflow-anchor: none;
  border-width: 0;
  padding: 0;
  background-color: transparent;
}

/* input reset */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-results-button,
[type=search]::-webkit-search-decoration,
[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
          appearance: none;
}

[type=password]::-ms-reveal {
  display: none;
}

[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
}

/* ____________________________________________ */
/* add cursor pointer */
dialog::-webkit-backdrop, [popover]::-webkit-backdrop {
  cursor: pointer;
}
:where(a,
label,
button,
summary,
[type=button],
[type=reset],
[type=submit],
[type=range],
[type=color],
[type=checkbox],
[type=radio]),
dialog::backdrop,
[popover]::backdrop,
[type=file]::file-selector-button,
[type=number]::-webkit-inner-spin-button,
[type=search]::-webkit-search-cancel-button,
[type=date]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}

/* ____________________________________________ */
/* _________________Outline____________________ */
/* ____________________________________________ */
/* keyboard Tabs */
:where(a, button, summary, select, textarea, input) {
  outline-width: 0;
  outline-color: transparent;
}

:where([type=file]):focus {
  outline-width: 0;
}

:where(a,
button,
summary,
[type=button],
[type=reset],
[type=submit],
[type=range],
[type=color],
[type=radio],
[type=checkbox],
[tabindex="0"]):focus-visible {
  outline: 0.125rem solid #4682b4;
}

:where(select,
textarea,
input:not([type=button],
[type=reset],
[type=submit],
[type=range],
[type=color],
[type=radio],
[type=checkbox],
[type=file])):focus,
[type=file]::file-selector-button:focus {
  outline: 0.125rem solid transparent;
}

/* outline-offset */
:where(summary,
button,
input:not([type=checkbox], [type=radio], [type=color]),
select,
textarea),
[type=file]::file-selector-button {
  outline-offset: 0.1875rem;
}

:where([type=checkbox], [type=radio], [tabindex="0"]) {
  outline-offset: 0.0625rem;
}

/**
 * 1. Correct the border color in all browsers.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
  border: thin solid; /* 1 */
  border-color: #555 #808080 #808080 #555; /* 1 */
  height: 0; /* 2 */
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 2 */
}

/**
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
  overflow: auto; /* 3 */
  font-size: inherit; /* 2 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

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

/**
 * 2. Correct the odd `em` font sizing in all browsers.
 */
:where(code, kbd, samp) {
  font-size: inherit; /* 2 */
}

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

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
:where(svg:not([fill])) {
  fill: currentcolor;
}

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
  border-color: #a0a0a0; /* 2 */
  border-collapse: collapse; /* 1 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
  margin: 0;
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
:where(button, select) {
  text-transform: none;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, [type=button i], [type=reset i], [type=submit i]) {
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(fieldset) {
  border: 0.0625rem solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
:where(progress) {
  vertical-align: middle;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 2 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 */
:where([type=search i]) {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield; /* 1 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
/* stylelint-disable-next-line selector-no-vendor-prefix */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}
::placeholder,
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

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

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
:where(button,
input:is([type=button i], [type=color i], [type=reset i], [type=submit i]))::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:where(button,
input:is([type=button i], [type=color i], [type=reset i], [type=submit i]))::-moz-focusring {
  outline: 0.0625rem dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:where(:-moz-ui-invalid) {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
  position: fixed;
  inset: 0;
  margin: auto;
  border: solid;
  padding: 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: #000;
  background-color: #fff;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
:where([aria-busy=true i]) {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
:where([aria-controls]) {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
:where([aria-disabled=true i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
:where([aria-hidden=false i][hidden]) {
  display: initial;
}

:where([aria-hidden=false i][hidden]:not(:focus)) {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

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

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-rendering: optimizeLegibility;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
}

img {
  vertical-align: middle;
}

blockquote, dl, dd, h1, h2, h3, h4, h5, h6, figure, p, pre, fieldset, ul, ol, menu, form {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

input {
  border: 0 none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

button {
  background: none;
  cursor: pointer;
}

button, fieldset, iframe {
  border: 0;
}

fieldset, ul, ol, button, menu {
  padding: 0;
}

ol, ul {
  list-style: none;
}

textarea {
  resize: vertical;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

td {
  padding: 0;
}

svg:not(.ui-not) {
  width: 1em;
  height: 1em;
}

button {
  outline: 0;
}

.icon {
  font-size: 18px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}

.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

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

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownLarge {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInDownLarge {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeInDownLarge {
  -webkit-animation-name: fadeInDownLarge;
          animation-name: fadeInDownLarge;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpLarge {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUpLarge {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeInUpLarge {
  -webkit-animation-name: fadeInUpLarge;
          animation-name: fadeInUpLarge;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
          animation-name: bounce;
}

@-webkit-keyframes swing {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, -40px, 0);
            transform: translate3d(0, -40px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }
}

@keyframes swing {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  50% {
    -webkit-transform: translate3d(0, -40px, 0);
            transform: translate3d(0, -40px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }
}
@-webkit-keyframes swingIcon {
  from {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
}
@keyframes swingIcon {
  from {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
}

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

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

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
            transform: scale3d(1.5, 1.5, 1.5);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
            transform: scale3d(1.5, 1.5, 1.5);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
          animation-name: pulse;
}

@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
            transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
    opacity: 0;
  }
}

@keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
            transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
@-webkit-keyframes pulsateCenter {
  0% {
    -webkit-transform: translateY(-50%) translateX(-50%) scale(0.1, 0.1);
            transform: translateY(-50%) translateX(-50%) scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-50%) translateX(-50%) scale(1.2, 1.2);
            transform: translateY(-50%) translateX(-50%) scale(1.2, 1.2);
    opacity: 0;
  }
}
@keyframes pulsateCenter {
  0% {
    -webkit-transform: translateY(-50%) translateX(-50%) scale(0.1, 0.1);
            transform: translateY(-50%) translateX(-50%) scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-50%) translateX(-50%) scale(1.2, 1.2);
            transform: translateY(-50%) translateX(-50%) scale(1.2, 1.2);
    opacity: 0;
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes rotateText {
  0% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes rotateText {
  0% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

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

.container {
  width: 100%;
  padding-left: calc(var(--gutter));
  padding-right: calc(var(--gutter));
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 479px) {
  .container {
    max-width: 390px;
  }
}
@media (min-width: 480px) {
  .container {
    max-width: 600px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 992px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: var(--container);
  }
}
.container-fluid {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter-fluid);
  padding-right: var(--gutter-fluid);
}
@media (min-width: 2020px) {
  .container-fluid {
    max-width: 2000px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .container-fluid {
    max-width: 992px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .container-fluid {
    max-width: 768px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .container-fluid {
    max-width: 600px;
  }
}
@media (max-width: 479px) {
  .container-fluid {
    max-width: 390px;
  }
}

.row {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: calc(-1 * var(--gutter) / 2);
  margin-right: calc(-1 * var(--gutter) / 2);
}
@media (min-width: 992px) {
  .row {
    row-gap: var(--gutter);
  }
}

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

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

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-left: calc(var(--gutter) / 2);
  padding-right: calc(var(--gutter) / 2);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 480px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
            flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
.ui-d-none {
  display: none !important;
}

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

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

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

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

@media (max-width: 479px) {
  .ui-d-sm-none {
    display: none !important;
  }
  .ui-sm-d-inline-block {
    display: inline-block !important;
  }
  .ui-sm-d-block {
    display: block !important;
  }
  .ui-sm-d-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .ui-sm-d-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (max-width: 767px) {
  .ui-md-d-none {
    display: none !important;
  }
  .ui-md-d-inline-block {
    display: inline-block !important;
  }
  .ui-md-d-block {
    display: block !important;
  }
  .ui-md-d-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .ui-md-d-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (max-width: 991px) {
  .ui-lg-d-none {
    display: none !important;
  }
  .ui-lg-d-inline-block {
    display: inline-block !important;
  }
  .ui-lg-d-block {
    display: block !important;
  }
  .ui-lg-d-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .ui-lg-d-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (max-width: 1199px) {
  .ui-xl-d-none {
    display: none !important;
  }
  .ui-xl-d-inline-block {
    display: inline-block !important;
  }
  .ui-xl-d-block {
    display: block !important;
  }
  .ui-xl-d-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .ui-xl-d-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media print {
  .ui-print-d-none {
    display: none !important;
  }
  .ui-print-d-inline-block {
    display: inline-block !important;
  }
  .ui-print-d-block {
    display: block !important;
  }
  .ui-print-d-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
  }
  .ui-print-d-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .ui-gutter-xsmall {
    margin-left: calc(-1 * var(--gutter-xsmall));
    margin-right: calc(-1 * var(--gutter-xsmall));
    row-gap: calc(var(--gutter-xsmall) * 2);
  }
  .ui-gutter-xsmall > .col,
  .ui-gutter-xsmall > [class*=col-] {
    padding-left: var(--gutter-xsmall);
    padding-right: var(--gutter-xsmall);
  }
  .ui-gutter {
    margin-left: calc(-1 * var(--gutter));
    margin-right: calc(-1 * var(--gutter));
    row-gap: calc(var(--gutter) * 2);
  }
  .ui-gutter > .col,
  .ui-gutter > [class*=col-] {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
  .ui-gutter-small {
    margin-left: calc(-1 * var(--gutter-small));
    margin-right: calc(-1 * var(--gutter-small));
    row-gap: calc(var(--gutter-small) * 2);
  }
  .ui-gutter-small > .col,
  .ui-gutter-small > [class*=col-] {
    padding-left: var(--gutter-small);
    padding-right: var(--gutter-small);
  }
  .ui-gutter-medium {
    margin-left: calc(-1 * var(--gutter-medium));
    margin-right: calc(-1 * var(--gutter-medium));
    row-gap: calc(var(--gutter-medium) * 2);
  }
  .ui-gutter-medium > .col,
  .ui-gutter-medium > [class*=col-] {
    padding-left: calc(var(--gutter-medium));
    padding-right: calc(var(--gutter-medium));
  }
  .ui-gutter-large {
    margin-left: calc(-1 * var(--gutter-large));
    margin-right: calc(-1 * var(--gutter-large));
    row-gap: calc(var(--gutter-large) * 2);
  }
  .ui-gutter-large > .col,
  .ui-gutter-large > [class*=col-] {
    padding-left: var(--gutter-large);
    padding-right: var(--gutter-large);
  }
  .ui-gutter-xlarge {
    margin-left: calc(-1 * var(--gutter-xlarge));
    margin-right: calc(-1 * var(--gutter-xlarge));
    row-gap: calc(var(--gutter-xlarge) * 2);
  }
  .ui-gutter-xlarge > .col,
  .ui-gutter-xlarge > [class*=col-] {
    padding-left: var(--gutter-xlarge);
    padding-right: var(--gutter-xlarge);
  }
}
@media (min-width: 1200px) {
  .ui-gutter-xxlarge {
    margin-left: calc(-1 * var(--gutter-xxlarge));
    margin-right: calc(-1 * var(--gutter-xxlarge));
    row-gap: calc(var(--gutter-xxlarge) * 2);
  }
  .ui-gutter-xxlarge > .col,
  .ui-gutter-xxlarge > [class*=col-] {
    padding-left: var(--gutter-xxlarge);
    padding-right: var(--gutter-xxlarge);
  }
  .ui-gutter-xxxlarge {
    margin-left: calc(-1 * var(--gutter-xxxlarge));
    margin-right: calc(-1 * var(--gutter-xxxlarge));
    row-gap: calc(var(--gutter-xxxlarge) * 2);
  }
  .ui-gutter-xxxlarge > .col,
  .ui-gutter-xxxlarge > [class*=col-] {
    padding-left: var(--gutter-xxxlarge);
    padding-right: var(--gutter-xxxlarge);
  }
}
.ui-gutter-5 {
  margin-left: calc(-1 * var(--gutter-xsmall)) !important;
  margin-right: calc(-1 * var(--gutter-xsmall)) !important;
  row-gap: calc(var(--gutter-xsmall) * 2);
}

.ui-gutter-5 > .col,
.ui-gutter-5 > [class*=col-] {
  padding-left: calc(var(--gutter-xsmall)) !important;
  padding-right: calc(var(--gutter-xsmall)) !important;
}

.ui-gutter-1 {
  margin-left: -1px !important;
  margin-right: -1px !important;
  row-gap: 2px;
}

.ui-gutter-1 > .col,
.ui-gutter-1 > [class*=col-] {
  padding-left: 1px !important;
  padding-right: 1px !important;
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background-color: #1f1f1f;
  opacity: 0;
  -webkit-transition-duration: inherit;
          transition-duration: inherit;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
          transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.85;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
          transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  -webkit-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #fff;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/*.fancybox-infobar {
  height: auto;
  left: 42px;
  top: auto;
  bottom: 180px;
  padding: 0;
  font-size: 7.4rem;
  line-height: 1;
  color: #fff;
  mix-blend-mode: normal;
  text-shadow: 0 3px 6px rgba(black, .16);
}*/
.fancybox-toolbar {
  right: 0;
  top: 0;
}
.fancybox-toolbar button:not(:last-child) {
  display: none !important;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}
@media (min-width: 768px) {
  .fancybox-slide.fancybox-slide--pdf {
    padding-left: 200px;
    padding-right: 200px;
  }
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
  border-radius: 20px;
}

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
          animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: #fff;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -ms-transform-origin: top left;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */
.fancybox-button {
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

/*.fancybox-button--close {
  position: fixed;
  display: block !important;
  width: 60px;
  height: 60px;
  right: 50px !important;
  top: 50px !important;
  padding: 0 !important;
  font-size: 40px;
  color: #fff !important;
  background: none;
  text-shadow: 0 3px 6px rgba(0,0,0,0.16);
}*/
.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #fff;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

/* Fix IE11 */
.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -ms-transform: scaleX(0);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -ms-transform-origin: 0;
  -webkit-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  z-index: 99998;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

/* Navigation arrows */
.fancybox-navigation {
  position: absolute;
  right: 50px;
  bottom: 70px;
}

.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 65px;
  opacity: 0;
  position: relative;
  cursor: pointer;
  width: 50px;
}
.fancybox-navigation .fancybox-button:not(:last-child) {
  margin-right: var(--gutter);
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
}

.fancybox-navigation .fancybox-button--arrow_right {
  right: 0;
}

/* Caption */
.fancybox-caption {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), color-stop(50%, rgba(0, 0, 0, 0.3)), color-stop(65%, rgba(0, 0, 0, 0.15)), color-stop(75.5%, rgba(0, 0, 0, 0.075)), color-stop(82.85%, rgba(0, 0, 0, 0.037)), color-stop(88%, rgba(0, 0, 0, 0.019)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 16px;
  font-weight: 700;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

/*@supports (padding: max(0px)) {
  .fancybox-caption {
      padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
  }
}*/
.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #fff;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
  -webkit-animation: fancybox-rotate 1s linear infinite;
          animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

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

@keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* Transition effects */
.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
          transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
          transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
          transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -ms-transform: rotate(-360deg);
  -webkit-transform: rotate(-360deg);
          transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -ms-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
          transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
          transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
          transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
          transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
          transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
          transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }
  .fancybox-slide--image {
    padding: 6px 0;
  }
  .fancybox-close-small {
    right: -6px;
  }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }
  /*@supports (padding: max(0px)) {
      .fancybox-caption {
          padding-left: max(12px, env(safe-area-inset-left));
          padding-right: max(12px, env(safe-area-inset-right));
      }
  }*/
}
/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
/**
 * Swiper 10.1.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: August 1, 2023
 */
/* FONT_START */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #fff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  position: relative;
  overflow: hidden;
  overflow: clip;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  display: block;
}
.swiper:not(.ui-no-mx-auto) {
  margin-left: auto;
  margin-right: auto;
}
.swiper:not(.slide) {
  z-index: 1;
}
.swiper:not(.slide) .swiper-wrapper {
  z-index: 1;
}
.swiper:not(.slide) .swiper-android .swiper-slide,
.swiper:not(.slide) .swiper-ios .swiper-slide,
.swiper:not(.slide) .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}
.swiper:not(.slide) .swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
          transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
      scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
      -ms-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  text-rendering: auto;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}

.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

/* Navigation font end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 6px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 6px));
  display: inline-block;
  border-radius: 7px;
  -webkit-transition: width 0.35s;
  transition: width 0.35s;
  background: var(--swiper-theme-color);
}
@media (max-width: 767px) {
  .swiper-pagination-bullet {
    opacity: 0.3;
  }
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
@media (min-width: 768px) {
  .swiper-pagination-bullet-active {
    width: 22px;
  }
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

@media (min-width: 768px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 11px);
  }
}
@media (max-width: 767px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 6px);
  }
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Zoom container styles end */
.swiper-slide-zoomed {
  cursor: move;
  -ms-touch-action: none;
      touch-action: none;
}

/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper:not(.ui-no-mx-auto) .swiper-free-mode > .swiper-wrapper {
  margin: 0 auto;
}

.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

/* Cube slide shadows start */
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Cube slide shadows end */
.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

/* Flip slide shadows start */
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Flip slide shadows end */
.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.swiper-buttons {
  z-index: 2;
}
.swiper-buttons:not([class*=ui-size-]) .swiper-button-next .icon,
.swiper-buttons:not([class*=ui-size-]) .swiper-button-prev .icon {
  font-size: 14px;
}
.swiper-buttons:not([class*=ui-color-]) .swiper-button-next,
.swiper-buttons:not([class*=ui-color-]) .swiper-button-prev {
  border: 1px solid #fff;
}
.swiper-buttons:not([class*=ui-color-]) .swiper-button-next .icon,
.swiper-buttons:not([class*=ui-color-]) .swiper-button-prev .icon {
  color: #fff;
}
.swiper-buttons:not([class*=ui-color-]) .swiper-button-next:hover,
.swiper-buttons:not([class*=ui-color-]) .swiper-button-prev:hover {
  background-color: #fff;
}
.swiper-buttons:not([class*=ui-color-]) .swiper-button-next:hover .icon,
.swiper-buttons:not([class*=ui-color-]) .swiper-button-prev:hover .icon {
  color: #012585;
}
.swiper-buttons.ui-color-dark .swiper-button-next,
.swiper-buttons.ui-color-dark .swiper-button-prev {
  border: 1px solid #1f1f1f;
}
.swiper-buttons.ui-color-dark .swiper-button-next .icon,
.swiper-buttons.ui-color-dark .swiper-button-prev .icon {
  color: #1f1f1f;
}
.swiper-buttons.ui-color-dark .swiper-button-next:hover,
.swiper-buttons.ui-color-dark .swiper-button-prev:hover {
  background-color: #1f1f1f;
}
.swiper-buttons.ui-color-dark .swiper-button-next:hover .icon,
.swiper-buttons.ui-color-dark .swiper-button-prev:hover .icon {
  color: #fff;
}
.swiper-buttons:not([class*=ui-pos-]):not([class*=ui-style-]) {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
}
.swiper-buttons:not([class*=ui-pos-]):not([class*=ui-style-]) .swiper-button-next,
.swiper-buttons:not([class*=ui-pos-]):not([class*=ui-style-]) .swiper-rtl .swiper-button-prev {
  right: 0;
}
.swiper-buttons:not([class*=ui-pos-]):not([class*=ui-style-]) .swiper-button-prev,
.swiper-buttons:not([class*=ui-pos-]):not([class*=ui-style-]) .swiper-rtl .swiper-button-next {
  left: 0;
}
.swiper-buttons.ui-pos-bottom-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  bottom: 50px;
  right: 0;
}
.swiper-buttons.ui-pos-bottom-right .swiper-button-prev,
.swiper-buttons.ui-pos-bottom-right .swiper-button-next {
  position: relative;
  left: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.swiper-buttons.ui-pos-bottom-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  bottom: 20px;
  left: 0;
}
.swiper-buttons.ui-pos-bottom-left .swiper-button-prev,
.swiper-buttons.ui-pos-bottom-left .swiper-button-next {
  position: relative;
  left: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.swiper-buttons.ui-pos-bottom-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.swiper-buttons.ui-pos-bottom-center .swiper-button-prev,
.swiper-buttons.ui-pos-bottom-center .swiper-button-next {
  position: relative;
  left: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.swiper-buttons.ui-pos-top-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  right: 0;
  top: 45px;
}
.swiper-buttons.ui-pos-top-right .swiper-button-prev,
.swiper-buttons.ui-pos-top-right .swiper-button-next {
  position: relative;
  left: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.swiper-buttons .swiper-button-next,
.swiper-buttons .swiper-button-prev {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 99px;
}
.swiper-buttons .swiper-button-next:not([class*=ui-size-]),
.swiper-buttons .swiper-button-prev:not([class*=ui-size-]) {
  width: 50px;
  height: 50px;
}
.swiper-buttons .swiper-button-next.ui-size-large,
.swiper-buttons .swiper-button-prev.ui-size-large {
  width: 60px;
  height: 60px;
}
.swiper-buttons .swiper-button-next::after,
.swiper-buttons .swiper-button-prev::after {
  display: none !important;
}
.swiper-buttons.ui-style-special {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}
.swiper-buttons.ui-style-special .swiper-button-prev,
.swiper-buttons.ui-style-special .swiper-button-next {
  position: relative;
  left: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.swiper-pagination.ui-swiper-slide {
  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 (min-width: 992px) {
  .swiper-pagination.ui-swiper-slide {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    right: 0;
    bottom: 135px !important;
  }
}
@media (max-width: 991px) {
  .swiper-pagination.ui-swiper-slide {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    bottom: 40px;
  }
}
.swiper-pagination.ui-swiper-slide .swiper-pagination-bullet {
  border-radius: 99px;
  position: relative;
}
@media (min-width: 768px) {
  .swiper-pagination.ui-swiper-slide .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
  }
}
@media (max-width: 767px) {
  .swiper-pagination.ui-swiper-slide .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
.swiper-pagination.ui-swiper-slide .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  border: 1px solid #fff;
  border-radius: 99px;
  will-change: transform, opacity;
  opacity: 0;
  -webkit-transform: scale(0.5);
      -ms-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
@media (min-width: 768px) {
  .swiper-pagination.ui-swiper-slide .swiper-pagination-bullet::before {
    inset: -7px;
  }
}
@media (max-width: 767px) {
  .swiper-pagination.ui-swiper-slide .swiper-pagination-bullet::before {
    inset: -5px;
  }
}
.swiper-pagination.ui-swiper-slide .swiper-pagination-bullet-active::before {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.header {
  position: relative;
  z-index: 1001;
  background-color: #012585;
}
@media (min-width: 768px) {
  .header {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}
@media (max-width: 767px) {
  .header {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}
.header-container {
  height: var(--header-height);
}
.header-logo a {
  display: block;
  position: relative;
}
@media (min-width: 768px) {
  .header-logo img {
    width: 150px;
  }
}
@media (max-width: 767px) {
  .header-logo img {
    width: 85px;
  }
}
.header-social a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: var(--header-height);
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
.header-social a:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.header-social a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #89A9FF;
  z-index: -1;
  width: 0;
  will-change: width;
  -webkit-transition: width 0.35s ease-in-out;
  transition: width 0.35s ease-in-out;
}
.header-social a:hover {
  color: #232020;
}
.header-social a:hover::before {
  left: 0;
  right: inherit;
  width: 100%;
}
.header-hamburger {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media (min-width: 992px) {
  .header-hamburger {
    display: none;
  }
}
.header-hamburger .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  will-change: transform;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
.header-hamburger .btn.is-close {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header-hamburger .btn .icon {
  font-size: 24px;
}

.footer {
  position: relative;
  z-index: 6;
}
@media (min-width: 992px) {
  .footer-contactus {
    position: absolute !important;
    bottom: calc(100% - 60px);
    right: 0;
  }
}
@media (max-width: 991px) {
  .footer-contactus {
    margin-top: -30px;
    padding-inline: 10px;
    padding-bottom: 50px;
  }
}
.footer-top .container {
  position: relative;
}
@media (min-width: 992px) {
  .footer-top .container {
    padding-block: 90px;
  }
}
@media (max-width: 991px) {
  .footer-top .container {
    padding-bottom: 60px;
  }
}
@media (max-width: 991px) {
  .footer-top .container > .footer-row {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
@media (max-width: 991px) {
  .footer-top .container > .footer-row > [class*=col-] {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
}
.footer-links ul li {
  display: block;
}
.footer-links ul li a {
  color: #232020;
  font-size: 14px;
  display: block;
  padding-block: 7px;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
.footer-links ul li a:hover {
  color: rgba(35, 32, 32, 0.65);
}
@media (max-width: 991px) {
  .footer-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer-logo a {
  position: relative;
}
@media (min-width: 992px) {
  .footer-logo a {
    display: block;
  }
}
@media (max-width: 991px) {
  .footer-logo a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 30px;
    width: 230px;
    height: 135px;
    background-color: #fff;
    border-bottom-left-radius: 210px;
    border-bottom-right-radius: 210px;
  }
}
@media (min-width: 768px) {
  .footer-logo img {
    width: 150px;
  }
}
@media (max-width: 767px) {
  .footer-logo img {
    width: 125px;
  }
}
.footer-heading {
  font-size: 16px;
  color: #232020;
  font-weight: 700;
  padding-bottom: 10px;
  position: relative;
}
@media (min-width: 768px) {
  .footer-heading {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .footer-heading {
    margin-bottom: 15px;
  }
}
.footer-heading::before {
  content: "";
  position: absolute;
  background-color: currentColor;
  height: 2px;
  width: 40px;
  bottom: 0;
  left: 0;
}
.footer-text {
  color: #232020;
  font-weight: 300;
}
@media (min-width: 480px) {
  .footer-text {
    font-size: 14px;
  }
}
@media (max-width: 479px) {
  .footer-text {
    font-size: 12px;
  }
}
.footer-text strong {
  font-weight: 700;
}
@media (min-width: 480px) {
  .footer-contact .item:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media (max-width: 479px) {
  .footer-contact .item:not(:last-child) {
    margin-bottom: 5px;
  }
}
.footer-contact .item a {
  display: block;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
@media (min-width: 480px) {
  .footer-contact .item a {
    font-size: 14px;
  }
}
@media (max-width: 479px) {
  .footer-contact .item a {
    font-size: 12px;
  }
}
.footer-contact .item a:hover {
  color: rgba(35, 32, 32, 0.65);
}
.footer-social {
  background-color: #012585;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .footer-social {
    top: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer-social a {
  width: 70px;
  height: 55px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 16px;
  position: relative;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
.footer-social a:not(:last-child)::after {
  content: "";
  position: absolute;
  background-color: rgba(255, 255, 255, 0.15);
}
@media (min-width: 992px) {
  .footer-social a:not(:last-child)::after {
    right: 10px;
    bottom: 0;
    left: 10px;
    height: 1px;
  }
}
@media (max-width: 991px) {
  .footer-social a:not(:last-child)::after {
    right: 0;
    top: 10px;
    bottom: 10px;
    width: 1px;
  }
}
.footer-social a:hover {
  background-color: #89A9FF;
  color: #232020;
}
.footer-bottom .container {
  position: relative;
}
@media (min-width: 992px) {
  .footer-bottom .container {
    padding-top: 60px;
    padding-bottom: 90px;
  }
}
@media (max-width: 991px) {
  .footer-bottom .container {
    padding: 0 60px 60px 60px;
  }
}
.footer-bottom .container::before {
  content: "";
  position: absolute;
}
@media (min-width: 992px) {
  .footer-bottom .container::before {
    top: 0;
    right: 20px;
    left: 20px;
    border-top: 1px solid rgba(35, 32, 32, 0.15);
  }
}
@media (max-width: 991px) {
  .footer-bottom .container::before {
    background-color: #d7e1fd;
    top: 0;
    right: 20px;
    bottom: 0;
    left: 20px;
    border-radius: 10px;
  }
}
@media (min-width: 992px) {
  .footer-bottom .footer-text {
    padding-right: 80px;
  }
}
.footer-bottom .footer-row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 992px) {
  .footer-bottom .footer-row {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media (max-width: 991px) {
  .footer-bottom .footer-row {
    row-gap: 40px;
  }
}
@media (min-width: 992px) {
  .footer-sub {
    background-color: rgba(239, 239, 239, 0.5);
  }
}
.footer-sub .container {
  padding-block: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-sub .text {
  font-size: 12px;
}
@media (max-width: 479px) {
  .footer-sub .text {
    max-width: 205px;
  }
}
.footer-sub .text strong {
  color: #012585;
}
.footer-sub .design {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.page-content__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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px 20px;
}
.page-content__header .title {
  font-weight: 700;
  line-height: 1.4;
  color: #012585;
}
@media (min-width: 992px) {
  .page-content__header .title {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .page-content__header .title {
    font-size: 22px;
  }
}
.page-content__header .date {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgba(35, 32, 32, 0.65);
  font-size: 13px;
  font-weight: 600;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
@media (min-width: 992px) {
  .page-content__header .date {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
}
.page-content__header .date .icon {
  font-size: 13px;
  color: rgba(35, 32, 32, 0.3);
}
.page-content__heading {
  font-weight: 700;
}
.page-content__heading:not([class*=ui-color-]) {
  color: #1f1f1f;
}
.page-content__heading.ui-color-1 {
  color: #012585;
}
.page-content__heading:not([class*=ui-txt-size-]) {
  font-size: 18px;
}
@media (min-width: 992px) {
  .page-content__heading.ui-txt-size-large {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .page-content__heading.ui-txt-size-large {
    font-size: 22px;
  }
}
.page-content__photo {
  overflow: hidden;
  position: relative;
  border-radius: 15px;
}
@media (min-width: 992px) {
  .page-content__photo {
    width: 50%;
    margin-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .page-content__photo:not([class*=ui-width-]) {
    margin-right: 30px;
    float: left;
  }
}
@media (max-width: 991px) {
  .page-content__photo {
    margin-bottom: 30px;
  }
}
.page-content__photo.ui-width-full {
  width: 100%;
}
@media (min-width: 992px) {
  .page-content__photo.ui-width-full:not(.ui-no-height) {
    height: 450px;
  }
}
.page-content__photo img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-content__material {
  position: relative;
}
.page-content__spot {
  font-size: 16px !important;
  color: #1f1f1f;
  font-weight: 700 !important;
}
.page-content__spot * {
  font-size: 16px !important;
  font-weight: 700 !important;
}
.page-content__description {
  line-height: 1.75;
  text-wrap: initial !important;
}
.page-content__description:not([class*=ui-txt-size-]) {
  font-size: 15px;
}
@media (min-width: 768px) {
  .page-content__description.ui-txt-size-large {
    font-size: 20px;
  }
}
.page-content__description.ui-txt-size-small {
  font-size: 14px;
}
.page-content__description:not([class*=ui-txt-color-]) {
  color: #777 !important;
}
.page-content__description.ui-txt-color-dark {
  color: #1f1f1f !important;
}
.page-content__description.ui-txt-center {
  text-align: center;
}
.page-content__description:not(.ui-table-no-zebra) table tbody tr:nth-child(even) {
  background-color: #EFEFEF;
}
.page-content__description hr {
  opacity: 0.2;
}
@media (min-width: 992px) {
  .page-content__description hr {
    margin-block: 40px;
  }
}
@media (max-width: 991px) {
  .page-content__description hr {
    margin-block: 20px;
  }
}
.page-content__description * {
  text-wrap: initial !important;
}
.page-content__description a {
  color: #55acef;
  font-weight: 700;
}
.page-content__description a:hover {
  text-decoration: underline;
}
.page-content__description h1, .page-content__description h2, .page-content__description h3, .page-content__description h4, .page-content__description h5, .page-content__description h6 {
  font-weight: 700;
  color: #1f1f1f;
}
.page-content__description h1 {
  font-size: 32px;
}
.page-content__description h2 {
  font-size: 28px;
}
.page-content__description h3 {
  font-size: 24px;
}
.page-content__description h4 {
  font-size: 20px;
}
.page-content__description h5 {
  font-size: 16px;
}
.page-content__description > p:not(:last-child) {
  margin-bottom: 30px;
}
.page-content__description a {
  color: #55acef;
  font-weight: 600;
}
.page-content__description a:hover {
  text-decoration: underline;
}
.page-content__description strong {
  font-weight: 700 !important;
}
.page-content__description img {
  max-width: 100%;
}
.page-content__description ul,
.page-content__description ol {
  padding-left: var(--gutter);
}
.page-content__description ul li {
  list-style: none;
}
.page-content__description ul li:not(:last-child) {
  margin-bottom: 25px;
}
.page-content__description ul li::before {
  content: "•";
  color: currentColor;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 1em;
}
.page-content__description ol li {
  list-style: none;
}
.page-content__description ol li:not(:last-child) {
  margin-bottom: 25px;
}
.page-content__description ol li::before {
  content: "•";
  color: currentColor;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 1em;
}
.page-content__description table {
  width: 100% !important;
  border: 1px solid rgba(35, 32, 32, 0.1) !important;
  border-spacing: 0;
  border-collapse: separate;
  border-radius: 8px;
  overflow: hidden;
}
.page-content__description table thead tr th {
  background-color: rgb(0.923880597, 34.1835820896, 122.876119403);
  color: #fff;
  font-weight: 800;
}
.page-content__description table tbody tr td strong {
  color: #1f1f1f !important;
}
.page-content__description table tr td,
.page-content__description table tr th {
  padding: var(--gutter) !important;
  line-height: 1.5;
  font-size: 13px;
}
.page-content__description table tr td:not(:last-child),
.page-content__description table tr th:not(:last-child) {
  border-right: 1px solid rgba(35, 32, 32, 0.1) !important;
}
.page-content__description table tr:not(:last-child) td,
.page-content__description table tr:not(:last-child) th {
  border-bottom: 1px solid rgba(35, 32, 32, 0.1) !important;
}
.page-content__gallery {
  display: inline-block;
  width: 100%;
}
@media (max-width: 767px) {
  .page-content__gallery > .row {
    row-gap: 20px;
  }
}
@media (max-width: 479px) {
  .page-content__gallery > .row > div {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}
.page-content__item-header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.inner-page__header {
  position: relative;
  margin-top: -30px;
}
@media (min-width: 992px) {
  .inner-page__cover:not([class*=ui-height-]) {
    height: 450px;
  }
}
@media (min-width: 992px) {
  .inner-page__cover.ui-height-medium {
    height: 650px;
  }
}
@media (min-width: 992px) {
  .inner-page__cover.ui-height-contact {
    height: 500px;
  }
}
@media (max-width: 991px) {
  .inner-page__cover.ui-height-contact {
    height: 420px;
  }
}
@media (min-width: 992px) {
  .inner-page__cover.ui-height-large {
    height: 750px;
  }
}
@media (min-width: 992px) {
  .inner-page__cover.ui-height-full {
    height: 100%;
  }
}
@media (min-width: 992px) {
  .inner-page__cover.ui-height-header {
    height: var(--header-height);
  }
}
@media (max-width: 767px) {
  .inner-page__cover:not(.ui-height-contact) {
    height: 275px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .inner-page__cover:not(.ui-height-contact) {
    height: 400px;
  }
}
.inner-page__cover img,
.inner-page__cover iframe,
.inner-page__cover #map {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.inner-page__cover #map {
  outline: 0;
}
.inner-page__heading:not(.ui-pos-relative) {
  position: absolute;
  inset: 0;
  z-index: 1;
}
@media (min-width: 768px) {
  .inner-page__heading:not(.ui-pos-relative):not([class*=ui-pb-]) {
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .inner-page__heading:not(.ui-pos-relative):not([class*=ui-pb-]) {
    padding-bottom: 20px;
  }
}
.inner-page__heading:not(.ui-pos-relative)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(1, 37, 133, 0.55);
  z-index: -1;
}
.inner-page__heading:not(.ui-pos-relative) .title {
  color: #fff;
}
.inner-page__heading:not(.ui-pos-relative) .text {
  color: #fff;
}
.inner-page__heading.ui-pos-relative {
  z-index: 1;
  background-color: rgba(1, 37, 133, 0.75);
}
.inner-page__heading.ui-pos-relative .title {
  color: #fff;
}
.inner-page__heading.ui-pos-relative .text {
  color: #fff;
}
.inner-page__heading > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
}
.inner-page__heading > .container:not(.ui-no-jc-center) {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.inner-page__heading.ui-txt-center {
  text-align: center;
}
@media (min-width: 768px) {
  .inner-page__heading .breadcrumb:not([class*=ui-mb-]) {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .inner-page__heading .breadcrumb:not([class*=ui-mb-]) {
    margin-bottom: 15px;
  }
}
.inner-page__heading .title {
  font-weight: 700;
  position: relative;
}
@media (min-width: 992px) {
  .inner-page__heading .title {
    line-height: 1.3;
    letter-spacing: -2px;
  }
}
@media (max-width: 991px) {
  .inner-page__heading .title {
    line-height: 1.2;
    letter-spacing: -1px;
  }
}
@media (min-width: 992px) {
  .inner-page__heading .title:not([class*=ui-txt-size-]) {
    font-size: 45px;
  }
}
@media (max-width: 991px) {
  .inner-page__heading .title.ui-txt-size-small {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .inner-page__heading .title.ui-txt-size-xsmall {
    font-size: 32px;
  }
}
@media (max-width: 479px) {
  .inner-page__heading .title {
    font-size: 24px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .inner-page__heading .title {
    font-size: 32px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .inner-page__heading .title {
    font-size: 36px;
  }
}
.inner-page__heading .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 2px;
  background-color: #fff;
  right: 50%;
}
.inner-page__heading .text {
  max-width: 300px;
}
@media (min-width: 768px) {
  .inner-page__heading .text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: auto;
  }
}
@media (max-width: 767px) {
  .inner-page__heading .text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: auto;
  }
}
@media (min-width: 768px) {
  .inner-page__heading .text:not([class*=ui-txt-size-]) {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .inner-page__heading .text:not([class*=ui-txt-size-]) {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .inner-page__heading .text.ui-txt-size-small {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .inner-page__heading .text.ui-txt-size-small {
    font-size: 13px;
  }
}
.inner-page__heading .text strong {
  font-weight: 700;
}

.sidebar-blog .item:not(:last-child) {
  margin-bottom: 30px;
}
.sidebar-navigation {
  background-color: rgba(224, 232, 255, 0.75);
  border: 1px solid rgba(1, 37, 133, 0.1);
  overflow: hidden;
  border-radius: 10px;
}
.sidebar-navigation__list .item.is-open > ul {
  display: block !important;
}
.sidebar-navigation__list .item:not(:last-child) {
  border-bottom: 1px solid rgba(1, 37, 133, 0.1);
}
.sidebar-navigation__list .item:hover > a, .sidebar-navigation__list .item.is-current > a, .sidebar-navigation__list .item.is-open > a {
  color: #012585;
  background-color: #C0D2FF;
}
.sidebar-navigation__list .item:hover > a .icon, .sidebar-navigation__list .item.is-current > a .icon, .sidebar-navigation__list .item.is-open > a .icon {
  color: #012585;
}
.sidebar-navigation__list .item.is-open > a .icon {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.sidebar-navigation__list .item > a {
  color: #232020;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: var(--gutter) 25px;
  font-size: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) and (max-width: 991px) {
  .sidebar-navigation__list .item > a {
    font-size: 14px;
  }
}
.sidebar-navigation__list .item > a .icon {
  font-size: 13px;
  color: rgba(1, 37, 133, 0.25);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  margin-left: var(--gutter);
  will-change: transform;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sidebar-navigation__list .item > ul {
  display: none;
}
.sidebar-navigation__list .item > ul > li.is-current > a, .sidebar-navigation__list .item > ul > li:hover > a {
  color: #012585;
}
.sidebar-navigation__list .item > ul > li > a {
  padding: 10px 20px;
  color: #232020;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.inner-page__wrapper {
  position: relative;
  z-index: 2;
}
.inner-page__wrapper.ui-bg {
  background-color: #fff;
}
@media (min-width: 992px) {
  .inner-page__wrapper.ui-bg {
    border-top-left-radius: calc(30px * 2);
    border-top-right-radius: calc(30px * 2);
    margin-top: -55px;
  }
}
@media (max-width: 991px) {
  .inner-page__wrapper.ui-bg {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin-top: -15px;
  }
}
.inner-page__wrapper.ui-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(239, 239, 239, 0.5);
  z-index: -1;
}
@media (min-width: 992px) {
  .inner-page__wrapper.ui-bg::before {
    border-top-left-radius: calc(30px * 2);
    border-top-right-radius: calc(30px * 2);
  }
}
@media (max-width: 991px) {
  .inner-page__wrapper.ui-bg::before {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }
}
.inner-page__outer {
  position: relative;
  z-index: 1;
}
.inner-page__outer::before, .inner-page__outer::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid #CACACA;
  border-radius: 50%;
  opacity: 0.6;
}
@media (max-width: 1199px) {
  .inner-page__outer::before, .inner-page__outer::after {
    display: none !important;
  }
}
.inner-page__outer.ui-no-before::before {
  display: none;
}
.inner-page__outer.ui-no-after::after {
  display: none;
}
@media (min-width: 1200px) {
  .inner-page__outer::before {
    left: -2.34375vw;
    width: 800px;
    height: 800px;
    top: 80px;
  }
}
@media (max-width: 1199px) {
  .inner-page__outer::before {
    width: 110px;
    height: 110px;
    left: -20px;
    top: 30px;
  }
}
@media (min-width: 1200px) {
  .inner-page__outer::after {
    bottom: -170px;
    right: -6.25vw;
    width: 790px;
    height: 790px;
  }
}
@media (max-width: 1199px) {
  .inner-page__outer::after {
    bottom: -30px;
    right: -30px;
    width: 250px;
    height: 250px;
  }
}
@media (min-width: 768px) {
  .inner-page__row.ui-fx-dir-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media (max-width: 767px) {
  .inner-page__row.ui-fx-dir-row-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (min-width: 1200px) {
  .inner-page__row:not([class*=ui-gutter-]) > div {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1199px) {
  .inner-page__row:not([class*=ui-gutter-]) > div {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1200px) {
  .inner-page__row.ui-gutter-large > div {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 1199px) {
  .inner-page__row.ui-gutter-large > div {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 992px) {
  .inner-page__article:not([class*=col-]) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 375px);
            flex: 0 0 calc(100% - 375px);
    max-width: calc(100% - 375px);
  }
}
@media (min-width: 1450px) {
  .inner-page__article:not([class*=col-]) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 420px);
            flex: 0 0 calc(100% - 420px);
    max-width: calc(100% - 420px);
  }
}
@media (max-width: 991px) {
  .inner-page__article:not([class*=col-]) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .inner-page__article:not([class*=col-]) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 340px);
            flex: 0 0 calc(100% - 340px);
    max-width: calc(100% - 340px);
  }
}
@media (max-width: 991px) {
  .inner-page__sidebar {
    margin-top: 50px;
  }
}
@media (max-width: 991px) {
  .inner-page__sidebar:not(.ui-no-d-none) {
    display: none;
  }
}
.inner-page__sidebar > div:not(:last-child) {
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  .inner-page__sidebar:not([class*=col-]) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 375px;
            flex: 0 0 375px;
    max-width: 375px;
  }
}
@media (min-width: 1450px) {
  .inner-page__sidebar:not([class*=col-]) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 420px;
            flex: 0 0 420px;
    max-width: 420px;
  }
}
@media (max-width: 991px) {
  .inner-page__sidebar:not([class*=col-]) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .inner-page__sidebar:not([class*=col-]) {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 340px;
            flex: 0 0 340px;
    max-width: 340px;
  }
}
.inner-page__content:not(.ui-no-min-height) {
  min-height: 700px;
}

.loading {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.loading.ui-no-bg {
  background: transparent;
}
.loading:not([class*=ui-size-])::before {
  width: 100px;
  height: 100px;
}
.loading.ui-size-small {
  background: none;
}
.loading.ui-size-small::before {
  width: 60px;
  height: 60px;
}
.loading.is-visible {
  opacity: 1;
  visibility: visible;
}
.loading::before {
  content: "";
  position: absolute;
  border: 5px solid #fff;
  border-top: 5px solid #012585;
  border-radius: 50%;
  -webkit-animation: spin 0.8s linear infinite;
          animation: spin 0.8s linear infinite;
}

.overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #1f1f1f;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.overlay.is-visible {
  opacity: 0.75;
  visibility: visible;
}

.scrolltop {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  background: #012585;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  z-index: 500;
  width: 35px;
  height: 35px;
  bottom: 20px;
  right: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.scrolltop .icon {
  font-size: 16px;
}
.scrolltop:not(.is-visible) {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.5);
      -ms-transform: scale(0.5);
          transform: scale(0.5);
}

.buttons-container.ui-center {
  text-align: center;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: relative;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  font-weight: 500;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 768px) {
  .button {
    height: 52px;
    font-size: 14px;
    padding-inline: 20px;
    border-radius: 10px;
  }
}
@media (max-width: 767px) {
  .button {
    height: 45px;
    font-size: 13px;
    padding-inline: 15px;
    border-radius: 6px;
  }
}
.button.ui-full-radius {
  border-radius: 100px;
}
@media (min-width: 768px) {
  .button.ui-width-min {
    min-width: 160px;
  }
}
@media (max-width: 767px) {
  .button.ui-width-min {
    min-width: 140px;
  }
}
.button .icon {
  font-size: 13px;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
.button:hover .icon {
  -webkit-transform: translateX(3px);
      -ms-transform: translateX(3px);
          transform: translateX(3px);
}
.button:not([class*=ui-color-]) {
  background-color: #012585;
  color: #fff;
}
.button:not([class*=ui-color-]):before {
  background-color: #89A9FF;
}
.button.ui-color-light {
  background-color: #fff;
  color: #232020;
}
.button.ui-color-light:before {
  background-color: #89A9FF;
}
.button.ui-color-2 {
  background-color: #89A9FF;
  color: #232020;
}
.button.ui-color-2:not([class*=ui-hover-]):before {
  background-color: #012585;
}
.button.ui-color-2:not([class*=ui-hover-]):hover {
  color: #fff;
}
.button.ui-color-2.ui-hover-light:before {
  background-color: #fff;
}
.button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: 0;
  will-change: width;
  -webkit-transition: width 0.35s ease-in-out;
  transition: width 0.35s ease-in-out;
}
.button:hover::before {
  left: 0;
  right: inherit;
  width: 100%;
}

.button-border {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: relative;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  font-weight: 500;
  border: 1px solid #012585;
  color: #012585;
}
@media (min-width: 768px) {
  .button-border {
    height: 52px;
    font-size: 14px;
    padding-inline: 20px;
    border-radius: 10px;
  }
}
@media (max-width: 767px) {
  .button-border {
    height: 45px;
    font-size: 13px;
    padding-inline: 15px;
    border-radius: 6px;
  }
}
.button-border.ui-full-radius {
  border-radius: 100px;
}
@media (min-width: 768px) {
  .button-border.ui-width-min {
    min-width: 160px;
  }
}
@media (max-width: 767px) {
  .button-border.ui-width-min {
    min-width: 140px;
  }
}
.button-border .icon {
  font-size: 13px;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
.button-border:hover .icon {
  -webkit-transform: translateX(3px);
      -ms-transform: translateX(3px);
          transform: translateX(3px);
}
.button-border .icon {
  font-size: 24px;
}
.button-border:hover {
  color: #fff;
  border-color: #012585;
  background-color: #012585;
}

.button-outline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: relative;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .button-outline {
    height: 52px;
    font-size: 14px;
    padding-inline: 20px;
    border-radius: 10px;
  }
}
@media (max-width: 767px) {
  .button-outline {
    height: 45px;
    font-size: 13px;
    padding-inline: 15px;
    border-radius: 6px;
  }
}
.button-outline.ui-full-radius {
  border-radius: 100px;
}
@media (min-width: 768px) {
  .button-outline.ui-width-min {
    min-width: 160px;
  }
}
@media (max-width: 767px) {
  .button-outline.ui-width-min {
    min-width: 140px;
  }
}
.button-outline .icon {
  font-size: 13px;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
.button-outline:hover .icon {
  -webkit-transform: translateX(3px);
      -ms-transform: translateX(3px);
          transform: translateX(3px);
}
.button-outline:hover {
  color: #012585;
}

.button-line {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
@media (min-width: 768px) {
  .button-line {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .button-line {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    font-size: 12px;
  }
}
.button-line:not([class*=ui-color-]) {
  color: #1f1f1f;
}
.button-line.ui-color-light {
  color: #fff;
}
.button-line .icon {
  font-size: 0.9em;
  will-change: transform;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
.button-line:hover .icon {
  -webkit-transform: translateX(5px) scale(1.1);
      -ms-transform: translateX(5px) scale(1.1);
          transform: translateX(5px) scale(1.1);
}

.button-border-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border-radius: 6px;
  width: 35px;
  border: 1px solid #232020;
  color: #232020;
  position: relative;
  will-change: width;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}
.button-border-icon:not(.ui-no-hover):hover {
  width: 140px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.button-border-icon:not(.ui-no-hover):hover .label {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}
.button-border-icon .label {
  font-size: 11px;
  position: absolute;
  min-width: 145px;
  left: 15px;
  opacity: 0;
  visibility: hidden;
  will-change: opacity, visibility;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.button-border-icon .icon {
  font-size: 11px;
  width: 35px;
  height: 35px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.button-fixed {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: var(--circle-size);
  height: var(--circle-size);
  position: fixed;
  border: 5px solid #fff;
  border-radius: 100%;
  -webkit-box-shadow: 0 0 10px rgba(35, 32, 32, 0.15);
          box-shadow: 0 0 10px rgba(35, 32, 32, 0.15);
  text-align: center;
  color: #fff;
  z-index: 999;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .button-fixed {
    --circle-size: 65px;
  }
}
@media (max-width: 767px) {
  .button-fixed {
    --circle-size: 55px;
  }
}
.button-fixed:not(.is-active) {
  opacity: 0;
  visibility: hidden;
}
.button-fixed:not([class*=ui-color-]) {
  background: #25d366;
}
.button-fixed:not([class*=ui-color-])::before, .button-fixed:not([class*=ui-color-])::after {
  background: rgba(37, 211, 102, 0.1);
}
@media (min-width: 768px) {
  .button-fixed {
    right: 20px;
    bottom: 40px;
  }
}
@media (max-width: 767px) {
  .button-fixed {
    right: 12px;
    bottom: 100px;
  }
}
.button-fixed::before, .button-fixed::after {
  content: "";
  position: absolute;
  border-radius: 100%;
  -webkit-animation: pulsate 1.5s ease-out;
          animation: pulsate 1.5s ease-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  opacity: 0;
}
.button-fixed::before {
  width: calc(var(--circle-size) + 15px);
  height: calc(var(--circle-size) + 15px);
}
.button-fixed::after {
  width: calc(var(--circle-size) + 35px);
  height: calc(var(--circle-size) + 35px);
}
@media (min-width: 768px) {
  .button-fixed .icon {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .button-fixed .icon {
    font-size: 22px;
  }
}
@media (min-width: 768px) {
  .button-fixed.is-active {
    -webkit-transform: translateY(-70px);
        -ms-transform: translateY(-70px);
            transform: translateY(-70px);
  }
}
@media (max-width: 767px) {
  .button-fixed.is-active {
    -webkit-transform: translateY(-60px);
        -ms-transform: translateY(-60px);
            transform: translateY(-60px);
  }
}

label.checkbox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
label.checkbox:not(:last-child) {
  margin-bottom: 6px;
}
label.checkbox.is-error .checkbox {
  border: 1px solid #d9222a !important;
  background-color: rgba(217, 34, 42, 0.05) !important;
}
label.checkbox.is-error .text {
  color: #d9222a !important;
}
label.checkbox.is-error .text a {
  color: #d9222a !important;
}
label.checkbox:not([class*=ui-color-]) .checkbox {
  background-color: rgba(235, 235, 235, 0.6);
}
label.checkbox:not([class*=ui-color-]) .text {
  color: #1f1f1f;
}
label.checkbox:not([class*=ui-color-]) .text a {
  color: #1f1f1f;
}
label.checkbox:not([class*=ui-color-]) input:checked + .checkbox {
  background-color: #012585;
  border: 1px solid transparent;
}
label.checkbox input {
  position: absolute;
  opacity: 0;
}
label.checkbox .checkbox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 5px;
  position: relative;
  margin-top: 2px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
label.checkbox .checkbox:not([class*=ui-size-]) {
  width: 20px;
  height: 20px;
}
label.checkbox .checkbox:not([class*=ui-size-])::before {
  font-size: 12px;
}
label.checkbox .checkbox:not([class*=ui-size-]) + .text {
  padding-left: 10px;
}
label.checkbox .checkbox::before {
  content: "✓";
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  line-height: normal;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
label.checkbox .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
label.checkbox .text:not([class*=ui-txt-size-]) {
  font-size: 11px;
  line-height: 1.4;
}
label.checkbox .text.ui-txt-size-large {
  font-size: 14px;
  line-height: 1.65;
}
label.checkbox .text.ui-font-weight-bold {
  font-weight: 500;
}
label.checkbox .text.ui-font-weight-light {
  font-weight: 300;
}
label.checkbox .text span {
  opacity: 0.5;
  margin-left: 6px;
}
label.checkbox .text strong {
  font-weight: 700;
}
label.checkbox .text a {
  font-weight: 700;
  text-decoration: underline;
}
label.checkbox input:checked + .checkbox::before {
  opacity: 1;
  visibility: visible;
}

label.radio {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
}
label.radio:not(.ui-no-align-center) {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
label.radio input {
  position: absolute;
  opacity: 0;
}
label.radio .radio {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 24px;
  height: 24px;
  background: #fff;
  border: 1px solid rgba(35, 32, 32, 0.08);
  border-radius: 50%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: relative;
}
label.radio .radio::before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: 3px;
  bottom: 3px;
  background: #012585;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
}
label.radio .text {
  color: rgba(35, 32, 32, 0.65);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 13px;
  line-height: 1.35;
  padding-left: 10px;
}
label.radio .text span {
  color: rgba(35, 32, 32, 0.7);
  margin-left: 5px;
}
label.radio input:checked + .radio:before {
  opacity: 1;
  visibility: visible;
}

select.selectbox {
  width: 100%;
  border: 1px solid transparent;
  font-family: inherit;
  background-color: rgba(235, 235, 235, 0.6);
  color: rgba(35, 32, 32, 0.3);
  font-weight: normal;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  position: relative;
}
select.selectbox::-webkit-input-placeholder {
  /* Edge */
  color: rgba(35, 32, 32, 0.75);
}
select.selectbox:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgba(35, 32, 32, 0.75);
}
select.selectbox::-moz-placeholder {
  color: rgba(35, 32, 32, 0.75);
}
select.selectbox::-ms-input-placeholder {
  color: rgba(35, 32, 32, 0.75);
}
select.selectbox::placeholder {
  color: rgba(35, 32, 32, 0.75);
}
@media (min-width: 768px) {
  select.selectbox {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  select.selectbox {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  select.selectbox:not([class*=ui-size-]) {
    height: 50px;
    border-radius: 10px;
  }
}
@media (max-width: 767px) {
  select.selectbox:not([class*=ui-size-]) {
    height: 36px;
    border-radius: 6px;
  }
}
select.selectbox:focus {
  border: 1px solid rgba(35, 32, 32, 0.65);
}
select.selectbox:before {
  content: "";
}
select.selectbox:focus + .icon.ui-arrow {
  -webkit-transform: translateY(-50%) rotate(-90deg);
      -ms-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}

.small-title:not(.ui-not) {
  position: relative;
  display: block;
  text-transform: uppercase;
  line-height: 1.3;
}
.small-title:not(.ui-not):not([class*=ui-style-]) {
  letter-spacing: 2px;
  font-weight: 300;
}
@media (min-width: 480px) {
  .small-title:not(.ui-not):not([class*=ui-txt-size-]) {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .small-title:not(.ui-not):not([class*=ui-txt-size-]) {
    font-size: 11px;
  }
}
.small-title:not(.ui-not).ui-txt-size-large {
  font-size: 20px;
}
.small-title:not(.ui-not):not([class*=ui-txt-color-]) {
  color: #1f1f1f;
}
.small-title:not(.ui-not).ui-txt-color-1 {
  color: #012585;
}
.small-title:not(.ui-not).ui-txt-color-gray {
  color: rgba(35, 32, 32, 0.65);
}
.small-title:not(.ui-not).ui-txt-color-light {
  color: #fff;
}

.js .inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.inputfile + label {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .inputfile + label {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .inputfile + label {
    height: 60px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 767px) {
  .inputfile + label {
    padding-inline: 15px;
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .inputfile + label {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-block: 12px;
  }
}
.inputfile + label span {
  color: rgba(35, 32, 32, 0.65);
}
@media (min-width: 992px) {
  .inputfile + label span {
    margin-left: 10px;
  }
}

.no-js .inputfile + label {
  display: none;
}

.inputfile:focus + label,
.inputfile.has-focus + label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}

.inputfile-1 {
  opacity: 0;
  position: absolute;
}

.inputfile + label svg {
  width: 1em;
  height: 1em;
  vertical-align: middle;
  fill: currentColor;
  margin-top: -0.25em;
  margin-right: 0.25em;
}

.inputfile-1 + label {
  background: #fff;
  border: 1px solid #f3f1ee;
  font-weight: 300;
  color: #232020;
  border-radius: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.inputfile-1:focus + label,
.inputfile-1.has-focus + label,
.inputfile-1 + label:hover {
  background: none;
}

.inputfile-right {
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  color: #000;
  pointer-events: none;
}
@media (min-width: 768px) {
  .inputfile-right {
    right: 25px;
  }
}
@media (max-width: 767px) {
  .inputfile-right {
    right: 15px;
  }
}
.inputfile-right .text {
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .inputfile-right .text {
    display: none;
  }
}
.inputfile-right .icon {
  font-size: 18px;
}

@media (min-width: 992px) {
  .list-pagination {
    margin-top: 75px;
  }
}
@media (max-width: 991px) {
  .list-pagination {
    margin-top: 50px;
  }
}

.pagination {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pagination li:not(:last-child) {
  margin-right: 10px;
}
.pagination li.is-active a {
  background-color: #012585;
  color: #fff !important;
}
.pagination li:not(.is-active) a:hover {
  border: 1px solid #012585;
}
.pagination li a {
  width: 45px;
  height: 45px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: #fff;
  border: 1px solid #f3f1ee;
  border-radius: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination li a:has(.icon) .icon {
  font-size: 14px;
  color: #C4CDD5;
}
.pagination li a:not(:has(.icon)) {
  font-size: 14px;
  color: rgba(35, 32, 32, 0.65);
}

.card a {
  display: block;
  position: relative;
}
.card a:hover .card-photo img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.card a:hover .card-footer {
  background-color: rgb(228.8, 235.9050847458, 255);
}
.card a:hover .card-footer .number {
  color: rgb(228.8, 235.9050847458, 255);
}
.card-header {
  position: relative;
}
.card-photo {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .card-photo {
    height: 310px;
    border-radius: 15px;
  }
}
@media (max-width: 767px) {
  .card-photo {
    height: 250px;
    border-radius: 10px;
  }
}
.card-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
  -webkit-transition: 1s -webkit-transform cubic-bezier(0, 0, 0.2, 1);
  transition: 1s -webkit-transform cubic-bezier(0, 0, 0.2, 1);
  transition: 1s transform cubic-bezier(0, 0, 0.2, 1);
  transition: 1s transform cubic-bezier(0, 0, 0.2, 1), 1s -webkit-transform cubic-bezier(0, 0, 0.2, 1);
}
.card-footer {
  background-color: #fff;
  margin-top: -20px;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
@media (min-width: 768px) {
  .card-footer {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    height: 260px;
    padding: 55px 40px 30px 40px;
  }
}
@media (max-width: 767px) {
  .card-footer {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 195px;
    padding: 45px 25px 20px 25px;
  }
}
.card-footer .number {
  font-weight: 700;
  line-height: 1;
  color: white;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  text-shadow: -1px -1px 0 #012585, 1px -1px 0 #012585, -1px 1px 0 #012585, 1px 1px 0 #012585;
}
@media (min-width: 768px) {
  .card-footer .number {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .card-footer .number {
    font-size: 36px;
  }
}
.card-footer .title {
  color: #012585;
  font-size: 18px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: auto;
  margin-top: 10px;
}
.card-footer .text {
  color: #012585;
  font-weight: 300;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: auto;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .card-footer .text {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .card-footer .text {
    padding-right: 50px;
  }
}
@media (max-width: 767px) {
  .card-footer .text {
    font-size: 12px;
    max-width: 210px;
  }
}

@media (max-width: 767px) {
  .projects .item:not(:last-child) {
    margin-bottom: 20px;
  }
}

.project-card a {
  display: block;
  position: relative;
}
.project-card a:hover .project-photo img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.project-card a:hover .project-footer.ui-bg-color-1 {
  background-color: #C0D2FF;
  color: #012585;
}
.project-header {
  position: relative;
}
.project-photo {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .project-photo {
    height: 415px;
    border-radius: 15px;
  }
}
@media (max-width: 767px) {
  .project-photo {
    height: 320px;
    border-radius: 10px;
  }
}
.project-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
  -webkit-transition: 1s -webkit-transform cubic-bezier(0, 0, 0.2, 1);
  transition: 1s -webkit-transform cubic-bezier(0, 0, 0.2, 1);
  transition: 1s transform cubic-bezier(0, 0, 0.2, 1);
  transition: 1s transform cubic-bezier(0, 0, 0.2, 1), 1s -webkit-transform cubic-bezier(0, 0, 0.2, 1);
}
.project-footer {
  margin-top: -20px;
  padding-top: 20px;
  padding-inline: 30px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 3px;
}
@media (min-width: 768px) {
  .project-footer {
    height: 130px;
  }
}
@media (max-width: 767px) {
  .project-footer {
    height: 100px;
  }
}
.project-footer:not([class*=ui-bg-color-]) {
  background-color: #012585;
  color: #fff;
}
.project-footer.ui-bg-color-1 {
  background-color: #fff;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
.project-footer.ui-dir-rtl {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.project-footer.ui-dir-rtl .text {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.project-footer .title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: auto;
  font-weight: 700;
}
@media (min-width: 768px) {
  .project-footer .title {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .project-footer .title {
    font-size: 18px;
  }
}
.project-footer .text {
  font-weight: 300;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-top: 5px;
}
@media (min-width: 768px) {
  .project-footer .text {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .project-footer .text {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .project-footer .text .icon {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .project-footer .text .icon {
    font-size: 12px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .blog > .row {
    row-gap: 20px;
  }
}
@media (max-width: 767px) {
  .blog .item:not(:last-child) {
    margin-bottom: 20px;
  }
}

.blog-card a {
  display: block;
  position: relative;
  background-color: #e0e8ff;
  border-radius: 10px;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
.blog-card a:hover {
  background-color: #C0D2FF;
}
.blog-card a:hover .blog-picture img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.blog-card a:hover .buttons-container .btn {
  width: 140px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.blog-card a:hover .buttons-container .btn .label {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.3s 0.1s;
  transition: 0.3s 0.1s;
}
.blog-picture {
  height: 275px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  display: block;
  overflow: hidden;
}
@media (min-width: 480px) and (max-width: 767px) {
  .blog-picture {
    height: 180px;
  }
}
.blog-picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 1s -webkit-transform cubic-bezier(0, 0, 0.2, 1);
  transition: 1s -webkit-transform cubic-bezier(0, 0, 0.2, 1);
  transition: 1s transform cubic-bezier(0, 0, 0.2, 1);
  transition: 1s transform cubic-bezier(0, 0, 0.2, 1), 1s -webkit-transform cubic-bezier(0, 0, 0.2, 1);
}
.blog-footer {
  height: 265px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 20px;
  padding: 25px 30px;
  color: #232020;
}
@media (min-width: 480px) and (max-width: 767px) {
  .blog-footer {
    row-gap: 10px;
    height: 240px;
  }
}
.blog-footer .date {
  opacity: 0.7;
  font-size: 12px;
}
.blog-footer .title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: auto;
}
@media (min-width: 480px) and (max-width: 767px) {
  .blog-footer .title {
    font-size: 16px;
  }
}
.blog-footer .text {
  font-size: 14px;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: auto;
}
@media (min-width: 480px) and (max-width: 767px) {
  .blog-footer .text {
    font-size: 12px;
  }
}
.blog-footer .buttons-container {
  position: absolute;
  bottom: 30px;
}

.gallery-card {
  display: block;
  position: relative;
}
.gallery-card:hover .gallery-overlay .icon {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.gallery-card:hover .gallery-file .icon {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.gallery-photo, .gallery-file {
  overflow: hidden;
  display: block;
  border-radius: 8px;
}
.gallery-photo:not([class*=ui-height-]), .gallery-file:not([class*=ui-height-]) {
  height: 150px;
}
.gallery-photo.ui-height-large, .gallery-file.ui-height-large {
  height: 220px;
}
.gallery-photo.ui-height-small, .gallery-file.ui-height-small {
  height: 90px;
}
.gallery-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-file {
  background-color: #e0e8ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}
.gallery-file .icon {
  font-size: 24px;
  color: #89A9FF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.gallery-file .text {
  color: #89A9FF;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(1, 37, 133, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.gallery-overlay .icon {
  font-size: 20px;
  color: #fff;
  -webkit-transform: scale(0.85);
      -ms-transform: scale(0.85);
          transform: scale(0.85);
  opacity: 0;
  will-change: transform;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

@media (min-width: 480px) and (max-width: 767px) {
  .references > .row {
    row-gap: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .references > .row {
    row-gap: 20px;
  }
}
@media (max-width: 479px) {
  .references > .row > div:not(:last-child) {
    margin-bottom: 20px;
  }
}

.reference-card {
  display: block;
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.reference-header {
  height: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
}
.reference-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: calc(-1 * 20px);
  bottom: 0;
  left: calc(-1 * 20px);
  background-color: #7d98e1;
  z-index: -1;
  border-bottom-left-radius: 160px;
  border-bottom-right-radius: 160px;
}
.reference-header .number {
  color: #fff;
  font-weight: 700;
  font-size: 54px;
  line-height: 60px;
  letter-spacing: -3px;
}
.reference-footer {
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 992px) {
  .reference-footer {
    padding: 40px 30px 30px 30px;
  }
}
@media (max-width: 991px) {
  .reference-footer {
    padding: 30px 20px 20px 20px;
  }
}
.reference-footer .title {
  color: #1f1f1f;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.25px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: auto;
}
@media (min-width: 992px) {
  .reference-footer .title {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .reference-footer .title {
    font-size: 16px;
  }
}
.reference-footer .text {
  font-weight: 300;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  line-height: 1.35;
}
@media (min-width: 992px) {
  .reference-footer .text {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .reference-footer .text {
    font-size: 12px;
  }
}
.reference-footer .text.ui-d-flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5px;
}
@media (min-width: 992px) {
  .reference-footer .text.ui-d-flex .icon {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .reference-footer .text.ui-d-flex .icon {
    font-size: 12px;
  }
}
.reference-footer .text:not(.ui-d-flex) {
  max-width: 180px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: auto;
}

.accordion ul li {
  border-top: 1px solid rgba(31, 31, 31, 0.08);
}
.accordion ul li:last-child {
  border-bottom: 1px solid rgba(31, 31, 31, 0.08);
}
.accordion ul li.is-open .accordion-header::after {
  content: "_";
  margin-top: -15px;
}
.accordion-header {
  padding-block: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  cursor: pointer;
}
.accordion-header::after {
  content: "+";
  color: #1f1f1f;
}
@media (min-width: 480px) {
  .accordion-header::after {
    font-size: 28px;
  }
}
@media (max-width: 479px) {
  .accordion-header::after {
    font-size: 24px;
  }
}
.accordion-header .title {
  color: #1f1f1f;
  line-height: 1.55em;
  font-weight: 500;
}
@media (min-width: 480px) {
  .accordion-header .title {
    font-size: 24px;
  }
}
@media (max-width: 479px) {
  .accordion-header .title {
    font-size: 20px;
  }
}
.accordion-dropdown {
  display: none;
}
.accordion-content {
  padding-bottom: 32px;
}

.popup {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(31, 31, 31, 0.8);
  z-index: 2000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.popup:not(.is-visible) {
  opacity: 0;
  visibility: hidden;
}
.popup-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.popup-wrapper:not(.is-visible) {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100px);
      -ms-transform: translateY(100px);
          transform: translateY(100px);
}
.popup-content {
  width: 700px;
  max-width: 100%;
  display: table-cell;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
@media (max-width: 991px) {
  .popup-content {
    height: auto;
  }
}
.popup-content:not(.ui-text) {
  text-align: center;
}
.popup-content.ui-text {
  background-color: #fff;
}
@media (min-width: 480px) {
  .popup-content.ui-text {
    padding: 50px;
  }
}
@media (max-width: 479px) {
  .popup-content.ui-text {
    padding: 25px;
  }
}
.popup-content img {
  width: 100%;
}
.popup-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 45px;
  height: 45px;
  border-radius: 999px;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(35, 32, 32, 0.15);
          box-shadow: 0 0 10px rgba(35, 32, 32, 0.15);
  font-size: 24px;
  z-index: 12;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.popup-close::before, .popup-close::after {
  content: "";
  position: absolute;
  background: #012585;
  height: 2px;
  width: 24px;
}
.popup-close::before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.popup-close::after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.popup-close:hover {
  background: #012585;
}
.popup-close:hover::before, .popup-close:hover::after {
  background: #fff;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  -webkit-box-shadow: 0px 30px 64px 0px rgba(159, 159, 159, 0.6);
          box-shadow: 0px 30px 64px 0px rgba(159, 159, 159, 0.6);
  overflow: hidden;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  will-change: transform, opacity;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
.dropdown:not(.is-visible) {
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
}
.dropdown:not([class*=ui-mt-]) {
  margin-top: -15px;
}
.dropdown:not([class*=ui-pt-]) {
  padding-top: 20px;
}
.dropdown:not([class*=ui-style-]) ul li a {
  font-size: 16px;
  font-weight: 300;
  padding: 15px 25px;
}
.dropdown.ui-style-1 ul li a {
  font-size: 14px;
  padding: 13px var(--gutter);
}
.dropdown ul li:not(:last-child) a {
  border-bottom: 1px solid #f3f1ee;
}
.dropdown ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.dropdown ul li a::after {
  content: attr(data-count);
  color: rgba(35, 32, 32, 0.7);
}
.dropdown ul li a:hover {
  background-color: #EFEFEF;
}

.breadcrumb:not([class*=ui-color-]) ul li a {
  color: rgba(255, 255, 255, 0.65);
}
.breadcrumb ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media (max-width: 767px) {
  .breadcrumb ul {
    overflow-x: auto;
  }
}
.breadcrumb ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .breadcrumb ul li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
}
.breadcrumb ul li:last-child a {
  color: #fff;
  font-weight: 500;
}
.breadcrumb ul li:not(:last-child) a:hover {
  color: #fff;
}
.breadcrumb ul li a {
  font-size: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
.breadcrumb ul li a .icon {
  position: relative;
  top: -2px;
}
@media (min-width: 480px) {
  .breadcrumb ul li a .icon {
    font-size: 14px;
  }
}
@media (max-width: 479px) {
  .breadcrumb ul li a .icon {
    font-size: 12px;
  }
}
.breadcrumb ul li a::after {
  content: "";
  font-weight: normal;
  font-size: 18px;
  background-color: rgba(255, 255, 255, 0.65);
}
@media (min-width: 480px) {
  .breadcrumb ul li a::after {
    margin-left: 5px;
    margin-right: 20px;
    width: 6px;
    height: 6px;
    border-radius: 6px;
  }
}
@media (max-width: 479px) {
  .breadcrumb ul li a::after {
    margin-left: 0;
    margin-right: 10px;
    width: 4px;
    height: 4px;
    border-radius: 4px;
  }
}
.breadcrumb ul li:last-child a:after {
  display: none;
}

.section-header.ui-txt-center {
  text-align: center;
}
@media (min-width: 768px) {
  .section-header:not([class*=ui-txt-size-]) .title {
    font-size: 54px;
    letter-spacing: -2px;
  }
}
@media (max-width: 767px) {
  .section-header:not([class*=ui-txt-size-]) .title {
    font-size: 24px;
    letter-spacing: -0.5px;
  }
}
@media (min-width: 768px) {
  .section-header.ui-txt-size-xsmall .title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .section-header.ui-txt-size-xsmall .title {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  .section-header.ui-txt-size-small .title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .section-header.ui-txt-size-small .title {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  .section-header.ui-txt-size-medium .title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .section-header.ui-txt-size-medium .title {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  .section-header.ui-txt-size-large .title {
    font-size: 66px;
  }
}
@media (max-width: 767px) {
  .section-header.ui-txt-size-large .title {
    font-size: 26px;
  }
}
.section-header:not([class*=ui-txt-color-]) > .text {
  color: #232020;
}
.section-header:not([class*=ui-txt-color-]) .title {
  color: #012585;
}
.section-header.ui-txt-color-light .text {
  color: #fff;
}
.section-header.ui-txt-color-light .title {
  color: #fff;
}
.section-header.ui-txt-color-dark .text {
  color: #1f1f1f;
}
.section-header.ui-txt-color-dark .title {
  color: #1f1f1f;
}
.section-header.ui-sec-blog {
  max-width: 600px;
  margin-inline: auto;
}
.section-header.ui-sec-blog .title,
.section-header.ui-sec-blog .text {
  text-wrap: inherit;
}
@media (min-width: 768px) {
  .section-header.ui-sec-blog .text {
    padding-inline: 110px;
  }
}
.section-header > .text {
  font-weight: 300;
}
.section-header > .text strong {
  font-weight: 700;
}
@media (min-width: 768px) {
  .section-header > .text:not([class*=ui-txt-size-]) {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .section-header > .text:not([class*=ui-txt-size-]) {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .section-header > .text.ui-txt-size-xsmall {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .section-header > .text.ui-txt-size-xsmall {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .section-header > .text.ui-txt-size-small {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .section-header > .text.ui-txt-size-small {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .section-header > .text.ui-txt-size-medium {
    font-size: 20px;
    line-height: 1.6;
  }
}
@media (max-width: 767px) {
  .section-header > .text.ui-txt-size-medium {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .section-header > .text.ui-txt-size-large {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .section-header > .text.ui-txt-size-large {
    font-size: 16px;
  }
}
.section-header > .text.ui-max-width {
  max-width: 1100px;
  margin-inline: auto;
}
.section-header .title {
  line-height: 1.25;
}
.section-header .title:not([class*=ui-font-weight-]) {
  font-weight: 700;
}
.section-header .title.ui-font-weight-600 {
  font-weight: 600;
}
.section-header .title.ui-font-style-italic {
  font-style: italic;
}
.section-header .title.ui-txt-uppercase {
  text-transform: uppercase;
}
.section-header .title span {
  color: #89A9FF;
}

.sidebar-mobile {
  background-color: #EFEFEF;
  border-top: 1px solid #f3f1ee;
  border-bottom: 1px solid #f3f1ee;
  position: relative;
  z-index: 9;
}
@media (min-width: 992px) {
  .sidebar-mobile {
    display: none;
  }
}
.sidebar-mobile.ui-style-back .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sidebar-mobile.ui-style-back .sidebar-mobile__nav .btn {
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.sidebar-mobile.ui-style-back .sidebar-mobile__nav .dropdown {
  min-width: 250px;
  left: auto;
}
.sidebar-mobile__nav .item {
  position: relative;
}
.sidebar-mobile__nav .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
  min-height: 65px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 12px;
}
.sidebar-mobile__nav .btn.is-active .icon {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
  color: #012585;
}
.sidebar-mobile__nav .btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  top: 0;
  right: -20px;
  left: -20px;
  bottom: 0;
  background-color: #EFEFEF;
}
.sidebar-mobile__nav .btn .heading .small-title {
  font-size: 12px;
  color: #232020;
  font-weight: 700;
  margin-bottom: 7px;
}
.sidebar-mobile__nav .btn .heading .title {
  color: rgba(35, 32, 32, 0.5);
  font-size: 16px;
  line-height: normal;
}
.sidebar-mobile__nav .btn .icon {
  font-size: 12px;
  color: #012585;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.list-common__item {
  position: relative;
}
@media (min-width: 1200px) {
  .list-common__item:nth-child(odd) .list-common__content {
    padding-left: 140px;
    padding-right: 100px;
  }
}
.list-common__item:nth-child(even) > .row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (min-width: 1200px) {
  .list-common__item:nth-child(even) .list-common__content {
    padding-right: 140px;
    padding-left: 100px;
  }
}
.list-common__item:hover .list-common__picture img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.list-common__picture picture {
  display: block;
  height: clamp(320px, 40.625vw, 650px);
  overflow: hidden;
}
@media (min-width: 992px) {
  .list-common__picture picture {
    border-radius: 15px;
  }
}
@media (max-width: 991px) {
  .list-common__picture picture {
    border-radius: 10px;
  }
}
.list-common__picture picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 1s -webkit-transform cubic-bezier(0, 0, 0.2, 1);
  transition: 1s -webkit-transform cubic-bezier(0, 0, 0.2, 1);
  transition: 1s transform cubic-bezier(0, 0, 0.2, 1);
  transition: 1s transform cubic-bezier(0, 0, 0.2, 1), 1s -webkit-transform cubic-bezier(0, 0, 0.2, 1);
}
.list-common__content {
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 1200px) {
  .list-common__content {
    padding-bottom: 150px;
  }
}
@media (max-width: 1199px) {
  .list-common__content {
    padding-block: 50px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .list-common__content {
    padding-inline: 50px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .list-common__content {
    padding-inline: 75px;
  }
}
.list-common__content .title {
  color: #fff;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: auto;
}
@media (min-width: 992px) {
  .list-common__content .title {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .list-common__content .title {
    font-size: 20px;
  }
}
.list-common__content .text {
  color: #fff;
  font-weight: 300;
  margin-top: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: auto;
}
@media (min-width: 992px) {
  .list-common__content .text {
    max-width: 400px;
  }
}
@media (min-width: 992px) {
  .list-common__content .text {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .list-common__content .text {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .list-common__content .buttons-container {
    position: absolute;
    bottom: 100px;
  }
}
@media (max-width: 1199px) {
  .list-common__content .buttons-container {
    margin-top: 25px;
  }
}

.services > .row {
  counter-reset: dots;
}
@media (min-width: 992px) {
  .services .item:nth-child(2n+2) .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media (max-width: 991px) {
  .services .item:not(:last-child) {
    margin-bottom: 20px;
  }
}

.list-service a {
  display: block;
  position: relative;
  background-color: #fff;
  border-radius: 10px;
}
.list-service a:hover .list-service__picture img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.list-service__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 480px) {
  .list-service__content {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 100%;
  }
}
@media (min-width: 768px) {
  .list-service__content {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .list-service__content {
    padding: 25px;
    row-gap: 20px;
  }
}
.list-service__content .number {
  font-weight: 700;
  line-height: 1;
  color: white;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  text-shadow: -1px -1px 0 #1f1f1f, 1px -1px 0 #012585, -1px 1px 0 #1f1f1f, 1px 1px 0 #1f1f1f;
  counter-increment: dots;
}
.list-service__content .number::before {
  content: counter(dots, decimal-leading-zero) " ";
}
@media (min-width: 768px) {
  .list-service__content .number {
    font-size: 78px;
  }
}
@media (max-width: 767px) {
  .list-service__content .number {
    font-size: 36px;
  }
}
.list-service__content .sub .title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: auto;
  color: #1f1f1f;
}
.list-service__content .sub .text {
  color: #232020;
  font-size: 14px;
  font-weight: 300;
  margin-top: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: auto;
  text-wrap: inherit !important;
}
.list-service__picture {
  overflow: hidden;
  border-radius: 10px;
  display: block;
}
@media (min-width: 768px) {
  .list-service__picture {
    height: 375px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .list-service__picture {
    height: 300px;
  }
}
.list-service__picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
  -webkit-transition: 1s -webkit-transform cubic-bezier(0, 0, 0.2, 1);
  transition: 1s -webkit-transform cubic-bezier(0, 0, 0.2, 1);
  transition: 1s transform cubic-bezier(0, 0, 0.2, 1);
  transition: 1s transform cubic-bezier(0, 0, 0.2, 1), 1s -webkit-transform cubic-bezier(0, 0, 0.2, 1);
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: calc(-1 * var(--nav-gutter));
  margin-right: calc(-1 * var(--nav-gutter));
}
@media (max-width: 991px) {
  .navigation {
    display: none;
  }
}
.navigation-item {
  padding-left: var(--nav-gutter);
  padding-right: var(--nav-gutter);
}
.navigation-item.is-triangle > a::after, .navigation-item.is-triangle > button::after {
  display: block;
}
.navigation-item > a, .navigation-item > button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  height: var(--header-height);
  color: #fff;
  position: relative;
  font-family: inherit;
  line-height: 1.2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.navigation-item > a::before, .navigation-item > button::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  height: 3px;
  background-color: currentColor;
  width: 0;
  margin-inline: auto;
  -webkit-transition: width 0.35s;
  transition: width 0.35s;
}
.navigation-item:hover > a::before, .navigation-item:hover > button::before {
  width: 100%;
}
.navigation-item:hover > .navigation-links {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  pointer-events: initial;
}
.navigation-item:hover .navigation-dropdown {
  opacity: 1;
  visibility: visible;
}
.navigation-item:hover .navigation-dropdown__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.navigation-links:not(.ui-style-default) {
  position: absolute;
  background: #fff;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  min-width: 250px;
  padding: 5px 20px 20px 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
  pointer-events: none;
  will-change: opacity, transform;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.navigation-links > li {
  display: block;
}
.navigation-links > li > a {
  display: block;
  font-size: 14px;
  padding-block: 15px;
  color: #232020;
  border-bottom: 1px solid #f3f1ee;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.navigation-links > li > a:hover {
  padding-left: 5px;
}
.navigation-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}
.navigation-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: rgba(239, 239, 239, 0.3);
}
.navigation-dropdown__content {
  padding-top: 50px;
  padding-bottom: 50px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
}
.navigation-dropdown__content .heading {
  color: #012585;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.navigation-mobile {
  background-color: #fff;
  position: fixed;
  z-index: 1000;
  inset: 0;
  padding-top: var(--header-height);
  will-change: opacity, transform;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.navigation-mobile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: rgba(239, 239, 239, 0.3);
}
.navigation-mobile:not(.is-visible) {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
}
.navigation-mobile__content {
  padding: 20px var(--gutter);
  height: calc(100% - 80px);
  overflow-y: auto;
}
@media (max-width: 479px) {
  .navigation-mobile__content {
    max-width: 390px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .navigation-mobile__content {
    max-width: 600px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .navigation-mobile__content {
    max-width: 768px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .navigation-mobile__content {
    max-width: 992px;
  }
}
@media (max-width: 1199px) {
  .navigation-mobile__content {
    margin-inline: auto;
  }
}
.navigation-mobile__content .list:not(:last-child) {
  margin-bottom: 40px;
}
.navigation-mobile__content .list .item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.navigation-mobile__content .list .item.is-open > a {
  color: #012585;
}
.navigation-mobile__content .list .item.is-open > a .icon {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.navigation-mobile__content .list .item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-block: 17px;
  font-size: 18px;
  font-weight: 600;
  color: #232020;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.navigation-mobile__content .list .item > a .icon {
  font-size: 12px;
  color: #1f1f1f;
  will-change: transform;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
.navigation-mobile__content .list .item > a .icon svg {
  stroke: currentColor;
}
.navigation-mobile__content .list .header-buttons {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .navigation-mobile__content .list .header-buttons {
    display: none !important;
  }
}
.navigation-mobile__sub {
  padding-bottom: 10px;
  display: none;
}
.navigation-mobile__sub li.ui-heading {
  position: sticky;
  top: -30px;
  margin-left: -15px;
}
.navigation-mobile__sub li.ui-heading a {
  background-color: #EFEFEF;
  border-radius: 10px;
  padding-inline: 15px;
  font-weight: 500;
}
.navigation-mobile__sub li a {
  color: rgba(35, 32, 32, 0.65);
  padding-block: 10px;
  font-size: 16px;
  display: block;
}
.navigation-mobile__footer {
  background-color: #EFEFEF;
  height: 80px;
  padding-inline: var(--gutter);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.hero {
  margin-top: calc(-1 * var(--header-height));
}

.slide-material {
  height: var(--slide-height);
}
@media (min-width: 992px) {
  .slide-material {
    min-height: 700px;
  }
}
.slide-material picture {
  width: 100%;
  height: 100%;
  display: block;
}
.slide-material img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slide-wrapper {
  position: absolute;
  inset: 0;
}
.slide-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #0f2258;
  opacity: 0.45;
}
.slide-container {
  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;
  height: 100%;
}
.slide-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
@media (min-width: 1200px) {
  .slide-content {
    width: 75%;
  }
}
.slide-content .heading {
  color: #fff;
  font-size: clamp(32px, 3.75vw, 54px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  text-wrap: initial !important;
}
@media (min-width: 992px) {
  .slide-content .heading {
    letter-spacing: -1.5px;
  }
}
@media (max-width: 991px) {
  .slide-content .heading {
    letter-spacing: -1px;
  }
}
.slide-content .text {
  color: #fff;
  font-size: clamp(12px, 1.40625vw, 18px);
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .slide-content .text {
    margin-bottom: 20px;
    letter-spacing: 3px;
  }
}
@media (max-width: 767px) {
  .slide-content .text {
    margin-bottom: 10px;
    letter-spacing: 1.5px;
  }
}
@media (min-width: 768px) {
  .slide-content .buttons-container {
    margin-top: 45px;
  }
}
@media (max-width: 767px) {
  .slide-content .buttons-container {
    margin-top: 15px;
  }
}

.slide-list .swiper-slide.swiper-slide-effect .slide-content .heading,
.slide-list .swiper-slide.swiper-slide-effect .slide-content .text,
.slide-list .swiper-slide.swiper-slide-effect .slide-content .buttons-container {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.slide-list .swiper-slide .slide-content .heading,
.slide-list .swiper-slide .slide-content .text,
.slide-list .swiper-slide .slide-content .buttons-container {
  opacity: 0;
  visibility: hidden;
}
.slide-list .swiper-slide .slide-content .heading {
  -webkit-transition: 0.9s 0.2s;
  transition: 0.9s 0.2s;
  -webkit-transform: translateY(-50px);
      -ms-transform: translateY(-50px);
          transform: translateY(-50px);
}
.slide-list .swiper-slide .slide-content .text {
  -webkit-transition: 0.9s 0.1s;
  transition: 0.9s 0.1s;
  -webkit-transform: translateY(-50px);
      -ms-transform: translateY(-50px);
          transform: translateY(-50px);
}
.slide-list .swiper-slide .slide-content .buttons-container {
  -webkit-transition: 0.9s 0.3s;
  transition: 0.9s 0.3s;
  -webkit-transform: translateY(-50px);
      -ms-transform: translateY(-50px);
          transform: translateY(-50px);
}

.main {
  background-color: #fff;
  position: relative;
  z-index: 5;
}
@media (min-width: 992px) {
  .main {
    border-top-left-radius: calc(30px * 2);
    border-top-right-radius: calc(30px * 2);
    margin-top: -100px;
  }
}
@media (max-width: 991px) {
  .main {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin-top: -20px;
    overflow: hidden;
  }
}

.section-bg:not([class*=ui-bg-]) {
  background-color: #012585;
}
.section-bg.ui-bg-1 {
  background-color: rgba(192, 210, 255, 0.2);
}

@media (min-width: 1200px) {
  .section-content.ui-left {
    padding-left: calc((100vw - (var(--container) - var(--gutter))) / 2);
  }
}
@media (max-width: 479px) {
  .section-content.ui-left {
    max-width: 390px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .section-content.ui-left {
    max-width: 600px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-content.ui-left {
    max-width: 768px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .section-content.ui-left {
    max-width: 992px;
  }
}
@media (max-width: 1199px) {
  .section-content.ui-left {
    padding-inline: 20px;
    margin-inline: auto;
  }
}
@media (min-width: 1200px) {
  .section-content.ui-right {
    padding-right: calc((100vw - (var(--container) - var(--gutter))) / 2);
  }
}

@media (min-width: 1200px) {
  .section-about .container > .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 1199px) {
  .section-about .container > .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 50px;
  }
}
@media (min-width: 768px) {
  .section-about__photos {
    width: 710px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-about__photos {
    height: 620px;
  }
}
.section-about__photos .photo {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: 0px 20px 40px 0px rgba(159, 159, 159, 0.5);
          box-shadow: 0px 20px 40px 0px rgba(159, 159, 159, 0.5);
}
.section-about__photos .photo-col {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section-about__photos .photo:not([class*=ui-size-]) {
  z-index: 1;
}
@media (min-width: 768px) {
  .section-about__photos .photo:not([class*=ui-size-]) {
    width: 305px;
    height: 480px;
  }
}
@media (max-width: 767px) {
  .section-about__photos .photo[class*=ui-size-] {
    display: none !important;
  }
}
.section-about__photos .photo.ui-size-1 {
  width: 224px;
  height: 157px;
  left: 85px;
  top: 30px;
}
.section-about__photos .photo.ui-size-2 {
  width: 224px;
  height: 157px;
  left: 60px;
  bottom: -85px;
  z-index: 2;
}
.section-about__photos .photo.ui-size-3 {
  width: 255px;
  height: 178px;
  top: -20px;
  right: -20px;
  z-index: 2;
}
.section-about__photos .photo.ui-size-4 {
  width: 250px;
  height: 178px;
  right: -10px;
  bottom: -120px;
}
.section-about__photos .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-about::before, .section-about::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid #3d5bae;
  border-radius: 50%;
}
@media (max-width: 1199px) {
  .section-about::before, .section-about::after {
    opacity: 0.5;
  }
}
@media (min-width: 1200px) {
  .section-about::before {
    left: 15.625vw;
    width: 70px;
    height: 70px;
    top: 50px;
  }
}
@media (max-width: 1199px) {
  .section-about::before {
    width: 110px;
    height: 110px;
    right: -55px;
    top: 30px;
  }
}
@media (min-width: 1200px) {
  .section-about::after {
    top: 75px;
    right: -345px;
    width: 790px;
    height: 790px;
  }
}
@media (max-width: 1199px) {
  .section-about::after {
    top: 350px;
    right: -75px;
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 1199px) {
  .section-services .swiper {
    padding-inline: 20px;
  }
}
@media (min-width: 480px) {
  .section-services .swiper-slide {
    width: 400px !important;
  }
}
@media (max-width: 479px) {
  .section-services .swiper-slide {
    width: calc(100vw - 40px) !important;
    max-width: calc(var(--container) - var(--gutter-large));
  }
}
@media (min-width: 1200px) {
  .section-services .section-container > .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 1199px) {
  .section-services .section-container > .row {
    row-gap: 40px;
  }
}
@media (min-width: 1200px) {
  .section-services .section-content {
    padding-right: 100px;
  }
}
.section-services .section-header .title span {
  display: block;
}
@media (min-width: 1200px) {
  .section-services .swiper-buttons {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (max-width: 1199px) {
  .section-services .swiper-buttons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 991px) {
  .section-history .section-container > .row {
    row-gap: 50px;
  }
}
@media (max-width: 479px) {
  .section-history .section-right {
    max-width: 390px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .section-history .section-right {
    max-width: 600px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-history .section-right {
    max-width: 768px;
  }
}
@media (max-width: 991px) {
  .section-history .section-right {
    margin-inline: auto;
    padding-inline: 20px;
  }
}
.section-history__cover {
  display: block;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .section-history__cover {
    margin-top: -100px;
    height: clamp(400px, 43.75vw, 800px);
  }
}
@media (min-width: 992px) {
  .section-history__cover::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
    border: 1px solid #1f1f1f;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
  }
}
.section-history__cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 992px) {
  .section-history__cover img {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
  }
}
@media (max-width: 991px) {
  .section-history__cover img {
    border-radius: 10px;
  }
}

.section-projects::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid #3d5bae;
  border-radius: 50%;
  top: 30px;
  right: -200px;
  width: 350px;
  height: 350px;
}
@media (max-width: 1199px) {
  .section-projects::after {
    display: none;
  }
}
@media (max-width: 1199px) {
  .section-projects .section-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (min-width: 1200px) {
  .section-projects .section-container > .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 1199px) {
  .section-projects .section-container > .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    row-gap: 50px;
  }
}
@media (max-width: 479px) {
  .section-projects .section-content.ui-right {
    max-width: 390px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .section-projects .section-content.ui-right {
    max-width: 600px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-projects .section-content.ui-right {
    max-width: 768px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .section-projects .section-content.ui-right {
    max-width: 992px;
  }
}
@media (max-width: 1199px) {
  .section-projects .section-content.ui-right {
    margin-inline: auto;
    padding-inline: 20px;
  }
}
@media (min-width: 480px) {
  .section-projects .swiper-slide {
    width: 400px !important;
  }
}
@media (max-width: 479px) {
  .section-projects .swiper-slide {
    width: calc(100vw - 40px) !important;
    max-width: calc(var(--container) - var(--gutter-large));
  }
}
@media (max-width: 1199px) {
  .section-projects .swiper-buttons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .section-projects .swiper-buttons {
    margin-top: 80px;
  }
}

.section-blog {
  z-index: 1;
}
.section-blog::before, .section-blog::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid #3d5bae;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .section-blog::before, .section-blog::after {
    display: none !important;
  }
}
.section-blog::before {
  top: 50px;
  right: -250px;
  width: 550px;
  height: 550px;
}
.section-blog::after {
  left: -250px;
  bottom: 50px;
  width: 400px;
  height: 400px;
}
@media (max-width: 767px) {
  .section-blog .section-header {
    text-align: left !important;
  }
}
.section-blog .section-header span {
  display: block;
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-blog .lists + .buttons-container {
    margin-top: 50px;
  }
}

.section-contactus {
  position: relative;
  z-index: 3;
}
.section-contactus__wrapper {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.section-contactus__wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: black;
  opacity: 0.3;
}
@media (min-width: 992px) {
  .section-contactus .container > .row {
    height: 100%;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media (min-width: 992px) {
  .section-contactus__content {
    height: 100%;
  }
}
.section-contactus__content .section-header {
  max-width: 340px;
}
.section-contactus__form-content {
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  -webkit-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1490196078);
  overflow: hidden;
}
@media (min-width: 480px) {
  .section-contactus__form-content {
    padding: 45px;
  }
}
@media (min-width: 992px) {
  .section-contactus__form-content {
    max-width: 441px;
  }
}
@media (max-width: 479px) {
  .section-contactus__form-content {
    padding: 25px;
  }
}
.section-contactus__form-content .section-header .text {
  max-width: 240px;
}
@media (max-width: 767px) {
  .section-contactus__form-content .form form ul {
    margin-inline: -5px;
  }
  .section-contactus__form-content .form form ul > li {
    padding-inline: 5px;
  }
}

@media (max-width: 991px) {
  .section-single {
    padding-top: 50px;
  }
}
.section-single__wrapper {
  background-color: #fff;
  min-height: 500px;
  border-radius: 15px;
  position: relative;
  -webkit-box-shadow: 0px 11px 25.3px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 11px 25.3px 0px rgba(0, 0, 0, 0.1019607843);
}
@media (min-width: 992px) {
  .section-single__wrapper {
    top: -50px;
  }
}
.section-single__content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 992px) {
  .section-single__content {
    padding-inline: 70px;
  }
}
@media (max-width: 767px) {
  .section-single__content {
    padding: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-single__content {
    padding: 60px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .section-single__content {
    padding-block: 60px;
  }
}
.section-single__content .section-header .text {
  line-height: 1.4 !important;
}
.section-single__picture {
  border-radius: 13px;
  display: block;
  overflow: hidden;
}
@media (min-width: 992px) {
  .section-single__picture {
    height: 100%;
  }
}
.section-single__picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-history02 .section-header .text {
  max-width: 710px;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .section-history02__photos {
    padding-inline: 120px;
  }
}
@media (min-width: 768px) {
  .section-history02__photos > .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 767px) {
  .section-history02__photos > .row > div:first-child, .section-history02__photos > .row > div:last-child {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .section-history02__photos > .row > div:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media (min-width: 992px) {
  .section-history02__photos .photo:not([class*=ui-size-]) {
    height: 510px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-history02__photos .photo:not([class*=ui-size-]) {
    height: 430px;
  }
}
@media (min-width: 992px) {
  .section-history02__photos .photo.ui-size-small {
    height: 165px;
    width: 235px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .section-history02__photos .photo.ui-size-small {
    height: 140px;
    width: 200px;
  }
}
.section-history02__photos .photo:not(:last-child) {
  margin-bottom: 20px;
}
.section-history02__photos .photo picture {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 15px;
}
.section-history02__photos .photo picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.form > form > ul.row > div {
  position: relative;
}
.form > form > ul:not(.row) li:not(:last-child) {
  margin-bottom: 30px;
}
.form-radio {
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.form-field {
  position: relative;
}
.form-field.ui-selectbox .form-error {
  right: 50px;
}
.form-field.ui-textarea .form-error {
  top: 15px;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.form-field .heading {
  color: #1f1f1f;
  font-size: 16px;
  margin-bottom: 10px;
}
.form-field .icon:not(.ui-not):not(.ui-arrow) {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #f3f1ee;
}
@media (min-width: 768px) {
  .form-field .icon:not(.ui-not):not(.ui-arrow) {
    left: 30px;
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .form-field .icon:not(.ui-not):not(.ui-arrow) {
    left: 15px;
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .form-field .icon:not(.ui-not):not(.ui-arrow) + input {
    padding-left: 70px;
  }
}
@media (max-width: 767px) {
  .form-field .icon:not(.ui-not):not(.ui-arrow) + input {
    padding-left: 45px;
  }
}
.form-field.is-error input,
.form-field.is-error textarea,
.form-field.is-error label,
.form-field.is-error select {
  border: 1px solid #d9222a !important;
  background-color: rgba(217, 34, 42, 0.05) !important;
}
.form-field.is-error input::-webkit-input-placeholder,
.form-field.is-error textarea::-webkit-input-placeholder,
.form-field.is-error label::-webkit-input-placeholder,
.form-field.is-error select::-webkit-input-placeholder {
  /* Edge */
  color: rgba(217, 34, 42, 0.75);
}
.form-field.is-error input:-ms-input-placeholder,
.form-field.is-error textarea:-ms-input-placeholder,
.form-field.is-error label:-ms-input-placeholder,
.form-field.is-error select:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgba(217, 34, 42, 0.75);
}
.form-field.is-error input::-webkit-input-placeholder, .form-field.is-error textarea::-webkit-input-placeholder, .form-field.is-error label::-webkit-input-placeholder, .form-field.is-error select::-webkit-input-placeholder {
  color: rgba(217, 34, 42, 0.75);
}
.form-field.is-error input::-moz-placeholder, .form-field.is-error textarea::-moz-placeholder, .form-field.is-error label::-moz-placeholder, .form-field.is-error select::-moz-placeholder {
  color: rgba(217, 34, 42, 0.75);
}
.form-field.is-error input:-ms-input-placeholder, .form-field.is-error textarea:-ms-input-placeholder, .form-field.is-error label:-ms-input-placeholder, .form-field.is-error select:-ms-input-placeholder {
  color: rgba(217, 34, 42, 0.75);
}
.form-field.is-error input::-ms-input-placeholder, .form-field.is-error textarea::-ms-input-placeholder, .form-field.is-error label::-ms-input-placeholder, .form-field.is-error select::-ms-input-placeholder {
  color: rgba(217, 34, 42, 0.75);
}
.form-field.is-error input::placeholder,
.form-field.is-error textarea::placeholder,
.form-field.is-error label::placeholder,
.form-field.is-error select::placeholder {
  color: rgba(217, 34, 42, 0.75);
}
.form-field.is-error .icon,
.form-field.is-error label,
.form-field.is-error .heading {
  color: #d9222a !important;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid transparent;
  font-family: inherit;
  background-color: rgba(235, 235, 235, 0.6);
  color: #1f1f1f;
  font-weight: normal;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.form-field input::-webkit-input-placeholder,
.form-field textarea::-webkit-input-placeholder {
  /* Edge */
  color: rgba(31, 31, 31, 0.75);
}
.form-field input:-ms-input-placeholder,
.form-field textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgba(31, 31, 31, 0.75);
}
.form-field input::-webkit-input-placeholder, .form-field textarea::-webkit-input-placeholder {
  color: rgba(31, 31, 31, 0.75);
}
.form-field input::-moz-placeholder, .form-field textarea::-moz-placeholder {
  color: rgba(31, 31, 31, 0.75);
}
.form-field input:-ms-input-placeholder, .form-field textarea:-ms-input-placeholder {
  color: rgba(31, 31, 31, 0.75);
}
.form-field input::-ms-input-placeholder, .form-field textarea::-ms-input-placeholder {
  color: rgba(31, 31, 31, 0.75);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(31, 31, 31, 0.75);
}
@media (min-width: 768px) {
  .form-field input,
  .form-field textarea {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .form-field input,
  .form-field textarea {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .form-field input:not([class*=ui-size-]),
  .form-field textarea:not([class*=ui-size-]) {
    height: 50px;
    border-radius: 10px;
  }
}
@media (max-width: 767px) {
  .form-field input:not([class*=ui-size-]),
  .form-field textarea:not([class*=ui-size-]) {
    height: 36px;
    border-radius: 6px;
  }
}
.form-field input:focus,
.form-field textarea:focus {
  border: 1px solid rgba(35, 32, 32, 0.65);
}
.form-field textarea {
  display: block;
}
@media (min-width: 768px) {
  .form-field textarea {
    height: 150px !important;
    padding-top: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .form-field textarea {
    height: 100px !important;
    padding-top: 12px;
    padding-left: 15px;
  }
}
.form-field .icon.ui-arrow {
  position: absolute;
  pointer-events: none;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 16px;
  color: #012585;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form-group {
  position: relative;
}
.form-footer {
  width: 100%;
}
@media (min-width: 992px) {
  .form-footer {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 991px) {
  .form-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 40px;
  }
}
.form-kvkk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.form-captcha:not([class*=ui-mt-]) {
  margin-top: 30px;
}
.form-send:not(.ui-no-min-width) > input {
  min-width: 190px;
}
.form-send > input {
  background-color: #012585;
  font-family: inherit;
  border: 0 none;
  text-align: center;
  height: calc(50px + 5px);
  text-transform: uppercase;
  border-radius: 10px;
  width: 100%;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  will-change: transform;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
@media (min-width: 768px) {
  .form-send > input {
    font-size: 13px;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
}
@media (max-width: 767px) {
  .form-send > input {
    font-size: 11px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.form-send > input:hover {
  background-color: #89A9FF;
  color: #232020;
}

.form-error {
  color: #d9222a;
  font-size: 11px;
  font-weight: 500;
  position: absolute;
  right: 5px;
  margin-top: -2px;
  z-index: 1;
  top: 100%;
  background-color: #fff;
  padding: 7px 12px;
  -webkit-box-shadow: 0px 20px 40px 0px rgba(159, 159, 159, 0.5);
          box-shadow: 0px 20px 40px 0px rgba(159, 159, 159, 0.5);
  border-radius: 6px;
}
.form-error::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 100%;
  right: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0px 20px 40px 0px rgba(159, 159, 159, 0.5);
          box-shadow: 0px 20px 40px 0px rgba(159, 159, 159, 0.5);
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-bottom: -5px;
  width: 10px;
  height: 10px;
}
.form-messages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px;
  padding: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-wrap: initial;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}
.form-messages.ui-success {
  color: #3c763d;
  background-color: #dff0d8;
  border: 1px solid #d6e9c6;
}
.form-messages.ui-error {
  color: #a94442;
  background-color: #f2dede;
  border: 1px solid #ebccd1;
}

.g-recaptcha {
  display: inline-block;
}
.g-recaptcha.is-error {
  border: 2px solid #d9222a;
}

#FormCalcBireysel .form-error {
  display: none !important;
}

#FormCalcKurumsal .form-error {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1002;
  background-color: rgba(0, 0, 0, 0.6);
  padding-inline: 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.modal:not(.is-visible) {
  opacity: 0;
  visibility: hidden;
}
.modal:not(.ui-no-modal-center) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal.ui-no-modal-center {
  padding-block: 10px;
}
.modal-wrapper {
  background-color: #fff;
  border-radius: 15px;
  position: relative;
  will-change: transform;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.modal-wrapper:not(.is-visible) {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-50px);
      -ms-transform: translateY(-50px);
          transform: translateY(-50px);
}
.modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
}
.modal-close .icon {
  width: 40px;
  height: 40px;
  background-color: #012585;
  border-radius: 50%;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  will-change: transform;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.modal-close .icon:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  background-color: rgb(0.8097014925, 29.9589552239, 107.6902985075);
}
.modal-kvkk .modal-wrapper {
  height: 500px;
  max-height: 80%;
  width: 800px;
  max-width: 100%;
  position: relative;
}
.modal-kvkk .modal-content {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-color: #012585 rgba(1, 37, 133, 0.1);
  scrollbar-width: thin;
}
.modal-kvkk .modal-content::-webkit-scrollbar-track {
  background-color: rgba(1, 37, 133, 0.1);
}
.modal-kvkk .modal-content::-webkit-scrollbar {
  width: 5px;
}
.modal-kvkk .modal-content::-webkit-scrollbar-thumb {
  background-color: #012585;
}
@media (min-width: 992px) {
  .modal-kvkk .modal-content {
    padding: 80px;
  }
}
@media (max-width: 991px) {
  .modal-kvkk .modal-content {
    padding: 40px;
  }
}

@media (min-width: 1200px) {
  .contact-address {
    max-width: 41%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-address {
    max-width: 60%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .contact-address {
    max-width: 60%;
  }
}
@media (min-width: 768px) {
  .contact-address > .row {
    row-gap: 40px !important;
  }
}
@media (max-width: 767px) {
  .contact-address > .row {
    row-gap: 20px !important;
  }
}
@media (min-width: 768px) {
  .contact-address > .row > div:not(.col-12):not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 3px;
    bottom: 0;
    width: 1px;
    background-color: #fff;
    opacity: 0.5;
  }
}
@media (min-width: 768px) and (min-width: 992px) and (max-width: 1199px) {
  .contact-address > .row > div:not(.col-12):not(:last-child)::after {
    right: 35px;
  }
}
.contact-address .item {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}
.contact-address .item:not(:last-child) {
  margin-bottom: 7px;
}
.contact-address .item:hover[href] .label {
  text-decoration: underline;
}
.contact-address .item .icon {
  font-size: 12px;
}
.contact-address .item .label {
  font-weight: 300;
  font-size: 14px;
}
.contact-address .item .label strong {
  font-weight: 700;
}
.contact-map {
  overflow: hidden;
}
@media (min-width: 768px) {
  .contact-map {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .contact-map {
    height: 400px;
  }
}
.contact-map iframe {
  width: 100%;
  height: 100%;
}
.contact-form {
  background-color: #fff;
}
@media (min-width: 768px) {
  .contact-form {
    padding: 70px;
    border-radius: 20px;
  }
}
@media (max-width: 767px) {
  .contact-form {
    padding: 25px;
    border-radius: 10px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .contact-form .form > form > ul.row {
    row-gap: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-form .form > form > ul.row {
    row-gap: 20px;
  }
}
@media (max-width: 479px) {
  .contact-form .form > form > ul.row > li:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) {
  .contact-form .form-kvkk label.checkbox {
    max-width: 60%;
  }
}

@media (min-width: 992px) {
  .detail-project__header-content {
    padding-right: 50px;
  }
}
@media (max-width: 991px) {
  .detail-project__header > .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.detail-project__cover {
  overflow: hidden;
  display: block;
  -webkit-box-shadow: 0px 12px 14.4px 0px rgba(0, 0, 0, 0.1019607843);
          box-shadow: 0px 12px 14.4px 0px rgba(0, 0, 0, 0.1019607843);
  position: relative;
}
@media (min-width: 992px) {
  .detail-project__cover {
    top: -70px;
    height: 650px;
    border-radius: 15px;
  }
}
@media (max-width: 991px) {
  .detail-project__cover {
    border-radius: 10px;
    margin-top: 50px;
  }
}
.detail-project__cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #232020;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
}
body:not(.ui-no-scroll) {
  overflow-x: hidden;
}
body.ui-no-scroll {
  overflow: hidden;
}
body.ui-bg {
  background: #EFEFEF;
}
body.is-scroll {
  overflow: hidden;
}

.ui-no-scroll {
  overflow: hidden;
}

.ui-no-scroll-y {
  overflow-y: hidden;
}

.ui-no-scroll-x {
  overflow-x: hidden;
}

.ui-pos-relative {
  position: relative;
}

.ui-pos-absolute {
  position: absolute;
}

.ui-pos-inherit {
  position: inherit;
}

.ui-pos-sticky {
  position: sticky;
}

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

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

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

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

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

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

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

.ui-ai-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.ui-ai-between {
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
}

/* ui fx wrap */
.ui-fx-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* fx dir column */
.ui-fx-dir-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* fx dir column reverse */
.ui-fx-dir-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/* z-index */
.ui-z-index {
  position: relative;
  z-index: 9;
}

/* Semantically: Visible */
.ui-visually-hidden {
  position: absolute;
  clip-path: inset(100%);
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  white-space: nowrap;
  pointer-events: none;
  clip: rect(0 0 0 0);
}

/* Off-Screen */
.ui-offscreen {
  position: absolute;
  left: -200%;
}

/* Button-Reset */
.ui-btn-reset {
  border-width: 0;
  padding: 0;
  background-color: transparent;
}

.ui-visibility-hidden {
  visibility: hidden;
}

.ui-overflow-hidden {
  overflow: hidden;
}

@media (min-width: 992px) {
  .ui-hidden {
    display: none !important;
  }
}
@media (max-width: 479px) {
  .ui-xs-hidden {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .ui-sm-hidden {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .ui-md-hidden {
    display: none !important;
  }
}
@media (max-width: 1199px) {
  .ui-lg-hidden {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .ui-pv-5px {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .ui-pv-10px {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .ui-pv-15px {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .ui-pv-20px {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .ui-pv-25px {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .ui-pv-30px {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .ui-pv-35px {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .ui-pv-40px {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .ui-pv-45px {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .ui-pv-50px {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .ui-pv-55px {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .ui-pv-60px {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ui-pv-65px {
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .ui-pv-70px {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .ui-pv-75px {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .ui-pv-80px {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .ui-pv-85px {
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .ui-pv-90px {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .ui-pv-95px {
    padding-top: 95px;
    padding-bottom: 95px;
  }
  .ui-pv-100px {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .ui-pv-105px {
    padding-top: 105px;
    padding-bottom: 105px;
  }
  .ui-pv-110px {
    padding-top: 110px;
    padding-bottom: 110px;
  }
  .ui-pv-115px {
    padding-top: 115px;
    padding-bottom: 115px;
  }
  .ui-pv-120px {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .ui-pv-125px {
    padding-top: 125px;
    padding-bottom: 125px;
  }
  .ui-pv-130px {
    padding-top: 130px;
    padding-bottom: 130px;
  }
  .ui-pv-135px {
    padding-top: 135px;
    padding-bottom: 135px;
  }
  .ui-pv-140px {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .ui-pv-145px {
    padding-top: 145px;
    padding-bottom: 145px;
  }
  .ui-pv-150px {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  .ui-pv-155px {
    padding-top: 155px;
    padding-bottom: 155px;
  }
  .ui-pv-160px {
    padding-top: 160px;
    padding-bottom: 160px;
  }
  .ui-pv-165px {
    padding-top: 165px;
    padding-bottom: 165px;
  }
  .ui-pv-170px {
    padding-top: 170px;
    padding-bottom: 170px;
  }
  .ui-pv-175px {
    padding-top: 175px;
    padding-bottom: 175px;
  }
  .ui-pv-180px {
    padding-top: 180px;
    padding-bottom: 180px;
  }
  .ui-pv-185px {
    padding-top: 185px;
    padding-bottom: 185px;
  }
  .ui-pv-190px {
    padding-top: 190px;
    padding-bottom: 190px;
  }
  .ui-pv-195px {
    padding-top: 195px;
    padding-bottom: 195px;
  }
  .ui-pv-200px {
    padding-top: 200px;
    padding-bottom: 200px;
  }
  .ui-pv-205px {
    padding-top: 205px;
    padding-bottom: 205px;
  }
  .ui-pv-210px {
    padding-top: 210px;
    padding-bottom: 210px;
  }
  .ui-pv-215px {
    padding-top: 215px;
    padding-bottom: 215px;
  }
  .ui-pv-220px {
    padding-top: 220px;
    padding-bottom: 220px;
  }
  .ui-pv-225px {
    padding-top: 225px;
    padding-bottom: 225px;
  }
  .ui-pv-230px {
    padding-top: 230px;
    padding-bottom: 230px;
  }
  .ui-pv-235px {
    padding-top: 235px;
    padding-bottom: 235px;
  }
  .ui-pv-240px {
    padding-top: 240px;
    padding-bottom: 240px;
  }
  .ui-pv-245px {
    padding-top: 245px;
    padding-bottom: 245px;
  }
  .ui-pv-250px {
    padding-top: 250px;
    padding-bottom: 250px;
  }
  .ui-pv-255px {
    padding-top: 255px;
    padding-bottom: 255px;
  }
  .ui-pv-260px {
    padding-top: 260px;
    padding-bottom: 260px;
  }
  .ui-pv-265px {
    padding-top: 265px;
    padding-bottom: 265px;
  }
  .ui-pv-270px {
    padding-top: 270px;
    padding-bottom: 270px;
  }
  .ui-pv-275px {
    padding-top: 275px;
    padding-bottom: 275px;
  }
  .ui-pv-280px {
    padding-top: 280px;
    padding-bottom: 280px;
  }
  .ui-pv-285px {
    padding-top: 285px;
    padding-bottom: 285px;
  }
  .ui-pv-290px {
    padding-top: 290px;
    padding-bottom: 290px;
  }
  .ui-pv-295px {
    padding-top: 295px;
    padding-bottom: 295px;
  }
  .ui-pv-300px {
    padding-top: 300px;
    padding-bottom: 300px;
  }
}
@media (max-width: 991px) {
  .ui-pv-mobile-5px {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .ui-pv-mobile-10px {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .ui-pv-mobile-15px {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .ui-pv-mobile-20px {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .ui-pv-mobile-25px {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .ui-pv-mobile-30px {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .ui-pv-mobile-35px {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .ui-pv-mobile-40px {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .ui-pv-mobile-45px {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .ui-pv-mobile-50px {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .ui-pv-mobile-55px {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .ui-pv-mobile-60px {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .ui-pv-mobile-65px {
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .ui-pv-mobile-70px {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .ui-pv-mobile-75px {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .ui-pv-mobile-80px {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .ui-pv-mobile-85px {
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .ui-pv-mobile-90px {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .ui-pv-mobile-95px {
    padding-top: 95px;
    padding-bottom: 95px;
  }
  .ui-pv-mobile-100px {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .ui-pv-mobile-105px {
    padding-top: 105px;
    padding-bottom: 105px;
  }
  .ui-pv-mobile-110px {
    padding-top: 110px;
    padding-bottom: 110px;
  }
  .ui-pv-mobile-115px {
    padding-top: 115px;
    padding-bottom: 115px;
  }
  .ui-pv-mobile-120px {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .ui-pv-mobile-125px {
    padding-top: 125px;
    padding-bottom: 125px;
  }
  .ui-pv-mobile-130px {
    padding-top: 130px;
    padding-bottom: 130px;
  }
  .ui-pv-mobile-135px {
    padding-top: 135px;
    padding-bottom: 135px;
  }
  .ui-pv-mobile-140px {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .ui-pv-mobile-145px {
    padding-top: 145px;
    padding-bottom: 145px;
  }
  .ui-pv-mobile-150px {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  .ui-pv-mobile-155px {
    padding-top: 155px;
    padding-bottom: 155px;
  }
  .ui-pv-mobile-160px {
    padding-top: 160px;
    padding-bottom: 160px;
  }
  .ui-pv-mobile-165px {
    padding-top: 165px;
    padding-bottom: 165px;
  }
  .ui-pv-mobile-170px {
    padding-top: 170px;
    padding-bottom: 170px;
  }
  .ui-pv-mobile-175px {
    padding-top: 175px;
    padding-bottom: 175px;
  }
  .ui-pv-mobile-180px {
    padding-top: 180px;
    padding-bottom: 180px;
  }
  .ui-pv-mobile-185px {
    padding-top: 185px;
    padding-bottom: 185px;
  }
  .ui-pv-mobile-190px {
    padding-top: 190px;
    padding-bottom: 190px;
  }
  .ui-pv-mobile-195px {
    padding-top: 195px;
    padding-bottom: 195px;
  }
  .ui-pv-mobile-200px {
    padding-top: 200px;
    padding-bottom: 200px;
  }
  .ui-pv-mobile-205px {
    padding-top: 205px;
    padding-bottom: 205px;
  }
  .ui-pv-mobile-210px {
    padding-top: 210px;
    padding-bottom: 210px;
  }
  .ui-pv-mobile-215px {
    padding-top: 215px;
    padding-bottom: 215px;
  }
  .ui-pv-mobile-220px {
    padding-top: 220px;
    padding-bottom: 220px;
  }
  .ui-pv-mobile-225px {
    padding-top: 225px;
    padding-bottom: 225px;
  }
  .ui-pv-mobile-230px {
    padding-top: 230px;
    padding-bottom: 230px;
  }
  .ui-pv-mobile-235px {
    padding-top: 235px;
    padding-bottom: 235px;
  }
  .ui-pv-mobile-240px {
    padding-top: 240px;
    padding-bottom: 240px;
  }
  .ui-pv-mobile-245px {
    padding-top: 245px;
    padding-bottom: 245px;
  }
  .ui-pv-mobile-250px {
    padding-top: 250px;
    padding-bottom: 250px;
  }
  .ui-pv-mobile-255px {
    padding-top: 255px;
    padding-bottom: 255px;
  }
  .ui-pv-mobile-260px {
    padding-top: 260px;
    padding-bottom: 260px;
  }
  .ui-pv-mobile-265px {
    padding-top: 265px;
    padding-bottom: 265px;
  }
  .ui-pv-mobile-270px {
    padding-top: 270px;
    padding-bottom: 270px;
  }
  .ui-pv-mobile-275px {
    padding-top: 275px;
    padding-bottom: 275px;
  }
  .ui-pv-mobile-280px {
    padding-top: 280px;
    padding-bottom: 280px;
  }
  .ui-pv-mobile-285px {
    padding-top: 285px;
    padding-bottom: 285px;
  }
  .ui-pv-mobile-290px {
    padding-top: 290px;
    padding-bottom: 290px;
  }
  .ui-pv-mobile-295px {
    padding-top: 295px;
    padding-bottom: 295px;
  }
  .ui-pv-mobile-300px {
    padding-top: 300px;
    padding-bottom: 300px;
  }
}
@media (min-width: 992px) {
  .ui-pt-5px {
    padding-top: 5px !important;
  }
  .ui-pt-10px {
    padding-top: 10px !important;
  }
  .ui-pt-15px {
    padding-top: 15px !important;
  }
  .ui-pt-20px {
    padding-top: 20px !important;
  }
  .ui-pt-25px {
    padding-top: 25px !important;
  }
  .ui-pt-30px {
    padding-top: 30px !important;
  }
  .ui-pt-35px {
    padding-top: 35px !important;
  }
  .ui-pt-40px {
    padding-top: 40px !important;
  }
  .ui-pt-45px {
    padding-top: 45px !important;
  }
  .ui-pt-50px {
    padding-top: 50px !important;
  }
  .ui-pt-55px {
    padding-top: 55px !important;
  }
  .ui-pt-60px {
    padding-top: 60px !important;
  }
  .ui-pt-65px {
    padding-top: 65px !important;
  }
  .ui-pt-70px {
    padding-top: 70px !important;
  }
  .ui-pt-75px {
    padding-top: 75px !important;
  }
  .ui-pt-80px {
    padding-top: 80px !important;
  }
  .ui-pt-85px {
    padding-top: 85px !important;
  }
  .ui-pt-90px {
    padding-top: 90px !important;
  }
  .ui-pt-95px {
    padding-top: 95px !important;
  }
  .ui-pt-100px {
    padding-top: 100px !important;
  }
  .ui-pt-105px {
    padding-top: 105px !important;
  }
  .ui-pt-110px {
    padding-top: 110px !important;
  }
  .ui-pt-115px {
    padding-top: 115px !important;
  }
  .ui-pt-120px {
    padding-top: 120px !important;
  }
  .ui-pt-125px {
    padding-top: 125px !important;
  }
  .ui-pt-130px {
    padding-top: 130px !important;
  }
  .ui-pt-135px {
    padding-top: 135px !important;
  }
  .ui-pt-140px {
    padding-top: 140px !important;
  }
  .ui-pt-145px {
    padding-top: 145px !important;
  }
  .ui-pt-150px {
    padding-top: 150px !important;
  }
  .ui-pt-155px {
    padding-top: 155px !important;
  }
  .ui-pt-160px {
    padding-top: 160px !important;
  }
  .ui-pt-165px {
    padding-top: 165px !important;
  }
  .ui-pt-170px {
    padding-top: 170px !important;
  }
  .ui-pt-175px {
    padding-top: 175px !important;
  }
  .ui-pt-180px {
    padding-top: 180px !important;
  }
  .ui-pt-185px {
    padding-top: 185px !important;
  }
  .ui-pt-190px {
    padding-top: 190px !important;
  }
  .ui-pt-195px {
    padding-top: 195px !important;
  }
  .ui-pt-200px {
    padding-top: 200px !important;
  }
  .ui-pt-205px {
    padding-top: 205px !important;
  }
  .ui-pt-210px {
    padding-top: 210px !important;
  }
  .ui-pt-215px {
    padding-top: 215px !important;
  }
  .ui-pt-220px {
    padding-top: 220px !important;
  }
  .ui-pt-225px {
    padding-top: 225px !important;
  }
  .ui-pt-230px {
    padding-top: 230px !important;
  }
  .ui-pt-235px {
    padding-top: 235px !important;
  }
  .ui-pt-240px {
    padding-top: 240px !important;
  }
  .ui-pt-245px {
    padding-top: 245px !important;
  }
  .ui-pt-250px {
    padding-top: 250px !important;
  }
  .ui-pt-255px {
    padding-top: 255px !important;
  }
  .ui-pt-260px {
    padding-top: 260px !important;
  }
  .ui-pt-265px {
    padding-top: 265px !important;
  }
  .ui-pt-270px {
    padding-top: 270px !important;
  }
  .ui-pt-275px {
    padding-top: 275px !important;
  }
  .ui-pt-280px {
    padding-top: 280px !important;
  }
  .ui-pt-285px {
    padding-top: 285px !important;
  }
  .ui-pt-290px {
    padding-top: 290px !important;
  }
  .ui-pt-295px {
    padding-top: 295px !important;
  }
  .ui-pt-300px {
    padding-top: 300px !important;
  }
}
@media (max-width: 991px) {
  .ui-pt-mobile-5px {
    padding-top: 5px !important;
  }
  .ui-pt-mobile-10px {
    padding-top: 10px !important;
  }
  .ui-pt-mobile-15px {
    padding-top: 15px !important;
  }
  .ui-pt-mobile-20px {
    padding-top: 20px !important;
  }
  .ui-pt-mobile-25px {
    padding-top: 25px !important;
  }
  .ui-pt-mobile-30px {
    padding-top: 30px !important;
  }
  .ui-pt-mobile-35px {
    padding-top: 35px !important;
  }
  .ui-pt-mobile-40px {
    padding-top: 40px !important;
  }
  .ui-pt-mobile-45px {
    padding-top: 45px !important;
  }
  .ui-pt-mobile-50px {
    padding-top: 50px !important;
  }
  .ui-pt-mobile-55px {
    padding-top: 55px !important;
  }
  .ui-pt-mobile-60px {
    padding-top: 60px !important;
  }
  .ui-pt-mobile-65px {
    padding-top: 65px !important;
  }
  .ui-pt-mobile-70px {
    padding-top: 70px !important;
  }
  .ui-pt-mobile-75px {
    padding-top: 75px !important;
  }
  .ui-pt-mobile-80px {
    padding-top: 80px !important;
  }
  .ui-pt-mobile-85px {
    padding-top: 85px !important;
  }
  .ui-pt-mobile-90px {
    padding-top: 90px !important;
  }
  .ui-pt-mobile-95px {
    padding-top: 95px !important;
  }
  .ui-pt-mobile-100px {
    padding-top: 100px !important;
  }
  .ui-pt-mobile-105px {
    padding-top: 105px !important;
  }
  .ui-pt-mobile-110px {
    padding-top: 110px !important;
  }
  .ui-pt-mobile-115px {
    padding-top: 115px !important;
  }
  .ui-pt-mobile-120px {
    padding-top: 120px !important;
  }
  .ui-pt-mobile-125px {
    padding-top: 125px !important;
  }
  .ui-pt-mobile-130px {
    padding-top: 130px !important;
  }
  .ui-pt-mobile-135px {
    padding-top: 135px !important;
  }
  .ui-pt-mobile-140px {
    padding-top: 140px !important;
  }
  .ui-pt-mobile-145px {
    padding-top: 145px !important;
  }
  .ui-pt-mobile-150px {
    padding-top: 150px !important;
  }
  .ui-pt-mobile-155px {
    padding-top: 155px !important;
  }
  .ui-pt-mobile-160px {
    padding-top: 160px !important;
  }
  .ui-pt-mobile-165px {
    padding-top: 165px !important;
  }
  .ui-pt-mobile-170px {
    padding-top: 170px !important;
  }
  .ui-pt-mobile-175px {
    padding-top: 175px !important;
  }
  .ui-pt-mobile-180px {
    padding-top: 180px !important;
  }
  .ui-pt-mobile-185px {
    padding-top: 185px !important;
  }
  .ui-pt-mobile-190px {
    padding-top: 190px !important;
  }
  .ui-pt-mobile-195px {
    padding-top: 195px !important;
  }
  .ui-pt-mobile-200px {
    padding-top: 200px !important;
  }
  .ui-pt-mobile-205px {
    padding-top: 205px !important;
  }
  .ui-pt-mobile-210px {
    padding-top: 210px !important;
  }
  .ui-pt-mobile-215px {
    padding-top: 215px !important;
  }
  .ui-pt-mobile-220px {
    padding-top: 220px !important;
  }
  .ui-pt-mobile-225px {
    padding-top: 225px !important;
  }
  .ui-pt-mobile-230px {
    padding-top: 230px !important;
  }
  .ui-pt-mobile-235px {
    padding-top: 235px !important;
  }
  .ui-pt-mobile-240px {
    padding-top: 240px !important;
  }
  .ui-pt-mobile-245px {
    padding-top: 245px !important;
  }
  .ui-pt-mobile-250px {
    padding-top: 250px !important;
  }
  .ui-pt-mobile-255px {
    padding-top: 255px !important;
  }
  .ui-pt-mobile-260px {
    padding-top: 260px !important;
  }
  .ui-pt-mobile-265px {
    padding-top: 265px !important;
  }
  .ui-pt-mobile-270px {
    padding-top: 270px !important;
  }
  .ui-pt-mobile-275px {
    padding-top: 275px !important;
  }
  .ui-pt-mobile-280px {
    padding-top: 280px !important;
  }
  .ui-pt-mobile-285px {
    padding-top: 285px !important;
  }
  .ui-pt-mobile-290px {
    padding-top: 290px !important;
  }
  .ui-pt-mobile-295px {
    padding-top: 295px !important;
  }
  .ui-pt-mobile-300px {
    padding-top: 300px !important;
  }
}
@media (min-width: 992px) {
  .ui-pb-5px {
    padding-bottom: 5px !important;
  }
  .ui-pb-10px {
    padding-bottom: 10px !important;
  }
  .ui-pb-15px {
    padding-bottom: 15px !important;
  }
  .ui-pb-20px {
    padding-bottom: 20px !important;
  }
  .ui-pb-25px {
    padding-bottom: 25px !important;
  }
  .ui-pb-30px {
    padding-bottom: 30px !important;
  }
  .ui-pb-35px {
    padding-bottom: 35px !important;
  }
  .ui-pb-40px {
    padding-bottom: 40px !important;
  }
  .ui-pb-45px {
    padding-bottom: 45px !important;
  }
  .ui-pb-50px {
    padding-bottom: 50px !important;
  }
  .ui-pb-55px {
    padding-bottom: 55px !important;
  }
  .ui-pb-60px {
    padding-bottom: 60px !important;
  }
  .ui-pb-65px {
    padding-bottom: 65px !important;
  }
  .ui-pb-70px {
    padding-bottom: 70px !important;
  }
  .ui-pb-75px {
    padding-bottom: 75px !important;
  }
  .ui-pb-80px {
    padding-bottom: 80px !important;
  }
  .ui-pb-85px {
    padding-bottom: 85px !important;
  }
  .ui-pb-90px {
    padding-bottom: 90px !important;
  }
  .ui-pb-95px {
    padding-bottom: 95px !important;
  }
  .ui-pb-100px {
    padding-bottom: 100px !important;
  }
  .ui-pb-105px {
    padding-bottom: 105px !important;
  }
  .ui-pb-110px {
    padding-bottom: 110px !important;
  }
  .ui-pb-115px {
    padding-bottom: 115px !important;
  }
  .ui-pb-120px {
    padding-bottom: 120px !important;
  }
  .ui-pb-125px {
    padding-bottom: 125px !important;
  }
  .ui-pb-130px {
    padding-bottom: 130px !important;
  }
  .ui-pb-135px {
    padding-bottom: 135px !important;
  }
  .ui-pb-140px {
    padding-bottom: 140px !important;
  }
  .ui-pb-145px {
    padding-bottom: 145px !important;
  }
  .ui-pb-150px {
    padding-bottom: 150px !important;
  }
  .ui-pb-155px {
    padding-bottom: 155px !important;
  }
  .ui-pb-160px {
    padding-bottom: 160px !important;
  }
  .ui-pb-165px {
    padding-bottom: 165px !important;
  }
  .ui-pb-170px {
    padding-bottom: 170px !important;
  }
  .ui-pb-175px {
    padding-bottom: 175px !important;
  }
  .ui-pb-180px {
    padding-bottom: 180px !important;
  }
  .ui-pb-185px {
    padding-bottom: 185px !important;
  }
  .ui-pb-190px {
    padding-bottom: 190px !important;
  }
  .ui-pb-195px {
    padding-bottom: 195px !important;
  }
  .ui-pb-200px {
    padding-bottom: 200px !important;
  }
  .ui-pb-205px {
    padding-bottom: 205px !important;
  }
  .ui-pb-210px {
    padding-bottom: 210px !important;
  }
  .ui-pb-215px {
    padding-bottom: 215px !important;
  }
  .ui-pb-220px {
    padding-bottom: 220px !important;
  }
  .ui-pb-225px {
    padding-bottom: 225px !important;
  }
  .ui-pb-230px {
    padding-bottom: 230px !important;
  }
  .ui-pb-235px {
    padding-bottom: 235px !important;
  }
  .ui-pb-240px {
    padding-bottom: 240px !important;
  }
  .ui-pb-245px {
    padding-bottom: 245px !important;
  }
  .ui-pb-250px {
    padding-bottom: 250px !important;
  }
  .ui-pb-255px {
    padding-bottom: 255px !important;
  }
  .ui-pb-260px {
    padding-bottom: 260px !important;
  }
  .ui-pb-265px {
    padding-bottom: 265px !important;
  }
  .ui-pb-270px {
    padding-bottom: 270px !important;
  }
  .ui-pb-275px {
    padding-bottom: 275px !important;
  }
  .ui-pb-280px {
    padding-bottom: 280px !important;
  }
  .ui-pb-285px {
    padding-bottom: 285px !important;
  }
  .ui-pb-290px {
    padding-bottom: 290px !important;
  }
  .ui-pb-295px {
    padding-bottom: 295px !important;
  }
  .ui-pb-300px {
    padding-bottom: 300px !important;
  }
}
@media (max-width: 991px) {
  .ui-pb-mobile-5px {
    padding-bottom: 5px !important;
  }
  .ui-pb-mobile-10px {
    padding-bottom: 10px !important;
  }
  .ui-pb-mobile-15px {
    padding-bottom: 15px !important;
  }
  .ui-pb-mobile-20px {
    padding-bottom: 20px !important;
  }
  .ui-pb-mobile-25px {
    padding-bottom: 25px !important;
  }
  .ui-pb-mobile-30px {
    padding-bottom: 30px !important;
  }
  .ui-pb-mobile-35px {
    padding-bottom: 35px !important;
  }
  .ui-pb-mobile-40px {
    padding-bottom: 40px !important;
  }
  .ui-pb-mobile-45px {
    padding-bottom: 45px !important;
  }
  .ui-pb-mobile-50px {
    padding-bottom: 50px !important;
  }
  .ui-pb-mobile-55px {
    padding-bottom: 55px !important;
  }
  .ui-pb-mobile-60px {
    padding-bottom: 60px !important;
  }
  .ui-pb-mobile-65px {
    padding-bottom: 65px !important;
  }
  .ui-pb-mobile-70px {
    padding-bottom: 70px !important;
  }
  .ui-pb-mobile-75px {
    padding-bottom: 75px !important;
  }
  .ui-pb-mobile-80px {
    padding-bottom: 80px !important;
  }
  .ui-pb-mobile-85px {
    padding-bottom: 85px !important;
  }
  .ui-pb-mobile-90px {
    padding-bottom: 90px !important;
  }
  .ui-pb-mobile-95px {
    padding-bottom: 95px !important;
  }
  .ui-pb-mobile-100px {
    padding-bottom: 100px !important;
  }
  .ui-pb-mobile-105px {
    padding-bottom: 105px !important;
  }
  .ui-pb-mobile-110px {
    padding-bottom: 110px !important;
  }
  .ui-pb-mobile-115px {
    padding-bottom: 115px !important;
  }
  .ui-pb-mobile-120px {
    padding-bottom: 120px !important;
  }
  .ui-pb-mobile-125px {
    padding-bottom: 125px !important;
  }
  .ui-pb-mobile-130px {
    padding-bottom: 130px !important;
  }
  .ui-pb-mobile-135px {
    padding-bottom: 135px !important;
  }
  .ui-pb-mobile-140px {
    padding-bottom: 140px !important;
  }
  .ui-pb-mobile-145px {
    padding-bottom: 145px !important;
  }
  .ui-pb-mobile-150px {
    padding-bottom: 150px !important;
  }
  .ui-pb-mobile-155px {
    padding-bottom: 155px !important;
  }
  .ui-pb-mobile-160px {
    padding-bottom: 160px !important;
  }
  .ui-pb-mobile-165px {
    padding-bottom: 165px !important;
  }
  .ui-pb-mobile-170px {
    padding-bottom: 170px !important;
  }
  .ui-pb-mobile-175px {
    padding-bottom: 175px !important;
  }
  .ui-pb-mobile-180px {
    padding-bottom: 180px !important;
  }
  .ui-pb-mobile-185px {
    padding-bottom: 185px !important;
  }
  .ui-pb-mobile-190px {
    padding-bottom: 190px !important;
  }
  .ui-pb-mobile-195px {
    padding-bottom: 195px !important;
  }
  .ui-pb-mobile-200px {
    padding-bottom: 200px !important;
  }
  .ui-pb-mobile-205px {
    padding-bottom: 205px !important;
  }
  .ui-pb-mobile-210px {
    padding-bottom: 210px !important;
  }
  .ui-pb-mobile-215px {
    padding-bottom: 215px !important;
  }
  .ui-pb-mobile-220px {
    padding-bottom: 220px !important;
  }
  .ui-pb-mobile-225px {
    padding-bottom: 225px !important;
  }
  .ui-pb-mobile-230px {
    padding-bottom: 230px !important;
  }
  .ui-pb-mobile-235px {
    padding-bottom: 235px !important;
  }
  .ui-pb-mobile-240px {
    padding-bottom: 240px !important;
  }
  .ui-pb-mobile-245px {
    padding-bottom: 245px !important;
  }
  .ui-pb-mobile-250px {
    padding-bottom: 250px !important;
  }
  .ui-pb-mobile-255px {
    padding-bottom: 255px !important;
  }
  .ui-pb-mobile-260px {
    padding-bottom: 260px !important;
  }
  .ui-pb-mobile-265px {
    padding-bottom: 265px !important;
  }
  .ui-pb-mobile-270px {
    padding-bottom: 270px !important;
  }
  .ui-pb-mobile-275px {
    padding-bottom: 275px !important;
  }
  .ui-pb-mobile-280px {
    padding-bottom: 280px !important;
  }
  .ui-pb-mobile-285px {
    padding-bottom: 285px !important;
  }
  .ui-pb-mobile-290px {
    padding-bottom: 290px !important;
  }
  .ui-pb-mobile-295px {
    padding-bottom: 295px !important;
  }
  .ui-pb-mobile-300px {
    padding-bottom: 300px !important;
  }
}
.ui-pv-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

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

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

@media (min-width: 992px) {
  .ui-mv-5px {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .ui-mv-10px {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .ui-mv-15px {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .ui-mv-20px {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .ui-mv-25px {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .ui-mv-30px {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .ui-mv-35px {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .ui-mv-40px {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .ui-mv-45px {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .ui-mv-50px {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .ui-mv-55px {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .ui-mv-60px {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .ui-mv-65px {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .ui-mv-70px {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .ui-mv-75px {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .ui-mv-80px {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .ui-mv-85px {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .ui-mv-90px {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .ui-mv-95px {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .ui-mv-100px {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .ui-mv-105px {
    margin-top: 105px !important;
    margin-bottom: 105px !important;
  }
  .ui-mv-110px {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }
  .ui-mv-115px {
    margin-top: 115px !important;
    margin-bottom: 115px !important;
  }
  .ui-mv-120px {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }
  .ui-mv-125px {
    margin-top: 125px !important;
    margin-bottom: 125px !important;
  }
  .ui-mv-130px {
    margin-top: 130px !important;
    margin-bottom: 130px !important;
  }
  .ui-mv-135px {
    margin-top: 135px !important;
    margin-bottom: 135px !important;
  }
  .ui-mv-140px {
    margin-top: 140px !important;
    margin-bottom: 140px !important;
  }
  .ui-mv-145px {
    margin-top: 145px !important;
    margin-bottom: 145px !important;
  }
  .ui-mv-150px {
    margin-top: 150px !important;
    margin-bottom: 150px !important;
  }
  .ui-mv-155px {
    margin-top: 155px !important;
    margin-bottom: 155px !important;
  }
  .ui-mv-160px {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }
  .ui-mv-165px {
    margin-top: 165px !important;
    margin-bottom: 165px !important;
  }
  .ui-mv-170px {
    margin-top: 170px !important;
    margin-bottom: 170px !important;
  }
  .ui-mv-175px {
    margin-top: 175px !important;
    margin-bottom: 175px !important;
  }
  .ui-mv-180px {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
  }
  .ui-mv-185px {
    margin-top: 185px !important;
    margin-bottom: 185px !important;
  }
  .ui-mv-190px {
    margin-top: 190px !important;
    margin-bottom: 190px !important;
  }
  .ui-mv-195px {
    margin-top: 195px !important;
    margin-bottom: 195px !important;
  }
  .ui-mv-200px {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }
  .ui-mv-205px {
    margin-top: 205px !important;
    margin-bottom: 205px !important;
  }
  .ui-mv-210px {
    margin-top: 210px !important;
    margin-bottom: 210px !important;
  }
  .ui-mv-215px {
    margin-top: 215px !important;
    margin-bottom: 215px !important;
  }
  .ui-mv-220px {
    margin-top: 220px !important;
    margin-bottom: 220px !important;
  }
  .ui-mv-225px {
    margin-top: 225px !important;
    margin-bottom: 225px !important;
  }
  .ui-mv-230px {
    margin-top: 230px !important;
    margin-bottom: 230px !important;
  }
  .ui-mv-235px {
    margin-top: 235px !important;
    margin-bottom: 235px !important;
  }
  .ui-mv-240px {
    margin-top: 240px !important;
    margin-bottom: 240px !important;
  }
  .ui-mv-245px {
    margin-top: 245px !important;
    margin-bottom: 245px !important;
  }
  .ui-mv-250px {
    margin-top: 250px !important;
    margin-bottom: 250px !important;
  }
  .ui-mv-255px {
    margin-top: 255px !important;
    margin-bottom: 255px !important;
  }
  .ui-mv-260px {
    margin-top: 260px !important;
    margin-bottom: 260px !important;
  }
  .ui-mv-265px {
    margin-top: 265px !important;
    margin-bottom: 265px !important;
  }
  .ui-mv-270px {
    margin-top: 270px !important;
    margin-bottom: 270px !important;
  }
  .ui-mv-275px {
    margin-top: 275px !important;
    margin-bottom: 275px !important;
  }
  .ui-mv-280px {
    margin-top: 280px !important;
    margin-bottom: 280px !important;
  }
  .ui-mv-285px {
    margin-top: 285px !important;
    margin-bottom: 285px !important;
  }
  .ui-mv-290px {
    margin-top: 290px !important;
    margin-bottom: 290px !important;
  }
  .ui-mv-295px {
    margin-top: 295px !important;
    margin-bottom: 295px !important;
  }
  .ui-mv-300px {
    margin-top: 300px !important;
    margin-bottom: 300px !important;
  }
}
@media (max-width: 991px) {
  .ui-mv-mobile-5px {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .ui-mv-mobile-10px {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .ui-mv-mobile-15px {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .ui-mv-mobile-20px {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .ui-mv-mobile-25px {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
  .ui-mv-mobile-30px {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .ui-mv-mobile-35px {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
  .ui-mv-mobile-40px {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .ui-mv-mobile-45px {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
  .ui-mv-mobile-50px {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .ui-mv-mobile-55px {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
  .ui-mv-mobile-60px {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .ui-mv-mobile-65px {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }
  .ui-mv-mobile-70px {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .ui-mv-mobile-75px {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }
  .ui-mv-mobile-80px {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .ui-mv-mobile-85px {
    margin-top: 85px !important;
    margin-bottom: 85px !important;
  }
  .ui-mv-mobile-90px {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .ui-mv-mobile-95px {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }
  .ui-mv-mobile-100px {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .ui-mv-mobile-105px {
    margin-top: 105px !important;
    margin-bottom: 105px !important;
  }
  .ui-mv-mobile-110px {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }
  .ui-mv-mobile-115px {
    margin-top: 115px !important;
    margin-bottom: 115px !important;
  }
  .ui-mv-mobile-120px {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }
  .ui-mv-mobile-125px {
    margin-top: 125px !important;
    margin-bottom: 125px !important;
  }
  .ui-mv-mobile-130px {
    margin-top: 130px !important;
    margin-bottom: 130px !important;
  }
  .ui-mv-mobile-135px {
    margin-top: 135px !important;
    margin-bottom: 135px !important;
  }
  .ui-mv-mobile-140px {
    margin-top: 140px !important;
    margin-bottom: 140px !important;
  }
  .ui-mv-mobile-145px {
    margin-top: 145px !important;
    margin-bottom: 145px !important;
  }
  .ui-mv-mobile-150px {
    margin-top: 150px !important;
    margin-bottom: 150px !important;
  }
  .ui-mv-mobile-155px {
    margin-top: 155px !important;
    margin-bottom: 155px !important;
  }
  .ui-mv-mobile-160px {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }
  .ui-mv-mobile-165px {
    margin-top: 165px !important;
    margin-bottom: 165px !important;
  }
  .ui-mv-mobile-170px {
    margin-top: 170px !important;
    margin-bottom: 170px !important;
  }
  .ui-mv-mobile-175px {
    margin-top: 175px !important;
    margin-bottom: 175px !important;
  }
  .ui-mv-mobile-180px {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
  }
  .ui-mv-mobile-185px {
    margin-top: 185px !important;
    margin-bottom: 185px !important;
  }
  .ui-mv-mobile-190px {
    margin-top: 190px !important;
    margin-bottom: 190px !important;
  }
  .ui-mv-mobile-195px {
    margin-top: 195px !important;
    margin-bottom: 195px !important;
  }
  .ui-mv-mobile-200px {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }
  .ui-mv-mobile-205px {
    margin-top: 205px !important;
    margin-bottom: 205px !important;
  }
  .ui-mv-mobile-210px {
    margin-top: 210px !important;
    margin-bottom: 210px !important;
  }
  .ui-mv-mobile-215px {
    margin-top: 215px !important;
    margin-bottom: 215px !important;
  }
  .ui-mv-mobile-220px {
    margin-top: 220px !important;
    margin-bottom: 220px !important;
  }
  .ui-mv-mobile-225px {
    margin-top: 225px !important;
    margin-bottom: 225px !important;
  }
  .ui-mv-mobile-230px {
    margin-top: 230px !important;
    margin-bottom: 230px !important;
  }
  .ui-mv-mobile-235px {
    margin-top: 235px !important;
    margin-bottom: 235px !important;
  }
  .ui-mv-mobile-240px {
    margin-top: 240px !important;
    margin-bottom: 240px !important;
  }
  .ui-mv-mobile-245px {
    margin-top: 245px !important;
    margin-bottom: 245px !important;
  }
  .ui-mv-mobile-250px {
    margin-top: 250px !important;
    margin-bottom: 250px !important;
  }
  .ui-mv-mobile-255px {
    margin-top: 255px !important;
    margin-bottom: 255px !important;
  }
  .ui-mv-mobile-260px {
    margin-top: 260px !important;
    margin-bottom: 260px !important;
  }
  .ui-mv-mobile-265px {
    margin-top: 265px !important;
    margin-bottom: 265px !important;
  }
  .ui-mv-mobile-270px {
    margin-top: 270px !important;
    margin-bottom: 270px !important;
  }
  .ui-mv-mobile-275px {
    margin-top: 275px !important;
    margin-bottom: 275px !important;
  }
  .ui-mv-mobile-280px {
    margin-top: 280px !important;
    margin-bottom: 280px !important;
  }
  .ui-mv-mobile-285px {
    margin-top: 285px !important;
    margin-bottom: 285px !important;
  }
  .ui-mv-mobile-290px {
    margin-top: 290px !important;
    margin-bottom: 290px !important;
  }
  .ui-mv-mobile-295px {
    margin-top: 295px !important;
    margin-bottom: 295px !important;
  }
  .ui-mv-mobile-300px {
    margin-top: 300px !important;
    margin-bottom: 300px !important;
  }
}
@media (min-width: 992px) {
  .ui-mt-5px {
    margin-top: 5px !important;
  }
  .ui-mt-10px {
    margin-top: 10px !important;
  }
  .ui-mt-15px {
    margin-top: 15px !important;
  }
  .ui-mt-20px {
    margin-top: 20px !important;
  }
  .ui-mt-25px {
    margin-top: 25px !important;
  }
  .ui-mt-30px {
    margin-top: 30px !important;
  }
  .ui-mt-35px {
    margin-top: 35px !important;
  }
  .ui-mt-40px {
    margin-top: 40px !important;
  }
  .ui-mt-45px {
    margin-top: 45px !important;
  }
  .ui-mt-50px {
    margin-top: 50px !important;
  }
  .ui-mt-55px {
    margin-top: 55px !important;
  }
  .ui-mt-60px {
    margin-top: 60px !important;
  }
  .ui-mt-65px {
    margin-top: 65px !important;
  }
  .ui-mt-70px {
    margin-top: 70px !important;
  }
  .ui-mt-75px {
    margin-top: 75px !important;
  }
  .ui-mt-80px {
    margin-top: 80px !important;
  }
  .ui-mt-85px {
    margin-top: 85px !important;
  }
  .ui-mt-90px {
    margin-top: 90px !important;
  }
  .ui-mt-95px {
    margin-top: 95px !important;
  }
  .ui-mt-100px {
    margin-top: 100px !important;
  }
  .ui-mt-105px {
    margin-top: 105px !important;
  }
  .ui-mt-110px {
    margin-top: 110px !important;
  }
  .ui-mt-115px {
    margin-top: 115px !important;
  }
  .ui-mt-120px {
    margin-top: 120px !important;
  }
  .ui-mt-125px {
    margin-top: 125px !important;
  }
  .ui-mt-130px {
    margin-top: 130px !important;
  }
  .ui-mt-135px {
    margin-top: 135px !important;
  }
  .ui-mt-140px {
    margin-top: 140px !important;
  }
  .ui-mt-145px {
    margin-top: 145px !important;
  }
  .ui-mt-150px {
    margin-top: 150px !important;
  }
  .ui-mt-155px {
    margin-top: 155px !important;
  }
  .ui-mt-160px {
    margin-top: 160px !important;
  }
  .ui-mt-165px {
    margin-top: 165px !important;
  }
  .ui-mt-170px {
    margin-top: 170px !important;
  }
  .ui-mt-175px {
    margin-top: 175px !important;
  }
  .ui-mt-180px {
    margin-top: 180px !important;
  }
  .ui-mt-185px {
    margin-top: 185px !important;
  }
  .ui-mt-190px {
    margin-top: 190px !important;
  }
  .ui-mt-195px {
    margin-top: 195px !important;
  }
  .ui-mt-200px {
    margin-top: 200px !important;
  }
  .ui-mt-205px {
    margin-top: 205px !important;
  }
  .ui-mt-210px {
    margin-top: 210px !important;
  }
  .ui-mt-215px {
    margin-top: 215px !important;
  }
  .ui-mt-220px {
    margin-top: 220px !important;
  }
  .ui-mt-225px {
    margin-top: 225px !important;
  }
  .ui-mt-230px {
    margin-top: 230px !important;
  }
  .ui-mt-235px {
    margin-top: 235px !important;
  }
  .ui-mt-240px {
    margin-top: 240px !important;
  }
  .ui-mt-245px {
    margin-top: 245px !important;
  }
  .ui-mt-250px {
    margin-top: 250px !important;
  }
  .ui-mt-255px {
    margin-top: 255px !important;
  }
  .ui-mt-260px {
    margin-top: 260px !important;
  }
  .ui-mt-265px {
    margin-top: 265px !important;
  }
  .ui-mt-270px {
    margin-top: 270px !important;
  }
  .ui-mt-275px {
    margin-top: 275px !important;
  }
  .ui-mt-280px {
    margin-top: 280px !important;
  }
  .ui-mt-285px {
    margin-top: 285px !important;
  }
  .ui-mt-290px {
    margin-top: 290px !important;
  }
  .ui-mt-295px {
    margin-top: 295px !important;
  }
  .ui-mt-300px {
    margin-top: 300px !important;
  }
}
@media (max-width: 991px) {
  .ui-mt-mobile-5px {
    margin-top: 5px !important;
  }
  .ui-mt-mobile-10px {
    margin-top: 10px !important;
  }
  .ui-mt-mobile-15px {
    margin-top: 15px !important;
  }
  .ui-mt-mobile-20px {
    margin-top: 20px !important;
  }
  .ui-mt-mobile-25px {
    margin-top: 25px !important;
  }
  .ui-mt-mobile-30px {
    margin-top: 30px !important;
  }
  .ui-mt-mobile-35px {
    margin-top: 35px !important;
  }
  .ui-mt-mobile-40px {
    margin-top: 40px !important;
  }
  .ui-mt-mobile-45px {
    margin-top: 45px !important;
  }
  .ui-mt-mobile-50px {
    margin-top: 50px !important;
  }
  .ui-mt-mobile-55px {
    margin-top: 55px !important;
  }
  .ui-mt-mobile-60px {
    margin-top: 60px !important;
  }
  .ui-mt-mobile-65px {
    margin-top: 65px !important;
  }
  .ui-mt-mobile-70px {
    margin-top: 70px !important;
  }
  .ui-mt-mobile-75px {
    margin-top: 75px !important;
  }
  .ui-mt-mobile-80px {
    margin-top: 80px !important;
  }
  .ui-mt-mobile-85px {
    margin-top: 85px !important;
  }
  .ui-mt-mobile-90px {
    margin-top: 90px !important;
  }
  .ui-mt-mobile-95px {
    margin-top: 95px !important;
  }
  .ui-mt-mobile-100px {
    margin-top: 100px !important;
  }
  .ui-mt-mobile-105px {
    margin-top: 105px !important;
  }
  .ui-mt-mobile-110px {
    margin-top: 110px !important;
  }
  .ui-mt-mobile-115px {
    margin-top: 115px !important;
  }
  .ui-mt-mobile-120px {
    margin-top: 120px !important;
  }
  .ui-mt-mobile-125px {
    margin-top: 125px !important;
  }
  .ui-mt-mobile-130px {
    margin-top: 130px !important;
  }
  .ui-mt-mobile-135px {
    margin-top: 135px !important;
  }
  .ui-mt-mobile-140px {
    margin-top: 140px !important;
  }
  .ui-mt-mobile-145px {
    margin-top: 145px !important;
  }
  .ui-mt-mobile-150px {
    margin-top: 150px !important;
  }
  .ui-mt-mobile-155px {
    margin-top: 155px !important;
  }
  .ui-mt-mobile-160px {
    margin-top: 160px !important;
  }
  .ui-mt-mobile-165px {
    margin-top: 165px !important;
  }
  .ui-mt-mobile-170px {
    margin-top: 170px !important;
  }
  .ui-mt-mobile-175px {
    margin-top: 175px !important;
  }
  .ui-mt-mobile-180px {
    margin-top: 180px !important;
  }
  .ui-mt-mobile-185px {
    margin-top: 185px !important;
  }
  .ui-mt-mobile-190px {
    margin-top: 190px !important;
  }
  .ui-mt-mobile-195px {
    margin-top: 195px !important;
  }
  .ui-mt-mobile-200px {
    margin-top: 200px !important;
  }
  .ui-mt-mobile-205px {
    margin-top: 205px !important;
  }
  .ui-mt-mobile-210px {
    margin-top: 210px !important;
  }
  .ui-mt-mobile-215px {
    margin-top: 215px !important;
  }
  .ui-mt-mobile-220px {
    margin-top: 220px !important;
  }
  .ui-mt-mobile-225px {
    margin-top: 225px !important;
  }
  .ui-mt-mobile-230px {
    margin-top: 230px !important;
  }
  .ui-mt-mobile-235px {
    margin-top: 235px !important;
  }
  .ui-mt-mobile-240px {
    margin-top: 240px !important;
  }
  .ui-mt-mobile-245px {
    margin-top: 245px !important;
  }
  .ui-mt-mobile-250px {
    margin-top: 250px !important;
  }
  .ui-mt-mobile-255px {
    margin-top: 255px !important;
  }
  .ui-mt-mobile-260px {
    margin-top: 260px !important;
  }
  .ui-mt-mobile-265px {
    margin-top: 265px !important;
  }
  .ui-mt-mobile-270px {
    margin-top: 270px !important;
  }
  .ui-mt-mobile-275px {
    margin-top: 275px !important;
  }
  .ui-mt-mobile-280px {
    margin-top: 280px !important;
  }
  .ui-mt-mobile-285px {
    margin-top: 285px !important;
  }
  .ui-mt-mobile-290px {
    margin-top: 290px !important;
  }
  .ui-mt-mobile-295px {
    margin-top: 295px !important;
  }
  .ui-mt-mobile-300px {
    margin-top: 300px !important;
  }
}
@media (min-width: 992px) {
  .ui-mb-5px {
    margin-bottom: 5px !important;
  }
  .ui-mb-10px {
    margin-bottom: 10px !important;
  }
  .ui-mb-15px {
    margin-bottom: 15px !important;
  }
  .ui-mb-20px {
    margin-bottom: 20px !important;
  }
  .ui-mb-25px {
    margin-bottom: 25px !important;
  }
  .ui-mb-30px {
    margin-bottom: 30px !important;
  }
  .ui-mb-35px {
    margin-bottom: 35px !important;
  }
  .ui-mb-40px {
    margin-bottom: 40px !important;
  }
  .ui-mb-45px {
    margin-bottom: 45px !important;
  }
  .ui-mb-50px {
    margin-bottom: 50px !important;
  }
  .ui-mb-55px {
    margin-bottom: 55px !important;
  }
  .ui-mb-60px {
    margin-bottom: 60px !important;
  }
  .ui-mb-65px {
    margin-bottom: 65px !important;
  }
  .ui-mb-70px {
    margin-bottom: 70px !important;
  }
  .ui-mb-75px {
    margin-bottom: 75px !important;
  }
  .ui-mb-80px {
    margin-bottom: 80px !important;
  }
  .ui-mb-85px {
    margin-bottom: 85px !important;
  }
  .ui-mb-90px {
    margin-bottom: 90px !important;
  }
  .ui-mb-95px {
    margin-bottom: 95px !important;
  }
  .ui-mb-100px {
    margin-bottom: 100px !important;
  }
  .ui-mb-105px {
    margin-bottom: 105px !important;
  }
  .ui-mb-110px {
    margin-bottom: 110px !important;
  }
  .ui-mb-115px {
    margin-bottom: 115px !important;
  }
  .ui-mb-120px {
    margin-bottom: 120px !important;
  }
  .ui-mb-125px {
    margin-bottom: 125px !important;
  }
  .ui-mb-130px {
    margin-bottom: 130px !important;
  }
  .ui-mb-135px {
    margin-bottom: 135px !important;
  }
  .ui-mb-140px {
    margin-bottom: 140px !important;
  }
  .ui-mb-145px {
    margin-bottom: 145px !important;
  }
  .ui-mb-150px {
    margin-bottom: 150px !important;
  }
  .ui-mb-155px {
    margin-bottom: 155px !important;
  }
  .ui-mb-160px {
    margin-bottom: 160px !important;
  }
  .ui-mb-165px {
    margin-bottom: 165px !important;
  }
  .ui-mb-170px {
    margin-bottom: 170px !important;
  }
  .ui-mb-175px {
    margin-bottom: 175px !important;
  }
  .ui-mb-180px {
    margin-bottom: 180px !important;
  }
  .ui-mb-185px {
    margin-bottom: 185px !important;
  }
  .ui-mb-190px {
    margin-bottom: 190px !important;
  }
  .ui-mb-195px {
    margin-bottom: 195px !important;
  }
  .ui-mb-200px {
    margin-bottom: 200px !important;
  }
  .ui-mb-205px {
    margin-bottom: 205px !important;
  }
  .ui-mb-210px {
    margin-bottom: 210px !important;
  }
  .ui-mb-215px {
    margin-bottom: 215px !important;
  }
  .ui-mb-220px {
    margin-bottom: 220px !important;
  }
  .ui-mb-225px {
    margin-bottom: 225px !important;
  }
  .ui-mb-230px {
    margin-bottom: 230px !important;
  }
  .ui-mb-235px {
    margin-bottom: 235px !important;
  }
  .ui-mb-240px {
    margin-bottom: 240px !important;
  }
  .ui-mb-245px {
    margin-bottom: 245px !important;
  }
  .ui-mb-250px {
    margin-bottom: 250px !important;
  }
  .ui-mb-255px {
    margin-bottom: 255px !important;
  }
  .ui-mb-260px {
    margin-bottom: 260px !important;
  }
  .ui-mb-265px {
    margin-bottom: 265px !important;
  }
  .ui-mb-270px {
    margin-bottom: 270px !important;
  }
  .ui-mb-275px {
    margin-bottom: 275px !important;
  }
  .ui-mb-280px {
    margin-bottom: 280px !important;
  }
  .ui-mb-285px {
    margin-bottom: 285px !important;
  }
  .ui-mb-290px {
    margin-bottom: 290px !important;
  }
  .ui-mb-295px {
    margin-bottom: 295px !important;
  }
  .ui-mb-300px {
    margin-bottom: 300px !important;
  }
}
@media (max-width: 991px) {
  .ui-mb-mobile-5px {
    margin-bottom: 5px !important;
  }
  .ui-mb-mobile-10px {
    margin-bottom: 10px !important;
  }
  .ui-mb-mobile-15px {
    margin-bottom: 15px !important;
  }
  .ui-mb-mobile-20px {
    margin-bottom: 20px !important;
  }
  .ui-mb-mobile-25px {
    margin-bottom: 25px !important;
  }
  .ui-mb-mobile-30px {
    margin-bottom: 30px !important;
  }
  .ui-mb-mobile-35px {
    margin-bottom: 35px !important;
  }
  .ui-mb-mobile-40px {
    margin-bottom: 40px !important;
  }
  .ui-mb-mobile-45px {
    margin-bottom: 45px !important;
  }
  .ui-mb-mobile-50px {
    margin-bottom: 50px !important;
  }
  .ui-mb-mobile-55px {
    margin-bottom: 55px !important;
  }
  .ui-mb-mobile-60px {
    margin-bottom: 60px !important;
  }
  .ui-mb-mobile-65px {
    margin-bottom: 65px !important;
  }
  .ui-mb-mobile-70px {
    margin-bottom: 70px !important;
  }
  .ui-mb-mobile-75px {
    margin-bottom: 75px !important;
  }
  .ui-mb-mobile-80px {
    margin-bottom: 80px !important;
  }
  .ui-mb-mobile-85px {
    margin-bottom: 85px !important;
  }
  .ui-mb-mobile-90px {
    margin-bottom: 90px !important;
  }
  .ui-mb-mobile-95px {
    margin-bottom: 95px !important;
  }
  .ui-mb-mobile-100px {
    margin-bottom: 100px !important;
  }
  .ui-mb-mobile-105px {
    margin-bottom: 105px !important;
  }
  .ui-mb-mobile-110px {
    margin-bottom: 110px !important;
  }
  .ui-mb-mobile-115px {
    margin-bottom: 115px !important;
  }
  .ui-mb-mobile-120px {
    margin-bottom: 120px !important;
  }
  .ui-mb-mobile-125px {
    margin-bottom: 125px !important;
  }
  .ui-mb-mobile-130px {
    margin-bottom: 130px !important;
  }
  .ui-mb-mobile-135px {
    margin-bottom: 135px !important;
  }
  .ui-mb-mobile-140px {
    margin-bottom: 140px !important;
  }
  .ui-mb-mobile-145px {
    margin-bottom: 145px !important;
  }
  .ui-mb-mobile-150px {
    margin-bottom: 150px !important;
  }
  .ui-mb-mobile-155px {
    margin-bottom: 155px !important;
  }
  .ui-mb-mobile-160px {
    margin-bottom: 160px !important;
  }
  .ui-mb-mobile-165px {
    margin-bottom: 165px !important;
  }
  .ui-mb-mobile-170px {
    margin-bottom: 170px !important;
  }
  .ui-mb-mobile-175px {
    margin-bottom: 175px !important;
  }
  .ui-mb-mobile-180px {
    margin-bottom: 180px !important;
  }
  .ui-mb-mobile-185px {
    margin-bottom: 185px !important;
  }
  .ui-mb-mobile-190px {
    margin-bottom: 190px !important;
  }
  .ui-mb-mobile-195px {
    margin-bottom: 195px !important;
  }
  .ui-mb-mobile-200px {
    margin-bottom: 200px !important;
  }
  .ui-mb-mobile-205px {
    margin-bottom: 205px !important;
  }
  .ui-mb-mobile-210px {
    margin-bottom: 210px !important;
  }
  .ui-mb-mobile-215px {
    margin-bottom: 215px !important;
  }
  .ui-mb-mobile-220px {
    margin-bottom: 220px !important;
  }
  .ui-mb-mobile-225px {
    margin-bottom: 225px !important;
  }
  .ui-mb-mobile-230px {
    margin-bottom: 230px !important;
  }
  .ui-mb-mobile-235px {
    margin-bottom: 235px !important;
  }
  .ui-mb-mobile-240px {
    margin-bottom: 240px !important;
  }
  .ui-mb-mobile-245px {
    margin-bottom: 245px !important;
  }
  .ui-mb-mobile-250px {
    margin-bottom: 250px !important;
  }
  .ui-mb-mobile-255px {
    margin-bottom: 255px !important;
  }
  .ui-mb-mobile-260px {
    margin-bottom: 260px !important;
  }
  .ui-mb-mobile-265px {
    margin-bottom: 265px !important;
  }
  .ui-mb-mobile-270px {
    margin-bottom: 270px !important;
  }
  .ui-mb-mobile-275px {
    margin-bottom: 275px !important;
  }
  .ui-mb-mobile-280px {
    margin-bottom: 280px !important;
  }
  .ui-mb-mobile-285px {
    margin-bottom: 285px !important;
  }
  .ui-mb-mobile-290px {
    margin-bottom: 290px !important;
  }
  .ui-mb-mobile-295px {
    margin-bottom: 295px !important;
  }
  .ui-mb-mobile-300px {
    margin-bottom: 300px !important;
  }
}
.ui-mv-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

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

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

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

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

.ui-gap-x-5px {
  -webkit-column-gap: 5px !important;
     -moz-column-gap: 5px !important;
          column-gap: 5px !important;
}

.ui-gap-x-10px {
  -webkit-column-gap: 10px !important;
     -moz-column-gap: 10px !important;
          column-gap: 10px !important;
}

.ui-gap-x-15px {
  -webkit-column-gap: 15px !important;
     -moz-column-gap: 15px !important;
          column-gap: 15px !important;
}

.ui-gap-x-20px {
  -webkit-column-gap: 20px !important;
     -moz-column-gap: 20px !important;
          column-gap: 20px !important;
}

.ui-gap-x-25px {
  -webkit-column-gap: 25px !important;
     -moz-column-gap: 25px !important;
          column-gap: 25px !important;
}

.ui-gap-x-30px {
  -webkit-column-gap: 30px !important;
     -moz-column-gap: 30px !important;
          column-gap: 30px !important;
}

.ui-gap-x-35px {
  -webkit-column-gap: 35px !important;
     -moz-column-gap: 35px !important;
          column-gap: 35px !important;
}

.ui-gap-x-40px {
  -webkit-column-gap: 40px !important;
     -moz-column-gap: 40px !important;
          column-gap: 40px !important;
}

.ui-gap-x-45px {
  -webkit-column-gap: 45px !important;
     -moz-column-gap: 45px !important;
          column-gap: 45px !important;
}

.ui-gap-x-50px {
  -webkit-column-gap: 50px !important;
     -moz-column-gap: 50px !important;
          column-gap: 50px !important;
}

.ui-gap-x-55px {
  -webkit-column-gap: 55px !important;
     -moz-column-gap: 55px !important;
          column-gap: 55px !important;
}

.ui-gap-x-60px {
  -webkit-column-gap: 60px !important;
     -moz-column-gap: 60px !important;
          column-gap: 60px !important;
}

.ui-gap-x-65px {
  -webkit-column-gap: 65px !important;
     -moz-column-gap: 65px !important;
          column-gap: 65px !important;
}

.ui-gap-x-70px {
  -webkit-column-gap: 70px !important;
     -moz-column-gap: 70px !important;
          column-gap: 70px !important;
}

.ui-gap-x-75px {
  -webkit-column-gap: 75px !important;
     -moz-column-gap: 75px !important;
          column-gap: 75px !important;
}

.ui-gap-x-80px {
  -webkit-column-gap: 80px !important;
     -moz-column-gap: 80px !important;
          column-gap: 80px !important;
}

.ui-gap-x-85px {
  -webkit-column-gap: 85px !important;
     -moz-column-gap: 85px !important;
          column-gap: 85px !important;
}

.ui-gap-x-90px {
  -webkit-column-gap: 90px !important;
     -moz-column-gap: 90px !important;
          column-gap: 90px !important;
}

.ui-gap-x-95px {
  -webkit-column-gap: 95px !important;
     -moz-column-gap: 95px !important;
          column-gap: 95px !important;
}

.ui-gap-x-100px {
  -webkit-column-gap: 100px !important;
     -moz-column-gap: 100px !important;
          column-gap: 100px !important;
}

.ui-gap-x-105px {
  -webkit-column-gap: 105px !important;
     -moz-column-gap: 105px !important;
          column-gap: 105px !important;
}

.ui-gap-x-110px {
  -webkit-column-gap: 110px !important;
     -moz-column-gap: 110px !important;
          column-gap: 110px !important;
}

.ui-gap-x-115px {
  -webkit-column-gap: 115px !important;
     -moz-column-gap: 115px !important;
          column-gap: 115px !important;
}

.ui-gap-x-120px {
  -webkit-column-gap: 120px !important;
     -moz-column-gap: 120px !important;
          column-gap: 120px !important;
}

.ui-gap-x-125px {
  -webkit-column-gap: 125px !important;
     -moz-column-gap: 125px !important;
          column-gap: 125px !important;
}

.ui-gap-x-130px {
  -webkit-column-gap: 130px !important;
     -moz-column-gap: 130px !important;
          column-gap: 130px !important;
}

.ui-gap-x-135px {
  -webkit-column-gap: 135px !important;
     -moz-column-gap: 135px !important;
          column-gap: 135px !important;
}

.ui-gap-x-140px {
  -webkit-column-gap: 140px !important;
     -moz-column-gap: 140px !important;
          column-gap: 140px !important;
}

.ui-gap-x-145px {
  -webkit-column-gap: 145px !important;
     -moz-column-gap: 145px !important;
          column-gap: 145px !important;
}

.ui-gap-x-150px {
  -webkit-column-gap: 150px !important;
     -moz-column-gap: 150px !important;
          column-gap: 150px !important;
}

.ui-gap-x-155px {
  -webkit-column-gap: 155px !important;
     -moz-column-gap: 155px !important;
          column-gap: 155px !important;
}

.ui-gap-x-160px {
  -webkit-column-gap: 160px !important;
     -moz-column-gap: 160px !important;
          column-gap: 160px !important;
}

.ui-gap-x-165px {
  -webkit-column-gap: 165px !important;
     -moz-column-gap: 165px !important;
          column-gap: 165px !important;
}

.ui-gap-x-170px {
  -webkit-column-gap: 170px !important;
     -moz-column-gap: 170px !important;
          column-gap: 170px !important;
}

.ui-gap-x-175px {
  -webkit-column-gap: 175px !important;
     -moz-column-gap: 175px !important;
          column-gap: 175px !important;
}

.ui-gap-x-180px {
  -webkit-column-gap: 180px !important;
     -moz-column-gap: 180px !important;
          column-gap: 180px !important;
}

.ui-gap-x-185px {
  -webkit-column-gap: 185px !important;
     -moz-column-gap: 185px !important;
          column-gap: 185px !important;
}

.ui-gap-x-190px {
  -webkit-column-gap: 190px !important;
     -moz-column-gap: 190px !important;
          column-gap: 190px !important;
}

.ui-gap-x-195px {
  -webkit-column-gap: 195px !important;
     -moz-column-gap: 195px !important;
          column-gap: 195px !important;
}

.ui-gap-x-200px {
  -webkit-column-gap: 200px !important;
     -moz-column-gap: 200px !important;
          column-gap: 200px !important;
}

.ui-gap-x-205px {
  -webkit-column-gap: 205px !important;
     -moz-column-gap: 205px !important;
          column-gap: 205px !important;
}

.ui-gap-x-210px {
  -webkit-column-gap: 210px !important;
     -moz-column-gap: 210px !important;
          column-gap: 210px !important;
}

.ui-gap-x-215px {
  -webkit-column-gap: 215px !important;
     -moz-column-gap: 215px !important;
          column-gap: 215px !important;
}

.ui-gap-x-220px {
  -webkit-column-gap: 220px !important;
     -moz-column-gap: 220px !important;
          column-gap: 220px !important;
}

.ui-gap-x-225px {
  -webkit-column-gap: 225px !important;
     -moz-column-gap: 225px !important;
          column-gap: 225px !important;
}

.ui-gap-x-230px {
  -webkit-column-gap: 230px !important;
     -moz-column-gap: 230px !important;
          column-gap: 230px !important;
}

.ui-gap-x-235px {
  -webkit-column-gap: 235px !important;
     -moz-column-gap: 235px !important;
          column-gap: 235px !important;
}

.ui-gap-x-240px {
  -webkit-column-gap: 240px !important;
     -moz-column-gap: 240px !important;
          column-gap: 240px !important;
}

.ui-gap-x-245px {
  -webkit-column-gap: 245px !important;
     -moz-column-gap: 245px !important;
          column-gap: 245px !important;
}

.ui-gap-x-250px {
  -webkit-column-gap: 250px !important;
     -moz-column-gap: 250px !important;
          column-gap: 250px !important;
}

.ui-gap-x-255px {
  -webkit-column-gap: 255px !important;
     -moz-column-gap: 255px !important;
          column-gap: 255px !important;
}

.ui-gap-x-260px {
  -webkit-column-gap: 260px !important;
     -moz-column-gap: 260px !important;
          column-gap: 260px !important;
}

.ui-gap-x-265px {
  -webkit-column-gap: 265px !important;
     -moz-column-gap: 265px !important;
          column-gap: 265px !important;
}

.ui-gap-x-270px {
  -webkit-column-gap: 270px !important;
     -moz-column-gap: 270px !important;
          column-gap: 270px !important;
}

.ui-gap-x-275px {
  -webkit-column-gap: 275px !important;
     -moz-column-gap: 275px !important;
          column-gap: 275px !important;
}

.ui-gap-x-280px {
  -webkit-column-gap: 280px !important;
     -moz-column-gap: 280px !important;
          column-gap: 280px !important;
}

.ui-gap-x-285px {
  -webkit-column-gap: 285px !important;
     -moz-column-gap: 285px !important;
          column-gap: 285px !important;
}

.ui-gap-x-290px {
  -webkit-column-gap: 290px !important;
     -moz-column-gap: 290px !important;
          column-gap: 290px !important;
}

.ui-gap-x-295px {
  -webkit-column-gap: 295px !important;
     -moz-column-gap: 295px !important;
          column-gap: 295px !important;
}

.ui-gap-x-300px {
  -webkit-column-gap: 300px !important;
     -moz-column-gap: 300px !important;
          column-gap: 300px !important;
}

.ui-gap-y-5px {
  row-gap: 5px !important;
}

.ui-gap-y-10px {
  row-gap: 10px !important;
}

.ui-gap-y-15px {
  row-gap: 15px !important;
}

.ui-gap-y-20px {
  row-gap: 20px !important;
}

.ui-gap-y-25px {
  row-gap: 25px !important;
}

.ui-gap-y-30px {
  row-gap: 30px !important;
}

.ui-gap-y-35px {
  row-gap: 35px !important;
}

.ui-gap-y-40px {
  row-gap: 40px !important;
}

.ui-gap-y-45px {
  row-gap: 45px !important;
}

.ui-gap-y-50px {
  row-gap: 50px !important;
}

.ui-gap-y-55px {
  row-gap: 55px !important;
}

.ui-gap-y-60px {
  row-gap: 60px !important;
}

.ui-gap-y-65px {
  row-gap: 65px !important;
}

.ui-gap-y-70px {
  row-gap: 70px !important;
}

.ui-gap-y-75px {
  row-gap: 75px !important;
}

.ui-gap-y-80px {
  row-gap: 80px !important;
}

.ui-gap-y-85px {
  row-gap: 85px !important;
}

.ui-gap-y-90px {
  row-gap: 90px !important;
}

.ui-gap-y-95px {
  row-gap: 95px !important;
}

.ui-gap-y-100px {
  row-gap: 100px !important;
}

.ui-gap-y-105px {
  row-gap: 105px !important;
}

.ui-gap-y-110px {
  row-gap: 110px !important;
}

.ui-gap-y-115px {
  row-gap: 115px !important;
}

.ui-gap-y-120px {
  row-gap: 120px !important;
}

.ui-gap-y-125px {
  row-gap: 125px !important;
}

.ui-gap-y-130px {
  row-gap: 130px !important;
}

.ui-gap-y-135px {
  row-gap: 135px !important;
}

.ui-gap-y-140px {
  row-gap: 140px !important;
}

.ui-gap-y-145px {
  row-gap: 145px !important;
}

.ui-gap-y-150px {
  row-gap: 150px !important;
}

.ui-gap-y-155px {
  row-gap: 155px !important;
}

.ui-gap-y-160px {
  row-gap: 160px !important;
}

.ui-gap-y-165px {
  row-gap: 165px !important;
}

.ui-gap-y-170px {
  row-gap: 170px !important;
}

.ui-gap-y-175px {
  row-gap: 175px !important;
}

.ui-gap-y-180px {
  row-gap: 180px !important;
}

.ui-gap-y-185px {
  row-gap: 185px !important;
}

.ui-gap-y-190px {
  row-gap: 190px !important;
}

.ui-gap-y-195px {
  row-gap: 195px !important;
}

.ui-gap-y-200px {
  row-gap: 200px !important;
}

.ui-gap-y-205px {
  row-gap: 205px !important;
}

.ui-gap-y-210px {
  row-gap: 210px !important;
}

.ui-gap-y-215px {
  row-gap: 215px !important;
}

.ui-gap-y-220px {
  row-gap: 220px !important;
}

.ui-gap-y-225px {
  row-gap: 225px !important;
}

.ui-gap-y-230px {
  row-gap: 230px !important;
}

.ui-gap-y-235px {
  row-gap: 235px !important;
}

.ui-gap-y-240px {
  row-gap: 240px !important;
}

.ui-gap-y-245px {
  row-gap: 245px !important;
}

.ui-gap-y-250px {
  row-gap: 250px !important;
}

.ui-gap-y-255px {
  row-gap: 255px !important;
}

.ui-gap-y-260px {
  row-gap: 260px !important;
}

.ui-gap-y-265px {
  row-gap: 265px !important;
}

.ui-gap-y-270px {
  row-gap: 270px !important;
}

.ui-gap-y-275px {
  row-gap: 275px !important;
}

.ui-gap-y-280px {
  row-gap: 280px !important;
}

.ui-gap-y-285px {
  row-gap: 285px !important;
}

.ui-gap-y-290px {
  row-gap: 290px !important;
}

.ui-gap-y-295px {
  row-gap: 295px !important;
}

.ui-gap-y-300px {
  row-gap: 300px !important;
}

.ui-gap-5px {
  gap: 5px !important;
}

.ui-gap-10px {
  gap: 10px !important;
}

.ui-gap-15px {
  gap: 15px !important;
}

.ui-gap-20px {
  gap: 20px !important;
}

.ui-gap-25px {
  gap: 25px !important;
}

.ui-gap-30px {
  gap: 30px !important;
}

.ui-gap-35px {
  gap: 35px !important;
}

.ui-gap-40px {
  gap: 40px !important;
}

.ui-gap-45px {
  gap: 45px !important;
}

.ui-gap-50px {
  gap: 50px !important;
}

.ui-gap-55px {
  gap: 55px !important;
}

.ui-gap-60px {
  gap: 60px !important;
}

.ui-gap-65px {
  gap: 65px !important;
}

.ui-gap-70px {
  gap: 70px !important;
}

.ui-gap-75px {
  gap: 75px !important;
}

.ui-gap-80px {
  gap: 80px !important;
}

.ui-gap-85px {
  gap: 85px !important;
}

.ui-gap-90px {
  gap: 90px !important;
}

.ui-gap-95px {
  gap: 95px !important;
}

.ui-gap-100px {
  gap: 100px !important;
}

.ui-gap-105px {
  gap: 105px !important;
}

.ui-gap-110px {
  gap: 110px !important;
}

.ui-gap-115px {
  gap: 115px !important;
}

.ui-gap-120px {
  gap: 120px !important;
}

.ui-gap-125px {
  gap: 125px !important;
}

.ui-gap-130px {
  gap: 130px !important;
}

.ui-gap-135px {
  gap: 135px !important;
}

.ui-gap-140px {
  gap: 140px !important;
}

.ui-gap-145px {
  gap: 145px !important;
}

.ui-gap-150px {
  gap: 150px !important;
}

.ui-gap-155px {
  gap: 155px !important;
}

.ui-gap-160px {
  gap: 160px !important;
}

.ui-gap-165px {
  gap: 165px !important;
}

.ui-gap-170px {
  gap: 170px !important;
}

.ui-gap-175px {
  gap: 175px !important;
}

.ui-gap-180px {
  gap: 180px !important;
}

.ui-gap-185px {
  gap: 185px !important;
}

.ui-gap-190px {
  gap: 190px !important;
}

.ui-gap-195px {
  gap: 195px !important;
}

.ui-gap-200px {
  gap: 200px !important;
}

.ui-gap-205px {
  gap: 205px !important;
}

.ui-gap-210px {
  gap: 210px !important;
}

.ui-gap-215px {
  gap: 215px !important;
}

.ui-gap-220px {
  gap: 220px !important;
}

.ui-gap-225px {
  gap: 225px !important;
}

.ui-gap-230px {
  gap: 230px !important;
}

.ui-gap-235px {
  gap: 235px !important;
}

.ui-gap-240px {
  gap: 240px !important;
}

.ui-gap-245px {
  gap: 245px !important;
}

.ui-gap-250px {
  gap: 250px !important;
}

.ui-gap-255px {
  gap: 255px !important;
}

.ui-gap-260px {
  gap: 260px !important;
}

.ui-gap-265px {
  gap: 265px !important;
}

.ui-gap-270px {
  gap: 270px !important;
}

.ui-gap-275px {
  gap: 275px !important;
}

.ui-gap-280px {
  gap: 280px !important;
}

.ui-gap-285px {
  gap: 285px !important;
}

.ui-gap-290px {
  gap: 290px !important;
}

.ui-gap-295px {
  gap: 295px !important;
}

.ui-gap-300px {
  gap: 300px !important;
}